summaryrefslogtreecommitdiff
path: root/alot/widgets/thread.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/widgets/thread.py')
-rw-r--r--alot/widgets/thread.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/alot/widgets/thread.py b/alot/widgets/thread.py
index 7d3bafca..90eeabdf 100644
--- a/alot/widgets/thread.py
+++ b/alot/widgets/thread.py
@@ -40,6 +40,8 @@ class MessageSummaryWidget(urwid.WidgetWrap):
if date is not None:
text += " (%s)" % date
+ text = text.translate(settings.sanitize_header_table)
+
cols = [urwid.Text(text)]
if settings.get('msg_summary_hides_threadwide_tags'):
@@ -288,6 +290,8 @@ class _TextPart(_MIMEPartWidget):
self._fold_context = settings.get('thread_fold_context')
+ text = text.translate(settings.sanitize_text_table)
+
# try highlighting with pygments first
hilit = self._highlight_pygments(text, part, attr_text)
if hilit is None:
@@ -562,6 +566,8 @@ class HeadersWidget(urwid.WidgetWrap):
widgets = []
for key, value in headers:
+ value = value.translate(settings.sanitize_header_table)
+
# TODO even/odd
keyw = ('fixed', max_key_len + 1,
urwid.Text((self._key_attr, key)))