summaryrefslogtreecommitdiff
path: root/learn-spam
diff options
context:
space:
mode:
Diffstat (limited to 'learn-spam')
-rwxr-xr-xlearn-spam11
1 files changed, 10 insertions, 1 deletions
diff --git a/learn-spam b/learn-spam
index 44dd2d3..615d3c8 100755
--- a/learn-spam
+++ b/learn-spam
@@ -2,7 +2,16 @@
set -e
-MAILDIR=/srv/mail/$LOGNAME-d/
+for dir in \
+ /srv/mail/$LOGNAME-d/ \
+ $HOME/Maildir \
+ ; do
+
+ MAILDIR="$dir"
+ if [ -d "$MAILDIR/.spam.learn" ] ; then
+ break
+ fi
+done
if [ -d "$MAILDIR/.spam.learn" ] ; then
cd "$MAILDIR/.spam.learn"