SMTP-Mailpit: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(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…“) |
|||
| Zeile 13: | Zeile 13: | ||
# Zip aufräumen | # Zip aufräumen | ||
Remove-Item "C:\mailpit\mailpit.zip" | Remove-Item "C:\mailpit\mailpit.zip" | ||
| + | |||
| + | #Starten | ||
| + | C:\mailpit\mailpit.exe --smtp 0.0.0.0:25 --listen 0.0.0.0:8025 | ||
</pre> | </pre> | ||
Aktuelle Version vom 23. April 2026, 13:54 Uhr
# 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" #Starten C:\mailpit\mailpit.exe --smtp 0.0.0.0:25 --listen 0.0.0.0:8025