#! /bin/bash
##########################################################################
# This script is called by ulistd when complete message list is received #
# $1 contains the callsign of the BBS (without SSID) #
##########################################################################
#----------------------------
# Automatic message download
#----------------------------
axgetmail $1 >>/var/ax25/axgetmail.out 2>>/var/ax25/axgetmail.err
#-----------------------------------------------------
# Call the 'msgcleanup' script to delete old messages
#-----------------------------------------------------
msgcleanup $1 >>/var/ax25/msgcleanup.err 2>>/var/ax25/msgcleanup.err
|