2022-05-30 14:34:18 +02:00
|
|
|
package imap
|
|
|
|
|
|
|
|
import (
|
|
|
|
"git.sr.ht/~rjarry/aerc/models"
|
|
|
|
"git.sr.ht/~rjarry/aerc/worker/types"
|
|
|
|
"github.com/emersion/go-imap"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (w *IMAPWorker) handleCheckMailMessage(msg *types.CheckMail) {
|
|
|
|
items := []imap.StatusItem{
|
|
|
|
imap.StatusMessages,
|
|
|
|
imap.StatusRecent,
|
|
|
|
imap.StatusUnseen,
|
|
|
|
}
|
|
|
|
for _, dir := range msg.Directories {
|
|
|
|
w.worker.Logger.Printf("Getting status of directory %s", dir)
|
|
|
|
status, err := w.client.Status(dir, items)
|
|
|
|
if err != nil {
|
|
|
|
w.worker.PostMessage(&types.Error{
|
|
|
|
Message: types.RespondTo(msg),
|
|
|
|
Error: err,
|
|
|
|
}, nil)
|
|
|
|
} else {
|
|
|
|
w.worker.PostMessage(&types.DirectoryInfo{
|
|
|
|
Info: &models.DirectoryInfo{
|
|
|
|
Flags: status.Flags,
|
|
|
|
Name: status.Name,
|
|
|
|
ReadOnly: status.ReadOnly,
|
|
|
|
AccurateCounts: true,
|
|
|
|
|
|
|
|
Exists: int(status.Messages),
|
|
|
|
Recent: int(status.Recent),
|
|
|
|
Unseen: int(status.Unseen),
|
2022-07-05 21:48:37 +02:00
|
|
|
Caps: w.caps,
|
2022-05-30 14:34:18 +02:00
|
|
|
},
|
|
|
|
SkipSort: true,
|
|
|
|
}, nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
w.worker.PostMessage(&types.Done{Message: types.RespondTo(msg)}, nil)
|
|
|
|
}
|