mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
mail-filters/rmilter: start before mta (fixes bug 605592)
Package-Manager: portage-2.3.0
This commit is contained in:
26
mail-filter/rmilter/files/rmilter.initd-r2
Normal file
26
mail-filter/rmilter/files/rmilter.initd-r2
Normal file
@@ -0,0 +1,26 @@
|
||||
#!/sbin/openrc-run
|
||||
# Copyright 2015-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
RUNDIR=/var/run/rmilter
|
||||
PIDFILE=$RUNDIR/rmilter.pid
|
||||
|
||||
depend() {
|
||||
need net
|
||||
before mta
|
||||
}
|
||||
|
||||
start() {
|
||||
ebegin "Starting ${SVCNAME}"
|
||||
checkpath -d $RUNDIR -m2750 -o rmilter:rmilter
|
||||
rm -f $RUNDIR/$SVCNAME.sock
|
||||
start-stop-daemon --start --quiet --pidfile $PIDFILE -u rmilter \
|
||||
--exec /usr/sbin/rmilter -- -c /etc/rmilter/rmilter.conf
|
||||
eend $?
|
||||
}
|
||||
|
||||
stop() {
|
||||
ebegin "Stopping ${SVCNAME}"
|
||||
start-stop-daemon --stop --quiet --pidfile $PIDFILE
|
||||
eend $?
|
||||
}
|
||||
46
mail-filter/rmilter/rmilter-1.10.0-r2.ebuild
Normal file
46
mail-filter/rmilter/rmilter-1.10.0-r2.ebuild
Normal file
@@ -0,0 +1,46 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit cmake-utils user
|
||||
|
||||
DESCRIPTION="Another sendmail milter for different mail checks"
|
||||
SRC_URI="https://github.com/vstakhov/rmilter/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
HOMEPAGE="https://github.com/vstakhov/rmilter"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="dkim libressl +memcached"
|
||||
|
||||
RDEPEND="dev-libs/libpcre
|
||||
!libressl? ( dev-libs/openssl:0= )
|
||||
libressl? ( dev-libs/libressl:0= )
|
||||
mail-filter/libmilter
|
||||
>=dev-libs/glib-2.28
|
||||
dkim? ( mail-filter/opendkim )
|
||||
memcached? ( dev-libs/libmemcached )"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
pkg_setup() {
|
||||
enewgroup rmilter
|
||||
enewuser rmilter -1 -1 /var/run/rmilter rmilter
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DENABLE_DKIM=$(usex dkim ON OFF)
|
||||
-DENABLE_MEMCACHED=$(usex memcached ON OFF)
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
newinitd "${FILESDIR}/rmilter.initd-r2" rmilter
|
||||
insinto /etc/rmilter
|
||||
newins rmilter.conf.sample rmilter.conf.sample
|
||||
newins rmilter-grey.conf rmilter-grey.conf
|
||||
}
|
||||
Reference in New Issue
Block a user