# Funktionstest # Generiert aus: funktionstest.txt # Quelle: SecuMail MS365-Integration FAQ # # WICHTIG: Vor Ausfuehrung in Produktivumgebung # bitte in einer Testumgebung validieren. # # Voraussetzung: Connect-ExchangeOnline #========================================================== # PRUEFUNG #========================================================== # --- Checkliste: Konfiguration prüfen --- Get-InboundConnector | Format-List Name, ConnectorType, SenderIPAddresses, RequireTls, EFSkipIPs, Enabled Get-OutboundConnector | Format-List Name, ConnectorType, SmartHosts, TlsSettings, IsTransportRuleScoped, Enabled Get-TransportRule | Format-List Name, State, Priority, FromScope, SentToScope, RouteMessageOutboundConnector Get-ArcConfig | Format-List ArcTrustedSealers Get-HostedContentFilterPolicy Default | Select-Object MarkAsSpamSpfRecordHardFail # --- Test 1: Empfangsweg (extern -> MS365 via SecuMail) --- Get-MessageTrace -RecipientAddress empfaenger@ihredomain.de -StartDate (Get-Date).AddHours(-1) -EndDate (Get-Date) | Format-List Received, SenderAddress, RecipientAddress, Subject, Status, FromIP # --- Test 2: Sendeweg (MS365 -> extern via SecuMail) --- Get-MessageTrace -SenderAddress absender@ihredomain.de -StartDate (Get-Date).AddHours(-1) -EndDate (Get-Date) | Format-List Received, SenderAddress, RecipientAddress, Subject, Status, ToIP