in reply to Is 'for' the wrong choice here?
my %admin_users = ( John => 1, Bill => 1, Susie => 1, );
if ( $admin_users{$author} ) { print $blah; } else { print $uber_blah; }