Hello, We have followed your configuration to setup kumomta, like configure queues.toml, source.toml, etc. Also, trying to set up socks5 proxy but occuring some error checked in webhook logs
"KumoMTA internal: failed to connect to any candidate hosts: connect to ResolvedAddress { name: "gmail-smtp-in.l.google.com.", addr: 64.233.177.26 } port 25 and read initial banner: failed to bind <SERVER_IP_1> via Socks5 { server: <SOCKS5_SERVER_IP>:5000, source: <SERVER_IP_1>, destination: 64.233.177.26:25, username_and_password: None }: SocksV5Response { status: ServerFailure, host: Ipv4([0, 0, 0, 0]), port: 0 }, connect to ResolvedAddress { name: "gmail-smtp-in.l.google.com.", addr: 2607:f8b0:4002:c00::1a } port 25 and read initial banner: Skipping ip-2 because socks5_proxy_source_address address family does not match the destination address family
"
Here are the files,
queues.toml >>>
scheduling_header = “X-Schedule”
tenant_header = “X-Tenant”
remove_tenant_header = true
campaign_header = “X-Campaign”
remove_campaign_header = true
default_tenant = “person-1”
[tenant.‘person-1’]
egress_pool = ‘pool-1’
max_age = ‘10 hours’
[tenant.‘person-2’]
egress_pool = ‘pool-2’
[queue.‘mydomain.com’]
max_age = ‘22 hours’
retry_interval = ‘17 mins’
[queue.‘mydomain.com’.‘person-1’]
sources.toml >>>
[source.“ip-1”]
source_address = ‘<SERVER_IP_1>’
ehlo_domain = ‘mail.mydomain.com’
socks5_proxy_source_address = ‘<SERVER_IP_1>’
socks5_proxy_server = ‘<SOCKS5_SERVER_IP>:5000’
Pool containing just ip-1, which has weight=1
[pool]
[pool.“pool-1”]
[pool.“pool-1”.“ip-1”]
[source.“ip-2”]
source_address = ‘<SERVER_IP_2>’
ehlo_domain = ‘mail2.mydomain.com’
socks5_proxy_source_address = ‘<SERVER_IP_2>’
socks5_proxy_server = ‘<SOCKS5_SERVER_IP>:5000’
[pool]
[pool.“pool-2”]
[pool.“pool-2”.“ip-2”]
Could you help me to get this solve?