Mercurial > p > roundup > code
comparison doc/customizing.txt @ 2035:1d86402ce5e8 maint-0.6
merge from HEAD
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 23 Feb 2004 05:37:11 +0000 |
| parents | 713340c26efe |
| children | 9e72663e5671 |
comparison
equal
deleted
inserted
replaced
| 2029:39e8b9e24aff | 2035:1d86402ce5e8 |
|---|---|
| 1 =================== | 1 =================== |
| 2 Customising Roundup | 2 Customising Roundup |
| 3 =================== | 3 =================== |
| 4 | 4 |
| 5 :Version: $Revision: 1.93.2.6 $ | 5 :Version: $Revision: 1.93.2.7 $ |
| 6 | 6 |
| 7 .. This document borrows from the ZopeBook section on ZPT. The original is at: | 7 .. This document borrows from the ZopeBook section on ZPT. The original is at: |
| 8 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx | 8 http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx |
| 9 | 9 |
| 10 .. contents:: | 10 .. contents:: |
| 178 | 178 |
| 179 **MAIL_DEFAULT_CLASS** - ``'issue'`` or ``''`` | 179 **MAIL_DEFAULT_CLASS** - ``'issue'`` or ``''`` |
| 180 Default class to use in the mailgw if one isn't supplied in email | 180 Default class to use in the mailgw if one isn't supplied in email |
| 181 subjects. To disable, comment out the variable below or leave it blank. | 181 subjects. To disable, comment out the variable below or leave it blank. |
| 182 | 182 |
| 183 **EMAIL_CHARSET** - ``utf-8`` (or ``iso-8859-1`` for Eudora users) | |
| 184 Character set to encode email headers with. We use utf-8 by default, as | |
| 185 it's the most flexible. Some mail readers (eg. Eudora) can't cope with | |
| 186 that, so you might need to specify a more limited character set (eg. | |
| 187 'iso-8859-1'. | |
| 188 | |
| 183 The default config.py is given below - as you | 189 The default config.py is given below - as you |
| 184 can see, the MAIL_DOMAIN must be edited before any interaction with the | 190 can see, the MAIL_DOMAIN must be edited before any interaction with the |
| 185 tracker is attempted.:: | 191 tracker is attempted.:: |
| 186 | 192 |
| 187 # roundup home is this package's directory | 193 # roundup home is this package's directory |
| 252 # Default class to use in the mailgw if one isn't supplied in email | 258 # Default class to use in the mailgw if one isn't supplied in email |
| 253 # subjects. To disable, comment out the variable below or leave it | 259 # subjects. To disable, comment out the variable below or leave it |
| 254 # blank. Examples: | 260 # blank. Examples: |
| 255 MAIL_DEFAULT_CLASS = 'issue' # use "issue" class by default | 261 MAIL_DEFAULT_CLASS = 'issue' # use "issue" class by default |
| 256 #MAIL_DEFAULT_CLASS = '' # disable (or just comment the var out) | 262 #MAIL_DEFAULT_CLASS = '' # disable (or just comment the var out) |
| 263 | |
| 264 # Character set to encode email headers with. We use utf-8 by default, as | |
| 265 # it's the most flexible. Some mail readers (eg. Eudora) can't cope with | |
| 266 # that, so you might need to specify a more limited character set (eg. | |
| 267 # 'iso-8859-1'. | |
| 268 EMAIL_CHARSET = 'utf-8' | |
| 269 #EMAIL_CHARSET = 'iso-8859-1' # use this instead for Eudora users | |
| 257 | 270 |
| 258 # | 271 # |
| 259 # SECURITY DEFINITIONS | 272 # SECURITY DEFINITIONS |
| 260 # | 273 # |
| 261 # define the Roles that a user gets when they register with the | 274 # define the Roles that a user gets when they register with the |
