summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1bab693)
raw | patch | inline | side by side (parent: 1bab693)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 23 Oct 2001 22:57:52 +0000 (22:57 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 23 Oct 2001 22:57:52 +0000 (22:57 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@332 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/mailgw.py | patch | blob | history |
diff --git a/roundup/mailgw.py b/roundup/mailgw.py
index 53405ce889e646ca89e8afc55fa129b20861f5bd..dee933015f6cc092701cfb782d18da35a5cc8c99 100644 (file)
--- a/roundup/mailgw.py
+++ b/roundup/mailgw.py
an exception, the original message is bounced back to the sender with the
explanatory message given in the exception.
-$Id: mailgw.py,v 1.23 2001-10-21 04:00:20 richard Exp $
+$Id: mailgw.py,v 1.24 2001-10-23 22:57:52 richard Exp $
'''
except KeyError:
pass
else:
- if not props['status'] or props['status'] == unread_id:
+ if (not props.has_key('status') or
+ props['status'] == unread_id):
props['status'] = chatting_id
cl.set(nodeid, **props)
#
# $Log: not supported by cvs2svn $
+# Revision 1.23 2001/10/21 04:00:20 richard
+# MailGW now moves 'unread' to 'chatting' on receiving e-mail for an issue.
+#
# Revision 1.22 2001/10/21 03:35:13 richard
# bug #473125: Paragraph in e-mails
#