Hello community, here is the log from the commit of package courier-imap for openSUSE:Factory checked in at 2015-08-05 19:14:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/courier-imap (Old) and /work/SRC/openSUSE:Factory/.courier-imap.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "courier-imap" Changes: -------- --- /work/SRC/openSUSE:Factory/courier-imap/courier-imap.changes 2014-09-26 11:21:47.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.courier-imap.new/courier-imap.changes 2015-08-05 19:14:32.000000000 +0200 @@ -1,0 +2,43 @@ +Wed Aug 5 01:45:26 UTC 2015 - [email protected] + +- update to 4.16.2 + * imap/mailboxlist.c (match_mailbox_prep): Use strncmp instead of + memcmp, to pacify overzealous static analysis checkers. + * Drop SSLv3 from TLS_CIPHER_LIST. + * imap, pop3: Added AUTH_MKHOMEDIR_SKEL setting. +- update to 4.16.1 + * maildircache.c: fix use after free. + * mkdhparams: make compatible with libressl + * Handle 01-Jan-1970 for date-based searches. + * Update to courier-unicode 1.2. + * Add the makeimapaccess script. +- add Patch courier-imap-Makefile.patch + +------------------------------------------------------------------- +Wed Oct 29 22:05:29 UTC 2014 - [email protected] + +- update to 4.15.1.20141122 + * tcpd/libcouriertls.c: add parsing options for different protocol + combination. + * Update comments in *ssl config files. + * libs/tcpd/libcouriertls.c (tls_create): Set SSL_OP_NOSSLv3 flag, + to disable SSL3 support. + * mkdhparams: TLS_DHPARAMS environmnt variable overrides default + DH parameter file location. + * courier-imap.spec.in: generate the default DH parameter file and + package it into the rpm, instead of generating one on the first + start. + * libs/maildir/maildirinfo.c (maildir_info_imapmunge): Fix + UTF-8 charset name. + * tcpd/libcouriertls.c (tls_create): Initialize temporary ecdh + parameters. + * imap: try to print a message on stderr if the alarm() call, that + detects FAM library breakage, goes off. + * mkdhparams: default to 2048 DH params for OpenSSL. + * courier-imap.service: bump up startup timeout, initial service start + may take several minutes to generate DH parameters for the first + time. +- add new dependency + * courier-unicode-devel (libunicode) + +------------------------------------------------------------------- Old: ---- courier-imap-4.15.tar.bz2 courier-imap-4.15.tar.bz2.sig New: ---- courier-imap-4.16.2.tar.bz2 courier-imap-4.16.2.tar.bz2.sig courier-imap-Makefile.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ courier-imap.spec ++++++ --- /var/tmp/diff_new_pack.L51Jh0/_old 2015-08-05 19:14:33.000000000 +0200 +++ /var/tmp/diff_new_pack.L51Jh0/_new 2015-08-05 19:14:33.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package courier-imap # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,7 +20,7 @@ Summary: An IMAP and POP3 Server for Maildir MTAs License: GPL-3.0+ Group: Productivity/Networking/Email/Servers -Version: 4.15 +Version: 4.16.2 Release: 0 Url: http://www.courier-mta.org/imap/ Source0: %{name}-%{version}.tar.bz2 @@ -41,11 +41,15 @@ Source20: courier-pop-gencert.service Patch0: %{name}-sbindir.patch Patch2: %{name}-ulimit_conf.patch +### Patch for upstream: +## fixes typo in Makefile.am +Patch3: %{name}-Makefile.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %if 0%{?suse_version} > 910 BuildRequires: audit-libs %endif BuildRequires: courier-authlib-devel >= 0.62 +BuildRequires: courier-unicode-devel BuildRequires: db-devel %if 0%{?suse_version} >= 1220 BuildRequires: gamin-devel @@ -63,7 +67,7 @@ # openssl itself for /usr/bin/openssl configure check BuildRequires: openssl Conflicts: imap qpopper cyrus-imapd -Requires: courier-authlib >= 0.61 +Requires: courier-authlib >= 0.62 Requires: fam-server Requires: gdbm Requires: openssl @@ -106,6 +110,7 @@ %setup -n %{name}-%{version} %patch0 %patch2 +%patch3 %build %configure \ @@ -246,7 +251,10 @@ %config %attr(644,root,root) /etc/pam.d/imap %config %attr(644,root,root) /etc/pam.d/pop3 %dir %{_sysconfdir}/courier -%config %attr(600,root,root) %{_sysconfdir}/courier/imap* +%dir %{_sysconfdir}/courier/imapaccess +%dir %{_sysconfdir}/courier/shared +%dir %{_sysconfdir}/courier/shared.tmp +%config %attr(600,root,root) %{_sysconfdir}/courier/imapd* %config %attr(600,root,root) %{_sysconfdir}/courier/pop3* %config %{_sysconfdir}/courier/quotawarnmsg.example %dir %{_sysconfdir}/SuSEfirewall2.d ++++++ courier-imap-4.15.tar.bz2 -> courier-imap-4.16.2.tar.bz2 ++++++ ++++ 81516 lines of diff (skipped) ++++++ courier-imap-Makefile.patch ++++++ Index: Makefile.am =================================================================== --- Makefile.am.orig +++ Makefile.am @@ -160,7 +160,7 @@ install-exec-hook: mkdir -p $(DESTDIR)$(sysconfdir)/shared.tmp chmod 755 $(DESTDIR)$(sysconfdir)/shared.tmp mkdir -p $(DESTDIR)$(sysconfdir)/imapaccess - chmod 755 $(DESTDIR)$(sysconfdir)/shared.tmp + chmod 755 $(DESTDIR)$(sysconfdir)/imapaccess install-data-local: install-man test -d $(DESTDIR)/etc/pam.d || exit 0 ; \ Index: Makefile.in =================================================================== --- Makefile.in.orig +++ Makefile.in @@ -1448,7 +1448,7 @@ install-exec-hook: mkdir -p $(DESTDIR)$(sysconfdir)/shared.tmp chmod 755 $(DESTDIR)$(sysconfdir)/shared.tmp mkdir -p $(DESTDIR)$(sysconfdir)/imapaccess - chmod 755 $(DESTDIR)$(sysconfdir)/shared.tmp + chmod 755 $(DESTDIR)$(sysconfdir)/imapaccess install-data-local: install-man test -d $(DESTDIR)/etc/pam.d || exit 0 ; \
