Home arrow Downloads
Main Menu
Home
Blog
Downloads
Forum
Link
Search
Category
Mobile
PHP
Google
Joomla
Cygwin
I-Apply
Linux
Plagger
Internet
Other
What's New
Recommend
RSS
E-Pagerank
Postfixで、GMAIL経由でメールを送る(OP25B対策)
Writte by Administrator   
2007/01/22 月曜日 12:01
Tag it:
Hatena
Delicious
Spurl
blogmarks

Postfixで、GMAIL経由でメールを送る(OP25B対策)

しばらく前から、サーバからメールが送れない現象が続いてた。
なんらかの設定を変えてしまったせいなのかと思っていた。

時間もなかったことで、調べずに放置していたのだがPlaggerを
入れたのをきっかけで調べてみた。(PlaggerでGMAILにメールを
送信したかった)


調べたところ、どうやらサーバの設定ではなくOP25Bのせいだと
いうことがわかった。

そこで、OP25B対策としてGMAILを経由してメールを送信する
ように設定を変更した。

OP25Bについてはこちら


ログを見ながら進めた作業内容を書いているため、解りにくくなってるいるために、
さくっと、設定をしたい場合はまとめ(ページ最後)を見るといいかもです

Postfixの設定変更

まず、Postfixの設定ファイルに、GMAIL経由でメールを送信
するように設定を行う。

sasl_passwdファイルの作成

sasl_passwd(任意のファイル名でOK)というファイルを作成し、
そこにGMAILのSMTPサーバ、ユーザ名、パスワードを記述する。

$ cd /etc/postfix
$ vim sasl_passwd

[smtp.gmail.com]:587 [username]@gmail.com:[password] 


sasl_passwdファイルをpostmapコマンドを使い、DB化

$ postmap sasl_passwd

main.cfの書き換え
$ cp main.cf main.cf.bak
$ vim main.cf

# (以下を追加)
relayhost=[smtp.gmail.com]:587

smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = noanonymous
smtp_sasl_mechanism_filter = plain


Postfixの設定変更反映

$ /etc/init.d/postfix reload


メールを送信してみる

メールを送信するのに以下のような適当なシェルとメール本文を
作成してメールの送信テストを行った。


$ vim testsendmail.sh
#!/bin/bash
cat test.mail |iconv -f eucJP -t ISO-2022-JP | /usr/sbin/sendmail -t -oi

$ vim test.mail
From: このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい
To: このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい
Subject: test
Mime-Version: 1.0
Content-type: text/plain; charset=iso-2022-jp

test hogehoge


TLSの設定
送ってみたものの、どうも上手く送信できていないようだ。
ということで、ログを見てみる。

$ tail -f /var/log/maillog


そこで以下の様なメッセージが出力されていた。

Must issue a STARTTLS command first i16sm1895070wxd


どうやら、うまくTLSでGMAILとのやりとりが出来ていないようである。
ということで、よくも解らず以下のコマンドを行ってみた。

$ apt-cache search sasl
$ apt-get install cyrus-sasl

(インストール済みだった)


どうも調べてみると、TLSの設定というのが必要なようである。
そこで、Postfixの設定で以下を追加してやった。

$ vim /etc/postfix/main.cf
(以下を追加)
#tls setting
smtp_use_tls = yes

再度メール送信

再度メールを送信してみるもののこれでもやはり、メールが
送信出来ていなかった。


ログを確認してみると以下のように出力されている。
(編集してあります)

 
> gmail-smtp.l.google.com[64.233.185.111]: EHLO [server domain]
 < gmail-smtp.l.google.com[64.233.185.111]: 250-mx.google.com at your service, [125.197.170.81]
 < gmail-smtp.l.google.com[64.233.185.111]: 250-SIZE 20971520
 < gmail-smtp.l.google.com[64.233.185.111]: 250-8BITMIME
 < gmail-smtp.l.google.com[64.233.185.111]: 250-AUTH LOGIN PLAIN
 < gmail-smtp.l.google.com[64.233.185.111]: 250 ENHANCEDSTATUSCODES
 match_string: LOGIN ~? plain
 match_list_match: LOGIN: no match
 match_string: PLAIN ~? plain
 server features: 0x102b size 20971520
 maps_find: smtp_sasl_passwd: hash:/etc/postfix/sasl_passwd(0,100): gmail-smtp.l.google.com = [username]@gmail.com:[password]
 smtp_sasl_passwd_lookup: host `gmail-smtp.l.google.com' user `[username]@gmail.com' pass `[password]'
 starting new SASL client
 name_mask: noanonymous
 smtp_sasl_authenticate: gmail-smtp.l.google.com[64.233.185.111]: SASL mechanisms PLAIN
 warning: SASL authentication failure: No worthy mechs found
 A59CF163B7E: Authentication failed: cannot SASL authenticate to server gmail-smtp.l.google.com[64.233.185.111]: no mechanism available
 > gmail-smtp.l.google.com[64.233.185.111]: QUIT

このログを見ると、どうやらAUTHがのメカニズムがGMAILとこちらで
マッチしていないようである。

GMAILから要求されいてうるAUTHが
LOGIN PLAINである。
 < gmail-smtp.l.google.com[64.233.185.111]: 250-AUTH LOGIN PLAIN
(上記ログより) 


こちらの設定では、PLAINに設定がされている。

smtp_sasl_mechanism_filter = plain
(main.cfより)


「no mechanism available」とログが出力されていることから、
本当にPLAINが入っているのかということで確認をしてみる。


Cyrus sasl plinのインストール


$ apt-cache search cyrus
$ apt-get install cyrus-sasl-plain


ということで、インストール後にメールを送信したところ、
無事メールが送信できるのが確認できた。

 

まとめ

わかりにくくなってしまったために、行った作業についてまとめを行う。


sasl_passwd作成
$ vim /etc/postfix/sasl_passwd
[smtp.gmail.com]:587 [username]@gmail.com:[password]

sasl_passwdのdb化
$ postmap sasl_passwd

main.cfの設定追加
$ vim /etc/postfix/main.cf
(以下の設定を追加)
relayhost = [smtp.gmail.com]:587

#sasl setting
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = noanonymous
smtp_sasl_tls_security_options = noanonymous
smtp_sasl_mechanism_filter = plain
#tls setting
smtp_use_tls = yes

cyrus-sasl-plainのインストール
$ apt-cache search cyrus
$ apt-get install cyrus-sasl-plain


* 補足
DEBUGログの見方
$ vim /etc/postfix/main.cf
(以下の設定を追加)
debug_peer_level = 2
#debug_peer_list = smtp.gmail.com
#debug_peer_list = gmail-smtp.l.google.com

追記:

以上の設定でGMAIL経由でメールを送ることは出来る。
が、このままだと送ったメールのFromが全てGMAILのメールに
なってしまう。

その対策を行う。
GMAILを開き、「設定」->「アカウントの設定」で、「他のメ
ールアドレスを追加」。

ここで、Fromに使いたいメールアドレスを追加してあげると、
送信したメールのFromもそれになる。

いくつも、メールアドレスを持っている場合は、それぞれこの
画面にて追加してあげればよい。

Tag it:
Hatena
Delicious
Spurl
blogmarks

Add as favourites (78) | Quote this article on your site | Views: 9064

  Comments (10)
 1 Written by Nguyen Vu Hung, on 29-05-2008 17:29 , IP: 218.225.89.15
