#!/bin/sh # 2006-12-02 # expire old bayes tokens, if database grows beyond threshold # # 2006-12-03 # + supress output when no error occured OUTPUT=$(su - spamassassin sa-learn --force-expire) if [ $? != 0 ]; then echo "Error during expire of bayes database" echo "${OUTPUT}" fi