http://dovecot.org/releases/1.1/alpha/dovecot-1.1.alpha6.tar.gz http://dovecot.org/releases/1.1/alpha/dovecot-1.1.alpha6.tar.gz.sig Most importantly doesn't crash anymore if both pop3 and imap aren't used. :) I'm hoping people won't find anything too bad from this release anymore, so I'll release v1.1.beta1 in a week or so. I also finally did some larger API changes and code cleanups that I had been planning on doing for a long time. I also changed copyright notices in the code to: /* Copyright (c) xxxx-2007 Dovecot authors, see the included COPYING file */ So my name isn't there anymore. It wasn't always correct anyway. I'm planning on updating the -2007 year at the beginning of each year to all the files. It's annoying to try to keep it updated manually. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: <http://dovecot.org/pipermail/dovecot/attachments/20070916/0590653f/attachment-0002.bin>
On Sun, Sep 16, 2007 at 03:07:02PM +0300, Timo Sirainen wrote:> http://dovecot.org/releases/1.1/alpha/dovecot-1.1.alpha6.tar.gz > http://dovecot.org/releases/1.1/alpha/dovecot-1.1.alpha6.tar.gz.sigThere are a few problems building this on NetBSD: - src/master: master-settings.c requires <sys/resource.h>, see the attached patch. - src/plugin/quota: *BSD rpcgen doesn't copy rquota.h when called with -c. The Makefile should either: cp the file as part of the rquota_xdr.c Makefile target, or change #include "rquota.h" to #include <rpcsvc/rquota.h> with sed. - apparantly the rquota_xdr.c target is not called automatically. - doc/wiki/Makefile: BSD make is confused by the brackets in wiki_DATA, Migration.Vm(2d)pop3d.txt on line 547: "make: don't know how to make 2d." GNU make has no problem with this. Either the pkgsrc package should be configured to use GNU make instead, or the file should be renamed. Seems to build and run fine, otherwise. Geert -------------- next part -------------- $NetBSD$ --- src/master/master-settings.c.orig 2007-09-16 17:18:22.000000000 +0200 +++ src/master/master-settings.c @@ -24,6 +24,10 @@ #include <pwd.h> #include <grp.h> +#ifdef HAVE_SYS_RESOURCE_H +# include <sys/resource.h> +#endif + enum settings_type { SETTINGS_TYPE_ROOT, SETTINGS_TYPE_SERVER,
On Sun, Sep 16, 2007 at 03:07:02PM +0300, Timo Sirainen wrote:> http://dovecot.org/releases/1.1/alpha/dovecot-1.1.alpha6.tar.gz > http://dovecot.org/releases/1.1/alpha/dovecot-1.1.alpha6.tar.gz.sig > > Most importantly doesn't crash anymore if both pop3 and imap aren't > used. :) I'm hoping people won't find anything too bad from this release > anymore, so I'll release v1.1.beta1 in a week or so.In dovecot 1.1.x, ~ is apparantly not always expanded to the homedir anymore. I used to have this in my 1.0 configuration file: mail_location = mbox:~/mail:INBOX=~/mbox The first ~ works (I can browse folders) but the second doesn't (dovecot can't find my INBOX. Changing ~ to %h makes it work again. Was this intended? Geert
On Mon, Sep 17, 2007 at 03:58:03PM +0300, Timo Sirainen wrote:> On Mon, Sep 17, 2007 at 02:00:54PM +0200, Geert Hendrickx wrote: > > > I guess this'll do it: http://hg.dovecot.org/dovecot/rev/92bce6a3fdad > > > > (without testing) No, the filename is wrong. The generated rquota_xdr.c > > has #include "rquota.h". > > Oh, right. :) http://hg.dovecot.org/dovecot/rev/2ab3cb6af745Seems like dovecot nightly 20070918 fixed the problems I reported except: - I still need to run make rquota_xdr.c manually, but only the first time. If I rm rquota_xdr.c and rquota.h and run make again, the are generated. - doc/wiki now contains a lot more files with brackets in their names. (2f) But these nightly snapshots are from the 2.0 development branch, not 1.1, right? Could you please send me an 1.1 alpha snapshot (or release another alpha) to test? Thanks, Geert