forked from daschatten/exim-formula
-
Notifications
You must be signed in to change notification settings - Fork 15
/
pillar.example
83 lines (79 loc) · 2.49 KB
/
pillar.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# -*- coding: utf-8 -*-
# vim: ft=yaml
---
exim:
config:
# yamllint disable-line rule:line-length
# See https://manpages.debian.org/buster/exim4-config/update-exim4.conf.8.en.html for details
configtype: 'satellite'
hide_mailname: 'true'
ue4c_keepcomments: 'true'
localdelivery: 'mail_spool'
local_interfaces: ''
minimaldns: 'false'
other_hostnames: ''
readhost: ''
relay_domains: ''
relay_nets: ''
smarthost: ''
mailname: foo.bar.baz
aliases:
root: root@bar.baz
files:
# 'base' dir files will be located under the main CONFDIR (/etc/exim4)
# this allows you to write files like `/etc/exim4/exim4.conf.localmacros`
# or `/etc/exim4/passwd.client`
base:
'passwd.client': |
# <server>:<username>:<user password>
*:mymail@example.com:abdc1243
main:
'01_exim4-config_listmacrosdefs': |
exim_path = /usr/sbin/exim4
# Macro defining the main configuration directory.
# We do not use absolute paths.
.ifndef CONFDIR
CONFDIR = /etc/exim4
.endif
'90_exim4-config_log_selector': |
# uncomment this for debugging
# MAIN_LOG_SELECTOR == MAIN_LOG_SELECTOR +all -subject -arguments
.ifdef MAIN_LOG_SELECTOR
log_selector = MAIN_LOG_SELECTOR
.endif
acl:
'00_exim4-config_header': |
begin acl
router: null
transport: null
retry:
'file3': |
# some more config
rewrite: null
auth: null
tofs:
# The files_switch key serves as a selector for alternative
# directories under the formula files directory. See TOFS pattern
# doc for more info.
# Note: Any value not evaluated by `config.get` will be used literally.
# This can be used to set custom paths, as many levels deep as required.
# files_switch:
# - any/path/can/be/used/here
# - id
# - roles
# - osfinger
# - os
# - os_family
# All aspects of path/file resolution are customisable using the options below.
# This is unnecessary in most cases; there are sensible defaults.
# Default path: salt://< path_prefix >/< dirs.files >/< dirs.default >
# I.e.: salt://exim/files/default
# path_prefix: exim_alt
# dirs:
# files: files_alt
# default: default_alt
# The entries under `source_files` are prepended to the default source files
# given for the state
source_files:
exim/config/install:
- 'alt_update-exim4.conf.conf'