id summary reporter owner description type status priority milestone component version severity resolution keywords cc branch changelog apichanges internalchanges 8252 Allow 8bit emails from trac petr.hroudny@… Remy Blank "#1754 introduced new config option {{{ [notification] mime_encoding = base64 | qp | none }}} in order to avoid unnecessary base64 encoding in emails from trac. However, it's still not possible to have trac output plain 8bit emails, since ""none"" only works with pure ASCII. It's perfectly valid to generate 8-bit UTF-8 emails today, when the following MIME headers are used: {{{ Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit }}} An example MUAs doing that are Thunderbird, Mutt, ... Thus another option for 8bit notifications is needed and I'd even say it should be the default these days. The following addition into /trunk/trac/notification.py should do it: {{{ 297 elif pref == '8bit': 298 self._charset.header_encoding = SHORTEST 299 self._charset.body_encoding = None 300 self._charset.output_charset = 'utf-8' 301 self._charset.input_codec = 'utf-8' 302 self._charset.output_codec = 'utf-8' }}} " enhancement closed normal 0.11.5 general none normal fixed petr.hroudny@…