Public/generated/Get-KritTcmEXOTransportConfig.ps1
|
<# ·· × × × ··· SirJ's Deaddrop ··· × × × ··· — If you found this, you were meant to — ---------------- A Seriously Kritical™ Production ---------------- [] → (¯`·.¸¸.·´¯) .·´ `·. [] → `·.______________.·´ | +------------------+ | | | Kritical™ | | | | [] [] | | | | | | | | [] [] [] | | | +------------------+ | (._.·´¯`·.¸_) Your last call. And your first move. ★ ☆ ★ +61 1300 274 655 sales at kritical dot net ----------------------------------------------------------------- .COPYRIGHT (c) 2026 Kritical Pty Ltd. All rights reserved. .AUTHOR Joshua Finley <joshua.finley@kritical.net> .COMPANY Kritical Pty Ltd | ABN 39 687 048 086 Level 4 / 60 Moorabool St Geelong VIC 3220 1300 274 655 | sales@kritical.net | https://kritical.net/ .NOTES HARD RULE 13 canonical Kritical branding — do not overlay other agent banners. Auto-generated by Generate-KritTcmFromM365DscSchema.ps1 (.1507o30+). Upstream reference: Microsoft365DSC by Microsoft (MIT). This shim provides literal search-replace equivalence — see Krit.TCM/generated/index.md. #> function Get-KritTcmEXOTransportConfig { <# .SYNOPSIS Krit.TCM shim for M365DSC resource EXOTransportConfig. .DESCRIPTION Auto-generated from M365DSC .schema.mof by scripts/m365-setup/Generate-KritTcmFromM365DscSchema.ps1 (.1507o30). Search-replace safe: callers that today invoke Get-M365DSCEXOTransportConfig -Credential $cred -TenantId $tid can rename to Get-KritTcmEXOTransportConfig -Credential $cred -TenantId $tid with ZERO other edits. Parameter shape matches the M365DSC .schema.mof exactly. Per operator direction, -PreferM365DscBehavior defaults to true. Actual Graph dispatch is delegated to Invoke-KritTcmM365DscSchemaBridge. Bridge maps resource → Graph endpoint per per-resource wave; where mapping is not yet shipped, bridge returns an object with Verdict='UNMAPPED'. .NOTES Workload: Exchange Original mof: C:\Users\joshl\OneDrive - Kritical Pty Ltd\Github\KRTPax8ToShopifyConnector\.kritm365-mine\Microsoft365DSC\Modules\Microsoft365DSC\DSCResources\MSFT_EXOTransportConfig\MSFT_EXOTransportConfig.schema.mof Param count: 34 Generator wave: .1507o30 #> [CmdletBinding()] param( # Specifies the resource is a single instance, the value must be 'Yes'. [Parameter(Mandatory)] [ValidateSet('Yes')] [string]$IsSingleInstance, # The AddressBookPolicyRoutingEnabled parameter controls how recipients are resolved in an organization that uses address book policies to create separate virtual organizations within the same Exchange organization. [bool]$AddressBookPolicyRoutingEnabled, # Allow legacy TLS clients [bool]$AllowLegacyTLSClients, # The ClearCategories parameter keeps or removes Microsoft Outlook message categories during content conversion. [bool]$ClearCategories, # The ConvertDisclaimerWrapperToEml parameter specifies whether the original message will be added as a TNEF attachment or a regular EML attachment to a disclaimer. [bool]$ConvertDisclaimerWrapperToEml, # The DSNConversionMode parameter controls how Exchange handles delivery status notifications that are generated by earlier versions of Exchange or other messaging systems. [string]$DSNConversionMode, # The ExternalDelayDsnEnabled parameter specifies whether a delay delivery status notification (DSN) message should be created for external messages that couldn't be immediately delivered. [bool]$ExternalDelayDsnEnabled, # The ExternalDsnDefaultLanguage parameter specifies which Exchange server language should be used by default when you create external DSN messages. [string]$ExternalDsnDefaultLanguage, # The ExternalDsnLanguageDetectionEnabled parameter specifies whether the server should try to send an external DSN message in the same language as the original message that generated the notification. [bool]$ExternalDsnLanguageDetectionEnabled, # The ExternalDsnReportingAuthority parameter specifies the domain in the machine-readable part of external DSN messages. [string]$ExternalDsnReportingAuthority, # The ExternalDsnSendHtml parameter specifies whether external DSN messages should be HTML or plain text. [bool]$ExternalDsnSendHtml, # The ExternalPostmasterAddress parameter specifies the email address in the From header field of an external DSN message. [string]$ExternalPostmasterAddress, # The HeaderPromotionModeSetting parameter specifies whether named properties are created for custom X-headers on messages received. [string]$HeaderPromotionModeSetting, # The InternalDelayDsnEnabled parameter specifies whether a delay DSN message should be created for messages sent to or from recipients or senders in the same Exchange organization that couldn't be immediately delivered. [bool]$InternalDelayDsnEnabled, # The InternalDsnDefaultLanguage parameter specifies which Exchange server language should be used by default when you create internal DSN messages. [string]$InternalDsnDefaultLanguage, # The InternalDsnLanguageDetectionEnabled parameter specifies whether the server should try to send an internal DSN message in the same language as the original message that generated the notification. [bool]$InternalDsnLanguageDetectionEnabled, # The InternalDsnReportingAuthority parameter specifies the domain in the machine-readable part of internal DSN messages. [string]$InternalDsnReportingAuthority, # The InternalDsnSendHtml parameter specifies whether internal DSN messages should be HTML or plain text. [bool]$InternalDsnSendHtml, # The JournalMessageExpirationDays parameter extends the number of days that undeliverable journal reports are queued before they expire. [int]$JournalMessageExpirationDays, # The JournalingReportNdrTo parameter specifies the email address to which journal reports are sent if the journaling mailbox is unavailable. Once set, it cannot be reset to blank again. [string]$JournalingReportNdrTo, # The MaxRecipientEnvelopeLimit parameter specifies the maximum number of recipients in a message. [string]$MaxRecipientEnvelopeLimit, # Reply all storm block duration hours. [int]$ReplyAllStormBlockDurationHours, # Reply all storm detection minimum recipients. [int]$ReplyAllStormDetectionMinimumRecipients, # Reply all storm detection minimum replies. [int]$ReplyAllStormDetectionMinimumReplies, # Reply all storm protection enabled. [bool]$ReplyAllStormProtectionEnabled, # The Rfc2231EncodingEnabled parameter specifies whether the RFC 2231 encoding of MIME parameters for outbound messages is enabled in your organization. [bool]$Rfc2231EncodingEnabled, # The SmtpClientAuthenticationDisabled parameter specifies whether to disable authenticated SMTP (SMTP AUTH) for the whole organization. [bool]$SmtpClientAuthenticationDisabled, # Credentials of the Exchange Global Admin [string]$Credential, # Id of the Azure Active Directory application to authenticate with. [string]$ApplicationId, # Id of the Azure Active Directory tenant used for authentication. [string]$TenantId, # Thumbprint of the Azure Active Directory application's authentication certificate to use for authentication. [string]$CertificateThumbprint, # Username can be made up to anything but password will be used for CertificatePassword [string]$CertificatePassword, # Path to certificate used in service principal usually a PFX file. [string]$CertificatePath, # Managed ID being used for authentication. [bool]$ManagedIdentity ) Invoke-KritTcmM365DscSchemaBridge -ResourceName 'EXOTransportConfig' -Workload 'Exchange' -Verb 'Get' -CallerParams $PSBoundParameters } |