|
1 | 1 | # handlers file
|
2 | 2 | ---
|
3 | 3 | - name: new aliases
|
4 |
| - command: newaliases |
| 4 | + command: > |
| 5 | + newaliases |
5 | 6 | when: postfix_default_database_type != 'regexp'
|
6 | 7 |
|
7 | 8 | - name: new virtual aliases
|
8 |
| - command: postmap {{ postfix_default_database_type }}:{{ postfix_virtual_aliases_file }} |
| 9 | + command: > |
| 10 | + postmap {{ postfix_default_database_type }}:{{ postfix_virtual_aliases_file }} |
9 | 11 | when: postfix_default_database_type != 'regexp'
|
10 | 12 |
|
11 | 13 | - name: postmap sasl_passwd
|
12 |
| - command: postmap {{ postfix_default_database_type }}:{{ postfix_sasl_passwd_file }} |
| 14 | + command: > |
| 15 | + postmap {{ postfix_default_database_type }}:{{ postfix_sasl_passwd_file }} |
13 | 16 | when: postfix_default_database_type != 'regexp'
|
14 | 17 |
|
15 | 18 | - name: postmap sender_canonical_maps
|
16 |
| - command: postmap {{ postfix_sender_canonical_maps_database_type }}:{{ postfix_sender_canonical_maps_file }} |
| 19 | + command: > |
| 20 | + postmap {{ postfix_sender_canonical_maps_database_type }}:{{ postfix_sender_canonical_maps_file }} |
17 | 21 | when: postfix_sender_canonical_maps_database_type != 'regexp'
|
18 | 22 |
|
19 | 23 | - name: postmap recipient_canonical_maps
|
20 |
| - command: postmap {{ postfix_recipient_canonical_maps_database_type }}:{{ postfix_recipient_canonical_maps_file }} |
| 24 | + command: > |
| 25 | + postmap {{ postfix_recipient_canonical_maps_database_type }}:{{ postfix_recipient_canonical_maps_file }} |
21 | 26 | when: postfix_recipient_canonical_maps_database_type != 'regexp'
|
22 | 27 |
|
23 | 28 | - name: postmap transport_maps
|
24 |
| - command: postmap {{ postfix_transport_maps_database_type }}:{{ postfix_transport_maps_file }} |
| 29 | + command: > |
| 30 | + postmap {{ postfix_transport_maps_database_type }}:{{ postfix_transport_maps_file }} |
25 | 31 | when: postfix_transport_maps_database_type != 'regexp'
|
26 | 32 |
|
27 | 33 | - name: postmap sender_dependent_relayhost_maps
|
28 |
| - command: postmap {{ postfix_default_database_type }}:{{ postfix_sender_dependent_relayhost_maps_file }} |
| 34 | + command: > |
| 35 | + postmap {{ postfix_default_database_type }}:{{ postfix_sender_dependent_relayhost_maps_file }} |
29 | 36 | when: postfix_default_database_type != 'regexp'
|
30 | 37 |
|
31 | 38 | - name: postmap generic
|
32 |
| - command: postmap {{ postfix_smtp_generic_maps_database_type }}:{{ postfix_smtp_generic_maps_file }} |
| 39 | + command: > |
| 40 | + postmap {{ postfix_smtp_generic_maps_database_type }}:{{ postfix_smtp_generic_maps_file }} |
33 | 41 | when: postfix_smtp_generic_maps_database_type != 'regexp'
|
34 | 42 |
|
35 | 43 | - name: remove pid
|
|
0 commit comments