diff options
author | ARaspiK <araspik@protonmail.com> | 2020-08-18 20:27:23 +0000 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-08-19 11:38:57 +0200 |
commit | fe1cabb077cf6c6cb3de122b3f5532acbeba8c85 (patch) | |
tree | 6f57a28a507c500df82f991cefd67910eca973f0 /worker/imap | |
parent | f4dc7e1f746582d42462ec56347dd354756203b0 (diff) | |
download | aerc-fe1cabb077cf6c6cb3de122b3f5532acbeba8c85.tar.gz |
Add support for :rmdir
The `:rmdir` command removes the current directory (`-f` is required if the directory is not empty). This is not supported on the notmuch backend. An issue with the maildir backend is that some sync programs (e.g. offlineimap) may recover the directory after it is deleted. They need to specifically be configured to accept deletions, or special commands need to be executed (e.g. `offlineimap --delete-folder`) to properly delete folders. A danger of using this on the IMAP backend is that it is possible for a new message to be added to the directory and for aerc to not show it immediately (due to a slow connection) - using `:rmdir` at this moment (with `-f` if the directory already contains messages) would delete the directory and the new message that just arrived (and all other contents). This is documented in aerc(1) so that users are aware of possible risks.
Diffstat (limited to 'worker/imap')
-rw-r--r-- | worker/imap/remove.go | 19 | ||||
-rw-r--r-- | worker/imap/worker.go | 2 |
2 files changed, 21 insertions, 0 deletions
diff --git a/worker/imap/remove.go b/worker/imap/remove.go new file mode 100644 index 0000000..47b1f43 --- /dev/null +++ b/worker/imap/remove.go @@ -0,0 +1,19 @@ +package imap + +import ( + "git.sr.ht/~sircmpwn/aerc/worker/types" +) + +func (imapw *IMAPWorker) handleRemoveDirectory(msg *types.RemoveDirectory) { + if err := imapw.client.Delete(msg.Directory); err != nil { + if msg.Quiet { + return + } + imapw.worker.PostMessage(&types.Error{ + Message: types.RespondTo(msg), + Error: err, + }, nil) + } else { + imapw.worker.PostMessage(&types.Done{types.RespondTo(msg)}, nil) + } +} diff --git a/worker/imap/worker.go b/worker/imap/worker.go index 0be51d7..c016af6 100644 --- a/worker/imap/worker.go +++ b/worker/imap/worker.go @@ -165,6 +165,8 @@ func (w *IMAPWorker) handleMessage(msg types.WorkerMessage) error { w.handleFetchDirectoryContents(msg) case *types.CreateDirectory: w.handleCreateDirectory(msg) + case *types.RemoveDirectory: + w.handleRemoveDirectory(msg) case *types.FetchMessageHeaders: w.handleFetchMessageHeaders(msg) case *types.FetchMessageBodyPart: |