summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorburnus%gmx.de <>2003-02-17 01:11:45 +0100
committerburnus%gmx.de <>2003-02-17 01:11:45 +0100
commitfb9ad768b29b1eb7f98607fa9b2915978e453791 (patch)
tree1135bf6ec498250d3726800e8ef968081d05c80b
parentcf24e4288445591be2595c542fcc9d7e5e0330e0 (diff)
downloadbugzilla-fb9ad768b29b1eb7f98607fa9b2915978e453791.tar.gz
bugzilla-fb9ad768b29b1eb7f98607fa9b2915978e453791.tar.xz
Bug 135820 - token cancellation message are not user-friendly
r=gerv, a=justdave
-rw-r--r--CGI.pl2
-rw-r--r--template/en/default/account/cancel-token.txt.tmpl28
2 files changed, 22 insertions, 8 deletions
diff --git a/CGI.pl b/CGI.pl
index eb74862fa..4765a7a00 100644
--- a/CGI.pl
+++ b/CGI.pl
@@ -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);
}
}
diff --git a/template/en/default/account/cancel-token.txt.tmpl b/template/en/default/account/cancel-token.txt.tmpl
index b1545f6d3..be926d5e2 100644
--- a/template/en/default/account/cancel-token.txt.tmpl
+++ b/template/en/default/account/cancel-token.txt.tmpl
@@ -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.