summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--extensions/BMO/template/en/default/hook/bug/comments-a_comment-end.html.tmpl2
-rw-r--r--extensions/BugModal/lib/MonkeyPatches.pm2
-rw-r--r--extensions/Gravatar/lib/Data.pm2
3 files changed, 3 insertions, 3 deletions
diff --git a/extensions/BMO/template/en/default/hook/bug/comments-a_comment-end.html.tmpl b/extensions/BMO/template/en/default/hook/bug/comments-a_comment-end.html.tmpl
index 56e11062d..3c47ca199 100644
--- a/extensions/BMO/template/en/default/hook/bug/comments-a_comment-end.html.tmpl
+++ b/extensions/BMO/template/en/default/hook/bug/comments-a_comment-end.html.tmpl
@@ -7,7 +7,7 @@
#%]
[% IF user.id
- && (comment.author.login_name == 'tbplbot@gmail.com' || comment.author.login_name == 'treeherder@bots.tld')
+ && (comment.author.login_name == 'tbplbot@gmail.com' || comment.author.login_name == 'orangefactor@bots.tld')
%]
[% has_tbpl_comment = 1 %]
<script>
diff --git a/extensions/BugModal/lib/MonkeyPatches.pm b/extensions/BugModal/lib/MonkeyPatches.pm
index 743573f32..f0774b0e5 100644
--- a/extensions/BugModal/lib/MonkeyPatches.pm
+++ b/extensions/BugModal/lib/MonkeyPatches.pm
@@ -17,7 +17,7 @@ use Bugzilla::User;
sub treeherder_user {
return Bugzilla->process_cache->{treeherder_user} //=
Bugzilla::User->new({ name => 'tbplbot@gmail.com', cache => 1 })
- || Bugzilla::User->new({ name => 'treeherder@bots.tld', cache => 1 })
+ || Bugzilla::User->new({ name => 'orangefactor@bots.tld', cache => 1 })
|| Bugzilla::User->new();
}
diff --git a/extensions/Gravatar/lib/Data.pm b/extensions/Gravatar/lib/Data.pm
index 31e33ad0f..feff503e3 100644
--- a/extensions/Gravatar/lib/Data.pm
+++ b/extensions/Gravatar/lib/Data.pm
@@ -14,7 +14,7 @@ our @EXPORT_OK = qw(
);
our %gravatar_user_map = (
- 'treeherder@bots.tld' => 'tbplbot@gmail.com',
+ 'orangefactor@bots.tld' => 'tbplbot@gmail.com',
);
1;