Mercurial > p > roundup > code
diff roundup/mailgw.py @ 264:a671e5917b33
Many features and fixes.
. roundup-admin create now prompts for property info if none is supplied
on the command-line.
. hyperdb Class getprops() method may now return only the mutable
properties.
. Login now uses cookies, which makes it a whole lot more flexible. We can
now support anonymous user access (read-only, unless there's an
"anonymous" user, in which case write access is permitted). Login
handling has been moved into cgi_client.Client.main()
. The "extended" schema is now the default in roundup init.
. The schemas have had their page headings modified to cope with the new
login handling. Existing installations should copy the interfaces.py
file from the roundup lib directory to their instance home.
. Incorrectly had a Bizar Software copyright on the cgitb.py module from
Ping - has been removed.
. Fixed a whole bunch of places in the CGI interface where we should have
been returning Not Found instead of throwing an exception.
. Fixed a deviation from the spec: trying to modify the 'id' property of
an item now throws an exception.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 05 Oct 2001 02:23:24 +0000 |
| parents | 6bf584784e31 |
| children | a4241ddd22d7 |
line wrap: on
line diff
--- a/roundup/mailgw.py Thu Oct 04 02:16:15 2001 +0000 +++ b/roundup/mailgw.py Fri Oct 05 02:23:24 2001 +0000 @@ -72,7 +72,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.15 2001-08-30 06:01:17 richard Exp $ +$Id: mailgw.py,v 1.16 2001-10-05 02:23:24 richard Exp $ ''' @@ -230,7 +230,9 @@ elif isinstance(type, hyperdb.Multilink): props[key] = value.split(',') + # # handle the users + # author = self.db.uidFromAddress(message.getaddrlist('from')[0]) recipients = [] for recipient in message.getaddrlist('to') + message.getaddrlist('cc'): @@ -398,6 +400,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.15 2001/08/30 06:01:17 richard +# Fixed missing import in mailgw :( +# # Revision 1.14 2001/08/13 23:02:54 richard # Make the mail parser a little more robust. #
