linccce

spamasssassin conf

Feb 27th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.07 KB | None | 0 0
  1. ----------------<all.txt>----------------
  2. ----------------<init.pre>----------------
  3. # This is the right place to customize your installation of SpamAssassin.
  4. #
  5. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  6. # tweaked.
  7. #
  8. # This file contains plugin activation commands for plugins included
  9. # in SpamAssassin 3.0.x releases. It will not be installed if you
  10. # already have a file in place called "init.pre".
  11. #
  12. # There are now multiple files read to enable plugins in the
  13. # /etc/mail/spamassassin directory; previously only one, "init.pre" was
  14. # read. Now both "init.pre", "v310.pre", and any other files ending in
  15. # ".pre" will be read. As future releases are made, new plugins will be
  16. # added to new files, named according to the release they're added in.
  17. ###########################################################################
  18.  
  19. # RelayCountry - add metadata for Bayes learning, marking the countries
  20. # a message was relayed through
  21. #
  22. # Note: This requires the IP::Country::Fast Perl module
  23. #
  24. # loadplugin Mail::SpamAssassin::Plugin::RelayCountry
  25.  
  26. # URIDNSBL - look up URLs found in the message against several DNS
  27. # blocklists.
  28. #
  29. loadplugin Mail::SpamAssassin::Plugin::URIDNSBL
  30.  
  31. # Hashcash - perform hashcash verification.
  32. #
  33. loadplugin Mail::SpamAssassin::Plugin::Hashcash
  34.  
  35. # SPF - perform SPF verification.
  36. #
  37. loadplugin Mail::SpamAssassin::Plugin::SPF
  38.  
  39. ----------------<local.cf>----------------
  40. # This is the right place to customize your installation of SpamAssassin.
  41. #
  42. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  43. # tweaked.
  44. #
  45. # Only a small subset of options are listed below
  46. #
  47. ###########################################################################
  48.  
  49. # Add *****SPAM***** to the Subject header of spam e-mails
  50. #
  51. # rewrite_header Subject *****SPAM*****
  52.  
  53.  
  54. # Save spam messages as a message/rfc822 MIME attachment instead of
  55. # modifying the original message (0: off, 2: use text/plain instead)
  56. #
  57. # report_safe 1
  58.  
  59.  
  60. # Set which networks or hosts are considered 'trusted' by your mail
  61. # server (i.e. not spammers)
  62. #
  63. # trusted_networks 212.17.35.
  64.  
  65.  
  66. # Set file-locking method (flock is not safe over NFS, but is faster)
  67. #
  68. # lock_method flock
  69.  
  70.  
  71. # Set the threshold at which a message is considered spam (default: 5.0)
  72. #
  73. # required_score 5.0
  74.  
  75.  
  76. # Use Bayesian classifier (default: 1)
  77. #
  78. # use_bayes 1
  79.  
  80.  
  81. # Bayesian classifier auto-learning (default: 1)
  82. #
  83. # bayes_auto_learn 1
  84.  
  85.  
  86. # Set headers which may provide inappropriate cues to the Bayesian
  87. # classifier
  88. #
  89. # bayes_ignore_header X-Bogosity
  90. # bayes_ignore_header X-Spam-Flag
  91. # bayes_ignore_header X-Spam-Status
  92.  
  93.  
  94. # Some shortcircuiting, if the plugin is enabled
  95. #
  96. ifplugin Mail::SpamAssassin::Plugin::Shortcircuit
  97. #
  98. # default: strongly-whitelisted mails are *really* whitelisted now, if the
  99. # shortcircuiting plugin is active, causing early exit to save CPU load.
  100. # Uncomment to turn this on
  101. #
  102. # shortcircuit USER_IN_WHITELIST on
  103. # shortcircuit USER_IN_DEF_WHITELIST on
  104. # shortcircuit USER_IN_ALL_SPAM_TO on
  105. # shortcircuit SUBJECT_IN_WHITELIST on
  106.  
  107. # the opposite; blacklisted mails can also save CPU
  108. #
  109. # shortcircuit USER_IN_BLACKLIST on
  110. # shortcircuit USER_IN_BLACKLIST_TO on
  111. # shortcircuit SUBJECT_IN_BLACKLIST on
  112.  
  113. # if you have taken the time to correctly specify your "trusted_networks",
  114. # this is another good way to save CPU
  115. #
  116. # shortcircuit ALL_TRUSTED on
  117.  
  118. # and a well-trained bayes DB can save running rules, too
  119. #
  120. # shortcircuit BAYES_99 spam
  121. # shortcircuit BAYES_00 ham
  122.  
  123. endif # Mail::SpamAssassin::Plugin::Shortcircuit
  124.  
  125. ----------------<local.cf.save>----------------
  126. # This is the right place to customize your installation of SpamAssassin.
  127. #
  128. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  129. # tweaked.
  130. #
  131. # Only a small subset of options are listed below
  132. #
  133. ###########################################################################
  134.  
  135. # Add *****SPAM***** to the Subject header of spam e-mails
  136. #
  137. # rewrite_header Subject *****SPAM*****
  138.  
  139.  
  140. # Save spam messages as a message/rfc822 MIME attachment instead of
  141. # modifying the original message (0: off, 2: use text/plain instead)
  142. #
  143. # report_safe 1
  144.  
  145.  
  146. # Set which networks or hosts are considered 'trusted' by your mail
  147. # server (i.e. not spammers)
  148. #
  149. # trusted_networks 212.17.35.
  150.  
  151.  
  152. # Set file-locking method (flock is not safe over NFS, but is faster)
  153. #
  154. # lock_method flock
  155.  
  156.  
  157. # Set the threshold at which a message is considered spam (default: 5.0)
  158. #
  159. # required_score 5.0
  160.  
  161.  
  162. # Use Bayesian classifier (default: 1)
  163. #
  164. # use_bayes 1
  165.  
  166.  
  167. # Bayesian classifier auto-learning (default: 1)
  168. #
  169. # bayes_auto_learn 1
  170.  
  171.  
  172. # Set headers which may provide inappropriate cues to the Bayesian
  173. # classifier
  174. #
  175. # bayes_ignore_header X-Bogosity
  176. # bayes_ignore_header X-Spam-Flag
  177. # bayes_ignore_header X-Spam-Status
  178.  
  179.  
  180. # Some shortcircuiting, if the plugin is enabled
  181. #
  182. ifplugin Mail::SpamAssassin::Plugin::Shortcircuit
  183. #
  184. # default: strongly-whitelisted mails are *really* whitelisted now, if the
  185. # shortcircuiting plugin is active, causing early exit to save CPU load.
  186. # Uncomment to turn this on
  187. #
  188. # shortcircuit USER_IN_WHITELIST on
  189. # shortcircuit USER_IN_DEF_WHITELIST on
  190. # shortcircuit USER_IN_ALL_SPAM_TO on
  191. # shortcircuit SUBJECT_IN_WHITELIST on
  192.  
  193. # the opposite; blacklisted mails can also save CPU
  194. #
  195. # shortcircuit USER_IN_BLACKLIST on
  196. # shortcircuit USER_IN_BLACKLIST_TO on
  197. # shortcircuit SUBJECT_IN_BLACKLIST on
  198.  
  199. # if you have taken the time to correctly specify your "trusted_networks",
  200. # this is another good way to save CPU
  201. #
  202. # shortcircuit ALL_TRUSTED on
  203.  
  204. # and a well-trained bayes DB can save running rules, too
  205. #
  206. # shortcircuit BAYES_99 spam
  207. # shortcircuit BAYES_00 ham
  208.  
  209. endif # Mail::SpamAssassin::Plugin::Shortcircuit
  210.  
  211. ----------------<v310.pre>----------------
  212. # This is the right place to customize your installation of SpamAssassin.
  213. #
  214. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  215. # tweaked.
  216. #
  217. # This file was installed during the installation of SpamAssassin 3.1.0,
  218. # and contains plugin loading commands for the new plugins added in that
  219. # release. It will not be overwritten during future SpamAssassin installs,
  220. # so you can modify it to enable some disabled-by-default plugins below,
  221. # if you so wish.
  222. #
  223. # There are now multiple files read to enable plugins in the
  224. # /etc/mail/spamassassin directory; previously only one, "init.pre" was
  225. # read. Now both "init.pre", "v310.pre", and any other files ending in
  226. # ".pre" will be read. As future releases are made, new plugins will be
  227. # added to new files, named according to the release they're added in.
  228. ###########################################################################
  229.  
  230. # DCC - perform DCC message checks.
  231. #
  232. # DCC is disabled here because it is not open source. See the DCC
  233. # license for more details.
  234. #
  235. #loadplugin Mail::SpamAssassin::Plugin::DCC
  236.  
  237. # Pyzor - perform Pyzor message checks.
  238. #
  239. loadplugin Mail::SpamAssassin::Plugin::Pyzor
  240.  
  241. # Razor2 - perform Razor2 message checks.
  242. #
  243. loadplugin Mail::SpamAssassin::Plugin::Razor2
  244.  
  245. # SpamCop - perform SpamCop message reporting
  246. #
  247. loadplugin Mail::SpamAssassin::Plugin::SpamCop
  248.  
  249. # AntiVirus - some simple anti-virus checks, this is not a replacement
  250. # for an anti-virus filter like Clam AntiVirus
  251. #
  252. #loadplugin Mail::SpamAssassin::Plugin::AntiVirus
  253.  
  254. # AWL - do auto-whitelist checks
  255. #
  256. #loadplugin Mail::SpamAssassin::Plugin::AWL
  257.  
  258. # AutoLearnThreshold - threshold-based discriminator for Bayes auto-learning
  259. #
  260. loadplugin Mail::SpamAssassin::Plugin::AutoLearnThreshold
  261.  
  262. # TextCat - language guesser
  263. #
  264. #loadplugin Mail::SpamAssassin::Plugin::TextCat
  265.  
  266. # AccessDB - lookup from-addresses in access database
  267. #
  268. #loadplugin Mail::SpamAssassin::Plugin::AccessDB
  269.  
  270. # WhitelistSubject - Whitelist/Blacklist certain subject regular expressions
  271. #
  272. loadplugin Mail::SpamAssassin::Plugin::WhiteListSubject
  273.  
  274. ###########################################################################
  275. # experimental plugins
  276.  
  277. # DomainKeys - perform DomainKeys verification
  278. #
  279. # This plugin has been removed as of v3.3.0. Use the DKIM plugin instead,
  280. # which supports both Domain Keys and DKIM.
  281.  
  282. # MIMEHeader - apply regexp rules against MIME headers in the message
  283. #
  284. loadplugin Mail::SpamAssassin::Plugin::MIMEHeader
  285.  
  286. # ReplaceTags
  287. #
  288. loadplugin Mail::SpamAssassin::Plugin::ReplaceTags
  289.  
  290. ----------------<v312.pre>----------------
  291. # This is the right place to customize your installation of SpamAssassin.
  292. #
  293. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  294. # tweaked.
  295. #
  296. # This file was installed during the installation of SpamAssassin 3.1.2,
  297. # and contains plugin loading commands for the new plugins added in that
  298. # release. It will not be overwritten during future SpamAssassin installs,
  299. # so you can modify it to enable some disabled-by-default plugins below,
  300. # if you so wish.
  301. #
  302. # There are now multiple files read to enable plugins in the
  303. # /etc/mail/spamassassin directory; previously only one, "init.pre" was
  304. # read. Now both "init.pre", "v310.pre", and any other files ending in
  305. # ".pre" will be read. As future releases are made, new plugins will be
  306. # added to new files, named according to the release they're added in.
  307.  
  308. ###########################################################################
  309. # experimental plugins
  310.  
  311. # DKIM - perform DKIM verification
  312. #
  313. # Mail::DKIM module required for use, see INSTALL for more information.
  314. #
  315. # Note that if C<Mail::DKIM> version 0.20 or later is installed, this
  316. # renders the DomainKeys plugin redundant.
  317. #
  318. loadplugin Mail::SpamAssassin::Plugin::DKIM
  319.  
  320. ----------------<v320.pre>----------------
  321. # This is the right place to customize your installation of SpamAssassin.
  322. #
  323. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  324. # tweaked.
  325. #
  326. # This file was installed during the installation of SpamAssassin 3.2.0,
  327. # and contains plugin loading commands for the new plugins added in that
  328. # release. It will not be overwritten during future SpamAssassin installs,
  329. # so you can modify it to enable some disabled-by-default plugins below,
  330. # if you so wish.
  331. #
  332. # There are now multiple files read to enable plugins in the
  333. # /etc/mail/spamassassin directory; previously only one, "init.pre" was
  334. # read. Now both "init.pre", "v310.pre", and any other files ending in
  335. # ".pre" will be read. As future releases are made, new plugins will be
  336. # added to new files, named according to the release they're added in.
  337. ###########################################################################
  338.  
  339. # Check - Provides main check functionality
  340. #
  341. loadplugin Mail::SpamAssassin::Plugin::Check
  342.  
  343. # HTTPSMismatch - find URI mismatches between href and anchor text
  344. #
  345. loadplugin Mail::SpamAssassin::Plugin::HTTPSMismatch
  346.  
  347. # URIDetail - test URIs using detailed URI information
  348. #
  349. loadplugin Mail::SpamAssassin::Plugin::URIDetail
  350.  
  351. # Shortcircuit - stop evaluation early if high-accuracy rules fire
  352. #
  353. # loadplugin Mail::SpamAssassin::Plugin::Shortcircuit
  354.  
  355. # Plugins which used to be EvalTests.pm
  356. # broken out into separate plugins
  357. loadplugin Mail::SpamAssassin::Plugin::Bayes
  358. loadplugin Mail::SpamAssassin::Plugin::BodyEval
  359. loadplugin Mail::SpamAssassin::Plugin::DNSEval
  360. loadplugin Mail::SpamAssassin::Plugin::HTMLEval
  361. loadplugin Mail::SpamAssassin::Plugin::HeaderEval
  362. loadplugin Mail::SpamAssassin::Plugin::MIMEEval
  363. loadplugin Mail::SpamAssassin::Plugin::RelayEval
  364. loadplugin Mail::SpamAssassin::Plugin::URIEval
  365. loadplugin Mail::SpamAssassin::Plugin::WLBLEval
  366.  
  367. # VBounce - anti-bounce-message rules, see rules/20_vbounce.cf
  368. #
  369. loadplugin Mail::SpamAssassin::Plugin::VBounce
  370.  
  371. # Rule2XSBody - speedup by compilation of ruleset to native code
  372. #
  373. # loadplugin Mail::SpamAssassin::Plugin::Rule2XSBody
  374.  
  375. # ASN - Look up the Autonomous System Number of the connecting IP
  376. # and create a header containing ASN data for bayes tokenization.
  377. # See plugin's POD docs for usage info.
  378. #
  379. # loadplugin Mail::SpamAssassin::Plugin::ASN
  380.  
  381. # ImageInfo - rules to match metadata of image attachments
  382. #
  383. loadplugin Mail::SpamAssassin::Plugin::ImageInfo
  384.  
  385. ----------------<v330.pre>----------------
  386. # This is the right place to customize your installation of SpamAssassin.
  387. #
  388. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  389. # tweaked.
  390. #
  391. # This file was installed during the installation of SpamAssassin 3.3.0,
  392. # and contains plugin loading commands for the new plugins added in that
  393. # release. It will not be overwritten during future SpamAssassin installs,
  394. # so you can modify it to enable some disabled-by-default plugins below,
  395. # if you so wish.
  396. #
  397. # There are now multiple files read to enable plugins in the
  398. # /etc/mail/spamassassin directory; previously only one, "init.pre" was
  399. # read. Now both "init.pre", "v310.pre", and any other files ending in
  400. # ".pre" will be read. As future releases are made, new plugins will be
  401. # added to new files, named according to the release they're added in.
  402. ###########################################################################
  403.  
  404. # PhishTag - allows sites to rewrite suspect phish-mail URLs
  405. # (Note: this requires configuration, see http://umut.topkara.org/PhishTag)
  406. #
  407. #loadplugin Mail::SpamAssassin::Plugin::PhishTag
  408.  
  409. # FreeMail - detect email addresses using free webmail services,
  410. # usable as input for other rules
  411. #
  412. loadplugin Mail::SpamAssassin::Plugin::FreeMail
  413.  
  414. ----------------<all.txt>----------------
  415. ----------------<init.pre>----------------
  416. # This is the right place to customize your installation of SpamAssassin.
  417. #
  418. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  419. # tweaked.
  420. #
  421. # This file contains plugin activation commands for plugins included
  422. # in SpamAssassin 3.0.x releases. It will not be installed if you
  423. # already have a file in place called "init.pre".
  424. #
  425. # There are now multiple files read to enable plugins in the
  426. # /etc/mail/spamassassin directory; previously only one, "init.pre" was
  427. # read. Now both "init.pre", "v310.pre", and any other files ending in
  428. # ".pre" will be read. As future releases are made, new plugins will be
  429. # added to new files, named according to the release they're added in.
  430. ###########################################################################
  431.  
  432. # RelayCountry - add metadata for Bayes learning, marking the countries
  433. # a message was relayed through
  434. #
  435. # Note: This requires the IP::Country::Fast Perl module
  436. #
  437. # loadplugin Mail::SpamAssassin::Plugin::RelayCountry
  438.  
  439. # URIDNSBL - look up URLs found in the message against several DNS
  440. # blocklists.
  441. #
  442. loadplugin Mail::SpamAssassin::Plugin::URIDNSBL
  443.  
  444. # Hashcash - perform hashcash verification.
  445. #
  446. loadplugin Mail::SpamAssassin::Plugin::Hashcash
  447.  
  448. # SPF - perform SPF verification.
  449. #
  450. loadplugin Mail::SpamAssassin::Plugin::SPF
  451.  
  452. ----------------<local.cf>----------------
  453. # This is the right place to customize your installation of SpamAssassin.
  454. #
  455. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  456. # tweaked.
  457. #
  458. # Only a small subset of options are listed below
  459. #
  460. ###########################################################################
  461.  
  462. # Add *****SPAM***** to the Subject header of spam e-mails
  463. #
  464. # rewrite_header Subject *****SPAM*****
  465.  
  466.  
  467. # Save spam messages as a message/rfc822 MIME attachment instead of
  468. # modifying the original message (0: off, 2: use text/plain instead)
  469. #
  470. # report_safe 1
  471.  
  472.  
  473. # Set which networks or hosts are considered 'trusted' by your mail
  474. # server (i.e. not spammers)
  475. #
  476. # trusted_networks 212.17.35.
  477.  
  478.  
  479. # Set file-locking method (flock is not safe over NFS, but is faster)
  480. #
  481. # lock_method flock
  482.  
  483.  
  484. # Set the threshold at which a message is considered spam (default: 5.0)
  485. #
  486. # required_score 5.0
  487.  
  488.  
  489. # Use Bayesian classifier (default: 1)
  490. #
  491. # use_bayes 1
  492.  
  493.  
  494. # Bayesian classifier auto-learning (default: 1)
  495. #
  496. # bayes_auto_learn 1
  497.  
  498.  
  499. # Set headers which may provide inappropriate cues to the Bayesian
  500. # classifier
  501. #
  502. # bayes_ignore_header X-Bogosity
  503. # bayes_ignore_header X-Spam-Flag
  504. # bayes_ignore_header X-Spam-Status
  505.  
  506.  
  507. # Some shortcircuiting, if the plugin is enabled
  508. #
  509. ifplugin Mail::SpamAssassin::Plugin::Shortcircuit
  510. #
  511. # default: strongly-whitelisted mails are *really* whitelisted now, if the
  512. # shortcircuiting plugin is active, causing early exit to save CPU load.
  513. # Uncomment to turn this on
  514. #
  515. # shortcircuit USER_IN_WHITELIST on
  516. # shortcircuit USER_IN_DEF_WHITELIST on
  517. # shortcircuit USER_IN_ALL_SPAM_TO on
  518. # shortcircuit SUBJECT_IN_WHITELIST on
  519.  
  520. # the opposite; blacklisted mails can also save CPU
  521. #
  522. # shortcircuit USER_IN_BLACKLIST on
  523. # shortcircuit USER_IN_BLACKLIST_TO on
  524. # shortcircuit SUBJECT_IN_BLACKLIST on
  525.  
  526. # if you have taken the time to correctly specify your "trusted_networks",
  527. # this is another good way to save CPU
  528. #
  529. # shortcircuit ALL_TRUSTED on
  530.  
  531. # and a well-trained bayes DB can save running rules, too
  532. #
  533. # shortcircuit BAYES_99 spam
  534. # shortcircuit BAYES_00 ham
  535.  
  536. endif # Mail::SpamAssassin::Plugin::Shortcircuit
  537.  
  538. ----------------<local.cf.save>----------------
  539. # This is the right place to customize your installation of SpamAssassin.
  540. #
  541. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  542. # tweaked.
  543. #
  544. # Only a small subset of options are listed below
  545. #
  546. ###########################################################################
  547.  
  548. # Add *****SPAM***** to the Subject header of spam e-mails
  549. #
  550. # rewrite_header Subject *****SPAM*****
  551.  
  552.  
  553. # Save spam messages as a message/rfc822 MIME attachment instead of
  554. # modifying the original message (0: off, 2: use text/plain instead)
  555. #
  556. # report_safe 1
  557.  
  558.  
  559. # Set which networks or hosts are considered 'trusted' by your mail
  560. # server (i.e. not spammers)
  561. #
  562. # trusted_networks 212.17.35.
  563.  
  564.  
  565. # Set file-locking method (flock is not safe over NFS, but is faster)
  566. #
  567. # lock_method flock
  568.  
  569.  
  570. # Set the threshold at which a message is considered spam (default: 5.0)
  571. #
  572. # required_score 5.0
  573.  
  574.  
  575. # Use Bayesian classifier (default: 1)
  576. #
  577. # use_bayes 1
  578.  
  579.  
  580. # Bayesian classifier auto-learning (default: 1)
  581. #
  582. # bayes_auto_learn 1
  583.  
  584.  
  585. # Set headers which may provide inappropriate cues to the Bayesian
  586. # classifier
  587. #
  588. # bayes_ignore_header X-Bogosity
  589. # bayes_ignore_header X-Spam-Flag
  590. # bayes_ignore_header X-Spam-Status
  591.  
  592.  
  593. # Some shortcircuiting, if the plugin is enabled
  594. #
  595. ifplugin Mail::SpamAssassin::Plugin::Shortcircuit
  596. #
  597. # default: strongly-whitelisted mails are *really* whitelisted now, if the
  598. # shortcircuiting plugin is active, causing early exit to save CPU load.
  599. # Uncomment to turn this on
  600. #
  601. # shortcircuit USER_IN_WHITELIST on
  602. # shortcircuit USER_IN_DEF_WHITELIST on
  603. # shortcircuit USER_IN_ALL_SPAM_TO on
  604. # shortcircuit SUBJECT_IN_WHITELIST on
  605.  
  606. # the opposite; blacklisted mails can also save CPU
  607. #
  608. # shortcircuit USER_IN_BLACKLIST on
  609. # shortcircuit USER_IN_BLACKLIST_TO on
  610. # shortcircuit SUBJECT_IN_BLACKLIST on
  611.  
  612. # if you have taken the time to correctly specify your "trusted_networks",
  613. # this is another good way to save CPU
  614. #
  615. # shortcircuit ALL_TRUSTED on
  616.  
  617. # and a well-trained bayes DB can save running rules, too
  618. #
  619. # shortcircuit BAYES_99 spam
  620. # shortcircuit BAYES_00 ham
  621.  
  622. endif # Mail::SpamAssassin::Plugin::Shortcircuit
  623.  
  624. ----------------<v310.pre>----------------
  625. # This is the right place to customize your installation of SpamAssassin.
  626. #
  627. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  628. # tweaked.
  629. #
  630. # This file was installed during the installation of SpamAssassin 3.1.0,
  631. # and contains plugin loading commands for the new plugins added in that
  632. # release. It will not be overwritten during future SpamAssassin installs,
  633. # so you can modify it to enable some disabled-by-default plugins below,
  634. # if you so wish.
  635. #
  636. # There are now multiple files read to enable plugins in the
  637. # /etc/mail/spamassassin directory; previously only one, "init.pre" was
  638. # read. Now both "init.pre", "v310.pre", and any other files ending in
  639. # ".pre" will be read. As future releases are made, new plugins will be
  640. # added to new files, named according to the release they're added in.
  641. ###########################################################################
  642.  
  643. # DCC - perform DCC message checks.
  644. #
  645. # DCC is disabled here because it is not open source. See the DCC
  646. # license for more details.
  647. #
  648. #loadplugin Mail::SpamAssassin::Plugin::DCC
  649.  
  650. # Pyzor - perform Pyzor message checks.
  651. #
  652. loadplugin Mail::SpamAssassin::Plugin::Pyzor
  653.  
  654. # Razor2 - perform Razor2 message checks.
  655. #
  656. loadplugin Mail::SpamAssassin::Plugin::Razor2
  657.  
  658. # SpamCop - perform SpamCop message reporting
  659. #
  660. loadplugin Mail::SpamAssassin::Plugin::SpamCop
  661.  
  662. # AntiVirus - some simple anti-virus checks, this is not a replacement
  663. # for an anti-virus filter like Clam AntiVirus
  664. #
  665. #loadplugin Mail::SpamAssassin::Plugin::AntiVirus
  666.  
  667. # AWL - do auto-whitelist checks
  668. #
  669. #loadplugin Mail::SpamAssassin::Plugin::AWL
  670.  
  671. # AutoLearnThreshold - threshold-based discriminator for Bayes auto-learning
  672. #
  673. loadplugin Mail::SpamAssassin::Plugin::AutoLearnThreshold
  674.  
  675. # TextCat - language guesser
  676. #
  677. #loadplugin Mail::SpamAssassin::Plugin::TextCat
  678.  
  679. # AccessDB - lookup from-addresses in access database
  680. #
  681. #loadplugin Mail::SpamAssassin::Plugin::AccessDB
  682.  
  683. # WhitelistSubject - Whitelist/Blacklist certain subject regular expressions
  684. #
  685. loadplugin Mail::SpamAssassin::Plugin::WhiteListSubject
  686.  
  687. ###########################################################################
  688. # experimental plugins
  689.  
  690. # DomainKeys - perform DomainKeys verification
  691. #
  692. # This plugin has been removed as of v3.3.0. Use the DKIM plugin instead,
  693. # which supports both Domain Keys and DKIM.
  694.  
  695. # MIMEHeader - apply regexp rules against MIME headers in the message
  696. #
  697. loadplugin Mail::SpamAssassin::Plugin::MIMEHeader
  698.  
  699. # ReplaceTags
  700. #
  701. loadplugin Mail::SpamAssassin::Plugin::ReplaceTags
  702.  
  703. ----------------<v312.pre>----------------
  704. # This is the right place to customize your installation of SpamAssassin.
  705. #
  706. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  707. # tweaked.
  708. #
  709. # This file was installed during the installation of SpamAssassin 3.1.2,
  710. # and contains plugin loading commands for the new plugins added in that
  711. # release. It will not be overwritten during future SpamAssassin installs,
  712. # so you can modify it to enable some disabled-by-default plugins below,
  713. # if you so wish.
  714. #
  715. # There are now multiple files read to enable plugins in the
  716. # /etc/mail/spamassassin directory; previously only one, "init.pre" was
  717. # read. Now both "init.pre", "v310.pre", and any other files ending in
  718. # ".pre" will be read. As future releases are made, new plugins will be
  719. # added to new files, named according to the release they're added in.
  720.  
  721. ###########################################################################
  722. # experimental plugins
  723.  
  724. # DKIM - perform DKIM verification
  725. #
  726. # Mail::DKIM module required for use, see INSTALL for more information.
  727. #
  728. # Note that if C<Mail::DKIM> version 0.20 or later is installed, this
  729. # renders the DomainKeys plugin redundant.
  730. #
  731. loadplugin Mail::SpamAssassin::Plugin::DKIM
  732.  
  733. ----------------<v320.pre>----------------
  734. # This is the right place to customize your installation of SpamAssassin.
  735. #
  736. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  737. # tweaked.
  738. #
  739. # This file was installed during the installation of SpamAssassin 3.2.0,
  740. # and contains plugin loading commands for the new plugins added in that
  741. # release. It will not be overwritten during future SpamAssassin installs,
  742. # so you can modify it to enable some disabled-by-default plugins below,
  743. # if you so wish.
  744. #
  745. # There are now multiple files read to enable plugins in the
  746. # /etc/mail/spamassassin directory; previously only one, "init.pre" was
  747. # read. Now both "init.pre", "v310.pre", and any other files ending in
  748. # ".pre" will be read. As future releases are made, new plugins will be
  749. # added to new files, named according to the release they're added in.
  750. ###########################################################################
  751.  
  752. # Check - Provides main check functionality
  753. #
  754. loadplugin Mail::SpamAssassin::Plugin::Check
  755.  
  756. # HTTPSMismatch - find URI mismatches between href and anchor text
  757. #
  758. loadplugin Mail::SpamAssassin::Plugin::HTTPSMismatch
  759.  
  760. # URIDetail - test URIs using detailed URI information
  761. #
  762. loadplugin Mail::SpamAssassin::Plugin::URIDetail
  763.  
  764. # Shortcircuit - stop evaluation early if high-accuracy rules fire
  765. #
  766. # loadplugin Mail::SpamAssassin::Plugin::Shortcircuit
  767.  
  768. # Plugins which used to be EvalTests.pm
  769. # broken out into separate plugins
  770. loadplugin Mail::SpamAssassin::Plugin::Bayes
  771. loadplugin Mail::SpamAssassin::Plugin::BodyEval
  772. loadplugin Mail::SpamAssassin::Plugin::DNSEval
  773. loadplugin Mail::SpamAssassin::Plugin::HTMLEval
  774. loadplugin Mail::SpamAssassin::Plugin::HeaderEval
  775. loadplugin Mail::SpamAssassin::Plugin::MIMEEval
  776. loadplugin Mail::SpamAssassin::Plugin::RelayEval
  777. loadplugin Mail::SpamAssassin::Plugin::URIEval
  778. loadplugin Mail::SpamAssassin::Plugin::WLBLEval
  779.  
  780. # VBounce - anti-bounce-message rules, see rules/20_vbounce.cf
  781. #
  782. loadplugin Mail::SpamAssassin::Plugin::VBounce
  783.  
  784. # Rule2XSBody - speedup by compilation of ruleset to native code
  785. #
  786. # loadplugin Mail::SpamAssassin::Plugin::Rule2XSBody
  787.  
  788. # ASN - Look up the Autonomous System Number of the connecting IP
  789. # and create a header containing ASN data for bayes tokenization.
  790. # See plugin's POD docs for usage info.
  791. #
  792. # loadplugin Mail::SpamAssassin::Plugin::ASN
  793.  
  794. # ImageInfo - rules to match metadata of image attachments
  795. #
  796. loadplugin Mail::SpamAssassin::Plugin::ImageInfo
  797.  
  798. ----------------<v330.pre>----------------
  799. # This is the right place to customize your installation of SpamAssassin.
  800. #
  801. # See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
  802. # tweaked.
  803. #
  804. # This file was installed during the installation of SpamAssassin 3.3.0,
  805. # and contains plugin loading commands for the new plugins added in that
  806. # release. It will not be overwritten during future SpamAssassin installs,
  807. # so you can modify it to enable some disabled-by-default plugins below,
  808. # if you so wish.
  809. #
  810. # There are now multiple files read to enable plugins in the
  811. # /etc/mail/spamassassin directory; previously only one, "init.pre" was
  812. # read. Now both "init.pre", "v310.pre", and any other files ending in
  813. # ".pre" will be read. As future releases are made, new plugins will be
  814. # added to new files, named according to the release they're added in.
  815. ###########################################################################
  816.  
  817. # PhishTag - allows sites to rewrite suspect phish-mail URLs
  818. # (Note: this requires configuration, see http://umut.topkara.org/PhishTag)
  819. #
  820. #loadplugin Mail::SpamAssassin::Plugin::PhishTag
  821.  
  822. # FreeMail - detect email addresses using free webmail services,
  823. # usable as input for other rules
  824. #
  825. loadplugin Mail::SpamAssassin::Plugin::FreeMail
Advertisement
Add Comment
Please, Sign In to add comment