]> git.proxmox.com Git - pmg-docs.git/blame - pmgconfig.adoc
bump version to 5.1-2
[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
37b2b051
SI
92`/etc/pmg/tls_policy`::
93
94TLS policy for outbound connections.
95
66e9c719
DM
96`/etc/pmg/transports`::
97
98Message delivery transport setup.
99
100`/etc/pmg/user.conf`::
101
102GUI user configuration.
103
797db11d
DM
104`/etc/mail/spamassassin/custom.cf`::
105
106Custom {spamassassin} setup.
107
66e9c719
DM
108
109Keys and Certificates
110---------------------
111
112`/etc/pmg/pmg-api.pem`::
113
114Key and certificate (combined) used be the HTTPs server (API).
115
116`/etc/pmg/pmg-authkey.key`::
117
118Privat key use to generate authentication tickets.
119
120`/etc/pmg/pmg-authkey.pub`::
121
122Public key use to verify authentication tickets.
123
124`/etc/pmg/pmg-csrf.key`::
125
126Internally used to generate CSRF tokens.
127
128`/etc/pmg/pmg-tls.pem`::
129
130Key and certificate (combined) to encrypt mail traffic (TLS).
131
132
133Service Configuration Templates
134-------------------------------
135
9c85cc80
DM
136{pmg} uses various services to implement mail filtering, for example
137the {postfix} Mail Transport Agent (MTA), the {clamav} antivirus
138engine and the Apache {spamassassin} project. Those services use
139separate configuration files, so we need to rewrite those files when
140configuration is changed.
141
142We use a template based approach to generate those files. The {tts} is
143a well known, fast and flexible template processing system. You can
144find the default templates in `/var/lib/pmg/templates/`. Please do not
145modify them directly, because your modification would get lost on the
146next update. Instead, copy them to `/etc/pmg/templates/`, then apply
147your changes there.
148
149Templates can access any configuration setting, and you can use the
150`pmgconfig dump` command to get a list of all variable names:
151
152----
153# pmgconfig dump
154...
155dns.domain = yourdomain.tld
156dns.hostname = pmg
157ipconfig.int_ip = 192.168.2.127
158pmg.admin.advfilter = 1
159...
160----
161
162The same tool is used to force regeneration of all template based
163configuration files. You need to run that after modifying a template,
164or when you directly edit configuration files
165
166----
167# pmgconfig sync --restart 1
168----
169
170Above commands also restarts services if underlying configuration
171files are changed. Please note that this is automatically done when
172you change the configuration using the GUI or API.
173
174NOTE: Modified templates from `/etc/pmg/templates/` are automatically
175synced from the master node to all cluster members.
66e9c719
DM
176
177
685576c2
DM
178System Configuration
179--------------------
180
181Network and Time
182~~~~~~~~~~~~~~~~
183
184ifndef::manvolnum[]
185image::images/screenshot/pmg-gui-network-config.png[]
186endif::manvolnum[]
187
45de5bf5
DM
188Normally the network and time is already configured when you visit the
189GUI. The installer asks for those setting and sets up the correct
190values.
191
192The default setup uses a single Ethernet adapter and static IP
193assignment. The configuration is stored at '/etc/network/interfaces',
194and the actual network setup is done the standard Debian way using
195package 'ifupdown'.
196
197.Example network setup '/etc/network/interfaces'
198----
199source /etc/network/interfaces.d/*
200
201auto lo
202iface lo inet loopback
203
204auto ens18
205iface ens18 inet static
206 address 192.168.2.127
207 netmask 255.255.240.0
208 gateway 192.168.2.1
209----
210
211.DNS recommendations
212
213Many tests to detect SPAM mails use DNS queries, so it is important to
214have a fast and reliable DNS server. We also query some public
215available DNS Blacklists. Most of them apply rate limits for clients,
216so they simply will not work if you use a public DNS server (because
217they are usually blocked). We recommend to use your own DNS server,
218which need to be configured in 'recursive' mode.
685576c2
DM
219
220
221Options
222~~~~~~~
223
224ifndef::manvolnum[]
225image::images/screenshot/pmg-gui-system-options.png[]
226endif::manvolnum[]
227
e09057ab
DM
228
229Those settings are saved to subsection 'admin' in `/etc/pmg/pmg.conf`,
230using the following configuration keys:
231
685576c2
DM
232include::pmg.admin-conf-opts.adoc[]
233
c331641e
DM
234
235Mail Proxy Configuration
236------------------------
237
238Relaying
239~~~~~~~~
240
c331641e
DM
241ifndef::manvolnum[]
242image::images/screenshot/pmg-gui-mailproxy-relaying.png[]
243endif::manvolnum[]
244
e09057ab
DM
245Those settings are saved to subsection 'mail' in `/etc/pmg/pmg.conf`,
246using the following configuration keys:
247
248include::pmg.mail-relaying-conf-opts.adoc[]
c331641e
DM
249
250Relay Domains
251~~~~~~~~~~~~~
252
c331641e
DM
253ifndef::manvolnum[]
254image::images/screenshot/pmg-gui-mailproxy-relaydomains.png[]
255endif::manvolnum[]
256
6822b369
DM
257List of relayed mail domains, i.e. what destination domains this
258system will relay mail to. The system will reject incoming mails to
259other domains.
c331641e 260
d9c56b22 261
c331641e
DM
262Ports
263~~~~~
264
c331641e
DM
265ifndef::manvolnum[]
266image::images/screenshot/pmg-gui-mailproxy-ports.png[]
267endif::manvolnum[]
268
d9c56b22
DM
269Those settings are saved to subsection 'mail' in `/etc/pmg/pmg.conf`,
270using the following configuration keys:
271
272include::pmg.mail-ports-conf-opts.adoc[]
273
c331641e
DM
274
275Options
276~~~~~~~
277
c331641e
DM
278ifndef::manvolnum[]
279image::images/screenshot/pmg-gui-mailproxy-options.png[]
280endif::manvolnum[]
281
e3d778e0
DM
282Those settings are saved to subsection 'mail' in `/etc/pmg/pmg.conf`,
283using the following configuration keys:
284
285include::pmg.mail-options-conf-opts.adoc[]
c331641e
DM
286
287
288Transports
289~~~~~~~~~~
290
291ifndef::manvolnum[]
292image::images/screenshot/pmg-gui-mailproxy-transports.png[]
293endif::manvolnum[]
294
b335e06b
DM
295You can use {pmg} to send e-mails to different internal
296e-mail servers. For example you can send e-mails addressed to
297domain.com to your first e-mail server, and e-mails addressed to
298subdomain.domain.com to a second one.
299
300You can add the IP addresses, hostname and SMTP ports and mail domains (or
301just single email addresses) of your additional e-mail servers.
c331641e
DM
302
303
304Networks
305~~~~~~~~
306
307ifndef::manvolnum[]
308image::images/screenshot/pmg-gui-mailproxy-networks.png[]
309endif::manvolnum[]
310
20e879ad
DM
311You can add additional internal (trusted) IP networks or hosts.
312All hosts in this list are allowed to relay.
313
314NOTE: Hosts in the same subnet with Proxmox can relay by default and
315it’s not needed to add them in this list.
c331641e
DM
316
317
318TLS
319~~~
320
321ifndef::manvolnum[]
322image::images/screenshot/pmg-gui-mailproxy-tls.png[]
323endif::manvolnum[]
324
20e879ad
DM
325Transport Layer Security (TLS) provides certificate-based
326authentication and encrypted sessions. An encrypted session protects
327the information that is transmitted with SMTP mail. When you activate
328TLS, {pmg} automatically generates a new self signed
329certificate for you (`/etc/pmg/pmg-tls.pem`).
330
37b2b051 331{pmg} uses opportunistic TLS encryption by default. The SMTP transaction is
20e879ad 332encrypted if the 'STARTTLS' ESMTP feature is supported by the remote
37b2b051
SI
333server. Otherwise, messages are sent in the clear.
334You can set a different TLS policy per desitination domain, should you for
335example need to prevent e-mail delivery without encryption, or to work around
336a broken 'STARTTLS' ESMTP implementation. See {postfix_tls_readme} for details
337on the supported policies.
20e879ad
DM
338
339Enable TLS logging::
340
341To get additional information about SMTP TLS activity you can enable
342TLS logging. That way information about TLS sessions and used
343certificate’s is logged via syslog.
344
345Add TLS received header::
346
347Set this option to include information about the protocol and cipher
348used as well as the client and issuer CommonName into the "Received:"
349message header.
350
a649b38f
DM
351Those settings are saved to subsection 'mail' in `/etc/pmg/pmg.conf`,
352using the following configuration keys:
353
354include::pmg.mail-tls-conf-opts.adoc[]
355
c331641e
DM
356
357Whitelist
358~~~~~~~~~
359
360ifndef::manvolnum[]
361image::images/screenshot/pmg-gui-mailproxy-whitelist.png[]
362endif::manvolnum[]
363
6822b369
DM
364All SMTP checks are disabled for those entries (e. g. Greylisting,
365SPF, RBL, ...)
366
367NOTE: If you use a backup MX server (e.g. your ISP offers this service
368for you) you should always add those servers here.
c331641e
DM
369
370
371Spam Detector Configuration
372---------------------------
373
2d672352
DM
374Options
375~~~~~~~
376
74bfe8ba
DM
377ifndef::manvolnum[]
378image::images/screenshot/pmg-gui-spam-options.png[]
379endif::manvolnum[]
380
3371c521
DM
381{pmg} uses a wide variety of local and network tests to identify spam
382signatures. This makes it harder for spammers to identify one aspect
383which they can craft their messages to work around the spam filter.
384
385Every single e-mail will be analyzed and gets a spam score
386assigned. The system attempts to optimize the efficiency of the rules
387that are run in terms of minimizing the number of false positives and
388false negatives.
389
390include::pmg.spam-conf-opts.adoc[]
391
392
2d672352
DM
393Quarantine
394~~~~~~~~~~
3371c521 395
74bfe8ba
DM
396ifndef::manvolnum[]
397image::images/screenshot/pmg-gui-spamquar-options.png[]
398endif::manvolnum[]
399
3371c521
DM
400Proxmox analyses all incoming e-mail messages and decides for each
401e-mail if its ham or spam (or virus). Good e-mails are delivered to
402the inbox and spam messages can be moved into the spam quarantine.
403
404The system can be configured to send daily reports to inform users
405about the personal spam messages received the last day. That report is
406only sent if there are new messages in the quarantine.
407
ee34edb0
DC
408Some options are only available in the config file `/etc/pmg/pmg.conf`,
409and not in the webinterface.
410
3371c521 411include::pmg.spamquar-conf-opts.adoc[]
c331641e
DM
412
413
414Virus Detector Configuration
415----------------------------
416
2d672352
DM
417Options
418~~~~~~~
419
e7c18c7c
DM
420ifndef::manvolnum[]
421image::images/screenshot/pmg-gui-virus-options.png[]
422endif::manvolnum[]
423
0bfbbf88
DM
424All mails are automatically passed to the included virus detector
425({clamav}). The default setting are considered safe, so it is usually
426not required to change them.
427
428{clamav} related settings are saved to subsection 'clamav' in `/etc/pmg/pmg.conf`,
429using the following configuration keys:
430
431include::pmg.clamav-conf-opts.adoc[]
432
e7c18c7c
DM
433ifndef::manvolnum[]
434image::images/screenshot/pmg-gui-clamav-database.png[]
435endif::manvolnum[]
436
437Please note that the virus signature database it automatically
438updated. But you can see the database status on the GUI, and you can
439trigger manual updates there.
440
0bfbbf88 441
2d672352
DM
442Quarantine
443~~~~~~~~~~
0bfbbf88 444
e7c18c7c
DM
445ifndef::manvolnum[]
446image::images/screenshot/pmg-gui-virusquar-options.png[]
447endif::manvolnum[]
448
0bfbbf88
DM
449Indentified virus mails are automatically moved to the virus
450quarantine. The administartor can view those mails using the GUI, or
451deliver them in case of false positives. {pmg} does not notify
452individual users about received virus mails.
453
454Virus quarantine related settings are saved to subsection 'virusquar'
455in `/etc/pmg/pmg.conf`, using the following configuration keys:
456
457include::pmg.virusquar-conf-opts.adoc[]
c331641e
DM
458
459
7eff8815
DM
460Custom SpamAssassin configuration
461---------------------------------
462
463This is only for advanced users. To add or change the Proxmox
464{spamassassin} configuration please login to the console via SSH. Go
465to directory `/etc/mail/spamassasin/`. In this directory there are several
466files (`init.pre`, `local.cf`, ...) – do not change them.
467
468To add your special configuration, you have to create a new file and
469name it `custom.cf` (in this directory), then add your
470configuration there. Be aware to use the {spamassassin}
471syntax, and test with
472
473----
474# spamassassin -D --lint
475----
476
477If you run a cluster, the `custom.cf` file is synchronized from the
478master node to all cluster members.
479
480
c331641e
DM
481User Management
482---------------
483
05336835
DC
484User management in {pmg} consists of three types of users/accounts:
485
486
487Local Users
488~~~~~~~~~~~
489
f02d2b90
DM
490image::images/screenshot/pmg-gui-local-user-config.png[]
491
05336835
DC
492Local users are used to manage and audit {pmg}. Those users can login on the
493management web interface.
494
495There are three roles:
496
497* Administrator
498+
499Is allowed to manage settings of {pmg}, except some tasks like
500network configuration and upgrading.
501
502* Quarantine manager
503+
504Is allowed to manage quarantines, blacklists and whitelists, but not other
505settings. Has no right to view any other data.
506
507* Auditor
508+
509With this role, the user is only allowed to view data and configuration, but
510not to edit it.
511
512In addition there is always the 'root' user, which is used to perform special
513system administrator tasks, such as updgrading a host or changing the
514network configuration.
515
516NOTE: Only pam users are able to login via the webconsole and ssh, which the
517users created with the web interface are not. Those users are created for
518{pmg} administration only.
519
520Local user related settings are saved in `/etc/pmg/user.conf`.
521
522For details of the fields see xref:pmg_user_configuration_file[user.conf]
523
524LDAP/Active Directory
525~~~~~~~~~~~~~~~~~~~~~
526
f02d2b90
DM
527image::images/screenshot/pmg-gui-ldap-user-config.png[]
528
05336835
DC
529You can specify multiple LDAP/Active Directory profiles, so that you can
530create rules matching those users and groups.
531
532Creating a profile requires (at least) the following:
533
534* profile name
535* protocol (LDAP or LDAPS; LDAPS is recommended)
536* at least one server
537* a user and password (if your server does not support anonymous binds)
538
539All other fields should work with the defaults for most setups, but can be
540used to customize the queries.
541
542The settings are saved to `/etc/pmg/ldap.conf`. Details for the options
543can be found here: xref:pmg_ldap_configuration_file[ldap.conf]
544
545Bind user
546^^^^^^^^^
547
548It is highly recommended that the user which you use for connecting to the
549LDAP server only has the permission to query the server. For LDAP servers
550(for example OpenLDAP or FreeIPA), the username has to be of a format like
551'uid=username,cn=users,cn=accounts,dc=domain' , where the specific fields are
552depending on your setup. For Active Directory servers, the format should be
553like 'username@domain' or 'domain\username'.
554
555Sync
556^^^^
557
558{pmg} synchronizes the relevant user and group info periodically, so that
559that information is available in a fast manner, even when the LDAP/AD server
560is temporarily not accessible.
561
562After a successfull sync, the groups and users should be visible on the web
563interface. After that, you can create rules targeting LDAP users and groups.
c331641e
DM
564
565
8538d9a2 566Fetchmail
05336835
DC
567~~~~~~~~~
568
f02d2b90
DM
569image::images/screenshot/pmg-gui-fetchmail-config.png[]
570
05336835
DC
571Fetchmail is utility for polling and forwarding e-mails. You can define
572e-mail accounts, which will then be fetched and forwarded to the e-mail
573address you defined.
574
575You have to add an entry for each account/target combination you want to
576fetch and forward. Those will then be regularly polled and forwarded,
577according to your configuration.
578
579The API and web interface offer following configuration options:
8538d9a2
DM
580
581include::fetchmail.conf.5-opts.adoc[]
582
583
e62ceaf0
DM
584ifdef::manvolnum[]
585include::pmg-copyright.adoc[]
586endif::manvolnum[]
587