构建反病毒反垃圾邮件系统(六)

来源:云南设计港 时间:2007-10-08 13:50:00 

安装四个下载的软件包:

#dpkg-i*.deb

修改/etc/amavis/amavisd.conf:
  


  @inet_acl=qw(127/81.2.3.4/32);#1.2.3.4isyourexternalip..becausewantmaybealsoacceptmailfromthatin-terface,it'suptoyou.
  $warnvirussender=1;#Iwanttowarnpeople,whohavegotvirus.
  $warnvirusrecip=1;#Iwanttowarnmyusersaboutvirussendtothem.
  $warn_offsite=1;#Iwanttowarnsenders/recipients,thatarenotlocatedonmyserver
  $mailfrom_notify_admin='virusalert@example.com';#
  $mailfrom_notify_recip='virusalert@example.com';#Changethesetotheappropriateemail-adresses,youwishtouseassender
  $mailfrom_notify_spamadmin='spam.police@example.com';#forspamandviruswarnings
  $hdrfrom_notify_sender='AMaViS(contentfilter)<postmaster@example.com>';
  $virus_admin='virus-admin@example.com';#
  $spam_admin='spam-admin@example.com';#

  
指定使用uvscan:
  


  @av_scanners=(
  
  ['NAIMcAfeeAntiVirus(uvscan)','uvscan',
  '--secure-rv--summary--noboot{}',[0],[13],
  qr/(?x)Found(?:
  \the\(.+)\(?:virus|trojan)|
  \(?:virus|trojan)\or\variant\([^]+)|
  :\(.+)\NOT\a\virus)/],
  
  );

  
找到/etc/postfix/master.cf如下行:

smtpinetn-n--smtpd

改为如下:
  


  smtpinetnnn--smtpd-ocontent_filter=smtp-amavis:[127.0.0.1]:10024
  smtp-amavisunix--n-2smtp
  -osmtp_data_done_timeout=1200
  -odisable_dns_lookups=yes
  127.0.0.1:10025inetn-n--smtpd
  -olocal_recipient_maps=
  -osmtpd_restriction_classes=
  -osmtpd_client_restrictions=
  -osmtpd_helo_restrictions=
  -osmtpd_sender_restrictions=
  -osmtpd_recipient_restrictions=permit_mynetworks,reject
  -ostrict_rfc821_envelopes=yes

  
重启postfix,这样在收到病毒邮件的时候能够在日志文件看到如下的信息:
  


  Jul1615:34:22xxxamavis[30997]:(30997-09)INFECTED(W32/Nimda.gen@MM),(?)-><xxx@xxx.org>,quarantinevirus-20030716-153422-30997-09,Message-ID:<20030716073414.520D3E5C2F@xxx>

  
三、防垃圾邮件部分

垃圾邮件的防范必须掌握好尺度,postfix本身提供了header_check、body_check、access、classes等方式来拒绝邮件,可以参考如下地址的样例,结合自己的情况进行修改也能阻止一部分垃圾邮件:
  


  http://www.XXXX.com/guides/postfix_uce_header.html
  http://www.XXXX.com/guides/postfix_uce_body.html
  http://www.XXXX.com/guides/postfix_uce_access.html
  http://www.XXXX.com/guides/postfix_uce_class.html

  
不过以上配置文件需要管理员根据自己情况手工进行修改,如果直接采用的话,那么国内很多邮件你将收不到。

SpamAssassin和AMaViS可以很好的结合,它能够帮管理员自动处理一些垃圾邮件。SpamAssassin很有趣,它对解码后的邮件进行扫描后打分,如果分数达到用户指定的分数,那么就认为是垃圾邮件,而且它还有学习功能,管理员也可以自己重新定义各种分值或自定义分值。

1、SpamAssassin的安装

由于已经安装了AMaViS,所以自然就选择了SpamAssassin。SpamAssassin可以通过CPAN安装:

#perl-MCPAN-eshell

installMail::SpamAssassin

2、SpamAssassin配置

创建/var/lib/amavis/.spamassassin/user_prefs文件:
  


  #SpamAssassinconfigfileforversion2.5x
  #generatedbyhttp://www.yrex.com/spam/spamconfig.php(version1.01)
  
  #Howmanyhitsbeforeamessageisconsideredspam.
  required_hits5.0
  
  #Whethertochangethesubjectofsuspectedspam
  rewrite_subject1
  
  #Texttoprependtosubjectifrewrite_subjectisused
  subject_tag*****SPAM*****
  
  #Encapsulatespaminanattachment
  report_safe1
  
  #Useterseversionofthespamreport
  use_terse_report0
  
  #EnabletheBayessystem
  use_bayes1
  
  #EnableBayesauto-learning
  auto_learn1
  
  #Enableordisablenetworkchecks
  skip_rbl_checks1
  use_razor20
  use_dcc0
  use_pyzor0
  
  #Mailusinglanguagesusedinthesecountrycodeswillnotbemarked
  #asbeingpossiblyspaminaforeignlanguage.
  #-chineseenglish
  ok_languageszhen
  
  #Mailusinglocalesusedinthesecountrycodeswillnotbemarked
  #asbeingpossiblyspaminaforeignlanguage.
  ok_localesenzh

标签:
0
投稿

猜你喜欢

  • SEO后遗症:如何把从搜索引擎来的用户留下?

    2009-02-27 10:19:00
  • shell脚本中常见的一些特殊符号和作用详解

    2022-05-04 16:04:41
  • Linux内存泄漏检测shell脚本

    2023-11-02 15:53:25
  • Apache配置文件中的deny与allow小结

    2021-01-07 18:29:28
  • wordpress的论坛插件bbPress v2.0 正式版发布

    2011-09-26 20:35:14
  • Linux中配置双机SSH信任 操作说明

    2023-08-15 15:53:05
  • yum安装本地rpm软件方案详解

    2023-11-03 00:48:26
  • 解除baidu和google封杀的方法

    2007-12-27 20:27:00
  • 什么样的网站放Google AdSense最理想

    2007-10-12 19:09:00
  • Google AdSense 提升网站广告收益秘技大公开

    2009-04-16 15:15:00
  • IE8无法上传图片的解决办法

    2011-01-25 12:43:00
  • .htaccess绑定域名到子目录的方法

    2023-11-04 22:42:20
  • PCadvisor:苹果设计史上16个梦幻产品设计

    2009-11-07 08:14:00
  • PHPWind v7.3.2邮件地址设置为不可见但仍可见问题

    2009-05-31 17:20:00
  • 比上帝还流行 最受欢迎10大圣诞礼物

    2008-12-16 13:45:00
  • 网站安全需求分析

    2009-06-01 09:02:00
  • 风絮无影:80-08穷则思变(80后的思考)

    2008-01-02 13:03:00
  • vmware workstation安装windows server 2019(图文教程)

    2023-03-20 11:17:12
  • 56.com 视频网站访问出现问题分析

    2008-06-04 12:45:00
  • 我们需要什么样的网站数据

    2010-08-29 17:59:00
  • asp之家 网站运营 m.aspxhome.com