[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[postfix-jp: 1804] Re: IPエイリアスでNameServiceError?



In message <20060228184943M001.DS21DF@xxxxxxxxxxxxxxxxxxxxxx>
	on Tue, 28 Feb 2006 18:49:46 +0900,
	Katsushi Sakurane <sakurane@xxxxxxxxxxxxxx> wrote:
> >> といったパラメータがあります。ドメインに専用の設定の、複数のPostfixを
> >> 用意して、main.cfでこれらを指定することで、(やっと)できそうにも思えま
> >> す。(たいへんですし、やりたいとは思いませんが。)
> 
> なるほど!
> いろいろ調査ご苦労さまです。とても参考になります。
別件を調べものをしていたときにたまたま目にとまったパラメータで、以前の
メールを思い出した次第です。

> sender_based_routing でイケそうですかね。
> # でもどうやって書くんだろう?

	sender_based_routing (default: no)
	       This parameter should not be used.

とか書いてあります。;-)

ソースを追うと、qmgr/qmgr_message.cで、

        /*
         * Resolve the destination to (transport, nexthop, address). The
         * result address may differ from the one specified by the sender.
         */
        else if (var_sender_routing == 0) {
            if (qmgr_resolve_one(message, recipient,
                                 recipient->address, &reply) < 0)
                continue;
            if (!STREQ(recipient->address, STR(reply.recipient)))
                UPDATE(recipient->address, STR(reply.recipient));
        }

        /*
         * XXX Sender-based routing does not work very well, because it has
         * problems with sending bounces.
         */
        else {
            if (qmgr_resolve_one(message, recipient,
                                 message->sender, &reply) < 0)
                continue;
            vstring_strcpy(reply.recipient, recipient->address);
        }

なんて書いてあります。なので、

> # でもどうやって書くんだろう?
> # -----------------------------
> #  <送信元ドメインA>  smtp-a:
> #  <送信元ドメインB>  smtp-b:
> # -----------------------------
> # で良いのかな?
と、transportあたりに書くだけのように思えます(完全無責任^H^H保証)。

-- 
神戸 隆博(かんべ たかひろ)		at 仕事場 
_______________________________________________
Postfix-jp-list mailing list
Postfix-jp-list@xxxxxxxxxxxxxxxxxxxx
http://lists.sourceforge.jp/mailman/listinfo/postfix-jp-list

References
[postfix-jp: 1801] Re: IPエイリアスでNameServiceError?, Takahiro Kambe
[postfix-jp: 1802] Re: IPエイリアスでNameServiceError?, Takahiro Kambe
[postfix-jp: 1803] Re: IPエイリアスでNameServiceError?, Katsushi Sakurane

[検索ページ] [Postfix-JP ML Home]