From 597b2ef4b52db9f122320eccd8ed4fd4c9fe7435 Mon Sep 17 00:00:00 2001 From: yo Date: Mon, 28 Dec 2020 13:05:51 +0100 Subject: [PATCH] BUGFIX : All recipients were added to each mail when no error (mails in hold) --- store.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/store.py b/store.py index 4ae8cb8..824c706 100644 --- a/store.py +++ b/store.py @@ -561,7 +561,8 @@ class PostqueueStore(object): mail = self.MailClass(fields[0], size=fields[1], date=date, - sender=fields[-1]) + sender=fields[-1], + recipients=[]) self.mails.append(mail) else: # Email address validity check can be tricky. RFC3696 talks