diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-03-19 16:21:53 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-03-19 16:21:53 +0100 |
commit | 98311fc2ea91cc2a5f00e9fa85a30f50fde77e79 (patch) | |
tree | 58ff0ffad8cbe0230eff1791360bc7cc45501c34 /modules/profile/templates | |
parent | f4c9ed4c0a32082d8f7b60cee1eb33cb05c85a1c (diff) | |
parent | d87a489f9585d10f0a185beb59ae16a10f27a7bd (diff) | |
download | Puppet-98311fc2ea91cc2a5f00e9fa85a30f50fde77e79.tar.gz Puppet-98311fc2ea91cc2a5f00e9fa85a30f50fde77e79.tar.zst Puppet-98311fc2ea91cc2a5f00e9fa85a30f50fde77e79.zip |
Merge branch 'backup' into dev
Diffstat (limited to 'modules/profile/templates')
-rw-r--r-- | modules/profile/templates/mail/ssmtp.conf.erb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/profile/templates/mail/ssmtp.conf.erb b/modules/profile/templates/mail/ssmtp.conf.erb new file mode 100644 index 0000000..e7a0410 --- /dev/null +++ b/modules/profile/templates/mail/ssmtp.conf.erb | |||
@@ -0,0 +1,14 @@ | |||
1 | # | ||
2 | # /etc/ssmtp.conf -- a config file for sSMTP sendmail. | ||
3 | # | ||
4 | # The person who gets all mail for userids < 1000 | ||
5 | # Make this empty to disable rewriting. | ||
6 | root=postmaster | ||
7 | # The place where the mail goes. The actual machine name is required | ||
8 | # no MX records are consulted. Commonly mailhosts are named mail.domain.com | ||
9 | # The example will fit if you are in domain.com and you mailhub is so named. | ||
10 | mailhub=<%= @mailhub %>:<%= @mailhub_port %> | ||
11 | # Where will the mail seem to come from? | ||
12 | #rewriteDomain=y | ||
13 | # The full hostname | ||
14 | hostname=<%= @hostname %> | ||