]> git.proxmox.com Git - pmg-docs.git/blame - pmgconfig.adoc
add Service Configuration Templates section
[pmg-docs.git] / pmgconfig.adoc
CommitLineData
e62ceaf0
DM
1[[chapter_pmgconfig]]
2ifdef::manvolnum[]
3pmgconfig(1)
4============
5:pmg-toplevel:
6
7NAME
8----
9
10pmgconfig - Proxmox Mail Gateway Configuration Management Toolkit
11
12
13SYNOPSIS
14--------
15
16include::pmgconfig.1-synopsis.adoc[]
17
18
19DESCRIPTION
20-----------
21endif::manvolnum[]
22ifndef::manvolnum[]
66e9c719
DM
23Configuration Management
24========================
e62ceaf0
DM
25:pmg-toplevel:
26endif::manvolnum[]
27
685576c2
DM
28{pmg} is usually configured using the web-based Graphical User
29Interface (GUI), but it is also possible to directly edit the
30configuration files, use the REST API over 'https'
66e9c719 31or the command line tool `pmgsh`.
685576c2 32
66e9c719 33The command line tool `pmgconfig` is used to simplify some common
685576c2
DM
34configuration tasks, i.e. to generate cerificates and to rewrite
35service configuration files.
36
66e9c719
DM
37NOTE: We use a Postgres database to store mail filter rules and
38statistic data. See chapter xref:chapter_pmgdb[Database Management]
39for more information.
40
41
42Configuration files overview
43----------------------------
44
45`/etc/network/interfaces`::
46
47Network setup. We never modify this files directly. Instead, we write
48changes to `/etc/network/interfaces.new`. When you reboot, we rename
49the file to `/etc/network/interfaces`, so any changes gets activated
50on the next reboot.
51
52`/etc/pmg/pmg.conf`::
53
54Stores common administration options, i.e. the spam and mail proxy setup.
55
56`/etc/pmg/cluster.conf`::
57
58The cluster setup.
59
60`/etc/pmg/domains`::
61
62The list of relay domains.
63
64`/etc/pmg/fetchmailrc`::
65
66Fetchmail configuration (POP3 and IMAP setup).
67
68`/etc/pmg/ldap.conf`::
69
70LDAP configuration.
71
72`/etc/pmg/mynetworks`::
73
74List of local (trusted) networks.
75
76`/etc/pmg/subscription`::
77
78Stores your subscription key and status.
79
80`/etc/pmg/transports`::
81
82Message delivery transport setup.
83
84`/etc/pmg/user.conf`::
85
86GUI user configuration.
87
88
89Keys and Certificates
90---------------------
91
92`/etc/pmg/pmg-api.pem`::
93
94Key and certificate (combined) used be the HTTPs server (API).
95
96`/etc/pmg/pmg-authkey.key`::
97
98Privat key use to generate authentication tickets.
99
100`/etc/pmg/pmg-authkey.pub`::
101
102Public key use to verify authentication tickets.
103
104`/etc/pmg/pmg-csrf.key`::
105
106Internally used to generate CSRF tokens.
107
108`/etc/pmg/pmg-tls.pem`::
109
110Key and certificate (combined) to encrypt mail traffic (TLS).
111
112
113Service Configuration Templates
114-------------------------------
115
9c85cc80
DM
116{pmg} uses various services to implement mail filtering, for example
117the {postfix} Mail Transport Agent (MTA), the {clamav} antivirus
118engine and the Apache {spamassassin} project. Those services use
119separate configuration files, so we need to rewrite those files when
120configuration is changed.
121
122We use a template based approach to generate those files. The {tts} is
123a well known, fast and flexible template processing system. You can
124find the default templates in `/var/lib/pmg/templates/`. Please do not
125modify them directly, because your modification would get lost on the
126next update. Instead, copy them to `/etc/pmg/templates/`, then apply
127your changes there.
128
129Templates can access any configuration setting, and you can use the
130`pmgconfig dump` command to get a list of all variable names:
131
132----
133# pmgconfig dump
134...
135dns.domain = yourdomain.tld
136dns.hostname = pmg
137ipconfig.int_ip = 192.168.2.127
138pmg.admin.advfilter = 1
139...
140----
141
142The same tool is used to force regeneration of all template based
143configuration files. You need to run that after modifying a template,
144or when you directly edit configuration files
145
146----
147# pmgconfig sync --restart 1
148----
149
150Above commands also restarts services if underlying configuration
151files are changed. Please note that this is automatically done when
152you change the configuration using the GUI or API.
153
154NOTE: Modified templates from `/etc/pmg/templates/` are automatically
155synced from the master node to all cluster members.
66e9c719
DM
156
157
685576c2
DM
158System Configuration
159--------------------
160
161Network and Time
162~~~~~~~~~~~~~~~~
163
164ifndef::manvolnum[]
165image::images/screenshot/pmg-gui-network-config.png[]
166endif::manvolnum[]
167
45de5bf5
DM
168Normally the network and time is already configured when you visit the
169GUI. The installer asks for those setting and sets up the correct
170values.
171
172The default setup uses a single Ethernet adapter and static IP
173assignment. The configuration is stored at '/etc/network/interfaces',
174and the actual network setup is done the standard Debian way using
175package 'ifupdown'.
176
177.Example network setup '/etc/network/interfaces'
178----
179source /etc/network/interfaces.d/*
180
181auto lo
182iface lo inet loopback
183
184auto ens18
185iface ens18 inet static
186 address 192.168.2.127
187 netmask 255.255.240.0
188 gateway 192.168.2.1
189----
190
191.DNS recommendations
192
193Many tests to detect SPAM mails use DNS queries, so it is important to
194have a fast and reliable DNS server. We also query some public
195available DNS Blacklists. Most of them apply rate limits for clients,
196so they simply will not work if you use a public DNS server (because
197they are usually blocked). We recommend to use your own DNS server,
198which need to be configured in 'recursive' mode.
685576c2
DM
199
200
201Options
202~~~~~~~
203
204ifndef::manvolnum[]
205image::images/screenshot/pmg-gui-system-options.png[]
206endif::manvolnum[]
207
208include::pmg.admin-conf-opts.adoc[]
209
210
211Backup and Restore
212~~~~~~~~~~~~~~~~~~
213
214ifndef::manvolnum[]
215image::images/screenshot/pmg-gui-backup.png[]
216endif::manvolnum[]
217
218TODO
219
220
e62ceaf0
DM
221
222ifdef::manvolnum[]
223include::pmg-copyright.adoc[]
224endif::manvolnum[]
225