Commit 82e828a1 authored by Karl Kornel's avatar Karl Kornel
Browse files

Try a different match to clean up email address from the config file

parent ff77026d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -436,7 +436,7 @@ sub email_recipients {
	while (my $line = <$email_handle>) {
		# Remove any line endings.  We need to do this specially in case
		# the file was modified on Windows.
		$line =~ s{\A(.+)\r?\n?\z}{$1}xims;
		$line =~ s{\A(.+)[\r\n]*\z}{$1}xims;

		# Skip blank lines and comments
		next if $line =~ m{\A\s+\z}xims;