Skip to content
This repository was archived by the owner on Jun 28, 2026. It is now read-only.

Horde Configuration

Tharanga Rajapaksha edited this page Feb 27, 2019 · 2 revisions

Horde Configuration for copper email solution

Copper email solution wants some configurations to complete before the system deploy. We have some configuration files inside the project folder. Those files will be located inside the horde folder in the built process. This attempt to describe some important configurations required for successful deployment.

conf.php

This is the main configuration file in the system. There are few configurations you should change according to your environment.

Session cookies domain

$conf['cookie']['domain'] = '';

Database configuration

$conf['sql']['username'] = 'root'; // database username

$conf['sql']['password'] = 'c0pperDB'; // database password

$conf['sql']['hostspec'] = 'mysql'; // mysql database server name or ip

$conf['sql']['port'] = 3306; // database server port

$conf['sql']['protocol'] = 'tcp'; // protocol

$conf['sql']['database'] = 'horde'; // database name

SMTP server details

$conf['mailer']['params']['host'] = 'email'; // SMTP server name or IP

$conf['mailer']['params']['port'] = 587; // SMTP server port

$conf['mailer']['params']['secure'] = 'tls'; // Encription

$conf['mailer']['params']['localhost'] = 'copper.opensource.lk'; //Email domain

$conf['mailer']['type'] = 'smtp'; // for external smtp servers

IMAP login details

$conf['imap']['server'] = 'email'; //IMAP server name or ip

$conf['imap']['port'] = 143; // IMAP server port

$conf['imap']['secure'] = 'tls'; // IMAP server encription

$conf['imap']['maildomain'] = 'copper.opensource.lk'; // IMAP mail domain

$conf['imap']['enabled'] = true; // Enabling the IMAP login to horde

Clone this wiki locally