Add support for AF_INET(6) sockets via --socket-address=IP:PORT
Compare changes
+ 15
− 6
@@ -235,15 +235,16 @@ class StdoutFilter(logging.Filter):
@@ -235,15 +235,16 @@ class StdoutFilter(logging.Filter):
@click.command(help='Socketmap proxy for integrating Postfix and other compatible MTAs with uffd SSO. Supports virtual alias lookups (request name "virtual").')
@click.option('--socket-fd', type=int, help='Use fd number as server socket (alternative to --socket-path)')
@click.option('--api-url', required=True, help='Uffd base URL without API prefix or trailing slash (e.g. https://example.com)')
@click.option('--api-secret', required=True, help='API secret, do not set this on the command-line, use environment variable SERVER_API_SECRET instead')
@@ -259,6 +260,14 @@ def main(socket_path, socket_fd, api_url, api_user, api_secret):
@@ -259,6 +260,14 @@ def main(socket_path, socket_fd, api_url, api_user, api_secret):