polloxx, > > When a sender is considered blacklisted a message is blocked regardless > > of the shown score value - it is *not* a value added to SpamAssassin > > score and compared to tag2/kill levels. > > > > If you need a finer control/granularity, use rules and blacklisting tools > > in the SpamAssassin's config file. > > Thanks Mark. > I want to be able to blacklist certain users independent from their > spam-score (based on recipient request). > What is the best way to do so?
Use @blacklist_sender_maps, or one of its predefined compatibility lookup tables: %blacklist_sender, @blacklist_sender_acl, $blacklist_sender_re . @blacklist_sender_maps = ( [ qw( [email protected] [email protected] .example.org ) ], ); or perhaps: @blacklist_sender_maps = ( read_hash("/etc/blacklisted.txt") ); Mark
