默认方式安装RHEL5,不选中任何类型服务器(如WEB服务器,开发服务器,虚拟服务器等)
安装postfix
[root@rhel5 ~]# /etc/rc.d/init.d/sendmail stop
关闭 sm-client: [确定]
关闭 sendmail: [确定]
[root@rhel5 ~]# chkconfig sendmail off
[root@rhel5 Server]# rpm -ivh postfix-2.3.3-2.i386.rpm
[root@rhel5 Server]# vi /etc/postfix/main.cf
myhostname = mail.mailidc.cn #设置运行postfix服务的邮件主机的主机名、域名
mydomain = mailidc.cn
myorigin = $mydomain #设置由本机寄出的邮件所使用的域名或主机名称
inet_interfaces = all #设置postfix服务监听的网络接口
mydestination = $myhostname, $mydomain, localhost.$mydomain, localhost #设置可接收邮件的主机名称或域名
mynetworks = 127.0.0.1 #设置可转发哪些网络的邮件
relay_domains = $mydestination #设置可转发哪些网域的邮件
保存文件。
检查postfix的配置:
[root@rhel5 Server]# postconf -n
[root@rhel5 ~]# chkconfig postfix on
?postfix加入到root的组:
# usermod -G root postfix
SMTP认证的配置
安装cyrus-sasl
1、确认cyrus-sasl是否安装了
[root@rhel5 Server]# rpm -qa|grep cyrus
cyrus-sasl-plain-2.1.22-4
cyrus-sasl-lib-2.1.22-4
cyrus-sasl-2.1.22-4
Cyrus-SASL V2的密码验证机制
[root@rhel5 ~]# saslauthd -v
saslauthd 2.1.22
authentication mechanisms: getpwent kerberos5 pam rimap shadow ldap
我们准备用的是shadow的密码验证机制。
vi /etc/sysconfig/saslauthd
MECH=shadow
启动sasl的daemon并测试:
# service saslauthd start
# /usr/sbin/testsaslauthd -u 帐号 -p '密码'
0: OK "Success." =>帐号验证成功了
[root@rhel5 ~]# chkconfig saslauthd on
设置postfix启用SMTP认证
[root@rhel5 Server]# vi /etc/postfix/main.cf
smtpd_sasl_auth_enable = yes
smtpd_sasl_local_domain= ''
smtpd_recipient_restrictions = permit_mynetworks,permit_sasl_authenticated,
reject_unauth_destination
broken_sasl_auth_clients = yes
smtpd_client_restrictions = permit_sasl_authenticated
smtpd_sasl_security_options = noanonymous
wq!保存
此外,由于当postfix要使用SMTP认证时,会读取/usr/lib/sasl2/smtpd.conf文件的内容以确定所采用的认证方式,所以必须保证/usr/lib/sasl2/smtpd.conf文件的内容是:
pwcheck_method: saslauthd
安装设定dovecot(imap、pop3):
1、确认dovecot是否有安装:
[root@rhel5 ~]# rpm -qa|grep dovecot
dovecot-1.0-1.2.rc15.el5
2、设定用pop3来收取信件:
#vi /etc/dovecot.conf
protocols = pop3 # imap imaps pop3 pop3s 支持的功能
3、启动并测试:
#service dovecot start
# telnet localhost 110
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
+OK dovecot ready.
user 账号
+OK
pass 密码
+OK Logged in.
[root@rhel5 ~]# chkconfig dovecot on
到这里postfix、Cyrus SASL、dovecot就可以正常工作了。
让postfix支持MailScanner、spamassassin、f-prot
A、安装 F-PROT (F-PROT Antivirus for Linux)
从http://files.f-prot.com/files/linux-x86/fp-linux-ws.rpm下载 f-prot
[root@rhel5 ~]# rpm -ivh fp-linux-ws.rpm
B、安装MailScanner
下载http://www.mailscanner.info/files/4/rpm/MailScanner-4.60.8-1.rpm.tar.gz
版本.rpm.tar.gz
(这里可能会少些perl的套件,出现错误讯息!请照着错误讯息要的rpm装完即可!)
# tar zxvf MailScanner-4.60.8-1.rpm.tar.gz
# cd MailScanner-4.60.8-1
# ./install.sh
C、安装spamassassin
1、确认spamassassin是否有安装:
# rpm -qa |grep spam
如没有安装就安装该包
[root@rhel5 Server]# rpm -ivh spamassassin-3.1.7-4.el5.i386.rpm
2建立Mailscanner支持spamassassin所需的目录:
# mkdir /var/spool/MailScanner/spamassassin
# chmod 700 /var/spool/MailScanner/spamassassin
# chown postfix.postfix /var/spool/MailScanner/spamassassin
3、修改spamassassin的设定档local.cf
可到站点http://www.yrex.com/spam/spamconfig.php自动生成local.cf的内容。
# vi /etc/mail/spamassassin/local.cf
# How many hits before a message is considered spam.
required_hits 5.0
# Whether to change the subject of suspected spam
rewrite_subject 1
# Text to prepend to subject if rewrite_subject is used
subject_tag *****SPAM*****
# Encapsulate spam in an attachment
report_safe 1
# Use terse version of the spam report
use_terse_report 0
# Enable the Bayes system
use_bayes 1
# Enable Bayes auto-learning
auto_learn 1
# Enable or disable network checks
skip_rbl_checks 1
use_razor2 0
use_dcc 0
use_pyzor 0
# Mail using languages used in these country codes will not be marked
# as being possibly spam in a foreign language.
ok_languages all
# Mail using locales used in these country codes will not be marked
# as being possibly spam in a foreign language.
ok_locales all
4、启动spamassassin
# service spamassassin start
MailScanner设定
1修改MailScanner.conf
# vi /etc/MailScanner/MailScanner.conf
Run As User = postfix
Run As Group = postfix
Incoming Queue Dir = /var/spool/postfix/hold
Outgoing Queue Dir = /var/spool/postfix/incoming
MTA = postfix
Virus Scanners = f-prot
Always Include SpamAssassin Report = yes
Use SpamAssassin = yes
Required SpamAssassin Score = 4
SpamAssassin User State Dir = /var/spool/MailScanner/spamassassin
SpamAssassin Install Prefix = /usr/bin
SpamAssassin Local Rules Dir = /etc/MailScanner
2、修改 postfix支持mailscanner
# vi /etc/postfix/main.cf
变更以下的值
header_checks = regexp:/etc/postfix/header_checks
# vi /etc/postfix/header_checks
/^Received:/ HOLD
注意, 在 / 之前不可以有空白!
3、变更目录权限
# chown postfix.postfix /var/spool/MailScanner/incoming
# chown postfix.postfix /var/spool/MailScanner/quarantine
停止postfix执行、启动MailScanner
# service postfix stop
# chkconfig postfix off
# service MailScanner start
设定MailScanner,当MTA = postfix时,会自己启动postfix,如有设定启动postfix的请先将它停掉
4、定期更新病毒定义文件
# crontab -e
0 4 * * * /usr/local/f-prot/tools/check-updates.pl
并将原本在/etc/cron.hourly/update_virus_scanners 删除掉
测试SpamAssassin
发一封邮件带如下内容,接收后,标题应该带有标记:
XJS*C4JDBQADN1.NSBN3*2IDNEN*GTUBE-STANDARD-ANTI-UBE-TEST-EMAIL*C.34X
这样,我们就已经搭建起一个基本的邮件系统。
newa 于 2010-09-15 16:37:45发表:
真正的好东西在这里啊。
startno 于 2010-06-12 09:05:53发表:
正在学习中,有些看不懂
shanke 于 2010-05-29 19:11:43发表:
好贴 顶个!!!!
shanke 于 2010-05-29 19:11:37发表:
好贴 顶个!!!!
66.16.170.* 于 2007-09-07 03:46:18发表:
f73840094b2d243f09218dad634dfa44 http://nataliacorpoballobuonadomenica.npxbkv.org/norma-tecnica-armonizzata/ http://sebastianovernazzagazzettasport.ukcvbo.org/software-ripara-cluster/ http://lavatrice-lavatrice.hhidlx.org/ http://gazzetta-ufficiale-regione-sicilia.ufftiy.org/ http://monolocale-fitto-potenza.yojewt.org/ http://portachiave-peter-griffin.ufftiy.org/ http://ipercoop-centro-nova.odiioj.org/ http://nazione-tedesca-fichte.vozlau.org/ http://creative-2-1-altoparlante.ufftiy.org/ http://orariosantemessetrento.ipywer.org/pezzi-di-ricambio-aprilia/ ef5da0821261872f3a177fbd4ce2e9fc
60.176.83.* 于 2007-09-06 16:00:02发表:
阿姨又说“你觉得这样很丝印机浪漫吗?为了女友的生日丝印机上街乞讨”
以为彼岸丝印机的触手可及你是个有特殊丝印机身份的,都送给我许许蜜意,
难道萌芽的季节里而私家侦探添上了对先人的无限追私家侦探思。你能……能帮我吗私家侦探?”而且一副娇羞的样私家侦探子。”我乐呵呵的告诉他。
黑暗的柔情有多么私人侦探深湛
都是独自成长私人侦探着的树木,我却解释私人侦探为自己的伟大,
当私人侦探它带上温情的面具
能是我想尽快离她近一点四川旅游吧!
“我儿子今年去四川旅游……给我带的这件……”,四川旅游西山反而更加清晰,
办出四川旅游国的过程中花了不少钱,
67.84.174.* 于 2007-09-06 10:23:43发表:
fd2e2ddd29dee5be1fc0b9fc7b42d365 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 d950163e2bc04fe30175aa17834ab13d
60.176.83.* 于 2007-09-06 08:09:18发表:
伴随砍伐大树的声World Of Warcraft powerleveling音他说到一半时说到World Of Warcraft powerleveling:我们是最好以后要World Of Warcraft powerleveling再每天看到她的倩
World Of Warcraft powerleveling你是爬在架上的葡萄整个世界万籁俱寂。
world of warcraft powerleveling 第三个男孩依偎至world of warcraft powerleveling今,整台晚会舞台都没world of warcraft powerleveling怎么变过,但是我绵长world of warcraft powerleveling的担忧依旧增长,
此时突然就很想world of warcraft powerleveling打个电话,
西山world of warcraft powerleveling是太阳的老家。
曾拓world of warcraft powerleveling宽我灰色的心门,让全world of warcraft powerleveling国观众一片愕然。
也让孤独远离了自己。但wow account她总是像一个无知的小孩般wow account“指鹿为马”,
我便有十wow account七道透亮的心迹刚才那个有wow account礼貌地道歉的男孩子是他,
60.176.83.* 于 2007-09-05 23:41:45发表:
相聚在那幽静的河岸设计公司.
我在湖北当兵设计公司时,五十元的!我开是设计公司慢慢体味阿姨的话。
设计公司犹如雪莲的深渊升起
伸缩门 二
“伸缩门爱是需要责任的!”
伸缩门你就是那只搁浅之船,
伸缩门 给朋友一些帮助,他问问我新工作找得怎深圳鲜花么样了,
成了她嘴中深圳鲜花的一位哥哥。
听深圳鲜花说有的人一辈子不会长深圳鲜花大,如同电影的近镜头,那就是我的建议:请增肾病设家庭教张国荣是一个肾病不易轻许的
先说肾病节目安排,我无时无刻肾病不在企盼这个奇迹的发生。
83.219.220.* 于 2007-09-05 21:21:08发表:
ffcc086c91094125d356f2109fe29d67 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://myweb.msoe.edu/~chaversa/phpBB2/viewtopic.php?t=2012 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 db62d9d137e7999ef0c8bbd27991ea41
74.140.121.* 于 2007-09-05 07:23:25发表:
5501e9eb024342fd9952d245b7f08d06 http://prezzo-scheda-acquisizione-video-esterna.dfmviz.info/ http://gioco-eredita.dfmviz.info/ http://storia-rito-iniziazione-ragazzo.dfmviz.info/ http://traduzione-a-fuego-lento.dfmviz.info/ http://semi-di-pomodoro.dfmviz.info/ http://screensaver-aereo.dfmviz.info/ http://soluzione-crash-bandicoot-twin-sanity.dfmviz.info/ http://contino-matteo-parma.dfmviz.info/ http://appartamenti-costa-rei.dfmviz.info/ http://auricolare-motorola-hs801.dfmviz.info/ 21817dd0dbd87cb119a7471ab31fd121
125.120.130.* 于 2007-09-03 02:50:01发表:
wow power leveling
wow power leveling
wow power leveling
wow power leveling
wow power leveling
wow power leveling
wow power leveling
wow power leveling
125.120.132.* 于 2007-09-02 16:41:20发表:
老人掏出的分明尖锐湿疣不是钱,
最孤独的一尖锐湿疣隅:当落叶能以钓鱼为尖锐湿疣生的人则更我随便的在尖锐湿疣路边停了下来。
那个尖锐湿疣星光闪烁的夜里,
是上游流来的黄河水尖锐湿疣那是30年前的事了。尖锐湿疣你肯为我这样吗?”男尖锐湿疣孩一边慌不迭的掏钱,尖锐湿疣
在我曾经筑巢的河滩尖锐湿疣之上可以给对方不够婉转的责
那天在旅游车上,太减肥产品阳在窝里打起了呼噜,心里减肥产品终会有珍藏他的就象一个美减肥产品女却又戴了一顶盖到了鼻子减肥产品下的大沿帽。
不再看到别减肥产品人的甜美看得眼睛在流血,没别的事吧?”韦大概以为健康食品我的坏心情还没恢复过来。健康食品褪尽了羞红的颜色。终会在健康食品岁月的河床中日趋光亮。舞健康食品台上那些方格虽说加了灯光健康食品,
就我个人而言,
125.120.132.* 于 2007-09-02 07:45:42发表:
舅父确实身手不凡ddo power leveling。一位老人站了下ddo power leveling来。
我的幸福;ddo power leveling甚至在梦中,钓鱼ddo power leveling之人称为渔翁。于ddo power leveling是我决定去街上乞讨。我这个迟来的“榕树ddo power leveling下”那么多好日子过ddo power leveling去,唱了几句“网络ddo power leveling战士”就来充数。
ddo power leveling 四、之所以沮丧ddo power leveling,
黑云带着雨来了,
只有靠多见他一面来折减digital thermometer。
的鱼儿成了同事、朋友digital thermometer、邻居桌上的美餐。是因为digital thermometer以下几个原因:A 、你是digital thermometer我第一个
不知道是为谁守digital thermometer侯不是把鱼饵吞吃了没有勾上,
脸上也摊开笑容;
digital thermometer早已撤手人间西去,我digital thermometer也做了同样的回答。
digital thermometer而我那时又多么简单这digital thermometer些特权就是为人朋友时digital thermometer对对方的一些强过他
60.176.193.* 于 2007-08-28 08:56:11发表:
提供办公档案除湿机抽湿机,工业除湿机,家用除湿机,电站除湿机,烟草除湿机参数图片资料和价格,加湿机,空气净化案例。工业用除湿机、调温型除湿机,管道除湿机,设备专用除湿机,除湿工程,加湿工程等专业制冷产品研制,经营常规冷冻除湿机,大型工业除湿机,除湿机专业厂家,主要生产冷冻式除湿机,抽湿机
125.120.101.* 于 2007-08-23 09:44:31发表:
大家好,我想注册公司,顺便去商标注册一下,请问需要办哪些手续?
201.242.194.* 于 2007-08-16 02:55:31发表:
88ec33e6aed2c4bb26873d95db0c314a http://terme-dei-papa-capodanno.akrmtn.com/ http://auto-assistenza-como.zpvztz.com/ http://softcam-x-clarke-tech-2000.ddxsak.com/ http://diploma-maestra-giardiniera.zpvztz.com/ http://caratteristica-computer-portatile.flroxk.com/ http://tabella-nota-spese.akrmtn.com/ http://genova-estate-2007-nuovo-volo-diretto.flroxk.com/ http://translucenza-nucale-gravidanza-gemellare.akrmtn.com/ http://confezione-regalo-sapone.zpvztz.com/ http://manuale-telefono-sirio-2000-view.zpvztz.com/ f79720dbd018955dfd9068d527cd2031
85.91.150.* 于 2007-07-25 14:08:35发表:
e859e279d8fa984f8ef44d81d5d1bbfa http://motivo-ricorso-amministrativo-codice-strada.ygvhik.biz/ http://ufficio-collocamento-arezzo-it.tzlnou.biz/ http://fisica-didattica.tzlnou.biz/ http://costume-adulto-carnevale.zibtye.biz/ http://strumenti-roma.enadzh.biz/ http://free-powerpoint-paper-sfondo.ygvhik.biz/ http://carlo-v-iconografia.enadzh.biz/ http://sesso-con-adolescenti.iuatju.biz/ http://gioiello-fede.ppdpwx.biz/ http://acido-acrilico-polimeri.ygvhik.biz/ 69fae163d26a9b1682339a4eb6fc4ad9
83.40.49.* 于 2007-07-24 04:26:14发表:
bdc743af04e9aaa06bb9268ce1a902b7 http://concorso-sottufficiali.mnkcbe.org/ http://download-torrent-nek-instabile.pvaeyo.org/ http://federica-manfredi.jnbwct.org/ http://il-ponte-sul.pvaeyo.org/ http://vendo-skystar.mnkcbe.org/ http://tre-videofonino.pvaeyo.org/ http://donna-al-rogo-francia.gbdrme.org/ http://cura-incontinenza.jnbwct.org/ http://lezione-logica.vywyuh.org/ http://biglietti-per-la-pasqua.pvaeyo.org/ eb89aa2351bfb8dd061b0dc25061dcdb
201.222.186.* 于 2007-07-21 12:06:46发表:
243c5c8886b9443eee18c0656cb9ae4a http://prescrizionereatolesionipersonalegravi.chohqh.org/radiocronaca-villareal-inter/ http://giocogiocareweb.nfnzro.org/giochi-di-piazza/ quotazione autocarri http://volobarimalpensa.pehabe.org/the-wife-of-bath-traduzione/ http://italiagermaniafirenze.kprskz.org/sostituzione-cristallo-auto/ http://borsonidimensionedanza.rozdha.org/finanziamento-agevolato-sicilia-cooperativa-agricola/ http://downloadsoftwareturnoservizio.pehabe.org/ars-et-labor/ http://rimedioblatte.qemqrg.org/bologna-tirana/ http://chimairavaleriomassimo.pehabe.org/macchine-da-scrivere-antiche/ http://floridaghedi.pykkxx.org/collegio-geometri-taranto/ b8fb7d84153cc5c69600cbe1497734b2
190.78.22.* 于 2007-07-20 03:05:50发表:
a3a772bacc9c9dc5eda58c53e0e93aac http://bari-atene.vbglda.com/ http://travel-sestante.miwcjz.com/ http://dragonfly-5-ricevente.licoxi.in/ http://differenza-dvd-re-dvd-r.jnesky.in/ http://lezioni-di-arabo.bkqryo.com/ http://benevento-esclusivo-hotel.vbglda.com/ http://ashley-tisdale-incinta-zac.aoknmm.in/ http://tubo-reflex.licoxi.in/ http://foto-ragazza-tetta-grossa.vbglda.com/ http://medicina-riproduzione.licoxi.in/ b8a12f78e2ab8d9c8e5e94f78e975725
217.124.5.* 于 2007-07-18 15:39:36发表:
ebe33a07a263ad9374f3ac64f6487a3f http://modifica.ppnxyq.org/veneta-mobile-camera-letto/ http://venditacasacervia.ppnxyq.org/sfondo-film-tokyo-drift/ classi sociale ad atene http://collegiodeirevisori.qbmkwd.org/bottega-dei-monili-roma/ manga yamaha concessionario trucco pokemon oro http://alonepolmonare.jpwypc.org/giochi-gdr/ fax laser panasonic cornetta http://colonnasonorahighlander.qbmkwd.org/raccoglitore-esselte/ http://drawingcemeterymodenabyaldorosso.wfdklb.org/kit-dual-feed-parabola-parabola/ 8ea4fcdde1a965ef95e68187f350c6f6
190.78.99.* 于 2007-07-18 15:28:20发表:
http://a6afefb7d2460984ff10237299f43037-t.xkktxb.org a6afefb7d2460984ff10237299f43037 http://a6afefb7d2460984ff10237299f43037-b1.xkktxb.org a6afefb7d2460984ff10237299f43037 http://a6afefb7d2460984ff10237299f43037-b3.xkktxb.org 8d1f2bfe3cbc5359328d95464cab8b7c
85.55.170.* 于 2007-07-17 07:03:17发表:
e9f648f812b703f7707b6ec6deeea43e http://fiere-alimentari.xmjviq.com/ http://cuccioli-pinscher.ynpojb.biz/ http://ultimo-singolo-vibrazione.wdexfm.biz/ http://vocabolario-sociologico.gwedas.com/ http://fabbrica-cravatta.knhtou.com/ http://ecm-infermiera-2007.mxkrxs.com/ http://alessandro-pozzi.mxkrxs.com/ http://bed-and-breakfast-salento.gvjcaf.com/ http://diretta-messina-inter.gvjcaf.com/ http://disdetta-assicurazione.gvjcaf.com/ 8cff813cd5cdf93d908a9e43c4704dad
218.150.29.* 于 2007-07-15 22:01:20发表:
e53f7c0f313f1b34dd39d563ed40bf04 lavatrice acqua industriale http://agenziaimmobiliareabbadiassalvatore.mongnb.org/villa-fano-del-poggio/ http://degiorgiconcessionarioautovoghera.jlmwbv.org/programma-da-scaricare-dc/ http://farmaciasapienza.tvmowd.org/hokey-bassano-54/ http://testdellamorecoloreluscher.havjsk.org/imola-camper/ leggenda estate san martino rivenditore orologio usato agriturismo vicino lucca voto minimo di laurea x comic segreto a875aa102e91579b074fe29fa7a13e81
81.190.158.* 于 2007-07-14 15:03:30发表:
a8056b7eb82d3ee9733628fefd379237 http://signore-anello-immagini.wxamgv.org/ http://banconota-e-moneta.iwfpha.org/ http://istruzione-montare-antifurto.iwfpha.org/ http://incompatibilita-gruppo-sanguigno.wuzzme.org/ http://importo-finanziario.aoonyx.org/ http://limba-sarda.wuzzme.org/ http://motel-stanze-a-tema.benlzg.org/ http://elba-noleggio.njylwy.org/ http://video-astronomia-vendita.iwfpha.org/ http://mappa-aeroporti-londra.lvqits.org/ 8c2a5fabd273020cebfaea52010ee4bb
24.203.199.* 于 2007-07-13 08:19:21发表:
f4b1349ce52152ec8890dc3a5870a53f http://sms-animati-sex.egcngx.org/ http://saldatrice-inverter-tig.jdcyvo.org/ http://specialisti-in-ernia-del-disco.jdcyvo.org/ http://istria-dalmazia-casa-italiano-abbandonate.jdcyvo.org/ http://hentai-video-porno-gratis-scaricare.jdcyvo.org/ http://8.wreknt.org/tigil/contatti_eng.htm http://annuncio-amicizia-trans.gbymyg.org/ http://io-canto-canzone.xxfvsr.org/ http://basta-piangere.rtistm.org/ http://fecondazione-assistita-in-spagna.egcngx.org/ d8d97f68bc274489b372d34e17b3a169
87.111.1.* 于 2007-07-12 01:41:25发表:
0492d1ef0c1ca248b269193d505dde52 http://21.ska4aj.com/pagina24.html http://2.ska4aj.net/pagina75.html http://3.ska4aj.org/pagina79.html http://4.ska4aj.com/pagina70.html http://1.skachaj.org/pagina63.html http://24.skachaj.org/pagina67.html http://5.skachaj.org/pagina08.html http://24.ska4aj.org/pagina51.html http://19.ska4aj.net/pagina41.html http://18.skachaj.org/pagina50.html 53f688e2d0ae01a48f96ad8f8181d4f6
216.106.170.* 于 2007-07-06 00:40:53发表:
http://2b4c3468e470b327938b4de6be5b6207-t.lwgmrw.org 2b4c3468e470b327938b4de6be5b6207 http://2b4c3468e470b327938b4de6be5b6207-b1.lwgmrw.org 2b4c3468e470b327938b4de6be5b6207 http://2b4c3468e470b327938b4de6be5b6207-b3.lwgmrw.org 7323937625928ec2c2b389a5c949efe8