comparison doc/customizing.txt @ 700:4f9686134fef

added missing documentation for a few of the config option values
author Richard Jones <richard@users.sourceforge.net>
date Thu, 02 May 2002 07:59:10 +0000
parents b38f4f95bffd
children 0085e1d718c4
comparison
equal deleted inserted replaced
699:676d4cfde9a5 700:4f9686134fef
1 =================== 1 ===================
2 Customising Roundup 2 Customising Roundup
3 =================== 3 ===================
4 4
5 :Version: $Revision: 1.5 $ 5 :Version: $Revision: 1.6 $
6 6
7 .. contents:: 7 .. contents::
8 8
9 9
10 Instances have the following structure: 10 Instances have the following structure:
76 76
77 # Where to place the web filtering HTML on the index page 77 # Where to place the web filtering HTML on the index page
78 FILTER_POSITION = 'bottom' # one of 'top', 'bottom', 'top and bottom' 78 FILTER_POSITION = 'bottom' # one of 'top', 'bottom', 'top and bottom'
79 79
80 # Deny or allow anonymous access to the web interface 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 # Deny or allow anonymous users to register through the web interface 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 # Send nosy messages to the author of the message 89 # Send nosy messages to the author of the message
87 MESSAGES_TO_AUTHOR = 'no' # either 'yes' or 'no' 90 MESSAGES_TO_AUTHOR = 'no' # either 'yes' or 'no'
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)
88 119
89 120
90 Instance Schema 121 Instance Schema
91 --------------- 122 ---------------
92 123

Roundup Issue Tracker: http://roundup-tracker.org/