I'm having troubles getting a variable which is set to a path with a space in the name to behave correctly.
In maildrop
I want all my Mails that doesn't match the rules (in this example only "Hold") to be move to the archive folder "1. Archive".
Here is my mailfilter configuration.
## FILING RULES for "$HOME/Maildir/.1 Archiver.Filer"
#### Hold
if (/^From:.*test\@gmail\.com*/:h || \
/^Subject:.*Archive Filer Test.*/:h)
{
TESTDIR="$HOME/Maildir/.Test"
exception {
# File mail in test folder
cc "$DEALSDIR"
# Mark mails in the folder as read
`for x in ${TESTDIR}/new/*; do [ -f $x ] && mv $x ${TESTDIR}/cur/${x##*/}:2,S; done`
`for x in ${TESTDIR}/cur/*:2,; do [ -f $x ] && mv $x ${TESTSDIR}/cur/${x##*/}S; done`
to "/dev/null"
}
}
#### Archive everything else
if (/^From:.*/:h)
{
ARCHIVEDDIR="$HOME/Maildir/.1 Archive"
exception {
cc "$ARCHIVEDDIR"
`for x in ${ARCHIVEDDIR}/new/*; do [ -f $x ] && mv $x ${ARCHIVEDDIR}/cur/${x##*/}:2,S; done`
`for x in ${ARCHIVEDDIR}/cur/*:2,; do [ -f $x ] && mv $x ${ARCHIVEDDIR}/cur/${x##*/}S; done`
to "/dev/null"
}
}
The problem is the "#### Archive everything else" part. I tried (a) putting the variable in quotes and (b) using $HOME/Maildir/.1\ Archive/
in the mark-as-read part, but the result remains the same (maybe I missed something):
- The mail moves into the archive folder √
- It doesn't get marked as read….
If I switch the name with the space with one that doesn't have a space it works.
Side note: this mail filter doesn't run on the inbox. The original plan was to file away anything that I move into "1. Archive" automatically and if there is no rule to keep it in the archive folder.
Since I couldn't come up with a bash script that ignores files that were already matched I created a separate imap folder for filing (the "filer" dir). I pipe the contents of archive to my filing filter for maildrop with this bash script:
#!/bin/bash
cd /home/pattulus/Maildir/.1\ Archive.Filer/cur/;
if ls ./* > /dev/null 2>&1
then
echo "There are files in that directory!"
echo "Filing archived Mails…"
for MAILFILE in * ;
do maildrop /home/pattulus/.mailfilter-archive < $MAILFILE && rm -f $MAILFILE ;
done
echo "-----------"
echo "All Mails filed."
else
echo "There are no files in that directory"
fi