diff options
author | Moritz Poldrack <git@moritz.sh> | 2023-05-09 17:19:42 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-05-16 13:56:58 +0200 |
commit | 2040fc1885ca4b4bea07d91e9fc6a0aaebfe7133 (patch) | |
tree | 0df09ba088414a5d74081e6a61c68afc2141c5a8 /worker/mbox | |
parent | 0eaf05d3fa6295e7df06793a967d3389d2a0f7d8 (diff) | |
download | aerc-2040fc1885ca4b4bea07d91e9fc6a0aaebfe7133.tar.gz |
imap: use delimiter from server
To accommodate servers that use a delimiter other than "/" ("." being a
common alternative), the delimiter is fetched from the server when
connecting.
Signed-off-by: Moritz Poldrack <git@moritz.sh>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'worker/mbox')
-rw-r--r-- | worker/mbox/worker.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/worker/mbox/worker.go b/worker/mbox/worker.go index fbdbec36..47713048 100644 --- a/worker/mbox/worker.go +++ b/worker/mbox/worker.go @@ -383,6 +383,10 @@ func (w *mboxWorker) Capabilities() *models.Capabilities { return w.capabilities } +func (w *mboxWorker) PathSeparator() string { + return "/" +} + func filterUids(folder *container, uids []uint32, args []string) ([]uint32, error) { criteria, err := lib.GetSearchCriteria(args) if err != nil { |