Displaying 4 results from an estimated 4 matches for "mailbox_set_reason".
2018 Dec 08
2
doveadm batch crash
...vt=,
control=, inbox=, alt=/home/jc/Archive/tape/mdbox
doveadm(jc): Debug: acl: initializing backend with data: vfile
doveadm(jc): Debug: acl: acl username = jc
doveadm(jc): Debug: acl: owner = 1
doveadm(jc): Debug: acl vfile: Global ACLs disabled
doveadm(jc): Panic: file mail-storage.c: line 875 (mailbox_set_reason):
assertion failed: (reason != NULL)
doveadm(jc): Error: Raw backtrace:
/usr/lib64/dovecot/libdovecot.so.0(+0xa0e9e) [0x7fc993023e9e] ->
/usr/lib64/dovecot/libdovecot.so.0(default_fatal_handler+0x2a)
[0x7fc993023f0a] -> /usr/lib64/dovecot/libdovecot.so.0(i_fatal+0)
[0x7fc992fb3c97] ->...
2018 Dec 13
0
doveadm batch crash
...lt=/home/jc/Archive/tape/mdbox
> doveadm(jc): Debug: acl: initializing backend with data: vfile
> doveadm(jc): Debug: acl: acl username = jc
> doveadm(jc): Debug: acl: owner = 1
> doveadm(jc): Debug: acl vfile: Global ACLs disabled
> doveadm(jc): Panic: file mail-storage.c: line 875 (mailbox_set_reason):
> assertion failed: (reason != NULL)
> doveadm(jc): Error: Raw backtrace:
> /usr/lib64/dovecot/libdovecot.so.0(+0xa0e9e) [0x7fc993023e9e] ->
> /usr/lib64/dovecot/libdovecot.so.0(default_fatal_handler+0x2a)
> [0x7fc993023f0a] -> /usr/lib64/dovecot/libdovecot.so.0(i_fatal+0...
2020 Oct 31
3
v2.3.11.3 solr plugin search via MUA fails to match accented ascii characters; cmd line exec of `doveadm fts lookup` PANICs (assertion failed)
On 10/18/20 10:28 PM, Aki Tuomi wrote:
>> doveadm(myuser at example.com): Panic: file mail-storage.c: line 2112 (mailbox_get_open_status): assertion failed: (box->opened)
...
> I can reproduce your problem with the `fts lookup` command. Luckily it's equivalent to running `doveadm search`. I'll open a bug about this.
Can you provide any status on the bug/fix?
Thanks.
2020 Oct 31
0
v2.3.11.3 solr plugin search via MUA fails to match accented ascii characters; cmd line exec of `doveadm fts lookup` PANICs (assertion failed) [proposed patch]
...rc/plugins/fts/doveadm-fts.c??? 2020-08-12
14:20:41.000000000 +0200
+++ dovecot-2.3.11.3-patch/src/plugins/fts/doveadm-fts.c??? 2020-10-31
17:52:09.019388695 +0100
@@ -47,6 +47,14 @@
???? i_array_init(&result.scores, 16);
?
???? box = mailbox_alloc(info->ns->list, info->vname, 0);
+??? mailbox_set_reason(box,"fts search");
+??? if (mailbox_open(box) < 0) {
+??? ??? i_error("Couldn't open mailbox: %s",
+??? ??? ??? mailbox_get_last_internal_error(box, NULL));
+??? ??? doveadm_mail_failed_error(ctx, MAIL_ERROR_TEMP);
+??? ??? return -1;
+??? }
+
???? if (fts_backend_lookup(...