From 6e2153454a03c82c9afafa84b53915d95398595e Mon Sep 17 00:00:00 2001 From: "Stuart D. Gathman" Date: Thu, 11 Aug 2016 09:48:09 -0400 Subject: [PATCH] Forgot to initialize TestBase._sender --- Milter/test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Milter/test.py b/Milter/test.py index 8d600ee..dd05a7a 100644 --- a/Milter/test.py +++ b/Milter/test.py @@ -20,6 +20,8 @@ class TestBase(object): def __init__(self,logfile='test/milter.log'): self._protocol = 0 self.logfp = open(logfile,"a") + ## The MAIL FROM for the current email being fed to the %milter + self._sender = None ## List of recipients deleted self._delrcpt = [] ## List of recipients added