Re: [AMaViS-user] feature request [ different subject line tagging based on score ]

2008-09-09 Thread Benedict White
based on suggestion from Benedict White

Nice to get a mention in the release notes Mark, I suppose I should have read 
them!

Just out of interest, I note that the notes also say:

Only static maps are available (also members of policy banks), but
  no corresponding SQL and LDAP attributes are provided.

I wonder if it is possible to have them linked to sql lookups?

Kind regards

Benedict White

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
AMaViS-user mailing list
AMaViS-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/amavis-user 
 AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 
 AMaViS-HowTos:http://www.amavis.org/howto/ 


Re: [AMaViS-user] feature request [ different subject line tagging based on score ]

2008-09-08 Thread Mark Martinec
Juan,

 Is it possible to have 2 levels of subject-line tagging based on
 score?  So that for all forwarded mail:

 A  score = B gets tagged with SPAM1
 B  score gets tagged with SPAM2

 That way, spam 1 can be filtered to a folder normal_spam and spam 2
 can be filtered to dripping_spam.  Users will thus have a priority
 for which folder to peruse.

Possible, use tag3_level for the SPAM2. For example:

$sa_tag2_level_deflt = 6.2;  # add 'spam' headers at that level
$sa_tag3_level_deflt = 8;# add 'blatant spam' headers
@spam_subject_tag2_maps = ('***SPAM*** _SCORE_ ');
@spam_subject_tag3_maps = ('***BLATANT*SPAM _SCORE_ ');

The tag3_level may or may not be higher that kill level,
it only affects header edits. Recipients wishing to receive
spam above kill level should be declared spam lovers
or their kill level set sufficiently high.


From 2.4.1 release notes:

- added config variables: @spam_subject_tag3_maps, @spam_tag3_level_maps
  (and $sa_tag3_level_deflt), which makes it possible to split contents
  category CC_SPAMMY into two sublevels (minor categories) and give
  each its own Subject tag text;
  the CC_SPAMMY,0 contents category still corresponds to tag2 level,
  and CC_SPAMMY,1 contents category corresponds to tag3 level (if defined).
  Only static maps are available (also members of policy banks), but
  no corresponding SQL and LDAP attributes are provided.  Example:
@spam_tag2_level_maps = (5.5);
@spam_tag3_level_maps = (12);
@spam_subject_tag2_maps = ('***LIKELY*SPAM*** ');
@spam_subject_tag3_maps = ('***BLATANT*SPAM*** ');
  based on suggestion from Benedict White;


Mark

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
AMaViS-user mailing list
AMaViS-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/amavis-user 
 AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 
 AMaViS-HowTos:http://www.amavis.org/howto/ 


[AMaViS-user] feature request [ different subject line tagging based on score ]

2008-09-06 Thread Juan Miscaro
Is it possible to have 2 levels of subject-line tagging based on
score?  So that for all forwarded mail:

A  score = B gets tagged with SPAM1
B  score gets tagged with SPAM2

That way, spam 1 can be filtered to a folder normal_spam and spam 2
can be filtered to dripping_spam.  Users will thus have a priority
for which folder to peruse.

If this is not already possible I would like to make such a feature request!

Thank you Marc,

/juan

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
AMaViS-user mailing list
AMaViS-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/amavis-user 
 AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 
 AMaViS-HowTos:http://www.amavis.org/howto/ 


Re: [AMaViS-user] feature request [ different subject line tagging based on score ]

2008-09-06 Thread mouss
Juan Miscaro wrote:
 Is it possible to have 2 levels of subject-line tagging based on
 score?  So that for all forwarded mail:
 
 A  score = B gets tagged with SPAM1
 B  score gets tagged with SPAM2
 
 That way, spam 1 can be filtered to a folder normal_spam and spam 2
 can be filtered to dripping_spam.  Users will thus have a priority
 for which folder to peruse.

why not do this filtering based on the X-SPam headers? most MUAs support 
this now.
 
 If this is not already possible I would like to make such a feature request!



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
AMaViS-user mailing list
AMaViS-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/amavis-user 
 AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 
 AMaViS-HowTos:http://www.amavis.org/howto/