Greylite is an implementation of a modified greylisting technology for fighting
SPAM on mailservers running qmail. Greylite does not require patching qmail, it is self-contained because it uses sqlite, it uses a technology that minimizes delivery delays and enables suspect senders to be multiply rejected and never whitelisted. Greylite is easy to setup and maintain, and it is small and fast. WWW: http://mij.oltrelinux.com/net/greylite/ PR: ports/118233 Submitted by: Mij <mij at bitchx.it>
This commit is contained in:
parent
efcf49406f
commit
cc70c8ad2c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=204095
5 changed files with 63 additions and 0 deletions
|
@ -155,6 +155,7 @@
|
|||
SUBDIR += gnumail
|
||||
SUBDIR += gotmail
|
||||
SUBDIR += grepmail
|
||||
SUBDIR += greylite
|
||||
SUBDIR += gtray
|
||||
SUBDIR += gubby
|
||||
SUBDIR += hashcash
|
||||
|
|
41
mail/greylite/Makefile
Normal file
41
mail/greylite/Makefile
Normal file
|
@ -0,0 +1,41 @@
|
|||
# New ports collection makefile for: greylite
|
||||
# Date created: 2007-12-11
|
||||
# Whom: Mij <mij@bitchx.it>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= greylite
|
||||
DISTVERSION= 1.3
|
||||
CATEGORIES= mail
|
||||
MASTER_SITES= http://mij.oltrelinux.com/net/greylite/
|
||||
|
||||
MAINTAINER= mij@bitchx.it
|
||||
COMMENT= An efficient greylisting module for qmail
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_SQLITE= 3
|
||||
PLIST_FILES= bin/greylite
|
||||
|
||||
MAN8= greylite.8
|
||||
MANCOMPRESSED= yes
|
||||
|
||||
OPTIONS= GEOIP "Enable support for GeoIP in suspicion rules" On
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if !defined(WITHOUT_GEOIP)
|
||||
LIB_DEPENDS+= GeoIP:$(PORTSDIR)/net/GeoIP
|
||||
MAKE_ARGS+= WITH_GEOIP=yep
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
${CP} ${WRKSRC}/Makefile.bsdmake ${WRKSRC}/Makefile
|
||||
|
||||
do-build:
|
||||
$(MAKE) -C $(WRKSRC) $(MAKE_ARGS)
|
||||
|
||||
post-install:
|
||||
@$(CAT) pkg-message
|
||||
|
||||
.include <bsd.port.post.mk>
|
3
mail/greylite/distinfo
Normal file
3
mail/greylite/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (greylite-1.3.tar.bz2) = a034d736a75555a3b710a288f33ade96
|
||||
SHA256 (greylite-1.3.tar.bz2) = 8393fd976daa4e0f514567f9a39905d4115cbe1f5809315bf4b16e082e8f7eba
|
||||
SIZE (greylite-1.3.tar.bz2) = 13629
|
10
mail/greylite/pkg-descr
Normal file
10
mail/greylite/pkg-descr
Normal file
|
@ -0,0 +1,10 @@
|
|||
Greylite is an implementation of a modified greylisting technology for fighting
|
||||
SPAM on mailservers running qmail.
|
||||
|
||||
Greylite does not require patching qmail, it is self-contained because it uses
|
||||
sqlite, it uses a technology that minimizes delivery delays and enables suspect
|
||||
senders to be multiply rejected and never whitelisted.
|
||||
|
||||
Greylite is easy to setup and maintain, and it is small and fast.
|
||||
|
||||
WWW: http://mij.oltrelinux.com/net/greylite/
|
8
mail/greylite/pkg-message
Normal file
8
mail/greylite/pkg-message
Normal file
|
@ -0,0 +1,8 @@
|
|||
################################################################
|
||||
Greylite has been installed. Some steps are required for setting
|
||||
it up with qmail. greylite(8) has a synthesis and the website at
|
||||
http://mij.oltrelinux.com/net/greylite/ has more information.
|
||||
You might be also interested in further refinements to improve
|
||||
the effectiveness and performance of greylite:
|
||||
http://mij.oltrelinux.com/net/greylite/practmatters.html
|
||||
################################################################
|
Loading…
Reference in a new issue