summaryrefslogtreecommitdiff
path: root/loader
diff options
context:
space:
mode:
Diffstat (limited to 'loader')
-rwxr-xr-xloader/load_message.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/load_message.py b/loader/load_message.py
index 2572ec1..68439a2 100755
--- a/loader/load_message.py
+++ b/loader/load_message.py
@@ -98,7 +98,7 @@ if __name__ == "__main__":
if opt.filter_msgid and not ap.is_msgid(opt.filter_msgid):
continue
try:
- ap.analyze()
+ ap.analyze(date_override=opt.force_date)
except IgnorableException, e:
log_failed_message(listid, "directory", os.path.join(opt.directory, x), ap, e)
opstatus.failed += 1
@@ -126,7 +126,7 @@ if __name__ == "__main__":
if opt.filter_msgid and not ap.is_msgid(opt.filter_msgid):
continue
try:
- ap.analyze()
+ ap.analyze(date_override=opt.force_date)
except IgnorableException, e:
log_failed_message(listid, "mbox", opt.mbox, ap, e)
opstatus.failed += 1