diff options
| author | hmeland | 2000-04-08 17:12:22 +0000 |
|---|---|---|
| committer | hmeland | 2000-04-08 17:12:22 +0000 |
| commit | 432fd0c03283c5ac674de8f6b50c756e8e48d52c (patch) | |
| tree | 1d1c23776a06497f12cd51c44a93c9bc68200254 /Mailman/ListAdmin.py | |
| parent | 9003e4510ac0de3e94a2576dff1d377f11e9d363 (diff) | |
| download | mailman-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.py | 2 |
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: |
