forked from akoeb/amacube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.inc.php-dist
47 lines (37 loc) · 2.06 KB
/
config.inc.php-dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
// The database connection settings where amavis stores settings and emails.
// See mysql.schema for more details.
$rcmail_config['amacube_db_dsn'] = 'mysql://<MYSQL-USER>:<MYSQL-PASSWORD>@<MYSQL-HOST>/<MYSQL-DATABASE>';
// Hostname and port of the amavis process.
// For release of quarantined emails, amavis must be set up to accept socket connections from the host where roundcube is running on.
// See README.md for more details.
$rcmail_config['amacube_amavis_host'] = 'AMAVIS_HOST';
$rcmail_config['amacube_amavis_port'] = 'AMAVIS_PORT';
// The database connection settings where mailbox accounts are stored.
// When specified amacube will try to get catchall and filter fields from this table
// See mysql.schema for more details.
$rcmail_config['amacube_accounts_db_dsn'] = 'mysql://<MYSQL-USER>:<MYSQL-PASSWORD>@<MYSQL-HOST>/<MYSQL-DATABASE>';
// Account table
// This table is used by amacube to lookup accounts in the accounts database
// See README.md for more details.
$rcmail_config['amacube_accounts_db_account_table'] = 'mailbox';
// Account field
// This field is used by amacube to lookup accounts in the accounts database
// See README.md for more details.
$rcmail_config['amacube_accounts_db_account_field'] = 'email';
// Catchall field
// When this field is enabled (1) amacube settings and quarantine apply to entire domain
// See README.md for more details.
$rcmail_config['amacube_accounts_db_account_catchall_field'] = 'catchall';
// Filter field
// When this field is disabled (0) amacube settings and quarantine are not displayed
// See README.md for more details.
$rcmail_config['amacube_accounts_db_account_filter_field'] = 'filter';
// Auto create user
// When enabled amacube will check this amavis database user table field for 1 or 0 and respecfully enables or disables plugin features
$rcmail_config['amacube_auto_create_user'] = true;
// Default Quarantine Page Size
$rcmail_config['mail_pagesize'] = 25;
// Array of account names (e-mail addresses) who get the site-wide quarantine list, for all mailboxes
$rcmail_config['amacube_amavis_admins'] = array();
?>