Displaying 2 results from an estimated 2 matches for "lda_sieve_open".
2017 Feb 07
2
Sieve LDA Errors (Improper Saving?)
...vbin is from November, while the text version is from
October. Even if something is looking at the date of the symlink, that's
from September.
So the first question is... why is Dovecot trying to write the binary file?
I dug into the Pigeonhole code... I think, but am certainly not sure,
that lda_sieve_open() in
pigeonhole/src/plugins/lda-sieve/lda-sieve-plugin.c is the relevant
function calling lda_sieve_binary_save(). At the end of the function, it
has:
if (!recompile)
lda_sieve_binary_save(srctx, sbin, script);
This seems odd to me. Why is it trying to save in the "!r...
2017 Feb 08
0
Sieve LDA Errors (Improper Saving?)
...first question is... why is Dovecot trying to write the binary file?
Newer versions of Pigeonhole may use a different version of the compiled
binary format. So, for some upgrades it may be necessary to recompile.
> I dug into the Pigeonhole code... I think, but am certainly not sure,
> that lda_sieve_open() in
> pigeonhole/src/plugins/lda-sieve/lda-sieve-plugin.c is the relevant
> function calling lda_sieve_binary_save(). At the end of the function, it
> has:
>
> if (!recompile)
> lda_sieve_binary_save(srctx, sbin, script);
>
> This seems odd to me. Wh...