summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2001-02-28 06:05:17 +0000
committerbwarsaw2001-02-28 06:05:17 +0000
commit63f1b504f15bdcd868f746983f05dbe0a97fa8b2 (patch)
treeaa55b71f0d7ded71cabc86f237c8ec9b03e9899a
parent7f16355cd6d7956dd6f7423c1138cae49b9e93d5 (diff)
downloadmailman-63f1b504f15bdcd868f746983f05dbe0a97fa8b2.tar.gz
mailman-63f1b504f15bdcd868f746983f05dbe0a97fa8b2.tar.zst
mailman-63f1b504f15bdcd868f746983f05dbe0a97fa8b2.zip
QRUNNERS: BounceRunner -> CommandRunner
BOUNCEQUEUE_DIR -> CMDQUEUE_DIR
-rw-r--r--Mailman/Defaults.py.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in
index eee32d5d9..c4e2c7a57 100644
--- a/Mailman/Defaults.py.in
+++ b/Mailman/Defaults.py.in
@@ -230,7 +230,7 @@ QRUNNERS = [
('OutgoingRunner', 1), # outgoing messages to the smtpd
('NewsRunner', 1), # outgoing messages to the nntpd
('ArchRunner', 1), # messages for the archiver
-# ('BounceRunner', 1), # bounces from the outside world
+ ('CommandRunner', 1), # commands and bounces from the outside world
('VirginRunner', 1), # internally crafted (virgin birth) messages
]
@@ -592,7 +592,7 @@ DEFAULT_SERVER_LANGUAGE = "en"
QUEUE_DIR = os.path.join(VAR_PREFIX, 'qfiles')
INQUEUE_DIR = os.path.join(QUEUE_DIR, 'in')
OUTQUEUE_DIR = os.path.join(QUEUE_DIR, 'out')
-BOUNCEQUEUE_DIR = os.path.join(QUEUE_DIR, 'bounce')
+CMDQUEUE_DIR = os.path.join(QUEUE_DIR, 'commands')
NEWSQUEUE_DIR = os.path.join(QUEUE_DIR, 'news')
ARCHQUEUE_DIR = os.path.join(QUEUE_DIR, 'archive')
SHUNTQUEUE_DIR = os.path.join(QUEUE_DIR, 'shunt')
@@ -612,9 +612,9 @@ from Version import *
def _(string):
return string
-LC_DESCRIPTIONS = {'es': [_("Spanish (Spain)"), 'iso-8859-1'],
- 'it': [_("Italian"), 'iso-8859-1'],
- 'en': [_("English (USA)"), 'us-ascii'],
+LC_DESCRIPTIONS = {'es': (_("Spanish (Spain)"), 'iso-8859-1'),
+ 'it': (_("Italian"), 'iso-8859-1'),
+ 'en': (_("English (USA)"), 'us-ascii'),
}
del _