[Mailman-Developers] Quick patch to fix '%' in sender

Christopher Lindsey lindsey@ncsa.uiuc.edu
Mon, 21 Feb 2000 11:12:03 -0600 (CST)


We were having problems with email addresses containing a '%'.  Specifically,
if the address were held for some reason the admindb interface would
choke when it tried to process it.

There's a (very) small patch below against the current CVS tree.

Chris

----------------------------------------------------------------------

*** Mailman/ListAdmin.py	Mon Feb 21 11:11:55 2000
--- Mailman/ListAdmin.py	Mon Feb 21 11:11:55 2000
***************
*** 192,198 ****
  \tSubject: %(subject)s''' % {
                  'listname' : self.internal_name(),
                  'rejection': rejection,
!                 'sender'   : sender,
                  'subject'  : strquote(subject),
                  }
              if comment:
--- 192,198 ----
  \tSubject: %(subject)s''' % {
                  'listname' : self.internal_name(),
                  'rejection': rejection,
!                 'sender'   : strquote(sender),
                  'subject'  : strquote(subject),
                  }
              if comment: