Displaying 1 result from an estimated 1 matches for "maildirsize_get_path".
2006 Nov 08
1
Quota without dovecot LDA
...cot/control/%h
If CONTROL env is set the maildirsize file is stored
in /var/cache/dovecot/control/ but I use vpopmail as LDA.
It's possible to add a setting in dovecot.conf to specify if dovecot LDA is
active??
This is my pseudo-patch:
src/plugins/quota/quota-maildir.c
static const char *maildirsize_get_path(struct mail_storage *storage)
{
if (lda_enable) {
return t_strconcat(mail_storage_get_mailbox_control_dir(storage, ""),
}
else {
bool is_file;
return t_strconcat(mail_storage_get_mailbox_path(storage, "", &is_file),
"/"...