Script
within session "ALL"
{
act on message where %DIRECTION="INBOUND" and %ENTRY_POINT="AFTER_NETWORK"
{
/*Checks if the privacy header value matches with the regular expression
given(“none”). If it matches, then the privacy header value is changed to “id”*/
if(%HEADERS["Privacy"][1] = "none")then
{
%HEADERS["Privacy"][1] = "id";
}
}
}