File: default

package info (click to toggle)
inn 1%3A1.7.2q-52
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,256 kB
  • sloc: ansic: 37,984; perl: 11,945; sh: 3,968; makefile: 2,009; awk: 1,567; yacc: 686; tcl: 85; csh: 70
file content (22 lines) | stat: -rwxr-xr-x 564 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/sh
##  $Revision: 1.13 $
##  Default control-message handler

##  Set prog to null; that will leave the name of the message in $1
PROG=default
##  Some shells don't pass in $* unless we explicitly pass it in here.
##  =()<. @<_PATH_PARSECTL>@ "$@">()=
. /var/news/etc/parsecontrol "$@"

case ${ACTION} in
mail)
    sed -e 's/^~/~~/' <${ARTICLE} \
        | ${MAILCMD} -s "Unknown control message by ${FROM}" ${NEWSMASTER}
    ;;
doit|logit)
    ${WRITELOG} ${LOGFILE} "Unknown control message by ${FROM}" \
	    ${NEWSMASTER} <${ARTICLE}
    ;;
esac

exit