set Mail-Followup-To field

makes good MUAs send replies to the target list rather than the sender.
http://cr.yp.to/proto/replyto.html
This commit is contained in:
Ludwig Nussel 2015-03-16 09:48:50 +01:00
parent 8fce1a2d8a
commit 11f9353e8c

View File

@ -100,6 +100,7 @@ msg = MIMEText(txt)
msg['Subject'] = 'New Tumbleweed snapshot %s released!'%version
msg['From'] = options.sender
msg['To'] = options.to
msg['Mail-Followup-To'] = options.to
if options.dry:
print "sending ..."