Displaying 2 results from an estimated 2 matches for "client_send_mailbox_flags".
2005 Nov 18
1
How to disable keywords?
Hi,
is there a quick way to disable keyword feature in dovecot?
Thanks, Sebastjan
2010 May 20
1
Permanent flags not announced and public mailbox with per-user index
...ted next UID
* OK [HIGHESTMODSEQ 1] Highest
3445 OK [READ-ONLY] Select completed.
I think (reading the RFC, but I bet you know it better than me) that
FLAGS should also been set in PERMANENTFLAGS since they can be
permanent.
The relevant code seems to be in commands-util.c (dovecot 1.2.11):
void client_send_mailbox_flags(struct client *client, bool selecting)
{
[?]
if (mailbox_is_readonly(client->mailbox)) {
client_send_line(client, "* OK [PERMANENTFLAGS ()] "
"Read-only mailbox.");
} else {
[?]
}
}
Even if it's true that the Maildir is read-only, it's sti...