|
@@ -25,7 +25,7 @@ $config = array();
|
25
|
25
|
// For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php
|
26
|
26
|
// NOTE: for SQLite use absolute path (Linux): 'sqlite:////full/path/to/sqlite.db?mode=0646'
|
27
|
27
|
// or (Windows): 'sqlite:///C:/full/path/to/sqlite.db'
|
28
|
|
-$config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail';
|
|
28
|
+$config['db_dsnw'] = 'sqlite:////decrypted/roundcube/sqlite.db?mode=0664';
|
29
|
29
|
|
30
|
30
|
// The mail host chosen to perform the log-in.
|
31
|
31
|
// Leave blank to show a textbox at login, give a list of hosts
|
|
@@ -37,7 +37,7 @@ $config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail';
|
37
|
37
|
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
|
38
|
38
|
// %s - domain name after the '@' from e-mail address provided at login screen
|
39
|
39
|
// For example %n = mail.domain.tld, %t = domain.tld
|
40
|
|
-$config['default_host'] = 'localhost';
|
|
40
|
+$config['default_host'] = 'ssl://{{ webmail_domain }}:993';
|
41
|
41
|
|
42
|
42
|
// SMTP server host (for sending mails).
|
43
|
43
|
// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
|
|
@@ -49,19 +49,19 @@ $config['default_host'] = 'localhost';
|
49
|
49
|
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
|
50
|
50
|
// %z - IMAP domain (IMAP hostname without the first part)
|
51
|
51
|
// For example %n = mail.domain.tld, %t = domain.tld
|
52
|
|
-$config['smtp_server'] = '';
|
|
52
|
+$config['smtp_server'] = 'localhost';
|
53
|
53
|
|
54
|
54
|
// SMTP port (default is 25; use 587 for STARTTLS or 465 for the
|
55
|
55
|
// deprecated SSL over SMTP (aka SMTPS))
|
56
|
|
-$config['smtp_port'] = 25;
|
|
56
|
+$config['smtp_port'] = 465;
|
57
|
57
|
|
58
|
58
|
// SMTP username (if required) if you use %u as the username Roundcube
|
59
|
59
|
// will use the current username for login
|
60
|
|
-$config['smtp_user'] = '';
|
|
60
|
+$config['smtp_user'] = '%u';
|
61
|
61
|
|
62
|
62
|
// SMTP password (if required) if you use %p as the password Roundcube
|
63
|
63
|
// will use the current user's password for login
|
64
|
|
-$config['smtp_pass'] = '';
|
|
64
|
+$config['smtp_pass'] = '%p';
|
65
|
65
|
|
66
|
66
|
// provide an URL where a user can get support for this Roundcube installation
|
67
|
67
|
// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
|
|
@@ -74,7 +74,7 @@ $config['product_name'] = 'Roundcube Webmail';
|
74
|
74
|
// in the session record (and the client cookie if remember password is enabled).
|
75
|
75
|
// please provide a string of exactly 24 chars.
|
76
|
76
|
// YOUR KEY MUST BE DIFFERENT THAN THE SAMPLE VALUE FOR SECURITY REASONS
|
77
|
|
-$config['des_key'] = 'rcmail-!24ByteDESkey*Str';
|
|
77
|
+$config['des_key'] = 'fwef42cna12wefew9fewfmac';
|
78
|
78
|
|
79
|
79
|
// List of active plugins (in plugins/ directory)
|
80
|
80
|
$config['plugins'] = array(
|