東方算程譚

Oriental Code Talk ── επιστημηが与太をこく、弾幕とは無縁のシロモノ。

目次

Blog 利用状況

ニュース

著作とお薦めの品々は

著作とお薦めの品々は
東方熱帯林へ。

あわせて読みたい

わんくま

  1. 東京勉強会#2
    C++/CLI カクテル・レシピ
  2. 東京勉強会#3
    template vs. generics
  3. 大阪勉強会#6
    C++むかしばなし
  4. 東京勉強会#7
    C++むかしばなし
  5. 東京勉強会#8
    STL/CLRによるGeneric Programming
  6. TechEd 2007 @YOKOHAMA
    C++・C++/CLI・C# 適材適所
  7. 東京勉強会#14
    Making of BOF
  8. 東京勉強会#15
    状態遷移
  9. 名古屋勉強会#2
    WinUnit - お気楽お手軽UnitTest

CodeZine

  1. Cで実現する「ぷちオブジェクト指向」
  2. CUnitによるテスト駆動開発
  3. SQLiteで組み込みDB体験(2007年版)
  4. C++/CLIによるCライブラリの.NET化
  5. C# 1.1からC# 3.0まで~言語仕様の進化
  6. BoostでC++0xのライブラリ「TR1」を先取りしよう (1)
  7. BoostでC++0xのライブラリ「TR1」を先取りしよう (2)
  8. BoostでC++0xのライブラリ「TR1」を先取りしよう (3)
  9. BoostでC++0xのライブラリ「TR1」を先取りしよう (4)
  10. BoostでC++0xのライブラリ「TR1」を先取りしよう (5)
  11. C/C++に対応した、もうひとつのUnitTestFramework ─ WinUnit
  12. SQLiteで"おこづかいちょう"
  13. STL/CLRツアーガイド
  14. マージ・ソート : 巨大データのソート法
  15. ヒープソートのアルゴリズム
  16. C++0xの新機能「ラムダ式」を次期Visual Studioでいち早く試す
  17. .NETでマンデルブロ集合を描く
  18. .NETでマンデルブロ集合を描く(後日談)
  19. C++/CLI : とある文字列の相互変換(コンバージョン)
  20. インテルTBBによる選択ソートの高速化
  21. インテルTBB3.0 によるパイプライン処理
  22. Visual C++ 2010に追加されたSTLアルゴリズム
  23. Visual C++ 2010に追加されたSTLコンテナ「forward_list」
  24. shared_ptrによるObserverパターンの実装
  25. .NETでマンデルブロ集合を描く(番外編) ── OpenCLで超並列コンピューティング
  26. StateパターンでCSVを読む
  27. 状態遷移表からStateパターンを自動生成する
  28. 「ソートも、サーチも、あるんだよ」~標準C++ライブラリにみるアルゴリズムの面白さ
  29. インテルTBBの同期メカニズム
  30. なぜsetを使っちゃいけないの?
  31. WPFアプリケーションで腕試し ~C++でもWPFアプリを
  32. C++11 : スレッド・ライブラリひとめぐり
  33. Google製のC++ Unit Test Framework「Google Test」を使ってみる
  34. メールでデータベースを更新するココロミ
  35. Visitorパターンで遊んでみたよ
  36. Collection 2題:「WPFにバインドできる辞書」と「重複を許す検索set」
  37. Visual C++ 2012:stateless-lambdaとSQLiteのぷち拡張
  38. 「Visual C++ Compiler November 2012 CTP」で追加された6つの新機能

@IT

  1. Vista時代のVisual C++の流儀(前編)Vista到来。既存C/C++資産の.NET化を始めよう!
  2. Vista時代のVisual C++の流儀(中編)MFCから.NETへの実践的移行計画
  3. Vista時代のVisual C++の流儀(後編) STL/CLRによるDocument/Viewアーキテクチャ
  4. C++開発者のための単体テスト入門 第1回 C++開発者の皆さん。テスト、ちゃんとしていますか?
  5. C++開発者のための単体テスト入門 第2回 C++アプリケーションの効率的なテスト手法(CppUnit編)
  6. C++開発者のための単体テスト入門 第3回 C++アプリケーションの効率的なテスト手法(NUnit編)

AWARDS


Microsoft MVP
for Visual Developer - Visual C++


Wankuma MVP
for いぢわる C++


Nyantora MVP
for こくまろ中国茶

Xbox

Links

記事カテゴリ

書庫

日記カテゴリ

郵便局がお手紙を受け取ってくれません

困ったときは釣り糸を垂れるテスト ^^;

System.Net.Mail.SmtpClientでSMTPにメールを送りつけてるんだが、
ちーとも受理してくれません。認証にしくってるポ。

Outlookがメール投げてるトコをパケット・モニタで覗いたところ:

EHLO しろホスト
AUTH LOGIN
Base64な しろアカウント
Base64な しろパスワード
MAIL FROM: しろやぎさん
RCPT TO: くろやぎさん
...

ってな段取りで送りつけてるみたい。
コレとおんなじことすればいいはずなんだけど、
System.Net.Mail.SmtpClient ではどぉすんだ?

SmtpClient smtpClient = new SmtpClient("森の郵便局",25);
smtpClient.Credentials = 
  = new NetworkCredential("しろアカウント","しろパスワード","しろホスト");
smtpClient.Send("しろやぎさん", "くろやぎさん","読んでね", "こんにちは");

↑これだと認証が通ってないみたいなの。 おしえてえらいひと。

投稿日時 : 2008年9月12日 12:10

コメントを追加

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 12:42 ひょうが

SMTP AUTHとかSSLとか使ってて
ポートが25番じゃない・・・とか?

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 12:44 HiJun

私の環境では、普通にできました。

認証方式は何を使用しているのでしょうか?

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 12:46 なちゃ

EHLO
なんてお茶目なサーバ…

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 12:51 こくぶんまさひろ

http://forums.microsoft.com/MSDN-JA/ShowPost.aspx?PostID=2771594&SiteID=7
↑これじゃないでしょーかね。。。
(なんか、わんくまーな方の投稿が沢山ありますが^^;)

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 13:04 ひょうが

あと、単純にPOP before SMTPとか。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 13:18 επιστημη

えーと...こっち方面は畑違いでよぉわかってねぇです。
パケットモニタのログ読む限り、Portは25です。

送信に成功するOutlookで、EHLOに対して郵便局は:
250-8BITMIME
250-PIPELINING
250-DSN
250-AUTH=LOGIN
250-AUTH PLAIN CRAM-MD5 SKEY
って答えてます。引き続いて AUTH LOGIN してるんで
Login認証だろと思ってますが...ちゃうのん?

また、Outlookの設定見ると
- パスワード認証(SPA) : OFF。
- SMTPは認証が必要/受信メールサーバと同じ設定を使用
となってますです。


# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 13:20 επιστημη

> POP before SMTPとか

それはなさげです。パケットモニタには
SMTPに先立ってPOPしてる形跡は残ってません。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 13:29 trapemiya

ありがちなのはファイアウォールが25番ポートをブロックしちゃってます。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 13:31 とっちゃん

めっけた。たぶんこれだとおもうです。

http://www.atmarkit.co.jp/bbs/phpBB/viewtopic.php?topic=35369&forum=7

おいらも、この辺門外漢なのよねぇ...

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 13:31 επιστημη

(trialコードによる)繋がってくれない場合、
Sendで例外が投げつけられてます。

System.Net.Mail.SmtpException:
メールを送信できませんでした。
---> System.Net.WebException: リモート サーバーに接続できません。
---> System.Net.Sockets.SocketException: 確立された接続がホスト コンピュータのソウトウェアによって中止されました。 よん.けたの.あいぴー.あどれす:25
場所 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
場所 System.Net.Sockets.Socket.InternalConnect(EndPoint remoteEP)
...

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 13:35 επιστημη

> ファイアウォールが25番ポートをブロック

えと、これが原因だとすると telnet でしれっと入れるのは説明つくんでしょか。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 13:38 trapemiya

>えと、これが原因だとすると telnet でしれっと入れるのは説明つくんでしょか。

メールソフトなどは例外として登録されています。どこの誰が作ったかわからないソフトが勝手に内部から外部の25番ポートに向かって通信をはじめたらやばいと思われてブロックされるのが普通です。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 13:39 trapemiya

>えと、これが原因だとすると telnet でしれっと入れるのは説明つくんでしょか。

メールソフトなどは例外として登録されています。どこの誰が作ったかわからないソフトが勝手に内部から外部の25番ポートに向かって通信をはじめたらやばいと思われてブロックされるのが普通です。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 13:41 επιστημη

> たぶんこれだとおもう

...やってることはおんなじなんだけどなー
# SSLをdesableにしたけどダメっした orz

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 13:41 まっちゃだいふく

もしかして、、、、DATAの中にFROMとかMessageIDが入っていないからだめとか?ないよねぇ・・・

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 13:43 trapemiya

と思ったけどBeckyとか登録されてないな・・・???
とりあえずWindowsファイアウォールのセキュリティログを取ってみるとわかるかも。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 13:54 επιστημη

>>えと、これが原因だとすると telnet でしれっと入れるのは説明つくんでしょか。
> メールソフトなどは例外として登録されています。

telnetで入れたのも(あらかじめ)登録されてるから、ですか?
# どこぞの馬の骨が悪さするのが怖いならtelnetなんてめちゃめちゃヤバいよな...

...面白いなー、防火壁は25番に接続を仕掛けた奴の素性(まっとうなmail-clientか否か)をどうやって知るんだろ。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 14:02 επιστημη

> DATAの中にFROMとかMessageIDが入っていないからだめとか?

ではなさげ。
---> System.Net.WebException: リモート サーバーに接続できません。
ですから、メッセージの書式云々以前の問題ポ。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 14:05 trapemiya

いや、なんかWindowsファイアウォールでは25番は開放されているんじゃないかと思う。
また、おかしなことの繰り返しをしてしまった。orz
すみません。

メール送信について
http://blogs.wankuma.com/episteme/archive/2008/09/12/156321.aspx?Pending=true

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 14:06 trapemiya

あっ、間違い↑
http://forums.microsoft.com/MSDN-JA/ShowPost.aspx?PostID=1757093&SiteID=7

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 14:09 επιστημη

うーん...System.Net.Mail.SmtpClient使った
やつでパケモニ見ると SMTPが反応すらしてないみたいす。
やっぱりどっかで門前払い食わされてんのかなぁ...

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 14:53 THREE-ONE

Outlook が送信できているのなら trapemiya さんのリンク先のようにローカルのセキュリティソフトがブロックしてる可能性が一番高いと思います。
(Outlook は許可している OP25B とかないでしょうし)

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 15:26 とっちゃん

コンストラクタのポート指定取っ払って試してみては?

もし、OP25Bだとしたら、Outlook 側のポート設定がデフォルト以外になってるはず...

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 17:05 επιστημη

飛んできた例外:

---> System.Net.WebException: リモート サーバーに
接続できません。
---> System.Net.Sockets.SocketException: 確立された接続がホスト コンピュータのソウトウェアによって中止されました。 よん.けたの.あいぴー.あどれす:25

との主張が正しいなら、ホスト側が身の危険を感じてプラグを引っこ抜いたみたいすよね。
彼女は何を恐れたんでしょかー
認証パスしたのならプラグを抜く理由はないよねぇ...

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 17:45 ネタ好き未記入

επιστημηさん、復活ッ!復活ッ!復活ッ!復活ッ!復活ッ!復活ッ!復活ッ!復活ッ!復活ッ!復活ッ!復活ッ!復活ッ!復活ッ!復活ッ!復活ッ!

元ネタ:バキ


おっと、失礼。体調が回付したようですね。
嬉しくて連呼してしまいました♪

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 18:09 ネタ好き未記入

リプライコードはモニタ出来るでしょうか?
もし、リプライコードがモニタ判別できると解決の糸口になると思います。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 18:22 ネタ好き未記入

念のためにお聞きしますがSimple Mail Transfer Protocol (SMTP)Win32サービスは起動していますか?

# re: 郵便局がお手紙を受け取ってくれません 2008/09/12 18:24 ネタ好き未記入

後、SSLが使える状態か確認してみたら良いと思います。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/13 2:23 RUN

え~、空気読まずに釣り針に食いついて見ます

>MAIL FROM: しろやぎさん
>RCPT TO: くろやぎさん
もう、この時点でメールは届かなくて当然の物かと…
いや、一応届いてはいるか、中身は見てもらえないけど届きはするのか…
届かないって事はきっと、郵便屋さんが青柳さん

# re: 郵便局がお手紙を受け取ってくれません 2008/09/13 10:08 ネタ好き未記入

今の状況がパケットを見てもらえない(認証が出来ない)の高度なジョークです。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/15 12:25 ひょうが

Outlook の設定で
「SMTPは認証が必要」
となってるから
SSLを使用してると思われ。
でも以下の情報によると
http://dobon.net/vb/dotnet/internet/smtpauth.html

抜粋>SSLを使用するにはEnableSslプロパティをtrueにしますが、
抜粋>現在はCredentialsを設定し、EnableSslをtrueにすると、
エラーとなるようです。

らしく、System.Web.Mail.SmtpMail
を使用した解決方法が The Code Projectに紹介されているらしい。

http://www.codeproject.com/KB/dotnet/SystemWeb_Mail_SMTP_AUTH.aspx

# re: 郵便局がお手紙を受け取ってくれません 2008/09/15 12:42 ひょうが

>Outlook の設定で
>「SMTPは認証が必要」
>となってるから
>SSLを使用してると思われ。
すみません。月曜だからか祝日だからか
寝ぼけてますね。
上記は出鱈目ですね。
すみませんm(_ _)m

# re: 郵便局がお手紙を受け取ってくれません 2008/09/15 23:07 ちひろ

とりあえず、System.Net.Mail.SmtpClientを使ったときに、どういうパケットをSMTPサーバーに送信し受信するのかを、モニタすれば良いのではないでしょうか?
connect() は成功しているようですので、何らかの理由で認証に失敗しているんだと思います。
>250-AUTH=LOGIN
>250-AUTH PLAIN CRAM-MD5 SKEY
この2つは、Outlook の場合は LOGIN認証で、
それ以外の(まともな)場合は、PLAIN か CRAM-MD5 か SKEY を使ってくださいね、ということだと思います。
Outlook ってば、区切りに '=' しか(?)利用できないバグがあるんです、確か…。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/16 6:39 ネタ好き未記入

むにゃむにゃしてこのクラスがSSLを使っていることは確認しております。
SSL関係の検証をするのが早道だと思います。

# re: 郵便局がお手紙を受け取ってくれません 2008/09/16 12:56 ひょうが

先日は出鱈目を書きましたが
とりあえず、System.Web.Mail.SmtpMail
使ってみるってのも手かも。

# After looking at a number of the articles on your web page, I truly like your way of writing a blog. I book-marked it to my bookmark webpage list and will be checking back soon. Please visit my web site too and let me know your opinion. 2021/08/29 0:59 After looking at a number of the articles on your

After looking at a number of the articles on your web page, I truly like your way of writing
a blog. I book-marked it to my bookmark webpage list and will be checking
back soon. Please visit my web site too and let me know your opinion.

# Excellent write-up. I definitely love this website. Keep it up! 2021/09/01 17:49 Excellent write-up. I definitely love this website

Excellent write-up. I definitely love this website. Keep it
up!

# Excellent write-up. I definitely love this website. Keep it up! 2021/09/01 17:50 Excellent write-up. I definitely love this website

Excellent write-up. I definitely love this website. Keep it
up!

# Excellent write-up. I definitely love this website. Keep it up! 2021/09/01 17:51 Excellent write-up. I definitely love this website

Excellent write-up. I definitely love this website. Keep it
up!

# Excellent write-up. I definitely love this website. Keep it up! 2021/09/01 17:52 Excellent write-up. I definitely love this website

Excellent write-up. I definitely love this website. Keep it
up!

# My partner and I stumbled over here by a different website and thought I may as well check things out. I like what I see so now i am following you. Look forward to looking at your web page repeatedly. 2021/09/03 20:11 My partner and I stumbled over here by a different

