* [PATCH pmg-api] config: do not shortcircuit smtp-welcomelist generation
@ 2026-06-09 8:58 Stoiko Ivanov
0 siblings, 0 replies; only message in thread
From: Stoiko Ivanov @ 2026-06-09 8:58 UTC (permalink / raw)
To: pmg-devel
combining the results with ||= causes the write_smtp_welcomelist calls
not to be run, after the first one signals a change.
gather the combined changes in a different variable, to ensure each
config-file is actually created/written, as postfix refuses to run if
its config files are missing.
Fixes: de0ba685 ("fix #3991: record changes to the smtp-welcomelist and reload postfix")
Reported-by: Dominik Csapak <d.csapak@proxmox.com>
Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
---
src/PMG/Config.pm | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/src/PMG/Config.pm b/src/PMG/Config.pm
index 2d2b6c83..ddbabe7e 100644
--- a/src/PMG/Config.pm
+++ b/src/PMG/Config.pm
@@ -1878,10 +1878,15 @@ sub rewrite_postfix_welcomelist {
}
my $changes = 0;
- $changes ||= $write_smtp_welcomelist->("/etc/postfix/senderaccess", $fromlist);
- $changes ||= $write_smtp_welcomelist->("/etc/postfix/rcptaccess", $tolist);
- $changes ||= $write_smtp_welcomelist->("/etc/postfix/clientaccess", $clientlist);
- $changes ||= $write_smtp_welcomelist->("/etc/postfix/postscreen_access", $clientlist, 'permit');
+ my $ret;
+ $ret = $write_smtp_welcomelist->("/etc/postfix/senderaccess", $fromlist);
+ $changes ||= $ret;
+ $ret = $write_smtp_welcomelist->("/etc/postfix/rcptaccess", $tolist);
+ $changes ||= $ret;
+ $ret ||= $write_smtp_welcomelist->("/etc/postfix/clientaccess", $clientlist);
+ $changes ||= $ret;
+ $ret ||= $write_smtp_welcomelist->("/etc/postfix/postscreen_access", $clientlist, 'permit');
+ $changes ||= $ret;
return $changes;
}
--
2.47.3
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-09 8:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-09 8:58 [PATCH pmg-api] config: do not shortcircuit smtp-welcomelist generation Stoiko Ivanov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox