MailAdmin 1.5.1
<<< PreviousNext >>>

Configuring MailAdmin

Now we need to configure the operation of mailadmin.

# cd /var/www/html/mailadmin/includes
# cp config.inc.dist config.inc
# vi config.inc

The config file looks like this:

<?php /
* These options must be configured for your network. */

/* Local Cookie Information */
$cookie_domain = ".your.domain.here"; // The preceeding period must exist if you want it to match to all machines in the domain.
$cookie_path = "full index path";

/* Mail Server Configuration Information */
$mail_server_name = "your.mailserver.here";
$mail_server_port = "143";
$mail_server_admin = "cyrus";

$globalserver = "your.mailserver.here";
$imapdfile = "/etc/imapd.conf";
$expireddata = "/tmp/notexpired.lst";

/* Database configuration */
$enable_dbase = "Yes"; // Yes/No Option;
$dbase_type = "pgsql";
// current types, pgsql
$dbase_host = "Your.data.base.server";
$dbase_name = "Your Database Name";
$dbase_user = "";
$dbase_name = "Your Database Name";
$dbase_user = ""; $dbase_password = "";
$dbase_port = "5432";

/* Nothing below this point needs to be changed. */
$project_version = "1.5.1";
$coordinator = "morthoron@users.sourceforge.net";

/* Table definitions */
$transaction_log_table_name = "transaction_log";
$account_information_table_name = "account_information";
?>