diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-04-20 14:13:00 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-04-20 14:13:00 -0700 |
commit | 1a1b7c7d9303f5ebadc8e71dad3c82f3bea2bb24 (patch) | |
tree | b391876a99e0b206e74c4a37164e804886b88133 /playbooks/roles/outbound/tasks | |
parent | d85cfa1693068666512b183ce9437faddda7de87 (diff) | |
download | infra-1a1b7c7d9303f5ebadc8e71dad3c82f3bea2bb24.tar.gz infra-1a1b7c7d9303f5ebadc8e71dad3c82f3bea2bb24.zip |
Fix umask
Diffstat (limited to 'playbooks/roles/outbound/tasks')
-rw-r--r-- | playbooks/roles/outbound/tasks/main.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/playbooks/roles/outbound/tasks/main.yml b/playbooks/roles/outbound/tasks/main.yml index 863351f..107e71a 100644 --- a/playbooks/roles/outbound/tasks/main.yml +++ b/playbooks/roles/outbound/tasks/main.yml @@ -94,6 +94,18 @@ with_filetree: '../templates/proxy' when: item.state == 'file' +- name: Allow mail ports + with_items: + - "25" + - "587" + - "465" + - "993" + - "4190" + community.general.ufw: + rule: allow + port: "{{ item }}" + state: "enabled" + - name: Daemon-reload and enable proxy ansible.builtin.systemd_service: state: started |