Re: Cyrus IMAPd 2.3.11 Released

2007-12-11 Thread Oliver Falk
Successfully updated my site (including autocreate stuff from email.uoa.gr).

Best,
 Oliver

On 12/10/2007 06:20 PM, Ken Murchison wrote:
 I am pleased to announce the release of Cyrus IMAPd 2.3.11.  This
 release should be considered production quality.
 
 
 Noteworthy changes:
 
  * Fixed several skiplist bugs -- courtesy of Fastmail.fm.
  * Add robustness to skiplist recovery -- courtesy of Fastmail.fm.
  * Added support for modification sequences to replication protocol
(for CONDSTORE) -- courtesy of David Carter.
  * Fixed delayed delete replication -- courtesy of Fastmail.fm.
  * Allow [un]deleting of user INBOXes (renaming to/from deleted
hierarchy) to work when using delayed delete -- courtesy of Simon
Matter.
  * Prevented SSL_accept() from blocking indefinitely when using
TLS/SSL.
 
 
 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.3.11.tar.gz
 or
 http://ftp.andrew.cmu.edu/pub/cyrus/cyrus-imapd-2.3.11.tar.gz
 
 
 Questions and comments can be directed to
 info-cyrus@lists.andrew.cmu.edu (public list), or
 [EMAIL PROTECTED]
 


-- 
Oliver Falk
UNIX/Linux Systems Engineer
Mail: [EMAIL PROTECTED]
Phone: +43 (664) 838 59 25

Cyrus Home Page: http://cyrusimap.web.cmu.edu/
Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html


Re: Cyrus IMAPd 2.3.11 Released

2007-12-11 Thread Thomas Hager
On Mon, 2007-12-10 at 12:20 -0500, Ken Murchison wrote:
 I am pleased to announce the release of Cyrus IMAPd 2.3.11.  This
 release should be considered production quality.
hi,

gcc 2.96 fails to build 2.3.11 because of a typo in imap/index.c.
see the attached patch for a fix.

apart from this small glitch 2.3.11 works fine on my redhat 7.3 :)

br,
tom.


-- 
Thomas Duke Hager   [EMAIL PROTECTED]
GPG: 1024D/D27F858Chttp://www.sigsegv.at/gpg/duke.gpg
=
Never Underestimate the Power of Stupid People in Large Groups.

diff -u -r cyrus-imapd-2.3.11/imap/index.c cyrus-imapd-2.3.11.hack/imap/index.c
--- cyrus-imapd-2.3.11/imap/index.c	Fri Oct 26 17:31:40 2007
+++ cyrus-imapd-2.3.11.hack/imap/index.c	Tue Dec 11 10:24:27 2007
@@ -2578,7 +2578,7 @@
 unsigned long msg_size = 0;
 const char *cacheitem;
 int fetchmime = 0;
-unsigned size, offset = 0, skip = 0;;
+unsigned size, offset = 0, skip = 0;
 int n, r = 0;
 
 if (outsize) *outsize = 0;


signature.asc
Description: This is a digitally signed message part

Cyrus Home Page: http://cyrusimap.web.cmu.edu/
Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html

Re: Cyrus IMAPd 2.3.11 Released

2007-12-11 Thread Simon Matter
 I am pleased to announce the release of Cyrus IMAPd 2.3.11.  This
 release should be considered production quality.

The patch below fixes a typo which prevents building on older GCC.

Simon

--- cyrus-imapd-2.3.11/imap/index.c.origFri Oct 26 17:31:40 2007
+++ cyrus-imapd-2.3.11/imap/index.c Tue Dec 11 11:20:27 2007
@@ -2578,7 +2578,7 @@
 unsigned long msg_size = 0;
 const char *cacheitem;
 int fetchmime = 0;
-unsigned size, offset = 0, skip = 0;;
+unsigned size, offset = 0, skip = 0;
 int n, r = 0;

 if (outsize) *outsize = 0;



Cyrus Home Page: http://cyrusimap.web.cmu.edu/
Cyrus Wiki/FAQ: http://cyrusimap.web.cmu.edu/twiki
List Archives/Info: http://asg.web.cmu.edu/cyrus/mailing-list.html