diff options
| author | Paul Wise <pabs3@bonedaddy.net> | 2023-05-28 10:29:44 +0800 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2023-05-28 15:32:11 -0300 |
| commit | 85916d8a9636645e8b15061e59df2e28691aa012 (patch) | |
| tree | e48a8e1240d28f1dcc2df0c84dc5a27bde4a5f1c | |
| parent | 93d936c5ae2c694d7fcc310503a182b6bbd603ee (diff) | |
notmuch-mutt: clarify the empty Maildir function operates on search caches
Rename the function and adjust the documentation comment.
| -rwxr-xr-x | contrib/notmuch-mutt/notmuch-mutt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/notmuch-mutt/notmuch-mutt b/contrib/notmuch-mutt/notmuch-mutt index 01db6908..0f7379ac 100755 --- a/contrib/notmuch-mutt/notmuch-mutt +++ b/contrib/notmuch-mutt/notmuch-mutt @@ -26,8 +26,8 @@ $xdg_cache_dir = $ENV{XDG_CACHE_HOME} if $ENV{XDG_CACHE_HOME}; my $cache_dir = "$xdg_cache_dir/notmuch/mutt"; -# create an empty maildir (if missing) or empty an existing maildir" -sub empty_maildir($) { +# create an empty search cache maildir (if missing) or empty existing one +sub empty_search_cache_maildir($) { my ($maildir) = (@_); rmtree($maildir) if (-d $maildir); my $folder = new Mail::Box::Maildir(folder => $maildir, @@ -45,7 +45,7 @@ sub search($$$) { push @args, "--duplicate=1" if $remove_dups; push @args, $query; - empty_maildir($maildir); + empty_search_cache_maildir($maildir); open my $pipe, '-|', @args or die "Running @args failed: $!\n"; while (<$pipe>) { chomp; @@ -120,7 +120,7 @@ sub thread_action($$@) { my $mid = get_message_id(); if (! defined $mid) { - empty_maildir($results_dir); + empty_search_cache_maildir($results_dir); die "notmuch-mutt: cannot find Message-Id, abort.\n"; } |
