bfb9b03a3f
this software Changes: 0.3.2 - A chdir-call got replaced with a chroot()-call which could cause problems trying to open mailboxes. + Support for removing stale dotlock-files. + Support for fcntl()-locking. (Based on patch from: Nick Phillips <nwp@lemon-computing.com>) ! Improved socket cleanup when exiting in standalone mode. (Patch by: Ross West) - Removed extra newline at end of UIDL when using existing UIDLs from message. (Patch by: Ross West) + Support for using more then one locking type. (Based on idea from: Nick Phillips <nwp@lemon-computing.com>) - An off-by-one error would cause Teapop to put a control character in the wrong place for lines longer then 1023 characters in a mailbox. (Problem reported by: Leon Harris <leon@quoll.com>) - If the mailbox didn't contain a linefeed at the last line, it could get lost. (Problem reported by: Den Ivanov <div@primpogoda.ru>) + Support for lockf()-locking. + Added a flock() wrapper for lockf() for system missing a native flock(). ! A bit more sane default flags for MySQL-authentication. (Based on patch from: Ross West)
28 lines
640 B
Makefile
28 lines
640 B
Makefile
# $NetBSD: Makefile,v 1.4 2001/08/31 21:27:49 zuntum Exp $
|
|
|
|
DISTNAME= teapop-0.3.2
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ftp://ftp.toontown.org/pub/teapop/ \
|
|
http://www.toontown.org/pub/teapop/
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www.toontown.org/teapop/
|
|
COMMENT= Yet another RFC1939 compliant POP3 server
|
|
|
|
USE_BUILDLINK_ONLY= YES
|
|
GNU_CONFIGURE= YES
|
|
|
|
CONFIGURE_ARGS+= --enable-flock
|
|
CONFIGURE_ARGS+= --sysconfdir=/etc
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if defined(TEAPOP_WITHOUT_APOP)
|
|
CONFIGURE_ARGS+=--disable-apop
|
|
.endif
|
|
|
|
.if defined(TEAPOP_WITHOUT_VPOP)
|
|
CONFIGURE_ARGS+=--disable-vpop
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|