My partner and I stumbled over here by a different website
and thought I may as well check things out. I like what I see so now i am following you.
Look forward to looking at your web page repeatedly.

# Wow that was strange. I just wrote an extremely long comment but after I clicked submit my comment didn't show up. Grrrr... well I'm not writing all that over again. Anyhow, just wanted to say superb blog! 2021/09/06 16:30 Wow that was strange. I just wrote an extremely lo

Wow that was strange. I just wrote an extremely long
comment but after I clicked submit my comment didn't show up.

Grrrr... well I'm not writing all that over again. Anyhow, just wanted to say superb blog!

# Wow that was strange. I just wrote an extremely long comment but after I clicked submit my comment didn't show up. Grrrr... well I'm not writing all that over again. Anyhow, just wanted to say superb blog! 2021/09/06 16:31 Wow that was strange. I just wrote an extremely lo

Wow that was strange. I just wrote an extremely long
comment but after I clicked submit my comment didn't show up.

Grrrr... well I'm not writing all that over again. Anyhow, just wanted to say superb blog!

# Wow that was strange. I just wrote an extremely long comment but after I clicked submit my comment didn't show up. Grrrr... well I'm not writing all that over again. Anyhow, just wanted to say superb blog! 2021/09/06 16:32 Wow that was strange. I just wrote an extremely lo

Wow that was strange. I just wrote an extremely long
comment but after I clicked submit my comment didn't show up.

Grrrr... well I'm not writing all that over again. Anyhow, just wanted to say superb blog!

# Wow that was strange. I just wrote an extremely long comment but after I clicked submit my comment didn't show up. Grrrr... well I'm not writing all that over again. Anyhow, just wanted to say superb blog! 2021/09/06 16:33 Wow that was strange. I just wrote an extremely lo

Wow that was strange. I just wrote an extremely long
comment but after I clicked submit my comment didn't show up.

Grrrr... well I'm not writing all that over again. Anyhow, just wanted to say superb blog!

# Hi, i think that i noticed you visited my weblog so i got here to return the desire?.I'm attempting to in finding things to improve my website!I guess its ok to use some of your ideas!! ps4 https://bit.ly/3z5HwTp ps4 games 2021/09/13 19:12 Hi, i think that i noticed you visited my weblog s

Hi, i think that i noticed you visited my weblog so i got here to return the desire?.I'm attempting to
in finding things to improve my website!I guess its ok to use some of your
ideas!! ps4 https://bit.ly/3z5HwTp ps4 games

# Hi, i think that i noticed you visited my weblog so i got here to return the desire?.I'm attempting to in finding things to improve my website!I guess its ok to use some of your ideas!! ps4 https://bit.ly/3z5HwTp ps4 games 2021/09/13 19:13 Hi, i think that i noticed you visited my weblog s

Hi, i think that i noticed you visited my weblog so i got here to return the desire?.I'm attempting to
in finding things to improve my website!I guess its ok to use some of your
ideas!! ps4 https://bit.ly/3z5HwTp ps4 games

# Hi, i think that i noticed you visited my weblog so i got here to return the desire?.I'm attempting to in finding things to improve my website!I guess its ok to use some of your ideas!! ps4 https://bit.ly/3z5HwTp ps4 games 2021/09/13 19:14 Hi, i think that i noticed you visited my weblog s

Hi, i think that i noticed you visited my weblog so i got here to return the desire?.I'm attempting to
in finding things to improve my website!I guess its ok to use some of your
ideas!! ps4 https://bit.ly/3z5HwTp ps4 games

# Hi, i think that i noticed you visited my weblog so i got here to return the desire?.I'm attempting to in finding things to improve my website!I guess its ok to use some of your ideas!! ps4 https://bit.ly/3z5HwTp ps4 games 2021/09/13 19:15 Hi, i think that i noticed you visited my weblog s

Hi, i think that i noticed you visited my weblog so i got here to return the desire?.I'm attempting to
in finding things to improve my website!I guess its ok to use some of your
ideas!! ps4 https://bit.ly/3z5HwTp ps4 games

