From 108c83dd547e49ca384870509334351e4fb455ba Mon Sep 17 00:00:00 2001 From: louis Date: Wed, 2 Oct 2024 21:56:38 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Adjust=20README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index a3477b6..83364fe 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,15 @@ The adapter is configured via environment variables: - `USERLI_TOKEN`: The token to authenticate against the userli API. - `USERLI_BASE_URL`: The base URL of the userli API. - `ALIAS_LISTEN_ADDR`: The address to listen on for incoming requests. Default: `10001`. +- `DOMAIN_LISTEN_ADDR`: The address to listen on for incoming requests. Default: `10002`. +- `MAILBOX_LISTEN_ADDR`: The address to listen on for incoming requests. Default: `10003`. +- `SENDERS_LISTEN_ADDR`: The address to listen on for incoming requests. Default: `10004`. In Postfix, you can configure the adapter as a transport like this: ```text virtual_alias_maps = tcp:localhost:10001 +virtual_mailbox_domains = tcp:localhost:10002 +virtual_mailbox_maps = tcp:localhost:10003 +smtpd_sender_login_maps = tcp:localhost:10004 ```