Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pymilter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
misc
pymilter
Commits
4f220b48
Commit
4f220b48
authored
19 years ago
by
Stuart Gathman
Browse files
Options
Downloads
Patches
Plain Diff
Release 0.8.5
parent
a9ca154a
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
Milter/__init__.py
+1
-1
1 addition, 1 deletion
Milter/__init__.py
NEWS
+9
-0
9 additions, 0 deletions
NEWS
milter.spec
+9
-2
9 additions, 2 deletions
milter.spec
setup.py
+2
-2
2 additions, 2 deletions
setup.py
with
21 additions
and
5 deletions
Milter/__init__.py
+
1
−
1
View file @
4f220b48
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
NEWS
+
9
−
0
View file @
4f220b48
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
...
...
This diff is collapsed.
Click to expand it.
milter.spec
+
9
−
2
View file @
4f220b48
%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
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
2
View file @
4f220b48
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment