-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update tests and docs to reflect the new modules
- Loading branch information
Showing
4 changed files
with
81 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -717,3 +717,73 @@ | |
- 'ANSIBLE_TEST_1_9' | ||
- 'ANSIBLE_TEST_1_10' | ||
- 'ANSIBLE_TEST_DUMMY_1_1' | ||
|
||
- name: Cleanup Psotfix General | ||
ansibleguy.opnsense.postfix_general: | ||
reload: false # speed | ||
|
||
- name: Cleanup Postfix Address | ||
ansibleguy.opnsense.postfix_address: | ||
address: "{{ item }}" | ||
state: 'absent' | ||
loop: | ||
- '[email protected]' | ||
- '[email protected]' | ||
|
||
- name: Cleanup Postfix Domain | ||
ansibleguy.opnsense.postfix_domain: | ||
domainname: "{{ item }}" | ||
state: 'absent' | ||
loop: | ||
- 'example.com' | ||
- 'example.net' | ||
|
||
- name: Cleanup Postfix Headercheck | ||
ansibleguy.opnsense.postfix_headercheck: | ||
expression: '/^\s*User-Agent/ IGNORE' | ||
filter: '{{ item }}' | ||
state: 'absent' | ||
loop: | ||
- 'WHILE_RECEIVING' | ||
- 'WHILE_DELIVERING' | ||
|
||
- name: Cleanup Postfix Recipient | ||
ansibleguy.opnsense.postfix_recipient: | ||
address: '{{ item }}' | ||
state: 'absent' | ||
loop: | ||
- '[email protected]' | ||
- '[email protected]' | ||
|
||
- name: Cleanup Postfix Recipient BCC | ||
ansibleguy.opnsense.postfix_recipientbcc: | ||
address: '{{ item }}' | ||
state: 'absent' | ||
loop: | ||
- '[email protected]' | ||
- '[email protected]' | ||
|
||
- name: Cleanup Postfix Sender | ||
ansibleguy.opnsense.postfix_sender: | ||
address: '{{ item }}' | ||
state: 'absent' | ||
loop: | ||
- '[email protected]' | ||
- '[email protected]' | ||
|
||
- name: Cleanup Postfix Sender BCC | ||
ansibleguy.opnsense.postfix_senderbcc: | ||
address: '{{ item }}' | ||
state: 'absent' | ||
loop: | ||
- '[email protected]' | ||
- '[email protected]' | ||
|
||
|
||
- name: Cleanup Postfix Sender Canonical | ||
ansibleguy.opnsense.postfix_sendercanonical: | ||
address: '{{ item }}' | ||
state: 'absent' | ||
loop: | ||
- '[email protected]' | ||
- '[email protected]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,3 +26,4 @@ | |
- 'os-frr' | ||
- 'os-bind' | ||
- 'os-acme-client' | ||
- 'os-postfix' |