search for: mail_storage_match_class

Displaying 3 results from an estimated 3 matches for "mail_storage_match_class".

2017 Jan 10
0
multiple shared/mail format namespaces (segv identified + patch)
...ation posted in the earlier mail. First the full backtrace: Message: Process 13965 (imap) of user 105 dumped core. Stack trace of thread 13965: #0 0x00007fbdaa15929a __strcmp_sse2_unaligned (libc.so.6) #1 0x00007fbdaa820c50 mail_storage_match_class (libdovecot-storage.so.0) #2 0x00007fbdaa820cbf mail_storage_find (libdovecot-storage.so.0) #3 0x00007fbdaa82103d mail_storage_create_full (libdovecot-storage.so.0) #4 0x00007fbdaa8212c2 mail_storage_create (libdovecot-storage.so.0)...
2017 Jan 09
2
multiple shared/mail format namespaces
On January 2, 2017 at 5:58 PM Michal Soltys <soltys at ziu.info> wrote: >> >> >> Hi, >> >> Are configurations (with separate formats per namespace) - such as ... >> >> namespace { >> type = shared >> list = children >> inbox = no >> separator = / >> subscriptions = no >> prefix = shared1/%%n/
2017 Jan 10
2
[PATCH] mail-storage.c: check against NULL address in strcmp() invocation
...itized. --- src/lib-storage/mail-storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib-storage/mail-storage.c b/src/lib-storage/mail-storage.c index 1d9b1bf..3d9f5dc 100644 --- a/src/lib-storage/mail-storage.c +++ b/src/lib-storage/mail-storage.c @@ -282,7 +282,7 @@ mail_storage_match_class(struct mail_storage *storage, return FALSE; if ((storage->class_flags & MAIL_STORAGE_CLASS_FLAG_UNIQUE_ROOT) != 0 && - strcmp(storage->unique_root_dir, + strcmp((storage->unique_root_dir != NULL ? storage->unique_root_dir : ""), (set->root_...