diff options
| author | bwarsaw | 1999-12-11 16:16:23 +0000 |
|---|---|---|
| committer | bwarsaw | 1999-12-11 16:16:23 +0000 |
| commit | 12142bc0ce0e453bb9b394524a0b7a9ddb193e23 (patch) | |
| tree | 9694d62f44ee73e9553a73d8c77f0eb919d41fc6 | |
| parent | 66c42706c3369238eac11f948928154cbec263a7 (diff) | |
| download | mailman-12142bc0ce0e453bb9b394524a0b7a9ddb193e23.tar.gz mailman-12142bc0ce0e453bb9b394524a0b7a9ddb193e23.tar.zst mailman-12142bc0ce0e453bb9b394524a0b7a9ddb193e23.zip | |
| -rw-r--r-- | Mailman/Bouncers/Postfix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Bouncers/Postfix.py b/Mailman/Bouncers/Postfix.py index d76a59323..3fa13456f 100644 --- a/Mailman/Bouncers/Postfix.py +++ b/Mailman/Bouncers/Postfix.py @@ -47,7 +47,7 @@ def process(mlist, msg): msg2 = mimetools.Message(s) if msg2.gettype() == 'text/plain': desc = msg2.get('content-description') - if string.lower(desc) == 'notification': + if desc and string.lower(desc) == 'notification': return findaddr(msg2.fp) # probably not a Postfix bounce return None |
