ea2c951809
0.3.1 ! Using --enable-extra-dividers without any parameters now yields the same result as leaving it out. (Patch by: "Oleg. O. Orlov" <OOO@vmts.ru>) + Support for Maildirs outside of a users home directory. (Suggested by: David S. Greenley <david@webedited.com> + Logs when a successful login is made. (Patch by: Fabio Muzzi <kurgan@interim.it> - In some environments the logging would have the wrong timezone on timestamps. - Maildir messages with a certain filename length could get parse incorrectly in some environments. (Patch by: David S. Greenley <david@webedited.com> ! Teapop will now drop privs AFTER running all user provided POP-before-SMTP controls. - Maildir could leave .lock files under some circumstances. (Based on ideas from: Ivan F. Martinez <ivanfm@os2brasil.com.br> ! The switch --enable-flock has been deprecated for the more flexible --enable-lock (which can be set to either flock or dotlock.) The default is now flock. o set USE_BUILDLINK_ONLY
28 lines
638 B
Makefile
28 lines
638 B
Makefile
# $NetBSD: Makefile,v 1.3 2001/06/30 21:21:51 zuntum Exp $
|
|
|
|
DISTNAME= teapop-0.3.1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ftp://ftp.toontown.org/pub/teapop/ \
|
|
http://www.toontown.org/pub/teapop/
|
|
|
|
MAINTAINER= zuntum@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"
|