Diego Liziero a écrit :
> On Fri, Oct 10, 2008 at 9:27 PM, Brian Evans - Postfix List
> <[EMAIL PROTECTED]> wrote:
>
>> Diego Liziero wrote:
>>
>>> # content filter loop back smtpd
>>> localhost:10026 inet n - n - 20 smtpd
>>> -o smtpd_authorized_xforward_hosts=127.0.0.0/8
>>> -o smtpd_proxy_filter=
>>> -o content_filter=
>>> -o local_recipient_maps=
>>> -o smtpd_client_restrictions=
>>> -o smtpd_sender_restrictions= # <--
>>>
>>>
>> In-line comments are not supported in main.cf or master.cf. Recommend
>> removing # <-- if you really do have it there.
>>
>
> Really? I always had this doubt, but I was almost confident that they
> were supported.
>
they are not. comments should go on their own lines (this applies to
both main.cf and master.cf).
....
# blah blah
-o smtpd_client_restrictions=
...
also, no spaces in options in master.cf. If you need spaces, define a
custom var in main.cf and use it:
-o foooption=${foobar}
and in main.cf:
foobar =
# first value
value 1
# second value
value 2
> Fortunately I don't have it in my config.
>