aboutsummaryrefslogtreecommitdiffstats
path: root/mail2news.py
diff options
context:
space:
mode:
Diffstat (limited to 'mail2news.py')
-rw-r--r--mail2news.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail2news.py b/mail2news.py
index 6a7aaff..2f64f6c 100644
--- a/mail2news.py
+++ b/mail2news.py
@@ -66,14 +66,14 @@ class mail2news(object):
msg[header] = value.strip()
def __readfile(self, opt):
- message = email.message_from_file(sys.stdin, policy=email.policy.default)
+ message = email.message_from_file(sys.stdin, policy=email.policy.SMTP)
if (len(message) == 0) \
and message.get_payload().startswith('/'):
msg_file_name = message.get_payload().strip()
del message
with open(msg_file_name, 'r') as msg_file:
- message = email.message_from_file(msg_file, policy=email.policy.default)
+ message = email.message_from_file(msg_file, policy=email.policy.SMTP)
# introduce nntpheads
self.__add_header('Newsgroups', opt.newsgroup, message)