Displaying 1 result from an estimated 1 matches for "program_client".
2017 Dec 25
1
Crash in sieve_extprogram_create() after dovecot/pigeonhole update
...eonhole 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, I see that rcpt_params is NULL: [3]. Thus, NULL
pointer dereference occurs.
Here...