Fix list of emails broken by GitHub-API 1.53 

Since the last upgrade to GitHub-API 1.53, the list
of account e-mails has been moved to getEmails2().

Change-Id: Ibec521f122c72066da3ceb5e8199f6857119b153
diff --git a/github-plugin/src/main/resources/static/account.html b/github-plugin/src/main/resources/static/account.html
index f39d8aa..63dc6d9 100644
--- a/github-plugin/src/main/resources/static/account.html
+++ b/github-plugin/src/main/resources/static/account.html
@@ -52,7 +52,7 @@
 
 					<li><label for="eMail">e-Mail:</label> 
 						<select id="email" name="email">
-						#foreach ( $email in $myself.emails )
+						#foreach ( $email in $myself.emails2 )
 							#if ( $email.email == $!myself.email || $email.primary )
 							<option selected="selected">$email.email</option>
 							#else