[mail-filter/amavisd-new] rm, in tree
This commit is contained in:
parent
607a8ec284
commit
f8ac9a32ee
@ -1 +0,0 @@
|
||||
DIST amavisd-new-2.9.0.tar.xz 752344 SHA256 a33b1bbb9a4ae9d00340291081e22dc7be00e60cd2dac6a93c17785cbc517fdd SHA512 490f249b47638368c4e39b1e90a0654c965ed0c3102495c152c1f365a2fb962078a2bcfb57dccbf0fa8008494d85414734a6cde2aeded7aeda6bf4c1201de59d WHIRLPOOL 31a979bc573b051217101fa317894dabbe5ad75f0d636ae3c720f9c184c9295cddc3acc532950e524348103596113cefd2660cf12753f08837cc9ef931f44f16
|
@ -1,188 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils systemd user
|
||||
|
||||
DESCRIPTION="High-performance interface between the MTA and content checkers."
|
||||
HOMEPAGE="http://www.ijs.si/software/amavisd/"
|
||||
SRC_URI="http://www.ijs.si/software/amavisd/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
|
||||
IUSE="clamav courier dkim ldap mysql postgres qmail razor snmp spamassassin zmq"
|
||||
|
||||
DEPEND=">=sys-apps/sed-4
|
||||
>=dev-lang/perl-5.8.2"
|
||||
|
||||
RDEPEND="${DEPEND}
|
||||
>=sys-apps/coreutils-5.0-r3
|
||||
app-arch/cpio
|
||||
app-arch/gzip
|
||||
app-arch/bzip2
|
||||
app-arch/arc
|
||||
app-arch/cabextract
|
||||
app-arch/freeze
|
||||
app-arch/lha
|
||||
app-arch/lrzip
|
||||
app-arch/lzop
|
||||
app-arch/ncompress
|
||||
app-arch/p7zip
|
||||
app-arch/pax
|
||||
app-arch/unarj
|
||||
app-arch/unrar
|
||||
app-arch/xz-utils
|
||||
app-arch/zoo
|
||||
net-mail/ripole
|
||||
>=dev-perl/Archive-Zip-1.14
|
||||
>=virtual/perl-IO-Compress-1.35
|
||||
>=virtual/perl-Compress-Raw-Zlib-2.017
|
||||
dev-perl/Convert-TNEF
|
||||
>=dev-perl/Convert-UUlib-1.08
|
||||
virtual/perl-MIME-Base64
|
||||
>=dev-perl/MIME-tools-5.415
|
||||
>=dev-perl/MailTools-1.58
|
||||
>=dev-perl/net-server-0.91
|
||||
virtual/perl-Digest-MD5
|
||||
dev-perl/IO-stringy
|
||||
dev-perl/IO-Socket-IP
|
||||
>=virtual/perl-Time-HiRes-1.49
|
||||
dev-perl/Unix-Syslog
|
||||
sys-apps/file
|
||||
>=sys-libs/db-4.4.20
|
||||
dev-perl/BerkeleyDB
|
||||
dev-perl/Convert-BinHex
|
||||
>=dev-perl/Mail-DKIM-0.31
|
||||
virtual/mta
|
||||
clamav? ( app-antivirus/clamav )
|
||||
ldap? ( >=dev-perl/perl-ldap-0.33 )
|
||||
mysql? ( dev-perl/DBD-mysql )
|
||||
postgres? ( dev-perl/DBD-Pg )
|
||||
razor? ( mail-filter/razor )
|
||||
snmp? ( net-analyzer/net-snmp[perl] )
|
||||
spamassassin? ( mail-filter/spamassassin )
|
||||
zmq? ( dev-perl/ZMQ-LibZMQ2 )"
|
||||
|
||||
AMAVIS_ROOT="/var/amavis"
|
||||
|
||||
src_prepare() {
|
||||
if use courier ; then
|
||||
epatch amavisd-new-courier.patch
|
||||
fi
|
||||
|
||||
if use qmail ; then
|
||||
epatch amavisd-new-qmqpqq.patch
|
||||
fi
|
||||
|
||||
sed -i \
|
||||
-e '/daemon/s/vscan/amavis/' \
|
||||
-e "s:'/var/virusmails':\"\$MYHOME/quarantine\":" \
|
||||
"${S}/amavisd.conf" "${S}/amavis-mc" || die
|
||||
|
||||
if ! use dkim ; then
|
||||
sed -i -e '/enable_dkim/s/1/0/' "${S}/amavisd.conf" \
|
||||
|| die "missing conf file"
|
||||
fi
|
||||
|
||||
if use zmq ; then
|
||||
sed -i -e '/enable_zmq/s/# //' "${S}/amavisd.conf"
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dosbin amavisd amavisd-agent amavisd-nanny amavisd-release \
|
||||
amavisd-signer amavisd-status
|
||||
dobin p0f-analyzer.pl amavisd-submit
|
||||
|
||||
if use snmp ; then
|
||||
dosbin amavisd-snmp-subagent
|
||||
use zmq && dosbin amavisd-snmp-subagent-zmq
|
||||
dodoc AMAVIS-MIB.txt
|
||||
fi
|
||||
|
||||
if use zmq ; then
|
||||
dosbin amavis-services amavis-mc
|
||||
newinitd "${FILESDIR}"/amavis-mc.initd amavis-mc
|
||||
fi
|
||||
|
||||
insinto /etc
|
||||
insopts -m0640
|
||||
doins amavisd.conf
|
||||
|
||||
newinitd "${FILESDIR}/amavisd.initd-r1" amavisd
|
||||
|
||||
systemd_dounit "${FILESDIR}/amavisd.service"
|
||||
use clamav || sed -i -e '/Wants=clamd/d' "${ED}"/usr/lib/systemd/system/amavisd.service
|
||||
use spamassassin || sed -i -e '/Wants=spamassassin/d' "${ED}"/usr/lib/systemd/system/amavisd.service
|
||||
|
||||
keepdir "${AMAVIS_ROOT}"
|
||||
keepdir "${AMAVIS_ROOT}/db"
|
||||
keepdir "${AMAVIS_ROOT}/quarantine"
|
||||
keepdir "${AMAVIS_ROOT}/tmp"
|
||||
keepdir "${AMAVIS_ROOT}/var"
|
||||
|
||||
dodoc AAAREADME.first INSTALL MANIFEST RELEASE_NOTES TODO \
|
||||
amavisd.conf-default amavisd-custom.conf
|
||||
|
||||
docinto README_FILES
|
||||
dodoc README_FILES/README*
|
||||
dohtml README_FILES/*.{html,css}
|
||||
docinto README_FILES/images
|
||||
dodoc README_FILES/images/*.png
|
||||
docinto README_FILES/images/callouts
|
||||
dodoc README_FILES/images/callouts/*.png
|
||||
|
||||
docinto test-messages
|
||||
dodoc test-messages/README
|
||||
dodoc test-messages/sample.tar.gz.compl
|
||||
|
||||
#for i in whitelist blacklist spam_lovers; do
|
||||
# if [ -f ${AMAVIS_ROOT}/${i} ]; then
|
||||
# cp "${AMAVIS_ROOT}/${i}" "${D}/${AMAVIS_ROOT}"
|
||||
# else
|
||||
# touch "${D}"/${AMAVIS_ROOT}/${i}
|
||||
# fi
|
||||
#done
|
||||
|
||||
if use ldap ; then
|
||||
dodir /etc/openldap/schema
|
||||
insinto /etc/openldap/schema
|
||||
insopts -o root -g root -m 644
|
||||
newins LDAP.schema ${PN}.schema || die
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
enewgroup amavis
|
||||
enewuser amavis -1 -1 "${AMAVIS_ROOT}" amavis
|
||||
if use razor ; then
|
||||
if [ ! -d "${ROOT}${AMAVIS_ROOT}/.razor" ] ; then
|
||||
elog "Setting up initial razor config files..."
|
||||
|
||||
razor-admin -create -home="${D}/${AMAVIS_ROOT}/.razor"
|
||||
sed -i -e "s:debuglevel\([ ]*\)= .:debuglevel\1= 0:g" \
|
||||
"${D}/${AMAVIS_ROOT}/.razor/razor-agent.conf"
|
||||
fi
|
||||
fi
|
||||
|
||||
if ! use spamassassin ; then
|
||||
elog "Disabling anti-spam code in amavisd.conf..."
|
||||
sed -i -e \
|
||||
"/^#[[:space:]]*@bypass_spam_checks_maps[[:space:]]*=[[:space:]]*(1)/s/^#//" \
|
||||
"${D}/etc/amavisd.conf"
|
||||
fi
|
||||
|
||||
if has_version "<${CATEGORY}/${PN}-2.7.0" ; then
|
||||
elog "Amavisd-new ships with a short and condensed config file now."
|
||||
elog "Transferring your current settings to the new format is"
|
||||
elog "recommended for ease of future upgrades."
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
chown root:amavis "${ROOT}/etc/amavisd.conf"
|
||||
chown -R amavis:amavis "${ROOT}/${AMAVIS_ROOT}"
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
#!/sbin/runscript
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/mail-filter/amavisd-new/files/amavis-mc.initd,v 1.1 2012/11/07 12:55:15 eras Exp $
|
||||
|
||||
prog="/usr/sbin/amavis-mc"
|
||||
progname="amavis-mc"
|
||||
|
||||
depend() {
|
||||
use logger
|
||||
before amavisd-new snmpd
|
||||
}
|
||||
|
||||
start() {
|
||||
ebegin "Starting ${progname}"
|
||||
start-stop-daemon --start --exec ${prog}
|
||||
eend $?
|
||||
}
|
||||
|
||||
stop() {
|
||||
ebegin "Stopping ${progname}"
|
||||
start-stop-daemon --stop --interpreted --exec ${prog}
|
||||
eend $?
|
||||
}
|
@ -1,45 +0,0 @@
|
||||
#!/sbin/runscript
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/mail-filter/amavisd-new/files/amavisd.initd-r1,v 1.1 2012/11/07 12:55:15 eras Exp $
|
||||
|
||||
extra_started_commands="reload"
|
||||
extra_commands="debug debug_sa"
|
||||
|
||||
prog="/usr/sbin/amavisd"
|
||||
progname="amavisd-new"
|
||||
|
||||
depend() {
|
||||
use net logger antivirus snmpd
|
||||
before mta
|
||||
}
|
||||
|
||||
start() {
|
||||
ebegin "Starting ${progname}"
|
||||
"${prog}" start
|
||||
eend $?
|
||||
}
|
||||
|
||||
stop() {
|
||||
ebegin "Stopping ${progname}"
|
||||
"${prog}" stop 1>/dev/null
|
||||
eend $?
|
||||
}
|
||||
|
||||
reload() {
|
||||
ebegin "Reloading ${progname}"
|
||||
"${prog}" reload 1>/dev/null
|
||||
eend $?
|
||||
}
|
||||
|
||||
debug() {
|
||||
ebegin "Starting ${progname} in debug mode"
|
||||
"${prog}" debug
|
||||
eend $?
|
||||
}
|
||||
|
||||
debug_sa() {
|
||||
ebegin "Starting ${progname} in debug-sa mode"
|
||||
"${prog}" debug-sa
|
||||
eend $?
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
[Unit]
|
||||
Description=Amavisd Daemon
|
||||
Wants=postfix.service
|
||||
Wants=spamassassin.service
|
||||
Wants=clamd.service
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/sbin/amavisd -c /etc/amavisd.conf foreground
|
||||
ExecReload=/usr/sbin/amavisd -c /etc/amavisd.conf reload
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Reference in New Issue
Block a user