policyd-weight has moved to pkgsrc.
This commit is contained in:
parent
c541e47707
commit
6f81053e44
5 changed files with 0 additions and 116 deletions
|
@ -1,7 +0,0 @@
|
||||||
policyd-weight is a Perl policy daemon for the Postfix MTA (2.1 and later)
|
|
||||||
intended to eliminate forged envelope senders and HELOs (i.e. in bogus mails).
|
|
||||||
It allows you to score DNSBLs (RBL/RHSBL), HELO, MAIL FROM and client IP
|
|
||||||
addresses before any queuing is done. It allows you to REJECT messages which
|
|
||||||
have a score higher than allowed, providing improved blocking of spam and
|
|
||||||
virus mails. policyd-weight caches the most frequent client/sender
|
|
||||||
combinations (SPAM as well as HAM) to reduce the number of DNS queries.
|
|
|
@ -1,55 +0,0 @@
|
||||||
# $NetBSD: Makefile,v 1.4 2007/03/06 13:25:54 bartoszkuzma Exp $
|
|
||||||
#
|
|
||||||
|
|
||||||
DISTNAME= policyd-weight-0.1.14
|
|
||||||
CATEGORIES= mail
|
|
||||||
MASTER_SITES= http://www.policyd-weight.org/releases/
|
|
||||||
|
|
||||||
MAINTAINER= bartosz@atom.eu.org
|
|
||||||
HOMEPAGE= http://www.policyd-weight.org/
|
|
||||||
COMMENT= Weighted policy daemon for postfix
|
|
||||||
|
|
||||||
DEPENDS+= p5-Net-DNS>=0.58:../../net/p5-Net-DNS
|
|
||||||
|
|
||||||
USE_TOOLS+= perl:run
|
|
||||||
USE_LANGUAGES= # none
|
|
||||||
REPLACE_PERL+= policyd-weight
|
|
||||||
|
|
||||||
BUILD_DEFS+= VARBASE
|
|
||||||
|
|
||||||
POLICYD_WEIGHT_USER?= polw
|
|
||||||
POLICYD_WEIGHT_GROUP?= polw
|
|
||||||
|
|
||||||
BUILD_DEFS+= POLICYD_WEIGHT_GROUP POLICYD_WEIGHT_USER
|
|
||||||
FILES_SUBST+= POLICYD_WEIGHT_GROUP=${POLICYD_WEIGHT_GROUP:Q}
|
|
||||||
FILES_SUBST+= POLICYD_WEIGHT_USER=${POLICYD_WEIGHT_USER:Q}
|
|
||||||
|
|
||||||
PKG_GROUPS= ${POLICYD_WEIGHT_GROUP}
|
|
||||||
PKG_USERS= ${POLICYD_WEIGHT_USER}:${POLICYD_WEIGHT_GROUP}
|
|
||||||
PKG_GECOS.${POLICYD_WEIGHT_USER}= Policyd-weight User
|
|
||||||
|
|
||||||
DOCDIR= ${PREFIX}/share/doc/policyd-weight
|
|
||||||
EGDIR= ${PREFIX}/share/examples/policyd-weight
|
|
||||||
CONF_FILES= ${EGDIR}/policyd-weight.conf \
|
|
||||||
${PKG_SYSCONFDIR}/policyd-weight.conf
|
|
||||||
RCD_SCRIPTS= policyd_weight
|
|
||||||
|
|
||||||
SUBST_CLASSES+= fix-paths
|
|
||||||
SUBST_STAGE.fix-paths= post-build
|
|
||||||
SUBST_FILES.fix-paths= policyd-weight policyd-weight.conf.sample
|
|
||||||
SUBST_SED.fix-paths= -e 's,"/var/run/,"${VARBASE}/run/,g'
|
|
||||||
SUBST_SED.fix-paths+= -e 's,"/etc/policyd-weight.conf","${PKG_SYSCONFDIR}/policyd-weight.conf",g'
|
|
||||||
SUBST_SED.fix-paths+= -e 's,"polw";,"${POLICYD_WEIGHT_USER}";,g'
|
|
||||||
|
|
||||||
do-build: replace-interpreter
|
|
||||||
|
|
||||||
do-install:
|
|
||||||
${INSTALL_SCRIPT} ${WRKSRC}/policyd-weight ${PREFIX}/sbin
|
|
||||||
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
||||||
${INSTALL_DATA} ${WRKSRC}/changes.txt ${DOCDIR}
|
|
||||||
${INSTALL_DATA} ${WRKSRC}/documentation.txt ${DOCDIR}
|
|
||||||
${INSTALL_DATA_DIR} ${EGDIR}
|
|
||||||
${INSTALL_DATA} ${WRKSRC}/policyd-weight.conf.sample \
|
|
||||||
${EGDIR}/policyd-weight.conf
|
|
||||||
|
|
||||||
.include "../../mk/bsd.pkg.mk"
|
|
|
@ -1,8 +0,0 @@
|
||||||
@comment $NetBSD: PLIST,v 1.1.1.1 2006/10/30 16:58:19 bartoszkuzma Exp $
|
|
||||||
sbin/policyd-weight
|
|
||||||
share/doc/policyd-weight/changes.txt
|
|
||||||
share/doc/policyd-weight/documentation.txt
|
|
||||||
share/examples/policyd-weight/policyd-weight.conf
|
|
||||||
share/examples/rc.d/policyd_weight
|
|
||||||
@dirrm share/doc/policyd-weight
|
|
||||||
@dirrm share/examples/policyd-weight
|
|
|
@ -1,5 +0,0 @@
|
||||||
$NetBSD: distinfo,v 1.1.1.1 2006/10/30 16:58:19 bartoszkuzma Exp $
|
|
||||||
|
|
||||||
SHA1 (policyd-weight-0.1.14.tar.gz) = 3947b2da9e34b57b9d4be8c1c1a2d76279908fd0
|
|
||||||
RMD160 (policyd-weight-0.1.14.tar.gz) = c350e71418226bd84bed52b0d54892f84f5b68d2
|
|
||||||
Size (policyd-weight-0.1.14.tar.gz) = 45179 bytes
|
|
|
@ -1,41 +0,0 @@
|
||||||
#!@RCD_SCRIPTS_SHELL@
|
|
||||||
#
|
|
||||||
# $NetBSD: policyd_weight.sh,v 1.1.1.1 2006/10/30 16:58:19 bartoszkuzma Exp $
|
|
||||||
#
|
|
||||||
|
|
||||||
# PROVIDE: policyd_weight
|
|
||||||
# BEFORE: mail
|
|
||||||
# REQUIRE: DAEMON LOGIN
|
|
||||||
|
|
||||||
. /etc/rc.subr
|
|
||||||
|
|
||||||
name="policyd_weight"
|
|
||||||
rcvar=$name
|
|
||||||
pidfile="@VARBASE@/run/policyd-weight.pid"
|
|
||||||
command_interpreter="@PREFIX@/bin/perl"
|
|
||||||
command="@PREFIX@/sbin/policyd-weight"
|
|
||||||
extra_commands="reload"
|
|
||||||
required_files="@PKG_SYSCONFDIR@/policyd-weight.conf"
|
|
||||||
|
|
||||||
reload_cmd="policyd_weight_op"
|
|
||||||
restart_cmd="policyd_weight_op"
|
|
||||||
start_cmd="policyd_weight_op"
|
|
||||||
stop_cmd="policyd_weight_stop"
|
|
||||||
|
|
||||||
policyd_weight_op()
|
|
||||||
{
|
|
||||||
${command} ${rc_arg}
|
|
||||||
}
|
|
||||||
|
|
||||||
policyd_weight_stop()
|
|
||||||
{
|
|
||||||
${command} -k stop
|
|
||||||
}
|
|
||||||
|
|
||||||
if [ -f /etc/rc.subr -a -f /etc/rc.conf ]; then
|
|
||||||
load_rc_config $name
|
|
||||||
run_rc_command "$1"
|
|
||||||
else
|
|
||||||
@ECHO@ -n " ${name}"
|
|
||||||
${command} start
|
|
||||||
fi
|
|
Loading…
Reference in a new issue