[Rspamd-Users] v1.8 and outbound scanning using same cluster as inbound

Matt Bryant matt at the-bryants.net
Sat Sep 29 05:02:34 UTC 2018


Am using exim as MTA and have to still support popb4smtp authentication
for some users ...

I see from doco that for outbound some checks disabled and that outbound
is defined as authenticated or entry in local_addr ... is there any
other way to disable these check.

>From exim src I see that is passed authenticated_id but this variable is
only accessibly by exim itself can't change in acl or anything so short
of patching src code and sending different variable cant really change
that end.

Tried adding a settings section

outbound {
    id = "outbound";
    priority = high;
    from = "@the-bryants.net";
    apply {
         groups_disabled =
["rbl","spf","hfilter","asn","ip_score","greylisting"];
    }
}

but that doesnt seem to work ... was still applying symbols like
HFILTER_HELO_BADIP - I know its picking up some things since if I add
some details

outbound {
    id = "outbound";
    priority = high;
    from = "@the-bryants.net";
    apply {
         HFLITER_HELO_BADIP = 0.0;
         actions {
             reject = 12.0;
         }
         groups_disabled =
["rbl","spf","hfilter","asn","ip_score","greylisting"];
    }
}

both the new reject threshold and the symbol value are picked up ok ..

any pointers appreciated ...

rgds

Matt






More information about the Users mailing list