This was a change in Firefox 42.

I mentioned it here:

https://mike.kaply.com/2015/10/15/windows-10-permission-manager-and-more/

basically permissions were switched to be URL based instead of domain based.

Mike



On Tue, Apr 12, 2016 at 11:31 AM, Kasper, Ryan V <[email protected]>
wrote:

> Hello,
>
>
>
> A heads up that I had to duplicate my http entries to account for https in
> my autoconfig file for ESR 45 related to the pop-up whitelitsting that ends
> up in the permissions.sqlite file:
>
> OLD:
>
> //Config pop-up whitelist
>
> Components.utils.import("resource://gre/modules/Services.jsm");
>
> try{
>
>                 Services.perms.add(Services.io.newURI("http://example.com";,
> null, null), "popup", 1);
>
> }
>
> catch(e){
>
> }
>
> NEW:
>
> //Config pop-up whitelist
>
> Components.utils.import("resource://gre/modules/Services.jsm");
>
> try{
>
>                 Services.perms.add(Services.io.newURI("https://example.com";,
> null, null), "popup", 1);
>
> }
>
> catch(e){
>
> }
>
>
>
> As an aside – is this the expected behavior and what drove this? It was
> not required in 38 ESR…
>
>
>
> Thanks,
>
> Ryan Kasper
>
> Lockheed Martin Software Distribution
>
> [email protected]
>
>
>
> _______________________________________________
> Enterprise mailing list
> [email protected]
> https://mail.mozilla.org/listinfo/enterprise
>
> To unsubscribe from this list, please visit
> https://mail.mozilla.org/listinfo/enterprise or send an email to
> [email protected] with a subject of "unsubscribe"
>
_______________________________________________
Enterprise mailing list
[email protected]
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
[email protected] with a subject of "unsubscribe"

Reply via email to