Mercurial > p > roundup > code
diff templates/classic/schema.py @ 3276:3124e578db02
Email fixes:
- fix checking of "Email Access" for Anonymous email registration [SF#177057]
- disable "Email Access" for Anonymous by default to stop spam regsitering
users on public trackers
- doc fixes / additions too
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 13 Apr 2005 03:38:23 +0000 |
| parents | 14322134dcef |
| children | 7fb8cfe3c737 |
line wrap: on
line diff
--- a/templates/classic/schema.py Thu Apr 07 07:38:29 2005 +0000 +++ b/templates/classic/schema.py Wed Apr 13 03:38:23 2005 +0000 @@ -124,7 +124,9 @@ # Let anonymous users access the email interface (note that this implies # that they will be registered automatically, hence they will need the # "Create" user Permission below) -db.security.addPermissionToRole('Anonymous', 'Email Access') +# This is disabled by default to stop spam from auto-registering users on +# public trackers. +#db.security.addPermissionToRole('Anonymous', 'Email Access') # Assign the appropriate permissions to the anonymous user's Anonymous # Role. Choices here are:
