diff options
| author | bwarsaw | 2001-07-19 03:37:49 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-07-19 03:37:49 +0000 |
| commit | 950e1f9a251cd1693f4bd1fc9e3e8fb78ddcebd6 (patch) | |
| tree | 9953e6a8f96138b8c310eed407b28fb4141cd2b7 /Mailman/Defaults.py.in | |
| parent | 4b2c4435184edef59082b3c95e3516ada4df2c61 (diff) | |
| download | mailman-950e1f9a251cd1693f4bd1fc9e3e8fb78ddcebd6.tar.gz mailman-950e1f9a251cd1693f4bd1fc9e3e8fb78ddcebd6.tar.zst mailman-950e1f9a251cd1693f4bd1fc9e3e8fb78ddcebd6.zip | |
Diffstat (limited to 'Mailman/Defaults.py.in')
| -rw-r--r-- | Mailman/Defaults.py.in | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index c9b19a35f..81171c020 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -84,7 +84,6 @@ WEB_VLINK_COLOR = '' # If true, forces VLINK= WEB_HIGHLIGHT_COLOR = '#dddddd' # If true, alternating rows # in listinfo & admin display - ##### # Archive defaults @@ -236,6 +235,7 @@ GLOBAL_PIPELINE = [ 'Approve', 'Replybot', 'Hold', + 'Tagger', 'CalcRecips', 'Cleanse', 'CookHeaders', @@ -411,6 +411,13 @@ METAFMT_ASCII = 3 METADATA_FORMAT = METAFMT_MARSHAL +# This variable controls the order in which list-specific category options are +# presented in the admin cgi page. +ADMIN_CATEGORIES = ['general', 'members', 'privacy', 'nondigest', + 'digest', 'bounce', 'archive', 'gateway', + 'autoreply', 'topics', + ] + ##### @@ -648,7 +655,7 @@ CGIEXT = '@CGIEXT@' MAILMAN_UID = @MAILMAN_UID@ MAILMAN_GID = @MAILMAN_GID@ -# Enumeration for types of configurable variables in Mailman. +# Enumeration for Mailman cgi widget types Toggle = 1 Radio = 2 String = 3 @@ -658,7 +665,8 @@ EmailList = 6 Host = 7 Number = 8 FileUpload = 9 -Select = 10 +Select = 10 +Topics = 11 # Held message disposition actions, for use between admindb.py and # ListAdmin.py. @@ -678,7 +686,8 @@ DontReceiveOwnPosts = 2 # Non-digesters only AcknowledgePosts = 4 DisableMime = 8 # Digesters only ConcealSubscription = 16 -SuppressPasswordReminder = 32 # currently, per-list unfortunately +SuppressPasswordReminder = 32 +ReceiveNonmatchingTopics = 64 # Authentication contexts. # |
