Displaying 10 results from an estimated 10 matches for "list_set".
2009 Mar 04
2
v1.2: can't access other users shared INBOX
Hi *,
when a user A shares his INBOX with another user B, the user B can't
access its content:
User A:
g getacl INBOX
* ACL INBOX A at example.com lrswipkxtecda B at example.com lrswipkxtecd
g OK Completed
User B:
l list "" "*"
* LIST (\Noselect \HasChildren) "/" "user"
* LIST (\Noselect \HasChildren) "/" "user/A at
2009 Mar 13
1
v1.1.12 and v1.2.beta2 released
http://dovecot.org/releases/1.1/dovecot-1.1.12.tar.gz
http://dovecot.org/releases/1.1/dovecot-1.1.12.tar.gz.sig
http://dovecot.org/releases/1.2/beta/dovecot-1.2.beta2.tar.gz
http://dovecot.org/releases/1.2/beta/dovecot-1.2.beta2.tar.gz.sig
I thought I'd do a double-release since it's Friday the 13th. v1.2.0 is
getting closer, mainly some ACL fixes left.
Changes in v1.2.beta2 since
2009 Mar 13
1
v1.1.12 and v1.2.beta2 released
http://dovecot.org/releases/1.1/dovecot-1.1.12.tar.gz
http://dovecot.org/releases/1.1/dovecot-1.1.12.tar.gz.sig
http://dovecot.org/releases/1.2/beta/dovecot-1.2.beta2.tar.gz
http://dovecot.org/releases/1.2/beta/dovecot-1.2.beta2.tar.gz.sig
I thought I'd do a double-release since it's Friday the 13th. v1.2.0 is
getting closer, mainly some ACL fixes left.
Changes in v1.2.beta2 since
2020 May 15
0
Fallback driver after autodection
...torage.c 2020-05-15 22:35:40.975992000 +0200
@@ -144,6 +144,10 @@
return classes[i];
}
}
+
+ if (set->fallback_driver != NULL)
+ return mail_storage_find_class(set->fallback_driver);
+
return NULL;
}
@@ -216,8 +220,10 @@
}
storage_class = mail_storage_autodetect(ns, list_set);
- if (storage_class != NULL)
+ if (storage_class != NULL) {
+ storage_class->v.get_list_settings(ns, list_set);
return storage_class;
+ }
(void)mail_user_get_home(ns->user, &home);
if (home == NULL || *home == '\0') home = "(not set)";
diff -ruN src.bak/lib...
2009 Mar 24
2
Dbox Upgrade Problem With MAILBOXDIR
...o these MAILBOXDIR changes but the only documentation is the
single line in the news for changing to ":MAILBOXDIR=mailboxes" when
using dbox.
Current configuration is "mail_location = dbox:~/Mail" so what exactly
should be changed here?
(gdb) bt full
#0 0x08093546 in dbox_get_list_settings (list_set=0xafe33244,
data=0xafe34e33 "/home/USER/Mail",
flags=MAIL_STORAGE_FLAG_NO_AUTODETECTION, layout_r=0xafe331e0,
alt_dir_r=0xafe331dc, error_r=0xafe33304) at dbox-storage.c:76
subs_fname = 0x810fd7c "subscriptions"
debug = false
#1 0x08093615 in dbo...
2012 Aug 21
1
segfault in mail_user_get_home()
...orage.c:90
#2 0x00007ffff7ad180c in mdbox_storage_autodetect (ns=0x648610,
set=0x7fffffffe4d0) at mdbox-storage.c:113
#3 0x00007ffff7b2345d in mail_storage_autodetect (ns=0x648610,
set=0x7fffffffe4d0) at mail-storage.c:105
#4 0x00007ffff7b2369d in mail_storage_get_class (ns=0x648610,
driver=0x0, list_set=0x7fffffffe4d0, flags=0, error_r=0x7fffffffe5b8)
at mail-storage.c:180
#5 0x00007ffff7b23c90 in mail_storage_create (ns=0x648610,
driver=0x0, flags=0, error_r=0x7fffffffe5b8) at mail-storage.c:342
#6 0x00007ffff7b1c62a in namespace_add (user=0x649be0,
ns_set=0x64a8c8, unexpanded_ns_set=0x64a1c0,...
2013 Jun 09
1
v2.2.2 (266101990d63) Core Dump
...ry=0x7f305d7263a4 "raw", data=<optimized out>, flags=flags at entry=0,
storage_r=storage_r at entry=0x7fff92c0d318, error_r=error_r at entry=0x7fff92c0d338) at mail-storage.c:397
storage_class = 0x7f305d95a560
storage = 0x126cb50
list = 0x1271800
list_set = {layout = 0x125b050 "none", root_dir = 0x125b048 "", index_dir = 0x0, index_pvt_dir = 0x0, control_dir = 0x0, alt_dir = 0x0, inbox_path = 0x0,
subscription_fname = 0x7f305d72310d "subscriptions", maildir_name = 0x7f305d71e70b "", mailbox_dir_name...
2016 Dec 20
1
Latest Dovecot v2.2.devel (9bc8d9b) crashes on login and lmtp
...0, driver=<optimized out>, driver at entry=0x0, data=<optimized out>, flags=flags at entry=(unknown: 0),
storage_r=storage_r at entry=0x7ffdcadea170, error_r=error_r at entry=0x7ffdcadea1a0) at mail-storage.c:395
storage = 0x7f917a5c5930
list = 0x7f917a5c3ca0
list_set = {layout = 0x7f91781083c6 "fs", root_dir = 0x7f917a52e100 "/var/vmail/domains/leuxner.net/tlx/mdbox", index_dir = 0x0, index_pvt_dir = 0x0, control_dir = 0x0, alt_dir = 0x0,
inbox_path = 0x0, subscription_fname = 0x7f917810f234 "subscriptions", list_index_fn...
2017 Jan 10
2
[PATCH] mail-storage.c: check against NULL address in strcmp() invocation
Configurations with multiple shared namespaces can trigger a bug
where the first argument of strcmp() invocation is NULL.
This patch adds an explicit check, analogously to how the second
argument is sanitized.
---
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
2013 Jul 17
1
pop3c migration?
Hi,
I'm running dsync migrations using imapc and the source IMAP server is
just too slow. It has taken 8 hours to migrate a mailbox with 47,000
messages. It seems most of the mailboxes are never accessed with IMAP,
so it would be just as good to migrate them via POP3 which should work
faster in my case.
Is this actually meant to work?
doveadm -D -o pop3c_user=xxxxxx at example.com -o