summaryrefslogtreecommitdiff
path: root/Mailman/ListAdmin.py
diff options
context:
space:
mode:
authorhmeland2000-04-08 17:12:22 +0000
committerhmeland2000-04-08 17:12:22 +0000
commit432fd0c03283c5ac674de8f6b50c756e8e48d52c (patch)
tree1d1c23776a06497f12cd51c44a93c9bc68200254 /Mailman/ListAdmin.py
parent9003e4510ac0de3e94a2576dff1d377f11e9d363 (diff)
downloadmailman-432fd0c03283c5ac674de8f6b50c756e8e48d52c.tar.gz
mailman-432fd0c03283c5ac674de8f6b50c756e8e48d52c.tar.zst
mailman-432fd0c03283c5ac674de8f6b50c756e8e48d52c.zip
__handlepost(): Sender's address (which is taken from the incoming
message) might contain '%' chars, quote them before they reach MailList.LogMsg().
Diffstat (limited to 'Mailman/ListAdmin.py')
-rw-r--r--Mailman/ListAdmin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/ListAdmin.py b/Mailman/ListAdmin.py
index 583db8fcc..83c55fe73 100644
--- a/Mailman/ListAdmin.py
+++ b/Mailman/ListAdmin.py
@@ -192,7 +192,7 @@ class ListAdmin:
\tSubject: %(subject)s''' % {
'listname' : self.internal_name(),
'rejection': rejection,
- 'sender' : sender,
+ 'sender' : strquote(sender),
'subject' : strquote(subject),
}
if comment: