Displaying 1 result from an estimated 1 matches for "smtp_address_isnul".
Did you mean:
smtp_address_isnull
2017 Dec 25
1
Crash in sieve_extprogram_create() after dovecot/pigeonhole update
...m letters from the inbox to the junk folder.
I've recompiled both dovecot and pigeonhole with debug symbols and got this
stacktrace [2].
As you can see, it fails (with a SIGSEGV) in sieve_extprogram_create(), sieve-
extprograms-common.c:562, which corresponds to this code:
===
562 if ( !smtp_address_isnull(msgdata->envelope.rcpt_params->orcpt.addr) )
{
563 program_client_set_env
564 (sprog->program_client, "ORIG_RECIPIENT",
565 smtp_address_encode(msgdata->envelope.rcpt_params-
>orcpt.addr));
566 }
===
When I dump msgdata structure,...