/var/ax25/complete_agent is in ax25mail-utils 0.13-1+b1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #! /bin/bash
##########################################################################
# This script is called by ulistd when working in passive mode and some #
# messages are missing in the message list. Normally this script calls #
# the axgetlist tool to obtain the message list. #
# $1 contains the callsign of the BBS (without SSID) #
# $2 contains last known message number+1 #
##########################################################################
#-----------------------------
# Download a list of messages
#-----------------------------
axgetlist -b $1 -s $2 >>/var/ax25/axgetlist.out 2>>/var/ax25/axgetlist.err
|