diff options
| author | bwarsaw | 2000-02-08 20:50:01 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-02-08 20:50:01 +0000 |
| commit | 4955373bcfc48c2e8a66a0962f8697fb71f63ce6 (patch) | |
| tree | 2072abf5c2f4a2e92e513c39dc7a04e875d5cecd | |
| parent | b4366daf601d483032c5fec65cc1e89ef8690b69 (diff) | |
| download | mailman-4955373bcfc48c2e8a66a0962f8697fb71f63ce6.tar.gz mailman-4955373bcfc48c2e8a66a0962f8697fb71f63ce6.tar.zst mailman-4955373bcfc48c2e8a66a0962f8697fb71f63ce6.zip | |
| -rw-r--r-- | Mailman/Handlers/ToArchive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Handlers/ToArchive.py b/Mailman/Handlers/ToArchive.py index e162dad97..45f261e70 100644 --- a/Mailman/Handlers/ToArchive.py +++ b/Mailman/Handlers/ToArchive.py @@ -23,7 +23,7 @@ from Mailman import mm_cfg def process(mlist, msg): # short circuits - if getattr(msg, 'isdigest', 0): + if getattr(msg, 'isdigest', 0) or not mlist.archive: return archivep = msg.getheader('x-archive') if archivep and string.lower(archivep) == 'no': |
