# Empfangsweg - IP-Whitelist # Generiert aus: empfangsweg-ip-whitelist.txt # Quelle: SecuMail MS365-Integration FAQ # # WICHTIG: Vor Ausfuehrung in Produktivumgebung # bitte in einer Testumgebung validieren. # # Voraussetzung: Connect-ExchangeOnline #========================================================== # KONFIGURATION #========================================================== # --- Schritt 1: Inbound Connector anlegen --- New-InboundConnector ` -Name "SecuMail Inbound" ` -ConnectorType Partner ` -SenderIPAddresses "212.11.224.0/24","212.11.225.0/24","212.11.240.64/27" ` -RequireTls $true ` -RestrictDomainsToCertificate $false ` -EFSkipIPs "212.11.224.0/24","212.11.225.0/24","212.11.240.64/27" ` -EFSkipLastIP $false ` -Enabled $true Set-InboundConnector ` -Identity "SecuMail Inbound" ` -SenderIPAddresses "212.11.224.0/24","212.11.225.0/24","212.11.240.64/27" ` -EFSkipIPs "212.11.224.0/24","212.11.225.0/24","212.11.240.64/27" # --- Schritt 3: TLS für den Empfangsweg prüfen --- Set-InboundConnector ` -Identity "SecuMail Inbound" ` -RequireTls $true #========================================================== # PRUEFUNG #========================================================== # --- Schritt 1: Inbound Connector anlegen --- Get-InboundConnector -Identity "SecuMail Inbound" | Format-List Name, ConnectorType, SenderIPAddresses, RequireTls, EFSkipIPs, EFSkipLastIP, Enabled # --- Schritt 3: TLS für den Empfangsweg prüfen --- Get-InboundConnector -Identity "SecuMail Inbound" | Format-List Name, RequireTls