Mercurial > p > roundup > code
diff doc/customizing.txt @ 3402:0607d084ebef maint-0.8
fix references to the old * Registration Permissions
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 15 Aug 2005 05:50:52 +0000 |
| parents | 9795ec63ff0f |
| children | 24da57887e63 |
line wrap: on
line diff
--- a/doc/customizing.txt Wed Jul 27 22:54:12 2005 +0000 +++ b/doc/customizing.txt Mon Aug 15 05:50:52 2005 +0000 @@ -2,7 +2,7 @@ Customising Roundup =================== -:Version: $Revision: 1.161.2.17 $ +:Version: $Revision: 1.161.2.18 $ .. This document borrows from the ZopeBook section on ZPT. The original is at: http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx @@ -939,22 +939,25 @@ Example Scenarios ~~~~~~~~~~~~~~~~~ +**anonymous access through the e-mail gateway** + Give the "anonymous" user the "Email Access", ("Edit", "issue") and + ("Create", "msg") Permissions but do not not give them the ("Create", + "user") Permission. This means that when an unknown user sends email + into the tracker, they're automatically logged in as "anonymous". + Since they don't have the ("Create", "user") Permission, they won't + be automatically registered, but since "anonymous" has permission to + use the gateway, they'll still be able to submit issues. Note that + the Sender information - their email address - will not be available + - they're *anonymous*. + **automatic registration of users in the e-mail gateway** - By giving the "anonymous" user the "Email Registration" Role, any + By giving the "anonymous" user the ("Create", "user" Permission, any unidentified user will automatically be registered with the tracker - (with no password, so they won't be able to log in through the web - until an admin sets their password). This is the default behaviour - in the tracker templates that ship with Roundup. - -**anonymous access through the e-mail gateway** - Give the "anonymous" user the "Email Access" and ("Edit", "issue") - Roles but do not not give them the "Email Registration" Role. This - means that when an unknown user sends email into the tracker, they're - automatically logged in as "anonymous". Since they don't have the - "Email Registration" Role, they won't be automatically registered, but - since "anonymous" has permission to use the gateway, they'll still be - able to submit issues. Note that the Sender information - their email - address - will not be available - they're *anonymous*. + (with no password, so they won't be able to log in through + the web until an admin sets their password). This is the default + behaviour in the tracker templates that ship with Roundup. The new user + is given the Roles list defined in the "new_email_user_roles" config + variable. **only developers may be assigned issues** Create a new Permission called "Fixer" for the "issue" class. Create a @@ -1182,7 +1185,7 @@ **logout** No permission checks are made. **register** - Determine whether the user has the "Web Registration" Permission. + Determine whether the user has the ("Create", "user") Permission. **edit** Determine whether the user has permission to edit this item. If we're editing the "user" class, users are allowed to edit their own details - @@ -1191,7 +1194,7 @@ **new** Determine whether the user has permission to create this item. No additional property checks are made. Additionally, new user items may - be created if the user has the "Web Registration" Permission. + be created if the user has the ("Create", "user") Permission. **editCSV** Determine whether the user has permission to edit this class. **search**
