From: tokul Date: Sun, 20 Mar 2005 10:43:26 +0000 (+0000) Subject: adding two configuration options X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=06b811da400e8886cbf0607e0a8ebfb9e80fd4f1 adding two configuration options git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9092 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/plugins/administrator/defines.php b/plugins/administrator/defines.php index 72b227b3..d09b8196 100644 --- a/plugins/administrator/defines.php +++ b/plugins/administrator/defines.php @@ -340,15 +340,19 @@ $defcfg = array( '$config_version' => array( 'name' => _("Config File Version"), 'type' => SMOPT_TYPE_BOOLEAN ), '$use_php_iconv' => array( 'name' => _("Use PHP iconv functions"), 'type' => SMOPT_TYPE_BOOLEAN ), + '$allow_remote_configtest' => array( 'name' => _("Allow remote configuration test"), + 'type' => SMOPT_TYPE_BOOLEAN ), /* ---- Settings of address books ---- */ 'Group11' => array( 'name' => _("Address Books"), 'type' => SMOPT_TYPE_TITLE ), '$default_use_javascript_addr_book' => array( 'name' => _("Default Javascript Addressbook"), 'type' => SMOPT_TYPE_BOOLEAN ), - '$abook_global_file' => array( 'name' => _("Global address book file"), - 'type' => SMOPT_TYPE_STRING ), + '$abook_global_file' => array( 'name' => _("Global address book file"), + 'type' => SMOPT_TYPE_STRING ), '$abook_global_file_writeable' => array( 'name' => _("Allow writing into global address book file"), - 'type' => SMOPT_TYPE_BOOLEAN ), + 'type' => SMOPT_TYPE_BOOLEAN ), + '$abook_global_file_listing' => array( 'name' => _("Allow listing of global address book"), + 'type' => SMOPT_TYPE_BOOLEAN ), /* --------------------------------------------------------*/ 'Group7' => array( 'name' => _("Themes"), 'type' => SMOPT_TYPE_TITLE ),