[svn-buildpackage] Tagging postfwd 1.32-2
This commit is contained in:
commit
31ea86448e
3
debian/README.source
vendored
3
debian/README.source
vendored
|
@ -1,3 +0,0 @@
|
||||||
We use dpatch for patch handling inside our package(s). Please see
|
|
||||||
/usr/share/doc/dpatch/README.source.gz (if you have installed dpatch) for
|
|
||||||
documentation about dpatch.
|
|
33
debian/changelog
vendored
33
debian/changelog
vendored
|
@ -1,7 +1,30 @@
|
||||||
postfwd (1.30-1) UNRELEASED; urgency=low
|
postfwd (1.32-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* Switch over to packaging format 3.0 (quilt) (Closes: #664409)
|
||||||
|
* Updating standards version to 3.9.3, no changes needed
|
||||||
|
* Remove build-dependency of dpatch
|
||||||
|
* Use dh_prep instead of dh_clean -k
|
||||||
|
* Add build-arch and build-indep targets to debian/rules
|
||||||
|
|
||||||
|
-- Jan Wagner <waja@cyconet.org> Thu, 29 Mar 2012 20:22:17 +0200
|
||||||
|
|
||||||
|
postfwd (1.32-1) unstable; urgency=low
|
||||||
|
|
||||||
* New upstream release
|
* New upstream release
|
||||||
- new parser enhancement is able to omit the trailing "\" for multi-line rules
|
- new option --save_rates=<file> is able to load and save rate limit counters
|
||||||
|
to disk on program start and termination.
|
||||||
|
- the --debugitem="sender=example\.org$" option allows verbose logging for
|
||||||
|
particular requests
|
||||||
|
- the debug() action enables verbose logging for certain rules
|
||||||
|
- nested commands are possible now
|
||||||
|
- new mail(server/helo/from/to/subject/body) action.
|
||||||
|
- single cache items can be wiped
|
||||||
|
- sasl_username is logged if available
|
||||||
|
- rate limit action is executed, if the first request exceeds the limit
|
||||||
|
- exceeded ratecounters will not be kept permanently anymore
|
||||||
|
- rate limits are evaluated at ruleset stage now
|
||||||
|
- new parser enhancement is able to omit the trailing "\" for multi-line
|
||||||
|
rules
|
||||||
- new plugin interface (BETA)
|
- new plugin interface (BETA)
|
||||||
- Time::HiRes is used if available
|
- Time::HiRes is used if available
|
||||||
- multiple rate limits for the same items are supported now
|
- multiple rate limits for the same items are supported now
|
||||||
|
@ -13,13 +36,13 @@ postfwd (1.30-1) UNRELEASED; urgency=low
|
||||||
- documentation updates and fixes
|
- documentation updates and fixes
|
||||||
* Suppress output on restarting via init script (Closes: #636782), thanks
|
* Suppress output on restarting via init script (Closes: #636782), thanks
|
||||||
Martin F. Krafft for reporting
|
Martin F. Krafft for reporting
|
||||||
* Ship hapolicy and manpage
|
* Add hapolicy and manpage into separate binary package
|
||||||
* Reorganize documentation
|
* Reorganize documentation
|
||||||
- Add new files from upstream to documentation
|
- Add new files from upstream to documentation
|
||||||
- Add 10_hapolicy_manpage.dpatch to have a manpage for hapolicy
|
|
||||||
- Changelogs where renamed by upstream
|
- Changelogs where renamed by upstream
|
||||||
|
* Bump Standards-Version to 3.9.2, no changes needed
|
||||||
|
|
||||||
-- Jan Wagner <waja@cyconet.org> Thu, 10 Feb 2011 08:40:51 +0100
|
-- Jan Wagner <waja@cyconet.org> Wed, 21 Dec 2011 22:27:27 +0100
|
||||||
|
|
||||||
postfwd (1.20-1) unstable; urgency=low
|
postfwd (1.20-1) unstable; urgency=low
|
||||||
|
|
||||||
|
|
2
debian/compat
vendored
2
debian/compat
vendored
|
@ -1 +1 @@
|
||||||
5
|
9
|
||||||
|
|
14
debian/control
vendored
14
debian/control
vendored
|
@ -2,11 +2,11 @@ Source: postfwd
|
||||||
Section: mail
|
Section: mail
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: Jan Wagner <waja@cyconet.org>
|
Maintainer: Jan Wagner <waja@cyconet.org>
|
||||||
Build-Depends: debhelper (>= 5), dpatch
|
Build-Depends: debhelper (>= 9)
|
||||||
Homepage: http://www.postfwd.org/
|
Homepage: http://www.postfwd.org/
|
||||||
Vcs-Browser: https://scm.uncompleted.org/projects/debian/repository/show/postfwd
|
Vcs-Browser: https://scm.uncompleted.org/projects/debian/repository/show/postfwd
|
||||||
Vcs-Svn: https://scm.uncompleted.org/svn/debian/postfwd/trunk
|
Vcs-Svn: https://scm.uncompleted.org/svn/debian/postfwd/trunk
|
||||||
Standards-Version: 3.9.1
|
Standards-Version: 3.9.3
|
||||||
|
|
||||||
Package: postfwd
|
Package: postfwd
|
||||||
Architecture: all
|
Architecture: all
|
||||||
|
@ -19,3 +19,13 @@ Description: Postfix policyd to combine complex restrictions in a ruleset
|
||||||
message has been accepted. It allows you to choose an action (e.g. reject,
|
message has been accepted. It allows you to choose an action (e.g. reject,
|
||||||
dunno) for a combination of several smtp parameters (like sender and recipient
|
dunno) for a combination of several smtp parameters (like sender and recipient
|
||||||
address, size or the client's TLS fingerprint).
|
address, size or the client's TLS fingerprint).
|
||||||
|
|
||||||
|
Package: hapolicy
|
||||||
|
Architecture: all
|
||||||
|
Depends: ${perl:Depends}, ${misc:Depends}
|
||||||
|
Description: Balancing and fallback postfix policy delegation service
|
||||||
|
Hapolicy enables high availability, weighted loadbalancing and a fallback
|
||||||
|
action for postfix policy delegation services. Invoked via postfix spawn
|
||||||
|
it acts as a wrapper that queries other policy servers via tcp connection.
|
||||||
|
The order of the service queries can be influenced by assigning a specific
|
||||||
|
priority and weight to each service.
|
||||||
|
|
4
debian/hapolicy.docs
vendored
Normal file
4
debian/hapolicy.docs
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
doc/hapolicy.html
|
||||||
|
doc/hapolicy.txt
|
||||||
|
tools/hapolicy/hapolicy.*
|
||||||
|
tools/hapolicy/hapolicy[0-9a-zA-Z.]*
|
1
debian/hapolicy.manpages
vendored
Normal file
1
debian/hapolicy.manpages
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
man/man8/hapolicy.1
|
3
debian/postfwd.docs
vendored
3
debian/postfwd.docs
vendored
|
@ -1,9 +1,6 @@
|
||||||
#doc/postfwd.html
|
|
||||||
#doc/postfwd.txt
|
|
||||||
doc/postfwd2.CHANGELOG
|
doc/postfwd2.CHANGELOG
|
||||||
doc/*.html
|
doc/*.html
|
||||||
doc/*.txt
|
doc/*.txt
|
||||||
tools/hapolicy/hapolicy.*
|
|
||||||
tools/*.pl
|
tools/*.pl
|
||||||
tools/*.sample
|
tools/*.sample
|
||||||
plugins/*.sample
|
plugins/*.sample
|
||||||
|
|
1
debian/postfwd.manpages
vendored
1
debian/postfwd.manpages
vendored
|
@ -1,3 +1,2 @@
|
||||||
debian/tmp/postfwd1.8
|
debian/tmp/postfwd1.8
|
||||||
man/man8/postfwd2.8
|
man/man8/postfwd2.8
|
||||||
man/man8/hapolicy.1
|
|
||||||
|
|
18
debian/rules
vendored
18
debian/rules
vendored
|
@ -4,11 +4,11 @@
|
||||||
# Uncomment this to turn on verbose mode.
|
# Uncomment this to turn on verbose mode.
|
||||||
#export DH_VERBOSE=1
|
#export DH_VERBOSE=1
|
||||||
|
|
||||||
include /usr/share/dpatch/dpatch.make
|
build: build-arch build-indep
|
||||||
|
build-arch:
|
||||||
|
build-indep:
|
||||||
|
|
||||||
build: patch-stamp
|
clean:
|
||||||
|
|
||||||
clean: unpatch
|
|
||||||
dh_testdir
|
dh_testdir
|
||||||
dh_testroot
|
dh_testroot
|
||||||
dh_clean
|
dh_clean
|
||||||
|
@ -16,24 +16,24 @@ clean: unpatch
|
||||||
install: build
|
install: build
|
||||||
dh_testdir
|
dh_testdir
|
||||||
dh_testroot
|
dh_testroot
|
||||||
dh_clean -k
|
dh_prep
|
||||||
|
|
||||||
# install binaries
|
# install binaries
|
||||||
install -D -m 644 sbin/postfwd debian/postfwd/usr/sbin/postfwd1
|
install -D -m 644 sbin/postfwd debian/postfwd/usr/sbin/postfwd1
|
||||||
install -D -m 644 sbin/postfwd2 debian/postfwd/usr/sbin/postfwd2
|
install -D -m 644 sbin/postfwd2 debian/postfwd/usr/sbin/postfwd2
|
||||||
install -D -m 644 tools/hapolicy/hapolicy debian/postfwd/usr/sbin/hapolicy
|
install -D -m 644 tools/hapolicy/hapolicy debian/hapolicy/usr/sbin/hapolicy
|
||||||
# install man page
|
# install man page
|
||||||
mkdir -p debian/tmp/
|
mkdir -p debian/tmp/
|
||||||
cp man/man8/postfwd.8 debian/tmp/postfwd1.8
|
cp man/man8/postfwd.8 debian/tmp/postfwd1.8
|
||||||
pod2man debian/postfwd/usr/sbin/hapolicy man/man8/hapolicy.1
|
pod2man debian/hapolicy/usr/sbin/hapolicy man/man8/hapolicy.1
|
||||||
|
|
||||||
# Build architecture-independent files here.
|
# Build architecture-independent files here.
|
||||||
binary-indep: build install
|
binary-indep: build install
|
||||||
dh_testdir
|
dh_testdir
|
||||||
dh_testroot
|
dh_testroot
|
||||||
dh_installchangelogs doc/postfwd.CHANGELOG
|
dh_installchangelogs doc/postfwd.CHANGELOG
|
||||||
dh_installdocs -Xhapolicy
|
dh_installdocs -ppostfwd -Xhapolicy
|
||||||
dh_installdocs tools/hapolicy/hapolicy[0-9a-zA-Z.]*
|
dh_installdocs -phapolicy tools/hapolicy/hapolicy[0-9a-zA-Z.]*
|
||||||
dh_installexamples etc/postfwd.cf.sample debian/example-cfg*
|
dh_installexamples etc/postfwd.cf.sample debian/example-cfg*
|
||||||
dh_installinit -- defaults 19 21
|
dh_installinit -- defaults 19 21
|
||||||
dh_installman
|
dh_installman
|
||||||
|
|
2
debian/source/format
vendored
2
debian/source/format
vendored
|
@ -1 +1 @@
|
||||||
1.0
|
3.0 (quilt)
|
||||||
|
|
Loading…
Reference in a new issue