]> git.proxmox.com Git - pmg-docs.git/blame - pmgconfig.adoc
pmgconfig.adoc: improve transport docs
[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
9bfe27f3
DM
52`/etc/resolv.conf`::
53
54DNS search domain and nameserver setup.
55
56`/etc/hostname`::
57
58The system's host name.
59
60`/etc/hosts`::
61
62Static table lookup for hostnames.
63
66e9c719
DM
64`/etc/pmg/pmg.conf`::
65
66Stores common administration options, i.e. the spam and mail proxy setup.
67
68`/etc/pmg/cluster.conf`::
69
70The cluster setup.
71
72`/etc/pmg/domains`::
73
74The list of relay domains.
75
76`/etc/pmg/fetchmailrc`::
77
78Fetchmail configuration (POP3 and IMAP setup).
79
80`/etc/pmg/ldap.conf`::
81
82LDAP configuration.
83
84`/etc/pmg/mynetworks`::
85
86List of local (trusted) networks.
87
88`/etc/pmg/subscription`::
89
90Stores your subscription key and status.
91
92`/etc/pmg/transports`::
93
94Message delivery transport setup.
95
96`/etc/pmg/user.conf`::
97
98GUI user configuration.
99
797db11d
DM
100`/etc/mail/spamassassin/custom.cf`::
101
102Custom {spamassassin} setup.
103
66e9c719
DM
104
105Keys and Certificates
106---------------------
107
108`/etc/pmg/pmg-api.pem`::
109
110Key and certificate (combined) used be the HTTPs server (API).
111
112`/etc/pmg/pmg-authkey.key`::
113
114Privat key use to generate authentication tickets.
115
116`/etc/pmg/pmg-authkey.pub`::
117
118Public key use to verify authentication tickets.
119
120`/etc/pmg/pmg-csrf.key`::
121
122Internally used to generate CSRF tokens.
123
124`/etc/pmg/pmg-tls.pem`::
125
126Key and certificate (combined) to encrypt mail traffic (TLS).
127
128
129Service Configuration Templates
130-------------------------------
131
9c85cc80
DM
132{pmg} uses various services to implement mail filtering, for example
133the {postfix} Mail Transport Agent (MTA), the {clamav} antivirus
134engine and the Apache {spamassassin} project. Those services use
135separate configuration files, so we need to rewrite those files when
136configuration is changed.
137
138We use a template based approach to generate those files. The {tts} is
139a well known, fast and flexible template processing system. You can
140find the default templates in `/var/lib/pmg/templates/`. Please do not
141modify them directly, because your modification would get lost on the
142next update. Instead, copy them to `/etc/pmg/templates/`, then apply
143your changes there.
144
145Templates can access any configuration setting, and you can use the
146`pmgconfig dump` command to get a list of all variable names:
147
148----
149# pmgconfig dump
150...
151dns.domain = yourdomain.tld
152dns.hostname = pmg
153ipconfig.int_ip = 192.168.2.127
154pmg.admin.advfilter = 1
155...
156----
157
158The same tool is used to force regeneration of all template based
159configuration files. You need to run that after modifying a template,
160or when you directly edit configuration files
161
162----
163# pmgconfig sync --restart 1
164----
165
166Above commands also restarts services if underlying configuration
167files are changed. Please note that this is automatically done when
168you change the configuration using the GUI or API.
169
170NOTE: Modified templates from `/etc/pmg/templates/` are automatically
171synced from the master node to all cluster members.
66e9c719
DM
172
173
685576c2
DM
174System Configuration
175--------------------
176
177Network and Time
178~~~~~~~~~~~~~~~~
179
180ifndef::manvolnum[]
181image::images/screenshot/pmg-gui-network-config.png[]
182endif::manvolnum[]
183
45de5bf5
DM
184Normally the network and time is already configured when you visit the
185GUI. The installer asks for those setting and sets up the correct
186values.
187
188The default setup uses a single Ethernet adapter and static IP
189assignment. The configuration is stored at '/etc/network/interfaces',
190and the actual network setup is done the standard Debian way using
191package 'ifupdown'.
192
193.Example network setup '/etc/network/interfaces'
194----
195source /etc/network/interfaces.d/*
196
197auto lo
198iface lo inet loopback
199
200auto ens18
201iface ens18 inet static
202 address 192.168.2.127
203 netmask 255.255.240.0
204 gateway 192.168.2.1
205----
206
207.DNS recommendations
208
209Many tests to detect SPAM mails use DNS queries, so it is important to
210have a fast and reliable DNS server. We also query some public
211available DNS Blacklists. Most of them apply rate limits for clients,
212so they simply will not work if you use a public DNS server (because
213they are usually blocked). We recommend to use your own DNS server,
214which need to be configured in 'recursive' mode.
685576c2
DM
215
216
217Options
218~~~~~~~
219
220ifndef::manvolnum[]
221image::images/screenshot/pmg-gui-system-options.png[]
222endif::manvolnum[]
223
e09057ab
DM
224
225Those settings are saved to subsection 'admin' in `/etc/pmg/pmg.conf`,
226using the following configuration keys:
227
685576c2
DM
228include::pmg.admin-conf-opts.adoc[]
229
c331641e
DM
230
231Mail Proxy Configuration
232------------------------
233
234Relaying
235~~~~~~~~
236
c331641e
DM
237ifndef::manvolnum[]
238image::images/screenshot/pmg-gui-mailproxy-relaying.png[]
239endif::manvolnum[]
240
e09057ab
DM
241Those settings are saved to subsection 'mail' in `/etc/pmg/pmg.conf`,
242using the following configuration keys:
243
244include::pmg.mail-relaying-conf-opts.adoc[]
c331641e
DM
245
246Relay Domains
247~~~~~~~~~~~~~
248
249
250ifndef::manvolnum[]
251image::images/screenshot/pmg-gui-mailproxy-relaydomains.png[]
252endif::manvolnum[]
253
254TODO
255
d9c56b22 256
c331641e
DM
257Ports
258~~~~~
259
c331641e
DM
260ifndef::manvolnum[]
261image::images/screenshot/pmg-gui-mailproxy-ports.png[]
262endif::manvolnum[]
263
d9c56b22
DM
264Those settings are saved to subsection 'mail' in `/etc/pmg/pmg.conf`,
265using the following configuration keys:
266
267include::pmg.mail-ports-conf-opts.adoc[]
268
c331641e
DM
269
270Options
271~~~~~~~
272
c331641e
DM
273ifndef::manvolnum[]
274image::images/screenshot/pmg-gui-mailproxy-options.png[]
275endif::manvolnum[]
276
e3d778e0
DM
277Those settings are saved to subsection 'mail' in `/etc/pmg/pmg.conf`,
278using the following configuration keys:
279
280include::pmg.mail-options-conf-opts.adoc[]
c331641e
DM
281
282
283Transports
284~~~~~~~~~~
285
286ifndef::manvolnum[]
287image::images/screenshot/pmg-gui-mailproxy-transports.png[]
288endif::manvolnum[]
289
b335e06b
DM
290You can use {pmg} to send e-mails to different internal
291e-mail servers. For example you can send e-mails addressed to
292domain.com to your first e-mail server, and e-mails addressed to
293subdomain.domain.com to a second one.
294
295You can add the IP addresses, hostname and SMTP ports and mail domains (or
296just single email addresses) of your additional e-mail servers.
c331641e
DM
297
298
299Networks
300~~~~~~~~
301
302ifndef::manvolnum[]
303image::images/screenshot/pmg-gui-mailproxy-networks.png[]
304endif::manvolnum[]
305
306TODO
307
308
309TLS
310~~~
311
312ifndef::manvolnum[]
313image::images/screenshot/pmg-gui-mailproxy-tls.png[]
314endif::manvolnum[]
315
a649b38f
DM
316Those settings are saved to subsection 'mail' in `/etc/pmg/pmg.conf`,
317using the following configuration keys:
318
319include::pmg.mail-tls-conf-opts.adoc[]
320
c331641e
DM
321
322Whitelist
323~~~~~~~~~
324
325ifndef::manvolnum[]
326image::images/screenshot/pmg-gui-mailproxy-whitelist.png[]
327endif::manvolnum[]
328
329TODO
330
331
332Spam Detector Configuration
333---------------------------
334
335TODO
336
337
338Virus Detector Configuration
339----------------------------
340
341TODO
342
343
344User Management
345---------------
346
347TODO
348
349
e62ceaf0
DM
350ifdef::manvolnum[]
351include::pmg-copyright.adoc[]
352endif::manvolnum[]
353