Skip to content

Commit 3038be4

Browse files
authored
Merge branch 'main' into patch-5
2 parents a8b2ecd + 8de164b commit 3038be4

File tree

2 files changed

+30
-13
lines changed

2 files changed

+30
-13
lines changed

exchange/exchange-ps/exchange/New-InboundConnector.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Accept wildcard characters: False
9292
```
9393
9494
### -SenderDomains
95-
The SenderDomains parameter specifies the source domains that the connector accepts messages for. A valid value is an SMTP domain. Wildcards are supported to indicate a domain and all subdomains (for example, \*.contoso.com), but you can't embed the wildcard character (for example, domain.\*.contoso.com is not valid).
95+
The SenderDomains parameter specifies the source domains that a Partner type connector accepts messages for (limits the scope of a Partner type connector). A valid value is an SMTP domain. Wildcards are supported to indicate a domain and all subdomains (for example, `*.contoso.com`). However, you can't embed the wildcard character (for example, `domain.*.contoso.com` isn't valid).
9696

9797
You can specify multiple domains separated by commas.
9898

@@ -227,7 +227,7 @@ Accept wildcard characters: False
227227
The ConnectorType parameter specifies the category for the source domains that the connector accepts messages for. Valid values are:
228228

229229
- Partner: External partners or services.
230-
- OnPremises: Your on-premises email organization. Use this value for accepted domains in your cloud-based organization that are also specified by the SenderDomains parameter.
230+
- OnPremises: The connector services domains that are used by your on-premises organization. OnPremises connectors grant special rights to an email that matches the connector and additional requirements. For example: allowing relay through the tenant to internet destinations, promoting emails from on-premises or other environments as internal (in a hybrid configuration), or enabling other more complex mail flows.
231231

232232
```yaml
233233
Type: TenantConnectorType
@@ -353,11 +353,13 @@ Accept wildcard characters: False
353353
```
354354

355355
### -RequireTls
356-
The RequireTLS parameter specifies whether to require TLS transmission for all messages that are received by the connector. Valid values are:
356+
The RequireTLS parameter specifies whether to require TLS transmission for all messages that are received by a Partner type connector. Valid values are:
357357

358358
- $true: Reject messages if they aren't sent over TLS. This is the default value
359359
- $false: Allow messages if they aren't sent over TLS.
360360

361+
**Note**: This parameter applies only to Partner type connectors.
362+
361363
```yaml
362364
Type: Boolean
363365
Parameter Sets: (All)
@@ -372,11 +374,13 @@ Accept wildcard characters: False
372374
```
373375

374376
### -RestrictDomainsToCertificate
375-
The RestrictDomainsToCertificate parameter specifies whether the Subject value of the TLS certificate is checked before messages can use the connector. Valid values are:
377+
The RestrictDomainsToCertificate parameter specifies whether the Subject value of the TLS certificate is checked before messages can use the Partner type connector. Valid values are:
376378

377379
- $true: Mail is allowed to use the connector only if the Subject value of the TLS certificate that the source email server uses to authenticate matches the TlsSenderCertificateName parameter value.
378380
- $false: The Subject value of the TLS certificate that the source email server uses to authenticate doesn't control whether mail from that source uses the connector. This is the default value.
379381

382+
**Note**: This parameter applies only to Partner type connectors.
383+
380384
```yaml
381385
Type: Boolean
382386
Parameter Sets: (All)
@@ -391,11 +395,13 @@ Accept wildcard characters: False
391395
```
392396

393397
### -RestrictDomainsToIPAddresses
394-
The RestrictDomainsToIPAddresses parameter specifies whether to reject mail that comes from unknown source IP addresses. Valid values are:
398+
The RestrictDomainsToIPAddresses parameter specifies whether to reject mail that comes from unknown source IP addresses for Partner type connectors. Valid values are:
395399

396400
- $true: Automatically reject mail from domains that are specified by the SenderDomains parameter if the source IP address isn't also specified by the SenderIPAddress parameter.
397401
- $false: Don't automatically reject mail from domains that are specified by the SenderDomains parameter based on the source IP address. This is the default value.
398402

403+
**Note**: This parameter applies only to Partner type connectors.
404+
399405
```yaml
400406
Type: Boolean
401407
Parameter Sets: (All)
@@ -426,7 +432,7 @@ Accept wildcard characters: False
426432
```
427433

428434
### -SenderIPAddresses
429-
The SenderIPAddresses parameter specifies the source IPV4 IP addresses that the connector accepts messages from. Valid values are:
435+
The SenderIPAddresses parameter specifies the source IPV4 IP addresses that the Partner type connector accepts messages from when the value of the RestrictDomainsToIPAddresses parameter is $true. Valid values are:
430436

431437
- Single IP address: For example, 192.168.1.1.
432438
- Classless InterDomain Routing (CIDR) IP address range: For example, 192.168.0.1/25. Valid subnet mask values are /24 through /32.
@@ -435,6 +441,8 @@ You can specify multiple IP addresses separated by commas.
435441

436442
IPv6 addresses are not supported.
437443

444+
**Note**: This parameter applies to Partner type connectors only if the value of the RestrictDomainsToIPAddresses parameter is $true.
445+
438446
```yaml
439447
Type: MultiValuedProperty
440448
Parameter Sets: (All)

