Bug 135820 - token cancellation message are not user-friendly

r=gerv, a=justdave
This commit is contained in:
burnus%gmx.de 2003-02-16 16:11:49 +00:00
Родитель 05921fc5ef
Коммит eeb7e7387d
2 изменённых файлов: 22 добавлений и 8 удалений

Просмотреть файл

@ -414,7 +414,7 @@ sub confirm_login {
use Token;
my $token = Token::HasPasswordToken($userid);
while ( $token ) {
Token::Cancel($token, "user logged in");
Token::Cancel($token, 'user_logged_in');
$token = Token::HasPasswordToken($userid);
}
}

Просмотреть файл

@ -21,11 +21,12 @@
#%]
From: bugzilla-admin-daemon
To: [% emailaddress %]
Subject: [% tokentype %] token cancelled
Subject: [% PROCESS subject %]
A request was cancelled from [% remoteaddress %].
A token was cancelled from [% remoteaddress %].
If you did not request this, it could be either an honest
mistake or the result of a malicious hack attempt.
mistake or someone attempting to break into your Bugzilla account.
Take a look at the information below and forward this email
to [% maintainer %] if you suspect foul play.
@ -38,6 +39,16 @@ to [% maintainer %] if you suspect foul play.
Cancelled Because:
[% PROCESS cancelactionmessage %]
[% BLOCK subject %]
[% IF tokentype == 'password' %]
Password change request cancelled
[% ELSIF tokentype == 'emailnew' OR tokentype == 'emailold' %]
Email change request cancelled
[% ELSE %]
[% tokentype %] token cancelled
[% END %]
[% END %]
[% BLOCK cancelactionmessage %]
[% IF cancelaction == 'account_exists' %]
Account [% email %] already exists.
@ -57,16 +68,19 @@ Cancelled Because:
to [% new_email %] has been cancelled.
[% ELSIF cancelaction == 'password_change_canceled' %]
The user requested cancellation.
You have requested cancellation.
[% ELSIF cancelaction == 'user_logged_in' %]
You have logged in.
[% ELSIF cancelaction == 'wrong_token_for_changing_passwd' %]
The user tried to use the token to change the password.
You have tried to use the token to change the password.
[% ELSIF cancelaction == 'wrong_token_for_cancelling_email_change' %]
The user tried to use the token to cancel the email address change.
You have tried to use the token to cancel the email address change.
[% ELSIF cancelaction == 'wrong_token_for_confirming_email_change' %]
The user tried to use the token to confirm the email address change.
You have tried to use the token to confirm the email address change.
[% ELSE %]
[%# Give sensible error if the cancel-token function is used incorrectly.