Luis,

> OK, but the point is that I run SA trough AMaViS, so procmail recipes
> aren't the answer. Thanks a lot, I suppose I should create some type of
> whitelist in AMaViS to avoid SA.

As this mailing list use VERP sender envelope addresses,
you need to use regexp-based lookup table in amavisd.conf, e.g.:

@score_sender_maps = (
  # these score points are added to SA score (score boost)

  new_RE(  # regexp-type lookup table

    # positive points lean towards blacklisting
    [qr'^(bulkmail|offers|cheapbenefits|earnmoney|foryou)@'i          => 5.0],
    [qr'^(greatcasino|investments|lose_weight_today|market\.alert)@'i => 5.0],
    [qr'^(money2you|MyGreenCard|new\.tld\.registry|opt-out|opt-in)@'i => 5.0],

    # negative points lean towards whitelisting
    [qr'^\d{6,[EMAIL PROTECTED]'i                  => -4],
    [qr'[EMAIL PROTECTED]' => -4],
  ),

);

Reply via email to