554 5.4.6 Too many hops 26 (25 max)

いまに始まったことではないけど、sendmail-8.13.8/cf/m4/proto.m4 には

# maximum hop count
_OPTION(MaxHopCount, `confMAX_HOP', `25')

と書いてある。

しかし、これは RFC 2821 に書かれている推奨値と比べるとずいぶん小さい。

6.2 Loop Detection

Simple counting of the number of "Received:" headers in a message has
proven to be an effective, although rarely optimal, method of
detecting loops in mail systems. SMTP servers using this technique
SHOULD use a large rejection threshold, normally at least 100
Received entries. Whatever mechanisms are used, servers MUST contain
provisions for detecting and stopping trivial loops.

http://www.ietf.org/rfc/rfc2821.txt

デフォルト値を変えたほうがいいんじゃね? って誰か sendmail の中の人に言ってほしいなあ。
ちなみに、postfix だと main.cf.default で hopcount_limit = 50 となっている。これも RFC 2821 の推奨よりは小さい。他のMTAはどうなっているんだろう。