HI,We are using amavisd-new-2.8.1, we want to update the X-Spam-Status header. in earlier version we could do something like below in our custom code.
however, in the later version of amavisd the spam_status method is gone. What's the proper way to update this header?
Thanks.
for my $r (@{$msginfo->per_recip_data}) {
$r->spam_status($spam_tests);
}
