Prefer utf8 in CHARSET_LIST
authorEtienne Millon <etienne.millon@gmail.com>
Mon, 20 Feb 2012 14:28:52 +0000 (15:28 +0100)
committerMatěj Cepl <mcepl@redhat.com>
Mon, 18 Feb 2013 19:15:27 +0000 (20:15 +0100)
Bug-Debian: http://bugs.debian.org/659920

config.py.example
rss2email.py

index 9828c8e6b057c00460f28dc6004d1996b97683c4..c22dc8b61a783ba5f6d2f20ce498d91a275c09c9 100755 (executable)
@@ -91,4 +91,4 @@ PROXY=""
 
 # To most correctly encode emails with international characters, we iterate through the list below and use the first character set that works
 # Eventually (and theoretically) ISO-8859-1 and UTF-8 are our catch-all failsafes
-CHARSET_LIST='US-ASCII', 'BIG5', 'ISO-2022-JP', 'ISO-8859-1', 'UTF-8'
+CHARSET_LIST='US-ASCII', 'ISO-8859-1', 'UTF-8', 'BIG5', 'ISO-2022-JP'
index 9735b2835422548d97693701ca874cc564ff3ade..69998dbeff7c1f0dad9b5fb95b22f1177257fed7 100755 (executable)
@@ -108,7 +108,7 @@ PROXY=""
 
 # To most correctly encode emails with international characters, we iterate through the list below and use the first character set that works
 # Eventually (and theoretically) ISO-8859-1 and UTF-8 are our catch-all failsafes
-CHARSET_LIST='US-ASCII', 'BIG5', 'ISO-2022-JP', 'ISO-8859-1', 'UTF-8'
+CHARSET_LIST='US-ASCII', 'ISO-8859-1', 'UTF-8', 'BIG5', 'ISO-2022-JP'
 
 from email.MIMEText import MIMEText
 from email.Header import Header