ports toString

This commit is contained in:
niten 2023-09-25 09:36:28 -07:00
parent 507d47719d
commit 7b2abd2fe4
1 changed files with 4 additions and 4 deletions

View File

@ -379,13 +379,13 @@ in {
"i {mail_addr} {client_addr} {client_name} {auth_type} {auth_authen} {auth_author} {mail_addr} {mail_host} {mail_mailer}";
smtpd_milters = [
"inet:${cfg.rspamd-server.host}:${cfg.rspamd-server.port}"
"inet:${cfg.dkim.host}:${cfg.dkim.port}"
"inet:${cfg.rspamd-server.host}:${toString cfg.rspamd-server.port}"
"inet:${cfg.dkim.host}:${toString cfg.dkim.port}"
];
non_smtpd_milters = [
"inet:${cfg.rspamd-server.host}:${cfg.rspamd-server.port}"
"inet:${cfg.dkim.host}:${cfg.dkim.port}"
"inet:${cfg.rspamd-server.host}:${toString cfg.rspamd-server.port}"
"inet:${cfg.dkim.host}:${toString cfg.dkim.port}"
];
helo_required = true;