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

Added Teams Email Integration standard #2745

Merged
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
19 changes: 19 additions & 0 deletions src/data/standards.json
Original file line number Diff line number Diff line change
Expand Up @@ -2339,6 +2339,25 @@
"powershellEquivalent": "Set-CsTeamsMeetingPolicy -AllowAnonymousUsersToJoinMeeting $false -AllowAnonymousUsersToStartMeeting $false -AutoAdmittedUsers EveryoneInCompanyExcludingGuests -AllowPSTNUsersToBypassLobby $false -MeetingChatEnabledType EnabledExceptAnonymous -DesignatedPresenterRoleMode $DesignatedPresenterRoleMode -AllowExternalParticipantGiveRequestControl $false",
"recommendedBy": ["CIS 3.0"]
},
{
"name": "standards.TeamsEmailIntegration",
"cat": "Teams Standards",
"tag": ["lowimpact"],
"helpText": "Should users be allowed to send emails directly to a channel email addresses?",
"docsDescription": "Teams channel email addresses are an optional feature that allows users to email the Teams channel directly.",
"addedComponent": [
{
"type": "boolean",
"name": "standards.TeamsEmailIntegration.AllowEmailIntoChannel",
"label": "Allow channel emails"
}
],
"label": "Disallow emails to be sent to channel email addresses",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-CsTeamsClientConfiguration -AllowEmailIntoChannel $false",
"recommendedBy": ["CIS 3.0"]
},
{
"name": "standards.TeamsExternalFileSharing",
"cat": "Teams Standards",
Expand Down
Loading