On 23/10/24 08:56, postfix--- via Postfix-users wrote:
Spaces are not allowed in submission -o override settings.
How do you handle adding a service? Or is it not possible? Can you \ the space?

    -o smtpd_client_restrictions=check_policy_service\ unix:private/myservice

You can set a variable in main.cf and use that variable here, e.g.:

main.cf:

mua_client_restrictions = check_policy_service unix:private/myservice

master.cf:

    -o smtpd_client_restrictions=$mua_client_restrictions


You can use {} to encapsulate settings that have whitespace in them, e.g.:

-o { smtpd_client_restrictions = check_policy_service unix:private/myservice }


Peter
_______________________________________________
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org

Reply via email to