mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
dc2053998b
1. Security (to the extent that is possible with POP3 at all, of course). 2. Reliability (again, as limited by the mailbox format and the protocol). 3. RFC compliance (slightly relaxed to work with real-world POP3 clients). 4. Performance (limited by the more important goals, above). PR: 16652 Submitted by: Sergey Samoyloff <techline@hotmail.ru>
48 lines
1.4 KiB
Makefile
48 lines
1.4 KiB
Makefile
# New ports collection makefile for: popa3d
|
|
# Version required: 0.4
|
|
# Date created: Sun Feb 6 12:31:29 MSK 2000
|
|
# Whom: Sergey Samoyloff <gonza@techline.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= popa3d-0.4
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ftp://ftp.false.com/pub/security/popa3d/
|
|
|
|
MAINTAINER= gonza@techline.ru
|
|
|
|
post-install:
|
|
|
|
@ ${ECHO} "==========================================================================="
|
|
@ ${ECHO} "1. Edit your /etc/inetd.conf to use popa3d. The line should look like this:"
|
|
@ ${ECHO} ""
|
|
@ ${ECHO} "pop3 stream tcp nowait root /usr/local/libexec/popa3d popa3d"
|
|
@ ${ECHO} ""
|
|
@ ${ECHO} "Note: when started via an inetd clone, the logging of connections is left"
|
|
@ ${ECHO} "up to that inetd clone or TCP wrappers."
|
|
@ ${ECHO} ""
|
|
@ ${ECHO} "2. Restart inetd by sending it a SIGHUP:"
|
|
@ ${ECHO} ""
|
|
@ ${ECHO} "# killall -HUP inetd"
|
|
@ ${ECHO} "==========================================================================="
|
|
|
|
do-install:
|
|
${INSTALL} ${COPY} -o root -g wheel -m 500 \
|
|
${WRKSRC}/popa3d ${PREFIX}/libexec/popa3d
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/popa3d
|
|
${INSTALL_MAN} ${WRKSRC}/INSTALL \
|
|
${PREFIX}/share/doc/popa3d
|
|
${INSTALL_MAN} ${WRKSRC}/DESIGN \
|
|
${PREFIX}/share/doc/popa3d
|
|
${INSTALL_MAN} ${WRKSRC}/COPYING \
|
|
${PREFIX}/share/doc/popa3d
|
|
.endif
|
|
|
|
pre-install:
|
|
${SH} ${PKGDIR}/INSTALL ${PKGNAME} PRE-INSTALL
|
|
|
|
.include <bsd.port.mk>
|