Mercurial > p > roundup > code
diff templates/classic/config.py @ 2035:1d86402ce5e8 maint-0.6
merge from HEAD
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 23 Feb 2004 05:37:11 +0000 |
| parents | e109d59f232d |
| children |
line wrap: on
line diff
--- a/templates/classic/config.py Wed Feb 18 22:13:29 2004 +0000 +++ b/templates/classic/config.py Mon Feb 23 05:37:11 2004 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: config.py,v 1.3 2003-04-24 07:19:59 richard Exp $ +# $Id: config.py,v 1.3.2.1 2004-02-23 05:37:11 richard Exp $ import os @@ -106,6 +106,13 @@ MAIL_DEFAULT_CLASS = 'issue' # use "issue" class by default #MAIL_DEFAULT_CLASS = '' # disable (or just comment the var out) +# Character set to encode email headers with. We use utf-8 by default, as +# it's the most flexible. Some mail readers (eg. Eudora) can't cope with +# that, so you might need to specify a more limited character set (eg. +# 'iso-8859-1'. +EMAIL_CHARSET = 'utf-8' +#EMAIL_CHARSET = 'iso-8859-1' # use this instead for Eudora users + # # SECURITY DEFINITIONS #
