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]<mailto:[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"