From: Baptiste Daroussin Date: Sun, 29 Mar 2026 02:52:18 +0000 (+0200) Subject: mlmmj-make-ml: use full email address for default owner X-Git-Tag: RELEASE_2_0_0~17 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=262bf332a156541df3f76f4393827019ffefeb7a;p=thirdparty%2Fmlmmj.git mlmmj-make-ml: use full email address for default owner The default owner "postmaster" lacks a domain part, causing mlmmj-send to reject it with "No @ in address". Use the FQDN already collected earlier in the script to build a proper postmaster@FQDN default. Closes #36 --- diff --git a/src/mlmmj-make-ml.in b/src/mlmmj-make-ml.in index e960ff0c..8421f99e 100755 --- a/src/mlmmj-make-ml.in +++ b/src/mlmmj-make-ml.in @@ -102,7 +102,7 @@ if [ -z "$FQDN" ]; then fi if [ -z "$OWNER" ]; then - OWNERDEF="postmaster" + OWNERDEF="postmaster@$FQDN" printf 'The emailaddress of the list owner? [%s] : ' "$OWNERDEF" read -r OWNER if [ -z "$OWNER" ]; then