Skip to content

Commit

Permalink
Merge pull request KelvinTegelaar#3704 from Ren-Roros-Digital/SpamFilter
Browse files Browse the repository at this point in the history
feat: more SpamFilter options
  • Loading branch information
JohnDuprey authored Feb 27, 2025
2 parents dd1c132 + 252b40e commit 2998a81
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -2268,6 +2268,82 @@
"value": "DefaultFullAccessWithNotificationPolicy"
}
]
},
{
"type": "switch",
"name": "standards.SpamFilterPolicy.IncreaseScoreWithImageLinks",
"label": "Increase score if message contains image links to remote websites",
"defaultValue": false
},
{
"type": "switch",
"name": "standards.SpamFilterPolicy.IncreaseScoreWithBizOrInfoUrls",
"label": "Increase score if message contains links to .biz or .info domains",
"defaultValue": false
},
{
"type": "switch",
"name": "standards.SpamFilterPolicy.MarkAsSpamFramesInHtml",
"label": "Mark as spam if message contains HTML or iframe tags",
"defaultValue": false
},
{
"type": "switch",
"name": "standards.SpamFilterPolicy.MarkAsSpamObjectTagsInHtml",
"label": "Mark as spam if message contains HTML object tags",
"defaultValue": false
},
{
"type": "switch",
"name": "standards.SpamFilterPolicy.MarkAsSpamEmbedTagsInHtml",
"label": "Mark as spam if message contains HTML embed tags",
"defaultValue": false
},
{
"type": "switch",
"name": "standards.SpamFilterPolicy.MarkAsSpamFormTagsInHtml",
"label": "Mark as spam if message contains HTML form tags",
"defaultValue": false
},
{
"type": "switch",
"name": "standards.SpamFilterPolicy.MarkAsSpamWebBugsInHtml",
"label": "Mark as spam if message contains web bugs (also known as web beacons)",
"defaultValue": false
},
{
"type": "switch",
"name": "standards.SpamFilterPolicy.MarkAsSpamSensitiveWordList",
"label": "Mark as spam if message contains words from the sensitive words list",
"defaultValue": false
},
{
"type": "switch",
"name": "standards.SpamFilterPolicy.EnableLanguageBlockList",
"label": "Enable language block list",
"defaultValue": false
},
{
"type": "autoComplete",
"multiple": true,
"creatable": true,
"required": false,
"name": "standards.SpamFilterPolicy.LanguageBlockList",
"label": "Languages to block (uppercase ISO 639-1 two-letter)"
},
{
"type": "switch",
"name": "standards.SpamFilterPolicy.EnableRegionBlockList",
"label": "Enable region block list",
"defaultValue": false
},
{
"type": "autoComplete",
"multiple": true,
"creatable": true,
"required": false,
"name": "standards.SpamFilterPolicy.RegionBlockList",
"label": "Regions to block (uppercase ISO 3166-1 two-letter)"
}
],
"label": "Default Spam Filter Policy",
Expand Down

0 comments on commit 2998a81

Please sign in to comment.