Add courierpasswd, a user authentication and password changing utility
for the courier imap/pop3 system.
This commit is contained in:
parent
bff402ca10
commit
a07f614337
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=140212
5 changed files with 56 additions and 0 deletions
|
@ -57,6 +57,7 @@
|
|||
SUBDIR += cmd5checkpw
|
||||
SUBDIR += courier-authlib
|
||||
SUBDIR += courier-authlib-base
|
||||
SUBDIR += courierpassd
|
||||
SUBDIR += cops
|
||||
SUBDIR += cp2fwb
|
||||
SUBDIR += crack
|
||||
|
|
36
security/courierpassd/Makefile
Normal file
36
security/courierpassd/Makefile
Normal file
|
@ -0,0 +1,36 @@
|
|||
# New ports collection makefile for: courierpassd
|
||||
# Date created: 26th July 2005
|
||||
# Whom: Ade Lovett <ade@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= courierpassd
|
||||
PORTVERSION= 1.1.0.r1
|
||||
CATEGORIES= security mail
|
||||
MASTER_SITES= http://www.arda.homeunix.net/store/
|
||||
DISTNAME= courierpassd-1.1.0-RC1
|
||||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
COMMENT= User authentication and password changing daemon utility
|
||||
|
||||
BUILD_DEPENDS= courierauthconfig:${PORTSDIR}/security/courier-authlib-base
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
WRKSRC= ${WRKDIR}/courierpassd-1.1.0-RC1
|
||||
|
||||
USE_REINPLACE= YES
|
||||
GNU_CONFIGURE= YES
|
||||
USE_GMAKE= YES
|
||||
USE_GETTEXT= YES
|
||||
USE_INC_LIBTOOL_VER= 15
|
||||
CPPFLAGS+= -I${LOCALBASE}/include
|
||||
LDFLAGS+= -L${LOCALBASE}/lib -lintl
|
||||
CONFIGURE_ENV= CPPFLAGS='${CPPFLAGS}' LDFLAGS='${LDFLAGS}'
|
||||
|
||||
PLIST_FILES= sbin/courierpassd
|
||||
MAN8= courierpassd.8
|
||||
|
||||
post-install:
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
2
security/courierpassd/distinfo
Normal file
2
security/courierpassd/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (courierpassd-1.1.0-RC1.tar.gz) = 40d6db8cbe3be0ae0669522aabdfed08
|
||||
SIZE (courierpassd-1.1.0-RC1.tar.gz) = 289985
|
6
security/courierpassd/pkg-descr
Normal file
6
security/courierpassd/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
courierpasswd is a user authentication and password changing utility
|
||||
for the courier imap/pop3 system.
|
||||
|
||||
Its interface follows that of checkpassword.
|
||||
|
||||
WWW: http://www.arda.homeunix.net/store/
|
11
security/courierpassd/pkg-message
Normal file
11
security/courierpassd/pkg-message
Normal file
|
@ -0,0 +1,11 @@
|
|||
In order to run this port, please add the following line to
|
||||
/etc/inetd.conf if not already there:
|
||||
|
||||
pop3pw stream tcp nowait root /usr/local/sbin/courierpassd courierpassd -s imap
|
||||
|
||||
"imap" can be replaced with the service you wish to authenticate (and change)
|
||||
passwords against, eg: "pop3".
|
||||
|
||||
After modifying /etc/inetd.conf, you must (as root) run:
|
||||
|
||||
killall -HUP inetd
|
Loading…
Reference in a new issue