Mercurial > p > roundup > code
changeset 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 | 05a46da7293a |
| files | roundup/mailgw.py roundup/templates/classic/interfaces.py roundup/templates/extended/interfaces.py |
| diffstat | 3 files changed, 37 insertions(+), 6 deletions(-) [+] |
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
--- a/roundup/templates/classic/interfaces.py Wed Jan 02 02:31:38 2002 +0000 +++ b/roundup/templates/classic/interfaces.py Wed Jan 02 02:32:38 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: interfaces.py,v 1.10 2001-12-20 15:43:01 rochecompaan Exp $ +# $Id: interfaces.py,v 1.11 2002-01-02 02:32:38 richard Exp $ import instance_config from roundup import cgi_client, mailgw @@ -38,10 +38,18 @@ ISSUE_TRACKER_EMAIL = instance_config.ISSUE_TRACKER_EMAIL ADMIN_EMAIL = instance_config.ADMIN_EMAIL MAILHOST = instance_config.MAILHOST - ANONYMOUS_ACCESS = instance_config.ANONYMOUS_ACCESS + ANONYMOUS_REGISTER = instance_config.ANONYMOUS_REGISTER # # $Log: not supported by cvs2svn $ +# Revision 1.10 2001/12/20 15:43:01 rochecompaan +# Features added: +# . Multilink properties are now displayed as comma separated values in +# a textbox +# . The add user link is now only visible to the admin user +# . Modified the mail gateway to reject submissions from unknown +# addresses if ANONYMOUS_ACCESS is denied +# # Revision 1.9 2001/11/26 23:00:53 richard # This config stuff is getting to be a real mess... #
--- a/roundup/templates/extended/interfaces.py Wed Jan 02 02:31:38 2002 +0000 +++ b/roundup/templates/extended/interfaces.py Wed Jan 02 02:32:38 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: interfaces.py,v 1.14 2001-12-20 15:43:01 rochecompaan Exp $ +# $Id: interfaces.py,v 1.15 2002-01-02 02:32:38 richard Exp $ import instance_config from roundup import cgi_client, mailgw @@ -38,10 +38,18 @@ ISSUE_TRACKER_EMAIL = instance_config.ISSUE_TRACKER_EMAIL ADMIN_EMAIL = instance_config.ADMIN_EMAIL MAILHOST = instance_config.MAILHOST - ANONYMOUS_ACCESS = instance_config.ANONYMOUS_ACCESS + ANONYMOUS_REGISTER = instance_config.ANONYMOUS_REGISTER # # $Log: not supported by cvs2svn $ +# Revision 1.14 2001/12/20 15:43:01 rochecompaan +# Features added: +# . Multilink properties are now displayed as comma separated values in +# a textbox +# . The add user link is now only visible to the admin user +# . Modified the mail gateway to reject submissions from unknown +# addresses if ANONYMOUS_ACCESS is denied +# # Revision 1.13 2001/11/26 23:00:53 richard # This config stuff is getting to be a real mess... #
