Displaying 4 results from an estimated 4 matches for "signature_hdr".
2008 Oct 29
3
antispam plugin claims "antispam signature not found"
Hi,
I am trying to setup the antispam plugin using the direct dspam backend.
I have set
antispam_signature = X-DSPAM-Signature
in dovecot.conf
and in all mails I have signature lines like
X-DSPAM-Signature: 1,49084a24139132188715614
but still, if I try to move a mail into the spam folder, i get the IMAP error message
"antispam signature not found".
I thought it might have to do
2008 Feb 28
1
antispam plugin: crm114 mode:"antispam signature not found"
...er when moving messages in and out of
folder "SPAM"
However, when i try to move a message to folder spam,
my client (Thunderbirds) says:
The current command did not succeed.
The mail server responden: antispam signature not found.
Checking the source i found in signature.c
*signature_hdr = "X-DSPAM-Signature";
This appears to originate from the DSPAM support of the plugin
and apparently doesn't find these header lines.
When using crm114 to sort spam there is no special header
line. (or i didn't turn it on. do i _have_ to?)
how can i get that antispam plu...
2016 Nov 28
6
Antispam plugin: insufficent error messages
...ignature_extract_to_list(const struct signature_config *cfg,
struct mailbox_transaction_context *t,
struct mail *mail, struct siglist **list,
enum classification wanted)
{
const char *const *signatures;
struct siglist *item;
signatures = get_mail_headers(mail, cfg->signature_hdr);
if (!signatures || !signatures[0]) {
if (!cfg->signature_nosig_ignore) {
mail_storage_set_error(t->box->storage,
ME(NOTPOSSIBLE)
"antispam signature not found");
return -1; /* <-- HERE */
} else {
return 0;
}
}...
2016 Dec 17
0
Antispam plugin: insufficent error messages
...ignature_config *cfg,
> struct mailbox_transaction_context *t,
> struct mail *mail, struct siglist **list,
> enum classification wanted)
> {
> const char *const *signatures;
> struct siglist *item;
>
> signatures = get_mail_headers(mail, cfg->signature_hdr);
> if (!signatures || !signatures[0]) {
> if (!cfg->signature_nosig_ignore) {
>
> mail_storage_set_error(t->box->storage,
> ME(NOTPOSSIBLE)
> "antispam signature not found");
> return -1; /* <-- HERE...