Setup a roundcube Webmail

This commit is contained in:
Pierre Jaury
2016-02-20 21:55:22 +01:00
parent bb0e972321
commit 16f30813c9
5 changed files with 90 additions and 5 deletions

18
config/roundcube.inc.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
$config = array();
$config['db_dsnw'] = 'sqlite:////data/webmail/roundcube.db';
$config['default_host'] = 'localhost';
$config['smtp_server'] = 'localhost';
$config['smtp_port'] = 25;
$config['des_key'] = 'rcmail-!24ByteDESkey*Str';
// List of active plugins (in plugins/ directory)
$config['plugins'] = array(
'archive',
'zipdownload',
);
// skin name: folder from skins/
$config['skin'] = 'larry';