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
10fdccf3
Commit
10fdccf3
authored
6 years ago
by
Stuart D. Gathman
Browse files
Options
Downloads
Patches
Plain Diff
Release 1.0.4
parent
7d097fa4
No related branches found
No related tags found
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
Milter/__init__.py
+1
-1
1 addition, 1 deletion
Milter/__init__.py
makefile
+1
-1
1 addition, 1 deletion
makefile
milter-nomix.py
+1
-1
1 addition, 1 deletion
milter-nomix.py
pymilter.spec
+5
-1
5 additions, 1 deletion
pymilter.spec
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
9 additions
and
5 deletions
Milter/__init__.py
+
1
−
1
View file @
10fdccf3
...
...
@@ -9,7 +9,7 @@
# This code is under the GNU General Public License. See COPYING for details.
from
__future__
import
print_function
__version__
=
'
1.0.
3
'
__version__
=
'
1.0.
4
'
import
os
import
re
...
...
This diff is collapsed.
Click to expand it.
makefile
+
1
−
1
View file @
10fdccf3
...
...
@@ -4,7 +4,7 @@ web:
rsync
-ravKk
doc/html/ bmsi.com:/var/www/html/pymilter
cd
doc/html
;
zip
-r
../../doc .
VERSION
=
1.0.
3
VERSION
=
1.0.
4
PKG
=
pymilter-
$(
VERSION
)
SRCTAR
=
$(
PKG
)
.tar.gz
...
...
This diff is collapsed.
Click to expand it.
milter-nomix.py
+
1
−
1
View file @
10fdccf3
## A very simple milter to prevent mixing of internal and external mail.
## A very simple
sample
milter to prevent mixing of internal and external mail.
# Internal is defined as using one of a list of internal top level domains.
# This code is open-source on the same terms as Python.
...
...
This diff is collapsed.
Click to expand it.
pymilter.spec
+
5
−
1
View file @
10fdccf3
...
...
@@ -9,7 +9,7 @@
Summary: %{sum}
Name: python-pymilter
Version: 1.0.
3
Version: 1.0.
4
Release: 1%{?dist}
Url: http://bmsi.com/pymilter
Source: https://github.com/sdgathman/pymilter/archive/pymilter-%{version}.tar.gz
...
...
@@ -138,6 +138,10 @@ if [ $1 -eq 0 ] ; then
fi
%changelog
* Wed Apr 17 2019 Stuart Gathman <stuart@gathman.org> - 1.0.4-1
- New upstream release: cleanup unused files, additional platform support
- Minor doc updates
* Sun Dec 23 2018 Stuart Gathman <stuart@gathman.org> - 1.0.3-1
- New upstream release
- patch step for python3 no longer required in build
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
10fdccf3
...
...
@@ -14,7 +14,7 @@ libdirs = ["/usr/lib/libmilter"] # needed for Debian
modules
=
[
"
mime
"
]
# NOTE: importing Milter to obtain version fails when milter.so not built
setup
(
name
=
"
pymilter
"
,
version
=
'
1.0.
3
'
,
setup
(
name
=
"
pymilter
"
,
version
=
'
1.0.
4
'
,
description
=
"
Python interface to sendmail milter API
"
,
long_description
=
"""
\
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