My guess is that because your sqlite file was already prefilled, it got migrated to the new format.
If you are explicitly adding the entries, you need to add both. Mike On Thu, Apr 14, 2016 at 2:37 AM, Sebastian Metzger < [email protected]> wrote: > Hello, > > we are using a prefilled permissions.sqlite. In which we added hosts in > the format "testpage.com". > > Because of the suggestions made, I thought that I have to add > http://testpage.com and https://testpage.com since ff42. > > But it still seems to work with testpage.com in ff45esr. > > Did I misunterstand the hints below? > Or is this only important when using autoconfig? > > Best regards > > Sebastian Metzger > > -- > Sebastian Metzger > > Debeka Krankenversicherungsverein a. G. > Debeka Lebensversicherungsverein a. G. > Debeka Allgemeine Versicherung AG > Debeka Pensionskasse AG > Debeka Bausparkasse AG > > Abteilung Benutzer- und Endgerätedienste (IS/BE) > 56058 Koblenz > > Telefon: (02 61) 4 98 - 31 05 > Telefax: (02 61) 4 98 - 20 99 > > E-Mail: [email protected] > Internet: www.debeka.de > > Besuchen Sie uns auch in sozialen Netzwerken. > Unsere Adressen finden Sie hier: www.debeka.de/socialmedia > > Pflichtangaben der Debeka-Unternehmen > gemäß § 35a GmbHG / § 80 AktG: www.debeka.de/pflichtangaben > > Am 12.04.2016 19:01, schrieb Kaply Consulting: > >> 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] >> <mailto:[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] <mailto:[email protected]>____ >> >> __ __ >> >> >> _______________________________________________ >> Enterprise mailing list >> [email protected] <mailto:[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] >> <mailto:[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" >> >> _______________________________________________ > 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"

