Release 0.8.6

This commit is contained in:
Stuart Gathman
2006-05-21 03:56:13 +00:00
parent 053c32e450
commit 1c78384da9
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -175,6 +175,12 @@ rm -rf $RPM_BUILD_ROOT
%changelog %changelog
* Thu Feb 23 2006 Stuart Gathman <stuart@bmsi.com> 0.8.6-1 * Thu Feb 23 2006 Stuart Gathman <stuart@bmsi.com> 0.8.6-1
- Support fail template
- Create GOSSiP record only when connection will procede to DATA.
- More SPF lax heuristics
- Don't require SPF pass for white/black listing mail from trusted relay.
- Support localpart wildcard for white and black lists.
- Use signed Message-ID in delayed reject of DSNs to blacklist senders
- Delay reject of unsigned RCPT for postmaster and abuse only - Delay reject of unsigned RCPT for postmaster and abuse only
- Fix dsn reporting of hard permerror - Fix dsn reporting of hard permerror
- Resolve FIXME for wrap_close in miltermodule.c - Resolve FIXME for wrap_close in miltermodule.c
+1 -1
View File
@@ -238,7 +238,7 @@ class BMSMilterTestCase(unittest.TestCase):
milter = TestMilter() milter = TestMilter()
milter.connect('testSmartAlias') milter.connect('testSmartAlias')
# test smart alias feature # test smart alias feature
key = ('foo@bar.com','baz@bat.com') key = ('foo@example.com','baz@bat.com')
bms.smart_alias[key] = ['ham@eggs.com'] bms.smart_alias[key] = ['ham@eggs.com']
rc = milter.feedMsg('test8',key[0],key[1]) rc = milter.feedMsg('test8',key[0],key[1])
self.assertEqual(rc,Milter.ACCEPT) self.assertEqual(rc,Milter.ACCEPT)