| Request | MaildropHost -- bug report -- by Simon Michael |
| Posted on | Mar 21, 2005 6:17 pm |
| Subscribe |
| Resolve by Jens Vagelpohl on Mar 22, 2005 4:56 am | |
|
Thanks Michael, it seems no one else has run into this before. It's now fixed in CVS. jens |
|
|
|
| Initial Request by Simon Michael on Mar 21, 2005 6:17 pm | |
|
A logic error was splitting the to address into individual characters. This patch fixed it for me: $ cvs diff MaildropHost.py Index: MaildropHost.py =================================================================== RCS file: /cvs-repository/Products/MaildropHost/MaildropHost.py,v retrieving revision 1.22 diff -r1.22 MaildropHost.py 168c168 < if not isinstance(mto, StringType) or not isinstance(mto, UnicodeType): --- > if not (isinstance(mto, StringType) or isinstance(mto, UnicodeType)): Thanks for the software! |