From 87d7a19463fe99655266f30bc7359ea3389f37f0 Mon Sep 17 00:00:00 2001 From: tassium Date: Fri, 3 Jan 2003 22:25:07 +0000 Subject: [PATCH] Added support for: Server Options: POP before SMTP General Options: Server sort, server thread sort, server charset search, UID support, PHP session name (hidden - edit that, and you broke the plugin) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4366 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- plugins/administrator/defines.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/plugins/administrator/defines.php b/plugins/administrator/defines.php index 9c961c7f..419abbf3 100644 --- a/plugins/administrator/defines.php +++ b/plugins/administrator/defines.php @@ -140,6 +140,9 @@ $defcfg = array( '$config_version' => array( 'name' => _("Config File Version"), 'cram-md5' => 'CRAM-MD5', 'digest-md5' => 'DIGEST-MD5'), 'default' => 'none'), + '$pop_before_smtp' => array( 'name' => "POP3 before SMTP?", + 'type' => SMOPT_TYPE_BOOLEAN, + 'default' => false ), '$invert_time' => array( 'name' => _("Invert Time"), 'type' => SMOPT_TYPE_BOOLEAN ), '$default_use_mdn' => array( 'name' => _("Use Confirmation Flags"), @@ -235,6 +238,20 @@ $defcfg = array( '$config_version' => array( 'name' => _("Config File Version"), 'type' => SMOPT_TYPE_BOOLEAN ), '$edit_name' => array( 'name' => _("Allow editing of full name"), 'type' => SMOPT_TYPE_BOOLEAN ), + '$allow_server_sort' => array( 'name' => "Use server-side sorting", + 'type' => SMOPT_TYPE_BOOLEAN, + 'default' => false ), + '$allow_thread_sort' => array( 'name' => "Use server-side thread sorting", + 'type' => SMOPT_TYPE_BOOLEAN, + 'default' => false ), + '$allow_charset_search' => array( 'name' => "Allow server charset search", + 'type' => SMOPT_TYPE_BOOLEAN, + 'default' => false ), + '$uid_support' => array( 'name' => "UID support", + 'type' => SMOPT_TYPE_BOOLEAN, + 'default' => false ), + '$session_name' => array( 'name' => "PHP session name", + 'type' => SMOPT_TYPE_HIDDEN ), /* --------------------------------------------------------*/ 'Group5' => array( 'name' => _("Message of the Day"), 'type' => SMOPT_TYPE_TITLE ), -- 2.25.1