diff options
author | Jonas Smedegaard <dr@jones.dk> | 2020-11-12 01:06:52 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2020-11-12 01:06:52 +0100 |
commit | 88baf92a573f9cf184536d34086b3f79cd418d23 (patch) | |
tree | 9903ddad25c3bf05c4591087cba15a1a1669595d | |
parent | 3a9f5a0505f297e0e9e34dde019a2ec76edcfca7 (diff) |
fix syntax
-rwxr-xr-x | mailman/mklist.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mailman/mklist.pl b/mailman/mklist.pl index 1364b0b..c787051 100755 --- a/mailman/mklist.pl +++ b/mailman/mklist.pl @@ -20,7 +20,7 @@ $listdesc = $ENV{'LISTDESC'} or die "LISTDESC missing"; $listhost = $ENV{'LISTHOST'} or die "LISTHOST missing"; $senders = $ENV{'SENDERS'} or die "SENDERS missing"; $senderfilters = $ENV{'SENDERFILTER'} || $ENV{'SENDERFILTERS'} || '' - or warn "Ignoring missing SENDERFILTER(S)" + or warn "Ignoring missing SENDERFILTER(S)"; $listowners = $ENV{'LISTOWNER'} || $ENV{'LISTOWNERS'} or die "LISTOWNER(S) missing"; |