Mercurial > p > roundup > code
diff templates/classic/config.py @ 2034:be047db3dd3d
Eudora can't handle utf-8 headers. We love Eudora. [SF#900046]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 23 Feb 2004 05:29:06 +0000 |
| parents | c40ed9113285 |
| children | cc4667ef3f12 |
line wrap: on
line diff
--- a/templates/classic/config.py Sun Feb 22 22:13:49 2004 +0000 +++ b/templates/classic/config.py Mon Feb 23 05:29:06 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.4 2003-12-06 00:00:54 richard Exp $ +# $Id: config.py,v 1.5 2004-02-23 05:29:05 richard Exp $ import os @@ -111,6 +111,14 @@ # too so all auto-generated HTML is compliant. HTML_VERSION = 'html4' # either 'html4' or 'xhtml' +# 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 #
