diff options
Diffstat (limited to '')
| -rw-r--r-- | Mailman/MailList.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/MailList.py b/Mailman/MailList.py index 1268500a0..50392c30c 100644 --- a/Mailman/MailList.py +++ b/Mailman/MailList.py @@ -1226,7 +1226,7 @@ it will not be changed."""), # check all recipient addresses against the list's explicit addresses, # specifically To: Cc: and Resent-to: to = [] - for header in ('to', 'cc', 'resent-to'): + for header in ('to', 'cc', 'resent-to', 'resent-cc'): to.extend(msg.getaddrlist(header)) for fullname, addr in to: addr = string.lower(addr) |
