|
|
@ -8,19 +8,35 @@ $config['des_key'] = 'rcmail-!24ByteDESkey*Str';
|
|
|
|
$config['identities_level'] = 3;
|
|
|
|
$config['identities_level'] = 3;
|
|
|
|
$config['reply_all_mode'] = 1;
|
|
|
|
$config['reply_all_mode'] = 1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// List of active plugins (in plugins/ directory)
|
|
|
|
|
|
|
|
$config['plugins'] = array(
|
|
|
|
|
|
|
|
'archive',
|
|
|
|
|
|
|
|
'zipdownload',
|
|
|
|
|
|
|
|
'managesieve',
|
|
|
|
|
|
|
|
'markasjunk',
|
|
|
|
|
|
|
|
'password'
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
// Mail servers
|
|
|
|
// Mail servers
|
|
|
|
$config['default_host'] = 'localhost';
|
|
|
|
$config['default_host'] = 'localhost';
|
|
|
|
$config['default_port'] = 143;
|
|
|
|
$config['default_port'] = 143;
|
|
|
|
$config['smtp_server'] = 'localhost';
|
|
|
|
$config['smtp_server'] = 'localhost';
|
|
|
|
$config['smtp_port'] = 25;
|
|
|
|
$config['smtp_port'] = 25;
|
|
|
|
|
|
|
|
|
|
|
|
// List of active plugins (in plugins/ directory)
|
|
|
|
// Password management
|
|
|
|
$config['plugins'] = array(
|
|
|
|
$config['password_driver'] = 'sql';
|
|
|
|
'archive',
|
|
|
|
$config['password_confirm_current'] = true;
|
|
|
|
'zipdownload',
|
|
|
|
$config['password_minimum_length'] = 6;
|
|
|
|
'managesieve',
|
|
|
|
$config['password_db_dsn'] = 'sqlite:////data/freeposte.db';
|
|
|
|
'markasjunk'
|
|
|
|
$config['password_query'] = '
|
|
|
|
);
|
|
|
|
UPDATE user SET password=%D
|
|
|
|
|
|
|
|
WHERE id IN (SELECT user.id FROM user
|
|
|
|
|
|
|
|
INNER JOIN domain ON domain.id=user.domain_id
|
|
|
|
|
|
|
|
WHERE domain.name=%d AND user.name=%l
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
';
|
|
|
|
|
|
|
|
$config['password_dovecotpw'] = 'doveadm pw';
|
|
|
|
|
|
|
|
$confog['password_dovecotpw_method'] = 'SHA512-CRYPT';
|
|
|
|
|
|
|
|
|
|
|
|
// skin name: folder from skins/
|
|
|
|
// skin name: folder from skins/
|
|
|
|
$config['skin'] = 'larry';
|
|
|
|
$config['skin'] = 'larry';
|
|
|
|