Hi I'm sorry my English I configured my SpamAssassin and Postfix with the following script filter:
#!/bin/sh INSPECT_DIR=/var/spam SENDMAIL=/usr/sbin/sendmail.postfix SPAMASSASSIN=/usr/bin/spamc EX_TEMPFAIL=75 EX_UNAVAILABLE=69 cd $INSPECT_DIR || { echo $INSPECT_DIR does not exist; exit $EX_TEMPFAIL; } trap "rm -f in.$$; rm -f out.$$" 0 1 2 3 15 cat | $SPAMASSASSIN -f > out.$$ #|| # { echo Message content rejected; exit $EX_UNAVAILABLE; } $SENDMAIL -i "$@" < out.$$ exit $ And Spamassassin is configured by default configuration in RedHat 8.0 and the program started with this parameters: /usr/bin/spamd -d -c -a -m100 -H I see that Spamassasin controls spam mails, but sending many notification mails to postmaster, and however return mails to all people that write to my server, so. for this cause my mail server is getting satured.. How Can I do, for optiming notifications and reports, and return mails donīt be sent to sender. Regards, Roberto ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Spamassassin-talk mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/spamassassin-talk