Advertisement
Guest User

Untitled

a guest
Jun 10th, 2017
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1. # This is the right place to customize your installation of SpamAssassin.
  2. #
  3. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  4. # tweaked.
  5. #
  6. # Only a small subset of options are listed below
  7. #
  8. ###########################################################################
  9.  
  10. # Add *****SPAM***** to the Subject header of spam e-mails
  11. #
  12. # rewrite_header Subject *****SPAM*****
  13.  
  14.  
  15. # Save spam messages as a message/rfc822 MIME attachment instead of
  16. # modifying the original message (0: off, 2: use text/plain instead)
  17. #
  18. report_safe 1
  19. add_header all Status "_YESNO_, score=_SCORE_ required=_REQD_ tests=_TESTS_ autolearn=_AUTOLEARN_ version=_VERSION_"
  20. add_header all Report _REPORT_
  21.  
  22.  
  23. # Set which networks or hosts are considered 'trusted' by your mail
  24. # server (i.e. not spammers)
  25. #
  26. trusted_networks 192.168.2.0/23
  27.  
  28.  
  29. # Set file-locking method (flock is not safe over NFS, but is faster)
  30. #
  31. # lock_method flock
  32.  
  33.  
  34. # Set the threshold at which a message is considered spam (default: 5.0)
  35. #
  36. required_score 4.0
  37.  
  38.  
  39. # Use Bayesian classifier (default: 1)
  40. #
  41.  
  42.  
  43.  
  44. # Bayesian classifier auto-learning (default: 1)
  45. #
  46. bayes_auto_learn 1
  47.  
  48.  
  49. # Set headers which may provide inappropriate cues to the Bayesian
  50. # classifier
  51. #
  52. # bayes_ignore_header X-Bogosity
  53. # bayes_ignore_header X-Spam-Flag
  54. # bayes_ignore_header X-Spam-Status
  55.  
  56. whitelist_from *@msaludjujuy.gov.ar
  57. whitelist_from dcastro@msaludjujuy.gov.ar
  58. whitelist_from *@microsoft.com
  59. whitelist_from *@justiciajujuy.gov.ar
  60. whitelist_from *@macro.com.ar
  61. whitelist_from ClientesSI@macro.com.ar
  62. whitelist_from anaguevaras@macro.com.ar
  63. whitelist_from *@pop3.amadeus.net
  64. whitelist_from @msal.gov.ar
  65. whitelist_from agsida@msal.gov.ar
  66. whitelist_from agfsida@msal.gov.ar
  67. whitelist_from *@yahoo.com.ar
  68. whitelist_from programanacionalsida@yahoo.com.ar
  69. whitelist_from rodrigo007gf@yahoo.com.ar
  70.  
  71. # verificacion de SPF
  72. score SPF_FAIL 9012
  73. score SPF_SOFTFAIL 9012
  74.  
  75. header SPF_CHECK_FAIL Received-SPF =~ /^fail/
  76. describe SPF_CHECK_FAIL SPF Reportado como host remitente NO permitido
  77. score SPF_CHECK_FAIL 9012
  78.  
  79. header SPF_CHECK_PASS Received-SPF =~ /^pass/
  80. describe SPF_CHECK_PASS SPF Reportado como host remitente Permitido
  81. score SPF_CHECK_PASS -2.5
  82.  
  83. #control de ips dinamicas
  84. score HELO_EQ_DSL 4506
  85. score HELO_EQ_DYNAMIC 4506
  86. score HELO_DYNAMIC_IPADDR2 9001
  87.  
  88. header MSALUD From =~ /msaludjujuy\.gov\.ar/i
  89. describe MSALUD Correo enviado por usuarios del ministerio de salud
  90. score MSALUD -9000
  91.  
  92.  
  93. ok_languages es
  94. ok_locales es
  95.  
  96. inactive_languages bs cy eo et eu fy ga gd is la lt lv rm sa sco sl yi
  97.  
  98. textcat_max_languages 2
  99.  
  100. textcat_optimal_ngrams 0
  101.  
  102. textcat_max_ngrams 400
  103.  
  104. textcat_acceptable_score 1.05
  105.  
  106. #lenguajes no aceptados
  107. ifplugin Mail::SpamAssassin::Plugin::TextCat
  108. score UNWANTED_LANGUAGE_BODY 9001
  109. score BODY_8BITS 3.500
  110. endif # Mail::SpamAssassin::Plugin::TextCat
  111.  
  112. add_header all Score _SCORE_
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement