summaryrefslogtreecommitdiff
path: root/learn-ham
diff options
context:
space:
mode:
Diffstat (limited to 'learn-ham')
-rwxr-xr-xlearn-ham11
1 files changed, 10 insertions, 1 deletions
diff --git a/learn-ham b/learn-ham
index 3c2290f..6a345a8 100755
--- a/learn-ham
+++ b/learn-ham
@@ -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/.xham.learn" ] ; then
cd "$MAILDIR/.xham.learn"