Skip to content

Commit 2e75178

Browse files
author
Richard Jones
committed
mention MESSAGES_TO_AUTHOR "new" setting [SF#724518]
1 parent 2c89685 commit 2e75178

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

doc/customizing.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Customising Roundup
33
===================
44

5-
:Version: $Revision: 1.82 $
5+
:Version: $Revision: 1.83 $
66

77
.. This document borrows from the ZopeBook section on ZPT. The original is at:
88
http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -127,8 +127,11 @@ The configuration variables available are:
127127

128128
"Foo Bar EMAIL_FROM_TAG" <[email protected]>
129129

130-
**MESSAGES_TO_AUTHOR** - ``'yes'`` or``'no'``
131-
Send nosy messages to the author of the message.
130+
**MESSAGES_TO_AUTHOR** - ``'new'``, ``'yes'`` or``'no'``
131+
Send nosy messages to the author of the message?
132+
If 'new' is used, then the author will only be sent the message when the
133+
message creates a new issue. If 'yes' then the author will always be sent
134+
a copy of the message they wrote.
132135

133136
**ADD_AUTHOR_TO_NOSY** - ``'new'``, ``'yes'`` or ``'no'``
134137
Does the author of a message get placed on the nosy list automatically?

templates/classic/config.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
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 $
1919

2020
import os
2121

@@ -57,8 +57,11 @@
5757
# "Foo Bar EMAIL_FROM_TAG" <[email protected]>
5858
EMAIL_FROM_TAG = ""
5959

60-
# Send nosy messages to the author of the message
61-
MESSAGES_TO_AUTHOR = 'no' # either 'yes' or 'no'
60+
# Send nosy messages to the author of the message?
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'
6265

6366
# Does the author of a message get placed on the nosy list automatically?
6467
# If 'new' is used, then the author will only be added when a message

0 commit comments

Comments
 (0)