aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/bogofilter/files/bogohelper.sh
blob: 5be7aeae7e6b7e1e493d037147eab7239bd07e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

if [ -d "$2" ] ; then
  echo -e "\ncd $2"
  cd "$2"

  for i in `find . -name '*.' -maxdepth 1` ; do
    echo "bogofilter -d /opt/var/spool/bogofilter -t -v $1 < $i"
    bogofilter -d /opt/var/spool/bogofilter -t -v "$1" < "$i"
  done
fi