Re: [Dovecot] maildirmake -q quota equivalent to set quota

2008-06-26 Thread Eric PEYREMORTE

nobody knows ? I just need a tool to set quota directly to the maildir.
Maybe could i use maildirmake from courier-imap ?

Please i need help :-)

Eric PEYREMORTE a écrit :

Hi,

I'm coming from courier-imap and i'm trying to migrate to dovecot.

I can't find how to create a maildir with a quota file(maildirsize)

I saw that if there was a maildirsize it would get its quota from 
there but can't find how to create that file.


I'm using pam auth and would like to set different quotas for each users.

With courier-imap there is a useful command : maildirmake -q 10S 
Maildir/ to assign a quota to a maildir. But i don't know how to do 
with dovecot...


Cheers,
Erc PEYREMORTE





Re: [Dovecot] maildirmake -q quota equivalent to set quota

2008-06-26 Thread Frank Elsner
On Thu, 26 Jun 2008 11:26:25 +0200 Eric PEYREMORTE wrote:
 nobody knows ? I just need a tool to set quota directly to the maildir.
 Maybe could i use maildirmake from courier-imap ?

I vote yes. You should try it.

My old maildirsize files work perfect after migration from couriet to dovecot.


--Frank Elsner







Re: [Dovecot] v1.1.1 released

2008-06-26 Thread Geoffroy Desvernay
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Timo Sirainen a écrit :
 http://dovecot.org/releases/1.1/dovecot-1.1.1.tar.gz
 http://dovecot.org/releases/1.1/dovecot-1.1.1.tar.gz.sig
 
 Hopefully this release lives a bit longer than v1.1.0.
 
   - Maildir: When migrating from v1.0 with old format dovecot-uidlist
 files, Dovecot may have appended lines to it using the new format and
 later broken with UID larger than next_uid error.
 
updated freebsd ports for dovecot, sieve plugin and managesieve here:

http://dgeo.perso.ec-marseille.fr/dovecot

Not very well tested, but 'it works for us'™

Thank you Timo !
- --
 ___
