d1d2ed584d
* dovecot.list.index.log rotation sizes/times were changed so that the .log file stays smaller and .log.2 is deleted sooner. + Added mail_crypt plugin that allows encryption of stored emails. See http://wiki2.dovecot.org/Plugins/MailCrypt + stats: Global stats can be sent to Carbon server by setting stats_carbon_server=ip:port + imap/pop3 proxy: If passdb returns proxy_not_trusted, don't send ID/XCLIENT + Added generic hash modifier for %variables: %{<hash algorithm>;rounds=<n>,truncate=<bits>,salt=s>:field} Hash algorithm is any of the supported ones, e.g. md5, sha1, sha256. Also "pkcs5" is supported using SHA256. For example: %{sha256:user} or %{md5;truncate=32:user}. + Added support for SHA3-256 and SHA3-512 hashes. + config: Support DNS wildcards in local_name, e.g. local_name *.example.com { .. } matches anything.example.com, but not multiple.anything.example.com. + config: Support multiple names in local_name, e.g. local_name "1.example.com 2.example.com" { .. } - Fixed crash in auth process when auth-policy was configured and authentication was aborted/failed without a username set. - director: If two users had different tags but the same hash, the users may have been redirected to the wrong tag's hosts. - Index files may have been thought incorrectly lost, causing "Missing middle file seq=.." to be logged and index rebuild. This happened more easily with IMAP hibernation enabled. - Various fixes to restoring state correctly in un-hibernation. - dovecot.index files were commonly 4 bytes per email too large. This is because 3 bytes per email were being wasted that could have been used for IMAP keywords. - Various fixes to handle dovecot.list.index corruption better. - lib-fts: Fixed assert-crash in address tokenizer with specific input. - Fixed assert-crash in HTML to text parsing with specific input (e.g. for FTS indexing or snippet generation) - doveadm sync -1: Fixed handling mailbox GUID conflicts. - sdbox, mdbox: Perform full index rebuild if corruption is detected inside lib-index, which runs index fsck. - quota: Don't skip quota checks when moving mails between different quota roots. - search: Multiple sequence sets or UID sets in search parameters weren't handled correctly. They were incorrectly merged together.
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
# $NetBSD: Makefile.common,v 1.4 2016/12/14 15:48:09 adam Exp $
|
|
#
|
|
# when updating to a new release, update ABI depends in
|
|
# the buildlink3.mk file as well, since the plugins' version
|
|
# must match (see PR 49563).
|
|
#
|
|
# used by mail/dovecot2/Makefile
|
|
# used by mail/dovecot2/Makefile.plugin
|
|
# used by mail/dovecot2-mysql/Makefile
|
|
# used by mail/dovecot2-pgsql/Makefile
|
|
|
|
DISTNAME= dovecot-2.2.27
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.dovecot.org/releases/${PKGVERSION_NOREV:R}/
|
|
|
|
MAINTAINER= adam@NetBSD.org
|
|
HOMEPAGE= http://www.dovecot.org/
|
|
COMMENT= Secure IMAP and POP3 server
|
|
LICENSE= mit AND gnu-lgpl-v2.1 AND modified-bsd
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../mail/dovecot2/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../mail/dovecot2/patches
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake pkg-config rpcgen
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CONFIGURE_ARGS+= --localstatedir=${VARBASE}
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|
|
CONFIGURE_ARGS+= --with-ssldir=${SSLDIR}
|
|
CONFIGURE_ARGS+= --without-gssapi
|
|
CONFIGURE_ARGS+= --without-ldap
|
|
|
|
# Enable generic SQL backend support
|
|
CONFIGURE_ARGS+= --with-sql
|
|
|
|
TEST_TARGET= check
|
|
|
|
# Explicitly disable inotify on illumos, it is provided for Linux compat only.
|
|
CONFIGURE_ENV.SunOS+= ac_cv_func_inotify_init=no
|
|
|
|
# Sharing sources between binary and lib triggers libtool bugs
|
|
# mv: rename .deps/auth-stats.Tpo to .deps/auth-stats.Po: No such file or directory
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
.include "../../archivers/lz4/buildlink3.mk"
|
|
.include "../../archivers/xz/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|