From 9796c4539d6aed8e8ba1d8ab183002eba5d65d93 Mon Sep 17 00:00:00 2001 From: Mechiel Lukkien Date: Fri, 5 Jan 2024 12:07:43 +0100 Subject: [PATCH] localserve: no longer suggest http basic auth for the web interfaces --- localserve.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/localserve.go b/localserve.go index d2fd61d..84910db 100644 --- a/localserve.go +++ b/localserve.go @@ -160,17 +160,17 @@ during those commands instead of during "data". golog.Print("") golog.Printf(`if the localpart begins with "mailfrom" or "rcptto", the error is returned during those commands instead of during "data"`) golog.Print("") - golog.Print(" smtp://localhost:1025 - receive email") - golog.Print("smtps://mox%40localhost:moxmoxmox@localhost:1465 - send email") - golog.Print(" smtp://mox%40localhost:moxmoxmox@localhost:1587 - send email (without tls)") - golog.Print("imaps://mox%40localhost:moxmoxmox@localhost:1993 - read email") - golog.Print(" imap://mox%40localhost:moxmoxmox@localhost:1143 - read email (without tls)") - golog.Print("https://mox%40localhost:moxmoxmox@localhost:1443/account/ - account https") - golog.Print(" http://mox%40localhost:moxmoxmox@localhost:1080/account/ - account http (without tls)") - golog.Print("https://mox%40localhost:moxmoxmox@localhost:1443/webmail/ - webmail https") - golog.Print(" http://mox%40localhost:moxmoxmox@localhost:1080/webmail/ - webmail http (without tls)") - golog.Print("https://admin:moxadmin@localhost:1443/admin/ - admin https") - golog.Print(" http://admin:moxadmin@localhost:1080/admin/ - admin http (without tls)") + golog.Print(" smtp://localhost:1025 - receive email") + golog.Print("smtps://mox%40localhost:moxmoxmox@localhost:1465 - send email") + golog.Print(" smtp://mox%40localhost:moxmoxmox@localhost:1587 - send email (without tls)") + golog.Print("imaps://mox%40localhost:moxmoxmox@localhost:1993 - read email") + golog.Print(" imap://mox%40localhost:moxmoxmox@localhost:1143 - read email (without tls)") + golog.Print("https://localhost:1443/account/ - account https (email mox@localhost, password moxmoxmox)") + golog.Print(" http://localhost:1080/account/ - account http (without tls)") + golog.Print("https://localhost:1443/webmail/ - webmail https (email mox@localhost, password moxmoxmox)") + golog.Print(" http://localhost:1080/webmail/ - webmail http (without tls)") + golog.Print("https://localhost:1443/admin/ - admin https (password moxadmin)") + golog.Print(" http://localhost:1080/admin/ - admin http (without tls)") golog.Print("") if existingConfig { golog.Printf("serving from existing config dir %s/", dir)