Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 18 Jan 2020 16:18:52 +0000 (UTC)
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r523423 - in head/mail: . opensmtpd-filter-senderscore
Message-ID:  <202001181618.00IGIqPg002432@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: manu
Date: Sat Jan 18 16:18:51 2020
New Revision: 523423
URL: https://svnweb.freebsd.org/changeset/ports/523423

Log:
  mail/opensmtpd-filter-senderscore: New port
  
  This opensmtpd filter allow to use the senderscore reputation
  score to block or slowdown a session based on the IP address.

Added:
  head/mail/opensmtpd-filter-senderscore/
  head/mail/opensmtpd-filter-senderscore/Makefile   (contents, props changed)
  head/mail/opensmtpd-filter-senderscore/distinfo   (contents, props changed)
  head/mail/opensmtpd-filter-senderscore/pkg-descr   (contents, props changed)
Modified:
  head/mail/Makefile

Modified: head/mail/Makefile
==============================================================================
--- head/mail/Makefile	Sat Jan 18 16:18:24 2020	(r523422)
+++ head/mail/Makefile	Sat Jan 18 16:18:51 2020	(r523423)
@@ -285,6 +285,7 @@
     SUBDIR += opensmtpd-extras-table-socketmap
     SUBDIR += opensmtpd-extras-table-sqlite
     SUBDIR += opensmtpd-filter-rspamd
+    SUBDIR += opensmtpd-filter-senderscore
     SUBDIR += openwebmail
     SUBDIR += osbf-lua
     SUBDIR += ovs

Added: head/mail/opensmtpd-filter-senderscore/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/opensmtpd-filter-senderscore/Makefile	Sat Jan 18 16:18:51 2020	(r523423)
@@ -0,0 +1,27 @@
+# Created by: Emmanuel Vadot <manu@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	opensmtpd-filter-senderscore
+PORTVERSION=	0.1.1
+CATEGORIES=	mail
+
+MAINTAINER=	manu@FreeBSD.Org
+COMMENT=	OpenSMTPD filter integration for the senderscore reputation
+
+LICENSE=	ISCL
+
+RUN_DEPENDS=	opensmtpd>=6.6.0:mail/opensmtpd
+
+USES=		go
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	poolpOrg
+GH_PROJECT=	filter-senderscore
+
+PLIST_FILES=	libexec/opensmtpd/opensmtpd-filter-senderscore
+
+do-install:
+	${MKDIR} ${STAGEDIR}${PREFIX}/libexec/opensmtpd/
+	${INSTALL_PROGRAM} ${WRKDIR}/bin/opensmtpd-filter-senderscore ${STAGEDIR}${PREFIX}/libexec/opensmtpd/
+
+.include <bsd.port.mk>

Added: head/mail/opensmtpd-filter-senderscore/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/opensmtpd-filter-senderscore/distinfo	Sat Jan 18 16:18:51 2020	(r523423)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1579363858
+SHA256 (poolpOrg-filter-senderscore-0.1.1_GH0.tar.gz) = de23c4ce9d44f239ff2e1f24bfcee1a30955729f028ea37a0b3857041a1e175f
+SIZE (poolpOrg-filter-senderscore-0.1.1_GH0.tar.gz) = 3909

Added: head/mail/opensmtpd-filter-senderscore/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/opensmtpd-filter-senderscore/pkg-descr	Sat Jan 18 16:18:51 2020	(r523423)
@@ -0,0 +1,4 @@
+This filter performs a SenderScore lookup and allows OpenSMTPD to either
+block or slow down a session based on the reputation of the source IP address.
+
+WWW: https://github.com/poolpOrg/filter-senderscore



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001181618.00IGIqPg002432>