Skip to content

Commit

Permalink
Merge pull request #2742 from cipptesting/dev
Browse files Browse the repository at this point in the history
Updated Spam Filter Standard
  • Loading branch information
KelvinTegelaar authored Jul 30, 2024
2 parents 737fa4e + e2cbb68 commit d46476b
Showing 1 changed file with 55 additions and 4 deletions.
59 changes: 55 additions & 4 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -1703,18 +1703,24 @@
"tag": ["mediumimpact"],
"helpText": "This standard creates a Spam filter policy similar to the default strict policy.",
"addedComponent": [
{
"type": "number",
"label": "Bulk email threshold (Default 7)",
"name": "standards.SpamFilterPolicy.BulkThreshold",
"default": 7
},
{
"type": "Select",
"label": "Spam Action",
"name": "standards.SpamFilterPolicy.SpamAction",
"values": [
{
"label": "Move message to Junk Email folder",
"value": "MoveToJmf"
},
{
"label": "Quarantine the message",
"value": "Quarantine"
},
{
"label": "Move message to Junk Email folder",
"value": "MoveToJmf"
}
]
},
Expand All @@ -1737,6 +1743,21 @@
}
]
},
{
"type": "Select",
"label": "High Confidence Spam Action",
"name": "standards.SpamFilterPolicy.HighConfidenceSpamAction",
"values": [
{
"label": "Quarantine the message",
"value": "Quarantine"
},
{
"label": "Move message to Junk Email folder",
"value": "MoveToJmf"
}
]
},
{
"type": "Select",
"label": "High Confidence Spam Quarantine Tag",
Expand All @@ -1756,6 +1777,21 @@
}
]
},
{
"type": "Select",
"label": "Bulk Spam Action",
"name": "standards.SpamFilterPolicy.BulkSpamAction",
"values": [
{
"label": "Quarantine the message",
"value": "Quarantine"
},
{
"label": "Move message to Junk Email folder",
"value": "MoveToJmf"
}
]
},
{
"type": "Select",
"label": "Bulk Quarantine Tag",
Expand All @@ -1775,6 +1811,21 @@
}
]
},
{
"type": "Select",
"label": "Phish Spam Action",
"name": "standards.SpamFilterPolicy.PhishSpamAction",
"values": [
{
"label": "Quarantine the message",
"value": "Quarantine"
},
{
"label": "Move message to Junk Email folder",
"value": "MoveToJmf"
}
]
},
{
"type": "Select",
"label": "Phish Quarantine Tag",
Expand Down

0 comments on commit d46476b

Please sign in to comment.