![]() |
-----BEGIN PGP SIGNED MESSAGE----- On Fri, 17 Apr 1998, Shuvam Misra wrote: > Okay, you're right. I missed it out because it goes into inetd.conf in > all my installations, so I don't run it by hand. And faxsetup seems to > do the right thing about adding a line in /etc/inetd.conf and SIGHUPping > inetd, so I never had to take care of that. That technique is also *NOT* recommended. It works, but it can really bog down your fax server if you carry a lot of traffic. > | The hylafax script includes the faxq and hfaxd startups, with all the > | flags set correctly. I recommend installing it from the source tree > | and using it in the /etc/rc.d/init.d setup, which starts and stops > | fax services correctly for various run levels. > > Does the hylafax script come with the Linux binary distribution that is > available on ftp.sgi.com? I don't seem to find it. I hadn't taken it apart and looked: here is a copy set up for my Linux installation, which you will need to reset the "SPOOLDIR" for. Nico Garcia Senior Engineer, CIRL Mass. Eye and Ear Infirmary raoul@cirl.meei.harvard.edu -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNTdolz/+ItycgIJRAQEIvQP/Ruar9NZFO62Ga2KbOB+PtnvmQtjNZFHf LTlF51bBCGUXBVV6PZ6tEiiGawyoRRptjIgr5q9x/u03ehKpyeUE7aM2JnONbspC Gj1e5HQWQm0tWw3MQgjsytoMCj+FRMtUfBgXXv+osAOi2bGxG95PdNwKJEB4sQ7Q kEVHpu3gxmc= =ImBX -----END PGP SIGNATURE----- #! /bin/sh # $Id: hylafax.in,v 1.33 1996/06/26 14:58:03 sam Rel $ # # Warning, this file was automatically created by the HylaFAX configure script # # HylaFAX Facsimile Software # # Copyright (c) 1990-1996 Sam Leffler # Copyright (c) 1991-1996 Silicon Graphics, Inc. # HylaFAX is a trademark of Silicon Graphics # # Permission to use, copy, modify, distribute, and sell this software and # its documentation for any purpose is hereby granted without fee, provided # that (i) the above copyright notices and this permission notice appear in # all copies of the software and related documentation, and (ii) the names of # Sam Leffler and Silicon Graphics may not be used in any advertising or # publicity relating to the software without the specific, prior written # permission of Sam Leffler and Silicon Graphics. # # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. # # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE # OF THIS SOFTWARE. # # VERSION: v4.0pl2 # DATE: Thu Feb 19 02:28:47 EST 1998 # TARGET: i586-unknown-linux # # # fax server control # # NB: This script assumes faxgetty processes are managed by init # SPOOL=/var/spool/fax test -f $SPOOL/etc/setup.cache || { cat<<EOF FATAL ERROR: $SPOOL/etc/setup.cache is missing! The file $SPOOL/etc/setup.cache is not present. This probably means the machine has not been setup using the faxsetup(1M) command. Read the documentation on setting up HylaFAX before you startup a server system. EOF exit 1 } . $SPOOL/etc/setup.cache IS_ON=/etc/chkconfig # NB: chkconfig is IRIX-specific FAXQ=$SBIN/faxq HFAXD=$LIBEXEC/hfaxd FAXQUIT=$SBIN/faxquit KILLALL=/sbin/killall FAXPORT=hylafax # designated port for new protocol SNPPPORT=444 # official port for SNPP if test ! -x $IS_ON ; then IS_ON=true fi if $IS_ON verbose ; then ECHO=echo else # For a quiet startup and shutdown ECHO=: fi # # killall -SIGNAL process-name # # Emulate the necessary functionality if the # killall program doesn't do the expected... # if ($KILLALL -l >/dev/null) 2>/dev/null; then killall() { $KILLALL $1 $2 } else killall() { # NB: ps ax should give an error on System V, so we try it first! pid="`ps ax 2>/dev/null | $AWK \"\ /[\/ (]$2[ )]/ {print \\$1;} /[\/ ]$2\$/ {print \\$1;}\"`" test "$pid" || pid="`ps -e 2>/dev/null | $AWK \"/ $2[ ]*\$/ {print \\$1;}\"`" test "$pid" && kill $1 $pid; return } fi case $1 in 'start') if $IS_ON fax && test -x $FAXQ; then killall -15 faxq killall -15 hfaxd $ECHO "HylaFAX:" $FAXQ; $ECHO " faxq" $HFAXD -i $FAXPORT -o 4557 -s $SNPPPORT $ECHO " hfaxd (w/ compatibility & SNPP)" $ECHO "." fi ;; 'stop') $ECHO "Stopping HylaFAX Servers." $FAXQUIT >/dev/null 2>&1 killall -15 hfaxd ;; *) echo "usage: /etc/init.d/hylafax {start|stop}" ;; esac From: David Woolley <david@djwhome.demon.co.uk> Subject: Re: flexfax: Re: RE : ZyXEL is seriously studying ZyXEL-Hylafax performance issues To: shuvam@spacenetindia.com Date: Fri, 17 Apr 1998 09:03:11 +0100 (BST) Cc: raoul@cirl.meei.harvard.edu, rwchu@zyxel.com.tw, flexfax@sgi.com X-Mailer: ELM [version 2.4 PL25] Sender: owner-flexfax@celestial.com > | Unfortunately, you left out hfaxd. > > Okay, you're right. I missed it out because it goes into inetd.conf in > all my installations, so I don't run it by hand. And faxsetup seems to That's really only intended for home user or incidental desk top use, not for a fax server. > Does the hylafax script come with the Linux binary distribution that is > available on ftp.sgi.com? I don't seem to find it. I would seriously suggest installing from source if your are running a major service. From what's been said on this list, some of the Red Hat style packagings of Hylafax have cut corners and tried to make the install process look simpler than it needs to look to be done properly.