Fedora Core: 2007年11月アーカイブ
hotmailから
The original message was received at Thu, 29 Nov 2007 23:07:49 +0900
from xxx.xxx.jp [127.0.0.1]
----- The following addresses had permanent fatal errors -----
<xxx@hotmail.co.jp>
(reason: 550 OU-001 Mail rejected by Windows Live Hotmail for policy reasons. Reasons for rejection may be re...l/network admins, please visit http://postmaster.live.com for email delivery information and support)
----- Transcript of session follows -----
... while talking to mx4.hotmail.com.:
>>> MAIL From:<xxx@xxx.jp> SIZE=345
<<< 550 OU-001 Mail rejected by Windows Live Hotmail for policy reasons. Reasons for rejection may be related to content with spam-like characteristics or IP/domain reputation problems. If you are not an email/network admin please contact your E-mail/Internet Service Provider for help. Email/network admins, please visit http://postmaster.live.com for email delivery information and support
554 5.0.0 Service unavailable
--------------------------------------
goo メールから不達連絡
**********************************************
** THIS IS A WARNING MESSAGE ONLY **
** YOU DO NOT NEED TO RESEND YOUR MESSAGE **
**********************************************
The original message was received at Thu, 29 Nov 2007 16:17:49 +0900
from localhost.localdomain [127.0.0.1]
----- Transcript of session follows -----
451 4.4.1 reply: read error from mx01.mail.goo.ne.jp.
<xxx@mail.goo.ne.jp>... Deferred: Connection reset by mx01.mail.goo.ne.jp.
Warning: message still undelivered after 4 hours
Will keep trying until message is 5 days old
---------------------------------------
http://www.spamhaus.org/query/bl?ip=xxx.xxx.xxx.xxx
xxx.xxx.xxx.xxx is listed in the XBL, because it appears in:
CBL
----------------------------
参考サイト
http://www.bluemooninc.biz/~xoops/modules/pukiwiki/?Mailserver%A4%CE%C0%DF%C4%EA
<VirtualHost *:80>
DocumentRoot /home/hoge/public_html
ServerName hoge.net
ServerAlias *.hoge.net
RewriteEngine On
# RewriteBase /
RewriteCond %{HTTP_HOST} ([^\.]+).*
# RewriteRule ^/$ /in.php?no=%1 [L]
RewriteRule ^/$ /%1.html [L]
</VirtualHost>
------------------------------------
Problem Description: ![]()
同じマシンに対する DNS A レコード を使って、このマシンに virtualhosts なしでユーザ名のホームページに対して www.username.host.domain.com を提供したいとします。
Problem Solution: ![]()
HTTP/1.0 リクエストに対しては解決法がありませんが、HTTP/1.1 に対するリクエストは Host を含んでいます: HTTP ヘッダは http://www.username.host.com/anypath を内部的に /home/username/anypath に rewrite するルールセットを使います: ![]()
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.[^.]+\.host\.com$
RewriteRule ^(.+) %{HTTP_HOST}$1 [C]
RewriteRule ^www\.([^.]+)\.host\.com(.*) /home/$1$2 |