Closed
Bug 446607
Opened 17 years ago
Closed 16 years ago
Make Yahoo blocklist less generic
Categories
(Infrastructure & Operations Graveyard :: WebOps: Other, task)
Infrastructure & Operations Graveyard
WebOps: Other
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: mossop, Assigned: reed)
Details
In bug 421993 we blocked the Yahoo Application State plugin. We spoke with Yahoo and advised then that they could put a version number on the end to allow future versions to not be blocklisted. However we've made the blocklist entry so generic that it is still blockling anything.
I think we need to change the description to match "^Yahoo Application State Plugin$". This should stop it matching a description with further text (version string f.e.) afterwards.
Comment 1•17 years ago
|
||
update blplugins set name = '^Yahoo Application State Plugin$' where name = 'Yahoo Application State Plugin';
IT - could someone run this on the preview database so we can test there?
Updated•17 years ago
|
Assignee: nobody → server-ops
Comment 2•17 years ago
|
||
mysql> update blplugins set name = '^Yahoo Application State Plugin$' where name =
-> 'Yahoo Application State Plugin';
Query OK, 1 row affected (0.04 sec)
Rows matched: 1 Changed: 1 Warnings: 0
Comment 3•17 years ago
|
||
(In reply to comment #2)
> mysql> update blplugins set name = '^Yahoo Application State Plugin$' where
> name =
> -> 'Yahoo Application State Plugin';
> Query OK, 1 row affected (0.04 sec)
> Rows matched: 1 Changed: 1 Warnings: 0
>
That was on preview.
Comment 4•17 years ago
|
||
Ok, thanks. Tony - could you test that it doesn't blocklist the new Yahoo stuff? Or Dave?
Assignee: server-ops → dtownsend
Reporter | ||
Comment 5•17 years ago
|
||
What is the url for the blocklist on preview?
Comment 6•17 years ago
|
||
Reporter | ||
Comment 7•17 years ago
|
||
Ok the change was not correct. It was the description field that we need to change, not the name field. Though I don't believe that making the name match more specific as we have does any harm either.
Reporter | ||
Comment 8•16 years ago
|
||
Mike, can we get things moving again here.
Assignee: dtownsend → morgamic
Comment 9•16 years ago
|
||
update blplugins set description='^Yahoo Application State Plugin$' where name='^Yahoo Application State Plugin$';
IT - could we get this run on preview?
Comment 10•16 years ago
|
||
If preview was reset after the last query was run, this works, too:
update blplugins set description='^Yahoo Application State Plugin$', name='^Yahoo Application State Plugin$' where name='Yahoo Application State Plugin';
Comment 11•16 years ago
|
||
mysql> update blplugins set description='^Yahoo Application State Plugin$' where -> name='^Yahoo Application State Plugin$';
Query OK, 1 row affected (0.04 sec)
Rows matched: 1 Changed: 1 Warnings: 0
Reporter | ||
Comment 12•16 years ago
|
||
I have tested and verified that the blocklist on preview correctly blocks the old yahoo state plugin and does not block the new one. Can we get this pushed live?
Comment 13•16 years ago
|
||
IT - this needs to be run on the AMO database:
update blplugins set description='^Yahoo Application State Plugin$',
name='^Yahoo Application State Plugin$' where name='Yahoo Application State
Plugin';
Assignee: morgamic → server-ops
Component: Blocklisting → Server Operations: Web Content Push
Product: addons.mozilla.org → mozilla.org
QA Contact: blocklisting → mrz
Version: 3.2 → other
Assignee | ||
Updated•16 years ago
|
Assignee: server-ops → reed
Assignee | ||
Comment 14•16 years ago
|
||
mysql> update blplugins set description='^Yahoo Application State Plugin$', name='^Yahoo Application State Plugin$' where name='Yahoo Application State Plugin';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Updated•11 years ago
|
Component: Server Operations: Web Operations → WebOps: Other
Product: mozilla.org → Infrastructure & Operations
Updated•6 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
•