toml
Verified User
His exim was already configured for IPv6 or else it would be attempting to connect to rpsamd at ::1.
I just looked at my rspamd configuration and see that /etc/rspamd/rspamd.conf has all the bind_socket parameters set to "localhost:1133[2|3|4|5]", in my case that forced it to bind only to IPv4. https://rspamd.com/doc/workers/ says that to bind to both IPv4 and IPv6, it should be "*:113[2|3|4|5]" for the bind_sockets so that it would look more like:
[root@moe rspamd]# grep bind_socket rspamd.conf
bind_socket = "*:11333";
bind_socket = "*:11334";
bind_socket = "*:11332";
bind_socket = "*:11335";
I just looked at my rspamd configuration and see that /etc/rspamd/rspamd.conf has all the bind_socket parameters set to "localhost:1133[2|3|4|5]", in my case that forced it to bind only to IPv4. https://rspamd.com/doc/workers/ says that to bind to both IPv4 and IPv6, it should be "*:113[2|3|4|5]" for the bind_sockets so that it would look more like:
[root@moe rspamd]# grep bind_socket rspamd.conf
bind_socket = "*:11333";
bind_socket = "*:11334";
bind_socket = "*:11332";
bind_socket = "*:11335";