Mercurial > p > roundup > code
diff templates/classic/schema.py @ 3283:4fe232899be8 maint-0.8
merge from HEAD
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 13 Apr 2005 06:19:54 +0000 |
| parents | 24e31de4f3a1 |
| children | 7fb8cfe3c737 |
line wrap: on
line diff
--- a/templates/classic/schema.py Wed Apr 13 06:11:15 2005 +0000 +++ b/templates/classic/schema.py Wed Apr 13 06:19:54 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:
