diff roundup/mailgw.py @ 476:00450ff9c4e7

ANONYMOUS_ACCESS -> ANONYMOUS_REGISTER
author Richard Jones <richard@users.sourceforge.net>
date Wed, 02 Jan 2002 02:32:38 +0000
parents a1a44636bace
children 9ad589d0a60f c242455d9b46
line wrap: on
line diff
--- a/roundup/mailgw.py	Wed Jan 02 02:31:38 2002 +0000
+++ b/roundup/mailgw.py	Wed Jan 02 02:32:38 2002 +0000
@@ -73,7 +73,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.46 2002-01-02 02:31:38 richard Exp $
+$Id: mailgw.py,v 1.47 2002-01-02 02:32:38 richard Exp $
 '''
 
 
@@ -387,7 +387,7 @@
         #
 
         # Don't create users if ANONYMOUS_REGISTER is denied
-        if self.ANONYMOUS_ACCESS == 'deny':
+        if self.ANONYMOUS_REGISTER == 'deny':
             create = 0
         else:
             create = 1
@@ -708,6 +708,21 @@
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.46  2002/01/02 02:31:38  richard
+# Sorry for the huge checkin message - I was only intending to implement #496356
+# but I found a number of places where things had been broken by transactions:
+#  . modified ROUNDUPDBSENDMAILDEBUG to be SENDMAILDEBUG and hold a filename
+#    for _all_ roundup-generated smtp messages to be sent to.
+#  . the transaction cache had broken the roundupdb.Class set() reactors
+#  . newly-created author users in the mailgw weren't being committed to the db
+#
+# Stuff that made it into CHANGES.txt (ie. the stuff I was actually working
+# on when I found that stuff :):
+#  . #496356 ] Use threading in messages
+#  . detectors were being registered multiple times
+#  . added tests for mailgw
+#  . much better attaching of erroneous messages in the mail gateway
+#
 # Revision 1.45  2001/12/20 15:43:01  rochecompaan
 # Features added:
 #  .  Multilink properties are now displayed as comma separated values in

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