home *** CD-ROM | disk | FTP | other *** search
/ ftp.f-secure.com / 2014.06.ftp.f-secure.com.tar / ftp.f-secure.com / support / hotfix / fsis / IS-SpamControl.fsfix / iufssc / rules / 60_whitelist_subject.cf < prev    next >
Text File  |  2006-11-29  |  2KB  |  42 lines

  1. # SpamAssassin rules file: default whitelist/blacklist subject
  2. #
  3. # Please don't modify this file as your changes will be overwritten with
  4. # the next update. Use @@LOCAL_RULES_DIR@@/local.cf instead.
  5. # See 'perldoc Mail::SpamAssassin::Conf' for details.
  6. #
  7. # <@LICENSE>
  8. # Copyright 2004 Apache Software Foundation
  9. # Licensed under the Apache License, Version 2.0 (the "License");
  10. # you may not use this file except in compliance with the License.
  11. # You may obtain a copy of the License at
  12. #     http://www.apache.org/licenses/LICENSE-2.0
  13. # Unless required by applicable law or agreed to in writing, software
  14. # distributed under the License is distributed on an "AS IS" BASIS,
  15. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. # See the License for the specific language governing permissions and
  17. # limitations under the License.
  18. # </@LICENSE>
  19.  
  20. ###########################################################################
  21. # Whitelist/Blacklist rules
  22. #
  23. # Note that most of these get 'noautolearn'.  They should not be
  24. # considered when deciding whether to auto-learn a message, as a
  25. # user slip-up could result in scribbling side-effects in the bayes
  26. # db as a result -- which is hard to remedy.
  27.  
  28. ifplugin Mail::SpamAssassin::Plugin::WhiteListSubject
  29.  
  30. header SUBJECT_IN_WHITELIST    eval:check_subject_in_whitelist()
  31. describe SUBJECT_IN_WHITELIST    Subject: contains string in the user's white-list
  32. tflags SUBJECT_IN_WHITELIST    userconf nice noautolearn
  33.  
  34. header SUBJECT_IN_BLACKLIST    eval:check_subject_in_blacklist()
  35. describe SUBJECT_IN_BLACKLIST    Subject: contains string in the user's black-list
  36. tflags SUBJECT_IN_BLACKLIST    userconf noautolearn
  37.  
  38. endif # Mail::SpamAssassin::Plugin::WhiteListSubject
  39.