summaryrefslogtreecommitdiff
path: root/scripts/mailowner
diff options
context:
space:
mode:
authorbwarsaw2001-06-27 23:02:46 +0000
committerbwarsaw2001-06-27 23:02:46 +0000
commit5f3342e87b1ac613c5f5efe4c318c1cce9943fdd (patch)
tree475b4d5b19f5807c79508b21e48986a996af5802 /scripts/mailowner
parent083048a5fa8ed092bb9a6ec27ff7c6e02d28cbc0 (diff)
downloadmailman-5f3342e87b1ac613c5f5efe4c318c1cce9943fdd.tar.gz
mailman-5f3342e87b1ac613c5f5efe4c318c1cce9943fdd.tar.zst
mailman-5f3342e87b1ac613c5f5efe4c318c1cce9943fdd.zip
Diffstat (limited to 'scripts/mailowner')
-rwxr-xr-xscripts/mailowner6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/mailowner b/scripts/mailowner
index fb0550bea..af27ca26c 100755
--- a/scripts/mailowner
+++ b/scripts/mailowner
@@ -47,7 +47,8 @@ def main():
sys.exit(1)
# Make sure the list exists
if not Utils.list_exists(listname):
- print >> sys.stderr, _('mailcmd script, list not found: %(listname)s')
+ print >> sys.stderr, _(
+ 'mailowner script, list not found: %(listname)s')
sys.exit(1)
# Immediately queue the message for the bounce/cmd qrunner to process.
# The advantage to this approach is that messages should never get lost --
@@ -60,7 +61,8 @@ def main():
# processing while -owner messages do not. However, it's too expensive to
# make this determination here, so we defer it to the CommandRunner.
cmdq = get_switchboard(mm_cfg.CMDQUEUE_DIR)
- cmdq.enqueue(sys.stdin.read(), listname=listname, toauthoritah=1)
+ cmdq.enqueue(sys.stdin.read(), listname=listname, toauthoritah=1,
+ _plaintext=1)