Mercurial > p > roundup > code
diff roundup/mailgw.py @ 1249:6c24a86a12ae
Fixes for SourceForge tracker bugs.
- fixed filter() with no sort/group [SF#618614]
- fixed register with no session [SF#618611]
- fixed log / pid file path handling in roundup-server [SF#617981]
- fixed old gadfly compatibiltiy problem, for sure this time [SF#612873]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 07 Oct 2002 00:52:51 +0000 |
| parents | 8dd4f736370b |
| children | 8b766547d4b8 |
line wrap: on
line diff
--- a/roundup/mailgw.py Fri Oct 04 06:34:07 2002 +0000 +++ b/roundup/mailgw.py Mon Oct 07 00:52:51 2002 +0000 @@ -73,7 +73,7 @@ an exception, the original message is bounced back to the sender with the explanatory message given in the exception. -$Id: mailgw.py,v 1.94 2002-10-03 06:56:29 richard Exp $ +$Id: mailgw.py,v 1.95 2002-10-07 00:52:51 richard Exp $ ''' import string, re, os, mimetools, cStringIO, smtplib, socket, binascii, quopri @@ -859,8 +859,7 @@ # try the user alternate addresses if possible props = db.user.getprops() if props.has_key('alternate_addresses'): - users = db.user.filter(None, {'alternate_addresses': address}, - [], []) + users = db.user.filter(None, {'alternate_addresses': address}) user = extractUserFromList(db.user, users) if user is not None: return user
