From 23defb880b909623f6697ff0a0973928e6b21561 Mon Sep 17 00:00:00 2001
From: Stuart Gathman <stuart@gathman.org>
Date: Sat, 10 Nov 2012 03:38:47 +0000
Subject: [PATCH] Update doc version to 0.9.6

---
 Doxyfile  | 2 +-
 sample.py | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

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
-- 
GitLab