Skip to content
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

Add new standards to standards.json #2367

Merged
merged 3 commits into from
Apr 26, 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
36 changes: 36 additions & 0 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,42 @@
"impact": "Low Impact",
"impactColour": "info"
},
{
"name": "standards.DisableTNEF",
"cat": "Exchange Standards",
"tag": ["lowimpact"],
"helpText": "Disables Transport Neutral Encapsulation Format (TNEF)/winmail.dat for the tenant. TNEF can cause issues if the recipient is not using a client supporting TNEF.",
"addedComponent": [],
"label": "Disable TNEF/winmail.dat",
"impact": "Low Impact",
"impactColour": "info"
},
{
"name": "standards.FocusedInbox",
"cat": "Exchange Standards",
"tag": ["lowimpact"],
"helpText": "Sets the default Focused Inbox state for the tenant. This can be overridden by the user.",
"addedComponent": [
{
"type": "Select",
"label": "Select value",
"name": "standards.FocusedInbox.state",
"values": [
{
"label": "Enabled",
"value": "enabled"
},
{
"label": "Disabled",
"value": "disabled"
}
]
}
],
"label": "Set Focused Inbox state",
"impact": "Low Impact",
"impactColour": "info"
},
{
"name": "standards.AutoExpandArchive",
"cat": "Exchange Standards",
Expand Down
Loading