You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Fix [Issue 604](https://github.com/chatmail/relay/issues/604), now the `--ssh_host` argument of the `cmdeploy run` command works correctly and does not depend on `config.mail_domain`.
- Add extended check when installing `unbound.service`. Now, if it is not shown who exactly is occupying port 53, but `unbound.service` is running, it is considered that the port is occupied by `unbound.service`.
-`is_development_instance` - Indicates that this instance is installed as a temporary/test one (default: `True`)
29
+
-`use_foreign_cert_manager` - Use a third-party certificate manager instead of acmetool (default: `False`)
30
+
-`acme_email` - Email address used by acmetool to obtain Let's Encrypt certificates (default: empty)
31
+
-`change_kernel_settings` - Whether to change kernel parameters during installation (default: `True`)
32
+
-`fs_inotify_max_user_instances_and_watchers` - Value for kernel parameters `fs.inotify.max_user_instances` and `fs.inotify.max_user_watches` (default: `65535`)
Copy file name to clipboardExpand all lines: chatmaild/src/chatmaild/ini/chatmail.ini.f
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,9 @@
49
49
# Deployment Details
50
50
#
51
51
52
+
# if set to "True" on main page will be showed dev banner
53
+
is_development_instance = True
54
+
52
55
# SMTP outgoing filtermail and reinjection
53
56
filtermail_smtp_port = 10080
54
57
postfix_reinject_port = 10025
@@ -60,6 +63,22 @@
60
63
# if set to "True" IPv6 is disabled
61
64
disable_ipv6 = False
62
65
66
+
# if you set "True", acmetool will not be installed and you will have to manage certificates yourself.
67
+
use_foreign_cert_manager = False
68
+
69
+
# Your email adress, which will be used in acmetool to manage Let's Encrypt SSL certificates. Required if `use_foreign_cert_manager` param set as "False".
70
+
acme_email =
71
+
72
+
#
73
+
# Kernel settings
74
+
#
75
+
76
+
# if you set "True", the kernel settings will be configured according to the values below
77
+
change_kernel_settings = True
78
+
79
+
# change fs.inotify.max_user_instances and fs.inotify.max_user_watches kernel settings
0 commit comments