From d3cf60d2c816957c6c959438b9707ad581459ff7 Mon Sep 17 00:00:00 2001 From: Andreas Erhard <85556911+wornet-aer@users.noreply.github.com> Date: Tue, 12 Sep 2023 17:10:09 +0200 Subject: [PATCH] Load plugins in qpsmtpd-forkserver at startup again (#311) Removes the comment from line 196, which enables the loading of plugins at startup again. Otherwise there would have been the need for a SIGHUP in order to load the plugins initially. Closes #308 and #288. --- qpsmtpd-forkserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qpsmtpd-forkserver b/qpsmtpd-forkserver index f0f9e58..ef151a6 100755 --- a/qpsmtpd-forkserver +++ b/qpsmtpd-forkserver @@ -193,7 +193,7 @@ POSIX::setgid($qgid) or die "unable to change gid: $!\n"; POSIX::setuid($quid) or die "unable to change uid: $!\n"; $> = $quid; -#$qpsmtpd->load_plugins; +$qpsmtpd->load_plugins; foreach my $addr (@LISTENADDR) { ::log(LOGINFO, "Listening on $addr->{addr}:$addr->{port}");