forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mail-filter/zdkimfilter: Initial commit
DKIM support for the courier MTA. This package was previously removed from Gentoo due to lack of maintainership, reviving it due to increased need of DKIM support. Signed-off-by: Hanno Böck <[email protected]> Package-Manager: Portage-2.3.79, Repoman-2.3.18
- Loading branch information
Showing
3 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST zdkimfilter-1.8.tar.gz 717481 BLAKE2B ec662a02c4a248085a42548d892084eb23c592c0511026039d18e8cc7a1a46dcf37411f8fc7395be507065ddb9cda8c5a1226e5e379852b4ef7ee84c2936b439 SHA512 e4b32c5d636db8a76ecfc2e4c8b1bda2053dc6c5baba13ed66120458f012a9d22d9ec269ae88100f1cc048b9c7d6c67a887ed1a48435a6353ab68bc13054c42c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
</maintainer> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright 1999-2019 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
DESCRIPTION="DKIM filter for Courier-MTA" | ||
HOMEPAGE="https://www.tana.it/sw/zdkimfilter" | ||
SRC_URI="https://www.tana.it/sw/zdkimfilter/${P}.tar.gz" | ||
LICENSE="GPL-3+" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="debug" | ||
|
||
DEPEND="mail-filter/opendkim | ||
mail-mta/courier | ||
dev-db/opendbx | ||
dev-libs/nettle | ||
net-dns/libidn2 | ||
dev-libs/libunistring" | ||
RDEPEND="${DEPEND}" | ||
|
||
# For working tests we need a fix for opendkim, | ||
# see https://bugs.gentoo.org/700174 | ||
RESTRICT="test" | ||
|
||
src_configure() { | ||
econf $(use_enable debug) | ||
} | ||
|
||
src_install() { | ||
emake DESTDIR="${D}" install | ||
diropts -o mail -g mail | ||
dodir /etc/courier/filters/keys | ||
dodoc release-notes-*.txt README ChangeLog | ||
dodoc odbx_example.{conf,sql} | ||
} |