Skip to content
Snippets Groups Projects
Commit 23defb88 authored by Stuart Gathman's avatar Stuart Gathman
Browse files

Update doc version to 0.9.6

parent 7502c29e
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ PROJECT_NAME = pymilter ...@@ -31,7 +31,7 @@ PROJECT_NAME = pymilter
# This could be handy for archiving the generated documentation or # This could be handy for archiving the generated documentation or
# if some version control system is used. # 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) # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put. # base path where the generated documentation will be put.
......
...@@ -35,7 +35,9 @@ class sampleMilter(Milter.Milter): ...@@ -35,7 +35,9 @@ class sampleMilter(Milter.Milter):
# multiple messages can be received on a single connection # multiple messages can be received on a single connection
# envfrom (MAIL FROM in the SMTP protocol) seems to mark the start # envfrom (MAIL FROM in the SMTP protocol) seems to mark the start
# of each message. # of each message.
@Milter.noreply
def envfrom(self,f,*str): def envfrom(self,f,*str):
"start of MAIL transaction"
self.log("mail from",f,str) self.log("mail from",f,str)
self.fp = StringIO.StringIO() self.fp = StringIO.StringIO()
self.tempname = None self.tempname = None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment