SMTP-Mailpit
Version vom 23. April 2026, 13:46 Uhr von Maximilian.pottgiesser (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „<pre> # Zielordner anlegen New-Item -ItemType Directory -Path "C:\mailpit" # Aktuelle Version herunterladen Invoke-WebRequest ` -Uri "https://github.com/ax…“)
# Zielordner anlegen New-Item -ItemType Directory -Path "C:\mailpit" # Aktuelle Version herunterladen Invoke-WebRequest ` -Uri "https://github.com/axllent/mailpit/releases/latest/download/mailpit-windows-amd64.zip" ` -OutFile "C:\mailpit\mailpit.zip" # Entpacken Expand-Archive -Path "C:\mailpit\mailpit.zip" -DestinationPath "C:\mailpit" # Zip aufräumen Remove-Item "C:\mailpit\mailpit.zip"