summaryrefslogtreecommitdiff
path: root/scripts/mailowner
diff options
context:
space:
mode:
authorbwarsaw2000-12-20 20:01:51 +0000
committerbwarsaw2000-12-20 20:01:51 +0000
commitc8196fbdd58eef50de23e43691747aeac66ebc9d (patch)
tree78817bde8aa3aab56546e5e926d25c4aded3ae49 /scripts/mailowner
parent0ea9e66146b4974ca5613fc8077f932e720b164d (diff)
downloadmailman-c8196fbdd58eef50de23e43691747aeac66ebc9d.tar.gz
mailman-c8196fbdd58eef50de23e43691747aeac66ebc9d.tar.zst
mailman-c8196fbdd58eef50de23e43691747aeac66ebc9d.zip
main(): Explicitly queue the message to INQUEUE_DIR (see changes
described in qrunner for details).
Diffstat (limited to 'scripts/mailowner')
-rwxr-xr-xscripts/mailowner4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mailowner b/scripts/mailowner
index 7ed7ba8f9..01d2bc642 100755
--- a/scripts/mailowner
+++ b/scripts/mailowner
@@ -69,9 +69,9 @@ def main():
#
# See cron/qrunner for the paths these to flagged messages take.
if msg.get('to') == mlist.GetOwnerEmail():
- msg.Enqueue(mlist, toowner=1)
+ msg.Enqueue(mlist, toowner=1, _whichq=mm_cfg.INQUEUE_DIR)
else:
- msg.Enqueue(mlist, toadmin=1)
+ msg.Enqueue(mlist, toadmin=1, _whichq=mm_cfg.INQUEUE_DIR)