Notifications
Clear all
Topic starter
12/18/2023 09:17
If, when installing as IP Mode: I specify both, then in general the installation proceeds normally and even everything works. With the exception of reverse proxy on imap, imaps, pop3, pop3s ports. These services only respond to ipv6.
The fact is that in the template files in the directory /opt/zextras/conf/nginx/templates for the value both there are only lines like "[::]:${mail.imap.port};" which provide operation over ipv6, but do not provide operation over ipv4.
To fix this, I had to manually make corrections like this:
${core.ipboth.enabled}listen [::]:${mail.imap.port};
${core.ipboth.enabled}listen ${mail.imap.port};
in all templates that contain "ipboth.enabled"
Perhaps it makes sense to add these corrections to the project code base?