Cyrus IMAPd 2.2.13 Released

Tuan Van tvan at santafefixtures.com
Fri Mar 31 19:11:42 EST 2006


Ken Murchison wrote:
> I am pleased to announce the release of Cyrus IMAPd 2.2.13.  This is 
> possibly the last release of the 2.2 series.  The 2.2 code is now in 
> maintenance mode only, and all new development is taking place on the 
> 2.3 code.
>
> Noteworthy additions in this release are support for running Sieve 
> scripts on shared mailboxes, and the ability to use the BDB Hash access 
> method (as opposed to BTree), which seems to perform better under high load.
>
> For full details, please see doc/changes.html and
> doc/install-upgrade.html which are included in the distribution.
>
> URLs for this release:
> ftp://ftp.andrew.cmu.edu/pub/cyrus/cyrus-imapd-2.2.13.tar.gz
> or
> http://ftp.andrew.cmu.edu/pub/cyrus/cyrus-imapd-2.2.13.tar.gz
>
> Questions and comments can be directed to
> info-cyrus at lists.andrew.cmu.edu (public list), or cyrus-bugs at andrew.cmu.edu.
>
>   
Hi Ken,

There is some minor thing with the new configure.in (also in 2.3
series). In Gentoo, to build cyrus-imapd with or without afs support, we
configure it --with-afs or without-afs. With the new configure.in, it
will set $withval=yes and pass it to AFS_LIBS. Below is the patch to fix
this problem.

--- configure.in.orig   2006-03-31 15:09:06.000000000 -0800
+++ configure.in        2006-03-31 15:08:16.000000000 -0800
@@ -466,8 +466,12 @@
          AC_DEFINE(AFSPTS_USE_KRB5,[],[Should the AFS PTS plugin use
krb5?])])

 if test "x$with_afs" != "xno"; then
-    if test ! -d $with_afs; then
-        $with_afs=/usr/local
+    if test "x$with_afs" != "xyes"; then
+        if test ! -d $with_afs; then
+            with_afs=/usr/local
+        fi
+    else
+        with_afs=/usr
     fi
     CFLAGS="${CFLAGS} -I${with_afs}/include"
     AFS_LIBS="${with_afs}/lib/afs/libkauth.a
${with_afs}/lib/afs/libprot.a  ${with_afs}/lib/afs/libauth.a
${with_afs}/lib/afs/libsys.a ${with_afs}/lib/librxkad.a
${with_afs}/lib/librx.a ${with_afs}/lib/afs/libsys.a
${with_afs}/lib/libubik.a  ${with_afs}/lib/liblwp.a
${with_afs}/lib/afs/util.a"

and below is the patch for contrib/drac_auth.patch so it can apply cleanly.

--- contrib/drac_auth.patch.orig        2006-03-31 15:12:05.000000000 -0800
+++ contrib/drac_auth.patch     2006-03-31 15:14:20.000000000 -0800
@@ -373,6 +373,6 @@
 +{ "drachost", "localhost", STRING }
 +/* Hostname of the RPC dracd server. */
 +
- { "duplicate_db", "berkeley-nosync", STRINGLIST("berkeley",
"berkeley-nosync", "skiplist")}
+ { "duplicate_db", "berkeley-nosync", STRINGLIST("berkeley",
"berkeley-nosync", "berkeley-hash", "berkeley-hash-nosync", "skiplist")}
  /* The cyrusdb backend to use for the duplicate delivery suppression
     and sieve. */

Best regards,
Tuan Van


More information about the Info-cyrus mailing list