diff options
Diffstat (limited to 'template')
3 files changed, 11 insertions, 0 deletions
diff --git a/template/en/default/account/email/change-new.txt.tmpl b/template/en/default/account/email/change-new.txt.tmpl index 4739c50e7..b07be609c 100644 --- a/template/en/default/account/email/change-new.txt.tmpl +++ b/template/en/default/account/email/change-new.txt.tmpl @@ -18,6 +18,7 @@ # # Contributor(s): John Vandenberg <zeroj@null.net> #%] +[% expiration_ts = token_ts + (max_token_age * 86400) %] From: bugzilla-admin-daemon To: [% emailaddress %] Subject: Bugzilla Change Email Address Request @@ -34,3 +35,5 @@ this request, visit the following link: [% Param('urlbase') %]token.cgi?a=cxlem&t=[% token FILTER url_quote %] +If you do nothing, the request will lapse after +[%- max_token_age %] days ([% time2str("%H:%M on the %o of %B, %Y", expiration_ts) %]). diff --git a/template/en/default/account/email/change-old.txt.tmpl b/template/en/default/account/email/change-old.txt.tmpl index ac42cccb0..d50a958c6 100644 --- a/template/en/default/account/email/change-old.txt.tmpl +++ b/template/en/default/account/email/change-old.txt.tmpl @@ -18,6 +18,7 @@ # # Contributor(s): John Vandenberg <zeroj@null.net> #%] +[% expiration_ts = token_ts + (max_token_age * 86400) %] From: bugzilla-admin-daemon To: [% emailaddress %] Subject: Bugzilla Change Email Address Request @@ -33,3 +34,6 @@ this request, visit the following link: [% Param('urlbase') %]token.cgi?a=cxlem&t=[% token FILTER url_quote %] +If you do nothing, and [% newemailaddress %] confirms this request, the +change will be made permanent after +[%- max_token_age %] days ([% time2str("%H:%M on the %o of %B, %Y", expiration_ts) %]). diff --git a/template/en/default/account/password/forgotten-password.txt.tmpl b/template/en/default/account/password/forgotten-password.txt.tmpl index 155b83b08..bf3242c08 100644 --- a/template/en/default/account/password/forgotten-password.txt.tmpl +++ b/template/en/default/account/password/forgotten-password.txt.tmpl @@ -18,6 +18,7 @@ # # Contributor(s): John Vandenberg <zeroj@null.net> #%] +[% expiration_ts = token_ts + (max_token_age * 86400) %] From: bugzilla-admin-daemon To: [% emailaddress %] Subject: Bugzilla Change Password Request @@ -32,3 +33,6 @@ this request, visit the following link: [%+ Param('urlbase') %]token.cgi?a=cxlpw&t=[% token FILTER url_quote %] +If you do nothing, the request will lapse after +[%- max_token_age %] days +([% time2str("%H:%M on the %o of %B, %Y", expiration_ts) -%]) or when you log in successfully. |