Skip to content

Updated Spam Filter Standard #2742

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading