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

Release 0.8.1

parent a94f82d8
Branches
No related tags found
No related merge requests found
Here is a history of user visible changes to Python milter.
0.8.1 Fix zip in zip loop in mime.py
Fix HeaderParseError in bms.py header callback
Check internal_domains for outgoing mail
0.8.0 Move Milter module to subpackage.
DSN support for Three strikes rule and SPF SOFTFAIL
Move /*mime*/ and dynip to Milter subpackage
......
#!/usr/bin/env python
# A simple milter that has grown quite a bit.
# $Log$
# Revision 1.10 2005/06/16 18:35:51 customdesigned
# Ignore HeaderParseError decoding header
#
# Revision 1.9 2005/06/14 21:55:29 customdesigned
# Check internal_domains for outgoing mail.
#
......@@ -656,8 +659,6 @@ class bmsMilter(Milter.Milter):
if not (self.internal_connection or self.trusted_relay) \
and self.connectip and spf:
return self.check_spf()
if self.internal_connection:
pass
return Milter.CONTINUE
def check_spf(self):
......
%define name milter
%define version 0.8.0
%define release 3.RH7
%define version 0.8.1
%define release 1.RH7
# what version of RH are we building for?
%define redhat9 0
%define redhat7 1
......@@ -166,6 +166,10 @@ rm -rf $RPM_BUILD_ROOT
/usr/share/sendmail-cf/hack/rhsbl.m4
%changelog
* Thu Jun 16 2005 Stuart Gathman <stuart@bmsi.com> 0.8.1-1
- Fix zip in zip loop in mime.py
- Fix HeaderParseError in bms.py header callback
- Check internal_domains for outgoing mail
* Mon Jun 06 2005 Stuart Gathman <stuart@bmsi.com> 0.8.0-3
- properly log pydspam exceptions
* Sat Jun 04 2005 Stuart Gathman <stuart@bmsi.com> 0.8.0-2
......
......@@ -12,7 +12,7 @@ if sys.version < '2.2.3':
DistributionMetadata.classifiers = None
DistributionMetadata.download_url = None
setup(name = "milter", version = "0.8.0",
setup(name = "milter", version = "0.8.1",
description="Python interface to sendmail milter API",
long_description="""\
This is a python extension module to enable python scripts to
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment