summaryrefslogtreecommitdiff
blob: 09dfa700d335978ceb00f6cdfb472a2518972d50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils

DESCRIPTION="Per-recipient whitelist policy server for Postfix MTA managed entirely by emails."
HOMEPAGE="http://www.bitcetera.com/products/postwhite"
SRC_URI="http://www.bitcetera.com/download/${P}.tgz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="mail-mta/postfix
	>=dev-lang/ruby-1.8.6
	dev-ruby/rubygems
	dev-ruby/facets
	dev-ruby/trollop"
RDEPEND=${DEPEND}

pkg_setup() {
	enewgroup ${PN}
	enewuser ${PN} -1 -1 /dev/null ${PN}
}

src_install() {
	dosbin ${PN} || die "installing binary failed"
	newinitd "${FILESDIR}"/${PVR}/${PN}.init ${PN}
	newconfd "${FILESDIR}"/${PVR}/${PN}.conf ${PN}
	"${S}"/${PN} --prefix "${D}" configure || die
	keepdir /etc/postfix/postwhite
}

pkg_postinst() {
	elog
	elog "The following steps are necessary to hook Postwhite into the Postfix"
	elog "workflow:"
	elog
	elog "1) List all email addresses that should be protected by Postwhite in:"
	elog "   /etc/postfix/postwhite/recipients.yml"
	elog "2) Start the Postwhite daemon:"
	elog "   /etc/init.d/postwhite start"
	elog "3) Add the line 'check_policy_service inet:127.0.0.1:10035,' to the"
	elog "   'smtpd_recipient_restrictions' block which you find somewhere in"
	elog "   /etc/postfix/main.cf. You should place it near the end of the block"
	elog "   after all basic services (like 'reject_unauth_destination,') and"
	elog "   the greylist service (like Postgrey) but before the anti-SPAM services"
	elog "   (like DSPAM or SpamAssassin) in order to prevent unnecessary workload."
	elog "4) Reload Postfix to bring your changes into effect:"
	elog "   /etc/init.d/postfix reload"
	elog "5) Make the Postwhite daemon start at boot time:"
	elog "   rc-update add postwhite default"
	elog
	epause 5
}