summaryrefslogtreecommitdiff
path: root/perl5
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-07-13 18:52:48 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-07-13 19:01:30 -0700
commit53dcdf67ccd602ae2a551a6e718a41fb4d92c8c4 (patch)
treee2934276823f06dd2c2b6cae8874ad1ca98c820d /perl5
parentc68f05c4f414d8c5f0272a43af0344d058f9ce7b (diff)
downloaddotfiles-53dcdf67ccd602ae2a551a6e718a41fb4d92c8c4.tar.gz
move files indicating which mboxes have been expanded into a subdir
We can then have notmuch ignore them without using a regular expression.
Diffstat (limited to 'perl5')
-rw-r--r--perl5/Local/Homedir/Mail.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl5/Local/Homedir/Mail.pm b/perl5/Local/Homedir/Mail.pm
index 6ee94046..d1e08ff0 100644
--- a/perl5/Local/Homedir/Mail.pm
+++ b/perl5/Local/Homedir/Mail.pm
@@ -76,7 +76,7 @@ sub archive_to_mbox {
$expanded->acceptMessages;
$mgr->closeAllFolders;
open my $touch_fh, ">",
- catfile($expanded_path, "." . (splitpath $mbox_path)[2]) . ".done";
+ catfile($expanded_path, ".expanded", (splitpath $mbox_path)[2]);
gzip($mbox_path, "$mbox_path.gz")
or die "gzip failed: $GzipError\n";
unlink $mbox_path if -e "$mbox_path.gz";
@@ -86,7 +86,7 @@ sub expand_mbox {
my ($source_path, $target) = @_;
(my $source_name = (splitpath $source_path)[2]) =~ s/\.gz$//;
my $expanded_path = catfile $target, ".$source_name";
- my $donefile = $expanded_path . ".done";
+ my $donefile = catfile $target, ".expanded", $source_name;
# Check whether we finished, or got partway there.
return if -e $donefile;