summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2000-07-27 07:10:54 +0000
committerbwarsaw2000-07-27 07:10:54 +0000
commit71ae12f5fcefc1398db31176b9baf21fc0b60481 (patch)
treeae719b1720463ecd94ba9d9cc6194e5161b0d8f4
parentb7d0f051d72debcce5a3590847d20c455f432b32 (diff)
downloadmailman-71ae12f5fcefc1398db31176b9baf21fc0b60481.tar.gz
mailman-71ae12f5fcefc1398db31176b9baf21fc0b60481.tar.zst
mailman-71ae12f5fcefc1398db31176b9baf21fc0b60481.zip
HasExplicitDest(): Integrating a patch from Gergely Madarasz from
20-Jun-2000; Resent-CC: should also be considered an explicit destination.
Diffstat (limited to '')
-rw-r--r--Mailman/MailList.py2
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)