Mercurial > p > roundup > code
diff roundup/templates/classic/instance_config.py @ 694:34dbcdfb2fe1
stripping of email message body can be controlled through config variables...
...EMAIL_KEEP_QUOTED_TEST and EMAIL_LEAVE_BODY_UNCHANGED.
| author | Roche Compaan <rochecompaan@users.sourceforge.net> |
|---|---|
| date | Tue, 23 Apr 2002 15:46:49 +0000 |
| parents | cdcee6721841 |
| children | 676d4cfde9a5 |
line wrap: on
line diff
--- a/roundup/templates/classic/instance_config.py Mon Apr 15 23:25:15 2002 +0000 +++ b/roundup/templates/classic/instance_config.py Tue Apr 23 15:46:49 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 2002-03-14 23:59:24 richard Exp $ +# $Id: instance_config.py,v 1.14 2002-04-23 15:46:49 rochecompaan Exp $ MAIL_DOMAIN=MAILHOST=HTTP_HOST=None HTTP_PORT=0 @@ -83,6 +83,12 @@ # Where to place the email signature EMAIL_SIGNATURE_POSITION = 'bottom' +# Keep email citations +EMAIL_KEEP_QUOTED_TEXT = 'no' + +# Preserve the email body as is +EMAIL_LEAVE_BODY_UNCHANGED = '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. # Examples: @@ -144,6 +150,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.13 2002/03/14 23:59:24 richard +# . #517734 ] web header customisation is obscure +# # Revision 1.12 2002/02/15 00:13:38 richard # . #503204 ] mailgw needs a default class # - partially done - the setting of additional properties can wait for a
