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