diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-05-28 19:55:03 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-05-28 19:55:03 +0000 |
commit | 1b90ca176434d9e57b8be750216eb637b4685b47 (patch) | |
tree | 2ad024e45e0bf98f7d0f545e06081b8ba5df82d2 /include/config_default.inc.php | |
parent | f0d6ec33ce231f77077ba6535ca8312286f9a40b (diff) |
- merged the linkroot integration with the existing gallery_url (unique $conf['gallery_url'] used for RSS, mail homepage root in the browse path)
- added an option $conf['debug_mail'] - if set all outgoing mails are saved into local_data_dir
git-svn-id: http://piwigo.org/svn/branches/2.1@6410 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/config_default.inc.php')
-rw-r--r-- | include/config_default.inc.php | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index 360bac36a..f57407945 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -328,19 +328,13 @@ $conf['double_password_type_in_admin'] = false; // Define if logins must be case sentitive or not at users registration. ie : // If set true, the login "user" will equal "User" or "USER" or "user", // etc. ... And it will be impossible to use such login variation to create a -// new user account. +// new user account. $conf['insensitive_case_logon'] = false; // how should we check for unicity when adding a photo. Can be 'md5sum' or // 'filename' $conf['uniqueness_mode'] = 'md5sum'; -// home_page : relative url of the homepage. Empty by default. -// It points to the index of the gallery. -// This parameter is used if home page is not index.php of the gallery. -// We suggest avoid the names "index.htm" or "index.html" if you set $conf['php_extension_in_urls'] to false. -$conf['home_page'] = ''; - // +-----------------------------------------------------------------------+ // | metadata | // +-----------------------------------------------------------------------+ @@ -464,6 +458,9 @@ $conf['debug_l10n'] = false; // activate template debugging - a new window will appear $conf['debug_template'] = false; +// save copies of sent mails into local data dir +$conf['debug_mail'] = false; + // die_on_sql_error: if an SQL query fails, should everything stop? $conf['die_on_sql_error'] = true; |