1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-05-21 22:33:16 +02:00
Mailu/config/roundcube.inc.php

27 lines
578 B
PHP
Raw Normal View History

2016-02-20 21:55:22 +01:00
<?php
$config = array();
// Generals
2016-02-20 21:55:22 +01:00
$config['db_dsnw'] = 'sqlite:////data/webmail/roundcube.db';
$config['des_key'] = 'rcmail-!24ByteDESkey*Str';
$config['identities_level'] = 3;
$config['reply_all_mode'] = 1;
// Mail servers
2016-02-20 21:55:22 +01:00
$config['default_host'] = 'localhost';
$config['default_port'] = 143;
2016-02-20 21:55:22 +01:00
$config['smtp_server'] = 'localhost';
$config['smtp_port'] = 25;
// List of active plugins (in plugins/ directory)
$config['plugins'] = array(
'archive',
'zipdownload',
'managesieve',
'markasjunk'
2016-02-20 21:55:22 +01:00
);
// skin name: folder from skins/
$config['skin'] = 'larry';