From c3a5179b29f109f1a269bf5f2cef49814bd8e78f Mon Sep 17 00:00:00 2001 From: richard Date: Wed, 23 Apr 2003 11:59:36 +0000 Subject: [PATCH] mention MESSAGES_TO_AUTHOR "new" setting (sf bug 724518) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1673 57a73879-2fb5-44c3-a270-3262357dd7e2 --- doc/customizing.txt | 9 ++++++--- templates/classic/config.py | 9 ++++++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/doc/customizing.txt b/doc/customizing.txt index 236dc19..7f2b7eb 100644 --- a/doc/customizing.txt +++ b/doc/customizing.txt @@ -2,7 +2,7 @@ Customising Roundup =================== -:Version: $Revision: 1.82 $ +:Version: $Revision: 1.83 $ .. This document borrows from the ZopeBook section on ZPT. The original is at: http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx @@ -127,8 +127,11 @@ The configuration variables available are: "Foo Bar EMAIL_FROM_TAG" -**MESSAGES_TO_AUTHOR** - ``'yes'`` or``'no'`` - Send nosy messages to the author of the message. +**MESSAGES_TO_AUTHOR** - ``'new'``, ``'yes'`` or``'no'`` + Send nosy messages to the author of the message? + If 'new' is used, then the author will only be sent the message when the + message creates a new issue. If 'yes' then the author will always be sent + a copy of the message they wrote. **ADD_AUTHOR_TO_NOSY** - ``'new'``, ``'yes'`` or ``'no'`` Does the author of a message get placed on the nosy list automatically? diff --git a/templates/classic/config.py b/templates/classic/config.py index 3c3df21..d507ba9 100644 --- a/templates/classic/config.py +++ b/templates/classic/config.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: config.py,v 1.1 2003-04-17 03:26:03 richard Exp $ +# $Id: config.py,v 1.2 2003-04-23 11:59:36 richard Exp $ import os @@ -57,8 +57,11 @@ ADMIN_EMAIL = 'roundup-admin@%s'%MAIL_DOMAIN # "Foo Bar EMAIL_FROM_TAG" EMAIL_FROM_TAG = "" -# Send nosy messages to the author of the message -MESSAGES_TO_AUTHOR = 'no' # either 'yes' or 'no' +# Send nosy messages to the author of the message? +# If 'new' is used, then the author will only be sent the message when the +# message creates a new issue. If 'yes' then the author will always be sent +# a copy of the message they wrote. +MESSAGES_TO_AUTHOR = 'no' # one of 'yes', 'no', 'new' # 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 -- 2.30.2