X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Fadministrator%2Fdefines.php;h=c9abb7fbf03872f654cffe4a92981eee6a3b7111;hp=677e58627977fcf74207636b3ef63e4f06fc2fea;hb=5ed13ec82d57e60d99629c25590e799bd5a4506b;hpb=b269f09f6e233a6d3fc513cdd05a6428087e5c85 diff --git a/plugins/administrator/defines.php b/plugins/administrator/defines.php index 677e5862..c9abb7fb 100644 --- a/plugins/administrator/defines.php +++ b/plugins/administrator/defines.php @@ -11,6 +11,7 @@ * $Id$ */ +require_once( '../functions/constants.php' ); /* Define constants for the various option types. */ define('SMOPT_TYPE_UNDEFINED', -1); @@ -140,9 +141,14 @@ $defcfg = array( '$config_version' => array( 'name' => _("Config File Version"), '$show_contain_subfolders_option' => array( 'name' => _("Show 'Contain Sub.' Option"), 'type' => SMOPT_TYPE_BOOLEAN ), '$default_unseen_notify' => array( 'name' => _("Default Unseen Notify"), - 'type' => SMOPT_TYPE_INTEGER ), + 'type' => SMOPT_TYPE_NUMLIST, + 'posvals' => array( SMPREF_UNSEEN_NONE => _("No Notification"), + SMPREF_UNSEEN_INBOX => _("Only INBOX"), + SMPREF_UNSEEN_ALL => _("All Folders")) ), '$default_unseen_type' => array( 'name' => _("Default Unseen Type"), - 'type' => SMOPT_TYPE_INTEGER ), + 'type' => SMOPT_TYPE_NUMLIST , + 'posvals' => array( SMPREF_UNSEEN_ONLY => _("Only Unseen"), + SMPREF_UNSEEN_TOTAL => _("Unseen and Total") ) ), '$auto_create_special' => array( 'name' => _("Auto Create Special Folders"), 'type' => SMOPT_TYPE_BOOLEAN ), '$default_use_javascript_addr_book' => array( 'name' => _("Default Javascript Adrressbook"),