Really initial commit.

This commit is contained in:
Boris Gulay
2016-04-28 00:43:39 +03:00
parent 3dd5a3f94f
commit f9b2762d30
17 changed files with 515 additions and 0 deletions

44
config.inc.php.dist Normal file
View File

@@ -0,0 +1,44 @@
<?php
/* Password encryption:
'rcmail': encrypt passwords by default Roundcube methods.
'secure': encrypt passwords by using the IMAP password as encryption key.
NOTE: When using 'secure' encryption, If IMAP passwords are changed
using methods other than Roundcube Webmail interface
(hmail_password or password plugin) then IMAP server identities
passwords must be re-entered by users.
*/
$rcmail_config['identities_imap_crypt'] = 'rcmail';
/* password encryption salt (only used for secure encryption) */
$rcmail_config['identities_imap_salt'] = '!kQm*fF3pXe1Kbm%9';
/* predefined imap hosts (associated with the domain part of the identity email property) */
$rcmail_config['identities_imap_external'] = array(
'gmail.com' => array(
'host' =>'ssl://imap.gmail.com:993',
'delimiter' => '/',
'readonly' => true, // on match prevent field editing
),
'googlemail.com' => array(
'host' =>'ssl://imap.gmail.com:993',
'delimiter' => '/',
'readonly' => true, // on match prevent field editing
),
'freenet.de' => array(
'host' =>'mx.freenet.de',
'delimiter' => '.',
'readonly' => false, // on match prevent field editing
),
);
$rcmail_config['identities_imap_internal'] = array(
'mydomain.tld' => array(
'host' =>'ssl://imap.mydomain.tld:993',
'delimiter' => '/',
'readonly' => true, // on match prevent field editing
),
);
/* auto-detect IMAP server */
$rcmail_config['identities_imap_autodetect'] = false;
?>