|
2 | 2 | Customising Roundup |
3 | 3 | =================== |
4 | 4 |
|
5 | | -:Version: $Revision: 1.5 $ |
| 5 | +:Version: $Revision: 1.6 $ |
6 | 6 |
|
7 | 7 | .. contents:: |
8 | 8 |
|
@@ -78,14 +78,45 @@ instance is attempted.:: |
78 | 78 | FILTER_POSITION = 'bottom' # one of 'top', 'bottom', 'top and bottom' |
79 | 79 |
|
80 | 80 | # Deny or allow anonymous access to the web interface |
81 | | - ANONYMOUS_ACCESS = 'deny' |
| 81 | + ANONYMOUS_ACCESS = 'deny' # either 'deny' or 'allow' |
82 | 82 |
|
83 | 83 | # Deny or allow anonymous users to register through the web interface |
84 | | - ANONYMOUS_REGISTER = 'deny' |
| 84 | + ANONYMOUS_REGISTER = 'deny' # either 'deny' or 'allow' |
| 85 | + |
| 86 | + # Deny or allow anonymous users to register through the mail interface |
| 87 | + ANONYMOUS_REGISTER_MAIL = 'deny' # either 'deny' or 'allow' |
85 | 88 |
|
86 | 89 | # Send nosy messages to the author of the message |
87 | 90 | MESSAGES_TO_AUTHOR = 'no' # either 'yes' or 'no' |
88 | 91 |
|
| 92 | + # Does the author of a message get placed on the nosy list automatically? |
| 93 | + # If 'new' is used, then the author will only be added when a message |
| 94 | + # creates a new issue. If 'yes', then the author will be added on followups |
| 95 | + # too. If 'no', they're never added to the nosy. |
| 96 | + ADD_AUTHOR_TO_NOSY = 'new' # one of 'yes', 'no', 'new' |
| 97 | + |
| 98 | + # Do the recipients (To:, Cc:) of a message get placed on the nosy list? |
| 99 | + # If 'new' is used, then the recipients will only be added when a message |
| 100 | + # creates a new issue. If 'yes', then the recipients will be added on |
| 101 | + # followups |
| 102 | + # too. If 'no', they're never added to the nosy. |
| 103 | + ADD_RECIPIENTS_TO_NOSY = 'new' # either 'yes', 'no', 'new' |
| 104 | + |
| 105 | + # Where to place the email signature |
| 106 | + EMAIL_SIGNATURE_POSITION = 'bottom' # one of 'top', 'bottom', 'none' |
| 107 | + |
| 108 | + # Keep email citations |
| 109 | + EMAIL_KEEP_QUOTED_TEXT = 'no' # either 'yes' or 'no' |
| 110 | + |
| 111 | + # Preserve the email body as is |
| 112 | + EMAIL_LEAVE_BODY_UNCHANGED = 'no' # either 'yes' or 'no' |
| 113 | + |
| 114 | + # Default class to use in the mailgw if one isn't supplied in email |
| 115 | + # subjects. To disable, comment out the variable below or leave it blank. |
| 116 | + # Examples: |
| 117 | + MAIL_DEFAULT_CLASS = 'issue' # use "issue" class by default |
| 118 | + #MAIL_DEFAULT_CLASS = '' # disable (or just comment the var out) |
| 119 | + |
89 | 120 |
|
90 | 121 | Instance Schema |
91 | 122 | --------------- |
|
0 commit comments