diff options
author | 2024-08-22 18:35:42 +0100 | |
---|---|---|
committer | 2024-08-23 16:52:17 +0100 | |
commit | 62219dceae76a8a85ed55f6ff21cd98974678a8b (patch) | |
tree | 50cc7a9f5dcb713414fc94a6bd8a0d18be6900bb /ansible | |
parent | Add new templates for Dovecot config (diff) |
Add IMAP to firewall allowed list
Diffstat (limited to 'ansible')
-rw-r--r-- | ansible/group_vars/all/nftables.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ansible/group_vars/all/nftables.yml b/ansible/group_vars/all/nftables.yml index 2e8f61a..df9c853 100644 --- a/ansible/group_vars/all/nftables.yml +++ b/ansible/group_vars/all/nftables.yml @@ -18,8 +18,13 @@ nftables_configuration: | set mail_accepted { type inet_service elements = { + # Mail submission smtp, - smtps + smtps, + submission, + # Mail receiving + imap, + imaps } } {% endif %} |