Code

oops, left debug in there
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 12 Nov 2001 22:04:29 +0000 (22:04 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 12 Nov 2001 22:04:29 +0000 (22:04 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@393 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/mailgw.py

index 17f62f7e42287d2c1cf94afa72977029be1f9847..bb025ffe204bdd8accce79099f3166c84cbb0453 100644 (file)
@@ -72,7 +72,7 @@ are calling the create() method to create a new node). If an auditor raises
 an exception, the original message is bounced back to the sender with the
 explanatory message given in the exception. 
 
-$Id: mailgw.py,v 1.31 2001-11-12 22:01:06 richard Exp $
+$Id: mailgw.py,v 1.32 2001-11-12 22:04:29 richard Exp $
 '''
 
 
@@ -138,8 +138,7 @@ class MailGW:
         if sendto:
             try:
                 self.handle_message(message)
-                sendto = [sendto[0][1]]
-                m = ['Subject: Well, it seemed to work', '', 'hi, mum!']
+                return
             except MailUsageError, value:
                 # bounce the message back to the sender with the usage message
                 fulldoc = '\n'.join(string.split(__doc__, '\n')[2:])
@@ -516,6 +515,9 @@ def parseContent(content, blank_line=re.compile(r'[\r\n]+\s*[\r\n]+'),
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.31  2001/11/12 22:01:06  richard
+# Fixed issues with nosy reaction and author copies.
+#
 # Revision 1.30  2001/11/09 22:33:28  richard
 # More error handling fixes.
 #