summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/db.inc.php.dist5
-rw-r--r--config/main.inc.php.dist6
2 files changed, 8 insertions, 3 deletions
diff --git a/config/db.inc.php.dist b/config/db.inc.php.dist
index 2d8888b91..e1e95d17e 100644
--- a/config/db.inc.php.dist
+++ b/config/db.inc.php.dist
@@ -15,13 +15,14 @@
$rcmail_config = array();
// PEAR database DSN for read/write operations
-//format is db_provider://user:password@host/databse
+// format is db_provider://user:password@host/databse
+// currentyl suported db_providers: mysql, sqlite, pgsql
$rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail';
+// sqlite example: 'sqlite://./sqlite.db?mode=0646';
// PEAR database DSN for read only operations (if empty write database will be used)
// userful for database replication
-
$rcmail_config['db_dsnr'] = '';
// you can define specific table names used to store webmail data
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index 86f07781c..e34e2f368 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -28,9 +28,13 @@ $rcmail_config['auto_create_user'] = TRUE;
// the mail host chosen to perform the log-in
// leave blank to show a textbox at login, give a list of hosts
-// to display a pulldown menu or set one host as string
+// to display a pulldown menu or set one host as string.
+// To use SSL connection, enter ssl://hostname:993
$rcmail_config['default_host'] = '';
+// TCP port used for IMAP connections
+$rcmail_config['default_port'] = 143;
+
// use this host for sending mails.
// if left blank, the PHP mail() function is used
$rcmail_config['smtp_server'] = '';