diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-08-04 19:56:02 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-08-04 19:56:02 -0300 |
commit | 2a5feff1c6b3cd266bf8e8d6687f67f3cb9811dc (patch) | |
tree | f211acc50463a91feefc005b2611b9d70d8c2670 /files/gpg_mailgate | |
parent | 1f6acd780995fda8b7e1f5f1469c6db54ff8d57a (diff) | |
download | puppet-mail-2a5feff1c6b3cd266bf8e8d6687f67f3cb9811dc.tar.gz puppet-mail-2a5feff1c6b3cd266bf8e8d6687f67f3cb9811dc.tar.bz2 |
Adding gpg-mailgate support
Diffstat (limited to 'files/gpg_mailgate')
-rw-r--r-- | files/gpg_mailgate/gpg-mailgate.conf | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/files/gpg_mailgate/gpg-mailgate.conf b/files/gpg_mailgate/gpg-mailgate.conf new file mode 100644 index 0000000..c2c4872 --- /dev/null +++ b/files/gpg_mailgate/gpg-mailgate.conf @@ -0,0 +1,23 @@ +[default] +add_header = yes +domains = example.com,corp.org + +[gpg] +keyhome = /var/lib/gpgmailgate/.gnupg + +[logging] +file = /var/log/gpg-mailgate.log + +[relay] +host = 127.0.0.1 +port = 10028 + +[keymap] +# You can find these by running the following command: +# gpg --list-keys --keyid-format long user@example.com +# Which will return output similar to: +# pub 1024D/AAAAAAAAAAAAAAAA 2007-10-22 +# uid Joe User <user@example.com> +# sub 2048g/BBBBBBBBBBBBBBBB 2007-10-22 +# You want the AAAAAAAAAAAAAAAA not BBBBBBBBBBBBBBBB. +#user@example.com = <gpg key id> |