Re: IMAP quota reporting free disk space

2024-11-06 Thread dovecot--- via dovecot
Gmail advertises QUOTA as an CAPABILITY upon connection before login. Dovecot advertises QUOTA as an CAPABILITY only after login. GPT believes this is why Tbird doesn't show the quota on the status bar, because it's looking for the quota before login and not after. Does anyone know if its possi

Re: Expunging and deleting old messages - moving from cyrus-imap

2024-11-06 Thread Aki Tuomi via dovecot
> On 06/11/2024 14:51 EET Nick Howitt via dovecot wrote: > > > I have just moved from cyrus-imap to dovecot. In cyrus I had an > automatic purge of messages marked as deleted with a cron job: > > /usr/lib/cyrus-imapd/cyr_expire -E 1 -X 7 -D 7 > > -E = Expire Days > -X = Expunge days >

Expunging and deleting old messages - moving from cyrus-imap

2024-11-06 Thread Nick Howitt via dovecot
I have just moved from cyrus-imap to dovecot. In cyrus I had an automatic purge of messages marked as deleted with a cron job: /usr/lib/cyrus-imapd/cyr_expire -E 1 -X 7 -D 7 -E = Expire Days -X = Expunge days What is the equivalent in doveadm? doveadm expunge -A DELETED BEFORE 1w Is th

Re: Expunging and deleting old messages - moving from cyrus-imap

2024-11-06 Thread Nick Howitt via dovecot
On 06/11/2024 13:43, Aki Tuomi via dovecot wrote: On 06/11/2024 14:51 EET Nick Howitt via dovecot wrote: I have just moved from cyrus-imap to dovecot. In cyrus I had an automatic purge of messages marked as deleted with a cron job: /usr/lib/cyrus-imapd/cyr_expire -E 1 -X 7 -D 7 -E

Re: IMAP quota reporting free disk space

2024-11-06 Thread dovecot--- via dovecot
Try moving the quota outside of the protocol block.   mail_plugins = quota ...   protocol imap {     mail_plugins = $mail_plugins imap_quota     ...   } Try adding a text label for the client to use.   plugin {     quota = maildir:Quota Limit     ...   } There is a progress, but not complete.

Re: Expunging and deleting old messages - moving from cyrus-imap

2024-11-06 Thread Joseph Tam via dovecot
> What is the equivalent in doveadm? > > doveadm expunge -A DELETED BEFORE 1w > > Is there any equivalent to expire messages marked as deleted? I can't > remember why I have it as I set up Cyrus so long ago. If by expire, you mean expunge, this is more or less what I used in a nightly cron scr