diff options
author | ghen <ghen@pkgsrc.org> | 2006-02-06 15:54:37 +0000 |
---|---|---|
committer | ghen <ghen@pkgsrc.org> | 2006-02-06 15:54:37 +0000 |
commit | 0b7a2ecb2bc3ff15043a994e37cb9b420d38c89c (patch) | |
tree | 92b42eea19fa6a5e31edb8444aed8db7c4cf5546 /mail/dovecot/Makefile | |
parent | 7a9aac73296bc2411be3b69083c7c540574459c7 (diff) | |
download | pkgsrc-0b7a2ecb2bc3ff15043a994e37cb9b420d38c89c.tar.gz |
- Update mail/dovecot to 1.0beta2. The 1.0 betas are very stable, and
recommended by the Dovecot author (the 0.99.x series are deprecated).
Major changes:
v1.0.beta2 2006-01-22 Timo Sirainen <tss@iki.fi>
+ Added SQLite support. Patch by Jakob Hirsch.
+ Added auth_debug_passwords setting. If it's not enabled, hide all
password strings from logs.
+ Added mail_cache_min_mail_count and mbox_min_index_size settings
which can be used to make Dovecot do less disk writes in small
mailboxes where they don't benefit that much.
+ Added --build-ssl-parameters parameter to dovecot binary
- SSL parameters were being regenerated every 10 minutes, although not
with all systems.
- Fixed dovecot-auth crashing at startup. Happened only with some
specific compilers.
- base_dir was supposed to be set world-readable, not world-writable
v1.0.beta1 2006-01-16 Timo Sirainen <tss@iki.fi>
* Almost a complete rewrite since 0.99.x, but some of the major
changes are:
+ Index file code rewritten to do less disk I/O, wait locks less and in
generate be smarter. They also support being in clustered filesystems
and NFS support is mostly working also.
+ Mail caching is smarter. Only the data that client requests is
cached. Before Dovecot opened and cached all mails when mailbox was
opened the first time, which was slow.
+ Mbox handling code rewritten to be much faster, safer and correct
+ New authentication mechanisms: APOP, GSSAPI, LOGIN, NTLM and RPA.
+ LDAP supports authentication binds
+ Authentication server can cache password database lookups
+ Support for multiple authentication databases
+ Namespace configuration
+ Dovecot works with shared
- Add an option for sqlite support.
- Take over maintainership.
All suggested (and ok'ed) by xtraeme.
Diffstat (limited to 'mail/dovecot/Makefile')
-rw-r--r-- | mail/dovecot/Makefile | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/mail/dovecot/Makefile b/mail/dovecot/Makefile index 13d7df554f1..7dc35e77acf 100644 --- a/mail/dovecot/Makefile +++ b/mail/dovecot/Makefile @@ -1,17 +1,16 @@ -# $NetBSD: Makefile,v 1.42 2006/01/19 02:31:12 joerg Exp $ +# $NetBSD: Makefile,v 1.43 2006/02/06 15:54:37 ghen Exp $ -DISTNAME= dovecot-0.99.14 -PKGREVISION= 2 +DISTNAME= dovecot-1.0.beta2 +PKGNAME= ${DISTNAME:S/.beta/b/} CATEGORIES= mail MASTER_SITES= http://www.dovecot.org/releases/ -MAINTAINER= xtraeme@NetBSD.org +MAINTAINER= ghen@NetBSD.org HOMEPAGE= http://www.dovecot.org/ COMMENT= Secure IMAP and POP3 server PKG_INSTALLATION_TYPES= overwrite pkgviews -WRKSRC= ${WRKDIR}/${DISTNAME:S/.1$//} USE_LIBTOOL= yes GNU_CONFIGURE= yes @@ -22,15 +21,15 @@ CONFIGURE_ARGS+= --with-ssldir=${SSLCERTS:Q} .include "../../mk/bsd.prefs.mk" .include "options.mk" -RCD_SCRIPTS= dovecot +RCD_SCRIPTS= dovecot -DOVECOT_USER?= dovecot -DOVECOT_GROUP?= dovecot -PKG_GROUPS= ${DOVECOT_GROUP} -PKG_USERS= ${DOVECOT_USER}:${DOVECOT_GROUP}::Dovecot\ IMAP/POP3\ user +DOVECOT_USER?= dovecot +DOVECOT_GROUP?= dovecot +PKG_GROUPS= ${DOVECOT_GROUP} +PKG_USERS= ${DOVECOT_USER}:${DOVECOT_GROUP}::Dovecot\ IMAP/POP3\ user -EGDIR= ${PREFIX}/share/examples/dovecot -CONF_FILES= ${EGDIR}/dovecot.conf.default ${PKG_SYSCONFDIR}/dovecot.conf +EGDIR= ${PREFIX}/share/examples/dovecot +CONF_FILES= ${EGDIR}/dovecot.conf.default ${PKG_SYSCONFDIR}/dovecot.conf INSTALLATION_DIRS= libexec/dovecot sbin share/doc/dovecot \ share/examples/dovecot |