Verify TLS certificates
I was partway done implementing a UI for users to approve untrusted certs with, but let's just make them configure their servers right instead.
This commit is contained in:
parent
a9aebe11d7
commit
5de1bb8cc3
2 changed files with 1 additions and 18 deletions
widgets
|
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue