summaryrefslogtreecommitdiff
path: root/alot/commands/thread.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/commands/thread.py')
-rw-r--r--alot/commands/thread.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index 5d8006a1..a2a33ef1 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -96,9 +96,10 @@ class ReplyCommand(Command):
reply.ReplyMode.AUTHOR
to, cc = reply.determine_recipients(message, account, mode)
- headers[HDR.TO] = to
+ # TODO keep those as lists?
+ headers[HDR.TO] = str(to)
if cc:
- headers[HDR.CC] = cc
+ headers[HDR.CC] = str(cc)
# set In-Reply-To + References headers
headers[HDR.IN_REPLY_TO] = '<%s>' % message.id
@@ -107,9 +108,9 @@ class ReplyCommand(Command):
# if any of the recipients is a mailinglist that we are subscribed to,
# set Mail-Followup-To header so that duplicates are avoided
# to and cc are already cleared of our own address
- mft = reply.mail_followup_to([to, cc])
+ mft = reply.mail_followup_to(to + cc)
if mft:
- headers[HDR.MAIL_FOLLOWUP_TO] = mft
+ headers[HDR.MAIL_FOLLOWUP_TO] = str(mft)
body_text = reply.body_text(message, ui)