[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: sb-exconn.el
単なる思いつきですけど.
>> On Sun, 27 Jun 2004 16:35:13 +0900
>> yoichi@geiin.org (Yoichi NAKAYAMA) said as follows:
>;; あと From として適当なのが見付からなかったら、というのについても。
あるページ http://example.net/path/to/page.html を対象とする場合のデフォ
ルトは,webmaster@example.net でどうでしょうね.
Message-Id のデフォルトは,以下のような感じで生成するのが楽かなあ.
(defun shimbun-generate-id (server group url)
(let ((pos 0) buf)
(while (string-match "[^0-9a-zA-Z_:.]" url pos)
(setq buf (cons (format "%%%02x" (aref url (match-beginning 0)))
(cons (substring url pos (match-beginning 0))
buf))
pos (match-end 0)))
(concat "<"
(apply (function concat)
(nreverse (cons (substring url pos) buf)))
"@" group "." server ".shimbun.namazu.org>")))
ただ,これだと Message-Id が随分と長くなってしまうのですが,大丈夫かな
と気になっています.へッダの1行の長さって,RFC で制限されていませんで
したっけ?
;; どちらにしても,影響範囲がものすごく広い話なので,実際の検討は
;; emacs-w3m-1.4.1 のリリース後になると思いますが.
--
土屋 雅稔 ( TSUCHIYA Masatoshi )