Mercurial > p > roundup > code
diff roundup/templates/classic/instance_config.py @ 704:54333751e98d search_indexing-0-4-2-branch
Brought search_indexing-branch up to date with latest changes in HEAD.
| author | Roche Compaan <rochecompaan@users.sourceforge.net> |
|---|---|
| date | Thu, 02 May 2002 13:09:11 +0000 |
| parents | b6b3a7d4250d |
| children |
line wrap: on
line diff
--- a/roundup/templates/classic/instance_config.py Thu May 02 11:52:12 2002 +0000 +++ b/roundup/templates/classic/instance_config.py Thu May 02 13:09:11 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: instance_config.py,v 1.13.2.2 2002-05-02 11:49:19 rochecompaan Exp $ +# $Id: instance_config.py,v 1.13.2.3 2002-05-02 13:09:08 rochecompaan Exp $ MAIL_DOMAIN=MAILHOST=HTTP_HOST=None HTTP_PORT=0 @@ -66,22 +66,40 @@ LOG = os.path.join(INSTANCE_HOME, 'roundup.log') # Where to place the web filtering HTML on the index page -FILTER_POSITION = 'bottom' # one of 'top', 'bottom', 'top and bottom' +FILTER_POSITION = 'bottom' # one of 'top', 'bottom', 'top and bottom' # Deny or allow anonymous access to the web interface -ANONYMOUS_ACCESS = 'deny' # either 'deny' or 'allow' +ANONYMOUS_ACCESS = 'deny' # either 'deny' or 'allow' # Deny or allow anonymous users to register through the web interface -ANONYMOUS_REGISTER = 'deny' # either 'deny' or 'allow' +ANONYMOUS_REGISTER = 'deny' # either 'deny' or 'allow' # Deny or allow anonymous users to register through the mail interface -ANONYMOUS_REGISTER_MAIL = 'deny' # either 'deny' or 'allow' +ANONYMOUS_REGISTER_MAIL = 'deny' # either 'deny' or 'allow' # Send nosy messages to the author of the message -MESSAGES_TO_AUTHOR = 'no' # either 'yes' or 'no' +MESSAGES_TO_AUTHOR = 'no' # either 'yes' or 'no' + +# Does the author of a message get placed on the nosy list automatically? +# If 'new' is used, then the author will only be added when a message +# creates a new issue. If 'yes', then the author will be added on followups +# too. If 'no', they're never added to the nosy. +ADD_AUTHOR_TO_NOSY = 'new' # one of 'yes', 'no', 'new' + +# Do the recipients (To:, Cc:) of a message get placed on the nosy list? +# If 'new' is used, then the recipients will only be added when a message +# creates a new issue. If 'yes', then the recipients will be added on followups +# too. If 'no', they're never added to the nosy. +ADD_RECIPIENTS_TO_NOSY = 'new' # either 'yes', 'no', 'new' # Where to place the email signature -EMAIL_SIGNATURE_POSITION = 'bottom' +EMAIL_SIGNATURE_POSITION = 'bottom' # one of 'top', 'bottom', 'none' + +# Keep email citations +EMAIL_KEEP_QUOTED_TEXT = 'no' # either 'yes' or 'no' + +# Preserve the email body as is +EMAIL_LEAVE_BODY_UNCHANGED = 'no' # either 'yes' or 'no' # Default class to use in the mailgw if one isn't supplied in email # subjects. To disable, comment out the variable below or leave it blank. @@ -148,18 +166,35 @@ } ISSUE_FILTER = { - 'CLASS': 'issue' + 'CLASS': 'issue', 'FILTER': ['status', 'priority', 'assignedto', 'creator'] } SUPPORT_FILTER = { - 'CLASS': 'issue' + 'CLASS': 'issue', 'FILTER': ['status', 'priority', 'assignedto', 'creator'] } # # $Log: not supported by cvs2svn $ +# Revision 1.15 2002/05/02 07:56:34 richard +# . added option to automatically add the authors and recipients of messages +# to the nosy lists with the options ADD_AUTHOR_TO_NOSY (default 'new') and +# ADD_RECIPIENTS_TO_NOSY (default 'new'). These settings emulate the current +# behaviour. Setting them to 'yes' will add the author/recipients to the nosy +# on messages that create issues and followup messages. +# . added missing documentation for a few of the config option values +# +# Revision 1.14 2002/04/23 15:46:49 rochecompaan +# . stripping of the email message body can now be controlled through +# the config variables EMAIL_KEEP_QUOTED_TEST and +# EMAIL_LEAVE_BODY_UNCHANGED. +# +# Revision 1.13.2.2 2002/05/02 11:49:19 rochecompaan +# Allow customization of the search filters that should be displayed +# on the search page. +# # Revision 1.13.2.1 2002/04/20 13:23:33 rochecompaan # We now have a separate search page for nodes. Search links for # different classes can be customized in instance_config similar to
