> user_pref("capability.policy.default.window.open", "noAccess");
> user_pref("capability.policy.non_spammers.sites", "http://www.microsoft.com");
> user_pref("capability.policy.non_spammers.window.open", "allAccess");
> user_pref("capability.policy.non_spammers.windowinternal.open", "allAccess");
Your syntax is wrong. (This isn't helped by wrong documentation at
Mozilla itself - I had to look through Newsgroup postings to find the
correct whitelist syntax.) It should have the following form - also
pay attention to the fact that it is case sensitive:
user_pref("capability.policy.allowpopups.Window.open", "sameOrigin");
user_pref("capability.policy.allowpopups.sites",
"http://www.somesite.com");
user_pref("capability.policy.default.Window.open", "noAccess");
Jason.