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

Release 0.8.2

parent f749b6f2
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,8 @@ Other contributors: ...@@ -9,6 +9,8 @@ Other contributors:
Terence Way Terence Way
for providing a Python port of SPF for providing a Python port of SPF
Scott Kitterman
for doing lots of testing and debugging of SPF against draft standard
Alexander Kourakos Alexander Kourakos
for plugging several memory leaks for plugging several memory leaks
George Graf at Vienna University of Economics and Business Administration George Graf at Vienna University of Economics and Business Administration
......
...@@ -50,7 +50,7 @@ porn_words = penis, breast, pussy, horse cock, porn, xenical, diet pill, d1ck, ...@@ -50,7 +50,7 @@ porn_words = penis, breast, pussy, horse cock, porn, xenical, diet pill, d1ck,
p-e-n-i-s, hydrocodone, vicodin, xanax, vicod1n, x@nax, diazepam, p-e-n-i-s, hydrocodone, vicodin, xanax, vicod1n, x@nax, diazepam,
v1@gra, xan@x, cialis, ci@lis, fre, xnax, valum, vlium, via-gra, v1@gra, xan@x, cialis, ci@lis, fre, xnax, valum, vlium, via-gra,
x@n3x, vicod3n, pens, c0d1n, phentermine, en1arge, dip1oma, v1codin, x@n3x, vicod3n, pens, c0d1n, phentermine, en1arge, dip1oma, v1codin,
valium, rolex, sexual, fuck valium, rolex, sexual, fuck, adv1t
# reject mail with these case sensitive strings in the subject # reject mail with these case sensitive strings in the subject
spam_words = $$$, !!!, XXX, FREE, HGH spam_words = $$$, !!!, XXX, FREE, HGH
# attachments with these extensions will be replaced with a warning # attachments with these extensions will be replaced with a warning
...@@ -152,6 +152,8 @@ blind = 1 ...@@ -152,6 +152,8 @@ blind = 1
;spam=spam@foocorp.com ;spam=spam@foocorp.com
# address to forward false positives to. milter will process and not deliver # address to forward false positives to. milter will process and not deliver
;falsepositive=ham@foocorp.com ;falsepositive=ham@foocorp.com
# account which receives only spam: all received messages are marked as spam.
;honeypot=spam-me@example.com
# the dspam_screener is a list of dspam users who screen mail for all # the dspam_screener is a list of dspam users who screen mail for all
# recipients who are not dspam_users. Spam goes to the screeners quarantine, # recipients who are not dspam_users. Spam goes to the screeners quarantine,
# and the original recipients are saved so that false positives can be properly # and the original recipients are saved so that false positives can be properly
......
...@@ -124,9 +124,9 @@ recommend ignoring it and continuing to implement and improve SPF until a ...@@ -124,9 +124,9 @@ recommend ignoring it and continuing to implement and improve SPF until a
working and unencumbered proposal for RFC2822 headers surfaces. working and unencumbered proposal for RFC2822 headers surfaces.
<p> <p>
<a href="http://spf.pobox.com"> <a href="http://openspf.com">
<img src="SPF.gif" align=left alt="SPF logo"></a> <img src="SPF.gif" align=left alt="SPF logo"></a>
Release 0.6.6 adds support for <a href="http://spf.pobox.com/">SPF</a>, Release 0.6.6 adds support for <a href="http://openspf.com/">SPF</a>,
a protocol to prevent forging of the envelope from address. a protocol to prevent forging of the envelope from address.
SPF support requires <a href="http://pydns.sourceforge.net/">pydns</a>. SPF support requires <a href="http://pydns.sourceforge.net/">pydns</a>.
The included spf.py module is an updated version of the original 1.6 The included spf.py module is an updated version of the original 1.6
...@@ -222,7 +222,7 @@ methods that ...@@ -222,7 +222,7 @@ methods that
do nothing, and also provides wrappers for the libmilter methods to mutate do nothing, and also provides wrappers for the libmilter methods to mutate
the message. the message.
<p> <p>
The 'spf' module provides an implementation of <a href="http://spf.pobox.com"> The 'spf' module provides an implementation of <a href="http://openspf.com">
SPF</a> useful for detecting email forgery. SPF</a> useful for detecting email forgery.
<p> <p>
The 'mime' module provides a wrapper for the Python email package that The 'mime' module provides a wrapper for the Python email package that
......
%define name milter %define name milter
%define version 0.8.1 %define version 0.8.2
%define release 1.RH7 %define release 1.RH7
# what version of RH are we building for? # what version of RH are we building for?
%define redhat9 0 %define redhat9 0
...@@ -166,6 +166,14 @@ rm -rf $RPM_BUILD_ROOT ...@@ -166,6 +166,14 @@ rm -rf $RPM_BUILD_ROOT
/usr/share/sendmail-cf/hack/rhsbl.m4 /usr/share/sendmail-cf/hack/rhsbl.m4
%changelog %changelog
* Fri Jul 15 2005 Stuart Gathman <stuart@bmsi.com> 0.8.2-1
- Strict processing limits per SPF RFC
- Fixed several parsing bugs under RFC
- Support official IANA SPF record (type99)
- Honeypot support (requires pydspam-1.1.9)
- Extended SPF processing results beyond strict RFC limits
- Support original SES for local bounce protection (requires pysrs-0.30.10)
- Callback exception processing option in milter module
* Thu Jun 16 2005 Stuart Gathman <stuart@bmsi.com> 0.8.1-1 * Thu Jun 16 2005 Stuart Gathman <stuart@bmsi.com> 0.8.1-1
- Fix zip in zip loop in mime.py - Fix zip in zip loop in mime.py
- Fix HeaderParseError in bms.py header callback - Fix HeaderParseError in bms.py header callback
......
...@@ -12,7 +12,7 @@ if sys.version < '2.2.3': ...@@ -12,7 +12,7 @@ if sys.version < '2.2.3':
DistributionMetadata.classifiers = None DistributionMetadata.classifiers = None
DistributionMetadata.download_url = None DistributionMetadata.download_url = None
setup(name = "milter", version = "0.8.1", setup(name = "milter", version = "0.8.2",
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
......
...@@ -23,7 +23,7 @@ SMTP (email) servers to prevent criminals from forging your ...@@ -23,7 +23,7 @@ SMTP (email) servers to prevent criminals from forging your
domain. The simplest step is usually to publish an SPF record domain. The simplest step is usually to publish an SPF record
with your Sender Policy. with your Sender Policy.
For more information, see: http://spf.pobox.com For more information, see: http://openspf.com
I hate to annoy you with a DSN (Delivery Status I hate to annoy you with a DSN (Delivery Status
Notification) from a possibly forged email, but since you Notification) from a possibly forged email, but since you
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment