Code

Eudora can't handle utf-8 headers. We love Eudora. (sf bug 900046)
[roundup.git] / templates / classic / config.py
index e6f61334bcdbf579d020f4646c9734946b935791..f53678451525edb9fc864d8668da72c544b50ab6 100644 (file)
@@ -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 @@ MAIL_DEFAULT_CLASS = 'issue'   # use "issue" class by default
 # 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
 #