/*Geoffroy DESVERNAY*  |\
   /\`Service info`| Tel: (+33|0)4 91 05 45 24  /\
   \/  | Fax: (+33|0)4 91 05 45 98  \/
\ Ecole Centrale de Marseille  | Mail: dgeo ec-marseille.fr /
 ---

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkhjadMACgkQGbFYzwF8gKpi2ACfW0MiIX8ekUoWCmFOZBnZPAIl
QSgAniVblppvCgCwhdEN4SfACLPGu8q2
=+tzg
-END PGP SIGNATURE-


Re: [Dovecot] (no subject)

2008-06-26 Thread Timo Sirainen
On Wed, 2008-06-25 at 09:12 -0400, Bruce Bodger wrote:
 Timo,
 
 Running v1.1.1 on OS X.  What is dovecot trying to tell me here?
 
 Jun 24 15:03:50 G518X2 dovecot: IMAP(jjohnson): Sort IDs 4 broken in  
 mailbox INBOX, reseting

Bug, fixed: http://hg.dovecot.org/dovecot-1.1/rev/7c261c14fe7d

Anyway it's transparent to users, so not that big of a deal.



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


[Dovecot] Wiki: Fedora links

2008-06-26 Thread Kenneth Porter
Convenience link to add to the Fedora section at 
http://wiki.dovecot.org/PrebuiltBinaries:


http://mirrors.fedoraproject.org/publiclist/


Re: [Dovecot] Sort IDs broken

2008-06-26 Thread Bruce Bodger



On 6/26/08 2:35 PM, Timo Sirainen wrote:
  
Jun 24 15:03:50 G518X2 dovecot: IMAP(jjohnson): Sort IDs 4 broken in  
mailbox INBOX, reseting



Bug, fixed: http://hg.dovecot.org/dovecot-1.1/rev/7c261c14fe7d

Anyway it's transparent to users, so not that big of a deal.

  


Yes, of course... but we do know how you aim for perfection!  :-)

B. Bodger


[Dovecot] 1.1.1-1 gotcha with Fedora Rawhide package

2008-06-26 Thread Kenneth Porter
I just installed the Rawhide package on my CentOS 5 system. The one item 
that bit me is that the config file defaults to using interface [::] so 
it only listens on IPv6. (This is from a patch in the package that changes 
the upstream default of *, so it only affects those using the Fedora 
package.)


For those wanting to track the issue, here's the Bugzilla:

https://bugzilla.redhat.com/show_bug.cgi?id=453054

I rebuilt the package from the source RPM, to make sure it was tuned to 
the C5 distro.


I got the source RPM here, from the Portland State mirror:

http://mirrors.cat.pdx.edu/fedora/linux/development/source/SRPMS/dovecot-1.1.1-1.fc10.src.rpm

Here's a full list of Rawhide mirrors:

http://mirrors.fedoraproject.org/publiclist/Fedora/development/

If you'd like to see all Red Hat bugs associated with dovecot, here's a 
suitable query:


https://bugzilla.redhat.com/buglist.cgi?component=dovecot


Re: [Dovecot] Problem Compiling 1.1.1 on AIX

2008-06-26 Thread Jackie Hunt
 Can you somehow enable C99 support for xlc? Is there something like a
 -c99 parameter?

Thank Timo, Woosan and Asheesh for your help.  I did see a parameter for
xlc (-qlanglvl=extc99), but our compiler is too old, and it doesn't recognize
it.  I then tried gcc, we had version 4.0.0 installed, and it does compile.
I did have to do the changes Woonsan recommended (below).  

 In my case, I succeeded in making it after modification of two 
 generated sources:

 (1) src/plugins/quota/rquota.h
 I added `#include rpc/rpc.h' on the top.
 (2) src/plugins/quota/rquota_xdr.c
 I modified it like the following:
   #include /usr/include/rpcsvc/rquota.h
   ==
   #include rquota.h

My compiliation method wasn't very elegant.  I did the make, saw an error, 
and rquota.h was created.  I edited rquota.h as shown above.  I ran make 
a second time which errored, but generated rquota_xdr.c.  I edited 
rquota_xdr.c, and the third make succeeded.  Is there a cleaner method 
to use?

Thanks again, it's very comforting to know I can compile it!

Jackie
---
Jackie Hunt   
ACNS 
Colorado State University   
Fort Collins, CO  80523


[Dovecot] can't download attachment from the wiki

2008-06-26 Thread Andrew Schulman
Hi.  At http://wiki.dovecot.org/ManageSieve#line-229 , I want to download
the patch that's supposed to fix two problems in Avelsieve.  Unfortunately,
when I click on the link to the patch, I always get an error message:

You are not allowed to do AttachFile on this page.

Annoying.  I've created an account and logged in, but still no joy.  Can
anyone suggest how or where else I can get that patch?

Thanks,
Andrew.



Re: [Dovecot] 1.1.1-1 gotcha with Fedora Rawhide package

2008-06-26 Thread Dan Horák

Kenneth Porter píše v Čt 26. 06. 2008 v 16:24 -0700:
 I just installed the Rawhide package on my CentOS 5 system. The one item 
 that bit me is that the config file defaults to using interface [::] so 
 it only listens on IPv6. (This is from a patch in the package that changes 
 the upstream default of *, so it only affects those using the Fedora 
 package.)
 
 For those wanting to track the issue, here's the Bugzilla:
 
 https://bugzilla.redhat.com/show_bug.cgi?id=453054

The default listen setting is consistent with this setting in the
1.0.x series in F-9 and earlier. It used the [::] listens in on all
IPv6 intefaces, but may also listen on all IPV4 interfaces depending on
the OS clause. So now I need to check what has changed, whether the
listen code in dovecot 1.1 (vs, the 1.0.x) or newer glibc is the cause
or ...


Dan

-- 
Fedora and Red Hat package maintainer