# Funktionstest # Generiert aus: funktionstest.txt # Quelle: SecuMail® Microsoft 365-Integration FAQ # # WICHTIG: Vor Ausfuehrung in Produktivumgebung # bitte in einer Testumgebung validieren. # # Voraussetzung: Connect-ExchangeOnline #========================================================== # KONFIGURATION #========================================================== # --- 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 #========================================================== # PRUEFUNG #========================================================== # --- Test 1: Empfangsweg (extern -> Microsoft 365 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 (Microsoft 365 -> 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