X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail.toastin.space (mail.toastin.space [207.246.93.162]) by lists.alpinelinux.org (Postfix) with ESMTP id 74D1D5C64DF for ; Wed, 7 Nov 2018 03:26:52 +0000 (GMT) Received: from mail.toastin.space (localhost [127.0.0.1]) by mail.toastin.space (OpenSMTPD) with ESMTP id 585f2681 for ; Tue, 6 Nov 2018 22:26:52 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=toastin.space; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; s=ml; bh=WQdtUH01tX3OGWBcmv84D2YhQDg =; b=fmSXA7CsgBg5P3EqAYYlxT53bvLT7ALGt0JHBuFJ/4d5xs0qnoVxMsAYsHR rgmTbE+ZkXWXMk7vgrIQk3leR1D+iKQl1wOMTo6ihJj6RrQg6nNl/01anf8Qsg2l zEjTZpLtMvZwQOTiuhl82EjmwR3+EwS3MMpgoauVWYdvgYFisYOMKEamAcePXkcX BdbO1erRcr0sRKtDDuboiNMGazEBm8IzoVwKNxCBNBtGQIreIiggMEpF6geurbOk 2t/KD5LUNPeHQLtBu5pQFnDIUkS+3qk1Cp9p6nI9OehTdSnN6qPY86CU9a0q0MRn HKFR8y5XTIjE+FkEuFAamA2xI4g== DomainKey-Signature: a=rsa-sha1; c=nofws; d=toastin.space; h=from:to :subject:date:message-id:in-reply-to:references:mime-version :content-transfer-encoding; q=dns; s=ml; b=HRyXTJn4r8E1tL9nw7mLg nel/cbvoOwulv70reNTV/khc2D5KgZeFhpBV19PAl7CfypmdUECdqNtCB4ezie3c JLzfFzJ+GIxJtQktWw/CEpdIWGQhkU0UstPwpEpTxc5n0jE45wJaMGQ+nsMTC4dQ OX23KW00oe7Fo1n/dhfV5jDPxMWRQ9JVS4QtOXKGIrULBVmmJaJgsc6LYSACYt/n pgihlGseSmZDC2rn+jFOjWNw12m/VctLCN0Aeiv1pE5sn5VxDyCxKN4wgy44eDTO Epn1nX3jDFI7eip6kfZz27Cbrp0G+725b7tXoWDWUVVt1LCVIQhPioFC3NA4Bstz Q== Received: from LapToast.home.toastin.space (192-222-169-215.qc.cable.ebox.net [192.222.169.215]) by mail.toastin.space (OpenSMTPD) with ESMTPSA id 6271345a (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Tue, 6 Nov 2018 22:26:52 -0500 (EST) From: Chloe Kudryavtsev To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH v3] testing/spampd: new aport Date: Tue, 6 Nov 2018 22:26:52 -0500 Message-Id: <20181107032652.18696-1-toast@toastin.space> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20181107024821.3599-1-toast@toastin.space> References: <20181107024821.3599-1-toast@toastin.space> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit https://www.worlddesign.com/index.cfm/page/software/open-source/spampd.htm An SMTP / LMTP proxy that uses spamassassin to mark spam. Similar to amavisd-new, but lets spamassassin modify headers directly, and significantly simpler to use/configure. --- Changes v1 -> v2: - split functions split rather than package - include documentation - add contributor line Changes v2 -> v3: $subpkgdir is not auto-created, which caused /conf.d (etc) to be installed rather than /etc/conf.d. testing/spampd/APKBUILD | 47 +++++++++++++++++++++++++++++++ testing/spampd/spampd.confd | 13 +++++++++ testing/spampd/spampd.initd | 16 +++++++++++ testing/spampd/spampd.pre-install | 6 ++++ 4 files changed, 82 insertions(+) create mode 100644 testing/spampd/APKBUILD create mode 100644 testing/spampd/spampd.confd create mode 100644 testing/spampd/spampd.initd create mode 100644 testing/spampd/spampd.pre-install diff --git a/testing/spampd/APKBUILD b/testing/spampd/APKBUILD new file mode 100644 index 0000000000..23e5a9ef34 --- /dev/null +++ b/testing/spampd/APKBUILD @@ -0,0 +1,47 @@ +# Contributor: Chloe Kudryavtsev +# Maintainer: Chloe Kudryavtsev +pkgname=spampd +pkgver=2.51 +pkgrel=2 +pkgdesc="An L/SMTP proxy that marks spam using spamassassin" +url="http://www.worlddesign.com/index.cfm/page/software/open-source/spampd.htm" +arch="noarch" +license="GPL-2.0-or-later" +depends="perl-net-server perl-mail-spamassassin" +makedepends="" +install="spampd.pre-install" +subpackages="$pkgname-doc $pkgname-openrc" +source=" + spampd.confd + spampd.initd + $pkgname-$pkgver.tar.gz::https://github.com/mpaperno/$pkgname/archive/$pkgver.tar.gz + " +builddir="$srcdir/$pkgname-$pkgver" +pkgusers="spampd" +pkggroups="spampd" + +build() { + return 0 +} + +check() { + cd "$builddir" + # even --version is missing. -? fails if a module is missing + ./spampd.pl -? +} + +package() { + install -m755 -D "$builddir/$pkgname.pl" "$pkgdir/usr/bin/$pkgname" + install -m755 -D "$srcdir/$pkgname.initd" "$pkgdir/etc/init.d/$pkgname" + install -m644 -D "$srcdir/$pkgname.confd" "$pkgdir/etc/conf.d/$pkgname" + install -m644 -D "$builddir/$pkgname.html" \ + "$pkgdir/usr/share/html/$pkgname.html" +} + +openrc() { + mkdir -p "$subpkgdir" + mv "$pkgdir/etc" "$subpkgdir/" +} +sha512sums="216ab774ac2cc8b54fb8f2155738fd41264b261efd5a7ab95d9910aad5b9699065f42211dbe8021383f0172bfb50cfc9087ea8dc1e53a2223dabd7faf490769c spampd.confd +4adad6b44509abedcfb5726d09a63b66048468e5ee7942d0e586630a84fb93931f315ed9410894af2cc4e5bff04cd38600ea91cc0b18c3cedd67efe2af6e0e14 spampd.initd +a766815e2c563f4ba520a423adee34791cb901d301872cfcdc4047ff4668f74e0ecf488e6ad964dd45bd530686440f249b7656ce0ae95cca7fdae42b02badd32 spampd-2.51.tar.gz" diff --git a/testing/spampd/spampd.confd b/testing/spampd/spampd.confd new file mode 100644 index 0000000000..3a9f88d8f6 --- /dev/null +++ b/testing/spampd/spampd.confd @@ -0,0 +1,13 @@ +user=spampd +group=spampd + +#host=127.0.0.1 +#port=10025 +#sock=/run/spampd.sock # overrides host and port +#smod=660 + +#rhost=127.0.0.1 +rport=10026 +#rsock=/run/dovecot/lmtp # user:group must have r/w permissions + +args="--dose" # add -d here if desired diff --git a/testing/spampd/spampd.initd b/testing/spampd/spampd.initd new file mode 100644 index 0000000000..139830f158 --- /dev/null +++ b/testing/spampd/spampd.initd @@ -0,0 +1,16 @@ +#!/sbin/openrc-run +command="/usr/bin/spampd" +pidfile="/run/${RC_SVCNAME}.pid" +command_args="-p=$pidfile + ${user:+-u=$user} ${group:+-g=$group} + ${host:+--host=$host} ${port:+--port=$port} + ${sock:+--socket=$sock} ${smod:+--socket-perms=$smod} + ${rhost:+--relayhost=$rhost} ${rport:+--relayport=$rport} + ${rsock:+--relaysocket=$rsock} + $args" + +# no reload because HUP does not reload spamassassin configuration + +depend() { + before mta +} diff --git a/testing/spampd/spampd.pre-install b/testing/spampd/spampd.pre-install new file mode 100644 index 0000000000..40d8a8c82c --- /dev/null +++ b/testing/spampd/spampd.pre-install @@ -0,0 +1,6 @@ +#!/bin/sh + +addgroup -S spampd 2>/dev/null +adduser -S -D -H -s /sbin/nologin -G spampd -g spampd spampd 2>/dev/null + +exit 0 -- 2.19.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---