summaryrefslogtreecommitdiff
path: root/Mailman/pythonlib/rfc822.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Deprecate the Mailman/pythonlib directory. First, most if not all ofbwarsaw2002-02-231-1002/+0
| | | | | | | | the modules are now unnecessary because we're going to require at least Python 2.1.x and it should have relatively bug-free versions of these modules. Second, if we find we need to override standard modules, we have a different way of doing it now (by path-hacking in a pythonlib directory one level up into the front of sys.path).
* File from Python 2.2bwarsaw2001-07-191-0/+1002
|
* Now that we require Python 2.0, we're fine getting rid of these copies.bwarsaw2000-12-261-951/+0
|
* Merge with Python 1.5.2+ version of this module. Also includebwarsaw1999-07-121-4/+42
| | | | | | | | | | potential fix for bogus recip header bug... e.g., when To: : you get a traceback from m.getaddrlist('to')
* Installing latest editions from the Python development tree. Thisbwarsaw1999-01-141-13/+13
| | | | fixes several bugs uncovered in Mailman and other testing.
* getaddrlist(): fixes to handle continuation lines, and watching forbwarsaw1999-01-141-1/+7
| | | | already existing commas. Should do a better job.
* New proposed change to standard library module. Get rid ofbwarsaw1999-01-131-24/+11
| | | | | | | getallrecipients() and just make getaddrlist() do the right thing (scan all matching headers, not just the first one). Patch submitted to Guido.
* getallrecipients(): returns a tuple list of all To: and Cc: headerbwarsaw1999-01-121-0/+16
| | | | recipients, parsed with AddressList()
* Copied from Python 1.5.2 since we'll need the new interface.bwarsaw1999-01-121-0/+904