Levent Serinol wrote:

  What does exactly "BODY: HTML: images with 800-1000 bytes of words"
rule means ?

is there any documentation that explains base rules of spamassassin in
detail ? only thing I found is that "tests" section on spamassassin
site which describes these rules in brief.


look to the source luke (sorry poor joke).

from 20_html_tests.cf:-

body HTML_IMAGE_ONLY_10         eval:html_image_only('0800','1000')
describe HTML_IMAGE_ONLY_10     HTML: images with 800-1000 bytes of words

and then from lib/Mail/SpamAssassin/HTML.pm the actual eval is:-

sub html_image_only {
 my ($self, undef, $min, $max) = @_;

 return (exists $self->{html_inside}{'img'} &&
         exists $self->{html}{non_space_len} &&
         $self->{html}{non_space_len} > $min &&
         $self->{html}{non_space_len} <= $max &&
         $self->get('X-eGroups-Return') !~
/[EMAIL PROTECTED]/);
}

_________________________________________________________________
SEEK: Now with over 50,000 dream jobs! Click here: http://ninemsn.seek.com.au?hotmail




Reply via email to