ebiederm@xxxxxxxxxxxx (Eric W. Biederman) writes: > +# Verify the user input > + > +foreach my $entry (@to) { > + die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/; > +} > + Perhaps, avoiding double negation would be easier on the eyes. die ... if $entry =~ /,/ Does it grok '"Biederman, Eric W." <eb@xxxxxx>' some people seem to do properly, or do we care (I personally don't)? - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html