1b8b6e218c
Add the initial implementation of a backend for Maildir accounts. Much of the functionality required is implemented in the go-message and go-maildir libraries, so we use them as much as possible. The maildir worker hooks into a new maildir:// URL scheme in the accounts.conf file which points to a container of several maildir directories. From there, the OpenDirectory, FetchDirectoryContents, etc messages work on subdirectories. This is implemented as a Container struct which handles mapping between the symbolic email folder names and UIDs to the concrete directories and file names.
37 lines
834 B
Go
37 lines
834 B
Go
package worker
|
|
|
|
import (
|
|
"git.sr.ht/~sircmpwn/aerc/worker/imap"
|
|
"git.sr.ht/~sircmpwn/aerc/worker/maildir"
|
|
"git.sr.ht/~sircmpwn/aerc/worker/types"
|
|
|
|
"fmt"
|
|
"log"
|
|
"net/url"
|
|
"strings"
|
|
)
|
|
|
|
// Guesses the appropriate worker type based on the given source string
|
|
func NewWorker(source string, logger *log.Logger) (*types.Worker, error) {
|
|
u, err := url.Parse(source)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
worker := types.NewWorker(logger)
|
|
scheme := u.Scheme
|
|
if strings.ContainsRune(scheme, '+') {
|
|
scheme = scheme[:strings.IndexRune(scheme, '+')]
|
|
fmt.Println(scheme)
|
|
}
|
|
switch scheme {
|
|
case "imap":
|
|
fallthrough
|
|
case "imaps":
|
|
worker.Backend = imap.NewIMAPWorker(worker)
|
|
case "maildir":
|
|
worker.Backend = maildir.NewWorker(worker)
|
|
default:
|
|
return nil, fmt.Errorf("Unknown backend %s", u.Scheme)
|
|
}
|
|
return worker, nil
|
|
}
|