Wietse Venema: > Christian R??ner: > > In the RELEASE_NOTES: > > > > - Milter clients and policy clients with non-default settings: > > smtpd_milters = {inet:host:port, timeout=xxx, default_action=yyy}, ... > > This is now implemented for Milters. The supported attributes are > command_timeout, connect_timeout, content_timeout, default_action, > and protocol. These have the same names as the corresponding main.cf > parameters, minus the "milter_" prefix. > > Implementing this for policy protocol clients will be easy, because > all the hard work happens in a new Postfix library function.
This is now implemented for policy protocol clients. The basic idea is the same: instead of inet:host:port or unix:path/name, you specify { inet:host:port, name=value, ... }. There is a provision to specify values that contain spaces, which may be needed with the default_action attribute. Source code release: postfix-2.12-20140928. Documentation: http:/www.porcupine.org/postfix-mirror/MILTER_README.html#per-milter http:/www.porcupine.org/postfix-mirror/SMTPD_POLICY_README.html#advanced Wietse