????? ?????: > FYI: > > This per-milter configuration is wrong: > > { inet:127.0.0.1:9027, > default_action = tempfail, > protocol = 3, > connect_timeout = 180, > command_timeout = 180, > content_timeout = 600 }
MILTER_README says: 1 /etc/postfix/main.cf: 2 smtpd_milters = { inet:host:port, 3 connect_timeout=10s, default_action=accept } Instead of a server endpoint, we now have a list enclosed in {}. ... Inside the list, syntax is similar to what we already know from main.cf: items separated by space or comma. There is one difference: YOU MUST ENCLOSE A SETTING IN PARENTHESES, AS IN "{ NAME = VALUE }", IF YOU WANT TO HAVE SPACE OR COMMA WITHIN A VALUE OR AROUND "=". The text that is in BOLD FONT is shown in upper case above. So, what is wrong with the documentation? Wietse