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

Release 0.8.5

parent a9ca154a
Branches
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ from milter import ACCEPT,CONTINUE,REJECT,DISCARD,TEMPFAIL, \ ...@@ -16,7 +16,7 @@ from milter import ACCEPT,CONTINUE,REJECT,DISCARD,TEMPFAIL, \
try: from milter import QUARANTINE try: from milter import QUARANTINE
except: pass except: pass
__version__ = '0.8.4' __version__ = '0.8.5'
_seq_lock = thread.allocate_lock() _seq_lock = thread.allocate_lock()
_seq = 0 _seq = 0
......
Here is a history of user visible changes to Python milter. Here is a history of user visible changes to Python milter.
0.8.5 Simple trusted_forwarder implementation.
Fix access_file neutral policy
Move Received-SPF header to beginning of headers
Supply keyword info for all results in Received-SPF header.
Move guessed SPF result to separate header
Activate smfi_insheader only when SMFIR_INSHEADER defined
Handle NULL MX in spf.py
in-process GOSSiP server support (to be extended later)
Expire CBV cache and renew auto-whitelist entries
0.8.4 Auto-whitelist recipients of outgoing email. 0.8.4 Auto-whitelist recipients of outgoing email.
Fix SPF policy via sendmail access map (case insensitive keys). Fix SPF policy via sendmail access map (case insensitive keys).
Train screener on whitelisted messages Train screener on whitelisted messages
......
%define name milter %define name milter
%define version 0.8.4 %define version 0.8.5
%define release 2.RH7 %define release 2.RH7
# what version of RH are we building for? # what version of RH are we building for?
%define redhat9 0 %define redhat9 0
...@@ -174,9 +174,16 @@ rm -rf $RPM_BUILD_ROOT ...@@ -174,9 +174,16 @@ rm -rf $RPM_BUILD_ROOT
/usr/share/sendmail-cf/hack/rhsbl.m4 /usr/share/sendmail-cf/hack/rhsbl.m4
%changelog %changelog
* Mon Oct 31 2005 Stuart Gathman <stuart@bmsi.com> 0.8.5-1 * Thu Dec 29 2005 Stuart Gathman <stuart@bmsi.com> 0.8.5-1
- Simple trusted_forwarder implementation. - Simple trusted_forwarder implementation.
- Fix access_file neutral policy - Fix access_file neutral policy
- Move Received-SPF header to beginning of headers
- Supply keyword info for all results in Received-SPF header.
- Move guessed SPF result to separate header
- Activate smfi_insheader only when SMFIR_INSHEADER defined
- Handle NULL MX in spf.py
- in-process GOSSiP server support (to be extended later)
- Expire CBV cache and renew auto-whitelist entries
* Fri Oct 21 2005 Stuart Gathman <stuart@bmsi.com> 0.8.4-2 * Fri Oct 21 2005 Stuart Gathman <stuart@bmsi.com> 0.8.4-2
- Don't supply sender when MFROM is subdomain of header from/sender. - Don't supply sender when MFROM is subdomain of header from/sender.
- Don't send quarantine DSN for DSNs - Don't send quarantine DSN for DSNs
......
import os import os
import sys import sys
from distutils.core import setup, Extension from distutils.core import setup, Extension
import Milter
# FIXME: on some versions of sendmail, smutil is renamed to sm # FIXME: on some versions of sendmail, smutil is renamed to sm
libs = ["milter", "smutil"] libs = ["milter", "smutil"]
...@@ -13,7 +12,8 @@ if sys.version < '2.2.3': ...@@ -13,7 +12,8 @@ if sys.version < '2.2.3':
DistributionMetadata.classifiers = None DistributionMetadata.classifiers = None
DistributionMetadata.download_url = None DistributionMetadata.download_url = None
setup(name = "milter", version = Milter.__version__, # NOTE: importing Milter to obtain version fails when milter.so not built
setup(name = "milter", version = '0.8.5',
description="Python interface to sendmail milter API", description="Python interface to sendmail milter API",
long_description="""\ long_description="""\
This is a python extension module to enable python scripts to 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