MAILTO=root

### postwhite cronjob
# 2017-07-29 Sven Uebelacker <sven@uebelacker.net>
# choose a method you want to update the postscreen access CIDR lists via postwhite

### mail all output
# start postwhite and mail all output
# @weekly root /usr/bin/postwhite 2>&1 | mail -s "[postwhite @ $(uname -n)] cronjob results" ${MAILTO}

# start scrape_yahoo and postwhite and mail all output
# @weekly root ( /usr/bin/scrape_yahoo && /usr/bin/postwhite ) 2>&1 | mail -s "[postwhite @ $(uname -n)] cronjob results" ${MAILTO}


### be silent
# start postwhite and be silent
# @weekly root /usr/bin/postwhite &> /dev/null

# start scrape_yahoo and postwhite and be silent
# @weekly root ( /usr/bin/scrape_yahoo && /usr/bin/postwhite ) &> /dev/null


