/*** 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
This document describes how to use this new code, and the requirements.
</dd>
- <dt><a href="db-backend.txt">Database Backend</a></dt>
- <dd>
- 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.
- </dd>
-
<dt><a href="presets.txt">Specific IMAP server setups</a></dt>
<dd>
SquirrelMail configuration utility allows adjusting settings for selected
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
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;
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;
}
return getPref($data_dir, $username, $key);
}
-
-// vim: et ts=4