diff -Nacr inn-1.7.1/README inn-1.7.2/README *** inn-1.7.1/README Fri Dec 5 22:42:12 1997 --- inn-1.7.2/README Mon Dec 8 21:39:09 1997 *************** *** 1,11 **** ! Welcome to INN 1.7.1 ! This is the public release of version 1.7.1 of InterNet News. This work is sponsored by the Internet Software Consortium. ! This release is a bugfix to 1.7. This has no new features, except a ! perl script 'innmail' that can be used as a replacement for Berkeley ! Mail. See below for more details on the differences with 1.7. It is recommended that if you are running a version of INN prior to 1.7, that you upgrade as there are serious security holes in --- 1,9 ---- ! Welcome to INN 1.7.2 ! This is the public release of version 1.7.2 of InterNet News. This work is sponsored by the Internet Software Consortium. ! This release is a bugfix to 1.7.2. This has no new features. It is recommended that if you are running a version of INN prior to 1.7, that you upgrade as there are serious security holes in *************** *** 50,56 **** The INN Development Team (inn@isc.org) --------------------------------------------------------------------------- ! A couple notes: + A normal 'make update' doesn't install various config files on top of your existing ones (for good reason). However I highly recommend you use the --- 48,57 ---- The INN Development Team (inn@isc.org) --------------------------------------------------------------------------- ! Some notes: ! ! + The innmail script in the sample directory (a possible replacement for ! UCB Mail) requires perl version 5. + A normal 'make update' doesn't install various config files on top of your existing ones (for good reason). However I highly recommend you use the *************** *** 65,70 **** --- 66,79 ---- please send me yours and I'll include it in there. ------------------------- + + Changes since 1.7.1 + + - The fixinterpreter.pl script checks perl version required of the + target. + - The innmail script handles '%s' in the _PATH_SENDMAIL values + - The innshellvars* scripts have sendmail variables in them. + Changes since 1.7 - Logs for verification of pgp signed control messages were going diff -Nacr inn-1.7.1/config/Makefile inn-1.7.2/config/Makefile *** inn-1.7.1/config/Makefile Fri Dec 5 22:42:12 1997 --- inn-1.7.2/config/Makefile Mon Dec 8 20:46:31 1997 *************** *** 10,16 **** LIST = `grep -v '^;' <$(FILE)` BACKUP = backup.tar ! INTERPLIST = inncheck innlog.pl pgpverify scanspool ## Pick your method of source control: RCS, SCCS, or NONE SRCCTL = NONE --- 10,16 ---- LIST = `grep -v '^;' <$(FILE)` BACKUP = backup.tar ! INTERPLIST = inncheck innlog.pl pgpverify scanspool innmail ## Pick your method of source control: RCS, SCCS, or NONE SRCCTL = NONE diff -Nacr inn-1.7.1/config/config.dist inn-1.7.2/config/config.dist *** inn-1.7.1/config/config.dist Fri Dec 5 22:42:12 1997 --- inn-1.7.2/config/config.dist Mon Dec 8 22:36:32 1997 *************** *** 542,551 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= ! _PATH_SENDMAIL /usr/sbin/sendmail -t ## Where the shell is. #### =()<_PATH_SH @<_PATH_SH>@>()= _PATH_SH /bin/sh --- 542,550 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= ! _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. #### =()<_PATH_SH @<_PATH_SH>@>()= _PATH_SH /bin/sh *************** *** 560,566 **** _PATH_EGREP /usr/bin/egrep ## Where perl lives #### =()<_PATH_PERL @<_PATH_PERL>@>()= ! _PATH_PERL /usr/bin/perl ## Where awk lives #### =()<_PATH_AWK @<_PATH_AWK>@>()= _PATH_AWK /usr/bin/awk --- 559,565 ---- _PATH_EGREP /usr/bin/egrep ## Where perl lives #### =()<_PATH_PERL @<_PATH_PERL>@>()= ! _PATH_PERL /usr/bin/perl5 ## Where awk lives #### =()<_PATH_AWK @<_PATH_AWK>@>()= _PATH_AWK /usr/bin/awk diff -Nacr inn-1.7.1/config/fixinterps.pl inn-1.7.2/config/fixinterps.pl *** inn-1.7.1/config/fixinterps.pl Fri Dec 5 22:42:12 1997 --- inn-1.7.2/config/fixinterps.pl Mon Dec 8 21:48:04 1997 *************** *** 6,17 **** # File: fixinterps.pl # RCSId: $Id: fixinterps.pl,v 1.2 1996/12/16 20:53:50 brister Exp $ # Description: Fix interpreter scripts based on config.data values (as ! # substituted into innshellvars.pl). # # The normal subst must have been run on innshellvars.pl # beforehand. This doesn't get subst'd as it's done # before installation of innshellvars.pl (and hence must ! # use the on in the samples directory) # require 'getopts.pl' ; --- 6,18 ---- # File: fixinterps.pl # RCSId: $Id: fixinterps.pl,v 1.2 1996/12/16 20:53:50 brister Exp $ # Description: Fix interpreter scripts based on config.data values (as ! # substituted into innshellvars.pl). This is written for ! # perl 4.0 on purpose. # # The normal subst must have been run on innshellvars.pl # beforehand. This doesn't get subst'd as it's done # before installation of innshellvars.pl (and hence must ! # use the one in the samples directory) # require 'getopts.pl' ; *************** *** 52,57 **** --- 53,60 ---- %interps = ( 'perl', $inn'perl, #' ) ; + $perlver = &perlVersion($interps{'perl'}); + chdir ($dir) ; foreach ( @ARGV ) { *************** *** 63,68 **** --- 66,72 ---- # fix up the FILE script. sub fixInterp { local ($file) = @_ ; + local ($newval,$isperl,$line,$warned,$_); if ( ! -f $file ) { warn "$file: no such file\n" ; *************** *** 74,95 **** chop ($line = ) ; ($interp = $line) =~ s/^#!\s*(\S+).*/$1/ ; ! ($base = $interp) =~ s!^.*/!! ; ! if ( ! defined ($interps{$base}) ) { ! close (INFILE) ; warn "$file: no substitution defined for $base\n" unless $quiet ; return ; ! } elsif ( $interps{$base} eq $interp ) { close (INFILE) ; warn "$file: no change\n" if $verbose ; return ; } - - $line =~ s/#!(\s*\S+)(.*)/#!$interps{$base}$2/ ; ! ($dev,$ino,$mode,$a,$uid,$gid,$a,$a,$atime,$mtime) = ! stat INFILE ; $mode = 0755 unless $dev ; $mtime = time unless $dev ; --- 78,112 ---- chop ($line = ) ; ($interp = $line) =~ s/^#!\s*(\S+).*/$1/ ; ! ($base = $interp) =~ s!^.*/([^-_.0-9]*).*!$1! ; ! $newval = $interps{$base}; ! $isperl = ($base eq "perl"); ! if ( ! $newval ) { warn "$file: no substitution defined for $base\n" unless $quiet ; return ; ! } elsif ( $newval eq $interp ) { ! # Read the script and check that it doesn't require perl 5.x ! # and that we're substituting in perl4 ! while () { ! if ($isperl && $perlver < 5.0 && /^\s*require\s+(5\.\S+)/) { ! $warned++; ! warn ("\nWARNING. The script $file requires perl version ". ! "$1 (or greater),\nbut ". ! "your perl\n\n\t$newval\n\nlooks to be version " . ! "$perlver." . ! " If you're going to use this script you must fix\n" . ! "this in config.data, or after installation.\n\n") ; ! } ! } close (INFILE) ; warn "$file: no change\n" if $verbose ; return ; } ! $line =~ s/#!(\s*\S+)(.*)/#!$newval$2/ ; ! ! ($dev,$ino,$mode,$uid,$gid,$atime,$mtime) = (stat INFILE)[0,1,2,4,5,8,9] ; $mode = 0755 unless $dev ; $mtime = time unless $dev ; *************** *** 103,108 **** --- 120,133 ---- print OUTFILE "$line\n" ; while ( ) { + if ($isperl && $perlver < 5.0 && /^\s*require\s+(5\.\S+)/) { + warn ("\nWARNING. The script $file requires perl version ". + "$1 (or greater),\nbut ". + "your perl\n\n\t$newval\n\nlooks to be version " . + "$perlver." . + " If you're going to use this script you must fix\n" . + "this in config.data, or after installation.\n\n") ; + } print OUTFILE $_ ; } close (OUTFILE) ; *************** *** 118,120 **** --- 143,167 ---- } + sub perlVersion { + local ($perl) = @_ ; + local ($line); + local ($_); + local ($rval); + + return 0 if (! -x $perl) ; + + open (PERL,"$perl -v|") || die "Can't check version of perl ($perl)\n"; + while () { + if (/^this\s+is\s+perl,\s+version\s+(\S+)/i) { + $rval = $1; + } + } + close (PERL); + + if ($rval !~ /^\d+\.\d+(_\d+|)$/) { + warn "perl version from $perl looks suspicious: $rval\n"; + } + + return $rval; + } diff -Nacr inn-1.7.1/include/patchlevel.h inn-1.7.2/include/patchlevel.h *** inn-1.7.1/include/patchlevel.h Fri Dec 5 22:42:12 1997 --- inn-1.7.2/include/patchlevel.h Mon Dec 8 21:54:43 1997 *************** *** 13,20 **** ** Try to avoid changing these. */ #define RELEASE "1" ! #define PATCHLEVEL "7.1" ! #define DATE "05-Dec-1997" /* --- 13,20 ---- ** Try to avoid changing these. */ #define RELEASE "1" ! #define PATCHLEVEL "7.2" ! #define DATE "08-Dec-1997" /* diff -Nacr inn-1.7.1/sample-configs/config.data-DU4.0 inn-1.7.2/sample-configs/config.data-DU4.0 *** inn-1.7.1/sample-configs/config.data-DU4.0 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-DU4.0 Mon Dec 8 20:35:51 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-FreeBSD-2.0 inn-1.7.2/sample-configs/config.data-FreeBSD-2.0 *** inn-1.7.1/sample-configs/config.data-FreeBSD-2.0 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-FreeBSD-2.0 Mon Dec 8 20:35:52 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-OSF1.3a inn-1.7.2/sample-configs/config.data-OSF1.3a *** inn-1.7.1/sample-configs/config.data-OSF1.3a Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-OSF1.3a Mon Dec 8 20:35:53 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-OSF3.0 inn-1.7.2/sample-configs/config.data-OSF3.0 *** inn-1.7.1/sample-configs/config.data-OSF3.0 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-OSF3.0 Mon Dec 8 20:35:54 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-aix-4.1.4 inn-1.7.2/sample-configs/config.data-aix-4.1.4 *** inn-1.7.1/sample-configs/config.data-aix-4.1.4 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-aix-4.1.4 Mon Dec 8 20:35:55 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-aux3.1 inn-1.7.2/sample-configs/config.data-aux3.1 *** inn-1.7.1/sample-configs/config.data-aux3.1 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-aux3.1 Mon Dec 8 20:35:56 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-dynixptx2.1 inn-1.7.2/sample-configs/config.data-dynixptx2.1 *** inn-1.7.1/sample-configs/config.data-dynixptx2.1 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-dynixptx2.1 Mon Dec 8 20:35:56 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-hpux-9.05 inn-1.7.2/sample-configs/config.data-hpux-9.05 *** inn-1.7.1/sample-configs/config.data-hpux-9.05 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-hpux-9.05 Mon Dec 8 20:35:57 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-hpux-9.07 inn-1.7.2/sample-configs/config.data-hpux-9.07 *** inn-1.7.1/sample-configs/config.data-hpux-9.07 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-hpux-9.07 Mon Dec 8 20:35:58 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-irix-5.2 inn-1.7.2/sample-configs/config.data-irix-5.2 *** inn-1.7.1/sample-configs/config.data-irix-5.2 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-irix-5.2 Mon Dec 8 20:35:59 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-irix-5.3 inn-1.7.2/sample-configs/config.data-irix-5.3 *** inn-1.7.1/sample-configs/config.data-irix-5.3 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-irix-5.3 Mon Dec 8 20:36:00 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/lib/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/lib/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-irix-6.2 inn-1.7.2/sample-configs/config.data-irix-6.2 *** inn-1.7.1/sample-configs/config.data-irix-6.2 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-irix-6.2 Mon Dec 8 20:36:01 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-linux-2.0.18 inn-1.7.2/sample-configs/config.data-linux-2.0.18 *** inn-1.7.1/sample-configs/config.data-linux-2.0.18 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-linux-2.0.18 Mon Dec 8 20:36:02 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-netbsd-1.2 inn-1.7.2/sample-configs/config.data-netbsd-1.2 *** inn-1.7.1/sample-configs/config.data-netbsd-1.2 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-netbsd-1.2 Mon Dec 8 20:36:03 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-newsos-4.2.1 inn-1.7.2/sample-configs/config.data-newsos-4.2.1 *** inn-1.7.1/sample-configs/config.data-newsos-4.2.1 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-newsos-4.2.1 Mon Dec 8 20:36:03 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-next3.2 inn-1.7.2/sample-configs/config.data-next3.2 *** inn-1.7.1/sample-configs/config.data-next3.2 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-next3.2 Mon Dec 8 20:36:04 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-next4.1 inn-1.7.2/sample-configs/config.data-next4.1 *** inn-1.7.1/sample-configs/config.data-next4.1 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-next4.1 Mon Dec 8 20:36:05 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-sco-3.2.2 inn-1.7.2/sample-configs/config.data-sco-3.2.2 *** inn-1.7.1/sample-configs/config.data-sco-3.2.2 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-sco-3.2.2 Mon Dec 8 20:36:06 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-sco-5.0 inn-1.7.2/sample-configs/config.data-sco-5.0 *** inn-1.7.1/sample-configs/config.data-sco-5.0 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-sco-5.0 Mon Dec 8 20:36:07 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-solaris2.3-4 inn-1.7.2/sample-configs/config.data-solaris2.3-4 *** inn-1.7.1/sample-configs/config.data-solaris2.3-4 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-solaris2.3-4 Mon Dec 8 20:36:08 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/sbin/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-solaris2.5 inn-1.7.2/sample-configs/config.data-solaris2.5 *** inn-1.7.1/sample-configs/config.data-solaris2.5 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-solaris2.5 Mon Dec 8 20:36:09 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/lib/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/lib/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-sunos-4.1.x inn-1.7.2/sample-configs/config.data-sunos-4.1.x *** inn-1.7.1/sample-configs/config.data-sunos-4.1.x Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-sunos-4.1.x Mon Dec 8 20:36:10 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/lib/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/lib/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-ultrix4.3 inn-1.7.2/sample-configs/config.data-ultrix4.3 *** inn-1.7.1/sample-configs/config.data-ultrix4.3 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-ultrix4.3 Mon Dec 8 20:36:10 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/lib/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/lib/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-ux4800 inn-1.7.2/sample-configs/config.data-ux4800 *** inn-1.7.1/sample-configs/config.data-ux4800 Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-ux4800 Mon Dec 8 20:36:11 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/ucblib/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/ucblib/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/sample-configs/config.data-uxpds inn-1.7.2/sample-configs/config.data-uxpds *** inn-1.7.1/sample-configs/config.data-uxpds Fri Dec 5 22:42:12 1997 --- inn-1.7.2/sample-configs/config.data-uxpds Mon Dec 8 20:36:12 1997 *************** *** 532,539 **** ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. ! ## The -t is optional and says to read message for recipients #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/ucblib/sendmail -oi %s ## Where the shell is. --- 532,538 ---- ## Where news boot-up script should be installed. #### =()<_PATH_NEWSBOOT @<_PATH_NEWSBOOT>@>()= _PATH_NEWSBOOT /usr/news/bin/rc.news ! ## Where sendmail, or a look-alike, lives. Inlude %s for addresses. #### =()<_PATH_SENDMAIL @<_PATH_SENDMAIL>@>()= _PATH_SENDMAIL /usr/ucblib/sendmail -oi %s ## Where the shell is. diff -Nacr inn-1.7.1/samples/innmail inn-1.7.2/samples/innmail *** inn-1.7.1/samples/innmail Fri Dec 5 22:42:12 1997 --- inn-1.7.2/samples/innmail Mon Dec 8 23:46:58 1997 *************** *** 1,4 **** ! #!/usr/bin/perl5 # # Author: James Brister -- berkeley-unix -- # Start Date: Fri, 25 Apr 1997 14:11:23 +0200 --- 1,4 ---- ! #!/usr/bin/perl # # Author: James Brister -- berkeley-unix -- # Start Date: Fri, 25 Apr 1997 14:11:23 +0200 *************** *** 17,25 **** # =()@" ;>()= require "/var/news/etc/innshellvars.pl" ; $sm = $inn::sendmail ; ! die "Sendmail path is not absolute\n" unless ($sm =~ m!^/!) ; $usage = "usage: $0 -s subject addresses\n\n" . "Reads stdin for message body\n" ; --- 17,28 ---- # =()@" ;>()= require "/var/news/etc/innshellvars.pl" ; + die "$0: No \$inn::sendmail variable defined.\n" + if ! defined ($inn::sendmail); + $sm = $inn::sendmail ; ! die "$0: Sendmail path is not absolute\n" unless ($sm =~ m!^/!) ; $usage = "usage: $0 -s subject addresses\n\n" . "Reads stdin for message body\n" ; *************** *** 40,54 **** push (@addrs,$_) if ($_ ne "") ; } ! die "No addresses specified\n\n$usage" unless @addrs ; # startup sendmail without using the shell $pid = open (SENDMAIL,"|-") ; if ($pid == 0) { ! exec ($sm,@addrs) || die "exec of $sm failed: $!\n" ; } elsif ($pid < 0) { ! die "Fork failed: $!\n" ; } print SENDMAIL "To:\t", join (",\n\t",@addrs), "\n" ; --- 43,71 ---- push (@addrs,$_) if ($_ ne "") ; } ! die "$0: No addresses specified\n\n$usage" unless @addrs ; ! ! if ($sm =~ m!%s!) { ! $sm = sprintf $sm,join (' ',@addrs); ! } else { ! $sm .= " " . join(' ', @addrs); ! } ! ! @smarr = split(/\s+/,$sm); ! ! ($t = $inn::sendmail) =~ s!\s.*!!; ! die "$0: Sendmail variable definition is changed after subsitution\n" ! if ($t ne $smarr[0]); + die "$0: Sendmail excutable doesn't appear to exist: $smarr[0]\n" + if ! -x $smarr[0]; # startup sendmail without using the shell $pid = open (SENDMAIL,"|-") ; if ($pid == 0) { ! exec (@smarr) || die "$0: exec of $sm failed: $!\n" ; } elsif ($pid < 0) { ! die "$0: Fork failed: $!\n" ; } print SENDMAIL "To:\t", join (",\n\t",@addrs), "\n" ; diff -Nacr inn-1.7.1/samples/innshellvars inn-1.7.2/samples/innshellvars *** inn-1.7.1/samples/innshellvars Fri Dec 5 22:42:12 1997 --- inn-1.7.2/samples/innshellvars Mon Dec 8 17:31:18 1997 *************** *** 88,93 **** --- 88,95 ---- SED=/usr/bin/sed ## =()@">()= SORT="/usr/bin/sort" + ## =()@">()= + SENDMAIL="/usr/sbin/sendmail -oi %s" ## =()@>()= SERVERPID=/var/news/run/innd.pid ## =()@>()= diff -Nacr inn-1.7.1/samples/innshellvars.csh inn-1.7.2/samples/innshellvars.csh *** inn-1.7.1/samples/innshellvars.csh Fri Dec 5 22:42:12 1997 --- inn-1.7.2/samples/innshellvars.csh Mon Dec 8 17:29:55 1997 *************** *** 135,140 **** --- 135,143 ---- ## =()()= set inn_sort = "/usr/bin/sort" + ## =()()= + set inn_sendmail = "/usr/sbin/sendmail -oi %s" + ## =()@>()= set inn_serverpid = /var/news/run/innd.pid diff -Nacr inn-1.7.1/samples/innshellvars.pl inn-1.7.2/samples/innshellvars.pl *** inn-1.7.1/samples/innshellvars.pl Fri Dec 5 22:42:12 1997 --- inn-1.7.2/samples/innshellvars.pl Mon Dec 8 17:30:24 1997 *************** *** 134,139 **** --- 134,142 ---- ## =()<$sort = "@<_PATH_SORT>@" ;>()= $sort = "/usr/bin/sort" ; + ## =()<$sendmail = "@<_PATH_SENDMAIL>@" ;>()= + $sendmail = "/usr/sbin/sendmail -oi %s" ; + ## =()<$serverpid = "@<_PATH_SERVERPID>@" ;>()= $serverpid = "/var/news/run/innd.pid" ; diff -Nacr inn-1.7.1/samples/innshellvars.tcl inn-1.7.2/samples/innshellvars.tcl *** inn-1.7.1/samples/innshellvars.tcl Fri Dec 5 22:42:12 1997 --- inn-1.7.2/samples/innshellvars.tcl Mon Dec 8 17:30:58 1997 *************** *** 132,137 **** --- 132,140 ---- ## =()@">()= set inn_sort "/usr/bin/sort" + ## =()@">()= + set inn_sendmail "/usr/sbin/sendmail -oi %s" + ## =()@">()= set inn_serverpid "/var/news/run/innd.pid" diff -Nacr inn-1.7.1/samples/version inn-1.7.2/samples/version *** inn-1.7.1/samples/version Fri Dec 5 22:42:12 1997 --- inn-1.7.2/samples/version Mon Dec 8 21:54:34 1997 *************** *** 7,13 **** ## =()<. @<_PATH_PARSECTL>@ "$@">()= . /var/news/etc/parsecontrol "$@" ! VERSION="INN 1.7.1" WHERE=`innconfval pathhost` --- 7,13 ---- ## =()<. @<_PATH_PARSECTL>@ "$@">()= . /var/news/etc/parsecontrol "$@" ! VERSION="INN 1.7.2" WHERE=`innconfval pathhost`