about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--widgets/account.go8
-rw-r--r--worker/types/messages.go11
2 files changed, 1 insertions, 18 deletions
diff --git a/widgets/account.go b/widgets/account.go
index 431e7b8..4ccb43d 100644
--- a/widgets/account.go
+++ b/widgets/account.go
@@ -123,7 +123,7 @@ func (acct *AccountView) Focus(focus bool) {
 }
 
 func (acct *AccountView) connected(msg types.WorkerMessage) {
-	switch msg := msg.(type) {
+	switch msg.(type) {
 	case *types.Done:
 		acct.host.SetStatus("Listing mailboxes...")
 		acct.logger.Println("Listing mailboxes...")
@@ -142,12 +142,6 @@ func (acct *AccountView) connected(msg types.WorkerMessage) {
 			acct.logger.Println("Connected.")
 			acct.host.SetStatus("Connected.")
 		})
-	case *types.CertificateApprovalRequest:
-		// TODO: Ask the user
-		acct.worker.PostAction(&types.ApproveCertificate{
-			Message:  types.RespondTo(msg),
-			Approved: true,
-		}, acct.connected)
 	}
 }
 
diff --git a/worker/types/messages.go b/worker/types/messages.go
index eb54a15..555e3ce 100644
--- a/worker/types/messages.go
+++ b/worker/types/messages.go
@@ -1,7 +1,6 @@
 package types
 
 import (
-	"crypto/x509"
 	"io"
 	"time"
 
@@ -56,11 +55,6 @@ type Unsupported struct {
 
 // Actions
 
-type ApproveCertificate struct {
-	Message
-	Approved bool
-}
-
 type Configure struct {
 	Message
 	Config *config.AccountConfig
@@ -125,11 +119,6 @@ type AppendMessage struct {
 
 // Messages
 
-type CertificateApprovalRequest struct {
-	Message
-	CertPool *x509.CertPool
-}
-
 type Directory struct {
 	Message
 	Attributes []string