summaryrefslogtreecommitdiff
path: root/news/inn/files/extra-patch-lib_innconf.c
blob: 360937494fe6a6be4e8a9dffca0bf670a33e9305 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- lib/innconf.c.orig	2023-04-16 19:50:54 UTC
+++ lib/innconf.c
@@ -447,17 +447,17 @@ innconf_validate(struct config_group *group)
     fqdn = inn_getfqdn(innconf->domain);
     if (fqdn == NULL) {
         warn("hostname does not resolve or domain not set in inn.conf");
-        okay = false;
+/*        okay = false; */
     }
     if (innconf->domain != NULL && !IsValidDomain(innconf->domain)) {
         warn("domain in inn.conf contains invalid characters not suitable for "
              "Message-IDs");
-        okay = false;
+/*        okay = false; */
     }
     if (innconf->domain == NULL && !IsValidDomain(fqdn)) {
         warn("the FQDN of the server contains invalid characters not suitable "
              "for Message-IDs");
-        okay = false;
+/*        okay = false; */
     }
     free(fqdn);