@@ -72,7 +72,7 @@ class node. Any parts of other types are each stored in separate files
7272an exception, the original message is bounced back to the sender with the
7373explanatory message given in the exception.
7474
75- $Id: mailgw.py,v 1.20 2001-10-17 23:13:19 richard Exp $
75+ $Id: mailgw.py,v 1.21 2001-10-21 00:53:42 richard Exp $
7676'''
7777
7878
@@ -382,7 +382,7 @@ def handle_message(self, message):
382382 if properties .has_key ('title' ) and not props .has_key ('title' ):
383383 props ['title' ] = title
384384 props ['messages' ] = [message_id ]
385- props ['nosy' ] = recipients [:]
385+ props ['nosy' ] = props . get ( 'nosy' , []) + recipients
386386 props ['nosy' ].append (author )
387387 props ['nosy' ].sort ()
388388 nodeid = cl .create (** props )
@@ -418,6 +418,12 @@ def parseContent(content, blank_line=re.compile(r'[\r\n]+\s*[\r\n]+'),
418418
419419#
420420# $Log: not supported by cvs2svn $
421+ # Revision 1.20 2001/10/17 23:13:19 richard
422+ # Did a fair bit of work on the admin tool. Now has an extra command "table"
423+ # which displays node information in a tabular format. Also fixed import and
424+ # export so they work. Removed freshen.
425+ # Fixed quopri usage in mailgw from bug reports.
426+ #
421427# Revision 1.19 2001/10/11 23:43:04 richard
422428# Implemented the comma-separated printing option in the admin tool.
423429# Fixed a typo (more of a vim-o actually :) in mailgw.
0 commit comments