[Mew-dist 16000] patch for SMTP
Tatsuya Kinoshita
tatsuyak at example.com
2001年 1月 20日 (土) 00:50:29 JST
SMTPサーバの配送ポリシーを調べていたところ、配送拒否の際、応答コード
の2桁目に「7」を返すサーバを見つけました。(RFC 1893あたり?)
とりあえず、「7」まで許容するパッチを添付します。
--
木下達也 (Tatsuya Kinoshita)
-------------- next part --------------
This patch is written by Tatsuya Kinoshita.
Permission is granted to use, copy, distribute, and/or modify it
without restriction. There is NO WARRANTY.
diff -ur mew-1.95b99/mew-smtp.el mew-1.95b99-tats20010121/mew-smtp.el
--- mew-1.95b99/mew-smtp.el Wed Jan 17 18:29:38 2001
+++ mew-1.95b99-tats20010121/mew-smtp.el Sat Jan 20 00:33:05 2001
@@ -298,7 +298,7 @@
(mew-smtp-set-string pnm str)
(cond
((and (string-match "\n$" str)
- (string-match "^\\([1-5][0-5][0-9]\\) " str))
+ (string-match "^\\([1-5][0-7][0-9]\\) " str))
(setq code (mew-match 1 str))
(setq next (mew-smtp-fsm-next status code))
(if (null next)
Mew-dist メーリングリストの案内