Displaying 1 result from an estimated 1 matches for "is_spam".
Did you mean:
_spam
2006 Apr 11
1
dspam plugin
...HEADERLINE);
The 'working with signature' that shows the corrupted signature is right
before call_dspam is called, and it outputs siglist->sig:
...
syslog(LOG_INFO, "working with signature %s ", siglist->sig );
if ((*enh_error = call_dspam (siglist->sig, is_spam))) {
...
This leads me to believe that there's a problem with:
list_append(listpool, &siglist)->sig = p_strdup(listpool, signature);
but I'm really not sure how dovecot deals with allocating pooled memory,
as that's what it appears to be doing.
I'm not sure what infor...