From: jervfors Date: Sun, 4 Mar 2007 01:56:54 +0000 (+0000) Subject: Moving "doc/db-backend.txt" to the administrator's manual. X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=6f4c512ccb2cf15e432ff0eb9b194c09613a9aa1;ds=inline Moving "doc/db-backend.txt" to the administrator's manual. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12300 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/config/config_default.php b/config/config_default.php index 43f4125e..a4dd81ca 100644 --- a/config/config_default.php +++ b/config/config_default.php @@ -899,13 +899,13 @@ $disable_plugins_user = ''; /*** Database ***/ /** - * Read doc/database.txt in order to get more information + * Read the administrator's manual in order to get more information * about these settings. */ /** * Database-driven private addressbooks * DSN (Data Source Name) for a database where the private - * addressbooks are stored. See doc/db-backend.txt for more info. + * addressbooks are stored. See the administrator's manual for more info. * If it is not set, the addressbooks are stored in files * in the data dir. * The DSN is in the format: mysql://user:pass@hostname/dbname diff --git a/doc/index.html b/doc/index.html index f1846cf4..202d38d3 100644 --- a/doc/index.html +++ b/doc/index.html @@ -47,13 +47,6 @@ manual.

This document describes how to use this new code, and the requirements. -
Database Backend
-
- SquirrelMail allows you to store user's preferences and address books - in database that is compatible with PHP Pear DB libraries. This document - describes how to setup database. -
-
Specific IMAP server setups
SquirrelMail configuration utility allows adjusting settings for selected diff --git a/functions/db_prefs.php b/functions/db_prefs.php index 7b59c721..0c203840 100644 --- a/functions/db_prefs.php +++ b/functions/db_prefs.php @@ -299,7 +299,7 @@ class dbPrefs { if (strlen($user) > $this->user_size) { $this->error = "Oversized username value." ." Your preferences can't be saved." - ." See doc/db-backend.txt or contact your system administrator."; + ." See the administrator's manual or contact your system administrator."; /** * Debugging function. Can be used to log all issues that trigger @@ -317,7 +317,7 @@ class dbPrefs { if (strlen($key) > $this->key_size) { $err_msg = "Oversized user's preference key." ." Some preferences were not saved." - ." See doc/db-backend.txt or contact your system administrator."; + ." See the administrator's manual or contact your system administrator."; // error is not fatal. Only some preference is not saved. trigger_error($err_msg,E_USER_WARNING); return false; @@ -328,7 +328,7 @@ class dbPrefs { if (strlen($value) > $this->val_size) { $err_msg = "Oversized user's preference value." ." Some preferences were not saved." - ." See doc/db-backend.txt or contact your system administrator."; + ." See the administrator's manual or contact your system administrator."; // error is not fatal. Only some preference is not saved. trigger_error($err_msg,E_USER_WARNING); return false; @@ -541,5 +541,3 @@ function getSig($data_dir, $username, $number) { } return getPref($data_dir, $username, $key); } - -// vim: et ts=4