comparison templates/classic/config.py @ 1602:a3442208867f

mention MESSAGES_TO_AUTHOR "new" setting [SF#724518]
author Richard Jones <richard@users.sourceforge.net>
date Wed, 23 Apr 2003 11:59:36 +0000
parents 21312a7564fd
children e109d59f232d
comparison
equal deleted inserted replaced
1600:2047425bf7e7 1602:a3442208867f
13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17 # 17 #
18 # $Id: config.py,v 1.1 2003-04-17 03:26:03 richard Exp $ 18 # $Id: config.py,v 1.2 2003-04-23 11:59:36 richard Exp $
19 19
20 import os 20 import os
21 21
22 # roundup home is this package's directory 22 # roundup home is this package's directory
23 TRACKER_HOME=os.path.split(__file__)[0] 23 TRACKER_HOME=os.path.split(__file__)[0]
55 # "Foo Bar" <issue_tracker@tracker.example> 55 # "Foo Bar" <issue_tracker@tracker.example>
56 # the EMAIL_FROM_TAG goes inside the "Foo Bar" quotes like so: 56 # the EMAIL_FROM_TAG goes inside the "Foo Bar" quotes like so:
57 # "Foo Bar EMAIL_FROM_TAG" <issue_tracker@tracker.example> 57 # "Foo Bar EMAIL_FROM_TAG" <issue_tracker@tracker.example>
58 EMAIL_FROM_TAG = "" 58 EMAIL_FROM_TAG = ""
59 59
60 # Send nosy messages to the author of the message 60 # Send nosy messages to the author of the message?
61 MESSAGES_TO_AUTHOR = 'no' # either 'yes' or 'no' 61 # If 'new' is used, then the author will only be sent the message when the
62 # message creates a new issue. If 'yes' then the author will always be sent
63 # a copy of the message they wrote.
64 MESSAGES_TO_AUTHOR = 'no' # one of 'yes', 'no', 'new'
62 65
63 # Does the author of a message get placed on the nosy list automatically? 66 # Does the author of a message get placed on the nosy list automatically?
64 # If 'new' is used, then the author will only be added when a message 67 # If 'new' is used, then the author will only be added when a message
65 # creates a new issue. If 'yes', then the author will be added on followups 68 # creates a new issue. If 'yes', then the author will be added on followups
66 # too. If 'no', they're never added to the nosy. 69 # too. If 'no', they're never added to the nosy.

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