exchange/exchange-ps/exchange/Set-InboundConnector.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Accept wildcard characters: False
186186
The ConnectorType parameter specifies a category for the domains that are serviced by the connector. Valid input for this parameter includes the following values:
187187

188188
- Partner: The connector services domains that are external to your organization.
189-
- OnPremises: The connector services domains that are used by your on-premises organization. Use this value for accepted domains in your cloud-based organization that are also specified by the SenderDomains parameter.
189+
- OnPremises: The connector services domains that are used by your on-premises organization. OnPremises connectors grant special rights to an email that matches the connector and additional requirements. For example: allowing relay through the tenant to internet destinations, promoting emails from on-premises or other environments as internal (in a hybrid configuration), or enabling other more complex mail flows.
190190

191191
```yaml
192192
Type: TenantConnectorType
@@ -328,11 +328,13 @@ Accept wildcard characters: False
328328
```
329329

330330
### -RequireTls
331-
The RequireTLS parameter specifies whether to require TLS transmission for all messages that are received by the connector. Valid values are:
331+
The RequireTLS parameter specifies whether to require TLS transmission for all messages that are received by a Partner type connector. Valid values are:
332332

333333
- $true: Reject messages if they aren't sent over TLS. This is the default value
334334
- $false: Allow messages if they aren't sent over TLS.
335335

336+
**Note**: This parameter applies only to Partner type connectors.
337+
336338
```yaml
337339
Type: Boolean
338340
Parameter Sets: (All)
@@ -347,11 +349,13 @@ Accept wildcard characters: False
347349
```
348350

349351
### -RestrictDomainsToCertificate
350-
The RestrictDomainsToCertificate parameter specifies whether the Subject value of the TLS certificate is checked before messages can use the connector. Valid values are:
352+
The RestrictDomainsToCertificate parameter specifies whether the Subject value of the TLS certificate is checked before messages can use the Partner type connector. Valid values are:
351353

352354
- $true: Mail is allowed to use the connector only if the Subject value of the TLS certificate that the source email server uses to authenticate matches the TlsSenderCertificateName parameter value.
353355
- $false: The Subject value of the TLS certificate that the source email server uses to authenticate doesn't control whether mail from that source uses the connector. This is the default value.
354356

357+
**Note**: This parameter applies only to Partner type connectors.
358+
355359
```yaml
356360
Type: Boolean
357361
Parameter Sets: (All)
@@ -366,11 +370,13 @@ Accept wildcard characters: False
366370
```
367371

368372
### -RestrictDomainsToIPAddresses
369-
The RestrictDomainsToIPAddresses parameter specifies whether to reject mail that comes from unknown source IP addresses. Valid values are:
373+
The RestrictDomainsToIPAddresses parameter specifies whether to reject mail that comes from unknown source IP addresses for Partner type connectors. Valid values are:
370374

371375
- $true: Automatically reject mail from domains that are specified by the SenderDomains parameter if the source IP address isn't also specified by the SenderIPAddress parameter.
372376
- $false: Don't automatically reject mail from domains that are specified by the SenderDomains parameter based on the source IP address. This is the default value.
373377

378+
**Note**: This parameter applies only to Partner type connectors.
379+
374380
```yaml
375381
Type: Boolean
376382
Parameter Sets: (All)
@@ -401,7 +407,7 @@ Accept wildcard characters: False
401407
```
402408

403409
### -SenderDomains
404-
The SenderDomains parameter specifies the source domains that the connector accepts messages for. A valid value is an SMTP domain. Wildcards are supported to indicate a domain and all subdomains (for example, \*.contoso.com), but you can't embed the wildcard character (for example, domain.\*.contoso.com is not valid).
410+
The SenderDomains parameter specifies the source domains that a Partner type connector accepts messages for (limits the scope of a Partner type connector). A valid value is an SMTP domain. Wildcards are supported to indicate a domain and all subdomains (for example, `*.contoso.com`). However, you can't embed the wildcard character (for example, `domain.*.contoso.com` isn't valid).
405411

406412
You can specify multiple domains separated by commas.
407413

@@ -419,12 +425,15 @@ Accept wildcard characters: False
419425
```
420426

421427
### -SenderIPAddresses
422-
The SenderIPAddresses parameter specifies the remote IPV4 IP addresses from which this connector accepts messages. IPv6 addresses are not supported. Valid values are:
428+
The SenderIPAddresses parameter specifies the source IPV4 IP addresses that the Partner type connector accepts messages from when the value of the RestrictDomainsToIPAddresses parameter is $true. Valid values are:
423429

424430
- Single IP address: For example, 192.168.1.1.
425431
- Classless InterDomain Routing (CIDR) IP address range: For example, 192.168.0.1/25. Valid subnet mask values are /24 through /32.
432+
@@ -435,6 +441,8 @@ You can specify multiple IP addresses separated by commas.
426433

427-
You can specify multiple values separated by commas.
434+
IPv6 addresses are not supported.
435+
436+
**Note**: This parameter applies to Partner type connectors only if the value of the RestrictDomainsToIPAddresses parameter is $true.
428437

429438
```yaml
430439
Type: MultiValuedProperty

0 commit comments

Comments
 (0)