Displaying 4 results from an estimated 4 matches for "mailbox_get_nam".
Did you mean:
mailbox_get_name
2006 Oct 09
1
patch: mailboxcasecmp()
...static bool _mailbox_equals(struct mailbox *box1, struct mail_storage *storage2,
+ const char *name2, int ci)
{
struct mail_storage *storage1 = mailbox_get_storage(box1);
const char *name1;
@@ -338,13 +338,36 @@ bool mailbox_equals(struct mailbox *box1
return FALSE;
name1 = mailbox_get_name(box1);
- if (strcmp(name1, name2) == 0)
- return TRUE;
+ if (ci) {
+ if (strcasecmp(name1, name2) == 0)
+ return TRUE;
+ } else {
+ if (strcmp(name1, name2) == 0)
+ return TRUE;
+ }
return strcasecmp(name1, "INBOX") == 0 &&
strcasecmp(name2, "INBOX") == 0;...
2013 Aug 01
1
Antispam folder names
Is there anywhere a collection of folder names for the antispam_trash
and antispam_spam configuration?
Our problem is that in academia, you have a vast amount of different
clients, and some, like Microsoft, use language-specific folder names
*on the server*. So we're now collecting folder names to better handle
the rare cases.
Two more problems:
1. We needed to fix UTF-8 handling in the
2010 Oct 23
2
[stava@telcotec.se: [stava: antispam problem]]
Hi All,
I've built the dovecot-antispam-plugin from hg.dovecot.org and installed it.
I've turned on debugging with "mail_debug = yes" in dovecot.conf and restarted
dovecot. However, the antispam plugin module gets loaded by dovecot, but then
nothing, i.e. when moving mail from Inbox to Spam and vice versa, I see nothing.
How do I get debug messages from the
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...parts.mailbox);
+ cfctx.storage = client_find_storage(ctx->cmd, &cfctx.mailbox);
+ if (cfctx.storage == NULL)
+ return catenate_fetch_cleanup(&cfctx, FALSE,
+ "can't find storage");
+ } else if (ctx->cmd->client->mailbox != NULL) {
+ cfctx.mailbox = mailbox_get_name(ctx->cmd->client->mailbox);
+ cfctx.storage = ctx->cmd->client->mailbox->storage;
+ } else
+ return catenate_fetch_cleanup(&cfctx, FALSE,
+ "no mailbox specified or selected");
+ cfctx.box = mailbox_open(&cfctx.storage, cfctx.mailbox, NULL,
+ MAIL...