diff --git a/Doxyfile b/Doxyfile index 5f486e2225367e5687c6a1eca61ecbd1af886b0c..85e5315500f7360f6369a1b627fe25a58e10151d 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 5fc8df28e70a086c0051137ac005627c7e9fe0f5..88c9bd24248b668e32cc7ed64470094d3feedfa0 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