seen from United Kingdom
seen from Türkiye
seen from Pakistan

seen from Iraq
seen from United Kingdom
seen from Germany
seen from Türkiye
seen from Russia
seen from Brazil
seen from Malaysia
seen from United States
seen from Australia
seen from United States
seen from United States
seen from Qatar

seen from Poland
seen from Netherlands

seen from Singapore

seen from Sweden
seen from United States

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
xamppのsmtpでGmailを使う
詰まったのでメモ xamppでローカルからメール送信テストをしたかったので、sendmailを使えるようにしたかった。
XAMPP1.7.7以上の場合、xampp\sendmailを差し替える必要がある。(sendmailが簡易版になっているため)
とのことだったので、xampp1.7.1を入れていたのでそのまま
xampp\php\php.ini
[mail function] sendmail_path = "C:\xampp\sendmail\sendmail.exe -t"(コメントアウトを外す) mail.log = "C:\xampp\apache\logs\php_mail.log"(コメントアウトを外す。項目が無かったら書き足し) ↑ mail functionは上記以外コメントアウトでOK
xampp\sendmail\sendmail.ini
smtp_server=smtp.gmail.com smtp_port=587 smtp_ssl=auto default_domain=gmail.com auth_username=[gmailアカウント(@gmail.comでもアカウントだけでもOK)] auth_password=[gmailログインパス] force_sender=[送信元gmailアカウント]@gmail.com
でテストしたんですが動かず。 エラーログ見たら、
Must issue a STARTTLS command first.
SSLの暗号化出来てませんよーーって…。 いろいろ調べた結果、最新のxamppにパッケージされてたsendmaillにSSLdllが入ってなかったことが判明。 最新(http://glob.com.au/sendmail/)取得して入れなおしたらうまくいきました。 変な所で引っかかってしまった…。