Forum Moderators: open
I already have SSL certificate installed. Is there some special cerfificate for the privacy report that need to order?
[w3.org...]
At it's most basic level, all IE is looking for is an XML declaration responding to a number of preset questions (what info you collect, what you do with the info, who to contact should you have questions, legal owner of site, etc).
First, you can create a compact policy header. One way (if you are using ASP, for example) is to add this to the top of each page:
Response.AddHeader "P3P","CP=""CAO PSA OUR"""
or simply do a google search on "compact policy header" and you will find various other ways (probably better ways) to do it. But keep in mind, the compact header will only satisfy browsers with medium security settings.
To satisfy more browsers, you need to create a full policy document. Do a google on "creating privacy policy" and you will get a bunch of great info on how to do that, and some online generators that will do it for you.
[w3.org...]
I believe they have the exact definitions of each value...
-Moz
[quote]Response.AddHeader "P3P","CP=""CAO PSA OUR"""[\quote]
CP means "Compact Policy"
CAO means "Contact and Other"
PSA means "psuedo-analysis"
OUR means "ours"
There's a whole list of available compact policy statements in the W3C recommendation (http://www.w3.org/TR/P3P/) under the Compact Policy section about halfway down the page. Hope this helps.
-Moz