aboutsummaryrefslogtreecommitdiff
path: root/www/sign.pl
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2012-10-03 19:48:52 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2012-10-03 19:48:52 +0200
commitf88a49f83513b788b799aa67e852ec6291167d76 (patch)
treebc98ba1656256f0753e88fcc46a37e4008f2d114 /www/sign.pl
parent14fc4fbdf59efc5626b5508780ebe3477cc9366a (diff)
Fix session user matching.
Diffstat (limited to 'www/sign.pl')
-rwxr-xr-xwww/sign.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/sign.pl b/www/sign.pl
index 53d7015..a0fd11f 100755
--- a/www/sign.pl
+++ b/www/sign.pl
@@ -86,7 +86,7 @@ while (my $cgi = new CGI::Fast) {
if ($email =~ /^(.*?)@(.*)/) { $domain = $2; }
die "User is not authorized to use this email address"
- unless ($session_user ~~ email_users($email));
+ unless ($session_user ~~ [email_users($email)]);
my $sig = sign $key, decode_json($user_pubkey), $email, $duration, $domain;
say encode_json({signature => $sig});