fix(PROJ-30): ListFolders — c.Client statt c uebergeben (imap.Conn vs *imapclient.Client)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
sysops
2026-04-03 21:21:20 +02:00
parent 0969f76da6
commit 825e4db7c1
+1 -1
View File
@@ -159,7 +159,7 @@ func (s *Server) handleTestImap(w http.ResponseWriter, r *http.Request) {
return return
} }
folders, err := imapstore.ListFolders(c) folders, err := imapstore.ListFolders(c.Client)
if err != nil { if err != nil {
writeJSON(w, http.StatusOK, map[string]interface{}{ writeJSON(w, http.StatusOK, map[string]interface{}{
"ok": false, "ok": false,