/usr/lib/news/control/ihave is in inn 1:1.7.2q-41build1.
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 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #! /bin/bash
##  $Revision: 1.9 $
##  Ihave control-message handler
PROG=ihave
##  Some shells don't pass in $* unless we explicitly pass it in here.
##  =()<. @<_PATH_PARSECTL>@ "$@">()=
. /usr/lib/news/bin/parsecontrol "$@"
case ${ACTION} in
mail)
    sed -e 's/^~/~~/' <${ARTICLE} \
	| ${MAILCMD} -s "ihave by ${FROM}" ${NEWSMASTER}
    ;;
doit)
    ##  Scan the message body for articles we don't have.
    ${SED} -e '1,/^$/d' <${ARTICLE} | grephistory -i >${TEMP}
    if [ -s ${TEMP} ] ; then
	export PATHHOST TEMP
	(
	    echo Newsgroups: to.${PATHHOST}
	    echo Subject: cmsg sendme `innconfval pathhost`
	    echo Control: sendme `innconfval pathhost`
	    echo ''
	    cat ${TEMP}
	) | ${INEWS} -h
    fi
    rm -f ${TEMP}
    ;;
esac
exit
 |