diff roundup/mailgw.py @ 309:f193e0a1b9a5

[SF#473130]: Nosy list not set correctly
author Richard Jones <richard@users.sourceforge.net>
date Sun, 21 Oct 2001 00:53:42 +0000
parents fd9835c1e58d
children 0ec8a9f1cbe6
line wrap: on
line diff
--- a/roundup/mailgw.py	Sun Oct 21 00:45:15 2001 +0000
+++ b/roundup/mailgw.py	Sun Oct 21 00:53:42 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.20 2001-10-17 23:13:19 richard Exp $
+$Id: mailgw.py,v 1.21 2001-10-21 00:53:42 richard Exp $
 '''
 
 
@@ -382,7 +382,7 @@
             if properties.has_key('title') and not props.has_key('title'):
                 props['title'] = title
             props['messages'] = [message_id]
-            props['nosy'] = recipients[:]
+            props['nosy'] = props.get('nosy', []) + recipients
             props['nosy'].append(author)
             props['nosy'].sort()
             nodeid = cl.create(**props)
@@ -418,6 +418,12 @@
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.20  2001/10/17 23:13:19  richard
+# Did a fair bit of work on the admin tool. Now has an extra command "table"
+# which displays node information in a tabular format. Also fixed import and
+# export so they work. Removed freshen.
+# Fixed quopri usage in mailgw from bug reports.
+#
 # Revision 1.19  2001/10/11 23:43:04  richard
 # Implemented the comma-separated printing option in the admin tool.
 # Fixed a typo (more of a vim-o actually :) in mailgw.

Roundup Issue Tracker: http://roundup-tracker.org/