diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2020-04-22 19:37:03 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2020-04-22 19:37:09 +0200 |
commit | 61b5f01bde3159f40417fe9562b9979a0513e5ae (patch) | |
tree | 79cf15a2cced67b4752e9dc39f2f50deb34e7717 | |
parent | 19c50a5f3c4420d09928a3031dd8ecfaa5ea6dbc (diff) |
Use dedicated DKIM key for guilhem.org.
-rw-r--r-- | certs/dkim/d32231afe345182ae1a9b376fa912dca:guilhem.org.pub | 9 | ||||
-rw-r--r-- | group_vars/all.yml | 9 |
2 files changed, 15 insertions, 3 deletions
diff --git a/certs/dkim/d32231afe345182ae1a9b376fa912dca:guilhem.org.pub b/certs/dkim/d32231afe345182ae1a9b376fa912dca:guilhem.org.pub new file mode 100644 index 0000000..360fe90 --- /dev/null +++ b/certs/dkim/d32231afe345182ae1a9b376fa912dca:guilhem.org.pub @@ -0,0 +1,9 @@ +-----BEGIN PUBLIC KEY----- +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArcDGkR2PB0DAySR3Rel5 +qGjrMYInAwPAbyZ6SFYjjKZxEGFqkgyweUJATxa17rFZ2AWU6M0TKKEgCCDWYasa +NfQUJd5yRcZksEhLU3S3dKNj5OmtbgFdtV3rtw8Eavxv6rSsYkzyzcQTSQDKkkGf +CMSwWAkWYVTxRhdqRdbv+rQv47ykzymBKSU2PTkg3u/oWE0ebtSM9O4Q6AzSNiWM +X4ClWndCpK+04WrR8GaWfsQiWpQHzwidTq8ybZXzHjU8wBl44/N5R4RytB9AFhiM +31gnQ7yQ0JAt9vVrnzF8WNNAiSbtMukygsP9lem9ZTKCjPgKrr8IajKbdlwV49My +GwIDAQAB +-----END PUBLIC KEY----- diff --git a/group_vars/all.yml b/group_vars/all.yml index 611bad2..f3593fe 100644 --- a/group_vars/all.yml +++ b/group_vars/all.yml @@ -41,26 +41,29 @@ postfix_instance: MSA: { name: msa , addr: "{{ (groups.all | length > 1) | ternary( ipsec[ hostvars[groups.MSA[0]].inventory_hostname_short ], '127.0.0.1') }}" , port: 2587 } lists: { name: lists , addr: "{{ (groups.all | length > 1) | ternary( ipsec[ hostvars[groups.lists[0]].inventory_hostname_short ], '127.0.0.1') }}" , port: 2527 } imapsvr_addr: "{{ postfix_instance.IMAP.addr | ipaddr }}" dkim_keys: giraff: # match key "fripost.org": # domain of the entity signing the message (should be unique accross match keys) d: fripost.org # selector (randomly generated with `xxd -p -l16 </dev/urandom`) s: 8f00fb94ec6c37aacb48bd43e073f9b7 "lists.fripost.org": d: lists.fripost.org s: d3df4ddda85e3c927621b1b02a9cbb85 - "~": # catch-all, for our virtual domains - d: x.fripost.org - s: 9df9cdc7e101629b5003b587945afa70 "guilhem@debian.org": d: debian.org s: 5d30c523ff3622ed454230a16a11ddf6.guilhem.user + "guilhem.org": + d: guilhem.org + s: d32231afe345182ae1a9b376fa912dca + "~": # catch-all, for our virtual domains + d: x.fripost.org + s: 9df9cdc7e101629b5003b587945afa70 |