summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2001-05-14 18:05:20 +0000
committerbwarsaw2001-05-14 18:05:20 +0000
commitb0203e6fa189fa98523802031ca2e35dc98d73ed (patch)
tree41b28fbd596530df9853616f3a73b3ec74752dbf
parentfe29fe1c2498f68f73dac6d66745702cf1c37f6a (diff)
downloadmailman-b0203e6fa189fa98523802031ca2e35dc98d73ed.tar.gz
mailman-b0203e6fa189fa98523802031ca2e35dc98d73ed.tar.zst
mailman-b0203e6fa189fa98523802031ca2e35dc98d73ed.zip
main(): Don't set the `received_time' metadata here; it's set in the
queue runner.
-rwxr-xr-xscripts/post4
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/post b/scripts/post
index 89678a9be..6012d057e 100755
--- a/scripts/post
+++ b/scripts/post
@@ -27,7 +27,6 @@ Stdin is the mail message, and argv[1] is the name of the target mailing list.
"""
import sys
-import time
import paths
from Mailman import mm_cfg
@@ -62,8 +61,7 @@ def main():
inq = get_switchboard(mm_cfg.INQUEUE_DIR)
inq.enqueue(sys.stdin.read(),
listname=listname,
- tolist=1,
- received_time=time.time())
+ tolist=1)