Skip to content

Commit 2bf0932

Browse files
committed
Updates to Set-CASMailbox and Set-TransportConfig
SmtpClientAuthenticationDisabled per Issue #1954.
1 parent 2bc7faa commit 2bf0932

File tree

2 files changed

+410
-359
lines changed

2 files changed

+410
-359
lines changed

exchange/exchange-ps/exchange/client-access/Set-CASMailbox.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ Set-CASMailbox [-Identity] <MailboxIdParameter>
6868
[-ResetAutoBlockedDevices]
6969
[-SamAccountName <String>]
7070
[-ShowGalAsDefaultView <$true | $false>]
71+
[-SmtpClientAuthenticationDisabled <$true | $false>]
7172
[-UniversalOutlookEnabled <$true | $false>]
7273
[-WhatIf] [<CommonParameters>]
7374
```
@@ -1168,6 +1169,41 @@ Accept pipeline input: False
11681169
Accept wildcard characters: False
11691170
```
11701171
1172+
### -SmtpClientAuthenticationDisabled
1173+
This parameter is available only in the cloud-based service.
1174+
1175+
The SmtpClientAuthenticationDisabled parameter specifies whether to disable authenticated SMTP (SMTP AUTH) for the mailbox. Examples of clients and services that require authenticated SMTP to send email messages include:
1176+
1177+
- POP3 and IMAP4 clients.
1178+
1179+
- Devices with scan to email capability.
1180+
1181+
- Workflow applications that send email notifications.
1182+
1183+
- Online services that send messages using internal email addresses in the organization.
1184+
1185+
Valid values for this parameter are:
1186+
1187+
- $true: Authenticated SMTP is disabled for the mailbox.
1188+
1189+
- $false: Authenticated SMTP is enaled for the mailbox.
1190+
1191+
- blank ($null): This is the default value. The authenticated SMTP setting for the mailbox is controlled by the corresponding SmtpClientAuthenticationDisabled parameter on the Set-TransportConfig cmdlet for the whole organization. By default, authenticated SMTP is enabled for the organization ($false), which means authenticated SMTP is also enabled for the mailbox.
1192+
1193+
To selectively enable authenticated SMTP for specific mailboxes only: disable authenticated SMTP at the organizational level ($true), enable it for the specific mailboxes ($false), and leave the rest of the mailboxes with their default value ($null).
1194+
1195+
```yaml
1196+
Type:$true | $false
1197+
Parameter Sets: (All)
1198+
Aliases:
1199+
Applicable: Exchange Online
1200+
Required: False
1201+
Position: Named
1202+
Default value: None
1203+
Accept pipeline input: False
1204+
Accept wildcard characters: False
1205+
```
1206+
11711207
### -UniversalOutlookEnabled
11721208
This parameter is available only in the cloud-based service.
11731209

0 commit comments

Comments
 (0)