The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header.
To mitigate this problem, the original message has been wrapped automatically by the mailing list software.
--- Begin Message ---Author: Philipp Meier <[email protected]> Date: Tue Nov 8 14:38:37 2022 +0100 procd: jail/jail: correctly check for null pointer Handle case where opts.sysctl is not used. Signed-off-by: Philipp Meier <[email protected]> diff --git a/jail/jail.c b/jail/jail.c index ce6b268..31b64e5 100644 --- a/jail/jail.c +++ b/jail/jail.c @@ -215,6 +215,10 @@ static void free_hooklist(struct hook_execvpe **hooklist) static void free_sysctl(void) { struct sysctl_val *cur; + + if (!opts.sysctl) + return; + cur = *opts.sysctl; while (cur) {
--- End Message ---
_______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
