diff --git a/Doxyfile b/Doxyfile index 5f486e2..85e5315 100644 --- a/Doxyfile +++ b/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = pymilter # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.9.5 +PROJECT_NUMBER = 0.9.6 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/sample.py b/sample.py index 5fc8df2..88c9bd2 100644 --- a/sample.py +++ b/sample.py @@ -35,7 +35,9 @@ class sampleMilter(Milter.Milter): # multiple messages can be received on a single connection # envfrom (MAIL FROM in the SMTP protocol) seems to mark the start # of each message. + @Milter.noreply def envfrom(self,f,*str): + "start of MAIL transaction" self.log("mail from",f,str) self.fp = StringIO.StringIO() self.tempname = None