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
> 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
>
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
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
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.
> 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