On Sun, Aug 2, 2015 at 2:57 PM, Eric Sunshine <sunshine@xxxxxxxxxxxxxx> wrote: > On Sun, Aug 2, 2015 at 12:42 PM, Jan Viktorin <viktorin@xxxxxxxxxxxxxx> wrote: >> @@ -1136,6 +1141,10 @@ sub smtp_auth_maybe { >> Authen::SASL->import(qw(Perl)); >> }; >> >> + if($smtp_auth !~ /^(\b[A-Z0-9-_]{1,20}\s*)*$/) { >> + die "invalid smtp auth: '${smtp_auth}'"; >> + } > > Style: space after 'if' By the way, I notice that Authen::SASL::Perl implementation itself normalizes the incoming mechanism to uppercase, if necessary: $mechanism =~ s/^\s*\b(.*)\b\s*$/$1/g; $mechanism =~ s/-/_/g; $mechanism = uc $mechanism; Since it doesn't require uppercase, it's not clear how much benefit there is to adding a strict regex check to git-send-email. -- To unsubscribe from this list: 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