参考しました。 
「まとめ」は非常にわかりやすいです。 
ありがとうございます。
 2 Comment 25 639
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 25-07-2008 13:37 , IP: 91.121.165.32
Hiselloo , [URL=http://707.chaos.az.pl]cheapest airline ticket to usa[/URL], [URL=http://380.transliterate.az.pl]home improvement loan from the federal government[/URL], [URL=http://917.chaos.az.pl]open ended airline ticket[/URL], [URL=http://860.thriftlessness.az.pl]ho scale slot car jeff gordon[/URL], [URL=http://42.transliterate.az.pl]loan officer postions in san diego ca[/URL], [URL=http://459.learn.az.pl]pogo free online slots[/URL], [URL=http://1044.learn.az.pl]reel deal slots nickels torrent[/URL], [URL=http://797.transliterate.az.pl]mortgage loan originator training in wisconsin[/URL], [URL=http://1017.subterfuge.az.pl]xanax overnight with visa gift card[/URL], [URL=http://270.learn.az.pl]real deal slots exe crack[/URL], [URL=http://31.learn.az.pl]http://31.learn.az.pl[/URL], [URL=http://591.learn.az.pl]wwwvegas slots for sale tripple double cash.com[/URL], [URL=http://1342.subterfuge.az.pl]xanax xr[/URL], [URL=http://942.transliterate.az.pl]nj law on non payment of car loan[/URL], [URL=http://242.subterfuge.az.pl]http://242.subterfuge.az.pl[/URL], [URL=http://130.transliterate.az.pl]ez auto loan[/URL], [URL=http://1023.pristidae.az.pl]agency dating montreal[/URL], [URL=http://283.learn.az.pl]play free video slots online[/URL], [URL=http://800.thriftlessness.az.pl]ho slot car aurora[/URL], [URL=http://1371.learn.az.pl]orginal wheel of fortune slots omly[/URL], [URL=http://1384.subterfuge.az.pl]xanax side effects withdrawal[/URL], [URL=http://1205.thriftlessness.az.pl]http://1205.thriftlessness.az.pl[/URL], [URL=http://742.learn.az.pl]http://742.learn.az.pl[/URL], [URL=http://836.pristidae.az.pl]free dating chat room[/URL], [URL=http://453.pristidae.az.pl]http://453.pristidae.az.pl[/URL], [URL=http://110.thriftlessness.az.pl]http://110.thriftlessness.az.pl[/URL]
 3 Comment 26 1200
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 26-07-2008 18:57 , IP: 91.121.165.32
Hielloo , [URL=http://848.kilimanjaro.az.pl]local online dating adult free[/URL], [URL=http://311.bannock.az.pl]http://311.bannock.az.pl[/URL], [URL=http://741.kilimanjaro.az.pl]online dating com[/URL], [URL=http://1187.kuhn.az.pl]gold watch leather jewelry watches[/URL], [URL=http://425.mniaceae.az.pl]xanax no prescription mastercard[/URL], [URL=http://1171.wipeout.az.pl]bad credit no credit private loans for education[/URL], [URL=http://592.kilimanjaro.az.pl]black bbw dating[/URL], [URL=http://933.mniaceae.az.pl]buy xanax online with overnight delivery[/URL], [URL=http://391.illimani.az.pl]castlevania dawn of sorrow soma evil lord[/URL], [URL=http://421.kilimanjaro.az.pl]completely free lesbian dating sites[/URL], [URL=http://963.bannock.az.pl]black shemale teen[/URL], [URL=http://607.kuhn.az.pl]watches hamilton ventura[/URL], [URL=http://557.hungarian.az.pl]http://557.hungarian.az.pl[/URL], [URL=http://1158.hungarian.az.pl]office depot mail distribution slots[/URL], [URL=http://350.hungarian.az.pl]free games too play like bingo slots cards games[/URL], [URL=http://1128.wipeout.az.pl]consumer credit counseling services pittsburgh[/URL], [URL=http://609.mniaceae.az.pl]http://609.mniaceae.az.pl[/URL], [URL=http://191.kilimanjaro.az.pl]senior singles dating[/URL], [URL=http://148.bannock.az.pl]shemale mega cock huge cock[/URL], [URL=http://27.kilimanjaro.az.pl]http://27.kilimanjaro.az.pl[/URL]
 4 Comment 28 553
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 28-07-2008 12:50 , IP: 91.121.165.32
Hiselloo , [URL=http://164.sharkskin.waw.pl]beyonce listen sheet music[/URL], [URL=http://37.sharkskin.waw.pl]beyonce sexy resimleri[/URL], [URL=http://399.dream.az.pl]point park college graduate school[/URL], [URL=http://441.sharkskin.waw.pl]beyonce concert tickets in atlantic city, new jersey[/URL], [URL=http://249.sharkskin.waw.pl]lyrics,beyonce, summertime[/URL], [URL=http://141.dream.az.pl]naked college girl fucking[/URL], [URL=http://398.kinase.tychy.pl]http://398.kinase.tychy.pl[/URL], [URL=http://492.dream.az.pl]onondaga community college class cancellation 498[/URL], [URL=http://558.dream.az.pl]http://558.dream.az.pl[/URL], [URL=http://182.kinase.tychy.pl]http://182.kinase.tychy.pl[/URL], [URL=http://94.dream.az.pl]chemeketa community college in salem oregon[/URL], [URL=http://499.sharkskin.waw.pl]http://499.sharkskin.waw.pl[/URL], [URL=http://77.kinase.tychy.pl]http://77.kinase.tychy.pl[/URL], [URL=http://569.dream.az.pl]mel kiper college football player ratings 2006[/URL], [URL=http://323.dream.az.pl]sierra college rocklin ca home page[/URL], [URL=http://104.dream.az.pl]prince georges community college blackboard[/URL], [URL=http://439.kinase.tychy.pl]online airline[/URL], [URL=http://439.dream.az.pl]http://439.dream.az.pl[/URL], [URL=http://90.dream.az.pl]http://90.dream.az.pl[/URL], [URL=http://479.dream.az.pl]pierce college in california[/URL], [URL=http://352.sharkskin.waw.pl]beyonce knowles naked dance[/URL], [URL=http://174.sharkskin.waw.pl]beyonce knowles exposes her boobs[/URL], [URL=http://309.kinase.tychy.pl]ithaca airline limousine[/URL], [URL=http://60.sharkskin.waw.pl]wedding beyonce knowles to jay-z[/URL], [URL=http://24.kinase.tychy.pl]http://24.kinase.tychy.pl[/URL], [URL=http://422.dream.az.pl]el camino college of torrance california[/URL]
 5 Comment 28 1151
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 28-07-2008 18:48 , IP: 91.121.165.32
Hiselloo , [URL=http://316.cupid.az.pl]airline ticket bkk hochiminh[/URL], [URL=http://54.firebreak.az.pl]lucky casino card game[/URL], [URL=http://62.firebreak.az.pl]new york new york casino hotel check in time[/URL], [URL=http://135.cupid.az.pl]airline ticket reservations[/URL], [URL=http://427.cupid.az.pl]http://427.cupid.az.pl[/URL], [URL=http://793.bowels.az.pl]http://793.bowels.az.pl[/URL], [URL=http://932.glen.az.pl]free online las vegas slots machine games[/URL], [URL=http://24.firebreak.az.pl]las vegas luxor hotel and casino reviews[/URL], [URL=http://863.glen.az.pl]free reel deal slots bonus mania games to download vista[/URL], [URL=http://151.firebreak.az.pl]http://151.firebreak.az.pl[/URL], [URL=http://125.cupid.az.pl]how to get a cheap airline ticket for a funeral[/URL], [URL=http://78.cupid.az.pl]airline ticket purchase[/URL], [URL=http://240.cupid.az.pl]airline pick price ticket[/URL], [URL=http://649.glen.az.pl]free download reel deal slots games phantom[/URL], [URL=http://366.glen.az.pl]play free slots for fun[/URL], [URL=http://678.bowels.az.pl]marx ho thunderbird slot car dc mini motor[/URL], [URL=http://475.firebreak.az.pl]pechanga casino employment need job security stocking[/URL], [URL=http://1154.bowels.az.pl]carrera indy slot car[/URL], [URL=http://881.glen.az.pl]free fun play slots[/URL], [URL=http://454.firebreak.az.pl]horseshoe casino and hotel bossier city la[/URL], [URL=http://764.glen.az.pl]http://764.glen.az.pl[/URL], [URL=http://298.bowels.az.pl]http://298.bowels.az.pl[/URL], [URL=http://24.bowels.az.pl]arkansas antique slot machines[/URL], [URL=http://33.glen.az.pl]free online slots virtue playing no download[/URL], [URL=http://434.firebreak.az.pl]mgm grand hotel casino sportsbook live odds[/URL]
 6 Comment 30 1000
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 30-07-2008 16:57 , IP: 85.25.135.137
Halol3 , [URL=http://567.shaft.az.pl]free downloads games slots[/URL], [URL=http://1130.attemper.az.pl]what is 4 tier credit rating on customer credit report[/URL], [URL=http://692.dune.pisz.pl]http://692.dune.pisz.pl[/URL], [URL=http://396.dune.pisz.pl]cheap airline ticket to west palm beach florida[/URL], [URL=http://351.marksman.az.pl]easter casino free no deposit bonuses[/URL], [URL=http://330.vespa.az.pl]sims slots,com[/URL], [URL=http://408.marksman.az.pl]casino royale 007 movie review[/URL], [URL=http://463.vespa.az.pl]frree on line slots[/URL], [URL=http://657.boniface.az.pl]list of airline logos[/URL], [URL=http://1071.reassurance.az.pl]rolex watches old and new[/URL], [URL=http://190.glasnost.az.pl]westclox pocket ben jewelry watches[/URL], [URL=http://1117.fairbanks.az.pl]free legit online work from home[/URL], [URL=http://834.vespa.az.pl]wheel of fortune slots to play anywhere[/URL], [URL=http://540.fairbanks.az.pl]legitimate work from home assembling companies[/URL], [URL=http://969.marksman.az.pl]search resorts casino tunica, mississippi[/URL], [URL=http://213.vespa.az.pl]reviews of best slots in vegas[/URL], [URL=http://39.fairbanks.az.pl]work at home computer jobs online[/URL], [URL=http://750.attemper.az.pl]eliminating old credit card debt[/URL], [URL=http://1207.vespa.az.pl]pci slots definition[/URL], [URL=http://1149.elaeocarpus.az.pl]black women dating white[/URL]
 7 Comment 01 407
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 01-08-2008 11:04 , IP: 83.218.36.16
Halol3 , [URL=http://315.g-man.az.pl]las vegas casino slots a fun homepage[/URL], [URL=http://195.shriek.az.pl]work from home job boards[/URL], [URL=http://1040.suede.az.pl]dating game lyrics[/URL], [URL=http://685.gulf.az.pl]princess cut ruby 14k rings jewelry watches[/URL], [URL=http://676.suede.az.pl]free online dating services[/URL], [URL=http://451.shriek.az.pl]http://451.shriek.az.pl[/URL], [URL=http://101.mora.az.pl]xanax with 180 count noscript cod[/URL], [URL=http://274.ascendant.szczecin.pl]free online slot games[/URL], [URL=http://111.g-man.az.pl]charlestown west virginia slots hotel[/URL], [URL=http://327.gulf.az.pl]http://327.gulf.az.pl[/URL], [URL=http://36.g-man.az.pl]http://36.g-man.az.pl[/URL], [URL=http://11.superpose.az.pl]silver 8 bracelet jewelry watches[/URL], [URL=http://224.manchu.az.pl]paid work form home[/URL], [URL=http://942.vestibule.az.pl]http://942.vestibule.az.pl[/URL], [URL=http://734.prosauropoda.az.pl]no download best payout casino slots[/URL], [URL=http://1139.prosauropoda.az.pl]http://1139.prosauropoda.az.pl[/URL], [URL=http://676.prosauropoda.az.pl]http://676.prosauropoda.az.pl[/URL]
 8 Comment 02 457
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 02-08-2008 11:56 , IP: 140.116.245.123
Halol3 , [URL=http://807.morphogenesis.az.pl]slots casino[/URL], [URL=http://460.dissipate.az.pl]free online dating servics for teens[/URL], [URL=http://1084.javanthropus.az.pl]airline ticket web sites[/URL], [URL=http://55.microorganism.az.pl]http://55.microorganism.az.pl[/URL], [URL=http://62.yawn.az.pl]work at home stuffing envelopes with no start-up fees[/URL], [URL=http://1051.hypotensive.az.pl]free offline egyptian video slots[/URL], [URL=http://942.midi-pyrenees.az.pl]cincinnati credit card terminals[/URL], [URL=http://1379.conk.az.pl]http://1379.conk.az.pl[/URL], [URL=http://71.accountability.az.pl]stories of snorting antidepressants xanax[/URL], [URL=http://309.dissipate.az.pl]sex dating web sites[/URL], [URL=http://688.forth.az.pl]slot car sets slot cars[/URL], [URL=http://1112.conk.az.pl]no closing cost mortgage"" washington state"[/URL], [URL=http://75.accountability.az.pl]buy xanax online no prescription[/URL], [URL=http://257.morphogenesis.az.pl]http://257.morphogenesis.az.pl[/URL], [URL=http://710.microorganism.az.pl]feedback from passengers on air tran airline[/URL], [URL=http://532.morphogenesis.az.pl]cleo patra slots online[/URL], [URL=http://545.dissipate.az.pl]discreet adult dating[/URL], [URL=http://1277.conk.az.pl]low mortgage rates wilmington north carolina[/URL]
 9 Comment 03 647
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 03-08-2008 13:45 , IP: 85.25.135.137
Halol3 , [URL=http://193.cobra.az.pl]http://193.cobra.az.pl[/URL], [URL=http://382.credulousness.az.pl]hoyle 3 casino web slots free online play[/URL], [URL=http://160.clique.az.pl]http://160.clique.az.pl[/URL], [URL=http://1056.cobra.az.pl]prescription plan xanax xr[/URL], [URL=http://152.apodeme.az.pl]airline ticket from gold coast to perth[/URL], [URL=http://808.credulousness.az.pl]http://808.credulousness.az.pl[/URL], [URL=http://1120.waxmallow.az.pl]play free slots online[/URL], [URL=http://596.trombicula.az.pl]tiffany paloma jewelry watches[/URL], [URL=http://775.rossi.az.pl]charlestown wv races slots[/URL], [URL=http://719.cobra.az.pl]xanax overnight shipping[/URL], [URL=http://1063.legionnaire.az.pl]http://1063.legionnaire.az.pl[/URL], [URL=http://957.blitzstein.az.pl]http://957.blitzstein.az.pl[/URL], [URL=http://570.legionnaire.az.pl]free personal dating sites[/URL], [URL=http://704.trombicula.az.pl]nike mens watches[/URL], [URL=http://226.credulousness.az.pl]http://226.credulousness.az.pl[/URL], [URL=http://410.trombicula.az.pl]http://410.trombicula.az.pl[/URL], [URL=http://928.judge.az.pl]http://928.judge.az.pl[/URL], [URL=http://719.legionnaire.az.pl]dating in boyd texas[/URL], [URL=http://78.cytostome.az.pl]washington state law on skill stop slot machines[/URL], [URL=http://647.judge.az.pl]neteller charges casino on net[/URL], [URL=http://284.trombicula.az.pl]rolex president band jewelry watches[/URL], [URL=http://948.blitzstein.az.pl]free start up work at home buisness[/URL], [URL=http://326.pandemic.az.pl]http://326.pandemic.az.pl[/URL]
 10 Comment 04 451
Written by このメールアドレスはスパムボットから保護されています。観覧するにはJavaScriptを有効にして下さい , on 04-08-2008 11:49 , IP: 209.44.114.178
Halol3 , [URL=http://181.limicolae.az.pl]somali women dating online com[/URL], [URL=http://610.vanity.az.pl]video slots download online[/URL], [URL=http://1045.limicolae.az.pl]adult single dating services[/URL], [URL=http://188.staddle.az.pl]work from home for free and start today[/URL], [URL=http://4.roundel.az.pl]http://4.roundel.az.pl[/URL], [URL=http://281.inpouring.az.pl]where to find cheep airline ticket to germany[/URL], [URL=http://669.vanity.az.pl]charlestown racetrack and slots[/URL], [URL=http://1062.limicolae.az.pl]gay dating sex sites[/URL], [URL=http://981.karyotype.az.pl]free credit report and background check[/URL], [URL=http://16.deduce.az.pl]foxwood casino conneticut[/URL], [URL=http://9.deduce.az.pl]rio las vegas casino chips[/URL], [URL=http://1114.vanity.az.pl]play bingo slots for free[/URL], [URL=http://469.deduce.az.pl]lady luck hotel casino las vegas nevada[/URL], [URL=http://539.karyotype.az.pl]bad credit refinance mortagage[/URL], [URL=http://1225.limicolae.az.pl]free for women to join online dating sites[/URL], [URL=http://13.inpouring.az.pl]super cheap airline ticket[/URL]

Write Comment
  • Please keep the topic of messages relevant to the subject of the article.
  • Personal verbal attacks will be deleted.
  • Please don't use comments to plug your web site. Such material will be removed.
  • Just ensure to *Refresh* your browser for a new security code to be displayed prior to clicking on the 'Send' button.
  • Keep in mind that the above process only applies if you simply entered the wrong security code.
Name:
Comment:

Code:* Code

Powered by AkoComment Tweaked Special Edition v.1.4.6
AkoComment © Copyright 2004 by Arthur Konze - www.mamboportal.com
All right reserved

Update ( 2008/03/10 月曜日 11:30 )
 
< 前へ   次へ >

© 2008 Labs Zsrv Net
Joomla! is Free Software released under the GNU/GPL License.
Translation is Joomla!JAPAN