# Great goods from you, man. I have consider your stuff prior to and you are simply too great. I actually like what you've got right here, really like what you are stating and the way in which you say it. You are making it entertaining and you still care 2021/09/14 9:26 Great goods from you, man. I have consider your st

Great goods from you, man. I have consider your stuff prior
to and you are simply too great. I actually like what you've got right here, really like what you are stating
and the way in which you say it. You are making it
entertaining and you still care for to stay it smart.
I cant wait to learn far more from you. That is really a tremendous website.
scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# Great goods from you, man. I have consider your stuff prior to and you are simply too great. I actually like what you've got right here, really like what you are stating and the way in which you say it. You are making it entertaining and you still care 2021/09/14 9:27 Great goods from you, man. I have consider your st

Great goods from you, man. I have consider your stuff prior
to and you are simply too great. I actually like what you've got right here, really like what you are stating
and the way in which you say it. You are making it
entertaining and you still care for to stay it smart.
I cant wait to learn far more from you. That is really a tremendous website.
scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# Great goods from you, man. I have consider your stuff prior to and you are simply too great. I actually like what you've got right here, really like what you are stating and the way in which you say it. You are making it entertaining and you still care 2021/09/14 9:28 Great goods from you, man. I have consider your st

Great goods from you, man. I have consider your stuff prior
to and you are simply too great. I actually like what you've got right here, really like what you are stating
and the way in which you say it. You are making it
entertaining and you still care for to stay it smart.
I cant wait to learn far more from you. That is really a tremendous website.
scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# Great goods from you, man. I have consider your stuff prior to and you are simply too great. I actually like what you've got right here, really like what you are stating and the way in which you say it. You are making it entertaining and you still care 2021/09/14 9:29 Great goods from you, man. I have consider your st

Great goods from you, man. I have consider your stuff prior
to and you are simply too great. I actually like what you've got right here, really like what you are stating
and the way in which you say it. You are making it
entertaining and you still care for to stay it smart.
I cant wait to learn far more from you. That is really a tremendous website.
scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# Wow, amazing weblog format! How lengthy have you been blogging for? you make running a blog glance easy. The whole look of your website is great, as well as the content! 2021/10/25 16:16 Wow, amazing weblog format! How lengthy have you b

Wow, amazing weblog format! How lengthy have you been blogging for?
you make running a blog glance easy. The whole look of your website is great, as
well as the content!

# Wow, amazing weblog format! How lengthy have you been blogging for? you make running a blog glance easy. The whole look of your website is great, as well as the content! 2021/10/25 16:17 Wow, amazing weblog format! How lengthy have you b

Wow, amazing weblog format! How lengthy have you been blogging for?
you make running a blog glance easy. The whole look of your website is great, as
well as the content!

# Wow, amazing weblog format! How lengthy have you been blogging for? you make running a blog glance easy. The whole look of your website is great, as well as the content! 2021/10/25 16:18 Wow, amazing weblog format! How lengthy have you b

Wow, amazing weblog format! How lengthy have you been blogging for?
you make running a blog glance easy. The whole look of your website is great, as
well as the content!

# Wow, amazing weblog format! How lengthy have you been blogging for? you make running a blog glance easy. The whole look of your website is great, as well as the content! 2021/10/25 16:19 Wow, amazing weblog format! How lengthy have you b

Wow, amazing weblog format! How lengthy have you been blogging for?
you make running a blog glance easy. The whole look of your website is great, as
well as the content!

# ロレックス プラチナ デイトジャスト 2023/03/11 0:36 voxmbsqu@ocn.ne.jp

注文から発送開始までとても早く問題なく受け取りました。
また本物証明書も同封されていたので安心です。
またお願いします。【送料無料】コーチ ショルダーバッグをセール価格で販売中♪コーチ ショルダーバッグ シグネチャー ストライプ 41644 スウィングパック ベージュ ピンク キャンバス
今回、初めての中古商品購入でした。最近新品でこのデザインが手に入りにくくなっている事からの中古商品購入でした。商品案内通りの状態でしたので価格的にも納...
ロレックス プラチナ デイトジャスト https://www.b2kopi.com/product/detail.aspx-id=3777.htm

タイトル
名前
URL
コメント