From fe1cabb077cf6c6cb3de122b3f5532acbeba8c85 Mon Sep 17 00:00:00 2001 From: ARaspiK Date: Tue, 18 Aug 2020 20:27:23 +0000 Subject: 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. --- widgets/account.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'widgets') diff --git a/widgets/account.go b/widgets/account.go index bb29ce06..f2795133 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -237,6 +237,8 @@ func (acct *AccountView) onMessage(msg types.WorkerMessage) { } case *types.CreateDirectory: acct.dirlist.UpdateList(nil) + case *types.RemoveDirectory: + acct.dirlist.UpdateList(nil) } case *types.DirectoryInfo: if store, ok := acct.dirlist.MsgStore(msg.Info.Name); ok { -- cgit