socks5_proxy_server
Since: Version 2023.06.22-51b72a83
The functionality described in this section requires version 2023.06.22-51b72a83 of KumoMTA, or a more recent version.
Optional string.
If both socks5_proxy_server
and socks5_proxy_source_address
are specified, then
SMTP connections will be made via a SOCKS5 Proxy server.
socks5_proxy_server
specifies the address and port of the proxy server.
kumo.on('get_egress_source', function(source_name)
if source_name == 'ip-1' then
-- Make a source that will emit from 10.0.0.1, via a proxy server
kumo.make_egress_source {
name = 'ip-1',
socks5_proxy_source_address = '10.0.0.1',
socks5_proxy_server = '10.0.0.1:5000',
ehlo_domain = 'mta1.examplecorp.com',
}
end
error 'you need to do something for other source names'
end)