Closed
Bug 697476
Opened 14 years ago
Closed 14 years ago
Remove Karen from config.php
Categories
(Infrastructure & Operations Graveyard :: WebOps: Other, task)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: peterbe, Assigned: jabba)
Details
On the old PTO app, it's configured to send notifications to Karen. The file config.php isn't part of the SVN so it needs to be edited manually on the server.
Where the PTO trunk is checked out, there'll be a file called config.php and it'll contain something like this:
$hr_managers = array(
"dportillo@mozilla.com",
"karen@mozilla.com"
);
We need to remove Karen from that array.
Comment 1•14 years ago
|
||
If Dan Portillo is in there, he needs to be removed as well ;)
| Assignee | ||
Comment 2•14 years ago
|
||
Done!
on irc, we decided to just remove her from the notified_people array, so we are now left with this:
# Specify HR managers with email addresses only.
$hr_managers = array(
"jcook@mozilla.com",
"karen@mozilla.com"
);
# Specified in RFC address format. One address per array element, please.
$notified_people = array(
"Jill Van De Ven <jvandeven@mozilla.com>"
);
Assignee: nobody → jdow
Status: NEW → RESOLVED
Closed: 14 years ago
Component: Other → Server Operations: Web Operations
Product: Websites → mozilla.org
QA Contact: other → cshields
Resolution: --- → FIXED
Version: unspecified → other
| Reporter | ||
Comment 3•14 years ago
|
||
Apparently, this didn't work. Karen is still getting notifications. I doubt it's related to caching. More likely, does the PHP code need apache to gracefully restart or something?
Secondly, removing Karen was apparently not good enough. I've talk to Jill and apparently the definitive correct list is this::
dcoleman@mozilla.com
jvandeven@mozilla.com
Today I re-wrote the pending new PTO app a bit so that this list of notifiers isn't a hardcoded setting anymore. It's instead a piece of profile data in the database which can be edited from the Django admin interface.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
| Assignee | ||
Comment 4•14 years ago
|
||
It looks like this now:
# Specify HR managers with email addresses only.
$hr_managers = array(
"jcook@mozilla.com",
"jvandeven@mozilla.com",
"dcoleman@mozilla.com"
);
# Specified in RFC address format. One address per array element, please.
$notified_people = array(
"Jill Van De Ven <jvandeven@mozilla.com>"
"Doris Coleman <dcoleman@mozilla.com>"
);
Status: REOPENED → RESOLVED
Closed: 14 years ago → 14 years ago
Resolution: --- → FIXED
| Reporter | ||
Comment 5•14 years ago
|
||
Unfortunately I have no way of testing this other than hearing from Jill and Karen if the notification was still sent incorrectly. Did you do any restarting of Apache or something like to make it take effect?
for the $hr_manager = array can we please remove jcook@mozilla.com?
| Assignee | ||
Comment 7•14 years ago
|
||
I removed jcook.
PHP apps don't require an apache restart to take effect, so we should be good to go on this.
| Reporter | ||
Comment 8•14 years ago
|
||
Jill, keep an eye on the notifications going out to see if it's routed correctly and let us know.
Updated•12 years ago
|
Component: Server Operations: Web Operations → WebOps: Other
Product: mozilla.org → Infrastructure & Operations
Updated•7 years ago
|
Product: Infrastructure & Operations → Infrastructure & Operations Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•