From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 01 Dec 1998 10:35:24 +1000
From: Chris Parry <c.parry@cqu.edu.au>
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: Problems gunziping HP-UX 10.20 Hylafax binary...
Sender: owner-flexfax@celestial.com

Hi ,

  I've been attempting to gunzip the binary distribution
of Hylafax for HP-UX 10.20 without much success.
I obtained the binary from Hylafax's home ftp site:
 ftp://ftp.hylafax.org/hylafax/binary/hpux10.20-hylafax-v4.0pl2-2.depot.gz

Here is a log of the problems I am having:

2420020 Dec  1 10:05 hpux10.20-hylafax-v4.0pl2-2.depot.gz

# gunzip hpux10.20-hylafax-v4.0pl2-2.depot.gz
 incomplete literal tree

gunzip: hpux10.20-hylafax-v4.0pl2-2.depot.gz: invalid compressed
data--format violated




Thanks for your help,


Cheers,
Chris Parry.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: Chris Parry <c.parry@cqu.edu.au>
cc: flexfax@sgi.com, rjc@trump.net.au (Robert Colquhoun)
From: darren@hylafax.org
Subject: Re: flexfax: Problems gunziping HP-UX 10.20 Hylafax binary... 
Date: Tue, 01 Dec 1998 04:19:09 +0000
Sender: owner-flexfax@celestial.com

In message <36632BBC.7786B70@cqu.edu.au>, Chris Parry writes:
>Hi ,
>
>  I've been attempting to gunzip the binary distribution
>of Hylafax for HP-UX 10.20 without much success.
>I obtained the binary from Hylafax's home ftp site:
> ftp://ftp.hylafax.org/hylafax/binary/hpux10.20-hylafax-v4.0pl2-2.depot.gz
>
>Here is a log of the problems I am having:
>
>2420020 Dec  1 10:05 hpux10.20-hylafax-v4.0pl2-2.depot.gz
>
># gunzip hpux10.20-hylafax-v4.0pl2-2.depot.gz
> incomplete literal tree
>
>gunzip: hpux10.20-hylafax-v4.0pl2-2.depot.gz: invalid compressed
>data--format violated

How strange!

That binary was updated a few hours ago. I just checked, and the new one gunzips perfectly. Please can you try the download again, and mail me privately to let me know how you make out?

Cheers!

-Darren

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 1 Dec 1998 08:10:48 -0500 (EST)
From: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
Cc: Hylafax Mailing List <flexfax@sgi.com>
Subject: Re: flexfax: Problems gunziping HP-UX 10.20 Hylafax binary... 
Sender: owner-flexfax@celestial.com

-----BEGIN PGP SIGNED MESSAGE-----

On Tue, 1 Dec 1998 darren@hylafax.org wrote:

> In message <36632BBC.7786B70@cqu.edu.au>, Chris Parry writes:
> >Hi ,
> >
> >  I've been attempting to gunzip the binary distribution
> >of Hylafax for HP-UX 10.20 without much success.
> >I obtained the binary from Hylafax's home ftp site:
> > ftp://ftp.hylafax.org/hylafax/binary/hpux10.20-hylafax-v4.0pl2-2.depot.gz
> >
> >Here is a log of the problems I am having:
> >
> >2420020 Dec  1 10:05 hpux10.20-hylafax-v4.0pl2-2.depot.gz
> >
> ># gunzip hpux10.20-hylafax-v4.0pl2-2.depot.gz
> > incomplete literal tree
> >
> >gunzip: hpux10.20-hylafax-v4.0pl2-2.depot.gz: invalid compressed
> >data--format violated
> 
> How strange!
> 
> That binary was updated a few hours ago. I just checked, and the new one gunzips perfectly. Please can you try the download again, and mail me privately to let me know how you make out?

This is partly why sums and MD5sums are useful. Some FTP tools are careless
about using binary or ascii mode, which can screw you up and not even show
it until later....

Darren, if I give you a tarball of the SunOS INSTALL notes and the
Linux INSTALL notes I've written by next Monday, think we can roll
them in? I finally beat the diald problems to death and got it to
work correctly (I'm using it right now!).

			Nico Kadel-Garcia
			Senior Engineer, CIRL 
			Mass. Eye and Ear Infirmary
			raoul@cirl.meei.harvard.edu

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBNmPqzD/+ItycgIJRAQHQkAP9GnSW7iIGkI7Xc2o3DhMkeToCwEcA0Br1
0pQZYvz8yP34XUvtuYbeitXqPEBcSj39HOfikEb+ZHy/j2CNaIsHeUC6dk+mF0KK
HdtLGBmUg6LEBQy4H9YAC/05Y5Xuj1PHCHdDEgygwBD0ZvjM/x0P0q29ew/2KhcZ
HHVeS8gvb4Q=
=sVqt
-----END PGP SIGNATURE-----

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 1 Dec 1998 09:23:34 -0500
From: "Jonathan I. Kamens" <jik@kamens.brookline.ma.us>
To: flexfax@sgi.com
Subject: flexfax: HylaFAX 4.0pl2: most platforms don't have REG_STARTEND
Sender: owner-flexfax@celestial.com

The file util/RegEx.c++ in HylaFAX 4.0pl2 uses the constant
REG_STARTEND in a call to regexec.  Most platforms I checked don't
have this constant -- I checked Solaris, AIX, HP-UX, Linux, and
FreeBSD, and FreeBSD was the only one which had it.

I implemented the following fix.  I haven't fully tested it, but it's
pretty straightforward and is pretty much verifiable by reading the
code.  I used a static buffer to avoid lots of allocations and
deallocations when doing many regular expression matches.

--- RegEx.c++	1998/11/30 20:48:17	1.1
+++ RegEx.c++	1998/11/30 21:02:57	1.2
@@ -1,4 +1,4 @@
-/*	$Id: RegEx.c++,v 1.1 1998/11/30 20:48:17 jik Exp $ */
+/*	$Id: RegEx.c++,v 1.2 1998/11/30 21:02:57 jik Exp $ */
 /*
  * Copyright (c) 1994-1996 Sam Leffler
  * Copyright (c) 1994-1996 Silicon Graphics, Inc.
@@ -74,10 +74,32 @@
 	if (off >= length || (off != 0 && _pattern[0] == '^'))
 	    execResult = REG_NOMATCH;
 	else {
+#ifdef REG_STARTEND
 	    matches[0].rm_so = off;
 	    matches[0].rm_eo = length;
 	    execResult = regexec(&c_pattern, text, c_pattern.re_nsub+1,
 			    matches, REG_STARTEND);
+#else
+	    static char *strbuf = 0;
+	    static int bufsize = 0;
+	    int size = length - off + 1;
+	    
+	    /* XXX Should check malloc and realloc return values, but
+	       none of the other HylaFax code does, so why should I be
+	       any different? */
+	    if (! strbuf) {
+	      bufsize = size ? size : 1;
+	      strbuf = (char *) malloc(bufsize);
+	    }
+	    else if (bufsize < size) {
+	      bufsize = size;
+	      strbuf = (char *) realloc(strbuf, bufsize);
+	    }
+	    strncpy(strbuf, text + off, length - off);
+	    strbuf[length - off] = '\0';
+	    execResult = regexec(&c_pattern, text, c_pattern.re_nsub+1,
+				 matches, 0);
+#endif
 	}
     }
     return (execResult == 0);

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 1 Dec 1998 12:17:51 -0500
From: "Jonathan I. Kamens" <jik@kamens.brookline.ma.us>
To: jik@kamens.brookline.ma.us
CC: flexfax@sgi.com
Subject: flexfax: Re: HylaFAX 4.0pl2: most platforms don't have REG_STARTEND
Sender: owner-flexfax@celestial.com

I did a bit more debugging, and the patch I sent to fix this problem
doesn't really address the root problem.

I discovered that HylaFAX includes its own regexec implementation
which supports REG_STARTEND.  I was running into trouble because I had
TIFFINC set to /usr/include, since that's where my TIFF include files
are located.  As a result, object files were being built with
"-I/usr/include" before "-I${DEPTH}/regex", so the compiler was seeing
/usr/include/regex.h before the regex.h included with HylaFAX.  In
addition to causing the REG_STARTEND problem I previously reported, it
also prevented the compiled programs from working, because the
structures defined in /usr/include/regex.h didn't match the structured
expected by the regex routines included with HylaFAX.

The rather gross workaround I came up with was to put back the
original setting of TIFFINC to /usr/local/include.  That directory is
empty on my machine, which makes "-I/usr/local/include" a no-op, so
the correct regex.h will now be found.

A better fix would be allow the user to specify at configuration time
that certain header files are in the standard compiler include path,
i.e., no "-I" flag is needed for any of them.  There's no way to do
this now, because setting TIFFINC to an empty string causes an empty
"-I" flag to be included on the compiler command line.

  jik

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 1 Dec 1998 20:42:48 -0800 (PST)
From: Tim Rice <tim@trr.metro.NET>
To: "Jonathan I. Kamens" <jik@kamens.brookline.ma.us>
cc: flexfax@sgi.com
Subject: Re: flexfax: HylaFAX 4.0pl2: most platforms don't have REG_STARTEND
Sender: owner-flexfax@celestial.com

On Tue, 1 Dec 1998, Jonathan I. Kamens wrote:

> The file util/RegEx.c++ in HylaFAX 4.0pl2 uses the constant
> REG_STARTEND in a call to regexec.  Most platforms I checked don't
> have this constant -- I checked Solaris, AIX, HP-UX, Linux, and
> FreeBSD, and FreeBSD was the only one which had it.

UnixWare doesn't have it ethier. But I don't seem to need it because it's
defined in hylafax-v4.0pl2/regex/regex.h

What problem are you trying to fix with this?

> 
> I implemented the following fix.  I haven't fully tested it, but it's
[snip]
> 

-- 
Tim Rice			Multitalents	(707) 887-1469 (voice)
tim@trr.metro.net

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Trottier, Dan" <DTrottier@philipinc.com>
To: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: flexfax: Build failing under GCC 2.8.1
Date: Tue, 1 Dec 1998 11:44:25 -0500 
Sender: owner-flexfax@celestial.com

Hi,

I have the latest hylafax software (version 4.0pl2) and I'm trying to
compile it on an AIX 4.3.2
system with gcc-2.8.1.

Here is the first error I get which I suspect relates to the other errors.
I'm hoping someone has
already run into this before. Hopefully it is just a flag setting to the gcc
compiler to be less strick
in checking or some such thing.

/usr/local/bin/gcc      -I.././zlib                       -D__ANSI_CPP__ -I.
-I.. -I.././util -I.././util -I/usr/local/include -I.././regex -g -O -x c++
-c SendFaxJob.c++
SendFaxJob.c++: In method `unsigned char SendFaxJob::createJob(class
SendFaxClient &, classfxStr &)':
SendFaxJob.c++:499: no matching function for call to
`SendFaxClient::sendZData (int &, unsigned char (FaxClient::)(fxStr &, fxStr
&), fxStr &, fxStr &)'
FaxClient.h:273: candidates are: FaxClient::sendZData(int, unsigned char
(FaxClient::*)(fxStr &, fxStr &), fxStr &, fxStr &)
make[3]: *** [SendFaxJob.o] Error 1
make[3]: Leaving directory `/local/src/hylafax-v4.0pl2/util'
make[2]: *** [default] Error 2
make[2]: Leaving directory `/local/src/hylafax-v4.0pl2/util'


I'm not on this list so if someone would kindly Cc: me at
dtrottier@philipinc.com I would 
appreaciate it.

Thanks,

dan

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: "Trottier, Dan" <DTrottier@philipinc.com>
cc: "'flexfax@sgi.com'" <flexfax@sgi.com>
From: darren@hylafax.org
Subject: Re: flexfax: Build failing under GCC 2.8.1 
Date: Tue, 01 Dec 1998 18:45:52 +0000
Sender: owner-flexfax@celestial.com

In message <81F139B80EFBD1119DB900805F57C35B03A787@na01ns3001.philip-env.com>, 
"Trottier, Dan" writes:
>Hi,
>
>I have the latest hylafax software (version 4.0pl2) and I'm trying to
>compile it on an AIX 4.3.2
>system with gcc-2.8.1.

See:

http://www.hylafax.org/patches/gcc-2.8.x.patch

-Darren

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 02 Dec 1998 11:49:56 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: Re: HylaFAX 4.0pl2: most platforms don't have
  REG_STARTEND
Cc: "Jonathan I. Kamens" <jik@kamens.brookline.ma.us>
Sender: owner-flexfax@celestial.com

At 12:17 01/12/98 -0500, Jonathan I. Kamens wrote:
>
>A better fix would be allow the user to specify at configuration time
>that certain header files are in the standard compiler include path,
>i.e., no "-I" flag is needed for any of them.  There's no way to do
>this now, because setting TIFFINC to an empty string causes an empty
>"-I" flag to be included on the compiler command line.
>

Not sure if this helps, but there is a patch specifically for RedHat
Linux which seems relevant to your problem :-

defs-regex.patch            Rearrange order of libraries and includes
                            in defs.in.
                            Required for 5.x Linux.
                            Submitted by Nico Gracia 17 Feb 98

Please see http://www.hylafax.org/patches/index.html

Cheers,
Phil Watkinson,
Boston, UK.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Posted-Date: Tue, 1 Dec 1998 13:03:31 -0700 (MST)
Date: Tue, 1 Dec 1998 13:21:35 -0700 (MST)
From: John Williams <williams@morinda.com>
To: darren@hylafax.org
cc: flexfax@sgi.com
Subject: Re: flexfax: Enhancements to www.hylafax.org
Sender: owner-flexfax@celestial.com

On Tue, 1 Dec 1998 darren@hylafax.org wrote:
> 
> Still no progress on mailing list archiving/searching, since nobody's yet sent 
> me a SCSI disk for this to live on. I live in hope and anticipation ;-)

Why not just use the services of the fine folks at www.egroups.com?
(formerly findmail.com)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 01 Dec 1998 15:54:10 +0100
From: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Organization: Transcom
X-Accept-Language: English, en, German, de
To: HylaFax Mailing liste <flexfax@sgi.com>
Subject: flexfax: RTN Problem
Sender: owner-flexfax@celestial.com

Hi,

some time ago there was here a thread about a problem with 
RTN and that HylaFAX does not lower the transmission speed
after receiving a RTN. As i remember, someone has announce 
a patch against it. I had a look for this patch at hylafax.org
and http://www.elgro.demon.co.uk/patchlist.html , but couldn't
find this patch. 

Can anybody point me to the right direction ?

Thanks for the help
Uli 
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

From Ulrich.Eckhardt@transcom.de  Thu Feb 11 13:16:08 1999
Sender: Ulrich.Eckhardt@transcom.de
Date: Wed, 02 Dec 1998 14:59:30 +0100
From: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Organization: Transcom
X-Accept-Language: English, en, German, de
To: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: RTN Problem

Phil Watkinson wrote:
> 

> >
> 
> Further info from David enabled Robert to come up with the tagline
> patch, which *may* reduce the incidence of RTN responses on the first
> page, but doesn't alter transmission rates, etc.

Hi,

Robert has send the link i have searched for, to the HylaFAX list. I
have
applied this patch (and the tagline patch). So i will see tomorrow , 
if the error statistics are getting better. 

> Hope this is of some help,
> Phil Watkinson,
> Boston, UK.          - Bet it's a bit nippy in Dieburg today?

No, it's cold but the sun shines here :-) (hope i have translated
and understand the word nippy correct)

Thanks
Uli
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: Ulrich Mueller <ulm@kph.uni-mainz.de>
To: Robert Colquhoun <rjc@trump.net.au>
Cc: <flexfax@sgi.com>, Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Subject: Re: flexfax: RTN Problem
Date: Wed, 2 Dec 1998 16:15:09 +0100
Sender: owner-flexfax@celestial.com

Robert Colquhoun writes:

> Hi Ulrich,

[ Now there are two people who asked almost the same question at the
  same time, and by coincidence we have the same first name, too.
  Don't be confused. ;-) ]

> This is my list for handling negative-retrains from selected
> receiving locations(ie you are getting them from some locations,
> *not* everywhere you send):

That is exactly the behaviour I observe.

> 1) Apply the tagline patch as currently there is a coding error in
> the facsimiles sent by hylafax giving a legitimate reason for the
> receiving fax to ask for the page again.

Done. No success.

> 2) Apply the speed reduce patch, just in case it is line noise
> causing the bad transmission

I did not apply the patch, but speed was reduced to 2400 bps without
success. Line noise is unlikely; modem and receiving fax machine are
sitting on the same desk. ;-)

> 3) If sending a 2D encoded doc, try a 1D document, some faxes have
> difficulty with 2D encoding

1D does not work either.

> 4) Try class 1, just in case there is something funny in the modems
> firmware

Class 1 works! It really seems to point to a modem problem.

> 5) Try another modem, apart from a Zyxel 1496/6.19 ;-)

Ulrich, could you confirm that you have the same modem? You did not
mention it in your original question.

> 6) Phone up receiver - ask them nicely to buy a new fax machine

;-)

> I might be on drugs, but there might also be other problem that is
> not handled yet - it appears that when ghostscript encodes a tiff
> document it includes the RTC sequence at the end of each page, when
> sending a fax hylafax just copies this out the port to the receiving
> machine and then adds its own RTC ie the RTC is sent twice.

> But i might be imagining this, i haven't had time to check this out
> properly.

I also have tried to send a fax from the fax machine to the computer
and then send the received file back, so no ghostscript would be
involved. I still get RTN.

-- 
Ulrich Mueller, Inst. fuer Kernphysik, Univ. Mainz, D-55099 Mainz
ulm@kph.uni-mainz.de, Phone +49 6131 39-5812, Fax -2964

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 02 Dec 1998 13:32:03 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: RTN Problem
Cc: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Sender: owner-flexfax@celestial.com

At 15:54 01/12/98 +0100, Uli wrote:
>Hi,
>
>some time ago there was here a thread about a problem with 
>RTN and that HylaFAX does not lower the transmission speed
>after receiving a RTN. As i remember, someone has announce 
>a patch against it.
>

No, I don't think there was an actual patch. In the mailing-list
the subject of RTN must have a top 10 spot in the 'HylaFAX Review
of the Year', but most relevant is a thread between Robert Coluqhoun
and David Wolley around the 4 Aug 98. 

Then, on the 11 Aug 98, David Weiss said :

>5. If HylaFAX can be persuaded to transmit at 2400 b/s, rather than
>9600, the encoding error sometimes disappears, and so too, do the RTNs.
>The difficulty here is in persuading HylaFAX to use 2400 for certain
>targets. This is a non-trivial exercise. None of the techniques
>described in the documentation (sendfax -B, destctrls) actually
>functioned (for me) as advertised. Of course, this could be due to my
>ignorance, lack of experience etc, and so I welcome correction.
>However I tried everything I could think of for several days with
>limited success. The _only_ approach that worked, required hacking of
>FaxMachineInfo.c++ to ignore the "info" files, so that the -B option
>to sendfax, actually had an effect. 
>

Further info from David enabled Robert to come up with the tagline 
patch, which *may* reduce the incidence of RTN responses on the first
page, but doesn't alter transmission rates, etc.

Hope this is of some help,
Phil Watkinson,
Boston, UK.          - Bet it's a bit nippy in Dieburg today?

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 02 Dec 1998 14:48:24 +0100
From: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Organization: Transcom
X-Accept-Language: English, en, German, de
To: Robert Colquhoun <rjc@trump.net.au>
CC: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>,
        HylaFax Mailing liste <flexfax@sgi.com>
Subject: Re: flexfax: RTN Problem
Sender: owner-flexfax@celestial.com

Robert Colquhoun wrote:
> 
> Hi Ulrich,
> 
> I have posted this patch ,along with the sysV init one of a couple of weeks
> ago to:
>         http://www.trump.net.au/~rjc/hylafax/

Hi,

thanks, there is the patch i searched for.

> This is my list for handling negative-retrains from selected receiving
> locations(ie you are getting them from some locations, *not* everywhere you
> send):
> 1) Apply the tagline patch as currently there is a coding error in the
> facsimiles sent by hylafax giving a legitimate reason for the receiving fax
> to ask for the page again.

I have done it yesterday, but have run faxcron but forgot to redirect
the output
to a file 8-( so i don't know if it helps.

> 2) Apply the speed reduce patch, just in case it is line noise causing the
> bad transmission

I have done it now. Seems that it helped, but i have to wait untill
tomorrow,
when i get the nightly statistics. 

> 3) If sending a 2D encoded doc, try a 1D document, some faxes have
> difficulty with 2D encoding

I had tested this earlier, but sending only with 1D increases
the failure rate here. But we have many faxes to stations with
very bad lines, so the better compression of 2D encoding may help 
here a lot. 

Uli
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 02 Dec 1998 21:55:38 +1100
To: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>,
        HylaFax Mailing liste <flexfax@sgi.com>
From: Robert Colquhoun <rjc@trump.net.au>
Subject: Re: flexfax: RTN Problem
Sender: owner-flexfax@celestial.com

Hi Ulrich,

I have posted this patch ,along with the sysV init one of a couple of weeks
ago to:
	http://www.trump.net.au/~rjc/hylafax/

This is my list for handling negative-retrains from selected receiving
locations(ie you are getting them from some locations, *not* everywhere you
send):
1) Apply the tagline patch as currently there is a coding error in the
facsimiles sent by hylafax giving a legitimate reason for the receiving fax
to ask for the page again.
2) Apply the speed reduce patch, just in case it is line noise causing the
bad transmission
3) If sending a 2D encoded doc, try a 1D document, some faxes have
difficulty with 2D encoding
4) Try class 1, just in case there is something funny in the modems firmware
5) Try another modem, apart from a Zyxel 1496/6.19 ;-)
6) Phone up receiver - ask them nicely to buy a new fax machine

I might be on drugs, but there might also be other problem that is not
handled yet - it appears that when ghostscript encodes a tiff document it
includes the RTC sequence at the end of each page, when sending a fax
hylafax just copies this out the port to the receiving machine and then
adds its own RTC ie the RTC is sent twice.

But i might be imagining this, i haven't had time to check this out properly.

- Robert

At 03:54 PM 12/1/98 +0100, Ulrich Eckhardt wrote:
>Hi,
>
>some time ago there was here a thread about a problem with 
>RTN and that HylaFAX does not lower the transmission speed
>after receiving a RTN. As i remember, someone has announce 
>a patch against it. I had a look for this patch at hylafax.org
>and http://www.elgro.demon.co.uk/patchlist.html , but couldn't
>find this patch. 
>
>Can anybody point me to the right direction ?
>
>Thanks for the help
>Uli 
>-- 
>Ulrich Eckhardt                         Tr@nscom GbR 
>http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
>                                        Lagerstrae 11-15 A8
>                                        64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 03 Dec 1998 14:39:18 +1100
To: Ulrich Mueller <ulm@kph.uni-mainz.de>
From: Robert Colquhoun <rjc@trump.net.au>
Subject: Re: flexfax: RTN Problem
Cc: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

Hi Ulrich,

At 16:54 2/12/98 +0100, Ulrich Mueller wrote:
>Is this related to the comment on the Hylafax modem WWW page
>concerning Zyxel
>(http://www.hylafax.org/Modems/zyxel-1496.html#Class2.0):
>
>| When transmitting, it is not necessary to send RTC, the modem will
>| append RTC to the page data upon receiving the post-page message
>| from the host.
>
>Or is it an unrelated problem?
>

Oh, i did not notice this, it would probaly not be good - hopefully the
modem would be smart enough not to do this once it had already seen a RTC
on line, but then again maybe not.  If the fax at the other end sees
multiple RTC's which are basically a series of end of line characters it is
very likely to think the page being sent is no good and ask for it to be
transmitted again - a retrain.

Have you got a 1496 manual, is there a S-Register to turn this 'feature' off?

- Robert

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: Ulrich Mueller <ulm@kph.uni-mainz.de>
To: Robert Colquhoun <rjc@trump.net.au>
CC: flexfax@sgi.com
Subject: Re: flexfax: RTN Problem
Date: Wed, 2 Dec 1998 16:54:30 +0100
Sender: owner-flexfax@celestial.com

Robert Colquhoun writes:

> I might be on drugs, but there might also be other problem that is
> not handled yet - it appears that when ghostscript encodes a tiff
> document it includes the RTC sequence at the end of each page, when
> sending a fax hylafax just copies this out the port to the receiving
> machine and then adds its own RTC ie the RTC is sent twice.

Is this related to the comment on the Hylafax modem WWW page
concerning Zyxel
(http://www.hylafax.org/Modems/zyxel-1496.html#Class2.0):

| When transmitting, it is not necessary to send RTC, the modem will
| append RTC to the page data upon receiving the post-page message
| from the host.

Or is it an unrelated problem?

Ulrich

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 02 Dec 1998 16:27:29 +0100
From: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Organization: Transcom
X-Accept-Language: English, en, German, de
To: Ulrich Mueller <ulm@kph.uni-mainz.de>
CC: flexfax@sgi.com
Subject: Re: flexfax: RTN Problem
Sender: owner-flexfax@celestial.com

Ulrich Mueller wrote:
> 
> Robert Colquhoun writes:
> 
> > Hi Ulrich,
> 
> [ Now there are two people who asked almost the same question at the
>   same time, and by coincidence we have the same first name, too.
>   Don't be confused. ;-) ]
> 
> > This is my list for handling negative-retrains from selected
> > receiving locations(ie you are getting them from some locations,
> > *not* everywhere you send):
> 
> That is exactly the behaviour I observe.

> > 4) Try class 1, just in case there is something funny in the modems
> > firmware
> 
> Class 1 works! It really seems to point to a modem problem.
> 
> > 5) Try another modem, apart from a Zyxel 1496/6.19 ;-)
> 
> Ulrich, could you confirm that you have the same modem? You did not
> mention it in your original question.
> 
> --
> Ulrich Mueller, Inst. fuer Kernphysik, Univ. Mainz, D-55099 Mainz
> ulm@kph.uni-mainz.de, Phone +49 6131 39-5812, Fax -2964

Hi, 

i have here a ZYXEL U1496E/V 6.15 P, so there may be differences.
I will have a look at the error stats this evening and will see,
if we get fewer errors (we have in fact some very bad lines to
some of our customers). So i hope that these patches will help
here.

Brgs
Uli
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 03 Dec 1998 14:28:56 +1100
To: Ulrich Mueller <ulm@kph.uni-mainz.de>
From: Robert Colquhoun <rjc@trump.net.au>
Subject: Re: flexfax: RTN Problem
Cc: flexfax@sgi.com, Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Sender: owner-flexfax@celestial.com

At 16:15 2/12/98 +0100, you wrote:
>> 4) Try class 1, just in case there is something funny in the modems
>> firmware
>
>Class 1 works! It really seems to point to a modem problem.

Yes it does look like the modem or its configuration.

>> I might be on drugs, but there might also be other problem that is
>> not handled yet - it appears that when ghostscript encodes a tiff
>> document it includes the RTC sequence at the end of each page, when
>> sending a fax hylafax just copies this out the port to the receiving
>> machine and then adds its own RTC ie the RTC is sent twice.
>
>> But i might be imagining this, i haven't had time to check this out
>> properly.
>
>I also have tried to send a fax from the fax machine to the computer
>and then send the received file back, so no ghostscript would be
>involved. I still get RTN.

The received faxes also have RTC encoded ie running cqtest on a received fax:

[rjc@hpuxd220 recvq]$ cqtest fax08266.tif
1728 x 297, 3.85 line/mm, 1-D MR, lsb-to-msb
RECV/CQ: Bad 1D pixel count, row 1127, got 0, expected 1728
RECV/CQ: Bad 1D pixel count, row 1128, got 0, expected 1728
RECV/CQ: Bad 1D pixel count, row 1129, got 0, expected 1728
RECV/CQ: Bad 1D pixel count, row 1130, got 0, expected 1728
RECV/CQ: Bad 1D pixel count, row 1131, got 0, expected 1728
RECV/CQ: Bad 1D pixel count, row 1132, got 1830, expected 1728
RECV/CQ: adjusting for trailing noise (6 run)
RECV: 1127 total lines, 0 bad lines, 0 consecutive bad lines
[rjc@hpuxd220 recvq]$

There are 6 EOL characters in a row at the end of the page, which is the
RTC for a 1D encoded fax.    This is the same situation as ghostscript
which also adds the RTC onto the end of each page.

If hylafax resent this it should either remove this from the end of each
page or not bother to add its own RTC onto the end.  Hylafax might be doing
this already i have not yet checked.

- Robert

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 03 Dec 1998 08:38:35 +0100
From: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Organization: Transcom
X-Accept-Language: English, en, German, de
To: flexfax@sgi.com
Subject: Re: flexfax: RTN Problem
Sender: owner-flexfax@celestial.com

Robert Colquhoun wrote:

> 
> Oh, i did not notice this, it would probaly not be good - hopefully the
> modem would be smart enough not to do this once it had already seen a RTC
> on line, but then again maybe not.  If the fax at the other end sees
> multiple RTC's which are basically a series of end of line characters it is
> very likely to think the page being sent is no good and ask for it to be
> transmitted again - a retrain.
> 
> Have you got a 1496 manual, is there a S-Register to turn this 'feature' off?
> 
> - Robert

Hi, 

i had a look in the manual and there seems to be no command to disable
this
feature. Also with Class 2.0 i got very bad results. Actually the best
results are
Class 2.

Uli
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 03 Dec 1998 11:27:34 +0100
From: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Organization: Transcom
X-Accept-Language: English, en, German, de
To: HylaFax Mailing liste <flexfax@sgi.com>
Subject: Re: flexfax: RTN Problem
Sender: owner-flexfax@celestial.com

Ulrich Eckhardt wrote:

> > 2) Apply the speed reduce patch, just in case it is line noise causing the
> > bad transmission
> 
> I have done it now. Seems that it helped, but i have to wait untill
> tomorrow,
> when i get the nightly statistics.
> 
> > 3) If sending a 2D encoded doc, try a 1D document, some faxes have
> > difficulty with 2D encoding
> 
> I had tested this earlier, but sending only with 1D increases
> the failure rate here. But we have many faxes to stations with
> very bad lines, so the better compression of 2D encoding may help
> here a lot.

Hi,

this patch helped against the RTN problem :-) but the good old 
REMOTE HANGUP: No response to EOP repeated 3 times (code 54)
is also present.

Is there some good documentation about the fax protocol availabe
somewhere ?

Uli
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 01 Dec 1998 18:22:44 -0800
Reply-To: 0523297770@t-online.de
Organization: ANZER GMBH
To: Hylafax <flexfax@sgi.com>
Subject: flexfax: How to retrieve DONEQ information back into my application
From: RICK_@t-online.de (JRGEN ANZER)
Sender: owner-flexfax@celestial.com

Hi gurus!

At first I want to mention that the HylaFAX software works great and
Ive managed to fax out of our application.

This application is based on Informix and I used the "output to file"
command and then automatically send this file to sendfax with the
destination number.

Now, here is my question:

Is there a way / what is the best way to make sure, that the fax has
really been sent succesfully.

I know that HylaFAX mails the user if it cant deliver the sent-job -
unfortunately some of our users *never* look in their mailbox. Most of
our user are not familiar with *nix at all and only work within their
business application.

So I want to make sure, that their faxjobs have really been sent and
that this is visible to them within their application in a form like
"faxed/printed at 01/12/98" or something like that.

So - how do I retrieve this information out of HylaFAX? 
Searching through the doneq and sentq directories?
Has anyone out there got some experience with this?

many thanks in advance,
any help will be appreciated

juergen anzer


-- 
snail: 	ANZER GmbH - Pieperstr. 14 - 32791 Lage - Germany
email: 	rick_@t-online.de
voice:	(0049) 5232 / 9777-21
fax:	(0049) 5232 / 78094

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Alan Sparks" <asparks@nss.harris.com>
To: <0523297770@t-online.de>, "Hylafax" <flexfax@sgi.com>
Subject: Re: flexfax: How to retrieve DONEQ information back into my application
Date: Tue, 1 Dec 1998 13:20:30 -0800
Sender: owner-flexfax@celestial.com

If you feel adventurous, you can play excellent games with Perl and
Net::FTP.  I did an intranet interface in Perl, allowing people to view the
sent and done queue status.

Basically, you can use Net::FTP to connect to the HylaFAX server at port
4559 (standard).  "cd" to the /sendq (or /doneq) directory, and do an "ls"
and see the list of files, status, times, other cool stuff.

Your installation may need you to "login" to hfaxd (the listener at port
4559) before going anywhere.  There are a few other tricks (such as setting
display formatting) -- a really good way to experiment is to telnet into the
host's port 4559, and you can talk to hfaxd directly to see the commands
it'll take via Net::FTP's quote() method.  Be sure to do a "help" command!

-Alan


-----Original Message-----
From: JXRGEN ANZER <RICK_@t-online.de>
To: Hylafax <flexfax@sgi.com>
Date: Tuesday, December 01, 1998 12:13 PM
Subject: flexfax: How to retrieve DONEQ information back into my application


Hi gurus!

At first I want to mention that the HylaFAX software works great and
Ive managed to fax out of our application.

This application is based on Informix and I used the "output to file"
command and then automatically send this file to sendfax with the
destination number.

Now, here is my question:

Is there a way / what is the best way to make sure, that the fax has
really been sent succesfully.

I know that HylaFAX mails the user if it cant deliver the sent-job -
unfortunately some of our users *never* look in their mailbox. Most of
our user are not familiar with *nix at all and only work within their
business application.

So I want to make sure, that their faxjobs have really been sent and
that this is visible to them within their application in a form like
"faxed/printed at 01/12/98" or something like that.

So - how do I retrieve this information out of HylaFAX?
Searching through the doneq and sentq directories?
Has anyone out there got some experience with this?

many thanks in advance,
any help will be appreciated

juergen anzer


--
snail: ANZER GmbH - Pieperstr. 14 - 32791 Lage - Germany
email: rick_@t-online.de
voice: (0049) 5232 / 9777-21
fax: (0049) 5232 / 78094

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 02 Dec 1998 16:08:58 +0100
From: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Organization: Transcom
X-Accept-Language: English, en, German, de
To: Hylafax <flexfax@sgi.com>
Subject: Re: flexfax: How to retrieve DONEQ information back into my application
Sender: owner-flexfax@celestial.com

"JRGEN ANZER" wrote:
> 
> Hi gurus!
> 
> At first I want to mention that the HylaFAX software works great and
> Ive managed to fax out of our application.
> 
> This application is based on Informix and I used the "output to file"
> command and then automatically send this file to sendfax with the
> destination number.
> 
> Now, here is my question:
> 
> Is there a way / what is the best way to make sure, that the fax has
> really been sent succesfully.
> 
> I know that HylaFAX mails the user if it cant deliver the sent-job -
> unfortunately some of our users *never* look in their mailbox. Most of
> our user are not familiar with *nix at all and only work within their
> business application.
> 
> So I want to make sure, that their faxjobs have really been sent and
> that this is visible to them within their application in a form like
> "faxed/printed at 01/12/98" or something like that.
> 
> So - how do I retrieve this information out of HylaFAX?
> Searching through the doneq and sentq directories?
> Has anyone out there got some experience with this?
> 
> many thanks in advance,
> any help will be appreciated
> 
> juergen anzer

Hi,

probably you can parse the output of the faxstat command via Perl. 

There is a patch available on www.hylafax.org which adds some features
to
faxstat, which should make parsing easier (but haven't tested this
patch yet). Then you could put this informations in a database table via
the perl dbi interface (dbi is something similar to ODBC). 

You can write then a form (it looks that you use unify vision [i am 
acutally fighting with vision, but it seems that I win :-) ]) 
which shows this table, so a user has access to the fax server.

Uli  
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Fletcher, Owen" <Owen.Fletcher@NBNZ.CO.NZ>
To: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: RE: flexfax: How to retrieve DONEQ information back into my appli
	cation
Date: Thu, 3 Dec 1998 09:50:45 +1300 
Sender: owner-flexfax@celestial.com

Hi.
We do a similar thing using Sybase. 
When we send the fax we collect the faxid return by sendfax and place that
in the database.
We then modified the notify function to call a script that ticks the items
off in the database.
The application user can then see the fax number, and when its sent.


------------------------------------------------------------------
:-) Owen Fletcher


> -----Original Message-----
> From:	Ulrich Eckhardt [SMTP:Ulrich.Eckhardt@transcom.de]
> Sent:	3 December 1998 04:09
> To:	Hylafax
> Subject:	Re: flexfax: How to retrieve DONEQ information back into my
> application
> 
> "JRGEN ANZER" wrote:
> > 
> > Hi gurus!
> > 
> > At first I want to mention that the HylaFAX software works great and
> > Ive managed to fax out of our application.
> > 
> > This application is based on Informix and I used the "output to file"
> > command and then automatically send this file to sendfax with the
> > destination number.
> > 
> > Now, here is my question:
> > 
> > Is there a way / what is the best way to make sure, that the fax has
> > really been sent succesfully.
> > 
> > I know that HylaFAX mails the user if it cant deliver the sent-job -
> > unfortunately some of our users *never* look in their mailbox. Most of
> > our user are not familiar with *nix at all and only work within their
> > business application.
> > 
> > So I want to make sure, that their faxjobs have really been sent and
> > that this is visible to them within their application in a form like
> > "faxed/printed at 01/12/98" or something like that.
> > 
> > So - how do I retrieve this information out of HylaFAX?
> > Searching through the doneq and sentq directories?
> > Has anyone out there got some experience with this?
> > 
> > many thanks in advance,
> > any help will be appreciated
> > 
> > juergen anzer
> 
> Hi,
> 
> probably you can parse the output of the faxstat command via Perl. 
> 
> There is a patch available on www.hylafax.org which adds some features
> to
> faxstat, which should make parsing easier (but haven't tested this
> patch yet). Then you could put this informations in a database table via
> the perl dbi interface (dbi is something similar to ODBC). 
> 
> You can write then a form (it looks that you use unify vision [i am 
> acutally fighting with vision, but it seems that I win :-) ]) 
> which shows this table, so a user has access to the fax server.
> 
> Uli  
> -- 
> Ulrich Eckhardt                         Tr@nscom GbR 
> http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
>                                         Lagerstrae 11-15 A8
>                                         64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: Re: HylaFAX 4.0pl2: most platforms don't have REG_STARTEND
To: jik@kamens.brookline.ma.us (Jonathan I. Kamens)
Date: Thu, 3 Dec 1998 00:06:13 +0000 (GMT)
Cc: jik@kamens.brookline.ma.us, flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> which supports REG_STARTEND.  I was running into trouble because I had
> TIFFINC set to /usr/include, since that's where my TIFF include files
> are located.  As a result, object files were being built with

That's interesting; I was about to raise this one myself, having just
built from cold on Slackware 3.5, using their libtiff and libz.

> "-I/usr/include" before "-I${DEPTH}/regex", so the compiler was seeing
> /usr/include/regex.h before the regex.h included with HylaFAX.  In
 
> The rather gross workaround I came up with was to put back the
> original setting of TIFFINC to /usr/local/include.  That directory is
> empty on my machine, which makes "-I/usr/local/include" a no-op, so
> the correct regex.h will now be found.

The hack I used was to set it to ".".
> 

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 1 Dec 1998 09:20:15 -0500
From: "Jonathan I. Kamens" <jik@kamens.brookline.ma.us>
To: flexfax@sgi.com
Subject: flexfax: HylaFAX 4.0pl2: libtiff needs to link against libz
Sender: owner-flexfax@celestial.com

At least on my machine (Linux with kernel version 2.0.36, with various
libraries that I've compiled and installed myself), the TIFF libraries
depend on the Z libraries.  Therefore, in order to make the HylaFAX
configure script work properly, I had to move the block that checks
for TIFF support after the block that checks for Z support, and then
add the Z libraries to the link line when compiling the TIFF test
program.  I.e., here's a patch:

--- configure	1998/11/30 20:11:41	1.3
+++ configure	1998/11/30 20:30:13	1.4
@@ -2807,65 +2807,6 @@
 fi
 Note "Done checking system libraries."
 
-Note ""
-Note "Checking TIFF support."
-#
-# Verify library is compatible.
-#
-cat>t.c<<EOF
-#include "tiffio.h"
-main()
-{
-    if (TIFFLIB_VERSION < 19960307) {     /* check include file version */
-	printf("old include files: version %u\n", TIFFLIB_VERSION);
-        exit(-1);
-    }
-    if (strncmp(TIFFGetVersion(), "LIBTIFF, Version 3.4", 20) != 0) {
-	printf("old library: version %s\n", TIFFGetVersion());
-	exit(-1);
-    } else
-	exit(0);
-}
-EOF
-capture cat t.c
-if runMake t "t:; \${CC} \${CVERSION} -I${OTIFFINC} t.c ${LIBTIFF} ${MACHDEPLIBS}" && capture ./a.out; then
-    Note "Using TIFF include files from $OTIFFINC"
-    Note "Using pre-built TIFF library $LIBTIFF"
-else
-    cat 1>&2 <<EOF
-
-Incompatible/missing TIFF Library.
-
-Compilation or execution of the following test program failed:
-
-----------------------------------------------------------
-EOF
-    cat t.c 1>&2
-    cat 1>&2 <<EOF
-----------------------------------------------------------
-
-With:
-
-TIFFINC=${OTIFFINC}
-LIBTIFF=${LIBTIFF}
-
-The above program checks the version of the TIFF library to ensure it
-is suitable for use with HylaFAX.  HylaFAX ${VERSION} requires a recent
-TIFF software distribution; one distributed March 7, 1996 or later.  If
-you do not have up to date TIFF software on your system then you can
-retrieve it from the location where you obtained this software.
-Otherwise, if you have the right software, verify that you have the
-TIFFINC and LIBTIFF configuration parameters set correctly for your
-system (see above) and that any environment variables are setup that
-are needed to locate a libtiff DSO at runtime (e.g. LD_LIBRARY_PATH).
-Also be sure that any relative pathnames are made relative to the top
-of the build area.
-
-EOF
-    boom
-fi
-Note "Done checking TIFF support."
-
 if [ $ZLIB = no ]; then
     Note ""
     Note "Checking ZLIB support."
@@ -2926,6 +2867,65 @@
     fi
     Note "Done checking ZLIB support."
 fi
+
+Note ""
+Note "Checking TIFF support."
+#
+# Verify library is compatible.
+#
+cat>t.c<<EOF
+#include "tiffio.h"
+main()
+{
+    if (TIFFLIB_VERSION < 19960307) {     /* check include file version */
+	printf("old include files: version %u\n", TIFFLIB_VERSION);
+        exit(-1);
+    }
+    if (strncmp(TIFFGetVersion(), "LIBTIFF, Version 3.4", 20) != 0) {
+	printf("old library: version %s\n", TIFFGetVersion());
+	exit(-1);
+    } else
+	exit(0);
+}
+EOF
+capture cat t.c
+if runMake t "t:; \${CC} \${CVERSION} -I${OTIFFINC} t.c ${LIBTIFF} ${LIBZ} ${MACHDEPLIBS}" && capture ./a.out; then
+    Note "Using TIFF include files from $OTIFFINC"
+    Note "Using pre-built TIFF library $LIBTIFF"
+else
+    cat 1>&2 <<EOF
+
+Incompatible/missing TIFF Library.
+
+Compilation or execution of the following test program failed:
+
+----------------------------------------------------------
+EOF
+    cat t.c 1>&2
+    cat 1>&2 <<EOF
+----------------------------------------------------------
+
+With:
+
+TIFFINC=${OTIFFINC}
+LIBTIFF=${LIBTIFF}
+
+The above program checks the version of the TIFF library to ensure it
+is suitable for use with HylaFAX.  HylaFAX ${VERSION} requires a recent
+TIFF software distribution; one distributed March 7, 1996 or later.  If
+you do not have up to date TIFF software on your system then you can
+retrieve it from the location where you obtained this software.
+Otherwise, if you have the right software, verify that you have the
+TIFFINC and LIBTIFF configuration parameters set correctly for your
+system (see above) and that any environment variables are setup that
+are needed to locate a libtiff DSO at runtime (e.g. LD_LIBRARY_PATH).
+Also be sure that any relative pathnames are made relative to the top
+of the build area.
+
+EOF
+    boom
+fi
+Note "Done checking TIFF support."
 
 # NB: only check if we have the MLA tools
 if [ -f $SRCDIR/MLA/VERSION -a $DBLIB = no ]; then

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: flexfax@sgi.com
From: darren@hylafax.org
Subject: flexfax: Enhancements to www.hylafax.org
X-uri: http://www.tpc.int/
X-pgp-key-fingerprint: 05 CA 3F B5 43 F2 6A CE  DB 9E 08 39 80 F0 57 9E
Date: Tue, 01 Dec 1998 17:46:44 +0000
Sender: owner-flexfax@celestial.com


Folks,

We just went live with enhanced offerings at www.hylafax.org. The additions
include a links page with useful links to all things weird and wonderful, a
list of any/all contributed patches, and a beefy search engine. Thanks to Phil
Watkinson and Robert Colquhoun for bringing these pages to life.

Still no progress on mailing list archiving/searching, since nobody's yet sent 
me a SCSI disk for this to live on. I live in hope and anticipation ;-)

-Darren

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Alan Sparks" <asparks@nss.harris.com>
To: <flexfax@sgi.com>
Subject: flexfax: 4.0pl2 hfaxd: won't shut down socket?
Date: Tue, 1 Dec 1998 17:25:25 -0800
Sender: owner-flexfax@celestial.com

Just working the tests upgrading from 4.0pl1 to pl2 on a SunOS 4.1.4 box.
Generally good, but problem shutting down hfaxd.

Seems that with pl2, if I kill hfaxd with the hylafax script (or a just
plain kill), it dies and leaves the socket not shut down.  If I restart
hfaxd, it won't start, saying it the new protocol's address is in use.  A
reboot clears that up :-) but isn't fun.

Is there a known problem here?  Thanks in advance.
-Alan

=============
Alan Sparks, IS Engineering Support
<asparks@nss.harris.com>
Harris Communications, Camarillo CA                   (805) 389-2430

Envelope-to: dnicker@ermine.ox.ac.uk
X-Sender: nj@rhialto.linkline.be (Unverified)
Date: Mon, 30 Nov 1998 15:24:05 +0100
To: webmaster@hylafax.org
From: Nicolas Jungers <nj@linkline.be>
Subject: flexfax: bug reports
Sender: owner-flexfax@celestial.com

I didn't find (after only a 5 min search :) were to send bug informations, 
so here it is.


I had a really bad time to setup a hylaFax server (i386 debian linux), only 
getting this error messages in the syslog

Nov 24 16:42:25 emphyrio A
Nov 24 16:42:26 emphyrio ssertion failed "Invalid Str[] index", file 
"../util/Str.h" line 116

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 1 Dec 1998 18:57:52 -0500 (EST)
From: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
To: Nicolas Jungers <nj@linkline.be>
Cc: Hylafax Mailing List <flexfax@sgi.com>
Subject: Re: flexfax: bug reports
Sender: owner-flexfax@celestial.com

-----BEGIN PGP SIGNED MESSAGE-----

On Mon, 30 Nov 1998, Nicolas Jungers wrote:

> I didn't find (after only a 5 min search :) were to send bug informations, 
> so here it is.

Good point: welcome to the HylaFAX mailing list, flexfax@sgi.com.

> I had a really bad time to setup a hylaFax server (i386 debian linux), only 
> getting this error messages in the syslog
> 
> Nov 24 16:42:25 emphyrio A
> Nov 24 16:42:26 emphyrio ssertion failed "Invalid Str[] index", file 
> "../util/Str.h" line 116

"Gee, Mr. Mechanic, my car makes a funny noise. Why?"

I'm sorry, we get a lot of these reguests without enough data. Debian
Linux, what release, and did you install from an RPM or from source?
And what version of HylaFAX is it?

			Nico Kadel-Garcia
			Senior Engineer, CIRL 
			Mass. Eye and Ear Infirmary
			raoul@cirl.meei.harvard.edu

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBNmSCfT/+ItycgIJRAQF3LQQAjgm+pjglviS3Y5tX5NDXHNgUFSzh5+tC
hqekq1IKZS3Kk+aFROTe9czae9uaKsSuyrkG4Uy1LHvpem8x21kIuRWWJGa7LxvA
/6C6ff35JgycZIj7eU7iwc2vSK6/ZwYPYKgVr3GStACHQhToTnralxBBxWjhOsVs
MayY1VATPTE=
=7/r/
-----END PGP SIGNATURE-----

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 2 Dec 1998 11:11:15 +0100
To: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
From: Nicolas Jungers <nj@linkline.be>
Subject: Re: flexfax: bug reports
Cc: Hylafax Mailing List <flexfax@sgi.com>
Sender: owner-flexfax@celestial.com

At 18:57 -0500 1/12/98, Nico Kadel-Garcia wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
>
> On Mon, 30 Nov 1998, Nicolas Jungers wrote:
>
>> I didn't find (after only a 5 min search :) were to send bug informations,
>> so here it is.
>
> Good point: welcome to the HylaFAX mailing list, flexfax@sgi.com.
>
>> I had a really bad time to setup a hylaFax server (i386 debian linux), only
>> getting this error messages in the syslog
>>
>> Nov 24 16:42:25 emphyrio A
>> Nov 24 16:42:26 emphyrio ssertion failed "Invalid Str[] index", file
>> "../util/Str.h" line 116
>
> "Gee, Mr. Mechanic, my car makes a funny noise. Why?"
>
> I'm sorry, we get a lot of these reguests without enough data. Debian
> Linux, what release, and did you install from an RPM or from source?
> And what version of HylaFAX is it?
>
> 			Nico Kadel-Garcia
> 			Senior Engineer, CIRL
> 			Mass. Eye and Ear Infirmary
> 			raoul@cirl.meei.harvard.edu

well, I thought I was clear, the problem was an hardware problem. I just 
send that as info, because the relation between the error message and the 
problem was not obvious. I was not asking for any particular help, but your 
right I had better to include the hylafax version, which is: 4.0.2

the problem was a broken wire for hardware flow control for a modem 
identified as using it.
Nicolas
--
mail: nj@linkline.be  Phone: (32-2) 333 55 55  Fax: (32-2) 333 55 56
personal mail: nicolas@linkline.be   personal fax:  (32-2) 502 76 41

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 2 Dec 1998 09:02:56 -0500 (EST)
From: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
To: Alan Sparks <asparks@nss.harris.com>
Cc: flexfax@sgi.com
Subject: Re: flexfax: 4.0pl2 hfaxd: won't shut down socket?
Sender: owner-flexfax@celestial.com

-----BEGIN PGP SIGNED MESSAGE-----

On Tue, 1 Dec 1998, Alan Sparks wrote:

> Just working the tests upgrading from 4.0pl1 to pl2 on a SunOS 4.1.4 box.
> Generally good, but problem shutting down hfaxd.
> 
> Seems that with pl2, if I kill hfaxd with the hylafax script (or a just
> plain kill), it dies and leaves the socket not shut down.  If I restart
> hfaxd, it won't start, saying it the new protocol's address is in use.  A
> reboot clears that up :-) but isn't fun.

What in the? This is wrong, it doesn't happen on my systems. Are you
working from binary or from source? And did you accidentally stuff
hfaxd in your /etc/inetd.conf?

			Nico Kadel-Garcia
			Senior Engineer, CIRL 
			Mass. Eye and Ear Infirmary
			raoul@cirl.meei.harvard.edu

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBNmVIij/+ItycgIJRAQHmuQQAlEl5hgz4vU3WS1+o7yI6v9pJ2TbPSqKs
xNQmJW3Xx0/Ft1rTsKjRbV/TeWAVfmAjsjIam9ngpW/BOIVgMdMn8QArdfKBt1Wz
yLm7ZjrxGSTbtnDYnzkIC5C5yGOq3//4w+uFrvZjLeo0HEY/zH2tuLLk6vZkKj6O
bMqshTKss0E=
=RFLH
-----END PGP SIGNATURE-----

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: gdoris@shaw.wave.ca
Date: Tue, 01 Dec 1998 23:29:10 -0500 (EST)
To: Hylafax <flexfax@sgi.com>
Subject: flexfax: What's wrong now????
Sender: owner-flexfax@celestial.com

I think I'm pretty close to getting Hylafax to work but I keep getting a 'mode
doesn't support document page width message'.

I've attached the log for the send.  When looking at the faq's it seems like my
version of gs may be the problem but I just checked it and it's at 4.03-27
which I believe is relatively recent.

The document that I was trying to send was right out of the docq directory (I
think it's a header page.  I'm using SuSE 5.3 linux.  The modem is a US
Robotics Sportster Voice 56k faxmodem (x2 variety).

Any pointers will be appreciated.

Gerry

----------------------------------
E-Mail: gdoris@shaw.wave.ca
Date: 01-Dec-98
Time: 23:21:14

This message was sent by XFMail
----------------------------------

Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\c00000003"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 03 Dec 1998 13:08:29 +1100
From: Damian A Ivereigh <damian@cisco.com>
Organization: Cisco Systems Inc
To: gdoris@shaw.wave.ca
CC: Hylafax <flexfax@sgi.com>
Subject: Re: flexfax: What's wrong now????
Sender: owner-flexfax@celestial.com

Gerry,

You might want to search the archives. This question comes up a lot. I
think it all to do with using Letter size or A4 size paper.

Damian

gdoris@shaw.wave.ca wrote:
> 
> I think I'm pretty close to getting Hylafax to work but I keep getting a 'mode
> doesn't support document page width message'.
> 
> I've attached the log for the send.  When looking at the faq's it seems like my
> version of gs may be the problem but I just checked it and it's at 4.03-27
> which I believe is relatively recent.
> 
> The document that I was trying to send was right out of the docq directory (I
> think it's a header page.  I'm using SuSE 5.3 linux.  The modem is a US
> Robotics Sportster Voice 56k faxmodem (x2 variety).
> 
> Any pointers will be appreciated.
> 
> Gerry
> 
> ----------------------------------
> E-Mail: gdoris@shaw.wave.ca
> Date: 01-Dec-98
> Time: 23:21:14
> 
> This message was sent by XFMail
> ----------------------------------
> 
>   ------------------------------------------------------------------------
> 
>                       Name: c00000003
>    c00000003          Type: unspecified type (application/octet-stream)
>                   Encoding: base64
>                Description: c00000003

-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: gdoris@shaw.wave.ca
Date: Wed, 02 Dec 1998 21:18:03 -0500 (EST)
To: Damian A Ivereigh <damian@cisco.com>
Subject: Re: flexfax: What's wrong now????
Cc: Hylafax <flexfax@sgi.com>
Sender: owner-flexfax@celestial.com

The problem is related to the cover page that is part of the SuSE package. 
This thing is too wide and causes all faxes to be rejected.  I suppose it has
to do with the A4 paper size but I haven't researched it yet.

The good thing is that I actually received several faxes today successfully,
was able to view and print them.  I was also able to send a fax without using
the canned cover page.

I claim success!!!!

Gerry

PS. Can anyone point me to some good cover pages???




On 03-Dec-98 Damian A Ivereigh wrote:
> Gerry,
> 
> You might want to search the archives. This question comes up a lot. I
> think it all to do with using Letter size or A4 size paper.
> 
> Damian
> 
> gdoris@shaw.wave.ca wrote:
>> 
>> I think I'm pretty close to getting Hylafax to work but I keep getting a
>> 'mode
>> doesn't support document page width message'.
>> 
>> I've attached the log for the send.  When looking at the faq's it seems like
>> my
>> version of gs may be the problem but I just checked it and it's at 4.03-27
>> which I believe is relatively recent.
>> 
>> The document that I was trying to send was right out of the docq directory
>> (I
>> think it's a header page.  I'm using SuSE 5.3 linux.  The modem is a US
>> Robotics Sportster Voice 56k faxmodem (x2 variety).
>> 
>> Any pointers will be appreciated.
>> 
>> Gerry

----------------------------------
E-Mail: gdoris@shaw.wave.ca
Date: 02-Dec-98
Time: 21:14:26

This message was sent by XFMail
----------------------------------

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 3 Dec 1998 11:28:20 +0100
From: Carsten Hoeger <choeger@suse.de>
To: gdoris@shaw.wave.ca, Damian A Ivereigh <damian@cisco.com>
Cc: Hylafax <flexfax@sgi.com>
Subject: Re: flexfax: What's wrong now????
Sender: owner-flexfax@celestial.com

On Wed, Dec 02, gdoris@shaw.wave.ca wrote:

> The problem is related to the cover page that is part of the SuSE package. 
> This thing is too wide and causes all faxes to be rejected.  I suppose it has
> to do with the A4 paper size but I haven't researched it yet.

The SuSE coverpage has been sent to faxes at least some 10000 times.

-- 
mfG,
	Carsten Hoeger

+-----------------------------------------------------------+
| Carsten Hoeger                   SuSE GmbH                |
| choeger@suse.de                  Schanzaeckerstr. 10      |
| http://www.suse.de               90443 Nuernberg, Germany |
+-----------------------------------------------------------+

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: gdoris@shaw.wave.ca
Date: Thu, 03 Dec 1998 07:57:22 -0500 (EST)
To: Carsten Hoeger <choeger@suse.de>
Subject: Re: flexfax: What's wrong now????
Cc: Hylafax <flexfax@sgi.com>, Damian A Ivereigh <damian@cisco.com>
Sender: owner-flexfax@celestial.com

Well, whatever is the problem the SuSE cover page that comes with Susefax is
rejected everytime because it's too wide.  As long as I don't use it I can send
and receive correctly.

I have been assuming that is because of differences in size between the A4
European paper and the North American letter paper???  Perhaps my copy of the
file is corrupt?

Gerry

On 03-Dec-98 Carsten Hoeger wrote:
> On Wed, Dec 02, gdoris@shaw.wave.ca wrote:
> 
>> The problem is related to the cover page that is part of the SuSE package. 
>> This thing is too wide and causes all faxes to be rejected.  I suppose it
>> has
>> to do with the A4 paper size but I haven't researched it yet.
> 
> The SuSE coverpage has been sent to faxes at least some 10000 times.
> 
> -- 
> mfG,
>       Carsten Hoeger
> 
> +-----------------------------------------------------------+
>| Carsten Hoeger                   SuSE GmbH                |
>| choeger@suse.de                  Schanzaeckerstr. 10      |
>| http://www.suse.de               90443 Nuernberg, Germany |
> +-----------------------------------------------------------+

----------------------------------
E-Mail: gdoris@shaw.wave.ca
Date: 03-Dec-98
Time: 07:54:09

This message was sent by XFMail
----------------------------------

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: gdoris@shaw.wave.ca
Date: Thu, 03 Dec 1998 16:06:27 -0500 (EST)
To: Alex <backgroundinfo@mindspring.com>, Hylafax <flexfax@sgi.com>
Subject: Re: flexfax: What's wrong now????
Cc: Carsten Hoeger <choeger@suse.de>
Sender: owner-flexfax@celestial.com

Well, I thought I did pretty good just getting Hylafax working.  I don't think
I'm up to the challenge of creating cover pages right now.

Perhaps someone else on the list can point us in the right direction for nice
working cover pages???

Gerry


On 03-Dec-98 Alex wrote:
> gdoris@shaw.wave.ca wrote:
> 
>> Well, whatever is the problem the SuSE cover page that comes with Susefax is
>> rejected everytime because it's too wide.  As long as I don't use it I can
>> send
>> and receive correctly.
>>
>> I have been assuming that is because of differences in size between the A4
>> European paper and the North American letter paper???  Perhaps my copy of
>> the
>> file is corrupt?
>>
>> Gerry
>>
>> On 03-Dec-98 Carsten Hoeger wrote:
>> > On Wed, Dec 02, gdoris@shaw.wave.ca wrote:
>> >
>> >> The problem is related to the cover page that is part of the SuSE
>> >> package.
>> >> This thing is too wide and causes all faxes to be rejected.  I suppose it
>> >> has
>> >> to do with the A4 paper size but I haven't researched it yet.
>> >
>> > The SuSE coverpage has been sent to faxes at least some 10000 times.
>> >
>> > --
>> > mfG,
>> >       Carsten Hoeger
>> >
> 
>   I accidentally attempted to send a fax with the SuSEFAX cover page and the
> fax
> could not be sent out. My question is, how does one create a cover page that
> is
> appropriate for their business. The manual is useless about creating your own
> through LaTeX. Anybody out there willing to create a cover page for me?

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 1 Dec 1998 23:42:30 +0300 (MSK)
From: "Oganes A. Isaakyan" <root@isaakyan.mccme.ru>
Reply-To: oganes@mccme.ru
To: flexfax@sgi.com
Subject: flexfax: Help
Sender: owner-flexfax@celestial.com

Hi folks !
Can anybody help to tune HylaFAX (faxmail or textfmt) to handle russian
koi-8 encoding properly ? I've changed Ghostscript fonts to russian
fonts,
but ... when i write in message body smth like 
-------------------------
Russian koi-8 test:  .
 
-------------------------
it shows as
-------------------------
...
B(Date:)s1  382 M (Tue, 1 Dec 1998 23:29:55 +0300 \(MSK\))s2 EL                 
B EL                                                                            
B(Russian koi-8 test: )S                                                        
B(\360)S                                                                        
B(\322)S                                                                        
B(\311)S                                                                        
B(\327)S                                                                        
B(\305)S                                                                        
B(\324)S                                                                        
B( )S                                                                           
B(\353)S                                                                        
B(\311)S                                                                        
B(\322)S                                                                        
B(\311)S                                                                        
B(\314)S                                                                        
B(\314)S                                                                        
B(.)S                                                                           
B(\353)S                                                                        
B(\301)S                                                                        
B(\314)S                                                                        
B(\301)S                                                                        
B(\312)S                                                                        
B(\313)S                                                                        
B(\301)S                                                                        
B( )S                                                                           
B(\315)S                                                                        
B(\301)S                                                                        
B(\314)S                                                                        
B(\301)S                                                                        
B(\312)S                                                                        
B(\313)S                                                                        
B(\301)S                                                                        
B()S                                                                            

-------------------------
in ps document. It shows in ghostscript and faxes well but only one letter
at a line :-(. Any comments?

My uname -a says
Linux server.onik.net 2.0.30 #7 Sun Nov 29 11:08:17 MSK 1998 i586 unknown
my ghostscript is "Aladdin Ghostscript 5.03 (1997-8-8)", 
HylaFAX v4.0-6

Oganes A. Isaakyan
_______________________
mailto: oganes@mccme.ru

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 03 Dec 1998 00:14:53 +0000
From: Dean Tran <deantran@ix.netcom.com>
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: Help: HylaFAX and US Robotics 56K voice v90 modem
Sender: owner-flexfax@celestial.com



I spend few days to set up the Hylafax to work with my computer:

Pentium II 400 MHZ
US Robotic 56K voice (v90) internal modem

I have all ghostscripts/tiff installed per instruction of HylaFAX
homepage.

After I finish 'faxsetup' and 'faxaddmodem' my modem is in unknown
state, that I can't dial in my ISP server. Must reset the modem with ATZ

command.  With faxaddmodem, I choose (and test each AT command)
to my best knowledge.

Still can't send fax out with test fax file (sendfax -n -d xxx.xxx
file_name )

faxstat -s tell me that:

HylaFAX scheduler on localhost is running
Modem ttyS2 ...... : Waiting for modem to come free        <--- what
does this mean???


I follow the troubleshooting section, can ftp to port  4559, etc... Seem
like I don't miss
any thing. Still can't send fax out.

I can't find log file in /var/spool/fax/etc/syslog nor any similar file
to tell me what is going
on. syslogd is running, but I must start hfaxd -i, since this daemon is
not running. I must
miss something.

At one time I could send a portion of my fax out, but it tooks a very
LONG time to
accomplish a partial job. I removed the hylafax package, and
re-installed again.
Now, I am stuck.

Anyone has US Robotics modem above whom is able to make HylaFAX work at
all?

Please help or point me to any WWW site that has some more info about
setting up
HylaFAX

Dean Tran

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 03 Dec 1998 10:05:10 -0600
From: "Keith G. Murphy" <keithmur@mindspring.com>
Reply-To: keithmur@mindspring.com
Organization: A small shoebox in the middle of the road
To: flexfax@sgi.com
Subject: Re: flexfax: Help: HylaFAX and US Robotics 56K voice v90 modem
Sender: owner-flexfax@celestial.com

Dean Tran wrote:
> 
> I spend few days to set up the Hylafax to work with my computer:
> 
> Pentium II 400 MHZ
> US Robotic 56K voice (v90) internal modem
> 
> I have all ghostscripts/tiff installed per instruction of HylaFAX
> homepage.
> 
> After I finish 'faxsetup' and 'faxaddmodem' my modem is in unknown
> state, that I can't dial in my ISP server. Must reset the modem with ATZ
> 
> command.  With faxaddmodem, I choose (and test each AT command)
> to my best knowledge.
> 
> Still can't send fax out with test fax file (sendfax -n -d xxx.xxx
> file_name )
> 
> faxstat -s tell me that:
> 
> HylaFAX scheduler on localhost is running
> Modem ttyS2 ...... : Waiting for modem to come free        <--- what
> does this mean???
> 
I have the misfortune of working with a US Robotics Sportster also. 
(This is just a proof-of-concept I'm working on; when I show the boss,
if he likes it, we'll buy something decent).  When you do 'faxaddmodem',
is it detecting the type of the modem correctly?  There are matching
rules that match what the modem tells you it is against the config
files.  If you are telling it that it's a Class 1 modem (which I had to
do to get things to work), it's using a 4-digit code that's coming back
from the modem to do this.  Find out through 'cu -l' what that code is
(ATI0 command).  My code, 3361, was not in the usr-xon or usr-rts files,
so I stuck it in there.  Once faxmodem was able to pick up the right
config file as a template, the right strings were used to talk to my
modem, so I got away from the problem you're having.  (You could also
just copy over usr-xon or usr-rts over to etc/config.ttyS2, and then
modify it by hand; but I like being able to have faxaddmodem do stuff
for me).

Good luck.  Of course the best answer is to get another kind of modem!

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 02 Dec 1998 12:00:47 +0000
From: "Jos Ferradeira" <sf@sfconsultores.pt>
Organization: S&F Consultores
To: HF <hylafax@astra.sif.it>
CC: hylafax <flexfax@sgi.com>
Subject: Re: flexfax: Tiff Viewer
Sender: owner-flexfax@celestial.com



HF wrote:

> I`m working on the server sidde to print a fax as soon as i receive it.
>
> The problem is with the size of the fax.
> I want to print a a laserjet or deskjet printer.
>
> The promblem is when you receive pages bigger than A4 or you scale
> everything to fit the paper or the other way should be print on different
> pages.....but i think hylafax should be patched to write tiff files with
> A4.I have used fax2ps and ghostscript but the results are good in quality
> but sometimes a part of the fax is not printed.(the upper part or the
> lower part!)
>
> I`m still working on a solution if you find or get any interesting way or
> news on how to to this please let me know.
>
> Alex

  Hi,

I sttil cannot print a received fax, on the server side, to a laserjet
printer.
Do I have to use the ghostscript? How?

Jos Ferradeira

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 03 Dec 1998 11:58:19 +1100
From: Damian A Ivereigh <damian@cisco.com>
Organization: Cisco Systems Inc
To: "Jos Ferradeira" <sf@sfconsultores.pt>
CC: HF <hylafax@astra.sif.it>, hylafax <flexfax@sgi.com>
Subject: Re: flexfax: Tiff Viewer
Sender: owner-flexfax@celestial.com

If your printer doesn't support postscript, then yes indeed you will
have to use ghostscript to convert it to another printer language like
PCL.

First run:-

ghostscript -h

This will give you a list of devices (among other things) that it
supports. Then use

ghostscript -dDEVICE=<some device> somefile.ps

Pipe the output of that into the printer.

Damian

Jos Ferradeira wrote:
> 
> HF wrote:
> 
> > I`m working on the server sidde to print a fax as soon as i receive it.
> >
> > The problem is with the size of the fax.
> > I want to print a a laserjet or deskjet printer.
> >
> > The promblem is when you receive pages bigger than A4 or you scale
> > everything to fit the paper or the other way should be print on different
> > pages.....but i think hylafax should be patched to write tiff files with
> > A4.I have used fax2ps and ghostscript but the results are good in quality
> > but sometimes a part of the fax is not printed.(the upper part or the
> > lower part!)
> >
> > I`m still working on a solution if you find or get any interesting way or
> > news on how to to this please let me know.
> >
> > Alex
> 
>   Hi,
> 
> I sttil cannot print a received fax, on the server side, to a laserjet
> printer.
> Do I have to use the ghostscript? How?
> 
> Jos Ferradeira

-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 3 Dec 1998 11:26:09 +0100
From: Carsten Hoeger <choeger@suse.de>
To: Damian A Ivereigh <damian@cisco.com>,
        Jos Ferradeira <sf@sfconsultores.pt>
Cc: HF <hylafax@astra.sif.it>, hylafax <flexfax@sgi.com>
Subject: Re: flexfax: Tiff Viewer
Sender: owner-flexfax@celestial.com

On Thu, Dec 03, Damian A Ivereigh wrote:

> If your printer doesn't support postscript, then yes indeed you will
> have to use ghostscript to convert it to another printer language like
> PCL.
> 
> First run:-
> 
> ghostscript -h
> 
> This will give you a list of devices (among other things) that it
> supports. Then use
> 
> ghostscript -dDEVICE=<some device> somefile.ps
> 
> Pipe the output of that into the printer.

tiff2ps -p -a $FILE | ps2pdf - /tmp/pdf.pdf |lpr

should work.

ps2pdf can be found at gs_lib-4.03

-- 
mfG,
	Carsten Hoeger

+-----------------------------------------------------------+
| Carsten Hoeger                   SuSE GmbH                |
| choeger@suse.de                  Schanzaeckerstr. 10      |
| http://www.suse.de               90443 Nuernberg, Germany |
+-----------------------------------------------------------+


From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 01 Dec 1998 19:04:56 -0400
From: Mario Bittencourt <mneto@buriti.com.br>
X-Accept-Language: en
To: "Hylafax (tm)" <flexfax@sgi.com>
Subject: flexfax: Defining modems : one ofr pager one for fax
Sender: owner-flexfax@celestial.com

Hi all,

    I would like to know if it is possible to define one modem to be
used by
sendfax and another one to be used by sendpage ?

    I would like to put the modems it in the same machine but It would
like to guarantee a certain
quality of service.

    Regards,

        Mario Bitencourt

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 01 Dec 1998 15:22:10 -0600
From: Tim Kelley <tpkelley@winkinc.com>
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: How to keep FAXRCVD from converting to postscript?
Sender: owner-flexfax@celestial.com

I know this is elementary for some of you, but ...


I've tried changing some things (evidently the wrong things) in the
script, but I can't for the life of me figure out how to keep FAXRCVD
from using fax2ps to convert the TIF to ps.  I want it to stay as a TIF
and get emailed to a user.

I can see the relevant portion of the script is

$FAX2PS $FILE 2>/dev/null
echo ""
echo "--MIMEBOUNDARY--"
) | 2>&1 $SENDMAIL -ffax -oi $SENDTO

This - I think - just creates an output file "$FILE" which gets passed
to sendmail ... but I don't understand bash that well ... where does the
"2" come from?  I'm trying to send the original TIFF with none of the
fancy converting - should be easy, right?

-- 
Tim Kelley
tpkelley@winkinc.com
504.243.4682

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 02 Dec 1998 12:18:37 +0000
From: Didier Legein <didierlegein@mosaic.xs4all.be>
Reply-To: didierlegein@mosaic.xs4all.be
Organization: mosaic bvba
To: "flexfax@sgi.com" <flexfax@sgi.com>
Subject: flexfax: SMS to GSM providers (if possible MOBISTAR/PROXIMUS)
Sender: owner-flexfax@celestial.com

Hi,


Has anyone successfully setup SMS to Belgian GSM providers Proximus or
Mobistar with pagesend/sendpage?

I can get to log in but after EXPECT ID, get error message get no
identification ID from paging central.

Can anyone help?

Rgds.
Didier

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 03 Dec 1998 17:52:01 +1100
From: Keith Gray <kapgray@ocean.com.au>
Organization: K & AP Gray
To: didierlegein@mosaic.xs4all.be
CC: "flexfax@sgi.com" <flexfax@sgi.com>
Subject: Re: flexfax: SMS to GSM providers (if possible MOBISTAR/PROXIMUS)
Sender: owner-flexfax@celestial.com

Didier Legein wrote:
> 
> Hi,
> 
> Has anyone successfully setup SMS to Belgian GSM providers Proximus or
> Mobistar with pagesend/sendpage?
> 
> I can get to log in but after EXPECT ID, get error message get no
> identification ID from paging central.
> 
> Can anyone help?
> 
> Rgds.
> Didier

I have just connected to Telstra (Australia) with their ixo/tap
service...
No access to Vodafone yet... they don't have TAP so far as they can tell
me...

I haven't tried a UCP connection.

There is a good log file available. /var/spool/fax/log/xxxxx
Check the most recent!

It is waiting for a "ID" response? and missing it, but the transaction
hand-shake should be in the log file.


Keith
-- 
http://members.ocean.com.au/kapgray/

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: gdoris@shaw.wave.ca
Date: Thu, 03 Dec 1998 16:10:47 -0500 (EST)
To: "Keith G. Murphy" <keithmur@mindspring.com>
Subject: Re: flexfax: Help: HylaFAX and US Robotics 56K voice v90 modem
Cc: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

I have a US Robotics 56K v90 datafax v90 modem and it's working fine.  I've
attached the config file for it.  I did have to edit some of the default
commands though.

Gerry


On 03-Dec-98 Keith G. Murphy wrote:
> Dean Tran wrote:
>> 
>> I spend few days to set up the Hylafax to work with my computer:
>> 
>> Pentium II 400 MHZ
>> US Robotic 56K voice (v90) internal modem
>> 
>> I have all ghostscripts/tiff installed per instruction of HylaFAX
>> homepage.
>> 
>> After I finish 'faxsetup' and 'faxaddmodem' my modem is in unknown
>> state, that I can't dial in my ISP server. Must reset the modem with ATZ
>> 
>> command.  With faxaddmodem, I choose (and test each AT command)
>> to my best knowledge.
>> 
>> Still can't send fax out with test fax file (sendfax -n -d xxx.xxx
>> file_name )
>> 
>> faxstat -s tell me that:
>> 
>> HylaFAX scheduler on localhost is running
>> Modem ttyS2 ...... : Waiting for modem to come free        <--- what
>> does this mean???
>> 
> I have the misfortune of working with a US Robotics Sportster also. 
> (This is just a proof-of-concept I'm working on; when I show the boss,
> if he likes it, we'll buy something decent).  When you do 'faxaddmodem',
> is it detecting the type of the modem correctly?  There are matching
> rules that match what the modem tells you it is against the config
> files.  If you are telling it that it's a Class 1 modem (which I had to
> do to get things to work), it's using a 4-digit code that's coming back
> from the modem to do this.  Find out through 'cu -l' what that code is
> (ATI0 command).  My code, 3361, was not in the usr-xon or usr-rts files,
> so I stuck it in there.  Once faxmodem was able to pick up the right
> config file as a template, the right strings were used to talk to my
> modem, so I got away from the problem you're having.  (You could also
> just copy over usr-xon or usr-rts over to etc/config.ttyS2, and then
> modify it by hand; but I like being able to have faxaddmodem do stuff
> for me).
> 
> Good luck.  Of course the best answer is to get another kind of modem!

----------------------------------
E-Mail: gdoris@shaw.wave.ca
Date: 03-Dec-98
Time: 16:08:40

This message was sent by XFMail
----------------------------------

Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\config.fax"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 2 Dec 1998 14:40:54 -0800 (PST)
From: Tim Rice <tim@trr.metro.NET>
To: Tim Kelley <tpkelley@winkinc.com>
cc: flexfax@sgi.com
Subject: Re: flexfax: How to keep FAXRCVD from converting to postscript?
Sender: owner-flexfax@celestial.com

On Tue, 1 Dec 1998, Tim Kelley wrote:

> I know this is elementary for some of you, but ...
> 
> 
> I've tried changing some things (evidently the wrong things) in the
> script, but I can't for the life of me figure out how to keep FAXRCVD
> from using fax2ps to convert the TIF to ps.  I want it to stay as a TIF

Maybe if you set FAX2PS to cat.
FAX2PS=cat

> and get emailed to a user.
> 
> I can see the relevant portion of the script is
> 
> $FAX2PS $FILE 2>/dev/null
> echo ""
> echo "--MIMEBOUNDARY--"
> ) | 2>&1 $SENDMAIL -ffax -oi $SENDTO
> 
> This - I think - just creates an output file "$FILE" which gets passed
> to sendmail ... but I don't understand bash that well ... where does the
> "2" come from?  I'm trying to send the original TIFF with none of the

The 2 is stderr. All error output is redirected to the bit bucket.

> fancy converting - should be easy, right?
> 
> 

-- 
Tim Rice			Multitalents	(707) 887-1469 (voice)
tim@trr.metro.net

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Reply-To: "Sebastien HEITZMANN" <heitzmann@iie.cnam.fr>
From: "Sebastien HEITZMANN" <Heitzmann@iie.cnam.fr>
To: <flexfax@sgi.com>
Subject: flexfax: mail the document faxed to the sender.
Date: Tue, 1 Dec 1998 22:42:50 +0100
Sender: owner-flexfax@celestial.com

<x-html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
<HTML>
<HEAD>

<META content=text/html;charset=iso-8859-1 http-equiv=Content-Type>
<META content='"MSHTML 4.72.3110.7"' name=GENERATOR>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT color=#000000 size=2>How can i modify the confirmation mail sent by 
Hylafax to integrate the image of the sented fax. Some of my system user may 
want to print the sended fax for their archive.</FONT></DIV>
<DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000 size=2>Is there a way to send by mail the result of 
their operation.</FONT></DIV>
<DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000 size=2>Thanks.</FONT></DIV>
<DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000 size=2>SEB</FONT></DIV></BODY></HTML>
</x-html>

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 02 Dec 1998 09:51:48 -0800
Reply-To: 0523297770@t-online.de
Organization: ANZER GMBH
To: BROUX <broux-werken@skynet.be>
CC: Hylafax <flexfax@sgi.com>
Subject: Re: flexfax: Rockwell internal modem
From: RICK_@t-online.de (JRGEN ANZER)
Sender: owner-flexfax@celestial.com

Ho Broux,

I regret, that I havent a solution for your problem, but I hope the
following may help you:

I guess, that your problem is related due to handshake-support. So far
so good.

On our System (SCO 3.2.4.2) there exist two device entries for each
serial port (i.e. /dev/tty1a and /dev/tty1A). Only /dev/tty1A supports
*full* modem handshake support.

Have you got any similiar device/kernel topic on your system/internal
modem?

best regards
juergen



BROUX wrote:
> 
> > Hi,
> >
> > I'm using HylaFax 4.0pl2 op Linux Redhat 5.1 box.
> >
> > I have an internal modem which got detected  as a Rockwell modem during FAXADDMODEM using class 2.
> > So i'm using the standard config.device file for this modem that came with the installation.
> >
> > This works perfectly well when sending faxes but when receiving I only get the first 4 cms.
> >
> >
> > Steven Cruysberghs
> 
> Try
> 
> ModemFlowControl:    xonxoff
> 
> in your config file (instead of the rtscts default).
> 
> I've tried the following :
> 
> ModemFlowControl:       xonxoff
> The result was exactly the same. Only the first (40 or so) lines of a received fax are actually received.
> 
> After this I've tried to also change ModemAnswerFaxBeginCmd:    "<19200><xon>" to "<19200>"
> but with no improvement.
> 
> After every change I'va run faxquit, hfaxd stop, hfaxd start, faxq to make sure the new config file is used (don't really know if this is neccassary or not).
> 
> I've included a part of my config file.
> 
> What else can I try???
> 
> Steven
> 
> # Configuration for a Rockwell-based modem not otherwise handled by
> # another prototype configuration file.  This file assumes the modem
> # is compatible with the Rc144AC, RC96AC or RC144DP.
> #
> # This configuration file sets up the modem to run at 38.4 with
> # RTS/CTS flow control used by default.  XON/XOFF is automatically
> # enabled for fax recv.  Beware of modems that also lock sending
> # to 19.2; add ModemSendBeginCmd: "<19200>" if this is required.
> # Also beware that the adaptive-answer facility, when supported,
> # is often unreliable.
> #
> #
> # Modem-related stuff: should reflect modem command interface
> # and hardware connection/cabling (e.g. flow control).
> #
> ModemType:              Class2          # use class 2 interface
> ModemRate:              38400
> #ModemFlowControl:      rtscts          # default
> ModemFlowControl:       xonxoff         # default  (I've changed this)
> 
> #
> #ModemResetCmds:        AT&F2           # what you want for a Supra
> ModemNoFlowCmd:         AT&K            # disable flow control cmd
> ModemHardFlowCmd:       AT&K3           # hardware flow control cmd
> ModemSoftFlowCmd:       AT&K4           # software flow control cmd
> ModemSetupDTRCmd:       AT&D3           # DTR off causes modem to reset
> #ModemSetupDTRCmd:      AT&D2S25=1S38=0 # Dynalink 1414VE needs this
> ModemSetupDCDCmd:       AT&C1           # DCD follows carrier
> ModemSetupAACmd:        AT+FAA=1+FCLASS=0 # enable in current class
> #
> ModemSendFillOrder:     LSB2MSB         # as expected
> ModemRecvFillOrder:     MSB2LSB         # opposite of what makes sense
> #
> ModemAnswerFaxBeginCmd: "<19200><xon>"  # modem switches on fax receive (this was default)
> #ModemAnswerFaxBeginCmd:        "<19200>"       # modem switches on fax receive  (I've changed this)
> 
> #
> # Caller ID configuration setup for Supra.
> #
> #QualifyCID:            etc/cid         # CID access control list file
> #CIDNumber:             "NMBR = "       # pattern string for phone number info
> #CIDName:               "NAME = "       # pattern string for identity info

-- 
snail: 	ANZER GmbH - Pieperstr. 14 - 32791 Lage - Germany
email: 	rick_@t-online.de
voice:	(0049) 5232 / 9777-21
fax:	(0049) 5232 / 78094

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Alan Sparks" <asparks@nss.harris.com>
To: <flexfax@sgi.com>
Subject: flexfax: Zyxel 1496e config file
Date: Tue, 1 Dec 1998 17:11:17 -0800
Sender: owner-flexfax@celestial.com

I know that this config is in the dist, but I'm having mondo probs with
squished incoming faxes.  Can someone please send me a copy of their good
working one, so I can compare?

Thanks in advance.  Just upgrading to pl2 finally.
-Alan

=============
Alan Sparks, IS Engineering Support
<asparks@nss.harris.com>
Harris Communications, Camarillo CA                   (805) 389-2430

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Campbell, Peter K" <PCampbel@vtrlmel1.telstra.com.au>
To: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: flexfax: Faxmail bug with attachments
Date: Wed, 2 Dec 1998 10:29:04 +1000 
Sender: owner-flexfax@celestial.com

I've now got faxmail working with Hylafax v4.0p12 on a Sun box
> running SunOS 5.6 (thanks for the ff00 exit status clue, David -
eventually found my batch file had #/bin/csh vs #!/bin/csh which was
the problem with no images coming out).

I've set up netpbm & the jpeg distribution & currently have it working
with gifs & jpegs.  However, there is one problem - the first attachment
does not display.  It's there in the postscript output, but effectively
invisible - I eventually worked out that the way to fix this is to add a
"showpage" to the postscript before the first attachment (others are
fine, the netpbm stuff automatically adds showpage at the end of
each).

I think this is a bug in Hylafax, with some coded needed to be added
to faxmail.c++ in the faxmail subdirectory - probably in formatMIME
so that the first time formatWithExternal is called a showpage is
added.

Anyone else noticed this problem?  For that matter, anyone else
actually tried using faxmail to send image attachments with
Hylafax?

> Peter K. Campbell
> p.campbell@trl.oz.au

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 04 Dec 1998 10:23:33 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: Faxmail bug with attachments
Cc: "Campbell, Peter K" <PCampbel@vtrlmel1.telstra.com.au>
Sender: owner-flexfax@celestial.com

At 10:29 02/12/98 +1000, "Campbell, Peter K" wrote:
>[snip]
>I've set up netpbm & the jpeg distribution & currently have it working
>with gifs & jpegs.  However, there is one problem - the first attachment
>does not display.  It's there in the postscript output, but effectively
>invisible - I eventually worked out that the way to fix this is to add a
>"showpage" to the postscript before the first attachment (others are
>fine, the netpbm stuff automatically adds showpage at the end of
>each).
>
>I think this is a bug in Hylafax, with some coded needed to be added
>to faxmail.c++ in the faxmail subdirectory - probably in formatMIME
>so that the first time formatWithExternal is called a showpage is
>added.
>[snip]

Hi, Peter,

You may be exactly the person to help us with this. Yes, the bug is
known - it's on the TODO list as report #0019. There's was long thread
in the mailing list archives in October 1997 with the subject

            "postscript attachments show up at 5% size"

and since the mailing list archives are down at the moment, I will put
them on my own website over the weekend for your interest. Ben Parker,
Louis Reinard, and myself concluded that an additional 'showpage'
instruction was required before a postscript attachment if on the first
page of a fax.

Ben produced some workrounds, this is one example :

#!/usr/bin/bash
#This script will let the GIF image through but 
#will try to squeeze it on the same page
#/usr/local/sbin/faxmail/image/gif
giftopnm $1 | ppmtopgm | pnmtops -scale 20

here is another :

#!/usr/bin/perl
#
# This file needs to be called:
# /usr/local/sbin/faxmail/application/postscript
# and have the +x bit set.
#
# Script to work with Hylafax's faxmail.
# It attempts to blow up attached postscript to full size on
# the next page, instead of shrinking it to 5% on page one 
# which is the default in faxmail.
#
# Your mileage will definitely vary.
# Seems to work with golfer.ps and tiger.ps in the 
# ghostscript/3.33/examples directory
#
# Ben Parker <ben@dha.unon.org> Dec 97 
#
#
open (TEMP, "$ARGV[0]") || die "$ARGV[0] file not found.\n";
print STDERR "$ARGV[0] opened ...\n";
while (<TEMP>) {
	if ($_ =~ "EndProlog") {
		print "\% line inserted to blow up size\n";
		print "showpage\n";
	}
	print $_;
}

# end of script

The reasons for not incorporating this approach into faxmail.c++ and
textfmt.c++ is, in my opinion (please put me right if you disagree):

1. It is not legal postscript code. Ghostview thinks that there is 
   only one page, but shows either page image at random.

2. The solution of forcing the attachment onto a new page is too crude;
   what if the attachment is a page footer banner? Or what if there is
   no message body at all before the attachment?

3. It would still fail for unusual multi-part situations, particularly
   where a text/plain attachment follows an application/postscript
   attachment. 

So a more flexible solution based on a wrapper around each attachment
was being considered. Which is where in the story the mystery of the 
faxmail prologue file, faxmail.ps, comes in. No-one knows what this
file is for. The default file, shown below, has no effect whatsoever
on the generated image :

   %       $Id: faxmail.c++,v 1.56 1996/07/02 19:49:58 sam Exp sam
   %
   % faxmail prologue.
   %
   /EPSbegin{save gsave 20 20 scale 200 dict begin}def
   /EPSend{end grestore restore}def

But if you are creating functions to put at the start and end of a
postscript attachment, you might call them EPSbegin and EPSend, perhaps?
Like Robinson Crusoe walking on the beach, suddenly there's a sign
that someone been here before....

And this where we are stuck.

If you have some expertise in the Postscript language, and happy to 
delve into the faxmail and textfmt C++ source code, then your help and
input would be very much appreciated.

Regards,
Phil Watkinson,
Boston, UK.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 04 Dec 1998 17:40:36 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: flexfax: Faxmail bug mailing list archive on web
Cc: "Campbell, Peter K" <PCampbel@vtrlmel1.telstra.com.au>
Sender: owner-flexfax@celestial.com

Hi,

As promised, circa 30 messages from the mailing list concerning
the faxmail attachment bug, report #0019, have been published
on my web site at :-

     http://www.elgro.demon.co.uk/faxmail/maillist.html

Thanks to Formail and MHonArc.

Cheers,
Phil Watkinson,
Boston, UK.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Guy Pelletier" <Guy.Pelletier.guy@nt.com>
To: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: flexfax: Security Question
Date: Wed, 2 Dec 1998 10:50:02 -0500
Sender: owner-flexfax@celestial.com

Hi,

We have the HylaFAX server running on an Ultra-10 Solaris box
connected to our CORWAN (internal network).

Hardware info:
	Modem - USRobotics Courier V Everything (56kbps)
	Plugged into an Ultra- 10
	Ultra 10 Running the HylaFAX server Version 4.0 patch level 2

Because of secutiry issues in trying to get our security department
to provide us with a faxing line they need to some security 
information.

Below is the discussion that I have been having with them. I'm wondering
if someone can provide me an answer to their question.

First email ...

----------
Guy;
	Can you provide some information on how the HylaFax server works and
how it protects against modem connectivity.

Regards..
----------

my reply ...

----------

Just so that I don't provide any incorrect information, I think it would be
best for me to point you to the HylaFAX website.
There you should be able to find alot of useful information.

http://www.sisis.de/hylafax/

Although one thing that we have done is:
In the Solaris AdminTool we have setup up the faxing port where service
enable is not enabled (this disables getty for that port).
Not disabling this, conflicts with HylaFAX which manages the port itself
with it's own process.

Guy

----------

and finally his reply to which I have no answer ...

----------

Guy;
	Unfortunately I do not have the time to research the HylaFax product
that you would like to use. Do you have someone there that is familiar with
the product and can explain to me what the security features are to prevent
non-fax access.

----------

Thanks!
-----------------------------------------------------
Guy Pelletier - Software Developer
Advanced Collaborative Technologies
Nortel - Northern Telecom
Dept. 8M83	ESN: 39+38638
Phone: (613) 763-8638	
FAX: (613) 765-7314
-----------------------------------------------------

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 2 Dec 1998 09:15:06 +0000
From: Andy Smith <abs@maunsell.co.uk>
To: HylaFax Mailing List <flexfax@sgi.com>
Subject: flexfax: problems receiving with multitech
Organization: Maunsell IT Unit, System Support Group
X-Operating-System: SunOS 5.5.1 i86pc
Sender: owner-flexfax@celestial.com

Hi,

I have inbound and outbound faxes working fine on a 28800 multitech,
(MODEM MULTI-TECH SYSTEMS MT2834ZDXI/0312 - v4.0pl2/Solaris/sparc) and
am trying now to get a second modem working (thanks all, got cua/a
working fine now).  I have a number of (older) multitechs which I
thought, given the success of the MT2834ZDXI, I would try.  They
identify themselves as :-

MODEM MULTI-TECH SYSTEMS MT1432BLK/0109A

and faxaddmodem configures them the same as the MT2834ZDXI.  However,
I have tried 2 of them, they send OK, but wont receive, I have included
below the error they give.

Can anyone shed any light on the cause of the error message
"[8:+FHNG:73]"?  This is repeatable from a number of different fax
machines.

The MT1432BLK is not mentioned specifically in the documentation,
though the MT1432 range is one of the recommended modems.  I presume
therefore that the modem configuration (dip switches - ugh!) is at
fault.

Thanks.

-----Forwarded message from The HylaFAX Receive Agent <fax@maunsell.co.uk>-----

An attempt to receive facsimile on cua_a failed because:

    T.30 T2 timeout, expected page not received

    ---- Transcript of session follows ----

Dec 02 08:30:49.14: [ 7271]: SESSION BEGIN 00002091 441816631490
Dec 02 08:30:49.15: [ 7271]: <-- [4:ATA\r]
Dec 02 08:30:58.61: [ 7271]: --> [5:+FCON]
Dec 02 08:30:58.61: [ 7271]: ANSWER: FAX CONNECTION
Dec 02 08:30:58.62: [ 7271]: RECV FAX: begin
Dec 02 08:31:03.84: [ 7271]: --> [28:+FTSI:"     9 0181 663 6723"]
Dec 02 08:31:03.84: [ 7271]: REMOTE TSI "9 0181 663 6723"
Dec 02 08:31:03.84: [ 7271]: --> [21:+FDCS:0,5,0,2,0,0,0,1]
Dec 02 08:31:03.85: [ 7271]: REMOTE wants 14400 bit/s
Dec 02 08:31:03.85: [ 7271]: REMOTE wants page width 1728 pixels in 215 mm
Dec 02 08:31:03.86: [ 7271]: REMOTE wants unlimited page length 
Dec 02 08:31:03.86: [ 7271]: REMOTE wants 3.85 line/mm
Dec 02 08:31:03.86: [ 7271]: REMOTE wants 1-D MR
Dec 02 08:31:03.87: [ 7271]: --> [2:OK]
Dec 02 08:31:03.87: [ 7271]: <-- [7:AT+FDR\r]
Dec 02 08:31:05.33: [ 7271]: --> [5:+FCFR]
Dec 02 08:31:05.33: [ 7271]: --> [28:+FTSI:"     9 0181 663 6723"]
Dec 02 08:31:05.33: [ 7271]: REMOTE TSI "9 0181 663 6723"
Dec 02 08:31:05.34: [ 7271]: --> [21:+FDCS:0,5,0,2,0,0,0,1]
Dec 02 08:31:05.34: [ 7271]: REMOTE wants 14400 bit/s
Dec 02 08:31:05.35: [ 7271]: REMOTE wants page width 1728 pixels in 215 mm
Dec 02 08:31:05.35: [ 7271]: REMOTE wants unlimited page length 
Dec 02 08:31:05.35: [ 7271]: REMOTE wants 3.85 line/mm
Dec 02 08:31:05.36: [ 7271]: REMOTE wants 1-D MR
Dec 02 08:31:14.25: [ 7271]: --> [8:+FHNG:73]
Dec 02 08:31:14.25: [ 7271]: REMOTE HANGUP: T.30 T2 timeout, expected page not received (code 73)
Dec 02 08:31:14.26: [ 7271]: RECV FAX (00002091): recvq/fax01831.tif from 9 0181 663 6723, route to <unspecified>, 0 pages in 0:16
Dec 02 08:31:14.27: [ 7271]: RECV FAX: T.30 T2 timeout, expected page not received
Dec 02 08:31:14.30: [ 7271]: RECV FAX (00002091): session with 9 0181 663 6723 terminated abnormally: T.30 T2 timeout, expected page not received
Dec 02 08:31:14.30: [ 7271]: RECV FAX: bin/faxrcvd "recvq/fax01831.tif" "cua_a" "00002091" "T.30 T2 timeout, expected page not received"

-----End of forwarded message-----

-- 
  _          __         Maunsell Ltd, IT Unit    Tel  : 0181-663-6565
 /_|   _/   (  _  '_//  160 Croydon Road,        Fax  : 0181-663-6723
(  |/)(/(/ __)//)/ //)  Beckenham, Kent BR3 4DE  Email: abs@maunsell.co.uk
        /               England.                 -or- abs@maunsl00.demon.co.uk

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: Mario Bittencourt <mneto@buriti.com.br>
cc: "Hylafax (tm)" <flexfax@sgi.com>
From: darren@hylafax.org
Subject: Re: flexfax: Defining modems : one ofr pager one for fax 
Date: Wed, 02 Dec 1998 17:15:33 +0000
Sender: owner-flexfax@celestial.com

In message <36647618.D6532508@buriti.com.br>, Mario Bittencourt writes:
>Hi all,
>
>    I would like to know if it is possible to define one modem to be
>used by
>sendfax and another one to be used by sendpage ?
>
>    I would like to put the modems it in the same machine but It would
>like to guarantee a certain
>quality of service.

See:

	http://www.hylafax.org/HylaFAQ/Q87.html

Alternatively, man 5 config and search for info on the ModemClass config keyword. Then use the -h commandline flag to sendfax and sendpage to queue faxes/pages to the appropriate modems.

-Darren

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 2 Dec 1998 11:47:50 -0500 (EST)
From: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
To: Guy Pelletier <Guy.Pelletier.guy@nt.com>
Cc: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: Re: flexfax: Security Question
Sender: owner-flexfax@celestial.com

-----BEGIN PGP SIGNED MESSAGE-----

On Wed, 2 Dec 1998, Guy Pelletier wrote:

> http://www.sisis.de/hylafax/
> 
> Although one thing that we have done is:
> In the Solaris AdminTool we have setup up the faxing port where service
> enable is not enabled (this disables getty for that port).
> Not disabling this, conflicts with HylaFAX which manages the port itself
> with it's own process.
> 
> Guy
> 
> ----------
> 
> and finally his reply to which I have no answer ...
> 
> ----------
> 
> Guy;
> 	Unfortunately I do not have the time to research the HylaFax product
> that you would like to use. Do you have someone there that is familiar with
> the product and can explain to me what the security features are to prevent
> non-fax access.
> 
> ----------

Hi. I do some security and network consulting, as well as writing some
of the patches for HylaFAX and running several modest modem pools
myself. HylaFAX is fax/modem freeware, and is therefore extremely
flexible and powerful but is not a security system.  As an incidental
use (and a very handy one) it negotiates data connections to the local
"getty" similar to that provided through UUCP and most other data
modem handling systems.

It is a simple matter to select a more secure getty for default use,
in the "setup.cache" file or when running the "faxsetup" script to
install HylaFAX, to select an invalid getty or more secured getty. It
is also possible to lock the modems into "fax only" mode by
configuring them correctly, or to configure the system to run an
extra challenge-response by putting a wrapper on your local getty,
or to set up "dialback" behavior. These are not generally built-in, and
would require some local configuration and double-checking to make
sure they did precisely what you want.

			Nico Kadel-Garcia
			Senior Engineer, CIRL 
			Mass. Eye and Ear Infirmary
			raoul@cirl.meei.harvard.edu

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBNmVvMT/+ItycgIJRAQH+9AP8CPv2F6oTwhMA+Hw339S/liGmOxlgBKUE
pmS7FD4DAJiEqvYqVjNr0lwJk6h7P1HAaYbRRy1+vyLB2esrLpLgDLRwc8X0GXrp
vboApq1YlZNRmGFyYe6or6rJOtL/osEpaPV9ikMqkJ0WFagrPsKUTrDQoalLTY62
rKP0KxcUgKI=
=05qf
-----END PGP SIGNATURE-----

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 03 Dec 1998 11:50:48 +1100
From: Damian A Ivereigh <damian@cisco.com>
Organization: Cisco Systems Inc
To: Guy Pelletier <Guy.Pelletier.guy@nt.com>
CC: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: Re: flexfax: Security Question
Sender: owner-flexfax@celestial.com

Guy Pelletier wrote:
> 
> Hi,
> 
> We have the HylaFAX server running on an Ultra-10 Solaris box
> connected to our CORWAN (internal network).
> 
> Hardware info:
>         Modem - USRobotics Courier V Everything (56kbps)
>         Plugged into an Ultra- 10
>         Ultra 10 Running the HylaFAX server Version 4.0 patch level 2
> 
> Because of secutiry issues in trying to get our security department
> to provide us with a faxing line they need to some security
> information.
> 
> Below is the discussion that I have been having with them. I'm wondering
> if someone can provide me an answer to their question.
> 
> First email ...
> 
> ----------
> Guy;
>         Can you provide some information on how the HylaFax server works and
> how it protects against modem connectivity.
> 
> Regards..
> ----------
> 
> my reply ...
> 
> ----------
> 
> Just so that I don't provide any incorrect information, I think it would be
> best for me to point you to the HylaFAX website.
> There you should be able to find alot of useful information.
> 
> http://www.sisis.de/hylafax/
> 
> Although one thing that we have done is:
> In the Solaris AdminTool we have setup up the faxing port where service
> enable is not enabled (this disables getty for that port).
> Not disabling this, conflicts with HylaFAX which manages the port itself
> with it's own process.
> 
> Guy
> 
> ----------
> 
> and finally his reply to which I have no answer ...
> 
> ----------
> 
> Guy;
>         Unfortunately I do not have the time to research the HylaFax product
> that you would like to use. Do you have someone there that is familiar with
> the product and can explain to me what the security features are to prevent
> non-fax access.
> 
> ----------

Having just gone through the same hooplah with our security boys, if I
understand correctly they want to make sure that there is no possibility
of anyone connecting in using this modem. My answer was three lines of
security, the first two of which only work if you do not need to recieve
faxes:-

1) If you are going through a PABX, you may be able to configure the
PABX to not accept incoming calls to this line, or even not associate
the line with a telephone number.

2) You configure the modem to not answer calls (set RingsBeforeAnswer to
zero). Call the number to make sure this works.

3) When you faxsetup, when it asks for the name of the getty program
(for recieving data calls), change this to something innoccuous like
/bin/false. You may be able to change this editing etc/setup.cache as
well. Thus you won't get a live getty if a data call comes in (actually,
the line will disconnect).

You will also need to think about how you prevent a future
misconfiguration. Some testing of this frequently, particularly if you
are relying on only the third method. You might consider having a
machine that automatically dials your faxmodem every day or so and
attempts to make a data call. If it succeeds then it should page someone
or something like that.

Security people take modems very seriously and rightly so, they are a
potentially big hole in any firewall your company has. One of the
problems with firewalls, is they tend to make people less security
concious inside the firewall. Thus any cracker breaking in through the
firewall can have a field day once inside.

The key thing is to work with them and try and convince them you
understand the implications of a screw up and have taken steps to
prevent it. Hopefully you will earn their trust in the process. 

Hope this helps.

Damian


-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 03 Dec 1998 12:37:53 +0100
From: Alain Berger <bga@payserv.telekurs.com>
To: flexfax@sgi.com
Subject: flexfax: Unable to transmit page (giving up after 3 attempts)
Sender: owner-flexfax@celestial.com

hi all,

we're happy working with HylaFAX 4.0pl2 / SusE Linux 5.3 / Zyxel 1496e
(send-only), but there's a problem with certain destinations:
trying to send a one-page document, the user got a failure message as
below, but in fact the page was sent three times successfully.

any explanations for the communication-errors in this report ?

---

Your facsimile job to 5030 failed because:
    Unable to transmit page (giving up after 3 attempts); Giving up
after 3 attempts to send same page

    ---- Transcript of session follows ----

Dec 03 10:53:03.77: [28660]: SESSION BEGIN 00001115 4112795030
Dec 03 10:53:03.77: [28660]: SEND FAX: JOB 711 DEST 2795030 COMMID
00001115
Dec 03 10:53:03.77: [28660]: DELAY 2600 ms
Dec 03 10:53:06.37: [28660]: <--
[44:AT&B1&N0&S0*F0S18=2S38.3=1S39=0E0V1Q0S0=0H0\r]
Dec 03 10:53:06.59: [28660]: --> [2:OK]
Dec 03 10:53:06.59: [28660]: <-- [21:ATS8=2S7=60&H3&D2&C1\r]
Dec 03 10:53:06.61: [28660]: --> [2:OK]
Dec 03 10:53:06.61: [28660]: <-- [14:AT+FCLASS=2.0\r]
Dec 03 10:53:06.74: [28660]: --> [2:OK]
Dec 03 10:53:06.74: [28660]: <-- [9:AT+FLO=2\r]
Dec 03 10:53:06.75: [28660]: --> [2:OK]
Dec 03 10:53:06.75: [28660]: <-- [9:AT+FPP=0\r]
Dec 03 10:53:06.76: [28660]: --> [2:OK]
Dec 03 10:53:06.76: [28660]: <-- [9:AT+FBO=0\r]
Dec 03 10:53:06.77: [28660]: --> [2:OK]
Dec 03 10:53:06.77: [28660]: <-- [10:AT+FCT=30\r]
Dec 03 10:53:06.78: [28660]: --> [2:OK]
Dec 03 10:53:06.78: [28660]: <-- [15:AT+FNR=1,1,1,1\r]
Dec 03 10:53:06.79: [28660]: --> [2:OK]
Dec 03 10:53:06.79: [28660]: <-- [9:AT+FIE=0\r]
Dec 03 10:53:06.80: [28660]: --> [2:OK]
Dec 03 10:53:06.80: [28660]: <-- [23:AT+FCC=1,5,2,2,1,0,0,0\r]
Dec 03 10:53:06.82: [28660]: --> [2:OK]
Dec 03 10:53:06.82: [28660]: <-- [5:ATM0\r]
Dec 03 10:53:06.83: [28660]: --> [2:OK]
Dec 03 10:53:06.83: [28660]: <-- [14:AT+FCLASS=2.0\r]
Dec 03 10:53:07.06: [28660]: --> [2:OK]
Dec 03 10:53:07.06: [28660]: <-- [9:AT+FLO=2\r]
Dec 03 10:53:07.17: [28660]: --> [2:OK]
Dec 03 10:53:07.17: [28660]: <-- [9:AT+FPP=0\r]
Dec 03 10:53:07.28: [28660]: --> [2:OK]
Dec 03 10:53:07.28: [28660]: <-- [9:AT+FBO=0\r]
Dec 03 10:53:07.39: [28660]: --> [2:OK]
Dec 03 10:53:07.39: [28660]: <-- [10:AT+FCT=30\r]
Dec 03 10:53:07.50: [28660]: --> [2:OK]
Dec 03 10:53:07.50: [28660]: <-- [15:AT+FNR=1,1,1,1\r]
Dec 03 10:53:07.61: [28660]: --> [2:OK]
Dec 03 10:53:07.61: [28660]: <-- [9:AT+FIE=0\r]
Dec 03 10:53:07.72: [28660]: --> [2:OK]
Dec 03 10:53:07.72: [28660]: <-- [23:AT+FCC=1,5,2,2,1,0,0,0\r]
Dec 03 10:53:07.84: [28660]: --> [2:OK]
Dec 03 10:53:07.84: [28660]: <-- [29:AT+FLI="TK Faxservice Line1"\r]
Dec 03 10:53:07.96: [28660]: --> [2:OK]
Dec 03 10:53:07.96: [28660]: DIAL 5030
Dec 03 10:53:07.96: [28660]: <-- [12:ATDT2795030\r]
Dec 03 10:53:30.92: [28660]: --> [4:+FCO]
Dec 03 10:53:30.92: [28660]: --> [112:+FNF:00 00 25 00 00 00 12 10 4D 02
00 50 00 2A B8 2C 00 00 25 01 5A 4E 41 4E
49 46 20 53 52 55 4B 45 4C 45 54   ]
Dec 03 10:53:30.92: [28660]: REMOTE NSF "00 00 25 00 00 00 12 10 4D 02
00 50 00 2A B8 2C 00 00 25 01 5A 4E 41 4E 49
46 20 53 52 55 4B 45 4C 45 54"
Dec 03 10:53:31.05: [28660]: --> [26:+FCI:      +41 1 279 5030 ]
Dec 03 10:53:31.05: [28660]: REMOTE CSI "+41 1 279 5030"
Dec 03 10:53:31.05: [28660]: --> [20:+FIS:1,5,0,2,1,0,0,2]
Dec 03 10:53:31.05: [28660]: --> [2:OK]
Dec 03 10:53:31.05: [28660]: REMOTE best rate 14400 bit/s
Dec 03 10:53:31.05: [28660]: REMOTE max page width 1728 pixels in 215 mm
Dec 03 10:53:31.05: [28660]: REMOTE max unlimited page length 
Dec 03 10:53:31.05: [28660]: REMOTE best vres 7.7 line/mm
Dec 03 10:53:31.05: [28660]: REMOTE best format 2-D MR
Dec 03 10:53:31.05: [28660]: REMOTE best 10 ms, 5 ms/scanline
Dec 03 10:53:31.05: [28660]: USE 14400 bit/s
Dec 03 10:53:31.05: [28660]: USE 10 ms, 5 ms/scanline
Dec 03 10:53:31.05: [28660]: SEND file "docq/doc1153.ps;41"
Dec 03 10:53:31.05: [28660]: USE page width 1728 pixels in 215 mm
Dec 03 10:53:31.05: [28660]: USE unlimited page length 
Dec 03 10:53:31.05: [28660]: USE 7.7 line/mm
Dec 03 10:53:31.05: [28660]: USE 2-D MR
Dec 03 10:53:31.05: [28660]: <-- [23:AT+FIS=1,5,0,2,1,0,0,2\r]
Dec 03 10:53:31.17: [28660]: --> [2:OK]
Dec 03 10:53:31.17: [28660]: <-- [7:AT+FDT\r]
Dec 03 10:53:38.34: [28660]: --> [20:+FCS:1,5,0,2,1,0,0,2]
Dec 03 10:53:38.34: [28660]: --> [7:CONNECT]
Dec 03 10:53:38.34: [28660]: SEND begin page
Dec 03 10:53:55.84: [28660]: SENT 30538 bytes of data
Dec 03 10:53:55.84: [28660]: SEND 2D RTC
Dec 03 10:53:55.84: [28660]: SEND end page
Dec 03 10:53:55.84: [28660]: SEND send EOP (no more pages or documents)
Dec 03 10:54:04.14: [28660]: --> [5:ERROR]
Dec 03 10:54:04.14: [28660]: SEND recv RTN (retrain negative)
Dec 03 10:54:04.14: [28660]: <-- [7:AT+FDT\r]
Dec 03 10:54:11.10: [28660]: --> [20:+FCS:1,5,0,2,1,0,0,2]
Dec 03 10:54:11.10: [28660]: --> [7:CONNECT]
Dec 03 10:54:11.10: [28660]: SEND begin page
Dec 03 10:54:28.60: [28660]: SENT 30538 bytes of data
Dec 03 10:54:28.60: [28660]: SEND 2D RTC
Dec 03 10:54:28.60: [28660]: SEND end page
Dec 03 10:54:28.60: [28660]: SEND send EOP (no more pages or documents)
Dec 03 10:54:36.91: [28660]: --> [5:ERROR]
Dec 03 10:54:36.91: [28660]: SEND recv RTN (retrain negative)
Dec 03 10:54:36.91: [28660]: <-- [7:AT+FDT\r]
Dec 03 10:54:43.89: [28660]: --> [20:+FCS:1,5,0,2,1,0,0,2]
Dec 03 10:54:43.89: [28660]: --> [7:CONNECT]
Dec 03 10:54:43.89: [28660]: SEND begin page
Dec 03 10:55:01.39: [28660]: SENT 30538 bytes of data
Dec 03 10:55:01.39: [28660]: SEND 2D RTC
Dec 03 10:55:01.39: [28660]: SEND end page
Dec 03 10:55:01.39: [28660]: SEND send EOP (no more pages or documents)
Dec 03 10:55:09.70: [28660]: --> [5:ERROR]
Dec 03 10:55:09.70: [28660]: SEND recv RTN (retrain negative)
Dec 03 10:55:09.70: [28660]: <-- [7:AT+FKS\r]
Dec 03 10:55:11.21: [28660]: --> [7:+FHS:02]
Dec 03 10:55:11.21: [28660]: REMOTE HANGUP: Call aborted,  from +FK or
<CAN> (code 2)
Dec 03 10:55:11.21: [28660]: --> [5:ERROR]
Dec 03 10:55:11.21: [28660]: MODEM Command error
Dec 03 10:55:11.21: [28660]: SEND: Unable to transmit page (giving up
after 3 attempts); Giving up after 3 attempts
to send same page "docq/doc1153.ps;41", dirnum 0
Dec 03 10:55:11.21: [28660]: <-- [5:ATH0\r]
Dec 03 10:55:11.61: [28660]: --> [10:NO CARRIER]
Dec 03 10:55:11.61: [28660]: MODEM No carrier
Dec 03 10:55:11.61: [28660]: SESSION END

    ---- Unsent job status ----

   Destination: 5030
         JobID: 711
       GroupID: 711
        Sender: user name
      Mailaddr: user@mailer
        CommID: 00001115
Submitted From: pc
    Page Width: 194 (mm)
   Page Length: 281 (mm)
    Resolution: 196 (lpi)
        Status: Unable to transmit page (giving up after 3 attempts);
Giving up after 3 attempts to send same page
       Dialogs: 3 (exchanges with remote device)
         Dials: 0 (consecutive failed calls to destination)
         Calls: 3 (total phone calls placed)
         Pages: 0 (pages transmitted)
      TotPages: 1 (total pages to transmit)
      Attempts: 3 (attempts to send current page)
        Dirnum: 0 (directory of next page to send)

    ---- Documents submitted for transmission ----

The following documents were submitted for transmission and are
available on the server for reuse until they are automatically
purged when this job is removed.  Documents may also be manually
removed using the faxrm command; consult faxrm(1) for information.

Filename                 Size Type
docq/doc1153.ps          8899 PostScript

---

thanx for any help

cheers,
al

-- 
email: bga@payserv.ch
snail: Telekurs Payserv AG, Hardturmstr.201, CH-8021 Zrich
voice: +41 1 279 33 29
fax:   +41 1 446 74 61

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 03 Dec 1998 17:10:31 +0100
From: Philipp Steinkrueger <philipp@oberberg-online.de>
Organization: Oberberg-Online Infosysteme
To: flexfax@sgi.com
Subject: flexfax: Problems with ModemClass and config-files
Sender: owner-flexfax@celestial.com

Hello,

i am trying to set my two modems (ttyS1 and ttyS0) in one Class to make
each of them send and recieve.
I read about the ModemClass paramter, but i am not sure where to set it.
I have many config files:
hyla.conf
hfaxd.conf
config
config.ttyS1
config.ttyS0

I tried to set it in hfaxd.conf, because i got no response at the
others.
When i set it there, i get the error msg "unknown paramter modemclass"
reportet.

What to do ??

Hylafax 4.0 pl2 installed Debian binary.
-- 
Philipp Steinkrger

Oberberg-Online Informations Systeme
Email: steinkrueger@oberberg-online.de

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Trottier, Dan" <DTrottier@philipinc.com>
To: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: flexfax: Need a point in the right direction
Date: Thu, 3 Dec 1998 13:46:12 -0500 
Sender: owner-flexfax@celestial.com

Hi,

I've finally installed version 4.0pl2 on an AIX 4.2.1 box after installing
the gcc 2.8.0 patches. I've
run faxsetup and all seems fine. I have a USRobotics 28.8 Sportster modem on
tty2 and I can 
tip to it and it looks fine. I ran faxmodem tty2 and that seemed happy. BUT
the queued faxes are
not actually being turned into TIFFs and send out via the modem. They are
just queue in the docq
directory as  doc1.ps.1, doc2.ps.2, and so on.

I had to change the TCP/IP port number from 4557 and 4559 to 4321 and 4322
respectively
since our Oracle database has processes connecting to those ports. I changed
the faxrcvd
file in /var/spool/fax/bin to set PORT=4322 and ran the fax daemon as:

     hfaxd -i 4322 -o 4321 -s 444

and started the faxq daemon. The output in the daemon.debug syslog file
seems to show both
programs were happy with this.

I then sent the test faxes with the command:

    sendfax -n -d 1234567 /tmp/test.txt

I can see the jobs queued with the faxstat -s command but that is where
everything just sits. It
seems like the faxq program is failing somewhere along the line and not able
to convert the files
to TIFFs and start the faxsend program. But there are no real error messages
showing up in the
syslog files nor in the log directory. I have the tiff software installed
and ghostscript is installed.

I'm wondering how one goes about figuring out just where the problem is? Can
someone point
me in the right direction and narrow down what aspects of the software I
should look at?

Regards,

dan

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: noelm@iname.com
Date: Thu, 3 Dec 1998 20:22:02 -0500 (EST)
To: flexfax@sgi.com
Subject: flexfax: SEND FAILED: No answer (T.30 T1 timeout)
Sender: owner-flexfax@celestial.com

hi,

I couldn't find this FaxSend problem in the FAQ
...
can someone explain what is the problem?

i appreciate any help

thanks

noel mistula

----------------------------------------------------------------
Get your free email from AltaVista at http://altavista.iname.com

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 04 Dec 1998 04:40:32 +0000
From: Alan Sparks <asparks@nss.harris.com>
Organization: Harris Communications
X-Accept-Language: en
To: Tom <tom@uniserve.com>
CC: flexfax@sgi.com
Subject: Re: flexfax: accessing recvq directory
Sender: owner-flexfax@celestial.com

You might want to try making sure that HylaFAX saves the faxes with a
permission that can be read by others... note that the display shows
that only the owner (root) can read the files.

Try putting a line like:
RecvFileMode:	0644

in your spool/etc/config file and restart the faxq daemon.  New faxes
should be more accessible.  You'll need to manually reset the
permissions on the existing fax files for other-read.

-Alan



Tom wrote:
> 
>   I'm having difficulty accessing faxes in recvq via hfaxd.  I can see the
> faxes:
> 
> test1# faxstat -r
> HylaFAX scheduler on test1.office: Running
> Modem cuaa1 (+1.604.856.7796): Running and idle
> 
> Protect Page  Owner        Sender/TSI  Recvd@ Filename
> -rw----    1  root            8567685 Wed04PM fax00005.tif
> -rw----    2  root            8567685 Tue06PM fax00004.tif
> -rw----    1  root            8567685 Wed04PM fax00006.tif
> -rw----    1  root            8567685 Wed04PM fax00007.tif
> -rw----    1  root            8567796 Wed04PM fax00008.tif
> -rw----    1  root            8567796 Wed04PM fax00009.tif
> -rw----    1  root         6048567796 Wed05PM fax00010.tif
> -rw----    1  root            8567796 Wed05PM fax00011.tif
> -rw----    1  root            8567796 Wed05PM fax00012.tif
> -rw----    1  root            8567796 Wed05PM fax00013.tif
> -rw----    1  root            8567796 Wed06PM fax00014.tif
> test1#
> 
>   But I can't access them via FTP to 4559:
> 
> test1# ftp localhost 4559
> Connected to localhost.
> 220 test1.office.uniserve.ca server (HylaFAX (tm) Version 4.0pl2) ready.
> Name (localhost:tom): anonymous
> 230 User anonymous logged in.
> Remote system type is UNIX.
> Using binary mode to transfer files.
> ftp> cd recvq
> 250 CWD command successful.
> ftp> dir
> 200 PORT command successful.
> 150 Opening new data connection for ".".
> -rw----    1  anonymou        8567685 Wed04PM fax00005.tif
> -rw----    2  anonymou        8567685 Tue06PM fax00004.tif
> -rw----    1  anonymou        8567685 Wed04PM fax00006.tif
> -rw----    1  anonymou        8567685 Wed04PM fax00007.tif
> -rw----    1  anonymou        8567796 Wed04PM fax00008.tif
> -rw----    1  anonymou        8567796 Wed04PM fax00009.tif
> -rw----    1  anonymou     6048567796 Wed05PM fax00010.tif
> -rw----    1  anonymou        8567796 Wed05PM fax00011.tif
> -rw----    1  anonymou        8567796 Wed05PM fax00012.tif
> -rw----    1  anonymou        8567796 Wed05PM fax00013.tif
> -rw----    1  anonymou        8567796 Wed06PM fax00014.tif
> 226 Transfer complete.
> ftp> get fax00014.tif
> local: fax00014.tif remote: fax00014.tif
> 200 PORT command successful.
> 550 fax00014.tif: Operation not permitted.
> ftp>
> 
>   As you can see, I get a "550 fax00014.tif: Operation not permitted."
> response from hfaxd.
> 
>   etc/hosts has the following:
> 
> localhost:68::
> 
>   I used a uid of 68, because that is what received FAXes seem to be
> stored at.  No mention in manuals about id received FAXes might be stored
> as...
> 
>   So, how might I get at the FAXes?
> 
> Tom

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 3 Dec 1998 17:44:04 -0800 (PST)
From: Tom <tom@uniserve.com>
To: flexfax@sgi.com
Subject: flexfax: accessing recvq directory
Sender: owner-flexfax@celestial.com


  I'm having difficulty accessing faxes in recvq via hfaxd.  I can see the
faxes:

test1# faxstat -r
HylaFAX scheduler on test1.office: Running
Modem cuaa1 (+1.604.856.7796): Running and idle

Protect Page  Owner        Sender/TSI  Recvd@ Filename
-rw----    1  root            8567685 Wed04PM fax00005.tif
-rw----    2  root            8567685 Tue06PM fax00004.tif
-rw----    1  root            8567685 Wed04PM fax00006.tif
-rw----    1  root            8567685 Wed04PM fax00007.tif
-rw----    1  root            8567796 Wed04PM fax00008.tif
-rw----    1  root            8567796 Wed04PM fax00009.tif
-rw----    1  root         6048567796 Wed05PM fax00010.tif
-rw----    1  root            8567796 Wed05PM fax00011.tif
-rw----    1  root            8567796 Wed05PM fax00012.tif
-rw----    1  root            8567796 Wed05PM fax00013.tif
-rw----    1  root            8567796 Wed06PM fax00014.tif
test1# 

  But I can't access them via FTP to 4559:

test1# ftp localhost 4559
Connected to localhost.
220 test1.office.uniserve.ca server (HylaFAX (tm) Version 4.0pl2) ready.
Name (localhost:tom): anonymous
230 User anonymous logged in.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> cd recvq
250 CWD command successful.
ftp> dir
200 PORT command successful.
150 Opening new data connection for ".".
-rw----    1  anonymou        8567685 Wed04PM fax00005.tif
-rw----    2  anonymou        8567685 Tue06PM fax00004.tif
-rw----    1  anonymou        8567685 Wed04PM fax00006.tif
-rw----    1  anonymou        8567685 Wed04PM fax00007.tif
-rw----    1  anonymou        8567796 Wed04PM fax00008.tif
-rw----    1  anonymou        8567796 Wed04PM fax00009.tif
-rw----    1  anonymou     6048567796 Wed05PM fax00010.tif
-rw----    1  anonymou        8567796 Wed05PM fax00011.tif
-rw----    1  anonymou        8567796 Wed05PM fax00012.tif
-rw----    1  anonymou        8567796 Wed05PM fax00013.tif
-rw----    1  anonymou        8567796 Wed06PM fax00014.tif
226 Transfer complete.
ftp> get fax00014.tif
local: fax00014.tif remote: fax00014.tif
200 PORT command successful.
550 fax00014.tif: Operation not permitted.
ftp> 

  As you can see, I get a "550 fax00014.tif: Operation not permitted."
response from hfaxd.

  etc/hosts has the following:

localhost:68::


  I used a uid of 68, because that is what received FAXes seem to be
stored at.  No mention in manuals about id received FAXes might be stored
as...

  So, how might I get at the FAXes?


Tom

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 3 Dec 1998 20:52:01 -0800 (PST)
From: Tom <tom@uniserve.com>
To: Alan Sparks <asparks@nss.harris.com>
cc: flexfax@sgi.com
Subject: Re: flexfax: accessing recvq directory
Sender: owner-flexfax@celestial.com


On Fri, 4 Dec 1998, Alan Sparks wrote:

> You might want to try making sure that HylaFAX saves the faxes with a
> permission that can be read by others... note that the display shows
> that only the owner (root) can read the files.

  But what display matters?  faxstat -r says they are owned by root, but
"dir" while logged in as anonymous says they are owned by anonymous?

  Also, how do fax userids relate to UNIX userids?  Because in reality,
the faxes are owned by "fax", and hfaxd runs as the user "fax".

> Try putting a line like:
> RecvFileMode:	0644
> 
> in your spool/etc/config file and restart the faxq daemon.  New faxes
> should be more accessible.  You'll need to manually reset the
> permissions on the existing fax files for other-read.
> 
> -Alan
> 
> 
> 
> Tom wrote:
> > 
> >   I'm having difficulty accessing faxes in recvq via hfaxd.  I can see the
> > faxes:
> > 
> > test1# faxstat -r
> > HylaFAX scheduler on test1.office: Running
> > Modem cuaa1 (+1.604.856.7796): Running and idle
> > 
> > Protect Page  Owner        Sender/TSI  Recvd@ Filename
> > -rw----    1  root            8567685 Wed04PM fax00005.tif
> > -rw----    2  root            8567685 Tue06PM fax00004.tif
> > -rw----    1  root            8567685 Wed04PM fax00006.tif
> > -rw----    1  root            8567685 Wed04PM fax00007.tif
> > -rw----    1  root            8567796 Wed04PM fax00008.tif
> > -rw----    1  root            8567796 Wed04PM fax00009.tif
> > -rw----    1  root         6048567796 Wed05PM fax00010.tif
> > -rw----    1  root            8567796 Wed05PM fax00011.tif
> > -rw----    1  root            8567796 Wed05PM fax00012.tif
> > -rw----    1  root            8567796 Wed05PM fax00013.tif
> > -rw----    1  root            8567796 Wed06PM fax00014.tif
> > test1#
> > 
> >   But I can't access them via FTP to 4559:
> > 
> > test1# ftp localhost 4559
> > Connected to localhost.
> > 220 test1.office.uniserve.ca server (HylaFAX (tm) Version 4.0pl2) ready.
> > Name (localhost:tom): anonymous
> > 230 User anonymous logged in.
> > Remote system type is UNIX.
> > Using binary mode to transfer files.
> > ftp> cd recvq
> > 250 CWD command successful.
> > ftp> dir
> > 200 PORT command successful.
> > 150 Opening new data connection for ".".
> > -rw----    1  anonymou        8567685 Wed04PM fax00005.tif
> > -rw----    2  anonymou        8567685 Tue06PM fax00004.tif
> > -rw----    1  anonymou        8567685 Wed04PM fax00006.tif
> > -rw----    1  anonymou        8567685 Wed04PM fax00007.tif
> > -rw----    1  anonymou        8567796 Wed04PM fax00008.tif
> > -rw----    1  anonymou        8567796 Wed04PM fax00009.tif
> > -rw----    1  anonymou     6048567796 Wed05PM fax00010.tif
> > -rw----    1  anonymou        8567796 Wed05PM fax00011.tif
> > -rw----    1  anonymou        8567796 Wed05PM fax00012.tif
> > -rw----    1  anonymou        8567796 Wed05PM fax00013.tif
> > -rw----    1  anonymou        8567796 Wed06PM fax00014.tif
> > 226 Transfer complete.
> > ftp> get fax00014.tif
> > local: fax00014.tif remote: fax00014.tif
> > 200 PORT command successful.
> > 550 fax00014.tif: Operation not permitted.
> > ftp>
> > 
> >   As you can see, I get a "550 fax00014.tif: Operation not permitted."
> > response from hfaxd.
> > 
> >   etc/hosts has the following:
> > 
> > localhost:68::
> > 
> >   I used a uid of 68, because that is what received FAXes seem to be
> > stored at.  No mention in manuals about id received FAXes might be stored
> > as...
> > 
> >   So, how might I get at the FAXes?
> > 
> > Tom
> 
> 

Tom

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: gdoris@shaw.wave.ca
Date: Thu, 03 Dec 1998 16:46:22 -0500 (EST)
To: Hylafax <flexfax@sgi.com>
Subject: flexfax: Best Setup
Sender: owner-flexfax@celestial.com

I've only got two home boxes  The primary one runs Win98 and is connected
via cable modem to the internet.  The other is a linux system connected to the
Win98 box.

The linux system has the modem and is running Hylafax.  I want to be able to
send faxes from the Win98 box as easily as possible (wife and kids don't like
compilcated commands and are used to WinFax Pro).

What is the best software to accomplish this???

Gerry

----------------------------------
E-Mail: gdoris@shaw.wave.ca
Date: 03-Dec-98
Time: 16:42:21

This message was sent by XFMail
----------------------------------

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 3 Dec 1998 19:03:08 -0500 (EST)
From: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
To: gdoris@shaw.wave.ca
Cc: Hylafax <flexfax@sgi.com>
Subject: Re: flexfax: Best Setup
Sender: owner-flexfax@celestial.com

-----BEGIN PGP SIGNED MESSAGE-----

On Thu, 3 Dec 1998 gdoris@shaw.wave.ca wrote:

> I've only got two home boxes  The primary one runs Win98 and is connected
> via cable modem to the internet.  The other is a linux system connected to the
> Win98 box.
> 
> The linux system has the modem and is running Hylafax.  I want to be able to
> send faxes from the Win98 box as easily as possible (wife and kids don't like
> compilcated commands and are used to WinFax Pro).
> 
> What is the best software to accomplish this???

WHFC. Available at http://www.transcom.de/whfc/

			Nico Kadel-Garcia
			Senior Engineer, CIRL 
			Mass. Eye and Ear Infirmary
			raoul@cirl.meei.harvard.edu

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBNmcmtz/+ItycgIJRAQEUZwQAmJKhmsfB30WJiNjZJ0hn3fLZDU/nia2S
jlIzNJiv8Spxr88jojHtmpi7+FqObRFyDFB3n0iNpDT5H2OGWU6Qz/s/IjepZ6n2
MO4HjQozk/rFpuDjsAjPnxztLiSYZG9wli3hyjAhV23jMwpqTxeIemhT2iiUTx4R
vYWVpWxk8pE=
=EcNw
-----END PGP SIGNATURE-----

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: Tiff Viewer
To: choeger@suse.de (Carsten Hoeger)
Date: Sat, 5 Dec 1998 01:13:15 +0000 (GMT)
Cc: damian@cisco.com, sf@sfconsultores.pt, hylafax@astra.sif.it,
        flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> 
> tiff2ps -p -a $FILE | ps2pdf - /tmp/pdf.pdf |lpr

This is nonsense.  It will create a PDF file that can be viewed with
Acrobat or ghostscript and will send nothing to the printer.  It
will require reconversion to Postscript or other printer language
before it can actually be printed.

> ps2pdf can be found at gs_lib-4.03

ps2pdf is a small wrapper around ghostscript with -sDEVICE=pdfwrite,
which specifies a pseudo printer driver which creates PDF files.

In fact, as PDF level 1.1 (Acrobat 2) allows the direct inclusion of
Group 3 fax raw data, but gs 5.10- can only output uncompressed images,
if you wanted to create PDF from the TIFF, it would make much more sense
to translate directly - the program would be only a few pages long.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: flexfax@sgi.com
From: darren@hylafax.org
Subject: flexfax: Interesting loading characteristics
X-uri: http://www.tpc.int/
X-pgp-key-fingerprint: 05 CA 3F B5 43 F2 6A CE  DB 9E 08 39 80 F0 57 9E
Date: Thu, 03 Dec 1998 20:29:26 +0000
Sender: owner-flexfax@celestial.com


Folks,

I think this has been reported before, but what the hell ;-)

About 3000 jobs in the queue at the present time. One poor modem will 
eventually send them all. Only the modem is barely getting used at the moment. 
faxq has completely pegged out at about 90-95% CPU, and faxsends are going 
zombie while faxq loops doing SOMETHING, then eventually returns to say hello 
to its child. I'm able to send about 5-6 faxes/hour presently, on a relatively 
meaty pentium/linux box.

If anyone's interested in tuning HylaFAX to deal with large queues more 
gracefully, let me know - I am likely to have this queue for quite some time 
and can test any code which may arise ;-)

-Darren

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Charles J. Boening" <bones@jahl.com>
To: "'Tim Kelley'" <tpkelley@winkinc.com>
Cc: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: RE: flexfax: How to keep FAXRCVD from converting to postscript?
Date: Sat, 5 Dec 1998 01:26:42 -0800 
Sender: owner-flexfax@celestial.com

Don't know if you found a solution yet or not, but I've attached my faxrcvd
script that works for me.  What I did was UUENCODE the file.  Check it out.
It seems to work.  The only problem I found, was that when I opened it from
Outlook 98, it was  a negative of what it should be (viewed using ACDSee
v2.3, Win98).  If I saved it first and then viewed it with SCDSee, it was
just fine!!

Anyway ... the faxrcvd is attached in both Windows format (CR/LF) and Unix
format (LF)

Charlie

-----Original Message-----
From: Tim Kelley [mailto:tpkelley@winkinc.com]
Sent: Tuesday, December 01, 1998 1:22 PM
To: flexfax@sgi.com
Subject: flexfax: How to keep FAXRCVD from converting to postscript?


I know this is elementary for some of you, but ...


I've tried changing some things (evidently the wrong things) in the
script, but I can't for the life of me figure out how to keep FAXRCVD
from using fax2ps to convert the TIF to ps.  I want it to stay as a TIF
and get emailed to a user.

I can see the relevant portion of the script is

$FAX2PS $FILE 2>/dev/null
echo ""
echo "--MIMEBOUNDARY--"
) | 2>&1 $SENDMAIL -ffax -oi $SENDTO

This - I think - just creates an output file "$FILE" which gets passed
to sendmail ... but I don't understand bash that well ... where does the
"2" come from?  I'm trying to send the original TIFF with none of the
fancy converting - should be easy, right?

-- 
Tim Kelley
tpkelley@winkinc.com
504.243.4682



Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\Faxrcvd.unix"


Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\Faxrcvd.windows"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 03 Dec 1998 21:10:47 -0800
To: flexfax@sgi.com
From: Jeff Scott <jeff@realbeer.com>
Subject: flexfax: EOP / Phase B problems -- Zoom Modem
Sender: owner-flexfax@celestial.com

HylaFax v4.0pl2 - Linux i586 machine (Slackware 3.5)
Zoom VFX modem - running class 2

I'm having repeated problems with faxes erroring out with EOP and Phase B
problems.

It seems like it is always the same fax machines that I have the problems
with.

The strange thing is that I have used this modem to connect to those same
fax machine before without problems (using a different FAX server software
program).

Can anyone give me any guidance on what I can do to make this modem more
compatible?

Here are the log excerpts:

EOP problem:

Dec 03 20:47:13.49: [ 2178]: SEND end page
Dec 03 20:47:17.88: [ 2178]: --> [2:OK]
Dec 03 20:47:17.88: [ 2178]: SEND send EOP (no more pages or documents)
Dec 03 20:47:17.88: [ 2178]: <-- [9:AT+FET=2\r]
Dec 03 20:47:33.30: [ 2178]: --> [9:+FHNG: 54]
Dec 03 20:47:33.30: [ 2178]: REMOTE HANGUP: No response to EOP repeated 3
times (code 54)
Dec 03 20:47:33.30: [ 2178]: SEND: No response to EOP repeated 3 times;
Giving up after 3 attempts to send same page "docq/doc149.ps;70", dirnum 0
Dec 03 20:47:33.30: [ 2178]: <-- [5:ATH0\r]
Dec 03 20:47:33.51: [ 2178]: --> [2:OK]
Dec 03 20:47:33.51: [ 2178]: SESSION END


Phase B problem:

Dec 03 20:57:43.72: [ 2263]: <-- [24:AT+FDIS=0,5,0,2,1,0,0,0\r]
Dec 03 20:57:43.97: [ 2263]: --> [2:OK]
Dec 03 20:57:43.97: [ 2263]: <-- [7:AT+FDT\r]
Dec 03 20:57:51.42: [ 2263]: --> [9:+FHNG: 20]
Dec 03 20:57:51.42: [ 2263]: REMOTE HANGUP: Unspecified Transmit Phase B
error (code 20)
Dec 03 20:57:51.54: [ 2263]: --> [2:OK]
Dec 03 21:00:51.54: [ 2263]: MODEM <Timeout>
Dec 03 21:00:51.54: [ 2263]: SEND: Unspecified Transmit Phase B error;
Giving up after 3 attempts to send same page "docq/doc163.ps;70", dirnum 0
Dec 03 21:00:51.54: [ 2263]: <-- [5:ATH0\r]
Dec 03 21:00:51.91: [ 2263]: --> [2:OK]
Dec 03 21:00:51.91: [ 2263]: SESSION END


I have seen in the archives that I have been able to get to that other
people have asked this same problem, but I have not found any pointers or
suggestions for fixing / working around the problem.

Any suggestions that you have will be greatly appreciated.

Cheers,
Jeff



--
-- Jeff Scott -- Technical Designer -- jeff@realbeer.com
-- Real Beer, Inc. -- (415) 522-1516x310 (voice) -- (415) 522-1535 (fax)
-- Internet Publishers and Consultants  --  http://www.realbeer.com
-- The single largest source for beer information, known to man!

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Fred Ng" <fred@webforce.com.hk>
To: <flexfax@sgi.com>
Subject: flexfax: Flexfax : FaxSetup
Date: Fri, 4 Dec 1998 16:09:13 +0800
Sender: owner-flexfax@celestial.com

I'm trying to set up a Hylafax server. But when I try to use the command
faxsetup, it completed the process without add a user "fax" in the
/etc/passwd file. Can anyone please give further instruction on what to do.

Thank you

Fred

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 4 Dec 1998 07:56:38 -0500 (EST)
From: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
To: Fred Ng <fred@webforce.com.hk>
Cc: flexfax@sgi.com
Subject: Re: flexfax: Flexfax : FaxSetup
Sender: owner-flexfax@celestial.com

-----BEGIN PGP SIGNED MESSAGE-----

On Fri, 4 Dec 1998, Fred Ng wrote:


> I'm trying to set up a Hylafax server. But when I try to use the command
> faxsetup, it completed the process without add a user "fax" in the
> /etc/passwd file. Can anyone please give further instruction on what to do.

Fred, it would help us if you told us what operating system and
version of HylaFAX. And is the faxsetup not doing anything about
adding a new user, or is it simply failing when it tries to add one?> 

			Nico Kadel-Garcia
			Senior Engineer, CIRL 
			Mass. Eye and Ear Infirmary
			raoul@cirl.meei.harvard.edu

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBNmfcAT/+ItycgIJRAQFEewP+MEXYmXrxWBdV2v1ewaLTbsMHKry5GPVw
22j36rGqNFL1xUpyCBh9UxP5cnuF0mtIQK5rKrG5DdVSuBL6XfrTVUY5SwV7SVBL
7fKt0i0iZHhaOIIIsT2k4UMBSaHR4wQy8kCdun3xPsd8u3yA9YMBzsTs8TJDfHy3
5v1CZTTJPu8=
=995N
-----END PGP SIGNATURE-----

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Fred Ng" <fred@webforce.com.hk>
To: "Nico Kadel-Garcia" <raoul@cirl.meei.harvard.edu>
Cc: <flexfax@sgi.com>
Subject: Re: flexfax: Flexfax : FaxSetup
Date: Sat, 5 Dec 1998 10:16:07 +0800
Sender: owner-flexfax@celestial.com

The OS I'm using is Debian 2.0 and the version of Hylafax I'm using I think
is 4.0.2. Please give further instructions for the procedures on how to
setup the fax server.
Thank you very much

Fred



----- Original Message -----
From: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
To: Fred Ng <fred@webforce.com.hk>
Cc: <flexfax@sgi.com>
Sent: Friday, December 04, 1998 8:56 PM
Subject: Re: flexfax: Flexfax : FaxSetup


>-----BEGIN PGP SIGNED MESSAGE-----
>
>On Fri, 4 Dec 1998, Fred Ng wrote:
>
>
>> I'm trying to set up a Hylafax server. But when I try to use the command
>> faxsetup, it completed the process without add a user "fax" in the
>> /etc/passwd file. Can anyone please give further instruction on what to
do.
>
>Fred, it would help us if you told us what operating system and
>version of HylaFAX. And is the faxsetup not doing anything about
>adding a new user, or is it simply failing when it tries to add one?>
>
> Nico Kadel-Garcia
> Senior Engineer, CIRL
> Mass. Eye and Ear Infirmary
> raoul@cirl.meei.harvard.edu
>
>-----BEGIN PGP SIGNATURE-----
>Version: 2.6.2
>
>iQCVAwUBNmfcAT/+ItycgIJRAQFEewP+MEXYmXrxWBdV2v1ewaLTbsMHKry5GPVw
>22j36rGqNFL1xUpyCBh9UxP5cnuF0mtIQK5rKrG5DdVSuBL6XfrTVUY5SwV7SVBL
>7fKt0i0iZHhaOIIIsT2k4UMBSaHR4wQy8kCdun3xPsd8u3yA9YMBzsTs8TJDfHy3
>5v1CZTTJPu8=
>=995N
>-----END PGP SIGNATURE-----
>

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Sat, 5 Dec 1998 10:06:11 -0500 (EST)
From: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
To: Fred Ng <fred@webforce.com.hk>
Cc: flexfax@sgi.com
Subject: Re: flexfax: Flexfax : FaxSetup
Sender: owner-flexfax@celestial.com

-----BEGIN PGP SIGNED MESSAGE-----

On Sat, 5 Dec 1998, Fred Ng wrote:

> The OS I'm using is Debian 2.0 and the version of Hylafax I'm using I think
> is 4.0.2. Please give further instructions for the procedures on how to
> setup the fax server.
> Thank you very much


*SIGH*. You neglected the other part of my questions, namely,


> >Fred, it would help us if you told us what operating system and
> >version of HylaFAX. And is the faxsetup not doing anything about
> >adding a new user, or is it simply failing when it tries to add one?>


I suspect that you examine the "faxsetup" script and see what it uses
to actually add the users. If the command it uses is inappropriate for
your version of UNIX, add the "fax" user by hand with the same UID and
GID as the "uucp" user.



			Nico Kadel-Garcia
			Senior Engineer, CIRL 
			Mass. Eye and Ear Infirmary
			raoul@cirl.meei.harvard.edu

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBNmlL1z/+ItycgIJRAQEUXAP/dCKJI0Qd583E+hxymiMd5PU9lA+MoV1V
v5GtD66owBPV0yOnFW3o6WvSWUPZvh+b+tpwhwlvZ/kEav3GhOJb8jHsIJCyD4ML
lrKWS8cvDGLskxTB5fB5L+EQlIS4WbRUcXyl/2EQVeekyIsWdNvA6dJb029Lc40g
j4sPyQWCaFQ=
=sRKE
-----END PGP SIGNATURE-----

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 07 Dec 1998 11:00:08 +1100
From: Damian A Ivereigh <damian@cisco.com>
Organization: Cisco Systems Inc
To: Jeff Scott <jeff@realbeer.com>
CC: flexfax@sgi.com
Subject: Re: flexfax: EOP / Phase B problems -- Zoom Modem
Sender: owner-flexfax@celestial.com

I don't know that particular modem, but try running it in class 1 mode.
If it works, almost certainly the modem is not doing the right thing.

Damian

Jeff Scott wrote:
> 
> HylaFax v4.0pl2 - Linux i586 machine (Slackware 3.5)
> Zoom VFX modem - running class 2
> 
> I'm having repeated problems with faxes erroring out with EOP and Phase B
> problems.
> 
> It seems like it is always the same fax machines that I have the problems
> with.
> 
> The strange thing is that I have used this modem to connect to those same
> fax machine before without problems (using a different FAX server software
> program).
> 
> Can anyone give me any guidance on what I can do to make this modem more
> compatible?
> 
> Here are the log excerpts:
> 
> EOP problem:
> 
> Dec 03 20:47:13.49: [ 2178]: SEND end page
> Dec 03 20:47:17.88: [ 2178]: --> [2:OK]
> Dec 03 20:47:17.88: [ 2178]: SEND send EOP (no more pages or documents)
> Dec 03 20:47:17.88: [ 2178]: <-- [9:AT+FET=2\r]
> Dec 03 20:47:33.30: [ 2178]: --> [9:+FHNG: 54]
> Dec 03 20:47:33.30: [ 2178]: REMOTE HANGUP: No response to EOP repeated 3
> times (code 54)
> Dec 03 20:47:33.30: [ 2178]: SEND: No response to EOP repeated 3 times;
> Giving up after 3 attempts to send same page "docq/doc149.ps;70", dirnum 0
> Dec 03 20:47:33.30: [ 2178]: <-- [5:ATH0\r]
> Dec 03 20:47:33.51: [ 2178]: --> [2:OK]
> Dec 03 20:47:33.51: [ 2178]: SESSION END
> 
> Phase B problem:
> 
> Dec 03 20:57:43.72: [ 2263]: <-- [24:AT+FDIS=0,5,0,2,1,0,0,0\r]
> Dec 03 20:57:43.97: [ 2263]: --> [2:OK]
> Dec 03 20:57:43.97: [ 2263]: <-- [7:AT+FDT\r]
> Dec 03 20:57:51.42: [ 2263]: --> [9:+FHNG: 20]
> Dec 03 20:57:51.42: [ 2263]: REMOTE HANGUP: Unspecified Transmit Phase B
> error (code 20)
> Dec 03 20:57:51.54: [ 2263]: --> [2:OK]
> Dec 03 21:00:51.54: [ 2263]: MODEM <Timeout>
> Dec 03 21:00:51.54: [ 2263]: SEND: Unspecified Transmit Phase B error;
> Giving up after 3 attempts to send same page "docq/doc163.ps;70", dirnum 0
> Dec 03 21:00:51.54: [ 2263]: <-- [5:ATH0\r]
> Dec 03 21:00:51.91: [ 2263]: --> [2:OK]
> Dec 03 21:00:51.91: [ 2263]: SESSION END
> 
> I have seen in the archives that I have been able to get to that other
> people have asked this same problem, but I have not found any pointers or
> suggestions for fixing / working around the problem.
> 
> Any suggestions that you have will be greatly appreciated.
> 
> Cheers,
> Jeff
> 
> --
> -- Jeff Scott -- Technical Designer -- jeff@realbeer.com
> -- Real Beer, Inc. -- (415) 522-1516x310 (voice) -- (415) 522-1535 (fax)
> -- Internet Publishers and Consultants  --  http://www.realbeer.com
> -- The single largest source for beer information, known to man!

-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: msw@cluedin.com (Michael S. Weiner (Doc))
To: flexfax@sgi.com
Subject: flexfax: Perfect Blank Faxes
Date: Fri, 4 Dec 1998 3:57:23 CST
Sender: owner-flexfax@celestial.com

My mission critical fax application is broken and I would
appreciate any help I can get.  I've been reading in this group
for sometime and have gotten lots of useful info tho I haven't submitted
any questions.  I've searched the FAQ and archives without gettting
a clue.

PROBLEM:  Today I replaced my USRobotics Sporter 33.6 modem
with a Multitech MT5634ZBA.  I also upgraded the Hylafax software
from V 4.0pl0 to V 4.0pl2  using the SCO OSR5 binary version
built by Tim Rice.  (I'm on a SCO OSR5.0.5 box).
Since the installation faxes are being received apparently
successfully -- none of the Phase B and C errors I used to
frequently get and the speed of transmission is improved
(about .6min/page).    HOWEVER, there is no "information" on the pages
when viewed (either with my ghostscript or the windows95 and MAC
viewers of the folks to whom I forward the *.tif files) --
faxes processed prior to the upgrade are normal.
The "blank pages" are not entirely blank looking something like
the copy of a blank page on a copier on which dark setting
was turned up some -- there are some thin faint shadings
on the pages.

POSSIBLY RELATED ANOMOLY:
faxstat gives this error:
Login failed: 550 Cannot set privileges
But I'm inclined to think this isn't significant in view of
the following:


DETAIL:
Here is the mail to the faxmaster indicating a "successful" fax.
recvq/fax01334.tif (ftp://mgcave.cluedin.com:4559/recvq/fax01334.tif):
    Sender: 5123605316
     Pages: 10
   Quality: Normal
      Page: 1728 by 597
  Received: 1998:12:03 22:15:44
TimeToRecv: 5:26
SignalRate: 14400 bit/s
DataFormat: 1-D MR
ReceivedOn: tty1A
CommID:     c00001507 (ftp://mgcave.cluedin.com:4559/log/c00001507)

Here is the complete c0001507 log file:
Dec 03 22:15:28.98: [ 2828]: SESSION BEGIN 00001507 15123678097
Dec 03 22:15:28.98: [ 2828]: <-- [4:ATA\r]
Dec 03 22:15:39.39: [ 2828]: --> [5:+FCON]
Dec 03 22:15:39.39: [ 2828]: ANSWER: FAX CONNECTION
Dec 03 22:15:39.39: [ 2828]: RECV FAX: begin
Dec 03 22:15:39.39: [ 2828]: --> [28:+FTSI:"          5123605316"]
Dec 03 22:15:39.39: [ 2828]: REMOTE TSI "5123605316"
Dec 03 22:15:39.69: [ 2828]: --> [21:+FDCS:0,5,0,2,0,0,0,3]
Dec 03 22:15:39.69: [ 2828]: REMOTE wants 14400 bit/s
Dec 03 22:15:39.69: [ 2828]: REMOTE wants page width 1728 pixels in 215 mm
Dec 03 22:15:39.69: [ 2828]: REMOTE wants unlimited page length 
Dec 03 22:15:39.69: [ 2828]: REMOTE wants 3.85 line/mm
Dec 03 22:15:39.69: [ 2828]: REMOTE wants 1-D MR
Dec 03 22:15:39.69: [ 2828]: --> [2:OK]
Dec 03 22:15:39.69: [ 2828]: <-- [7:AT+FDR\r]
Dec 03 22:15:43.84: [ 2828]: --> [5:+FCFR]
Dec 03 22:15:44.82: [ 2828]: --> [7:CONNECT]
Dec 03 22:15:44.82: [ 2828]: RECV: begin page
Dec 03 22:15:44.82: [ 2828]: RECV: send trigger 022
Dec 03 22:15:44.82: [ 2828]: <-- data [1]
Dec 03 22:16:02.95: [ 2828]: RECV: 32767 bytes of data, 1148 total lines
Dec 03 22:16:21.16: [ 2828]: RECV: 32750 bytes of data, 1873 total lines
Dec 03 22:16:32.85: [ 2828]: RECV: 21034 bytes of data, 2300 total lines
Dec 03 22:16:32.85: [ 2828]: --> [12:+FPTS:1,2207]
Dec 03 22:16:34.29: [ 2828]: --> [6:+FET:0]
Dec 03 22:16:34.29: [ 2828]: RECV recv MPS (more pages, same document)
Dec 03 22:16:34.29: [ 2828]: --> [2:OK]
Dec 03 22:16:34.29: [ 2828]: RECV send MCF (message confirmation)
Dec 03 22:16:34.29: [ 2828]: RECV FAX (00001507): from 5123605316, page 1 in 0:55, INF, 3.85 line/mm, 1-D MR
Dec 03 22:16:34.29: [ 2828]: <-- [7:AT+FDR\r]
Dec 03 22:16:36.22: [ 2828]: --> [7:CONNECT]
Dec 03 22:16:36.22: [ 2828]: RECV: begin page
Dec 03 22:16:36.22: [ 2828]: RECV: send trigger 022
Dec 03 22:16:36.22: [ 2828]: <-- data [1]
Dec 03 22:16:55.43: [ 2828]: RECV: 32744 bytes of data, 674 total lines
Dec 03 22:17:07.06: [ 2828]: RECV: 21062 bytes of data, 1128 total lines
Dec 03 22:17:07.06: [ 2828]: --> [12:+FPTS:1,1028]
Dec 03 22:17:08.47: [ 2828]: --> [6:+FET:0]
Dec 03 22:17:08.47: [ 2828]: RECV recv MPS (more pages, same document)
Dec 03 22:17:08.47: [ 2828]: --> [2:OK]
Dec 03 22:17:08.47: [ 2828]: RECV send MCF (message confirmation)
Dec 03 22:17:08.47: [ 2828]: RECV FAX (00001507): from 5123605316, page 2 in 0:34, INF, 3.85 line/mm, 1-D MR
Dec 03 22:17:08.47: [ 2828]: <-- [7:AT+FDR\r]
Dec 03 22:17:10.43: [ 2828]: --> [7:CONNECT]
Dec 03 22:17:10.43: [ 2828]: RECV: begin page
Dec 03 22:17:10.43: [ 2828]: RECV: send trigger 022
Dec 03 22:17:10.43: [ 2828]: <-- data [1]
Dec 03 22:17:29.59: [ 2828]: RECV: 32756 bytes of data, 662 total lines
Dec 03 22:17:42.24: [ 2828]: RECV: 22636 bytes of data, 1132 total lines
Dec 03 22:17:42.24: [ 2828]: --> [12:+FPTS:1,1028]
Dec 03 22:17:43.58: [ 2828]: --> [6:+FET:0]
Dec 03 22:17:43.58: [ 2828]: RECV recv MPS (more pages, same document)
Dec 03 22:17:43.58: [ 2828]: --> [2:OK]
Dec 03 22:17:43.58: [ 2828]: RECV send MCF (message confirmation)
Dec 03 22:17:43.58: [ 2828]: RECV FAX (00001507): from 5123605316, page 3 in 0:35, INF, 3.85 line/mm, 1-D MR
Dec 03 22:17:43.58: [ 2828]: <-- [7:AT+FDR\r]
Dec 03 22:17:45.53: [ 2828]: --> [7:CONNECT]
Dec 03 22:17:45.53: [ 2828]: RECV: begin page
Dec 03 22:17:45.53: [ 2828]: RECV: send trigger 022
Dec 03 22:17:45.53: [ 2828]: <-- data [1]
Dec 03 22:18:04.69: [ 2828]: RECV: 32701 bytes of data, 652 total lines
Dec 03 22:18:15.98: [ 2828]: RECV: 20421 bytes of data, 1091 total lines
Dec 03 22:18:16.08: [ 2828]: --> [12:+FPTS:1,1024]
Dec 03 22:18:17.38: [ 2828]: --> [6:+FET:0]
Dec 03 22:18:17.38: [ 2828]: RECV recv MPS (more pages, same document)
Dec 03 22:18:17.38: [ 2828]: --> [2:OK]
Dec 03 22:18:17.38: [ 2828]: RECV send MCF (message confirmation)
Dec 03 22:18:17.38: [ 2828]: RECV FAX (00001507): from 5123605316, page 4 in 0:34, INF, 3.85 line/mm, 1-D MR
Dec 03 22:18:17.38: [ 2828]: <-- [7:AT+FDR\r]
Dec 03 22:18:19.33: [ 2828]: --> [7:CONNECT]
Dec 03 22:18:19.33: [ 2828]: RECV: begin page
Dec 03 22:18:19.33: [ 2828]: RECV: send trigger 022
Dec 03 22:18:19.33: [ 2828]: <-- data [1]
Dec 03 22:18:38.52: [ 2828]: RECV: 32717 bytes of data, 757 total lines
Dec 03 22:18:47.19: [ 2828]: RECV: 15740 bytes of data, 1140 total lines
Dec 03 22:18:47.29: [ 2828]: --> [12:+FPTS:1,1088]
Dec 03 22:18:48.58: [ 2828]: --> [6:+FET:0]
Dec 03 22:18:48.58: [ 2828]: RECV recv MPS (more pages, same document)
Dec 03 22:18:48.58: [ 2828]: --> [2:OK]
Dec 03 22:18:48.58: [ 2828]: RECV send MCF (message confirmation)
Dec 03 22:18:48.58: [ 2828]: RECV FAX (00001507): from 5123605316, page 5 in 0:31, INF, 3.85 line/mm, 1-D MR
Dec 03 22:18:48.58: [ 2828]: <-- [7:AT+FDR\r]
Dec 03 22:18:50.51: [ 2828]: --> [7:CONNECT]
Dec 03 22:18:50.51: [ 2828]: RECV: begin page
Dec 03 22:18:50.51: [ 2828]: RECV: send trigger 022
Dec 03 22:18:50.51: [ 2828]: <-- data [1]
Dec 03 22:19:09.72: [ 2828]: RECV: 32707 bytes of data, 654 total lines
Dec 03 22:19:20.90: [ 2828]: RECV: 20129 bytes of data, 1062 total lines
Dec 03 22:19:20.90: [ 2828]: --> [12:+FPTS:1,1021]
Dec 03 22:19:22.36: [ 2828]: --> [6:+FET:0]
Dec 03 22:19:22.36: [ 2828]: RECV recv MPS (more pages, same document)
Dec 03 22:19:22.36: [ 2828]: --> [2:OK]
Dec 03 22:19:22.36: [ 2828]: RECV send MCF (message confirmation)
Dec 03 22:19:22.36: [ 2828]: RECV FAX (00001507): from 5123605316, page 6 in 0:34, INF, 3.85 line/mm, 1-D MR
Dec 03 22:19:22.36: [ 2828]: <-- [7:AT+FDR\r]
Dec 03 22:19:24.31: [ 2828]: --> [7:CONNECT]
Dec 03 22:19:24.31: [ 2828]: RECV: begin page
Dec 03 22:19:24.31: [ 2828]: RECV: send trigger 022
Dec 03 22:19:24.31: [ 2828]: <-- data [1]
Dec 03 22:19:43.47: [ 2828]: RECV: 32742 bytes of data, 780 total lines
Dec 03 22:19:47.58: [ 2828]: RECV: 7280 bytes of data, 1062 total lines
Dec 03 22:19:47.58: [ 2828]: --> [12:+FPTS:1,1028]
Dec 03 22:19:48.87: [ 2828]: --> [6:+FET:0]
Dec 03 22:19:48.87: [ 2828]: RECV recv MPS (more pages, same document)
Dec 03 22:19:48.87: [ 2828]: --> [2:OK]
Dec 03 22:19:48.87: [ 2828]: RECV send MCF (message confirmation)
Dec 03 22:19:48.87: [ 2828]: RECV FAX (00001507): from 5123605316, page 7 in 0:26, INF, 3.85 line/mm, 1-D MR
Dec 03 22:19:48.87: [ 2828]: <-- [7:AT+FDR\r]
Dec 03 22:19:50.83: [ 2828]: --> [7:CONNECT]
Dec 03 22:19:50.83: [ 2828]: RECV: begin page
Dec 03 22:19:50.83: [ 2828]: RECV: send trigger 022
Dec 03 22:19:50.83: [ 2828]: <-- data [1]
Dec 03 22:20:09.98: [ 2828]: RECV: 32714 bytes of data, 683 total lines
Dec 03 22:20:21.28: [ 2828]: RECV: 20233 bytes of data, 1102 total lines
Dec 03 22:20:21.28: [ 2828]: --> [12:+FPTS:1,1057]
Dec 03 22:20:22.56: [ 2828]: --> [6:+FET:0]
Dec 03 22:20:22.56: [ 2828]: RECV recv MPS (more pages, same document)
Dec 03 22:20:22.56: [ 2828]: --> [2:OK]
Dec 03 22:20:22.56: [ 2828]: RECV send MCF (message confirmation)
Dec 03 22:20:22.56: [ 2828]: RECV FAX (00001507): from 5123605316, page 8 in 0:34, INF, 3.85 line/mm, 1-D MR
Dec 03 22:20:22.56: [ 2828]: <-- [7:AT+FDR\r]
Dec 03 22:20:24.49: [ 2828]: --> [7:CONNECT]
Dec 03 22:20:24.49: [ 2828]: RECV: begin page
Dec 03 22:20:24.49: [ 2828]: RECV: send trigger 022
Dec 03 22:20:24.49: [ 2828]: <-- data [1]
Dec 03 22:20:43.64: [ 2828]: RECV: 32750 bytes of data, 699 total lines
Dec 03 22:20:54.55: [ 2828]: RECV: 19490 bytes of data, 1110 total lines
Dec 03 22:20:54.55: [ 2828]: --> [12:+FPTS:1,1062]
Dec 03 22:20:55.99: [ 2828]: --> [6:+FET:0]
Dec 03 22:20:55.99: [ 2828]: RECV recv MPS (more pages, same document)
Dec 03 22:20:55.99: [ 2828]: --> [2:OK]
Dec 03 22:20:55.99: [ 2828]: RECV send MCF (message confirmation)
Dec 03 22:20:55.99: [ 2828]: RECV FAX (00001507): from 5123605316, page 9 in 0:33, INF, 3.85 line/mm, 1-D MR
Dec 03 22:20:55.99: [ 2828]: <-- [7:AT+FDR\r]
Dec 03 22:20:57.94: [ 2828]: --> [7:CONNECT]
Dec 03 22:20:57.94: [ 2828]: RECV: begin page
Dec 03 22:20:57.94: [ 2828]: RECV: send trigger 022
Dec 03 22:20:57.94: [ 2828]: <-- data [1]
Dec 03 22:21:17.12: [ 2828]: RECV: 32745 bytes of data, 1033 total lines
Dec 03 22:21:17.98: [ 2828]: RECV: 1469 bytes of data, 1091 total lines
Dec 03 22:21:17.98: [ 2828]: --> [12:+FPTS:1,1065]
Dec 03 22:21:19.28: [ 2828]: --> [6:+FET:2]
Dec 03 22:21:19.28: [ 2828]: RECV recv EOP (no more pages or documents)
Dec 03 22:21:19.28: [ 2828]: --> [2:OK]
Dec 03 22:21:19.28: [ 2828]: RECV send MCF (message confirmation)
Dec 03 22:21:19.28: [ 2828]: RECV FAX (00001507): from 5123605316, page 10 in 0:24, INF, 3.85 line/mm, 1-D MR
Dec 03 22:21:19.28: [ 2828]: RECV FAX (00001507): recvq/fax01334.tif from 5123605316, route to <unspecified>, 10 pages in 5:40
Dec 03 22:21:19.28: [ 2828]: <-- [7:AT+FDR\r]
Dec 03 22:21:21.85: [ 2828]: --> [7:+FHNG:0]
Dec 03 22:21:21.85: [ 2828]: REMOTE HANGUP: Normal and proper end of connection (code 0)
Dec 03 22:21:21.85: [ 2828]: RECV FAX: bin/faxrcvd "recvq/fax01334.tif" "tty1A" "00001507" ""
Dec 03 22:21:23.91: [ 2828]: RECV FAX: end
Dec 03 22:21:23.91: [ 2828]: SESSION END

Here is the beginning of the tiffinfo output for such a fax:
TIFF Directory at offset 0x15220
  Subfile Type: multi-page document (2 = 0x2)
  Image Width: 1728 Image Length: 2300
  Resolution: 204, 98 pixels/inch
  Bits/Sample: 1
  Compression Scheme: CCITT Group 3
  Photometric Interpretation: min-is-white
  FillOrder: lsb-to-msb
  Date & Time: "1998:12:03 22:15:44"
  Host Computer: "mgcave.cluedin.com"
  Software: "HylaFAX (tm) Version 4.0pl2"
  Image Description: "5123605316"
  Make: "MULTI-TECH SYSTEMS"
  Model: "MT5634ZBA"
  Orientation: row 0 top, col 0 lhs
  Samples/Pixel: 1
  Rows/Strip: (infinite)
  Planar Configuration: single image plane
  Group 3 Options: (0 = 0x0)
  Fax Data: clean (0 = 0x0)
  Fax Receive Parameters: 0000610a
  Fax Receive Time: 53 secs

THE ONLY CLUE TO A PROBLEM IS:
tiff2ps produces a warning for every line -- of the types:
Fax3Decode1D: Warning, fax01334.tif: Line length mismatch at scanline 29 (got 1861, expected 1728).
Fax3Decode1D: Warning, fax01334.tif: Line length mismatch at scanline 30 (got 1861, expected 1728).
Fax3Decode1D: Warning, fax01334.tif: Premature EOL at scanline 31 (got 1384, expected 1728).
Fax3Decode1D: Warning, fax01334.tif: Premature EOL at scanline 32 (got 1384, expected 1728).

Thanks in advance for any help.

Michael S. Weiner (Doc)            msw@cluedin.com
Austin, TX  78734  USA             voice: 512-266-1188

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 04 Dec 1998 11:18:26 +0100
From: Rainer Krienke <krienke@uni-koblenz.de>
Organization: Uni-Koblenz
To: flexfax@sgi.com
Subject: flexfax: Trouble receiving fax from one particular (paper)fax sender
Sender: owner-flexfax@celestial.com

Hello,

can anyone who knows more than me about the fax protocoll comment on the
error message included. This error occurs alway when hylafay tries to
receive a fax from one particular sender. Because I do not have
information about the fax protocoll I am unsure what actually is
happening. The hylafax modem is an Elsa 336TQV running in Class 2.0.
Besids this error with this one sender there are no problems. On the
other hand this sender can send the same fax to a paper fax and
everything is allright:

Here is the error:


Dec 04 09:45:16.35: [  229]: --> [20:+FCS:0,3,0,2,0,0,0,5]
Dec 04 09:45:16.35: [  229]: REMOTE wants 9600 bit/s
Dec 04 09:45:16.35: [  229]: REMOTE wants page width 1728 pixels in 215
mm
Dec 04 09:45:16.35: [  229]: REMOTE wants unlimited page length 
Dec 04 09:45:16.36: [  229]: REMOTE wants 3.85 line/mm
Dec 04 09:45:16.36: [  229]: REMOTE wants 1-D MR
Dec 04 09:45:16.36: [  229]: --> [2:OK]
Dec 04 09:45:16.36: [  229]: <-- [7:AT+FDR\r]
Dec 04 09:45:18.68: [  229]: --> [7:CONNECT]
Dec 04 09:45:18.68: [  229]: RECV: begin page
Dec 04 09:45:18.68: [  229]: RECV: send trigger 022
Dec 04 09:45:51.54: [  229]: RECV: 32700 bytes of data, 1179 total lines
Dec 04 09:45:51.54: [  229]: --> [16:+FPS:1,49C,0,0,0]
Dec 04 09:45:52.85: [  229]: --> [6:+FET:1]
Dec 04 09:45:52.85: [  229]: RECV recv EOM (more documents)
Dec 04 09:45:52.85: [  229]: --> [2:OK]
Dec 04 09:45:52.85: [  229]: RECV send MCF (message confirmation)
Dec 04 09:45:52.86: [  229]: RECV FAX (00000135): from xxxx, page 1 in
0:36, INF, 3.85 line/mm, 1-D MR
Dec 04 09:45:52.86: [  229]: RECV FAX (00000135): recvq/fax00024.tif
from +49 261 9114314, route to <unspecified>, 1 pages in 0:40
Dec 04 09:45:52.89: [  229]: <-- [7:AT+FDR\r]
Dec 04 09:46:13.84: [  229]: --> [27:+FTI:"     +xxxxxx"]
Dec 04 09:46:13.84: [  229]: REMOTE TSI "+xxxx"
Dec 04 09:46:13.84: [  229]: --> [20:+FCS:0,3,0,2,0,0,0,5]
Dec 04 09:46:13.84: [  229]: REMOTE wants 9600 bit/s
Dec 04 09:46:13.84: [  229]: REMOTE wants page width 1728 pixels in 215
mm
Dec 04 09:46:13.84: [  229]: REMOTE wants unlimited page length 
Dec 04 09:46:13.85: [  229]: REMOTE wants 3.85 line/mm
Dec 04 09:46:13.85: [  229]: REMOTE wants 1-D MR
Dec 04 09:46:13.85: [  229]: --> [2:OK]
Dec 04 09:46:13.85: [  229]: RECV: begin page
Dec 04 09:46:13.85: [  229]: RECV: send trigger 022
Dec 04 09:47:46.95: [  229]: MODEM TIMEOUT: reading from modem
Dec 04 09:47:46.95: [  229]: RECV: Missing EOL after 5 seconds
Dec 04 09:47:46.95: [  229]: REMOTE HANGUP: Missing EOL after 5 seconds
(section 3.2/T.4) (code 91)
Dec 04 09:47:46.96: [  229]: RECV FAX (00000135): recvq/fax00025.tif
from +49 261 9114314, route to <unspecified>, 0 pages in 1:54
Dec 04 09:47:46.96: [  229]: RECV FAX: Missing EOL after 5 seconds
(section 3.2/T.4)
Dec 04 09:47:46.96: [  229]: <-- [7:AT+FKS\r]
Dec 04 09:47:47.08: [  229]: --> [2:OK]

Thanks 
Rainer Krienke
-- 
---------------------------------------------------------------------
Rainer Krienke                     krienke@informatik.uni-koblenz.de
Universitaet Koblenz, 		   http://www.uni-koblenz.de/~krienke
Rechenzentrum,                     Voice: +49 261 287 -1312
Rheinau 1, 56075 Koblenz, Germany  Fax:   +49 261 9119-495
---------------------------------------------------------------------

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Trottier, Dan" <DTrottier@philipinc.com>
To: "'hylafax mailing list'" <flexfax@sgi.com>
Subject: RE: flexfax: Need a point in the right direction (solved)
Date: Fri, 4 Dec 1998 09:52:08 -0500 
Sender: owner-flexfax@celestial.com

Hi,

I'm now sending faxes. I changed OldProtocol.c++ and the included #define of
the old port
number from 4557 to 4321 and recompiled. This seems to have fixed the
problem as I can
now send faxes. Perhaps the port numbers should be something which is easily
changeable
at configuration time (not that it was difficult to make the changes
anyway).

I noticed that the pcl2fax.sh script states that support for this is not yet
available. I did some
checking around and finally found a pcl2pbm utility. This along with pbmtops
or pbm2hifax
might easily accomplish the job. Has anyone else gone down this path
already?

Regards,

dan

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: "Trottier, Dan" <DTrottier@philipinc.com>
cc: "'hylafax mailing list'" <flexfax@sgi.com>
From: darren@hylafax.org
Subject: Re: flexfax: Need a point in the right direction (solved) 
Date: Sat, 05 Dec 1998 00:46:13 +0000
Sender: owner-flexfax@celestial.com

In message <81F139B80EFBD1119DB900805F57C35B03A78D@na01ns3001.philip-env.com>, 
"Trottier, Dan" writes:
>Hi,
>
>I'm now sending faxes. I changed OldProtocol.c++ and the included #define
>of the old port number from 4557 to 4321 and recompiled. This seems to have
>fixed the problem as I can now send faxes. Perhaps the port numbers should be
>something which is easily changeable at configuration time (not that it was
>difficult to make the changes anyway).

Did I miss something, or have you not read the hfaxd manpage. I may be missing 
the early bits of this thread *puzzle*

SYNOPSIS
       /usr/sbin/hfaxd  [ -d ] [ -q dir ] [ -o port ] [ -O ] [ -i
       port ] [ -I ] [ -s port ] [ -S ]

note the `-o port`  

-Darren

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: flexfax@sgi.com
Subject: Re: flexfax: EOP / Phase B problems -- Zoom Modem 
Date: Mon, 07 Dec 1998 09:17:37 -0500
From: Glenn Burkhardt <glenn@aoi.ultranet.com>
Sender: owner-flexfax@celestial.com

This sounds like the same problem described by  Ulrich Eckhardt
(Ulrich.Eckhardt@transcom.de) on Oct 26. Some fax machines just hang up the
phone after the last page, and don't wait for the cleanup.  
I don't know that particular modem, but try running it in class 1 mode.
If it works, almost certainly the modem is not doing the right thing.

Steven Pham <steven@object-net.com> was working on a bug fix for Hylafax, but
I don't know how far he got.  I'd like to work on this, too, as soon as I 
can find the time.  I'd like to see the proposed change take place, too.


> I don't know that particular modem, but try running it in class 1 mode.
> If it works, almost certainly the modem is not doing the right thing.
> 
> Damian
> 
> Jeff Scott wrote:
> > 
> > HylaFax v4.0pl2 - Linux i586 machine (Slackware 3.5)
> > Zoom VFX modem - running class 2
> > 
> > I'm having repeated problems with faxes erroring out with EOP and Phase B
> > problems.
> > 
> > It seems like it is always the same fax machines that I have the problems
> > with.
> > 
> > The strange thing is that I have used this modem to connect to those same
> > fax machine before without problems (using a different FAX server software
> > program).
> > 
> > Can anyone give me any guidance on what I can do to make this modem more
> > compatible?
> > 
> > Here are the log excerpts:
> > 
> > EOP problem:
> > 
> > Dec 03 20:47:13.49: [ 2178]: SEND end page
> > Dec 03 20:47:17.88: [ 2178]: --> [2:OK]
> > Dec 03 20:47:17.88: [ 2178]: SEND send EOP (no more pages or documents)
> > Dec 03 20:47:17.88: [ 2178]: <-- [9:AT+FET=2\r]
> > Dec 03 20:47:33.30: [ 2178]: --> [9:+FHNG: 54]
> > Dec 03 20:47:33.30: [ 2178]: REMOTE HANGUP: No response to EOP repeated 3
> > times (code 54)
> > Dec 03 20:47:33.30: [ 2178]: SEND: No response to EOP repeated 3 times;
> > Giving up after 3 attempts to send same page "docq/doc149.ps;70", dirnum 0
> > Dec 03 20:47:33.30: [ 2178]: <-- [5:ATH0\r]
> > Dec 03 20:47:33.51: [ 2178]: --> [2:OK]
> > Dec 03 20:47:33.51: [ 2178]: SESSION END
> > 
> > Phase B problem:
> > 
> > Dec 03 20:57:43.72: [ 2263]: <-- [24:AT+FDIS=0,5,0,2,1,0,0,0\r]
> > Dec 03 20:57:43.97: [ 2263]: --> [2:OK]
> > Dec 03 20:57:43.97: [ 2263]: <-- [7:AT+FDT\r]
> > Dec 03 20:57:51.42: [ 2263]: --> [9:+FHNG: 20]
> > Dec 03 20:57:51.42: [ 2263]: REMOTE HANGUP: Unspecified Transmit Phase B
> > error (code 20)
> > Dec 03 20:57:51.54: [ 2263]: --> [2:OK]
> > Dec 03 21:00:51.54: [ 2263]: MODEM <Timeout>
> > Dec 03 21:00:51.54: [ 2263]: SEND: Unspecified Transmit Phase B error;
> > Giving up after 3 attempts to send same page "docq/doc163.ps;70", dirnum 0
> > Dec 03 21:00:51.54: [ 2263]: <-- [5:ATH0\r]
> > Dec 03 21:00:51.91: [ 2263]: --> [2:OK]
> > Dec 03 21:00:51.91: [ 2263]: SESSION END
> > 
> > I have seen in the archives that I have been able to get to that other
> > people have asked this same problem, but I have not found any pointers or
> > suggestions for fixing / working around the problem.
> > 
> > Any suggestions that you have will be greatly appreciated.
> > 
> > Cheers,
> > Jeff
> > 
> > --
> > -- Jeff Scott -- Technical Designer -- jeff@realbeer.com
> > -- Real Beer, Inc. -- (415) 522-1516x310 (voice) -- (415) 522-1535 (fax)
> > -- Internet Publishers and Consultants  --  http://www.realbeer.com
> > -- The single largest source for beer information, known to man!
> 
> -- 
>  ______________________________________________________________________
> * Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
> * MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
> * Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
> * damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
> *______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Trottier, Dan" <DTrottier@philipinc.com>
To: "'hylafax mailing list'" <flexfax@sgi.com>
Subject: RE: flexfax: Need a point in the right direction (solved) 
Date: Mon, 7 Dec 1998 09:38:15 -0500 
Sender: owner-flexfax@celestial.com

Hi,

Setting -o for hfaxd will only change the port that the server listens on.
There seems to be no
similar run time parameter for client programs. In /etc/services there only
seemed to be an
entry for "hylafax 4559" but no entry for the old protocol port at 4557.  So
I'm not sure, other
than a recompile, how a client would know the old port number had been
re-assigned.

Regards,

dan

> -----Original Message-----
> From:	darren@hylafax.org [SMTP:darren@hylafax.org]
> Sent:	Friday, December 04, 1998 7:46 PM
> To:	Trottier, Dan
> Cc:	'hylafax mailing list'
> Subject:	Re: flexfax: Need a point in the right direction (solved) 
> 
> In message
> <81F139B80EFBD1119DB900805F57C35B03A78D@na01ns3001.philip-env.com>, 
> "Trottier, Dan" writes:
> >Hi,
> >
> >I'm now sending faxes. I changed OldProtocol.c++ and the included #define
> >of the old port number from 4557 to 4321 and recompiled. This seems to
> have
> >fixed the problem as I can now send faxes. Perhaps the port numbers
> should be
> >something which is easily changeable at configuration time (not that it
> was
> >difficult to make the changes anyway).
> 
> Did I miss something, or have you not read the hfaxd manpage. I may be
> missing 
> the early bits of this thread *puzzle*
> 
> SYNOPSIS
>        /usr/sbin/hfaxd  [ -d ] [ -q dir ] [ -o port ] [ -O ] [ -i
>        port ] [ -I ] [ -s port ] [ -S ]
> 
> note the `-o port`  
> 
> -Darren

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 4 Dec 1998 11:35:38 -0500
From: Steven A DuChene <sad@hpuerca.atl.hp.com>
To: flexfax@sgi.com
Subject: flexfax: how much software needed on client machines?
Sender: owner-flexfax@celestial.com

I have a working HylaFAX server but now I am in the process of opening up
the service to other clients on the network. My questions concern how
much software is needed on the client boxes (HP-UX 9.X cnode cluster clients
and HP-UX 10.20 standalone systems) and how much of the preprocessing takes
place on the client systems? I.E. are the tiff tools needed on the clients
as well as ghostscript? Does the postscript to G3fax conversion take place
on the client prior to sending the job to the server? Is the coversheet
constructed on the client thus necessitating a cover page template get
installed on each client system?
-- 
Steve DuChene              sad@hpuerca.atl.hp.com               1-800-633-3600

	       The HP North American Response Center, Atlanta
		  X/CDE/Vue/xterminal/graphics support team
    		    I am an employee of Hewlett-Packard.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 4 Dec 1998 15:16:57 -0500
From: Steven A DuChene <sad@hpuerca.atl.hp.com>
To: Howard Moftich <howardm@lsil.com>
Cc: flexfax@sgi.com
Subject: Re: flexfax: how much software needed on client machines?
Sender: owner-flexfax@celestial.com

On Fri, Dec 04, 1998 at 01:15:52PM -0500, Howard Moftich wrote:
> I think the vast majority of it is done on the server.
> 
> If you look in the top level makefile, I'm pretty sure
> you will find a "client only" type target.
> 

Howard:
Yes, there is a mention in the HylaFAX documentation that I can do a
make InstallClient
but the documentation goes on to state:

A HylaFAX server accepts PostScript or TIFF format files and converts
them to the appropriate format required to transmit them as facsimile.
Any other documents must be converted prior to submitting them to the
server for transmission. In particular ASCII text must be converted
before it can be submitted.
-- 
Steve DuChene              sad@hpuerca.atl.hp.com               1-800-633-3600

	       The HP North American Response Center, Atlanta
		  X/CDE/Vue/xterminal/graphics support team
    		    I am an employee of Hewlett-Packard.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 4 Dec 1998 14:15:48 -0800 (PST)
From: Tim Rice <tim@trr.metro.NET>
To: Steven A DuChene <sad@hpuerca.atl.hp.com>
cc: HylaFAX list <flexfax@sgi.com>
Subject: Re: flexfax: how much software needed on client machines?
Sender: owner-flexfax@celestial.com

On Fri, 4 Dec 1998, Steven A DuChene wrote:

> On Fri, Dec 04, 1998 at 01:15:52PM -0500, Howard Moftich wrote:
> > I think the vast majority of it is done on the server.
> > 
> > If you look in the top level makefile, I'm pretty sure
> > you will find a "client only" type target.
> > 
> 
> Howard:
> Yes, there is a mention in the HylaFAX documentation that I can do a
> make InstallClient
> but the documentation goes on to state:

You only need the "make InstallClient" stuff.

tim(trr)@trruw 9% mv /usr/local/bin/gs /usr/local/gs.sav
tim(trr)@trruw 10% gs
UX:csh: ERROR: gs: Command not found
tim(trr)@trruw 11% !6
sendfax -n -d 887.1269 /etc/ttytype
request id is 62 (group id 62) for host trruw21 (1 file)
tim(trr)@trruw 12% faxstat -s
HylaFAX scheduler on trruw21: Running
Modem term/1a1 (887.7124): Waiting for modem to come ready

JID  Pri S  Owner Number       Pages Dials     TTS Status
62   127 R    tim 887.1269      0:1   0:12
tim(trr)@trruw 13% faxrm 62
Job 62 removed.
tim(trr)@trruw 14%

> 
> A HylaFAX server accepts PostScript or TIFF format files and converts
> them to the appropriate format required to transmit them as facsimile.
> Any other documents must be converted prior to submitting them to the
> server for transmission. In particular ASCII text must be converted
> before it can be submitted.
> 

-- 
Tim Rice			Multitalents	(707) 887-1469 (voice)
tim@trr.metro.net

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: "Trottier, Dan" <DTrottier@philipinc.com>
cc: "'hylafax mailing list'" <flexfax@sgi.com>
From: darren@hylafax.org
Subject: Re: flexfax: Need a point in the right direction (solved) 
Date: Mon, 07 Dec 1998 15:47:51 +0000
Sender: owner-flexfax@celestial.com

In message <81F139B80EFBD1119DB900805F57C35B03A78E@na01ns3001.philip-env.com>, 
"Trottier, Dan" writes:
>Hi,
>
>Setting -o for hfaxd will only change the port that the server listens on.
>There seems to be no
>similar run time parameter for client programs. In /etc/services there only
>seemed to be an
>entry for "hylafax 4559" but no entry for the old protocol port at 4557.  So
>I'm not sure, other
>than a recompile, how a client would know the old port number had been
>re-assigned.

>From one of the client man pages (faxstat):

       faxstat reads  configuration  information  from  the  file
       /usr/share/fax/hyla.conf and then from the file ~/.hylarc.
       Configuration files follow the  conventions  described  in
       hylafax(1).   The  following  configuration parameters are
       recognized:

       Tag              Type       Default      Description
   [snip]
       Port             integer    4559         port to use in contacting 
server


I should think this would be of interest to you.

-Darren

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 04 Dec 1998 10:17:37 +0100
To: flexfax@sgi.com
From: Martin Bene <mb@sime.com>
Subject: flexfax: html-email faxgateway anyone?
Sender: owner-flexfax@celestial.com

Hi,

I'd like to get the faxmail email-gateway to handle emails with text/html
encoding correctly. I've tried using the html2ps converter to get this to
work, but the postscript code produced by this tool doesn't seem to merge
well with the header generated by faxmail.

anyone got a working setup that will nicely format and send html emails?

thanks, martin
--------------------------------------------------
 Martin Bene               vox: +43-664-3251047
 simon media               fax: +43-316-813824-6
 Andreas-Hofer-Platz 9     e-mail: mb@sime.com
 8010 Graz, Austria        
--------------------------------------------------
finger mb@mail.sime.com for PGP public key

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: html-email faxgateway anyone?
To: mb@sime.com (Martin Bene)
Date: Sat, 5 Dec 1998 11:12:07 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> 
> I'd like to get the faxmail email-gateway to handle emails with text/html

In most cases this is really a proprietory rich text format optimised
for the product used to create it, so don't expect particularly good
formatting.  It might just be possible to get Netscape to render in
batch mode, but you are probably out of luck with IE.

> encoding correctly. I've tried using the html2ps converter to get this to
> work, but the postscript code produced by this tool doesn't seem to merge
> well with the header generated by faxmail.

Two possibilities:

1) There are some bugs in the distributed code in the handling of postscript
   first attachments, and workarounds have been published, but may not 
   have found their way into the patch archives.

2) Did you try it with the DSC option in html2ps turned on?

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 4 Dec 1998 11:16:49 -0600
From: Karl Denninger <karl@Denninger.Net>
To: flexfax@sgi.com
Subject: flexfax: EOL errors...
Organization: Karl's Sushi and Packet Smashers
X-Die-Spammers: Spammers will be LARTed and the remains fed to my cat
Sender: owner-flexfax@celestial.com


I'm getting a lot of the following errors now:

"803.4929"       "4164883714"    65535   0       1:51    1:51    "Missing EOL 
after 5 seconds (section 3.2/T.4)"


These just started showing up a couple of days ago, and are persistent.  Not
ALL calls generate this error, but a huge number of them do, and I have no
reason why its happening.

The jobs that do this don't get printed (they are considered incomplete) and
the sending end gets an error stating that the transmission may be
incomplete as well.

I'm running 4.0pl1 (yeah, old, but its been reliable for a long time) with
Telebit T3000 modems.

Any ideas?

--
-- 
Karl Denninger (karl@denninger.net) http://www.mcs.net/~karl
I ain't even *authorized* to speak for anyone other than myself, so give
up now on trying to associate my words with any particular organization.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 4 Dec 1998 11:02:33 -0800 (PST)
From: Tom <tom@uniserve.com>
To: flexfax@sgi.com
Subject: flexfax: RcvFmt for Netscape browsing?
Sender: owner-flexfax@celestial.com


  The FAQ mentions that RcvFmt could be modified so web browsers could be
used to display the receive queue.  Howerver, no mention is made of what
to use for RcvFmt.  I'd like to get as much FAX info into each line as
possible, but I have no idea what list formats that browswers can handle.

Tom

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 4 Dec 1998 19:47:12 -0800 (PST)
From: Tom <tom@uniserve.com>
To: flexfax@sgi.com
Subject: flexfax: can't receive fax
Sender: owner-flexfax@celestial.com


  Hylafax is having problems receiving a FAX from one particular FAX
machine.  We are using a USR Courier V.everything modem.  The session log
is attached below, and don't see what the other end doesn't like.

  I'm using HylaFAX 4.0pl2

Tom

---------- Forwarded message ----------
Dec 04 18:22:07.16: [  227]: SESSION BEGIN 00000035 15558567796
Dec 04 18:22:07.16: [  227]: <-- [4:ATA\r]
Dec 04 18:22:24.09: [  227]: --> [4:+FCO]
Dec 04 18:22:24.09: [  227]: ANSWER: FAX CONNECTION
Dec 04 18:22:24.10: [  227]: RECV FAX: begin
Dec 04 18:22:25.36: [  227]: --> [20:+FCS:0,1,0,2,0,0,0,5]
Dec 04 18:22:25.36: [  227]: REMOTE wants 4800 bit/s
Dec 04 18:22:25.36: [  227]: REMOTE wants page width 1728 pixels in 215 mm
Dec 04 18:22:25.36: [  227]: REMOTE wants unlimited page length 
Dec 04 18:22:25.36: [  227]: REMOTE wants 3.85 line/mm
Dec 04 18:22:25.36: [  227]: REMOTE wants 1-D MR
Dec 04 18:22:25.47: [  227]: --> [2:OK]
Dec 04 18:22:25.47: [  227]: <-- [7:AT+FDR\r]
Dec 04 18:22:31.63: [  227]: --> [20:+FCS:0,1,0,2,0,0,0,5]
Dec 04 18:22:31.63: [  227]: REMOTE wants 4800 bit/s
Dec 04 18:22:31.63: [  227]: REMOTE wants page width 1728 pixels in 215 mm
Dec 04 18:22:31.63: [  227]: REMOTE wants unlimited page length 
Dec 04 18:22:31.63: [  227]: REMOTE wants 3.85 line/mm
Dec 04 18:22:31.63: [  227]: REMOTE wants 1-D MR
Dec 04 18:22:37.86: [  227]: --> [20:+FCS:0,1,0,2,0,0,0,5]
Dec 04 18:22:37.86: [  227]: REMOTE wants 4800 bit/s
Dec 04 18:22:37.86: [  227]: REMOTE wants page width 1728 pixels in 215 mm
Dec 04 18:22:37.86: [  227]: REMOTE wants unlimited page length 
Dec 04 18:22:37.86: [  227]: REMOTE wants 3.85 line/mm
Dec 04 18:22:37.86: [  227]: REMOTE wants 1-D MR
Dec 04 18:22:44.10: [  227]: --> [20:+FCS:0,0,0,2,0,0,0,5]
Dec 04 18:22:44.10: [  227]: REMOTE wants 2400 bit/s
Dec 04 18:22:44.10: [  227]: REMOTE wants page width 1728 pixels in 215 mm
Dec 04 18:22:44.10: [  227]: REMOTE wants unlimited page length 
Dec 04 18:22:44.10: [  227]: REMOTE wants 3.85 line/mm
Dec 04 18:22:44.10: [  227]: REMOTE wants 1-D MR
Dec 04 18:22:50.35: [  227]: --> [20:+FCS:0,0,0,2,0,0,0,5]
Dec 04 18:22:50.35: [  227]: REMOTE wants 2400 bit/s
Dec 04 18:22:50.35: [  227]: REMOTE wants page width 1728 pixels in 215 mm
Dec 04 18:22:50.35: [  227]: REMOTE wants unlimited page length 
Dec 04 18:22:50.35: [  227]: REMOTE wants 3.85 line/mm
Dec 04 18:22:50.35: [  227]: REMOTE wants 1-D MR
Dec 04 18:22:56.60: [  227]: --> [20:+FCS:0,0,0,2,0,0,0,5]
Dec 04 18:22:56.60: [  227]: REMOTE wants 2400 bit/s
Dec 04 18:22:56.60: [  227]: REMOTE wants page width 1728 pixels in 215 mm
Dec 04 18:22:56.60: [  227]: REMOTE wants unlimited page length 
Dec 04 18:22:56.60: [  227]: REMOTE wants 3.85 line/mm
Dec 04 18:22:56.60: [  227]: REMOTE wants 1-D MR
Dec 04 18:23:02.95: [  227]: --> [7:+FHS:72]
Dec 04 18:23:02.95: [  227]: REMOTE HANGUP: COMREC error (code 72)
Dec 04 18:23:02.95: [  227]: RECV FAX (00000035): recvq/fax00014.tif from , route to <unspecified>, 0 pages in 0:38
Dec 04 18:23:02.95: [  227]: RECV FAX: COMREC error
Dec 04 18:23:02.98: [  227]: RECV FAX (00000035): session with  terminated abnormally: COMREC error
Dec 04 18:23:02.98: [  227]: RECV FAX: bin/faxrcvd "recvq/fax00014.tif" "cuaa1" "00000035" "COMREC error"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: Unable to transmit page (giving up after 3 attempts)
To: bga@payserv.telekurs.com (Alain Berger)
Date: Fri, 4 Dec 1998 08:40:15 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> Dec 03 10:54:04.14: [28660]: SEND recv RTN (retrain negative)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: flexfax@sgi.com
Subject: flexfax: **DILEMMA**
X-uri: http://www.tpc.int/
X-pgp-key-fingerprint: 05 CA 3F B5 43 F2 6A CE  DB 9E 08 39 80 F0 57 9E
Date: Sat, 05 Dec 1998 18:19:32 +0000
From: "Mr. Arlington Hewes" <tpcadmin@info.tpc.int>
Sender: owner-flexfax@celestial.com


Okay, here's the situation. About 4000 jobs in the queue, one modem. Jobs were 
queued with the default killtime of one day, and now they're all starting to 
expire.

faxq's like a runaway train now though . . . funny to think I was complaining 
about it being slow.

You see, the modem's wedged . . . so there's no sending going on. All faxq has 
to do is run the queue, expiring jobs - and it's extremely good at it today.

Here I sit, trying to `faxalter -k "now plus 1000000000000000 days" 123 124 
125 etc but faxq just refuses to list to me much . . . processing of my 
faxalter is soooooo slow that I MIGHT be able to save one for every 10 it 
expires.

Of course how to keep ahead of it in terms of JIDS?

The catch-22 is that I must have faxq running to faxalter the jobs. But if I 
do, it outraces me.

Suggestions?

Thanks!

-Darren

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Sat, 5 Dec 1998 21:49:33 +0100 (MET)
From: Richard Kail <e8903122@student.tuwien.ac.at>
To: "Mr. Arlington Hewes" <tpcadmin@info.tpc.int>
cc: flexfax@sgi.com
Subject: Re: flexfax: **DILEMMA**
Sender: owner-flexfax@celestial.com

Hello !

On Sat, 5 Dec 1998, Mr. Arlington Hewes wrote:

> Here I sit, trying to `faxalter -k "now plus 1000000000000000 days" 123 124 
> 125 etc but faxq just refuses to list to me much . . . processing of my 
> faxalter is soooooo slow that I MIGHT be able to save one for every 10 it 
> expires.

	Some weeks ago I solved the problem this way: Let the faxq expire
the jobs, write a small ad hoc perl or whatever script which scans the
logfile and resubmit all expired jobs.

	Ok, this is only suitable if you are doing a 'one time'
fax-action.


Kind regards,
	
Richard

------
NORTH POLE -- In a press release today, Claus & Co. Gift Givers, Inc. 
announced that the company had migrated all of its computer systems to 
Linux. "Delivering millions of presents all over the world in one night 
is certainly a mission-critical application," the press release stated. 
"Linux is the perfect choice."  (on segfault.org)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: flexfax@sgi.com
cc: shuvam@spacenetindia.com (Shuvam Misra)
From: Darren Nickerson <darren@hylafax.org>
Subject: Re: flexfax: **DILEMMA** 
Date: Sat, 05 Dec 1998 20:04:38 +0000
Sender: owner-flexfax@celestial.com


Folks,

Sorry to followup to my own post, but since it was important I rescue the jobs 
quickly, I have cobbled together a script which I think does the trick. My 
perl is embryonic . . . if you'd like to suggest how I can improve the script 
please do so, but gently ;-)

When run with this many queued faxes:

meghdoot:/var/spool/fax/sendq$ ls -1 | wc
   2864    2864   17138

the script takes its time, but gets there in the end:

meghdoot:/var/spool/fax/sendq$ time ../reset_killtime.pl
25.31user 318.70system 5:48.67elapsed 98%CPU (0avgtext+0avgdata 0maxresident)k
0inputs+0outputs (3057major+155036minor)pagefaults 0swaps

It's attached, in case it's useful to anyone in the future. At the very least 
is saves the pain of typing all those bloody JobIDs into faxalter commands one 
by one!

Please, if you cannot understand how this script works, ask a friend. If it 
messes up your machine I can't come to your rescue. Use at your own risk!

-Darren


Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\reset_killtime.pl"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Paul S. Russell" <paulr@cmysys.com>
Organization: CMY Systems Sdn. Bhd.
To: flexfax@sgi.com
Date: Sun, 6 Dec 1998 10:49:28 MYT-8
Subject: Re: flexfax: **DILEMMA**
Reply-to: paulr@cmysys.com
Sender: owner-flexfax@celestial.com

On 5 Dec 98, at 18:19, Mr. Arlington Hewes wrote:

[snip]
> The catch-22 is that I must have faxq running to faxalter the jobs. But if
> I do, it outraces me.
> 
> Suggestions?

Wouldn't it be better to kill faxq temporarily and manually edit (or by 
perl/shell script) the files in /var/spool/fax/sendq ?

The files beginning with 'q' seem to contain the kill time as the nbr 
of secs since the epoch.  e.g.-

killtime:913078800

Making this some larger nbr would stop the faxes being killed I 
assume (I haven't tried it).   Then you could restart faxq.

HTH

--paul




  Paul S. Russell, CMY Systems Sdn. Bhd., Shah Alam, Malaysia
  E-mail: paulr@cmysys.com  Web: http://www.cmysys.com/info/
  Phone: +60 (0)3 559 4616  Fax: +60 (0)3 550 4249  
  Visit Malaysian Motorsports at http://www.cmysys.com/mmsports/

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Sun, 06 Dec 1998 13:56:37 +1100
To: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>,
        HylaFax Mailing liste <flexfax@sgi.com>
From: Robert Colquhoun <rjc@trump.net.au>
Subject: Re: flexfax: RTN Problem
Sender: owner-flexfax@celestial.com

Hi Ulrich,

At 11:27 AM 12/3/98 +0100, Ulrich Eckhardt wrote:
>Hi,
>
>this patch helped against the RTN problem :-) but the good old 
>REMOTE HANGUP: No response to EOP repeated 3 times (code 54)
>is also present.

Excellent - thats the combination of both the tagline & speed reduce patches. 

Re the EOP problem, does that happen consistently to certain locations, or
is it random, does it still occur with a different modem or the modem
running in class1?

>Is there some good documentation about the fax protocol availabe
>somewhere ?

There's a little bit of information here:
http://www.hylafax.org/Modems/Supra/class2.html
and
http://www.hylafax.org/Modems/Supra/class1.html

You can order the fax-standard documents, they take around 8 weeks to
arrive at least in Oz.  It is much quicker to download them from
http://www.itu.int/ you will need a credit card though.

- Robert

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: msw@cluedin.com (Michael S. Weiner (Doc))
To: flexfax@sgi.com
Subject: flexfax: New Multitech modem-blank faxes
Cc: SGB@cluedin.com
Date: Sun, 6 Dec 1998 7:31:50 CST
Sender: owner-flexfax@celestial.com

I had previously submitted this question with the subject,
"Perfect Blank Faxes", but received no
responses from this otherwise quite active group.
(That suggests the problem may be more "interesting" than
my first assumption that I had just overlooked something obvious.)
Because I now have additional information much better delimiting
the area of the problem, I'm submitting a new inquiry.

Having read in this group of the problems of USRobotics
Sportster modems and after reading Sam Leffler's Modem Cookbook
at the Hylafax site, I installed a new multitech modem, MT5634ZBA,
a model recommended for this application by the Multitech Sales rep.

The modem appears to work fine, receives faxes without 
any error indications (even in the .../spool/log c000.... files --
detail of which was included in my previous posting --
BUT all the received fax pages (from a variety of fax machines
in various locations) are BLANK.
(Well, actually faintly streaked as one would get trying to
copy a blank page on a copier with adjusted toward "darker".)

When I disconnect the multitech and reconnect the USRobtics
and swap the USRobtics modem config file for the multitech version of
.../spool/etc/config.tty1A, I can again receive faxes
(tho with some of the previous intermittent problems of the USRobotics modem)
which contain their appropriate information.

Thus I conclude that this is either a hardware/firmware
problem with this new multitech modem (MT5634ZBA) or with the
config.tty1a file that was generated for it by faxaddmodem.
I have not received much help on this from multitech support,
but am still trying (and report any interesting results here).
A copy of the config file for the multitech is attached below.

I'd appreciate any help I can get (especially because I have
some remote locations that the USRobotic's modem services very poorly).

### ...etc/config.tty1A  (for the multitech generated by faxaddmodem  ###

# $Id: mt-1432,v 1.23 1996/06/24 02:58:36 sam Rel $
#
# HylaFAX Facsimile Software
#
# Copyright (c) 1990-1996 Sam Leffler
# Copyright (c) 1991-1996 Silicon Graphics, Inc.
# HylaFAX is a trademark of Silicon Graphics, Inc.
# 
# 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.
#

#
# Configuration for a Multi-Tech MT1432, MT224BA, and MT1932ZDX modems.
#
# MT1432	firmware rev 0307 I or newer
# MT132BG	rev 0109A
# MT1932ZDX	rev 0109H
#
# Note that MT1432 modems come in several varieties:
#
# MT1432BA	uses Rockwell data pump
# MT1432BA/A	uses AT&T data pump
# MT1432BG	MT1432BA tweaked for German FCC
# MT1432MK	(for UK?)
#
# The modem has been tried with both XON/XOFF and RTS/CTS flow
# control; this configuration is for hardware flow control.
#
#
CountryCode:		1
AreaCode:		512
FAXNumber:		1.512.367.8097
LongDistancePrefix:	1
InternationalPrefix:	011
DialStringRules:	"etc/dialrules"
ServerTracing:		1
SessionTracing:		11
RecvFileMode:		0600
LogFileMode:		0600
DeviceMode:		0600
RingsBeforeAnswer:	1
SpeakerVolume:		off
GettyArgs:		"-t60 tty1A o"
LocalIdentifier:	"NothingSetup"
TagLineFont:		etc/lutRS18.pcf
TagLineFormat:		"From %%l|%c|Page %%p of %%t"
MaxConsecutiveBadLines:	0
MaxRecvPages:		50
#
#
# Modem-related stuff: should reflect modem command interface
# and hardware connection/cabling (e.g. flow control).
#
ModemType:		Class2		# use class 2 interface
ModemRate:		38400		# lock rate for DCE-DTE communication
ModemFlowControl:	rtscts		# default
#
ModemHardFlowCmd:	AT&E4		# hardware flow control
ModemSoftFlowCmd:	AT&E5		# software flow control
ModemSetupDTRCmd:	AT&D3		# setup so DTR drop resets modem
ModemSetupDCDCmd:	AT&C1		# setup so DCD reflects carrier (or not)
ModemSetupAACmd:	AT+FAA=1	# enable adaptive-answer in class 2
#
# NB: some models get confused by the @
#
ModemDialCmd:		ATDT%s@		# T for tone dialing, @ for silence
#
Class2RecvDataTrigger:	"\022"		# character sent to modem to start recv

 Michael S. Weiner     4607 Agarita Cove #1     voice: 512-266-1188
 msw@cluedin.com       Austin, TX 78734 USA     fax:   512-386-8097

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Sun, 6 Dec 1998 09:18:39 -0800 (PST)
From: Tim Rice <tim@trr.metro.NET>
To: "Michael S. Weiner (Doc)" <msw@cluedin.com>
cc: flexfax@sgi.com, SGB@cluedin.com
Subject: Re: flexfax: New Multitech modem-blank faxes
Sender: owner-flexfax@celestial.com

On Sun, 6 Dec 1998, Michael S. Weiner (Doc) wrote:

> I had previously submitted this question with the subject,
> "Perfect Blank Faxes", but received no
> responses from this otherwise quite active group.
> (That suggests the problem may be more "interesting" than
> my first assumption that I had just overlooked something obvious.)
> Because I now have additional information much better delimiting
> the area of the problem, I'm submitting a new inquiry.
> 
> Having read in this group of the problems of USRobotics
> Sportster modems and after reading Sam Leffler's Modem Cookbook
> at the Hylafax site, I installed a new multitech modem, MT5634ZBA,
> a model recommended for this application by the Multitech Sales rep.
> 
> The modem appears to work fine, receives faxes without 
> any error indications (even in the .../spool/log c000.... files --
> detail of which was included in my previous posting --
> BUT all the received fax pages (from a variety of fax machines
> in various locations) are BLANK.
> (Well, actually faintly streaked as one would get trying to
> copy a blank page on a copier with adjusted toward "darker".)
> 
> When I disconnect the multitech and reconnect the USRobtics
> and swap the USRobtics modem config file for the multitech version of
> .../spool/etc/config.tty1A, I can again receive faxes
> (tho with some of the previous intermittent problems of the USRobotics modem)
> which contain their appropriate information.
> 
> Thus I conclude that this is either a hardware/firmware
> problem with this new multitech modem (MT5634ZBA) or with the

Didn't multitech drop support for class 2 on the 56K modems?
Try using class1

> config.tty1a file that was generated for it by faxaddmodem.
> I have not received much help on this from multitech support,
> but am still trying (and report any interesting results here).
> A copy of the config file for the multitech is attached below.
> 
[snip]
> #
> ModemType:		Class2		# use class 2 interface
                        ^^^^^^
[snip]
> 

-- 
Tim Rice			Multitalents	(707) 887-1469 (voice)
tim@trr.metro.net

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Reply-To: "Chen Coulter" <software_sourcery@bigfoot.com>
From: "Chen Coulter" <software_sourcery@bigfoot.com>
To: <flexfax@sgi.com>
Subject: Fw: flexfax: New Multitech modem-blank faxes
Date: Sun, 6 Dec 1998 20:34:19 -0800
Sender: owner-flexfax@celestial.com


-----Original Message-----
From: Chen Coulter <software_sourcery@bigfoot.com>
To: Tim Rice <tim@trr.metro.NET>
Date: Sunday, December 06, 1998 8:30 PM
Subject: Re: flexfax: New Multitech modem-blank faxes


>>Didn't multitech drop support for class 2 on the 56K modems?
>>Try using class1
>>
>
>>[snip]
>>> #
>>> ModemType: Class2 # use class 2 interface
>>                        ^^^^^^
>>[snip]
>>> 
>>
>>-- 
>>Tim Rice Multitalents (707) 887-1469 (voice)
>>tim@trr.metro.net
>>
>>
>>
>
>Tim/Michael:
>
>It's my understanding that MultiTech dropped support
>for class 2 in the 56K ZDX and internal (ZPX) modems
>only.  The ZBA is still considered a business class
>modem and a MultiTech sales rep told me at Comdex
>that it still had Class 2 (in fact, he's supposed to be
>sending me one).
>
>In any event, if you have any way to communicate
>directly with the modem, you should be able to
>enter an "AT+FCLASS=?" command and it will tell you
>what fax classes it supports.
>
>Chen Coulter
>software_sourcery@bigfoot.com
>
>
>

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 7 Dec 1998 12:55:54 -0500 (EST)
From: Martin Renters <martin@datafax.com>
To: flexfax@sgi.com, msw@cluedin.com
Subject: Re: flexfax: New Multitech modem-blank faxes
Cc: SGB@cluedin.com
Sender: owner-flexfax@celestial.com

> I had previously submitted this question with the subject,
> "Perfect Blank Faxes", but received no
> responses from this otherwise quite active group.
>
> 
> The modem appears to work fine, receives faxes without 
> any error indications (even in the .../spool/log c000.... files --
> detail of which was included in my previous posting --
> BUT all the received fax pages (from a variety of fax machines
> in various locations) are BLANK.

I had the same problem. Try adding the lines:

ModemSendFillOrder:     LSB2MSB
ModemRecvFillOrder:     MSB2LSB         # opposite of earlier models

to the end of your config.tty* file.  I found this worked on some MT5634ZDX
modems (which did class 2 even though customer support said they didn't).

The 56K modems appear to use a Rockwell chipset and one of our customers
had problems with them and went back to the MT2834ZDX (The MT2834ZDXb-u
appears to have the same chipset)

Here's a sample config file for the MT5634ZDX modems:

#
# Configuration for a Multi-Tech MT5634ZDX modems, also sometimes sold as
# MT2834ZDXbu
#
# CONFIG: CLASS2: LT*33*6*MT5634ZDX
#
# BEGIN-SERVER
# END-SERVER
#
# Modem-related stuff: should reflect modem command interface
# and hardware connection/cabling (e.g. flow control).
#
ModemType:              Class2          # use class 2 interface
ModemRate:              38400           # lock rate for DCE-DTE communication
ModemFlowControl:       xonxoff         # default
#
ModemNoFlowCmd:         AT&K
ModemHardFlowCmd:       AT&K3           # hardware flow control
ModemSoftFlowCmd:       AT&K4           # software flow control
ModemSetupDTRCmd:       AT&D3           # setup so DTR drop resets modem
ModemSetupDCDCmd:       AT&C1           # setup so DCD reflects carrier (or not)
ModemSetupAACmd:        AT+FAA=0        # enable adaptive-answer in class 2
#
#
ModemDialCmd:           ATDT%s          # T for tone dialing, @ for silence
#
Class2RecvDataTrigger:  "\022"          # character sent to modem to start recv
ModemSendFillOrder:     LSB2MSB
ModemRecvFillOrder:     MSB2LSB         # opposite of earlier models

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: can't receive fax
To: tom@uniserve.com (Tom)
Date: Sat, 5 Dec 1998 11:24:29 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> Dec 04 18:22:25.36: [  227]: REMOTE wants 4800 bit/s

Its opening bid for speed is low, so I suspect they know they are on
a bad line.

> Dec 04 18:22:31.63: [  227]: REMOTE wants 4800 bit/s
> Dec 04 18:22:37.86: [  227]: REMOTE wants 4800 bit/s
> Dec 04 18:22:44.10: [  227]: REMOTE wants 2400 bit/s

I'm not completely familiar with class 2.0, but either the remote 
modem hasn't seen the acknowldegment and is timing out and resending
(if this is a possible case, should Hylafax be re-acknowledging -
would depend on the details of Class 2.0), or the local modem is
failing to train up on the incoming carrier and the remote modem
is repeating the training, at first at the original slow speed, and
then at an even slower one.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: gdoris@shaw.wave.ca
Date: Sun, 06 Dec 1998 09:29:16 -0500 (EST)
To: Hylafax <flexfax@sgi.com>
Subject: flexfax: Modem won't acknowledge remote on dial out???
Sender: owner-flexfax@celestial.com

I thought I had everything working correctly.  I was able to dial out and had
no problem with incoming faxes.  I was wrong!

I can receive incoming faxes without problems but I can't send properly.  During
the send my modem dials and the remote modem answers and sends the appropriate
tones.  My modem just sits there and eventually the connection times out.  The
error is that the remote modem failed to answer.

Once the job fails my modem happily resets and waits for the next job.

The strange thing is that sometimes the connection is made properly.  If my
modem does acknowledge the remote then the send completes successfully.  There
just seems to be a problem (most times) with my modem initially handshaking with
the remote.  It happens on all remote modems.

I'm using SuSE 5.3 linux, the latest Hylafax release, and a US Robotics
Sportster Voice V.90 X2 modem.  I've attached the modem config file and a
typical log failure.

I'd REALLY appreciate any help you can give!!!!

Gerry

----------------------------------
E-Mail: gdoris@shaw.wave.ca
Date: 06-Dec-98
Time: 09:07:56

This message was sent by XFMail
----------------------------------

Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\config1.fax"

Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\c00000042"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Fred Ng" <fred@webforce.com.hk>
To: "Hylafax" <flexfax@sgi.com>
Subject: flexfax: whfc
Date: Mon, 7 Dec 1998 10:15:34 +0800
Sender: owner-flexfax@celestial.com

I have configured a hylafax server. However when I logon from whfc (windows
client application), it keep saying that password is incorrect, no user can
login to the server, can anyone confirmed on which part of the server had
went wrong.

Thank you

Fred

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 7 Dec 1998 17:30:52 +1300 (NZDT)
From: Jonathan Chen <jonc@pinnacle.co.nz>
To: Fred Ng <fred@webforce.com.hk>
cc: Hylafax <flexfax@sgi.com>
Subject: Re: flexfax: whfc
Sender: owner-flexfax@celestial.com

On Mon, 7 Dec 1998, Fred Ng wrote:

> I have configured a hylafax server. However when I logon from whfc (windows
> client application), it keep saying that password is incorrect, no user can
> login to the server, can anyone confirmed on which part of the server had
> went wrong.

You need to set up the HylaFAX hosts(4f) file to allow access from
your WHFC client. Check out the man page for more details.

Jonathan Chen
----------------------------------------------------------------------
             "A person should be able to do a small bit of everything,
                                        specialisation is for insects"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 07 Dec 1998 15:08:14 +1100
From: Keith Gray <kapgray@ocean.com.au>
Organization: K & AP Gray
To: Fred Ng <fred@webforce.com.hk>
CC: HylaFax Mailing List <flexfax@sgi.com>
Subject: Re: flexfax: whfc
Sender: owner-flexfax@celestial.com

Fred Ng wrote:
> 
> I have configured a hylafax server. However when I logon from whfc (windows
> client application), it keep saying that password is incorrect, no user can
> login to the server, can anyone confirmed on which part of the server had
> went wrong.

Quick fix is to set your reply email adress to name@localhost... better
fix is to look at the man page for (4f or 5f) hosts


Keith
-- 
http://members.ocean.com.au/kapgray/

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 7 Dec 1998 07:51:07 -0500 (EST)
From: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
To: Fred Ng <fred@webforce.com.hk>
Cc: Hylafax <flexfax@sgi.com>
Subject: Re: flexfax: whfc
Sender: owner-flexfax@celestial.com

-----BEGIN PGP SIGNED MESSAGE-----

On Mon, 7 Dec 1998, Fred Ng wrote:

> I have configured a hylafax server. However when I logon from whfc (windows
> client application), it keep saying that password is incorrect, no user can
> login to the server, can anyone confirmed on which part of the server had
> went wrong.

The default "etc/hosts" setup for HylaFAX has a very fascist security
level. Try reading the manual page for it, and setting the security more
loosely to include the IP addresses for your Windows clients.

			Nico Kadel-Garcia
			Senior Engineer, CIRL 
			Mass. Eye and Ear Infirmary
			raoul@cirl.meei.harvard.edu

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBNmvPJD/+ItycgIJRAQFxOwP8CJWGzQMcuj6dgcKKw47HRztQNMrzcDF7
Se9kL1SWJXIonhCR2zq/TrlIq+2ycCp+aE43hom9J8aHFxnbSnjcOZXIn7dJjTab
OAAj+FWTCrJciZmMs+V7FY/GU0WuymQYKzh8sm1aXLdCG4LhQreQOiCSzThL5G0D
53zAIuKmvy4=
=QIdG
-----END PGP SIGNATURE-----

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: "Fred Ng" <fred@webforce.com.hk>
Cc: flexfax@sgi.com
Subject: Re: flexfax: whfc 
Date: Mon, 07 Dec 1998 09:26:39 -0500
From: Glenn Burkhardt <glenn@aoi.ultranet.com>
Sender: owner-flexfax@celestial.com

> I have configured a hylafax server. However when I logon from whfc (windows
> client application), it keep saying that password is incorrect, no user can
> login to the server, can anyone confirmed on which part of the server had
> went wrong.
> 
> Thank you
> 
> Fred
> 
> 
> 
Try adding your client's hostname to the /var/spool/fax/etc/hosts file.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Charles J. Boening" <bones@jahl.com>
To: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: FW: flexfax: whfc (My turn :-) )
Date: Mon, 7 Dec 1998 09:36:34 -0800 
Sender: owner-flexfax@celestial.com

I too was having similar problems.  I got it working from home ok, after
fixing the entry in the hosts file, but not at work.  The difference at work
is that my workstation is behind MS Proxy Server.  When I try to establish a
connection, I get a response that the server is ready (the same one you get
if you telnet to the server) and then it times out with an error to the
effect "no route to host"

Also ... I can't seem to get it to logon as admin.  it always says "bad
password".  I've tried setting up the user in the hosts file, but no dice.

Any ideas?

Thanks

-----Original Message-----
From: Jonathan Chen [mailto:jonc@pinnacle.co.nz]
Sent: Sunday, December 06, 1998 8:31 PM
To: Fred Ng
Cc: Hylafax
Subject: Re: flexfax: whfc


On Mon, 7 Dec 1998, Fred Ng wrote:

> I have configured a hylafax server. However when I logon from whfc
(windows
> client application), it keep saying that password is incorrect, no user
can
> login to the server, can anyone confirmed on which part of the server had
> went wrong.

You need to set up the HylaFAX hosts(4f) file to allow access from
your WHFC client. Check out the man page for more details.

Jonathan Chen
----------------------------------------------------------------------
             "A person should be able to do a small bit of everything,
                                        specialisation is for insects"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 8 Dec 1998 08:48:52 +1300 (NZDT)
From: Jonathan Chen <jonc@pinnacle.co.nz>
To: "Fred C. Ng" <fred@webforce.com.hk>
cc: Hylafax Mailing list <flexfax@sgi.com>
Subject: Re: flexfax: whfc
Sender: owner-flexfax@celestial.com

[Please do *NOT* write to me personally about HylaFAX. Write to the list]

On Mon, 7 Dec 1998, Fred C. Ng wrote:

> Is it possible you can breifly advice me on the procedure on setting up a
> fax server.
> Cos first of all, I couldn't able to receive any fax at all, second of all.
> I can sometime send out fax, but not all the time. Can't figure what's wrong
> with it.
> Can you please advice on the procedure to setup the fax server I installed
> hylafax.

Everything I could tell you would be listed in the documentation on
the web-site and the package itself. It's always better to ask
specific questions; give details about what you've done so far,
and what attempts *you* have made in attempting to fix it.

Cheers.
--
Jonathan Chen
------------------------------------------------------------------------
  "If you wish your merit to be known, acknowledge that of other people"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Charles J. Boening" <bones@jahl.com>
To: "'Damian A Ivereigh'" <damian@cisco.com>
Cc: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: RE: FW: flexfax: whfc (My turn :-) )
Date: Mon, 7 Dec 1998 15:36:56 -0800 
Sender: owner-flexfax@celestial.com

This could be.  I do know that to others, my IP address seems to be that of
my proxy server and not my real internal IP number.  Hmmmm ... anybody?



-----Original Message-----
From: Damian A Ivereigh [mailto:damian@cisco.com]
Sent: Monday, December 07, 1998 3:17 PM
To: Charles J. Boening; flexfax@sgi.com
Subject: Re: FW: flexfax: whfc (My turn :-) )


Hmm, since the protocol is basically an extended FTP protocol, I wonder
if it has the same problem going through firewalls and proxy devices
that FTP does. I.e. in ftp you have to use passive mode, so that the
data connection is always opened from inside the wall.

You could also be suffering from TCP/IP masquerading - where the IP
address from inside is not what programs see from the outside - I think
the FTP protocol actually sends the IP address within the protocol.
Again maybe a passive mode would fix this.

Damian

Charles J. Boening wrote:
> 
> I too was having similar problems.  I got it working from home ok, after
> fixing the entry in the hosts file, but not at work.  The difference at
work
> is that my workstation is behind MS Proxy Server.  When I try to establish
a
> connection, I get a response that the server is ready (the same one you
get
> if you telnet to the server) and then it times out with an error to the
> effect "no route to host"
> 
> Also ... I can't seem to get it to logon as admin.  it always says "bad
> password".  I've tried setting up the user in the hosts file, but no dice.
> 
> Any ideas?
> 
> Thanks
> 
> -----Original Message-----
> From: Jonathan Chen [mailto:jonc@pinnacle.co.nz]
> Sent: Sunday, December 06, 1998 8:31 PM
> To: Fred Ng
> Cc: Hylafax
> Subject: Re: flexfax: whfc
> 
> On Mon, 7 Dec 1998, Fred Ng wrote:
> 
> > I have configured a hylafax server. However when I logon from whfc
> (windows
> > client application), it keep saying that password is incorrect, no user
> can
> > login to the server, can anyone confirmed on which part of the server
had
> > went wrong.
> 
> You need to set up the HylaFAX hosts(4f) file to allow access from
> your WHFC client. Check out the man page for more details.
> 
> Jonathan Chen
> ----------------------------------------------------------------------
>              "A person should be able to do a small bit of everything,
>                                         specialisation is for insects"

-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 08 Dec 1998 10:16:56 +1100
From: Damian A Ivereigh <damian@cisco.com>
Organization: Cisco Systems Inc
To: "Charles J. Boening" <bones@jahl.com>, flexfax@sgi.com
Subject: Re: FW: flexfax: whfc (My turn :-) )
Sender: owner-flexfax@celestial.com

Hmm, since the protocol is basically an extended FTP protocol, I wonder
if it has the same problem going through firewalls and proxy devices
that FTP does. I.e. in ftp you have to use passive mode, so that the
data connection is always opened from inside the wall.

You could also be suffering from TCP/IP masquerading - where the IP
address from inside is not what programs see from the outside - I think
the FTP protocol actually sends the IP address within the protocol.
Again maybe a passive mode would fix this.

Damian

Charles J. Boening wrote:
> 
> I too was having similar problems.  I got it working from home ok, after
> fixing the entry in the hosts file, but not at work.  The difference at work
> is that my workstation is behind MS Proxy Server.  When I try to establish a
> connection, I get a response that the server is ready (the same one you get
> if you telnet to the server) and then it times out with an error to the
> effect "no route to host"
> 
> Also ... I can't seem to get it to logon as admin.  it always says "bad
> password".  I've tried setting up the user in the hosts file, but no dice.
> 
> Any ideas?
> 
> Thanks
> 
> -----Original Message-----
> From: Jonathan Chen [mailto:jonc@pinnacle.co.nz]
> Sent: Sunday, December 06, 1998 8:31 PM
> To: Fred Ng
> Cc: Hylafax
> Subject: Re: flexfax: whfc
> 
> On Mon, 7 Dec 1998, Fred Ng wrote:
> 
> > I have configured a hylafax server. However when I logon from whfc
> (windows
> > client application), it keep saying that password is incorrect, no user
> can
> > login to the server, can anyone confirmed on which part of the server had
> > went wrong.
> 
> You need to set up the HylaFAX hosts(4f) file to allow access from
> your WHFC client. Check out the man page for more details.
> 
> Jonathan Chen
> ----------------------------------------------------------------------
>              "A person should be able to do a small bit of everything,
>                                         specialisation is for insects"

-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 08 Dec 1998 12:01:45 +1100
From: Damian A Ivereigh <damian@cisco.com>
Organization: Cisco Systems Inc
To: "Charles J. Boening" <bones@jahl.com>
CC: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: Re: FW: flexfax: whfc (My turn :-) )
Sender: owner-flexfax@celestial.com

I think this is an area that is going to need some coding. However it
will need a change in the server and the WHFC client. The other problem
that might be encountered is that proxy servers understand the ftp
protocol and might do some surreptitious fiddling to make it work. They
will not do this with the fax "FTP" protocol though. So we may be onto a
non-starter.

You may want to look at other ways to get the fax to the server e.g.
printing using Samba, or even emailing the postscript file. Neither
though are as neat as WHFC though.

Damian

Charles J. Boening wrote:
> 
> This could be.  I do know that to others, my IP address seems to be that of
> my proxy server and not my real internal IP number.  Hmmmm ... anybody?
> 
> -----Original Message-----
> From: Damian A Ivereigh [mailto:damian@cisco.com]
> Sent: Monday, December 07, 1998 3:17 PM
> To: Charles J. Boening; flexfax@sgi.com
> Subject: Re: FW: flexfax: whfc (My turn :-) )
> 
> Hmm, since the protocol is basically an extended FTP protocol, I wonder
> if it has the same problem going through firewalls and proxy devices
> that FTP does. I.e. in ftp you have to use passive mode, so that the
> data connection is always opened from inside the wall.
> 
> You could also be suffering from TCP/IP masquerading - where the IP
> address from inside is not what programs see from the outside - I think
> the FTP protocol actually sends the IP address within the protocol.
> Again maybe a passive mode would fix this.
> 
> Damian
> 
> Charles J. Boening wrote:
> >
> > I too was having similar problems.  I got it working from home ok, after
> > fixing the entry in the hosts file, but not at work.  The difference at
> work
> > is that my workstation is behind MS Proxy Server.  When I try to establish
> a
> > connection, I get a response that the server is ready (the same one you
> get
> > if you telnet to the server) and then it times out with an error to the
> > effect "no route to host"
> >
> > Also ... I can't seem to get it to logon as admin.  it always says "bad
> > password".  I've tried setting up the user in the hosts file, but no dice.
> >
> > Any ideas?
> >
> > Thanks
> >
> > -----Original Message-----
> > From: Jonathan Chen [mailto:jonc@pinnacle.co.nz]
> > Sent: Sunday, December 06, 1998 8:31 PM
> > To: Fred Ng
> > Cc: Hylafax
> > Subject: Re: flexfax: whfc
> >
> > On Mon, 7 Dec 1998, Fred Ng wrote:
> >
> > > I have configured a hylafax server. However when I logon from whfc
> > (windows
> > > client application), it keep saying that password is incorrect, no user
> > can
> > > login to the server, can anyone confirmed on which part of the server
> had
> > > went wrong.
> >
> > You need to set up the HylaFAX hosts(4f) file to allow access from
> > your WHFC client. Check out the man page for more details.
> >
> > Jonathan Chen
> > ----------------------------------------------------------------------
> >              "A person should be able to do a small bit of everything,
> >                                         specialisation is for insects"
> 
> --
>  ______________________________________________________________________
> * Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
> * MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
> * Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
> * damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
> *______________________________________________________________________*

-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 7 Dec 1998 17:45:13 +0100 (MET)
From: Wolf Ruediger Spielmann <rspielmann@gmx.de>
To: flexfax@sgi.com
Subject: flexfax: Unspecified Receive Phase B error (code 70)
X-Authenticated-Sender: rspielmann@gmx.net
X-Authenticated-IP: [129.70.39.75]
Sender: owner-flexfax@celestial.com

Hi folks,

I'm using a hylafax 4.0pl2 under linux 2.0.35.

I created a link /dev/faxmodem -> /dev/cua1 to my modem.

When starting the system, syslog reports :
---------- snip ----------------
Dec  7 12:57:55 router FaxQueuer[305]: HylaFAX (tm) Version 4.0pl2
Dec  7 12:57:55 router FaxQueuer[305]: Copyright (c) 1990-1996 Sam Leffler
Dec  7 12:57:55 router FaxQueuer[305]: Copyright (c) 1991-1996 Silicon
Graphics, Inc.
Dec  7 12:57:56 router HylaFAX[307]: HylaFAX INET Protocol Server:
restarted.
Dec  7 12:57:56 router HylaFAX[307]: HylaFAX Old Protocol Server:
restarted.
Dec  7 12:57:56 router HylaFAX[307]: HylaFAX SNPP Protocol Server:
restarted.
Dec  7 12:58:01 router FaxGetty[320]: OPEN /dev/faxmodem
Dec  7 12:58:08 router FaxGetty[320]: MODEM ROCKWELL RC32ACL/V1.600-DS29F
Dec  7 12:58:15 router FaxGetty[320]: ANSWER: Can not lock modem device
                                 ???? ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
????
Dec  7 12:58:19 router FaxSend[330]: MODEM ROCKWELL RC32ACL/V1.600-DS29F
---------- snip ----------------

Everything works fine ... especially sending a fax !

log/c000???? reports :
---------- snip ----------------
Dec 07 12:58:19.84: [  330]: SESSION BEGIN 00000002 4952114
Dec 07 12:58:19.84: [  330]: SEND FAX: JOB 1 DEST 14 COMMID 00000002
...
Dec 07 12:59:02.26: [  330]: SEND recv MCF (message confirmation)
Dec 07 12:59:02.26: [  330]: SEND FAX (00000002): FROM root@router TO 14
(page 1 of 1 sent in 0:19)
Dec 07 12:59:02.26: [  330]: SEND FAX (00000002): FROM root@router TO 14
(docq/doc1.ps;00 sent in 0:19)
Dec 07 12:59:02.26: [  330]: <-- [5:ATH0\r]
Dec 07 12:59:03.96: [  330]: --> [8:+FHNG: 0]
Dec 07 12:59:03.96: [  330]: REMOTE HANGUP: Normal and proper end of
connection (code 0)
Dec 07 12:59:04.98: [  330]: --> [2:OK]
Dec 07 12:59:04.98: [  330]: SESSION END
---------- snip ----------------

BUT - I'm not able to receive a fax....

log/c000???? reports :
---------- snip ----------------
Dec 07 16:18:03.30: [  320]: SESSION BEGIN 00000007 49521433902
Dec 07 16:18:03.30: [  320]: <-- [4:ATA\r]
Dec 07 16:18:12.41: [  320]: --> [3:FAX]
Dec 07 16:18:18.37: [  320]: --> [5:+FCON]
Dec 07 16:18:18.37: [  320]: ANSWER: FAX CONNECTION
Dec 07 16:18:18.37: [  320]: RECV FAX: begin
Dec 07 16:21:18.37: [  320]: REMOTE HANGUP: Unspecified Receive Phase B
error (code 70)
                                           
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ????
Dec 07 16:21:18.37: [  320]: RECV FAX: Unspecified Receive Phase B error
Dec 07 16:21:18.37: [  320]: RECV FAX: end
Dec 07 16:21:18.37: [  320]: SESSION END
---------- snip ----------------

What have I to do, to get reveiving a fax working ???
Here's my config :

etc/config.faxmodem
---------- snip ----------------
CountryCode:		49
AreaCode:		521
FAXNumber:		+49.521.43390.2
LongDistancePrefix:	00
InternationalPrefix:	000
DialStringRules:	"etc/dialrules"
ServerTracing:		1
SessionTracing:		11
RecvFileMode:		0600
LogFileMode:		0600
DeviceMode:		0600
RingsBeforeAnswer:	1
SpeakerVolume:		off
GettyArgs:		"-r -b -s %s %l"
LocalIdentifier:	"wrs datentechnik"
TagLineFont:		etc/lutRS18.pcf
TagLineFormat:		"Von %%l|%c|Seite %%p von %%t"
MaxRecvPages:		250
ModemType:		Class2		# use class 2 interface
ModemRate:		38400
ModemFlowControl:	rtscts		# default
ModemWaitForConnect:	yes		# wait for CONNECT on answer
#ModemResetCmds:	AT&F2		# what you want for a Supra
ModemNoFlowCmd:		AT&K		# disable flow control cmd
ModemHardFlowCmd:	AT&K3		# hardware flow control cmd
ModemSoftFlowCmd:	AT&K4		# software flow control cmd
ModemSetupDTRCmd:	AT&D2		# DTR off causes modem to reset
ModemSetupDCDCmd:	AT&C1		# DCD follows carrier
ModemSetupAACmd:	AT+FCLASS=0;+FAA=1 # enable in class 0
ModemSendFillOrder:	LSB2MSB		# as expected
ModemRecvFillOrder:	MSB2LSB		# opposite of what makes sense
Class2RecvDataTrigger:	"\022"		# a la 2388-B
---------- snip ----------------


---
Sent through Global Message Exchange - http://www.gmx.net

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 07 Dec 1998 12:01:40 -0800
To: flexfax@sgi.com
From: Martin Dean <martin.dean@crncare.org>
Subject: flexfax: Returning FAX doc with the Status info to Client
Sender: owner-flexfax@celestial.com

Is there any simple way to have a copy of the FAX document (ps or tiff) 
mailed with the FAX status ?


I'm using WHFC for Win95 and hylaFAX 4.x on Linux RedHat 5.1.

Users FAX from Win95 using WHFC. WHFC emails the status of a FAX but not the actual
FAX. As a result, users cannot retrieve a previously sent FAX.


Martin

From tpcadmin@info.tpc.int  Thu Feb 11 13:16:08 1999
To: webmaster@hylafax.org
From: darren.nickerson@balliol.ox.ac.uk
Subject: patch to allow an "administrator" to remove other peoples faxes?
X-uri: http://www.tpc.int/
Date: Mon, 07 Dec 1998 22:05:30 +0000
Sender: tpcadmin@info.tpc.int

Folks,

Do we know if this patch exists?

-Darren

>From: Steve Williams <steve@genie96.com>
>Message-Id: <199812072122.OAA28460@spanner.genie96.com>
>Subject: Re: TPC-OPER: Re: faxrm
>To: jmdault@netrevolution.com (Jean-Michel Dault)
>Date: Mon, 7 Dec 1998 14:22:40 -0700 (MST)
>Sender: owner-tpc-oper@info.tpc.int

> 
> 
> 
> > The answer to Jean-Michel Dault's question is to setup an administrative user 
> > - this may be overkill for you.
> 
> Indeed it's overkill...
> 
> I created an administrative account in my "hosts" file. I supplied an
> encrypted password. I connected to the hfaxd deamon on port 4459 with
> telnet.
> 
> I can delete faxes this way, by typing ADMIN xxxx, and supplying the right
> commands.
> 
> However, I didn't find any option in faxrm for an administrative user. 
> 

There are patches to the HylaFAX Software ( I can never remember where
to upper case that word <g> ) that permit a command line argument to 
faxrm to allow an "administrator" to remove other peoples faxes.

I am not sure what the status of Patch Level 3 is, but I am pretty sure
that if people are really interested, the HylaFAX mailing list archive 
( if there is one ) will have the patches ( www.hylafax.org ).

I remember the patches being submitted, but I did not save them myself.

-- 
	Steve Williams, Calgary, Alberta, Canada
	Genie Computer Systems Inc.
	steve@genie96.com

"A man doesn't begin to attain wisdom until he recognizes that he is 
 no longer indispensable."
- Admiral Richard E. Byrd ( 1888-1957 )

____________________ TPC.INT CELL OPERATORS' LIST _______________________
E-mail: subscribe tpc-oper     to      majordomo@info.tpc.int to be ADDEDE-mail: unsubscribe tpc-oper   to      majordomo@info.tpc.int to be REMOVEDclosed list, will require approval of sub/unsubscriptions

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 07 Dec 1998 17:44:10 -0600
From: "Keith G. Murphy" <keithmur@mindspring.com>
Reply-To: keithmur@mindspring.com
Organization: A small shoebox in the middle of the road
To: HylaFax Mailing List <flexfax@sgi.com>
Subject: flexfax: Making cover pages 
Sender: owner-flexfax@celestial.com

I've seen this asked but never answered:

Is there a simple (non-PostScript-guru) way to incorporate graphics
and/or text into faxcover.ps in place of the default (Silicon Graphics)
stuff, while leaving the rest of the form alone?

Most specifically, how would you get there from a graphics file such as
a GIF which contains a logo?

Of course, if going the other way (incorporating the form into the logo)
is easier, that's fine too.

I emphasize, I'm extremely PostScript-ignorant.

TIA.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 7 Dec 1998 23:14:06 -0500
From: Steven A DuChene <sad@ale.org>
To: keithmur@mindspring.com, HylaFax Mailing List <flexfax@sgi.com>
Subject: Re: flexfax: Making cover pages
Sender: owner-flexfax@celestial.com

On Mon, Dec 07, 1998 at 05:44:10PM -0600, Keith G. Murphy wrote:
> Is there a simple (non-PostScript-guru) way to incorporate graphics
> and/or text into faxcover.ps in place of the default (Silicon Graphics)
> stuff, while leaving the rest of the form alone?
> 
> Most specifically, how would you get there from a graphics file such as
> a GIF which contains a logo?
> 
The faxcover generation scripts at
ftp://ftp.hylafax.org/pub/hylafax/contrib/covers/

talks about doing this exact thing with xfig (importing gif or other types
of files into a cover page template created in xfig). Also take a look
at:
http://www.hylafax.org/HylaFAQ/Q36.html

since it covers several ways to create cover page templates.
-- 
Steve DuChene              sad@ale.org

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 08 Dec 1998 11:43:14 +1100
From: Damian A Ivereigh <damian@cisco.com>
Organization: Cisco Systems Inc
To: keithmur@mindspring.com
CC: HylaFax Mailing List <flexfax@sgi.com>
Subject: Re: flexfax: Making cover pages
Sender: owner-flexfax@celestial.com

Hoo hoo. You will have fun with this!

I enclose my faxcover for you to look at. This is what I did.

The first thing you should do is get some patches for the faxcover
program and maybe even sendfax from
http://www.hylafax.org/patches/index.html. The patches are
faxcover.patch and sendfax.patch

At the top of the file you will see where I have defined the sending
company name and address:-

%!PS-Adobe-2.0 EPSF-2.0
%%EndComments
/orig-line1 (Cisco Systems Australia) def
/orig-line2 (Level 17, 99 Walker Street) def
/orig-line3 (North Sydney 2060) def
/orig-line4 (NSW Australia) def
/orig-line5 () def
/orig-line6 () def
/orig-line7 (Tel: +61 2 9935 4100) def
/orig-line8 (Fax: +61 2 9957 4077) def
/orig-line9 () def
/orig-line10 () def
%%EndProlog

Change this to suite your needs.

Then use a program that will convert a GIF file to an embedded
postscript (EPS) - xv will do nicely - to create an EPS version of your
logo. You will have to play with the size and positioning of the image
so that it appears in the right place (top right of page). Then look
near the top of faxcover.ps for the lines:-

%!PS-Adobe-2.0 EPSF-2.0
%%Title: /home/damian/logos/logo.ps
%%Creator: XV Version 3.10a  Rev: 12/29/94  -  by John Bradley
%%BoundingBox: 48 649 253 755

Delete from here to:-

% stop using temporary dictionary
end

% restore original state
origstate restore

%%Trailer

(the image itself is a bunch of hexadecimal digits)

and replace it with your EPS image. Then to see what it looks like run:-

faxcover -C `pwd`/faxcover.ps -f from-name -n faxno > /tmp/faxout.ps

Then use ghostview to view this file, or send it to a postscript
printer. Note that "from-name" and "faxno" are just there to keep
faxcover happy - they will appear as literals in the output. You can add
more stuff if you want (see the man page for faxcover).

It would be quite possible to put all the above into a script, to make
this easier to do. Maybe if I get time...

I hope this helps.

Damian 



Keith G. Murphy wrote:
> 
> I've seen this asked but never answered:
> 
> Is there a simple (non-PostScript-guru) way to incorporate graphics
> and/or text into faxcover.ps in place of the default (Silicon Graphics)
> stuff, while leaving the rest of the form alone?
> 
> Most specifically, how would you get there from a graphics file such as
> a GIF which contains a logo?
> 
> Of course, if going the other way (incorporating the form into the logo)
> is easier, that's fine too.
> 
> I emphasize, I'm extremely PostScript-ignorant.
> 
> TIA.

-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*
Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\faxcover.ps"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 8 Dec 1998 18:08:41 +1100 (EST)
From: "Peter K. Campbell" <peter@medici.trl.OZ.AU>
Reply-To: "Peter K. Campbell" <peter@medici.trl.OZ.AU>
Subject: Re: flexfax: Making cover pages 
To: keithmur@mindspring.com
Cc: flexfax@sgi.com, p.campbell@trl.OZ.AU
Sender: owner-flexfax@celestial.com

> Is there a simple (non-PostScript-guru) way to incorporate graphics
> and/or text into faxcover.ps in place of the default (Silicon Graphics)
> stuff, while leaving the rest of the form alone?
> 
> Most specifically, how would you get there from a graphics file such as
> a GIF which contains a logo?
> 
> Of course, if going the other way (incorporating the form into the logo)
> is easier, that's fine too.
> 
> I emphasize, I'm extremely PostScript-ignorant.

I'm pretty postscript ignorant as well, but have managed it, due to
a large amount of hacking.

This is as easy as I can describe it:
1) Find old logo
2) Delete logo
3) Alter text
4) Use giftops (well, giftopnm | pnmtops) or something similar
   to get postscript from image file
5) Insert this image postscript in where the logo was
6) Remove extraneous lines of this image postscript.

Detail:

1) If you edit the /usr/local/lib/fax/faxcover.ps file (after making
a copy, of course), you'll find about 58% of the way down a line
that goes
	% tom-baby's logo stuff:
which has various line drawing commands for the logo.

2) Go down a few
lines to the
	1 setlinejoin
and delete this line and everything below it until you get to the
	/drawtext {
	gsave
lines (leave them).  So, you should now have something like

	% tom-baby's logo stuff:
	
	/inch ...
	/width ...
	/r ...
	/d ...
	/R ...
	
	/drawtext {
	gsave
	
	...

3) If you leave the file like this it'll work, you'll just have no logo.
You can change the text a few (indented) lines down in the 
	  (...) show
lines - eg
	  /Helvetica-BoldOblique ...
	  (My SuperDuper) show
	  1.42 inch 9.95 inch moveto
	  /Helvetica-Bold ...
	  (Fax Server) show
	
	grestore
	} def
	
4) The following assumes you used the pnm to make a nice, readable
postscript file.  You can use this (probably) as a guide as to how
to hack a MS program created EPSF file with binary image in it -
good luck.

5) Put a couple of comments in for reference where you just cleared
out the old logo - eg.
	/d {r 30 cos mul neg} def
	/R {2 inch} def
	
	% Image will start here
	
	% Image will end here
and then using vi or something like that read in the file between
these lines.

6) Now to remove the excess stuff so it will look ok.  If you used
pnmtops you'll have something at the top of the image section like
	showpage
	%!PS-Adobe-2.0 EPSF-2.0
	%%Creator: pnmtops
	%%Title: ...
	%%Pages: 1
	%%BoundingBox: ...
	%%EndComments
	/readstring {
	  currentfile ...
Right, now delete all of these lines until the /readstring { line -
leave that one alone.  OK, now go down to your "end here" comment.
Just above it should be something like
	fffffffffffffffffffffffffffffff.....
	grestore
	showpage
	%%Trailer
Delete the showpage and %%Trailer lines, leave the rest alone.

At this stage you should be able to save & view the postscript
file.  More than likely you'll have the image in the wrong place on
the page.  To fix this fire up vi or whatever again, look for the
"start here" comment and go down a few lines.  You'll hopefully see
several lines like (with different numbers)
	270.48 326.76 translate
	71.04 108.48 scale
	0.5 0.5 translate   90 rotate  -0.5 -0.5 translate
Comment out the "0.5 0.5" line (or delete it) unless you want the
90 degree rotation.  Edit the numbers on the translate and scale line
to get the image to the right spot.  Most small images work with numbers
around (0,0 is bottom left for the translate, 100 100 means no scaling
for the scaling).
	0 700 translate
	99 66 scale
Save the change, check it out with ghostview/ghostscript, and make
changes to the numbers as appropriate.  Note that fax images don't
generally do detail very well, so I suggest keeping your image
simple, and any alphanumerics you use fairly large (or get a better
postscript converter than giftopnm | pgmtoppm | pnmtops :-).

BTW, I'll be leaving the list now, so any questions posted to the
list re this won't reach me.

I also repeat that I am *not* an authority on postscript; I worked
out the above by trial & error hacking.  So any questions re postscript
sent to me will be answered by /dev/null :-)

Avagoodone.

Peter K. Campbell

From PCampbel@vtrlmel1.telstra.com.au  Thu Feb 11 13:16:08 1999
From: "Campbell, Peter K" <PCampbel@vtrlmel1.telstra.com.au>
To: Phil Watkinson <pkw@elgro.co.uk>
Subject: RE: flexfax: Faxmail bug with attachments
Date: Tue, 8 Dec 1998 13:54:33 +1000 

On Friday, December 04, 1998 9:23 PM, Phil Watkinson [SMTP:pkw@elgro.co.uk]
wrote:
> At 10:29 02/12/98 +1000, "Campbell, Peter K" wrote:
> >[snip]
[...]
> and since the mailing list archives are down at the moment, I will
> put
> them on my own website over the weekend for your interest.
Ta muchly.

> Ben Parker,  
> Louis Reinard, and myself concluded that an additional 'showpage'
> instruction was required before a postscript attachment if on the
> first
> page of a fax.
> 
[...]
I just changed my giftops & jpegtops scripts to echo a showpage to stdout
before it did the conversion - it meant I had blank pages for 2nd+
attachments,
but that didn't concern me as much as losing the 1st attachment.

> The reasons for not incorporating this approach into faxmail.c++ and
> textfmt.c++ is, in my opinion (please put me right if you disagree):
> 
> 1. It is not legal postscript code. Ghostview thinks that there is 
>    only one page, but shows either page image at random.
Not legal?  Don't know why not; you should be able to put as many
showpages as you like.  The way I tested this out was with GhostView -
without the showpage, no 1st attachment, with the showpage, always
shows 1st attachment.  No randomness at all.  Mind you, my giftops &
jpegtops scripts automatically put a "showpage" in the stream *after* the
conversion (which fixes 2nd+, but not the first, attachment), so maybe
you're
having this problem with scripts that don't add the showpage?  The scripts
are
just compiled from the pnm/pbm & cjpeg/djpeg toolkits; maybe there's
clues in there?

> 2. The solution of forcing the attachment onto a new page is too
> crude;
>    what if the attachment is a page footer banner? Or what if there
>    is
>    no message body at all before the attachment?
Hadn't thought of the first possibility; in that case I'd say "oops" :-)  In
the
latter - well, wasted blank page.

> 3. It would still fail for unusual multi-part situations,
> particularly
>    where a text/plain attachment follows an application/postscript
>    attachment. 
Why?  Shouldn't it just have the text appear on a page after a blank
page?

> So a more flexible solution based on a wrapper around each attachment
> was being considered. Which is where in the story the mystery of the 
> faxmail prologue file, faxmail.ps, comes in. No-one knows what this
> file is for. The default file, shown below, has no effect whatsoever
> on the generated image :
> 
>    %       $Id: faxmail.c++,v 1.56 1996/07/02 19:49:58 sam Exp sam
>    %
>    % faxmail prologue.
>    %
>    /EPSbegin{save gsave 20 20 scale 200 dict begin}def
>    /EPSend{end grestore restore}def
I assumed that was the wrapper for the entire postscript file produced,
with all the images etc embedded within it.

> If you have some expertise in the Postscript language, and happy to 
> delve into the faxmail and textfmt C++ source code, then your help
> and
> input would be very much appreciated.

Nope, I have absolutely no expertise in Postscript (and no wish to learn
;-).
I know about the showpage trick because I've come across it before when
some other program wasn't creating correct output & I found it when scanning
through the postscript file, & I've managed to hack the image on the initial
page (although that was a while ago, not sure what I did).  Any chance of
contacting the original author?  It's amazing how many people I've come
across
that know enough to hack postscript like me, but I've yet to find someone
who
can truly say they have expertise in Postscript.  Bit frightening, really.

Anyway, have a good Christmas.

Peter K. Campbell

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Fred C. Ng" <fred@webforce.com.hk>
To: <flexfax@sgi.com>
Subject: flexfax: Fax Server
Date: Tue, 8 Dec 1998 10:07:42 +0800
Sender: owner-flexfax@celestial.com

<x-html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
<HTML>
<HEAD>

<META content=text/html;charset=iso-8859-1 http-equiv=Content-Type>
<META content='"MSHTML 4.72.3110.7"' name=GENERATOR>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT color=#000000 size=2>I tried to setup the hylafax server. As 
previously posted, I had problems with whfc windows client probelms. 
However,&nbsp; I had managed to get it fixed. However, when i tried to test the 
receving part of the server. The remote fax machine stated that there's 
communication error, and the fax didn't go through, can anyone confirm on which 
part of the setup I have done wrong. The followings are the steps I had taken to 
setup the server, please let me know if I have skipped any steps.</FONT></DIV>
<DIV><FONT color=#000000 size=2>1. Install hylafax</FONT></DIV>
<DIV><FONT color=#000000 size=2>2. faxsetup</FONT></DIV>
<DIV><FONT color=#000000 size=2>3. faxaddmodem</FONT></DIV>
<DIV><FONT color=#000000 size=2>4. edit /etc/inittab</FONT></DIV>
<DIV><FONT color=#000000 size=2>5. edit /etc/services</FONT></DIV>
<DIV><FONT color=#000000 size=2>6. edit /var/spool/fax/etc/hosts</FONT></DIV>
<DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000 size=2>Thank you very much.</FONT></DIV>
<DIV><FONT color=#000000 size=2>Fred</FONT></DIV>
<DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT color=#000000 size=2></FONT>&nbsp;</DIV></BODY></HTML>
</x-html>

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 08 Dec 1998 13:29:37 +1100
From: Damian A Ivereigh <damian@cisco.com>
Organization: Cisco Systems Inc
To: "Fred C. Ng" <fred@webforce.com.hk>
CC: flexfax@sgi.com
Subject: Re: flexfax: Fax Server
Sender: owner-flexfax@celestial.com

You should attach a copy of the log file (see /var/spool/fax/log). Then
we can see what's happening. Also post the version of the hylafax your
using, the make and model of the modem, what operating system your using
etc.

Damian

> Fred C. Ng wrote:
> 
> I tried to setup the hylafax server. As previously posted, I had
> problems with whfc windows client probelms. However,  I had managed to
> get it fixed. However, when i tried to test the receving part of the
> server. The remote fax machine stated that there's communication
> error, and the fax didn't go through, can anyone confirm on which part
> of the setup I have done wrong. The followings are the steps I had
> taken to setup the server, please let me know if I have skipped any
> steps.
> 1. Install hylafax
> 2. faxsetup
> 3. faxaddmodem
> 4. edit /etc/inittab
> 5. edit /etc/services
> 6. edit /var/spool/fax/etc/hosts
> 
> Thank you very much.
> Fred
> 
> 

-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 08 Dec 1998 09:33:29 +0100
From: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Organization: Transcom
X-Accept-Language: English, en, German, de
To: HylaFax Mailing liste <flexfax@sgi.com>
Subject: Re: flexfax: RTN Problem
Sender: owner-flexfax@celestial.com

 X-Mozilla-Status2: 00000000
Message-ID: <366CE422.B913469F@transcom.de>
Date: Tue, 08 Dec 1998 09:32:34 +0100
From: Ulrich Eckhardt <uli@transcom.de>
Organization: Transcom
X-Mailer: Mozilla 4.5 [en] (X11; I; Linux 2.1.130 i686)
X-Accept-Language: English, en, German, de
MIME-Version: 1.0
To: Robert Colquhoun <rjc@trump.net.au>
Subject: Re: flexfax: RTN Problem
References: <4.1.19981202211338.00a31100@postoffice.trump.net.au>
	 <36654528.85FFD585@transcom.de> <4.1.19981206134019.00a39160@postoffice.trump.net.au>
Content-Type: text/plain; charset=iso-8859-1
X-MIME-Autoconverted: from 8bit to quoted-printable by sgi.sgi.com id AAA08208

Robert Colquhoun wrote:
> 
> Hi Ulrich,
> 
> At 11:27 AM 12/3/98 +0100, Ulrich Eckhardt wrote:
> >Hi,
> >
> >this patch helped against the RTN problem :-) but the good old
> >REMOTE HANGUP: No response to EOP repeated 3 times (code 54)
> >is also present.
> 
> Excellent - thats the combination of both the tagline & speed reduce patches.
> 
> Re the EOP problem, does that happen consistently to certain locations, or
> is it random, does it still occur with a different modem or the modem
> running in class1?

Hi,

this problem appears only to certain fax machines. I have here only 
a zyxel U1496, so i can't test if this problem occure with different
modems. I will made some tests if this works in class 1 the next 
days and post the results here.

> 
> - Robert

Thanks
Uli
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 8 Dec 1998 16:55:00 +0530 (IST)
From: ravi katti <rkatti@cmie.com>
To: flexfax@sgi.com
Subject: flexfax: faxmail-attachment
Sender: owner-flexfax@celestial.com


Is there a way to to faxmail an attachment (postscript/tiff) file?

-------------------------------------
Ravi Katti

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
X-Envelope-Sender-Is: AMock@osram.com (at relayer thoth.mch.sni.de)
Date: Tue, 08 Dec 1998 14:07:48 +0100
From: Andreas Mock <AMock@osram.com>
Reply-To: AMock@osram.com
Organization: OSRAM Herbrechtingen
To: flexfax@sgi.com
Subject: flexfax: Problems receiving faxes
Sender: owner-flexfax@celestial.com

Hallo together!

I just installed HylaFAX v4.0pl2-12 under SuSE-Linux 5.3
Kernel 2.0.34.

A Creatix SG2834 Turbo is attached to /dev/cua1.
It is detected as ROCKWELL AC/V34/V1.510-V34_DS

The whole installation went through straight forward.

Now I can send faxes without problems and can
receive faxes. If faxgetty receives a fax, the
log seems normal, but the contrahent who sends the
fax is always claiming about a mistake. One fax I
tried said that there was an incorrect acknowledgement
of the fax-message. 
The fax document I received is complete and I can
convert it to different formats.
I really don't know what is the reason for all sender
faxes claiming about an error.

Attached is a session log of receiving a fax.

Thank you in advance
Andreas Mock


Dec 08 12:41:25.14: [27662]: SESSION BEGIN 00000040 49732412446
Dec 08 12:41:25.14: [27662]: <-- [4:ATA\r]
Dec 08 12:41:33.67: [27662]: --> [5:+FCON]
Dec 08 12:41:33.67: [27662]: MODEM set baud rate: 19200 baud (flow
control uncha
Dec 08 12:41:33.67: [27662]: MODEM set baud rate: 19200 baud, input flow
XON/XOF
Dec 08 12:41:33.67: [27662]: ANSWER: FAX CONNECTION
Dec 08 12:41:33.67: [27662]: MODEM input buffering enabled
Dec 08 12:41:33.67: [27662]: RECV FAX: begin
Dec 08 12:41:35.28: [27662]: --> [29:+FTSI: "     +49 89 62133449"]
Dec 08 12:41:35.28: [27662]: REMOTE TSI "+49 89 62133449"
Dec 08 12:41:35.58: [27662]: --> [22:+FDCS: 0,5,0,2,1,0,0,1]
Dec 08 12:41:35.58: [27662]: REMOTE wants 14400 bit/s
Dec 08 12:41:35.58: [27662]: REMOTE wants page width 1728 pixels in 215
mm
Dec 08 12:41:35.58: [27662]: REMOTE wants unlimited page length
Dec 08 12:41:35.58: [27662]: REMOTE wants 3.85 line/mm
Dec 08 12:41:35.58: [27662]: REMOTE wants 2-D MR
Dec 08 12:41:35.69: [27662]: --> [2:OK]
Dec 08 12:41:35.69: [27662]: <-- [7:AT+FDR\r]
Dec 08 12:41:38.59: [27662]: --> [5:+FCFR]
Dec 08 12:41:41.12: [27662]: --> [22:+FDCS: 0,5,0,2,1,0,0,1]
Dec 08 12:41:41.12: [27662]: REMOTE wants 14400 bit/s
Dec 08 12:41:41.12: [27662]: REMOTE wants page width 1728 pixels in 215
mm
Dec 08 12:41:41.12: [27662]: REMOTE wants unlimited page
length              
Dec 08 12:41:41.12: [27662]: REMOTE wants 3.85 line/mm
Dec 08 12:41:41.12: [27662]: REMOTE wants 2-D MR
Dec 08 12:41:41.12: [27662]: --> [7:CONNECT]
Dec 08 12:41:41.12: [27662]: RECV: begin page
Dec 08 12:41:41.12: [27662]: MODEM set XON/XOFF/FLUSH: input ignored,
output gen
Dec 08 12:41:41.12: [27662]: RECV: send trigger 022
Dec 08 12:41:41.12: [27662]: <-- data [1]
Dec 08 12:41:47.56: [27662]: RECV: 1118 total lines, 0 bad lines, 0
consecutive
Dec 08 12:41:47.56: [27662]: MODEM set XON/XOFF/DRAIN: input
interpreted, output
Dec 08 12:41:47.56: [27662]: --> [17:+FPTS: 2,2219,0,0]
Dec 08 12:41:48.73: [27662]: --> [7:+FET: 2]
Dec 08 12:41:48.73: [27662]: RECV recv EOP (no more pages or documents)
Dec 08 12:41:48.84: [27662]: --> [2:OK]
Dec 08 12:41:48.86: [27662]: RECV send MCF (message confirmation)
Dec 08 12:41:48.86: [27662]: RECV FAX (00000040): from +49 89 62133449,
page 1 i
Dec 08 12:41:48.87: [27662]: RECV FAX (00000040): recvq/fax00018.tif
from +49 89
Dec 08 12:41:48.92: [27662]: <-- [7:AT+FDR\r]
Dec 08 12:41:52.15: [27662]: --> [8:+FHNG: 0]
Dec 08 12:41:52.15: [27662]: REMOTE HANGUP: Normal and proper end of
connection
Dec 08 12:41:52.15: [27662]: RECV FAX: bin/faxrcvd "recvq/fax00018.tif"
"cua1" "
Dec 08 12:41:53.94: [27662]: RECV FAX: end
Dec 08 12:41:53.94: [27662]: SESSION END

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 8 Dec 1998 08:51:36 -0500 (EST)
From: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
To: Andreas Mock <AMock@osram.com>
Cc: flexfax@sgi.com
Subject: Re: flexfax: Problems receiving faxes
Sender: owner-flexfax@celestial.com

-----BEGIN PGP SIGNED MESSAGE-----

On Tue, 8 Dec 1998, Andreas Mock wrote:

> Date: Tue, 08 Dec 1998 14:07:48 +0100
> From: Andreas Mock <AMock@osram.com>
> To: flexfax@sgi.com
> Subject: flexfax: Problems receiving faxes
> 
> Hallo together!
> 
> I just installed HylaFAX v4.0pl2-12 under SuSE-Linux 5.3
> Kernel 2.0.34.

What in the? Where did this distribution come from? The latest
distributions are now being kept over at
ftp://ftp.hylafax.org/pub/hylafax/binary/

			Nico Kadel-Garcia
			Senior Engineer, CIRL 
			Mass. Eye and Ear Infirmary
			raoul@cirl.meei.harvard.edu

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBNm0u5D/+ItycgIJRAQH2TwP/UuJem5bBXBGK8uPHxiZQvVK4Zuvts1Nq
anZXfLE5ulD7mqRezwBHMz0PBU5fBFNeFLj3l3hD2JOF7zypGxB1GCAtHKyYBzxs
wvvWnrBZTfuJG+i3D080s7QzrmXwz6T2fY9i9PmsHIFG7YQtuu45NJRGiShoPQ3V
1GsuWerTtrg=
=xPBd
-----END PGP SIGNATURE-----

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 8 Dec 1998 19:00:54 +0100
From: Carsten Hoeger <choeger@suse.de>
To: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
Cc: Hylafax Mailing List <flexfax@sgi.com>
Subject: Re: flexfax: Problems receiving faxes
Sender: owner-flexfax@celestial.com

On Tue, Dec 08, Nico Kadel-Garcia wrote:

> > > What in the? Where did this distribution come from? The latest
> > > distributions are now being kept over at
> > > ftp://ftp.hylafax.org/pub/hylafax/binary/
> > 
> > What in the? is your problem with our distributions version
> > of HylaFAX?
> 
> Because your distributor's version probably lacks the latest patches,
> including security patches and revision of the installation procedures
> and dependencies specifically for Linux.

The security-patches are include directly by myself.
I don't know about the other patches, resp. don't have
all the time to filter all messages in this list if there
is a patch that may work or not.

-- 
mfG,
	Carsten Hoeger

+-----------------------------------------------------------+
| Carsten Hoeger                   SuSE GmbH                |
| choeger@suse.de                  Schanzaeckerstr. 10      |
| http://www.suse.de               90443 Nuernberg, Germany |
+-----------------------------------------------------------+

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 8 Dec 1998 18:48:13 +0100
From: Carsten Hoeger <choeger@suse.de>
To: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>,
        Andreas Mock <AMock@osram.com>
Cc: flexfax@sgi.com
Subject: Re: flexfax: Problems receiving faxes
Sender: owner-flexfax@celestial.com

On Tue, Dec 08, Nico Kadel-Garcia wrote:

> > I just installed HylaFAX v4.0pl2-12 under SuSE-Linux 5.3
> > Kernel 2.0.34.
> 
> What in the? Where did this distribution come from? The latest
> distributions are now being kept over at
> ftp://ftp.hylafax.org/pub/hylafax/binary/

What in the? is your problem with our distributions version
of HylaFAX?

-- 
mfG,
	Carsten Hoeger

+-----------------------------------------------------------+
| Carsten Hoeger                   SuSE GmbH                |
| choeger@suse.de                  Schanzaeckerstr. 10      |
| http://www.suse.de               90443 Nuernberg, Germany |
+-----------------------------------------------------------+

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 8 Dec 1998 12:56:34 -0500 (EST)
From: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
To: Carsten Hoeger <choeger@suse.de>
Cc: Hylafax Mailing List <flexfax@sgi.com>
Subject: Re: flexfax: Problems receiving faxes
Sender: owner-flexfax@celestial.com

-----BEGIN PGP SIGNED MESSAGE-----

On Tue, 8 Dec 1998, Carsten Hoeger wrote:

> On Tue, Dec 08, Nico Kadel-Garcia wrote:
> 
> > > I just installed HylaFAX v4.0pl2-12 under SuSE-Linux 5.3
> > > Kernel 2.0.34.
> > 
> > What in the? Where did this distribution come from? The latest
> > distributions are now being kept over at
> > ftp://ftp.hylafax.org/pub/hylafax/binary/
> 
> What in the? is your problem with our distributions version
> of HylaFAX?

Because your distributor's version probably lacks the latest patches,
including security patches and revision of the installation procedures
and dependencies specifically for Linux.

If it's a good clean binary, then by all means let's have it posted over
at ftp.hylafax.org for everyone else. The numbering system on these things
is often somewhat confusing, since the source tree has started diverging
in different developer's hands. (People are working on an updated version
with recent patches incorporated!)

			Nico Kadel-Garcia
			Senior Engineer, CIRL 
			Mass. Eye and Ear Infirmary
			raoul@cirl.meei.harvard.edu

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBNm1nvz/+ItycgIJRAQGChAQAm/pv/8vrqOQcSD4dtwFxGG7hpLHjkiQ9
6eGLg912MAzQUcCBbFEoBPaACKj/CkcA2SwciiCwxRxc0qmTmDEMRy+rHGvYDYWO
SPA6HB5GJQd2cSCmjcDprHNmLXSgSV+G71C8eS0UVN7BrmzznPfcFWBOVgXrzW/u
ScFBeGUW22o=
=Jfen
-----END PGP SIGNATURE-----

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: shui@pointsnorth.com
X-Lotus-FromDomain: POINTSNORTH
To: flexfax@sgi.com
Date: Tue, 8 Dec 1998 12:52:24 -0700
Subject: flexfax: HELP! What does "No response to MPS" mean???
Sender: owner-flexfax@celestial.com

Dear all,

I've been working fine with my hylafax v4.0pl1.  However, this morning I
encountered a problem in sending
faxes and the faxstat returned me the error tat "No response to MPS" and
the job was requeued for retry.
>From the log, all the handshaking was done and the first page was faxed.
However, the problem came
when the second page was to be sent.  It'd be greatly appreciated if
someone can point out what's the
problem.  I recalled that a lot of people mentioned about this type of
error in this list and what's the
work around?

Attached below please find a copy of the log.  I need to solve this problem
badly.  Any help will be greatly
greatly appreciated.

Thank you all for your kind attention!

Sandie

LOG follows here:
==============

Dec 08 11:22:31.54: [25208]: SESSION BEGIN 00000583 14165551111
Dec 08 11:22:31.54: [25208]: SEND FAX: JOB 33 DEST 5551111 COMMID 00000583
Dec 08 11:22:31.54: [25208]: DELAY 2600 ms
Dec 08 11:22:34.14: [25208]: <-- [17:ATE0V1Q0X4S0=0H0\r]
Dec 08 11:22:34.32: [25208]: --> [16:ATE0V1Q0X4S0=0H0]
Dec 08 11:22:34.32: [25208]: --> [2:OK]
Dec 08 11:22:34.32: [25208]: <-- [32:ATS8=2S7=60&H1&I0&R2S13=1&D2&C1\r]
Dec 08 11:22:34.50: [25208]: --> [2:OK]
Dec 08 11:22:34.50: [25208]: <-- [14:AT+FCLASS=2.0\r]
Dec 08 11:22:34.68: [25208]: --> [2:OK]
Dec 08 11:22:34.68: [25208]: <-- [9:AT+FLO=2\r]
Dec 08 11:22:34.86: [25208]: --> [2:OK]
Dec 08 11:22:34.86: [25208]: <-- [9:AT+FPP=0\r]
Dec 08 11:22:35.04: [25208]: --> [2:OK]
Dec 08 11:22:35.04: [25208]: <-- [9:AT+FBO=0\r]
Dec 08 11:22:35.24: [25208]: --> [2:OK]
Dec 08 11:22:35.24: [25208]: <-- [10:AT+FCT=30\r]
Dec 08 11:22:35.46: [25208]: --> [2:OK]
Dec 08 11:22:35.46: [25208]: <-- [15:AT+FNR=1,1,1,0\r]
Dec 08 11:22:35.64: [25208]: --> [2:OK]
Dec 08 11:22:35.64: [25208]: <-- [9:AT+FIE=0\r]
Dec 08 11:22:35.82: [25208]: --> [2:OK]
Dec 08 11:22:35.82: [25208]: <-- [23:AT+FCC=1,5,2,2,0,0,0,0\r]
Dec 08 11:22:36.00: [25208]: --> [2:OK]
Dec 08 11:22:36.00: [25208]: <-- [5:ATM0\r]
Dec 08 11:22:36.18: [25208]: --> [2:OK]
Dec 08 11:22:36.20: [25208]: <-- [14:AT+FCLASS=2.0\r]
Dec 08 11:22:36.46: [25208]: --> [2:OK]
Dec 08 11:22:36.46: [25208]: <-- [9:AT+FLO=2\r]
Dec 08 11:22:36.74: [25208]: --> [2:OK]
Dec 08 11:22:36.74: [25208]: <-- [9:AT+FPP=0\r]
Dec 08 11:22:37.02: [25208]: --> [2:OK]
Dec 08 11:22:37.02: [25208]: <-- [9:AT+FBO=0\r]
Dec 08 11:22:37.30: [25208]: --> [2:OK]
Dec 08 11:22:37.30: [25208]: <-- [10:AT+FCT=30\r]
Dec 08 11:22:37.58: [25208]: --> [2:OK]
Dec 08 11:22:37.58: [25208]: <-- [15:AT+FNR=1,1,1,0\r]
Dec 08 11:22:37.86: [25208]: --> [2:OK]
Dec 08 11:22:37.86: [25208]: <-- [9:AT+FIE=0\r]
Dec 08 11:22:38.14: [25208]: --> [2:OK]
Dec 08 11:22:38.14: [25208]: <-- [23:AT+FCC=1,5,2,2,0,0,0,0\r]
Dec 08 11:22:38.42: [25208]: --> [2:OK]
Dec 08 11:22:38.42: [25208]: <-- [30:AT+FLI="ABC"\r]
Dec 08 11:22:38.70: [25208]: --> [2:OK]
Dec 08 11:22:38.71: [25208]: DIAL 5551111
Dec 08 11:22:38.71: [25208]: <-- [14:ATDT9W5551111\r]
Dec 08 11:22:53.82: [25208]: --> [4:+FCO]
Dec 08 11:22:57.26: [25208]: --> [27:+FCI:"        416 555 1111"]
Dec 08 11:22:57.26: [25208]: REMOTE CSI "416 555 1111"
Dec 08 11:22:57.26: [25208]: --> [20:+FIS:1,5,1,2,1,0,1,4]
Dec 08 11:22:57.26: [25208]: --> [2:OK]
Dec 08 11:22:57.26: [25208]: REMOTE best rate 14400 bit/s
Dec 08 11:22:57.27: [25208]: REMOTE max page width 2048 pixels in 255 mm
Dec 08 11:22:57.27: [25208]: REMOTE max unlimited page length
Dec 08 11:22:57.27: [25208]: REMOTE best vres 7.7 line/mm
Dec 08 11:22:57.27: [25208]: REMOTE best format 2-D MR
Dec 08 11:22:57.27: [25208]: REMOTE best 20 ms, 10 ms/scanline
Dec 08 11:22:57.27: [25208]: USE 14400 bit/s
Dec 08 11:22:57.27: [25208]: USE 20 ms, 10 ms/scanline
Dec 08 11:22:57.27: [25208]: SEND file "docq/doc33.cover;30"
Dec 08 11:22:57.27: [25208]: USE page width 1728 pixels in 215 mm
Dec 08 11:22:57.27: [25208]: USE unlimited page length
Dec 08 11:22:57.27: [25208]: USE 3.85 line/mm
Dec 08 11:22:57.27: [25208]: USE 1-D MR
Dec 08 11:22:57.27: [25208]: <-- [23:AT+FIS=0,5,0,2,0,0,0,4\r]
Dec 08 11:22:57.54: [25208]: --> [2:OK]
Dec 08 11:22:57.54: [25208]: <-- [7:AT+FDT\r]
Dec 08 11:22:57.86: [25208]: --> [20:+FCS:0,5,0,2,0,0,0,4]
Dec 08 11:23:04.38: [25208]: --> [7:CONNECT]
Dec 08 11:23:04.38: [25208]: SEND begin page
Dec 08 11:23:04.39: [25208]: <-- data [1027]
Dec 08 11:23:04.39: [25208]: <-- data [1030]
Dec 08 11:23:04.39: [25208]: <-- data [1045]
Dec 08 11:23:04.39: [25208]: <-- data [1030]
Dec 08 11:23:04.39: [25208]: <-- data [1041]
Dec 08 11:23:04.39: [25208]: <-- data [1035]
Dec 08 11:23:04.39: [25208]: <-- data [1056]
Dec 08 11:23:04.39: [25208]: <-- data [1034]
Dec 08 11:23:04.54: [25208]: <-- data [1049]
Dec 08 11:23:04.54: [25208]: <-- data [1038]
Dec 08 11:23:04.55: [25208]: <-- data [1044]
Dec 08 11:23:04.55: [25208]: <-- data [1025]
Dec 08 11:23:05.28: [25208]: <-- data [402]
Dec 08 11:23:05.28: [25208]: SENT 12690 bytes of data
Dec 08 11:23:05.28: [25208]: SEND 1D RTC
Dec 08 11:23:05.28: [25208]: <-- data [9]
Dec 08 11:23:05.29: [25208]: SEND end page
Dec 08 11:23:05.29: [25208]: SEND send MPS (more pages, same document)
Dec 08 11:23:05.29: [25208]: <-- data [2]
Dec 08 11:23:40.65: [25208]: --> [7:+FHS:52]
Dec 08 11:23:40.65: [25208]: REMOTE HANGUP: No response to MPS repeated 3
times (code 52)
Dec 08 11:23:40.66: [25208]: <-- [5:ATH0\r]
Dec 08 11:23:40.79: [25208]: --> [2:OK]
Dec 08 11:23:40.80: [25208]: SESSION END

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: shui@pointsnorth.com
X-Lotus-FromDomain: POINTSNORTH
To: robert a schmied <robert.schmied@lmco.com>, flexfax@sgi.com
Date: Tue, 8 Dec 1998 14:24:43 -0700
Subject: Re: flexfax: HELP! What does "No response to MPS" mean???
Sender: owner-flexfax@celestial.com


Hello all,

I tried sending the fax to the same number from another hylafax server and
it works fine.  So, I really
don't know what's the problem behind this scenario.  The problemed hylafax
server works fine with
some numbers and it's only this one which all of a sudden, pop up with that
error message.  What might
cause the problem?  By the way, I forgot to mention in my previous message
that I'm using a US Robotics
56K fax modem with hylafax runnining on the Solaris 2.6.

Robert, I had problem moving a working hylafax system to a site which used
PABX.  That site needs a
2 digit access code to make long distance dialling, but for placing local
calls, I just put the modem dial command
as ATDT9,W%s, i.e. to wait for second dialtone before dialling the actual
number and it worked fine.  The people
in the site is satisfied with the ability to make local calls which is 90%
of their faxing.  We didn't investigate
any further regarding how to deal with the 2 digit access code then.

Thank you very much for your attention!

Sandie




robert a schmied <robert.schmied@lmco.com> on 12/08/98 12:18:20 PM
                                                              
                                                              
                                                              
 To:      Sandie Hui/IT/PointsNorth                           
                                                              
 cc:                                                          
                                                              
                                                              
                                                              
 Subject: Re: flexfax: HELP! What does "No response to MPS"   
          mean???                                             
                                                              








shui

excuse the second part of this message if i've mixed you up
with someone else:

regarding this current problem: does this occur all the
time with this one fax machine? have you tried to resend
the same fax to the same machine? is other machine out
of paper or jammed?

excuse this part of this message if i've mixed you up
with someone else:

i seem to recall you were having trouble moving to a different
phone line/host computer, but don't recall seeing how that
problem was solved -- would you care to enlighten the group?



shui@pointsnorth.com wrote:
>
> Dear all,
>
> I've been working fine with my hylafax v4.0pl1.  However, this morning I
> encountered a problem in sending
> faxes and the faxstat returned me the error tat "No response to MPS" and
> the job was requeued for retry.
> >From the log, all the handshaking was done and the first page was faxed.
> However, the problem came
> when the second page was to be sent.  It'd be greatly appreciated if
> someone can point out what's the
> problem.  I recalled that a lot of people mentioned about this type of
> error in this list and what's the
> work around?
>
> Attached below please find a copy of the log.  I need to solve this
problem
> badly.  Any help will be greatly
> greatly appreciated.
>
> Thank you all for your kind attention!
>
> Sandie
>
> LOG follows here:
> ==============
>
<<snip>>

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 09 Dec 1998 15:37:54 -0800
To: flexfax@sgi.com
From: Jeff Scott <jeff@realbeer.com>
Subject: Re: flexfax: EOP / Phase B problems -- Zoom Modem 
Sender: owner-flexfax@celestial.com

I gave up and took the easy way out....

I just switched the modem with a Supra 288, updated the modem config and
got great connections.

120+ faxes since the switch and 0 errors.

Thanks for the replies, I appreciate the help!

Cheers,
Jeff

At 09:17 AM 12/7/98 -0500, Glenn Burkhardt wrote:
>This sounds like the same problem described by  Ulrich Eckhardt
>(Ulrich.Eckhardt@transcom.de) on Oct 26. Some fax machines just hang up the
>phone after the last page, and don't wait for the cleanup.  
>I don't know that particular modem, but try running it in class 1 mode.
>If it works, almost certainly the modem is not doing the right thing.
>
>Steven Pham <steven@object-net.com> was working on a bug fix for Hylafax, but
>I don't know how far he got.  I'd like to work on this, too, as soon as I 
>can find the time.  I'd like to see the proposed change take place, too.
>
>
>> I don't know that particular modem, but try running it in class 1 mode.
>> If it works, almost certainly the modem is not doing the right thing.
>> 
>> Damian
>> 
>> Jeff Scott wrote:
>> > 
>> > HylaFax v4.0pl2 - Linux i586 machine (Slackware 3.5)
>> > Zoom VFX modem - running class 2
>> > 
>> > I'm having repeated problems with faxes erroring out with EOP and Phase B
>> > problems.
>> > 
>> > It seems like it is always the same fax machines that I have the problems
>> > with.
>> > 
>> > The strange thing is that I have used this modem to connect to those same
>> > fax machine before without problems (using a different FAX server
software
>> > program).
>> > 
>> > Can anyone give me any guidance on what I can do to make this modem more
>> > compatible?
>> > 
>> > Here are the log excerpts:
>> > 
>> > EOP problem:
>> > 
>> > Dec 03 20:47:13.49: [ 2178]: SEND end page
>> > Dec 03 20:47:17.88: [ 2178]: --> [2:OK]
>> > Dec 03 20:47:17.88: [ 2178]: SEND send EOP (no more pages or documents)
>> > Dec 03 20:47:17.88: [ 2178]: <-- [9:AT+FET=2\r]
>> > Dec 03 20:47:33.30: [ 2178]: --> [9:+FHNG: 54]
>> > Dec 03 20:47:33.30: [ 2178]: REMOTE HANGUP: No response to EOP repeated 3
>> > times (code 54)
>> > Dec 03 20:47:33.30: [ 2178]: SEND: No response to EOP repeated 3 times;
>> > Giving up after 3 attempts to send same page "docq/doc149.ps;70",
dirnum 0
>> > Dec 03 20:47:33.30: [ 2178]: <-- [5:ATH0\r]
>> > Dec 03 20:47:33.51: [ 2178]: --> [2:OK]
>> > Dec 03 20:47:33.51: [ 2178]: SESSION END
>> > 
>> > Phase B problem:
>> > 
>> > Dec 03 20:57:43.72: [ 2263]: <-- [24:AT+FDIS=0,5,0,2,1,0,0,0\r]
>> > Dec 03 20:57:43.97: [ 2263]: --> [2:OK]
>> > Dec 03 20:57:43.97: [ 2263]: <-- [7:AT+FDT\r]
>> > Dec 03 20:57:51.42: [ 2263]: --> [9:+FHNG: 20]
>> > Dec 03 20:57:51.42: [ 2263]: REMOTE HANGUP: Unspecified Transmit Phase B
>> > error (code 20)
>> > Dec 03 20:57:51.54: [ 2263]: --> [2:OK]
>> > Dec 03 21:00:51.54: [ 2263]: MODEM <Timeout>
>> > Dec 03 21:00:51.54: [ 2263]: SEND: Unspecified Transmit Phase B error;
>> > Giving up after 3 attempts to send same page "docq/doc163.ps;70",
dirnum 0
>> > Dec 03 21:00:51.54: [ 2263]: <-- [5:ATH0\r]
>> > Dec 03 21:00:51.91: [ 2263]: --> [2:OK]
>> > Dec 03 21:00:51.91: [ 2263]: SESSION END
>> > 
>> > I have seen in the archives that I have been able to get to that other
>> > people have asked this same problem, but I have not found any pointers or
>> > suggestions for fixing / working around the problem.
>> > 
>> > Any suggestions that you have will be greatly appreciated.
>> > 
>> > Cheers,
>> > Jeff
>> > 
>> > --
>> > -- Jeff Scott -- Technical Designer -- jeff@realbeer.com
>> > -- Real Beer, Inc. -- (415) 522-1516x310 (voice) -- (415) 522-1535 (fax)
>> > -- Internet Publishers and Consultants  --  http://www.realbeer.com
>> > -- The single largest source for beer information, known to man!
>> 
>> -- 
>>  ______________________________________________________________________
>> * Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
>> * MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
>> * Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
>> * damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
>> *______________________________________________________________________*
>
>
>
--
-- Jeff Scott -- Technical Designer -- jeff@realbeer.com
-- Real Beer, Inc. -- (415) 522-1516x310 (voice) -- (415) 522-1535 (fax)
-- Internet Publishers and Consultants  --  http://www.realbeer.com
-- The single largest source for beer information, known to man!

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 10 Dec 1998 09:10:33 +0100
From: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Organization: Transcom
X-Accept-Language: English, en, German, de
To: HylaFax Mailing liste <flexfax@sgi.com>
Subject: Re: flexfax: RTN Problem
Sender: owner-flexfax@celestial.com

Ulrich Eckhardt wrote:
> Robert Colquhoun wrote:
> >
> > Excellent - thats the combination of both the tagline & speed reduce patches.
> >
> > Re the EOP problem, does that happen consistently to certain locations, or
> > is it random, does it still occur with a different modem or the modem
> > running in class1?
> 
> Hi,
> 
> this problem appears only to certain fax machines. I have here only
> a zyxel U1496, so i can't test if this problem occure with different
> modems. I will made some tests if this works in class 1 the next
> days and post the results here.

Hi,

i had problems to configure my modem to class 1, but i have set it to
class 2.0 now. But the EOP problem still remains. These happens alwas 
on the same Fax machines, but sometimes (but not very often) these 
faxmachines gets the faxes correct. 

Uli  
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 8 Dec 1998 23:53:52 +0100 (MET)
From: Richard Kail <e8903122@student.tuwien.ac.at>
To: "Keith G. Murphy" <keithmur@mindspring.com>
cc: HylaFax Mailing List <flexfax@sgi.com>
Subject: Re: flexfax: Making cover pages 
Sender: owner-flexfax@celestial.com

Hello !

On Mon, 7 Dec 1998, Keith G. Murphy wrote:

> I emphasize, I'm extremely PostScript-ignorant.

	The trick is to use A) the oldest wordprocessor you can get
(Winword 2.0 for example) and B) the oldest Postscript printer driver you
can get. The best are the ones for the printers with the apple in the
logo. I used one that comes with Windows 3.1.

	If you print with this, you get a postscript file without all that
fancy per-character-positioning stuff and the descriptions about hacking a
cover with eye-pattern-matching are working.

Kind regards,
	Richard

------
"The most important tool in Windows NT administration is a car"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 08 Dec 1998 09:34:18 -0600
From: "Keith G. Murphy" <keithmur@mindspring.com>
Reply-To: keithmur@mindspring.com
Organization: A small shoebox in the middle of the road
To: HylaFax Mailing List <flexfax@sgi.com>
Subject: Re: flexfax: Making cover pages
Sender: owner-flexfax@celestial.com

Peter K. Campbell wrote:
> 
> > Is there a simple (non-PostScript-guru) way to incorporate graphics
> > and/or text into faxcover.ps in place of the default (Silicon Graphics)
> > stuff, while leaving the rest of the form alone?
[snip]
> I'm pretty postscript ignorant as well, but have managed it, due to
> a large amount of hacking.
[snip]
Thanks to all who answered, including Rainer Krienke, who replied by
private E-mail.  I had seen the FAQ, but was so ignorant I thought that
somehow it didn't pertain to what I was doing.  It does, of course. 
(Then I promptly forgot about it.  Sorry.)

I think with all these ways of doing it, I'll find some way of making it
work!  If I come up with a nifty Perl script, I'll share it with y'all. 
:-)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 08 Dec 1998 14:14:54 -0600
From: Tim Kelley <tpkelley@winkinc.com>
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: TIF format used by hylafax ... <?>
Sender: owner-flexfax@celestial.com

Hello All,


We use an OCR program to convert incoming faxes to text ... for some
reason this program cannot read all of the files which hylafax creates
(but it does read some of them).  This seems random.

I know the program only reads class 2-4 TIFF files; is this compatible
with Hylafax?  The man pages say Hylafax puts them in TIFF Class F
group3; am I out of luck?  Can I change the TIFF format Hylafax puts the
files in?
Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\tpkelley.vcf"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: TIF format used by hylafax ... <?>
To: tpkelley@winkinc.com (Tim Kelley)
Date: Thu, 10 Dec 1998 08:42:10 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> We use an OCR program to convert incoming faxes to text ... for some
> reason this program cannot read all of the files which hylafax creates
> (but it does read some of them).  This seems random.
> 
> I know the program only reads class 2-4 TIFF files; is this compatible
                                ^^^^^^^^^^
I don't think there is any such thing! (but might copy of the TIFF
spec is too deeply buried to check quickly).

Something you need to realise about TIFF is that it is a framework for
communicating parameters about images, rather more than a method for
communicating images.  As such, the syntax of the parameters block
is well defined, but the image content can be in many formats.

> with Hylafax?  The man pages say Hylafax puts them in TIFF Class F
> group3; am I out of luck?  Can I change the TIFF format Hylafax puts the
> files in?

I believe the author of Hylafax was involved in the specification
of TIFF; he may even have been a prime mover.

I would expect any OCR program to cope with fax coded (i.e. classs F)
TIFF files, but maybe not all of the suboptions.  However, there are
tools as part of the TIFF package, which is a pre-requesite for Hylafax,
that will convert between different TIFF subtypes.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: HELP! What does "No response to MPS" mean???
To: shui@pointsnorth.com
Date: Fri, 11 Dec 1998 00:26:28 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> Dec 08 11:23:04.38: [25208]: --> [7:CONNECT]
> Dec 08 11:23:04.38: [25208]: SEND begin page
> Dec 08 11:23:05.28: [25208]: <-- data [402]
> Dec 08 11:23:05.28: [25208]: SENT 12690 bytes of data

This looks as though you have dumped 12K into the modem at at least
115,200 bps.  Most modems just don't have that much buffer space, and
Unix tty drivers tend not to either, so I think you have flow control
problems.

> Dec 08 11:23:05.28: [25208]: SEND 1D RTC
> Dec 08 11:23:05.28: [25208]: <-- data [9]
> Dec 08 11:23:05.29: [25208]: SEND end page
> Dec 08 11:23:05.29: [25208]: SEND send MPS (more pages, same document)
> Dec 08 11:23:05.29: [25208]: <-- data [2]
> Dec 08 11:23:40.65: [25208]: --> [7:+FHS:52]
> Dec 08 11:23:40.65: [25208]: REMOTE HANGUP: No response to MPS repeated 3
> times (code 52)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 08 Dec 1998 22:42:39 +0100
From: Philipp Steinkrueger <philipp@oberberg-online.de>
To: flexfax@sgi.com
Subject: Re: flexfax: Problems receiving faxes
Sender: owner-flexfax@celestial.com

Andreas Mock schrieb:

> A Creatix SG2834 Turbo is attached to /dev/cua1.
> It is detected as ROCKWELL AC/V34/V1.510-V34_DS
> 
> The whole installation went through straight forward.
> 
> Now I can send faxes without problems and can
> receive faxes. If faxgetty receives a fax, the
> log seems normal, but the contrahent who sends the
> fax is always claiming about a mistake. One fax I
> tried said that there was an incorrect acknowledgement
> of the fax-message.
> The fax document I received is complete and I can
> convert it to different formats.
> I really don't know what is the reason for all sender
> faxes claiming about an error.

Same over here. I guess its the modem, because i use exatly the same
one.
If there is a patch out there (coulnd find one at hylafax.org) let me
know.


Philipp

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 8 Dec 1998 21:36:38 -0500
From: Steven A DuChene <sad@hpuerca.atl.hp.com>
To: flexfax@sgi.com
Subject: flexfax: problems compiling HylaFAX on HP-UX 9.07
Sender: owner-flexfax@celestial.com

trying to compile Hylafax 4.0 pl2 with gcc on HP-UX 9.07 and I keep getting
the following error:

/usr/local/bin/gcc -I/usr/local/include -D__ANSI_CPP__ -I. -I.. -I/usr/local/include -I../regex -g -O -x c++ -c Dispatcher.c++
Dispatcher.c++: In method `int Dispatcher::waitFor(class FdMask &, class FdMask &, class FdMask &, struct timeval *)':
Dispatcher.c++:628: passing `FdMask *' as argument 2 of `select(size_t, int *, int *, int *, const timeval *)'
Dispatcher.c++: In method `void Dispatcher::checkConnections()':
Dispatcher.c++:750: passing `FdMask *' as argument 2 of `select(size_t, int *, int *, int *, const timeval *)'

In efforts to solve the problem:
I have tried this with both gcc 2.7.2.3 and egcs 1.1.1
I have installed binutils 2.9.1

The code compiled fine on HP-UX 10.20 with gcc 2.8.1 but I need to get the
client software installed on some HP-UX 9.X systems.

BTW, while running the configure script on 9.X it defines CONFIG_BADSELECTPROTO
and this causes a parse error from lines 624 and 747 during a "make depend" and
a "make all" on this same util/Dispatcher.c++ file

The configure script causes the Makefile in port to have syslog.c listed 
on the CFILE line but this causes a problem with LOG_PERROR in syslog.c
which is undefined on HP-UX 9.X and 10.X

I have undefined CONFIG_BADSELECTPROTO in port.h and had port/Makefile 
use vsyslog.c instead of syslog.c to even get this far.
Also I have to enter two lines in port.h so I don't get errors about speed_t
and struct termios being undefined.

#define _TERMIOS_INCLUDED 1
#include <sys/termio.h>

Once this is done in port.h then the following lines can be commented out too:

/*extern int cfsetispeed(const struct termios*, speed_t);*/
/*extern int tcgetattr(int, struct termios*);*/
/*extern int tcsetattr(int, int, const struct termios*);*/
/*extern int tcsendbreak(int, int);*/
/*extern int tcdrain(int);*/
/*extern int tcflush(int, int);*/
/*extern int tcflow(int, int);*/

since all of the above are defined exactly the same in <sys/termio.h>

I compared the port.h and defs files between the 9.07 system and the 10.20
but did not see any other obvious problem causing differences.

Finally a co-worker who knows more about C++ than I do helped me make the
following modifications to util/Dispatcher.c++

628c628
<           nfound = select(_nfds, (int *) &rmaskret, (int *) &wmaskret, (int *) &emaskret, (const timeval *) &howlong);
---
>           nfound = select(_nfds, &rmaskret, &wmaskret, &emaskret, howlong);
750c750
<           if (select(fd+1, (int *) &rmask, NULL, NULL, (const timeval *) &poll) < 0) {
---
>           if (select(fd+1, &rmask, NULL, NULL, &poll) < 0) {

It turns out that the select system call was changed from:

      int select(
           size_t nfds,
           int *readfds,
           int *writefds,
           int *exceptfds,
           const struct timeval *timeout
      );

at 9.X to the following:

int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set
*errorfds, struct timeval *timeout);

at 10.X to make 10.X more compliant.

Now I am getting Unsatisfied symbols symbols when trying to link hfaxd

   FaxRequest type_info function(code)
   FaxRequest type_info node(data)
   vlogError(char const *, double *)(code)

ARGH! Time to go home now. :-(
-- 
Steve DuChene              sad@hpuerca.atl.hp.com  

	       The HP North American Response Center, Atlanta
		  X/CDE/Vue/xterminal/graphics support team

From david@djwhome.demon.co.uk  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: Y2K compliance/certification
To: jlo@openmarket.com
Date: Tue, 8 Dec 1998 08:34:11 +0000 (GMT)
Cc: webmaster@hylafax.org
Reply-To: flexfax@sgi.com

> Can you send me a pointer or point me toward your Y2K statement for this
> product.


Part of the conditions of use are that there is no warranty (a typical
condition on free software, and necessary to avoid financial risk
to the authors), so no one is going to certify compliance (even if there
were a document to certify it against) unless you pay them for their
risk..  However the subject has been discussed on the list during the
second round  of Y2K questions.  You are in the third round. (I believe
the only issue was with a secondary function, the transfer log, but you
must verify that yourself.)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 09 Dec 1998 23:33:12 +1100
To: flexfax@sgi.com
From: Robert Colquhoun <rjc@trump.net.au>
Subject: flexfax: faxmail 5% patch
Sender: owner-flexfax@celestial.com

Hi Everyone,

I have hacked a basic fix to the postscript image is 5% regular size
problem. The patch faxmail2.diff is available at:
	http://www.trump.net.au~rjc/hylafax/
it is done on top of Michael Salzmann's patch to fix faxmail's looping.

It not really finished yet there are a number of problems:
1) If the postscript part is the last part of the message, an extra blank
page will be printed(this is easily fixed but i want to resolve 2 first).

2) faxmail is basically just inserting without modification an arbitary
postscript document.  This causes a number of problems:
* The DSC comments become truely messed - so much so that i would be
suprised if any previewer would correctly interpret the output.
* name collision with the faxmail variables ie faxmail defines commonly
named variable such as PageWidth which can easily be redefined in the
included doc.  

The name collision can be fixed by prepending every faxmail var with say
'fm_' to minimise.

Or a better fix for this is to do some interpreting of the included
documents perhaps converting them to a series of EPS docs, one for each
page, so as to be isolated from the main document.  This could only
realistically be done for well behaved postscript docs with DSC comments,
otherwise the document would just have to be directly included.

Before i go too far, does anyone have a better idea?

- Robert

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 9 Dec 1998 11:49:15 -0500 (EST)
From: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>
To: Hylafax Mailing List <flexfax@sgi.com>
Subject: flexfax: Suse HylaFAX distribution
Sender: owner-flexfax@celestial.com

-----BEGIN PGP SIGNED MESSAGE-----


A fast look over at the SUSE HylaFAX distribution for HylaFAX shows that
the RPM for Linux uses the "xferstats" command. This conflicts with
the command of the same name from the RedHat wu-ftpd distribution,
which may not be an issue for SUSE users.

I do like that the patches are all bundled up, and the installation notes
in the source RPM: it is in some ways easier to cope with than those
in the RedHat distribution due to that bundling.

This is just a heads up for anyone who has to cope with it.

			Nico Kadel-Garcia
			Senior Engineer, CIRL 
			Mass. Eye and Ear Infirmary
			raoul@cirl.meei.harvard.edu

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBNm6qBz/+ItycgIJRAQGReAP/fS8RWuSerLz6NDN+ekjpfFH2Sy56nsAU
jui/ib98KItpbCqx8X+cvE4GBnFjyvx0mlYZooUVoUMRCvOWX6G+s490Al6XKEYd
HidEIdkDyekT0vQ9YXc+NsA0txsNOFFbRxLmR7XybeqeI0ySTPtjeKBN/iTRBSgY
Os2tSwoKdCw=
=wAlJ
-----END PGP SIGNATURE-----

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: 10 Dec 98 10:41:17 +1030
From: Michael Firkins <michael@sa.lyppard.com.au>
Subject: flexfax: RPM distributions of HylaFAX: Suggestion.
To: Nico Kadel-Garcia <raoul@cirl.meei.harvard.edu>,
        Hylafax Mailing List <flexfax@sgi.com>
Sender: owner-flexfax@celestial.com

Hi.
In general, the rpm system is pretty good, especially for installing 
'standard' components. I wonder if it would be possible to have the 
HylaFAX rpm(s) mail root with the setup documents, readme.rpm etc (or 
where to start looking for them) when the fax system is installed.

This might help fewer people come to grief post-install. (especially if 
the rpm is loaded in anticipation of setting it up at a later date)

Thanks,

Michael

--------------------------------------
Date: 10/12/98 8:15 AM
To: Michael Firkins
From: Nico Kadel-Garcia
-----BEGIN PGP SIGNED MESSAGE-----


A fast look over at the SUSE HylaFAX distribution for HylaFAX shows that
the RPM for Linux uses the "xferstats" command. This conflicts with
the command of the same name from the RedHat wu-ftpd distribution,
which may not be an issue for SUSE users.

I do like that the patches are all bundled up, and the installation 
notes
in the source RPM: it is in some ways easier to cope with than those
in the RedHat distribution due to that bundling.

This is just a heads up for anyone who has to cope with it.

			Nico Kadel-Garcia
			Senior Engineer, CIRL 
			Mass. Eye and Ear Infirmary
			raoul@cirl.meei.harvard.edu

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 09 Dec 1998 21:56:57 -0500
From: David McCracken <dmccracken@erols.com>
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: [Fwd: Problems building the Hylafax Software]
Sender: owner-flexfax@celestial.com


From davemccr@Sunshine.homepc  Thu Feb 11 13:16:08 1999
X-Mozilla-Status2: 00000000
Message-ID: <366A1263.A8FD9C2E@Sunshine.homepc>
Date: Sun, 06 Dec 1998 00:13:08 -0500
From: David McCracken <davemccr@Sunshine.homepc>
Reply-To: dmccracken@erols.com
X-Accept-Language: en
MIME-Version: 1.0
To: flexfax@sgi.com
Subject: Problems building the Hylafax Software
Content-Type: multipart/alternative;
 boundary="------------4AE915ED5AEA552D21179ACA"

<x-html>
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
&nbsp;
<br>I recently downloaded the Hylafax Source (v4.0 pl2) from the web site.&nbsp;
I ran configure
<br>without any problems, but when I tried to run make, I got several compiler
errors.
<p>I am running Slackware 3.5 which has kernel version 2.0.34, gcc version
2.90.29.&nbsp; Some of
<br>the errors follow:
<p><font face="Arial,Helvetica">/usr/bin/gcc&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-I.././zlib&nbsp;&nbsp;&nbsp;&nbsp; -D__ANSI_CPP__ -I. -I.. -I.././util
-I.././util -I/usr/local/include -I.././regex -g -O -x c++</font>
<br><font face="Arial,Helvetica">-c SendFaxJob.c++</font>
<br><font face="Arial,Helvetica">SendFaxJob.c++: In method `unsigned char
SendFaxJob::createJob(class SendFaxClient &amp;, class fxStr &amp;)':</font>
<br><font face="Arial,Helvetica">SendFaxJob.c++:499: no matching function
for call to `SendFaxClient::sendZData (int &amp;, unsigned char</font>
<br><font face="Arial,Helvetica">(FaxClient::)(fxStr &amp;, fxStr &amp;),
fxStr &amp;, fxStr &amp;)'</font>
<br><font face="Arial,Helvetica">FaxClient.h:273: candidates are: FaxClient::sendZData(int,
unsigned char (FaxClient::*)(fxStr &amp;, fxStr &amp;), fxStr &amp;, fxStr</font>
<br><font face="Arial,Helvetica">&amp;)</font>
<br><font face="Arial,Helvetica">make[3]: *** [SendFaxJob.o] Error 1</font>
<br><font face="Arial,Helvetica">make[3]: Leaving directory `/usr/local/hylafax-v4.0pl2/util'</font>
<br><font face="Arial,Helvetica">make[2]: *** [default] Error 2</font>
<p>then
<br><font face="Arial,Helvetica">/usr/bin/gcc&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-D__ANSI_CPP__ -I. -I.. -I.././faxalter -I.././util -I/usr/local/include
-I.././regex -g -O -x c++ -c</font>
<br><font face="Arial,Helvetica">faxalter.c++</font>
<br><font face="Arial,Helvetica">make[3]: *** No rule to make target `../util/libfaxutil.a',
needed by `faxalter'.&nbsp; Stop.</font>
<br><font face="Arial,Helvetica">make[3]: Leaving directory `/usr/local/hylafax-v4.0pl2/faxalter'</font>
<br><font face="Arial,Helvetica">make[2]: *** [default] Error 2</font><font face="Arial,Helvetica"></font>
<p>next
<br><font face="Arial,Helvetica">usr/bin/gcc&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-D__ANSI_CPP__ -I. -I.. -I.././faxcover -I.././util -I/usr/local/include
-I.././regex -g -O -x c++ -c</font>
<br><font face="Arial,Helvetica">faxcover.c++</font>
<br><font face="Arial,Helvetica">make[3]: *** No rule to make target `../util/libfaxutil.a',
needed by `faxcover'.&nbsp; Stop.</font>
<p>later
<br><font face="Arial,Helvetica">/usr/bin/gcc&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-D__ANSI_CPP__ -I. -I.. -I.././faxd -I.././util -I/usr/local/include -I.././regex
-g -O -x c++ -c</font>
<br><font face="Arial,Helvetica">faxQueueApp.c++</font>
<br><font face="Arial,Helvetica">make[3]: *** No rule to make target `../util/libfaxutil.a',
needed by `faxq'.&nbsp; Stop.</font>
<br><font face="Arial,Helvetica">make[3]: Leaving directory `/usr/local/hylafax-v4.0pl2/faxd'</font>
<br><font face="Arial,Helvetica">make[2]: *** [default] Error 2</font>
<p>...
<p>Any help would be appreciated since I don't really know the C language
to fix the error
<br>myself.
<p>A reply via email would be appreciated as I am not subscribed to the
mailing list at this
<br>time.
<p>Thanks,
<br>Dave McCracken
<br>dmccracken@erols.com</html>
</x-html>

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 10 Dec 1998 08:13:38 +0000
To: David McCracken <dmccracken@erols.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: [Fwd: Problems building the Hylafax Software] 
Cc: HylaFAX List <flexfax@sgi.com>
Sender: owner-flexfax@celestial.com

At 21:56 09/12/98 -0500, David McCracken wrote
>[snip]
 about some problem about compiling HylaFAX.


Have you tried the binary distribution first? It would save
a *lot* of heartache.  The HylaFAX community should really
encourage new users to use the binary distributions unless
there is no alternative. Having said that, it would also be
nice if Slackware had a package manager.

Go straight to:  ftp://ftp.hylafax.org/pub/hylafax/binary/

Then pick up Nico Kadel-Garcia's excellent notes for Linux
users at:

      http://cirl.meei.harvard.edu/hylafax/

you are looking for the file: INSTALL-linux5.x-v4.0pl2.html

HylaFAX is a *serious* piece of software, it needs a *serious*
attempt to setup and configure it.

Good Luck.

>Any help would be appreciated since I don't really know the C 
>language to fix the error myself. 
>
>A reply via email would be appreciated as I am not subscribed 
>to the mailing list at this time. 
>

So why am I helping you, if you're not prepared to join in?

Phil Watkinson,
Boston, UK.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 10 Dec 1998 11:41:35 +0200
From: Eric Smith <eric@eric.nafex.com>
To: flexfax@sgi.com
Subject: flexfax: errors rotating logs
Reply-To: eric@nafex.com
X-Operating-System: Linux eric 2.0.34
Sender: owner-flexfax@celestial.com

How does one install the patch for this error?

Thanx
-- 
Eric Smith (eric@nafex.com)
Tel 0027 82 780 7888 (vodacom)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 10 Dec 1998 10:13:38 -0500
From: Bernie <bfb@att.net>
To: flexfax@sgi.com
Subject: flexfax: Please help redirect log messages
Sender: owner-flexfax@celestial.com

I can't seem to redirect messages to a
log file other than /var/log/messages.
I've set the LogFacility to local5 in
the following files:

/var/spool/fax/config/defaults/config
/var/spool/fax/etc/config
/var/spool/fax/etc/config.cua1

I then added the following line to
my /etc/syslog.conf (separated by tabs):

local5.		/apps/hylafax/hylafax.log


When I restart my computer, only 3 messages
logged to /apps/hylafax/hylafax.log are:

Dec 10 09:14:43 localhost FaxQueuer[277]: HylaFAX (tm) Version 4.0pl2
Dec 10 09:14:43 localhost FaxQueuer[277]: Copyright (c) 1990-1996 Sam
Leffler
Dec 10 09:14:43 localhost FaxQueuer[277]: Copyright (c) 1991-1996
Silicon Graphics, Inc. 


I've installed the following release:
hylafax-4.0pl2-3rh5.i386.rpm


Any suggestions would be greatly appreciated.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 11 Dec 1998 08:48:54 +1300 (NZDT)
From: Jonathan Chen <jonc@pinnacle.co.nz>
To: Bernie <bfb@att.net>
cc: flexfax@sgi.com
Subject: Re: flexfax: Please help redirect log messages
Sender: owner-flexfax@celestial.com

On Thu, 10 Dec 1998, Bernie wrote:

> I then added the following line to
> my /etc/syslog.conf (separated by tabs):
> 
> local5.		/apps/hylafax/hylafax.log

Shouldn't this be:

	local5.debug		/apps/hylafax/hylafax.log

Jonathan Chen
--------------------------------------------------------------------
                 "Lots of folks confuse bad management with destiny"
                                                      - Kin Hubbard

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: HylaFAX List <flexfax@sgi.com>
Subject: flexfax: Is there something wrong with http://www.hylafax.org
Date: Thu, 10 Dec 1998 08:55:14 -0800
From: Jason Venner <jason@idiom.com>
Sender: owner-flexfax@celestial.com



I can ping the machine, I can ftp files form it, but I can not get
http service.  The browser connects and then waits forever.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 11 Dec 1998 08:49:49 +1300 (NZDT)
From: Jonathan Chen <jonc@pinnacle.co.nz>
To: Hylafax Mailing list <flexfax@sgi.com>
Subject: Re: flexfax: Is there something wrong with http://www.hylafax.org
Sender: owner-flexfax@celestial.com

On Thu, 10 Dec 1998, Jason Venner wrote:

> I can ping the machine, I can ftp files form it, but I can not get
> http service.  The browser connects and then waits forever.

Yup. I too have the same problem...

Jonathan Chen
--------------------------------------------------------------------
                 "Lots of folks confuse bad management with destiny"
                                                      - Kin Hubbard

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 10 Dec 1998 20:23:15 -0500
From: Bernie <bfb@att.net>
To: HylaFAX <flexfax@sgi.com>
Subject: flexfax: Can't Redirect Log Mesages
Sender: owner-flexfax@celestial.com

I can't seem to redirect messages to a
log file other than /var/log/messages.
I've set the LogFacility to local5 in
the following files:

/var/spool/fax/config/defaults/config
/var/spool/fax/etc/config
/var/spool/fax/etc/config.cua1

I then tried (at different times) the 
following two lines in my /etc/syslog.conf 
(separated by tabs):

local5.*         /apps/hylafax/hylafax.log
local5.debug         /apps/hylafax/hylafax.log



When I restart my computer, only 3 messages
logged to /apps/hylafax/hylafax.log are:

Dec 10 09:14:43 localhost FaxQueuer[277]: HylaFAX (tm) Version 4.0pl2
Dec 10 09:14:43 localhost FaxQueuer[277]: Copyright (c) 1990-1996 Sam
Leffler
Dec 10 09:14:43 localhost FaxQueuer[277]: Copyright (c) 1991-1996
Silicon Graphics, Inc. 


I've installed the following release:
hylafax-4.0pl2-3rh5.i386.rpm


Any suggestions would be greatly appreciated.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: msw@cluedin.com (Michael S. Weiner (Doc))
To: flexfax@sgi.com
Subject:  Re: flexfax: New Multitech modem-blank faxes
Date: Thu, 10 Dec 1998 16:26:54 CST
Sender: owner-flexfax@celestial.com

Thanks to those who helped solve the problem of the
new multitech multimodem (MT5634ZBA).  Here is a summary of the
salient facts for the group.

msw wrote:
> The modem (Multitech MT5634ZZBA) appears to work fine, receives faxes without
> any error indications (even in the .../spool/log c000.... files --
> detail of which was included in my previous posting --
> BUT all the received fax pages (from a variety of fax machines
> in various locations) are BLANK.

Multitech was not good about calling back or following up so that
without the help of this group, I wouldn't have solved the problem.
(They were good about supplying a free eprom upgrade for an older
MT1432BA modem).  Multitech said that the modem was rated as a
Class 2 and felt that MSB/LSB reversal was an issue.  They gave
another fix for defining that in the modem setup
which I applied as follows:
ModemSetupAACmd:        AT+FAA=1+FRBOR=0        
They said to try botth +FRBOR=0 and +FRBOR=1.
However, neither worked to solve the problem.

I received a reply from ras also pointing to an MGS/LSB reversal issue.

However, the most useful response which solved the issue was:

Martin Renters <martin@datafax.com> wrote:
>I had the same problem. Try adding the lines:
>
>ModemSendFillOrder:     LSB2MSB
>ModemRecvFillOrder:     MSB2LSB         # opposite of earlier models
>
>to the end of your config.tty* file.  I found this worked on some MT5634ZDX
>modems (which did class 2 even though customer support said they didn't).

Thanks to the group, esp Martin.

Michael S. Weiner (Doc)            msw@cluedin.com
Austin, TX  78734  USA             voice: 512-266-1188

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: gdoris@shaw.wave.ca
Date: Thu, 10 Dec 1998 19:37:23 -0500 (EST)
To: Hylafax <flexfax@sgi.com>
Subject: flexfax: US Robotics Modem Help
Sender: owner-flexfax@celestial.com

I have setup the linux version of Hylafax 4.0pl2-17 and it works fine for
receiving.  However, it will only send sometimes.  It dials, the remote modem
answers and responds with the tones but my modem usually doesn't answer.  I say
usually because the odd time it will answer and the fax is sent correctly.

When the modem fails to send the log shows that the remote modem failed to
answer the phone (the remote modem does answer the phone).  Obviously, when it
works the log is fine.  I've attached a failing log and my config file.

This is really frustrating.  I can't justify buying another modem just for
Hylafax.  For the few faxes that I actually send I can just boot Win95 and run
WinFax Pro but I've been trying to use linux exclusively.  I like Hylafax and
have even got whfc running as well...but I can't consistently send faxes!!!!

I'm using a US Robotics v.90 fax/data/voice external.  I'm using linux 2.0.36. 
Any help would be GREATLY appreciated!

Gerry

----------------------------------
E-Mail: gdoris@shaw.wave.ca
Date: 10-Dec-98
Time: 18:52:19

This message was sent by XFMail
----------------------------------

Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\config2.fax"

Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\c00000049"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: flexfax@sgi.com
Subject: flexfax: Modem choices - suggestions please
Date: Thu, 10 Dec 1998 19:34:35 -0800
From: Jason Venner <jason@idiom.com>
Sender: owner-flexfax@celestial.com


I am looking for modems that I can rackmount and or use standalone,
that work well with hylafax.
I have seen enough people have trouble with the USR modems that I am
reluctant to buy them.

The other caveat is that I would like the modems to be able to be run
from inside the US or in europe.

Anyone have any recommendations for or against for such?

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
X-Authentication-Warning: home01.asiaonline.net: d1swdev owned process doing -bs
Date: Sat, 12 Dec 1998 08:57:48 +0800 (HKT)
From: Hong Kong Observatory <d1swdev@asiaonline.net>
To: Jason Venner <jason@idiom.com>
cc: flexfax@sgi.com
Subject: Re: flexfax: Modem choices - suggestions please
Sender: owner-flexfax@celestial.com

Hi,

I am now using ZyXEL U336RE rackmount modems with HylaFAX and also used 
ZyXEL 1496E standalone modems. I also tried some Rockwell based modems 
(both rackmount and standalone). They all works fine with HylaFAX (I am
running HylaFAX under AIX). But I am using them in Asia and have no idea
will there be any problems when used in US or Europe.

On Thu, 10 Dec 1998, Jason Venner wrote:

> 
> I am looking for modems that I can rackmount and or use standalone,
> that work well with hylafax.
> I have seen enough people have trouble with the USR modems that I am
> reluctant to buy them.
> 
> The other caveat is that I would like the modems to be able to be run
> from inside the US or in europe.
> 
> Anyone have any recommendations for or against for such?
> 
> 
> 

K.S.Wat SSA(D)12
Computer Division,
Hong Kong Observatory.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Catherine Doris" <stormie@shaw.wave.ca>
To: <flexfax@sgi.com>
Subject: Fw: flexfax: US Robotics Modem Help - Resolved!!!
Date: Sat, 12 Dec 1998 18:30:01 -0500
Sender: owner-flexfax@celestial.com

Well, I finally found the problem that was presenting me from sending faxes.
My problem was that my modem would dial and the remote modem would respond
but my modem would not start the handshaking.  Receives worked fine.

In the config file there is a default entry ATDT%s@.  The @ causes the
connection to be "quite".  However, with a US Robotic modem (at least mine)
there are 4 levels of X messages (X1, X2, X3, or X4).  For X3 and X4 the @
prevents any verbal codes from being relayed back from the modem.  I was
using X4.

By removing the @ the sends are now working fine.  I suppose I could have
accomplished the same thing by changing to X1 or X2 but I haven't tried it.

Gerry

BTW, the correct command is ATDT.  I also made the other correct suggested
in the attached note.


-----Original Message-----
From: a <aandrews@mediswitch.co.za>
To: 'gdoris@shaw.wave.ca' <gdoris@shaw.wave.ca>
Date: December 11, 1998 5:20 AM
Subject: RE: flexfax: US Robotics Modem Help


>
>
>----------
>From: gdoris@shaw.wave.ca[SMTP:gdoris@shaw.wave.ca]
>Sent: Friday, December 11, 1998 2:37 AM
>To: Hylafax
>Subject: flexfax: US Robotics Modem Help
>
>Hi
>My 10 cents worth ...
>Have you checked the user manual for the correct modem commands and matched
them with your config. file.
>I can already see that  class2ncrcmd in your config is "incorrect"
>It "should" be AT+FNR=1,1,1,0   (see the SUSE hylafax page)
>I think your modem dial cmd might be wrong...
>Is it not supposed to be AT&DT.... ?
>Have you tried using your modem as a class 1 modem ?
>Perhaps try use cu or something and actually test the commands you
>issued to the modem prior to the abort.
>Perhaps another process trying to access the modem will hylafax is busy
>because the port is not locking properly?
>cheers
>
>

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Sun, 13 Dec 1998 20:15:26 -0500
From: Bernie <bfb@att.net>
To: HylaFAX <flexfax@sgi.com>
Subject: flexfax: Please help redirecting log messages
Sender: owner-flexfax@celestial.com

I can't seem to redirect messages to a
log file other than /var/log/messages.
I've set the LogFacility to local5 in
the following files:

/var/spool/fax/config/defaults/config
/var/spool/fax/etc/config
/var/spool/fax/etc/config.cua1

I then tried (at different times) the 
following two lines in my /etc/syslog.conf 
(separated by tabs):

local5.*         /apps/hylafax/hylafax.log
local5.debug         /apps/hylafax/hylafax.log



When I restart my computer, only 3 messages
logged to /apps/hylafax/hylafax.log are:

Dec 10 09:14:43 localhost FaxQueuer[277]: HylaFAX (tm) Version 4.0pl2
Dec 10 09:14:43 localhost FaxQueuer[277]: Copyright (c) 1990-1996 Sam
Leffler
Dec 10 09:14:43 localhost FaxQueuer[277]: Copyright (c) 1991-1996
Silicon Graphics, Inc. 


I've installed the following release of HylaFAX
under RedHat Linux 5.2:

hylafax-4.0pl2-3rh5.i386.rpm


Any suggestions would be greatly appreciated.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 14 Dec 1998 12:19:55 +1100
From: Damian A Ivereigh <damian@cisco.com>
Organization: Cisco Systems Inc
To: Bernie <bfb@att.net>
CC: HylaFAX <flexfax@sgi.com>
Subject: Re: flexfax: Please help redirecting log messages
Sender: owner-flexfax@celestial.com

I don't know the answer to this, but have you checked to see if the
logging is going elsewhere? e.g. into daemon rather than local5. It may
be a bug that Hylafax isn't taking note of this parameter in all the
places it should be.

Damian

Bernie wrote:
> 
> I can't seem to redirect messages to a
> log file other than /var/log/messages.
> I've set the LogFacility to local5 in
> the following files:
> 
> /var/spool/fax/config/defaults/config
> /var/spool/fax/etc/config
> /var/spool/fax/etc/config.cua1
> 
> I then tried (at different times) the
> following two lines in my /etc/syslog.conf
> (separated by tabs):
> 
> local5.*         /apps/hylafax/hylafax.log
> local5.debug         /apps/hylafax/hylafax.log
> 
> When I restart my computer, only 3 messages
> logged to /apps/hylafax/hylafax.log are:
> 
> Dec 10 09:14:43 localhost FaxQueuer[277]: HylaFAX (tm) Version 4.0pl2
> Dec 10 09:14:43 localhost FaxQueuer[277]: Copyright (c) 1990-1996 Sam
> Leffler
> Dec 10 09:14:43 localhost FaxQueuer[277]: Copyright (c) 1991-1996
> Silicon Graphics, Inc.
> 
> I've installed the following release of HylaFAX
> under RedHat Linux 5.2:
> 
> hylafax-4.0pl2-3rh5.i386.rpm
> 
> Any suggestions would be greatly appreciated.

-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 10 Dec 1998 20:18:13 -0500
From: Bernie <bfb@att.net>
To: HylaFAX <flexfax@sgi.com>
Subject: flexfax: Transmission error
Sender: owner-flexfax@celestial.com

When I attempt to send a fax, I always
receive the following error:

sendfax: FAILED to transmit '/apps/hylafax/test.g3'.
Transmission error: +FHNG:54 (No response to EOP repeated 3 times) 

Any ideas what might be causing this?

-Thanks

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: faxmail 5% patch
To: rjc@trump.net.au (Robert Colquhoun)
Date: Fri, 11 Dec 1998 00:16:04 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> 
> The name collision can be fixed by prepending every faxmail var with say
> 'fm_' to minimise.

Would not bracketting with save and restore solve the name space problem?

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 11 Dec 1998 09:51:00 +0100
From: "H. Gehrke-Tschudi" <hgt@vitzlipu.ruhr.de>
To: flexfax@sgi.com
Subject: flexfax: Faxpolling gives REMOTE HANGUP: Unspecified Phase C error
Mail-Followup-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

I have HylaFAX (tm) Version 4.0pl2 with Linux-Kernel 2.0.35
(gcc version 2.7.2.1) Class2-Modem CREATIX SG 2834 running on a standalone
system.

Faxsending works ok.

When I try polling a fax I get:
`Unspecified Phase C error, including too much delay between TCF and +FDR
command`.

In my logfile Handshake looks OK. Only when it comes to actually sending the 
page from remote I get a MODEM TIMEOUT.

This is what Facsimile Agent takes to protocoll:

 'Unspecified Phase C error, including too much delay between TCF and +FDR
+command; too many attempts to send

    ---- Transcript of session follows ----

Dec 10 21:59:37.92: [ 2987]: SESSION BEGIN 00000018 49582294050
Dec 10 21:59:37.92: [ 2987]: SEND FAX: JOB 9 DEST 05822-94050 COMMID 00000018
Dec 10 21:59:37.92: [ 2987]: MODEM set DTR OFF
Dec 10 21:59:37.92: [ 2987]: DELAY 2600 ms
Dec 10 21:59:40.53: [ 2987]: MODEM set DTR ON
Dec 10 21:59:40.53: [ 2987]: MODEM set baud rate: 38400 baud, input flow
+RTS/CTS, output flow RTS/CTS
Dec 10 21:59:40.53: [ 2987]: MODEM flush i/o
Dec 10 21:59:40.53: [ 2987]: <-- [15:ATE0V1Q0S0=0H0\r]
Dec 10 21:59:40.68: [ 2987]: --> [2:OK]
Dec 10 21:59:40.68: [ 2987]: <-- [21:ATS8=2S7=60&K3&D3&C1\r]   
Dec 10 21:59:40.83: [ 2987]: --> [2:OK]
Dec 10 21:59:40.83: [ 2987]: <-- [12:AT+FCLASS=2\r]
Dec 10 21:59:40.98: [ 2987]: --> [2:OK]
Dec 10 21:59:40.98: [ 2987]: <-- [10:AT+FTBC=0\r]
Dec 10 21:59:41.13: [ 2987]: --> [2:OK]
Dec 10 21:59:41.13: [ 2987]: <-- [10:AT+FBOR=0\r]
Dec 10 21:59:41.28: [ 2987]: --> [2:OK]
Dec 10 21:59:41.28: [ 2987]: <-- [13:AT+FPHCTO=30\r]
Dec 10 21:59:41.43: [ 2987]: --> [2:OK]
Dec 10 21:59:41.43: [ 2987]: <-- [24:AT+FDCC=1,5,2,2,1,0,0,0\r]
Dec 10 21:59:41.58: [ 2987]: --> [2:OK]
Dec 10 21:59:41.58: [ 2987]: <-- [5:ATM0\r]
Dec 10 21:59:41.73: [ 2987]: --> [2:OK]
Dec 10 21:59:41.73: [ 2987]: MODEM input buffering enabled
Dec 10 21:59:41.73: [ 2987]: <-- [12:AT+FCLASS=2\r]
Dec 10 21:59:41.98: [ 2987]: --> [2:OK]
Dec 10 21:59:41.98: [ 2987]: <-- [10:AT+FTBC=0\r]
Dec 10 21:59:42.23: [ 2987]: --> [2:OK]
Dec 10 21:59:42.23: [ 2987]: <-- [10:AT+FBOR=0\r]
Dec 10 21:59:42.48: [ 2987]: --> [2:OK]
Dec 10 21:59:42.48: [ 2987]: <-- [13:AT+FPHCTO=30\r]
Dec 10 21:59:42.73: [ 2987]: --> [2:OK]
Dec 10 21:59:42.73: [ 2987]: <-- [24:AT+FDCC=1,5,2,2,1,0,0,0\r]
Dec 10 21:59:42.98: [ 2987]: --> [2:OK]
Dec 10 21:59:42.98: [ 2987]: <-- [31:AT+FLID="Hartmut Gehrke-Tschu"\r]
Dec 10 21:59:43.23: [ 2987]: --> [2:OK]
Dec 10 21:59:43.23: [ 2987]: <-- [10:AT+FSPL=1\r]
Dec 10 21:59:43.48: [ 2987]: --> [2:OK]
Dec 10 21:59:43.49: [ 2987]: DIAL 0582294050
Dec 10 21:59:43.49: [ 2987]: <-- [15:ATDT0582294050\r]
Dec 10 21:59:55.00: [ 2987]: --> [5:+FCON]
Dec 10 21:59:57.82: [ 2987]: --> [29:+FCSI: "      +49 5822 94050"]
Dec 10 21:59:57.82: [ 2987]: REMOTE CSI "+49 5822 94050"
Dec 10 21:59:58.14: [ 2987]: --> [22:+FDIS: 1,3,0,2,1,0,0,2]
Dec 10 21:59:58.14: [ 2987]: --> [6:+FPOLL]
Dec 10 21:59:58.14: [ 2987]: REMOTE has document to POLL
Dec 10 21:59:58.25: [ 2987]: --> [2:OK]
Dec 10 21:59:58.25: [ 2987]: REMOTE best rate 9600 bit/s
Dec 10 21:59:58.25: [ 2987]: REMOTE max page width 1728 pixels in 215 mm
Dec 10 21:59:58.25: [ 2987]: REMOTE max unlimited page length
Dec 10 21:59:58.25: [ 2987]: REMOTE best vres 7.7 line/mm
Dec 10 21:59:58.25: [ 2987]: REMOTE best format 2-D MR
Dec 10 21:59:58.25: [ 2987]: REMOTE best 10 ms, 5 ms/scanline
Dec 10 21:59:58.25: [ 2987]: USE 9600 bit/s
Dec 10 21:59:58.25: [ 2987]: USE 10 ms, 5 ms/scanline
Dec 10 21:59:58.25: [ 2987]: MODEM input buffering enabled
Dec 10 21:59:58.25: [ 2987]: POLL FAX: begin (SEP "", PWD "")
Dec 10 21:59:58.25: [ 2987]: <-- [23:AT+FCIG="+49234286637"\r]
Dec 10 21:59:58.50: [ 2987]: --> [2:OK]
Dec 10 21:59:58.50: [ 2987]: <-- [7:AT+FDR\r]
Dec 10 22:02:58.50: [ 2987]: MODEM TIMEOUT: reading line from modem
Dec 10 22:02:58.51: [ 2987]: REMOTE HANGUP: Unspecified Phase C error, including
+too much delay between TCF and +FDR command (code 90)
Dec 10 22:02:58.57: [ 2987]: RECV FAX (00000018): recvq/fax00004.tif from +49
+5822 94050, route to <unspecified>, 0 pages in 3:00
Dec 10 22:02:58.57: [ 2987]: POLL FAX: Unspecified Phase C error, including too
+much delay between TCF and +FDR command
Dec 10 22:02:58.57: [ 2987]: <-- [6:AT+FK\r]
Dec 10 22:02:58.82: [ 2987]: --> [5:ERROR]
Dec 10 22:02:58.82: [ 2987]: MODEM Command error
Dec 10 22:02:58.82: [ 2987]: POLL FAX: end
Dec 10 22:02:58.82: [ 2987]: POLL: empty file "recvq/fax00004.tif" deleted
Dec 10 22:02:58.97: [ 2987]: SEND FAILED: Unspecified Phase C error, including
+too much delay between TCF and +FDR command; too many attempts to send
Dec 10 22:02:58.97: [ 2987]: <-- [5:ATH0\r]
Dec 10 22:02:59.22: [ 2987]: --> [2:OK]
Dec 10 22:02:59.22: [ 2987]: MODEM set DTR OFF
Dec 10 22:02:59.23: [ 2987]: SESSION END'

Can anybody give me a hint what to fix?
Thanks in advance for taking pains.
--
Hartmut Gehrke-Tschudi  |wenn die Leute wuessten, wie Wrste
Bochum	 		|und Gesetze gemacht werden...
BRD			|Jede 4. Mark geht in der BRD fr Zinsen weg.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: Transmission error
To: bfb@att.net (Bernie)
Date: Fri, 11 Dec 1998 08:47:34 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> receive the following error:
> 
> sendfax: FAILED to transmit '/apps/hylafax/test.g3'.
> Transmission error: +FHNG:54 (No response to EOP repeated 3 times) 

Please supply:

The version of hylafax;
The type and version of your operating system (NB not just the kernel
version for Linux);
The type and version of your fax modem;
The type and version of the destination machine if it appears to be
a factor;
The hylafax logging output in at lease as much detail as other recent
articles;
Any non-trivial customisation to the hylafax configuration.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 11 Dec 1998 09:57:41 +0100
From: Joaqun Arza Laurenz <jarza@unav.es>
Organization: Clinica Universitaria de Navarra
X-Accept-Language: es,en
To: Hylafax Mailing List <flexfax@sgi.com>
Subject: flexfax: Faxgetty problems
Sender: owner-flexfax@celestial.com

Im running the linux version of Hylafax 4.0pl2. I have setup two US
Robotics 56k and in the beginning I had no problems for sending and
receiving, but now I cant receive faxes. Faxgetty isnt running on the
server and when I try to execute it I get the following messages:

Dec 11 09:54:54 fax FaxGetty[4250]: OPEN /dev/ttyS0
Dec 11 09:54:55 fax FaxGetty[4251]: OPEN /dev/ttyS1
Dec 11 09:54:56 fax FaxGetty[1810]: ANSWER: Can not lock modem device
Dec 11 09:54:56 fax FaxGetty[4218]: ANSWER: Can not lock modem device
Dec 11 09:54:58 fax FaxGetty[4219]: ANSWER: Can not lock modem device
Dec 11 09:54:58 fax FaxGetty[1811]: ANSWER: Can not lock modem device
Dec 11 09:55:01 fax FaxGetty[4250]: MODEM U.S. ROBOTICS INC. 56.0 VOICE
/
Dec 11 09:55:03 fax FaxGetty[4251]: MODEM U.S. ROBOTICS INC. 56.0 VOICE
/
Dec 11 09:55:29 fax FaxGetty[4250]: ANSWER: Can not lock modem device
Dec 11 09:55:31 fax FaxGetty[4251]: ANSWER: Can not lock modem device
Dec 11 09:55:32 fax FaxGetty[4218]: MODEM U.S. ROBOTICS INC. 56.0 VOICE
/
Dec 11 09:55:34 fax FaxGetty[4219]: MODEM U.S. ROBOTICS INC. 56.0 VOICE
/
Dec 11 09:55:53 fax FaxGetty[4219]: MODEM U.S. ROBOTICS INC. 56.0 VOICE
/
Dec 11 09:55:58 fax FaxGetty[4218]: MODEM U.S. ROBOTICS INC. 56.0 VOICE
/
Dec 11 09:56:04 fax FaxGetty[1811]: MODEM U.S. ROBOTICS INC. 56.0 VOICE
/
Dec 11 09:56:05 fax FaxGetty[4250]: MODEM U.S. ROBOTICS INC. 56.0 VOICE
/
Dec 11 09:56:29 fax FaxGetty[4250]: ANSWER: Can not lock modem device
Dec 11 09:56:32 fax FaxGetty[1810]: MODEM U.S. ROBOTICS INC. 56.0 VOICE
/
Dec 11 09:56:34 fax FaxGetty[1811]: ANSWER: Can not lock modem device
Dec 11 09:56:37 fax FaxGetty[4251]: MODEM U.S. ROBOTICS INC. 56.0 VOICE
/


Any help would be appreciated.

Joaquin.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 11 Dec 1998 10:16:25 +0100
To: flexfax@sgi.com
From: Artur Uszynski <arus@opt.com.pl>
Subject: flexfax: Trouble with sending faxes to particular places.
X-MDaemon-Deliver-To: flexfax@sgi.com
X-Return-Path: arus@opt.com.pl
Sender: owner-flexfax@celestial.com

Hello.

HylaFAX version is: 4.0pl1 (binary distribution for RedHat, probably
4.0beta06)
OS is: RedHat 5.1
Modem is: Zyxel 2864 Elite, firmware V. 1.19

The script below reports errors. In fact, the fax was received by remote
fax machine three times. Becouse HylaFAX thought, that it was not done, it
has sent the fascimile few more times, each time the result was the same.
Does anybody know, what the problem is ?

Dec 08 16:15:04.35: [29610]: SESSION BEGIN 00000034 482298686622
Dec 08 16:15:04.36: [29610]: SEND FAX: JOB 32 DEST 9,8686622 COMMID 00000034
Dec 08 16:15:04.36: [29610]: DELAY 2600 ms
Dec 08 16:15:06.96: [29610]: <-- [39:AT&B1&N0&S0*F0S18=4S38.3=1E0V1Q0S0=0H0\r]
Dec 08 16:15:07.13: [29610]: --> [2:OK]
Dec 08 16:15:07.13: [29610]: <-- [21:ATS8=2S7=60&H3&D2&C1\r]
Dec 08 16:15:07.15: [29610]: --> [2:OK]
Dec 08 16:15:07.15: [29610]: <-- [14:AT+FCLASS=2.0\r]
Dec 08 16:15:07.16: [29610]: --> [2:OK]
Dec 08 16:15:07.16: [29610]: <-- [9:AT+FLO=2\r]
Dec 08 16:15:07.17: [29610]: --> [2:OK]
Dec 08 16:15:07.17: [29610]: <-- [9:AT+FPP=0\r]
Dec 08 16:15:07.18: [29610]: --> [2:OK]
Dec 08 16:15:07.18: [29610]: <-- [9:AT+FBO=0\r]
Dec 08 16:15:07.19: [29610]: --> [2:OK]
Dec 08 16:15:07.19: [29610]: <-- [10:AT+FCT=30\r]
Dec 08 16:15:07.20: [29610]: --> [2:OK]
Dec 08 16:15:07.20: [29610]: <-- [15:AT+FNR=1,1,1,1\r]
Dec 08 16:15:07.21: [29610]: --> [2:OK]
Dec 08 16:15:07.21: [29610]: <-- [9:AT+FIE=0\r]
Dec 08 16:15:07.22: [29610]: --> [2:OK]
Dec 08 16:15:07.22: [29610]: <-- [23:AT+FCC=1,5,2,2,1,0,0,0\r]
Dec 08 16:15:07.24: [29610]: --> [2:OK]
Dec 08 16:15:07.24: [29610]: <-- [7:ATM1L1\r]
Dec 08 16:15:07.25: [29610]: --> [2:OK]
Dec 08 16:15:07.25: [29610]: <-- [14:AT+FCLASS=2.0\r]
Dec 08 16:15:07.36: [29610]: --> [2:OK]
Dec 08 16:15:07.36: [29610]: <-- [9:AT+FLO=2\r]
Dec 08 16:15:07.47: [29610]: --> [2:OK]
Dec 08 16:15:07.47: [29610]: <-- [9:AT+FPP=0\r]
Dec 08 16:15:07.58: [29610]: --> [2:OK]
Dec 08 16:15:07.58: [29610]: <-- [9:AT+FBO=0\r]
Dec 08 16:15:07.69: [29610]: --> [2:OK]
Dec 08 16:15:07.69: [29610]: <-- [10:AT+FCT=30\r]
Dec 08 16:15:07.80: [29610]: --> [2:OK]
Dec 08 16:15:07.80: [29610]: <-- [15:AT+FNR=1,1,1,1\r]
Dec 08 16:15:07.91: [29610]: --> [2:OK]
Dec 08 16:15:07.91: [29610]: <-- [9:AT+FIE=0\r]
Dec 08 16:15:08.02: [29610]: --> [2:OK]
Dec 08 16:15:08.02: [29610]: <-- [23:AT+FCC=1,5,2,2,1,0,0,0\r]
Dec 08 16:15:08.14: [29610]: --> [2:OK]
Dec 08 16:15:08.14: [29610]: <-- [30:AT+FLI="Optimum Distribution"\r]
Dec 08 16:15:08.26: [29610]: --> [2:OK]
Dec 08 16:15:08.26: [29610]: DIAL 9,8686622
Dec 08 16:15:08.26: [29610]: <-- [14:ATDT9,8686622\r]
Dec 08 16:15:32.60: [29610]: --> [4:+FCO]
Dec 08 16:15:32.60: [29610]: --> [112:+FNF:00 00 11 80 00 80 49 10 4D 49 43 52
4F 53 59 53 54 45 4D 53 20 20 20 20 00 4D 00 80 80 C0 06 01 01 01 01   ]
Dec 08 16:15:32.60: [29610]: REMOTE NSF "00 00 11 80 00 80 49 10 4D 49 43
52 4F
53 59 53 54 45 4D 53 20 20 20 20 00 4D 00 80 80 C0 06 01 01 01 01"
Dec 08 16:15:32.72: [29610]: --> [26:+FCI:           868 66 22 ]
Dec 08 16:15:32.72: [29610]: REMOTE CSI "868 66 22"
Dec 08 16:15:32.72: [29610]: --> [20:+FIS:1,3,0,2,1,1,0,5]
Dec 08 16:15:32.72: [29610]: --> [2:OK]
Dec 08 16:15:32.72: [29610]: REMOTE best rate 9600 bit/s
Dec 08 16:15:32.72: [29610]: REMOTE max page width 1728 pixels in 215 mm
Dec 08 16:15:32.72: [29610]: REMOTE max unlimited page length
Dec 08 16:15:32.72: [29610]: REMOTE best vres 7.7 line/mm
Dec 08 16:15:32.72: [29610]: REMOTE best format 2-D MR
Dec 08 16:15:32.72: [29610]: REMOTE supports T.30 Annex A, ECM
Dec 08 16:15:32.72: [29610]: REMOTE best 20 ms/scanline
Dec 08 16:15:32.72: [29610]: USE 9600 bit/s
Dec 08 16:15:32.72: [29610]: USE 20 ms/scanline
Dec 08 16:15:32.72: [29610]: SEND file "docq/doc32.ps;01"
Dec 08 16:15:32.72: [29610]: USE page width 1728 pixels in 215 mm
Dec 08 16:15:32.73: [29610]: USE unlimited page length
Dec 08 16:15:32.73: [29610]: USE 7.7 line/mm
Dec 08 16:15:32.73: [29610]: USE 1-D MR
Dec 08 16:15:32.73: [29610]: <-- [23:AT+FIS=1,3,0,2,0,0,0,5\r]
Dec 08 16:15:32.84: [29610]: --> [2:OK]
Dec 08 16:15:32.84: [29610]: <-- [7:AT+FDT\r]
Dec 08 16:15:38.49: [29610]: --> [20:+FCS:1,3,0,2,0,0,0,5]
Dec 08 16:15:39.03: [29610]: --> [7:CONNECT]
Dec 08 16:15:39.03: [29610]: SEND begin page
Dec 08 16:16:13.00: [29610]: SENT 32483 bytes of data
Dec 08 16:16:13.00: [29610]: SEND 1D RTC
Dec 08 16:16:13.00: [29610]: SEND end page
Dec 08 16:16:13.00: [29610]: SEND send EOP (no more pages or documents)
Dec 08 16:16:37.62: [29610]: --> [5:ERROR]
Dec 08 16:16:37.62: [29610]: SEND recv RTN (retrain negative)
Dec 08 16:16:37.62: [29610]: <-- [7:AT+FDT\r]
Dec 08 16:16:43.27: [29610]: --> [20:+FCS:1,3,0,2,0,0,0,5]
Dec 08 16:16:43.81: [29610]: --> [7:CONNECT]
Dec 08 16:16:43.81: [29610]: SEND begin page
Dec 08 16:17:17.78: [29610]: SENT 32483 bytes of data
Dec 08 16:17:17.78: [29610]: SEND 1D RTC
Dec 08 16:17:17.78: [29610]: SEND end page
Dec 08 16:17:17.78: [29610]: SEND send EOP (no more pages or documents)
Dec 08 16:17:42.40: [29610]: --> [5:ERROR]
Dec 08 16:17:42.40: [29610]: SEND recv RTN (retrain negative)
Dec 08 16:17:42.40: [29610]: <-- [7:AT+FDT\r]
Dec 08 16:17:48.06: [29610]: --> [20:+FCS:1,3,0,2,0,0,0,5]
Dec 08 16:17:48.59: [29610]: --> [7:CONNECT]
Dec 08 16:17:48.59: [29610]: SEND begin page
Dec 08 16:18:22.56: [29610]: SENT 32483 bytes of data
Dec 08 16:18:22.56: [29610]: SEND 1D RTC
Dec 08 16:18:22.56: [29610]: SEND end page
Dec 08 16:18:22.56: [29610]: SEND send EOP (no more pages or documents)
Dec 08 16:18:47.18: [29610]: --> [5:ERROR]
Dec 08 16:18:47.18: [29610]: SEND recv RTN (retrain negative)
Dec 08 16:18:47.18: [29610]: <-- [7:AT+FKS\r]
Dec 08 16:18:48.63: [29610]: --> [7:+FHS:02]
Dec 08 16:18:48.63: [29610]: REMOTE HANGUP: Call aborted,  from +FK or <CAN>
(code 2)
Dec 08 16:18:48.63: [29610]: --> [5:ERROR]
Dec 08 16:18:48.63: [29610]: MODEM Command error
Dec 08 16:18:48.63: [29610]: <-- [5:ATH0\r]
Dec 08 16:18:48.82: [29610]: --> [10:NO CARRIER]
Dec 08 16:18:48.82: [29610]: MODEM No carrier
Dec 08 16:18:48.82: [29610]: SESSION END

A bus station is where a bus stops. A train station is where 
a train stops. On my desk I have a work station... 
(Author unknown)

| Artur Uszynski                            | e-mail adresses:
| Optimum Distribution Sp. z o.o.           | arus@opt.com.pl
| ul. Poleczki 21, 02-822 Warszaw, Poland   | arus@polbox.com
| tel. +48225451441, fax +48225451403       | arus@friko.onet.pl

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Alex Paprottka" <alex@paprottka.com>
To: <flexfax@sgi.com>
Subject: flexfax: US Robotics Sportster VI class C error
Date: Fri, 11 Dec 1998 11:53:27 +0100
Sender: owner-flexfax@celestial.com

my system: Hylafax Version 4.0pl2, Linux Suse 5.2,
modem:  US Robotics Sportster VI (class 2.0)

problem_description: When receiving faxes with "hylafax" i'am getting the
following error messages:

Dec 01 15:19:18.61: [  163]: SESSION BEGIN 00001206 4940867409
Dec 01 15:19:18.61: [  163]: <-- [4:ATA\r]
Dec 01 15:19:31.83: [  163]: --> [4:+FCO]
Dec 01 15:19:31.83: [  163]: ANSWER: FAX CONNECTION
Dec 01 15:19:31.83: [  163]: MODEM input buffering enabled
Dec 01 15:19:31.83: [  163]: RECV FAX: begin
Dec 01 15:19:33.50: [  163]: --> [27:+FTI:"004 01 2500169      "]
Dec 01 15:19:33.50: [  163]: REMOTE TSI "004 01 2500169"
Dec 01 15:19:33.77: [  163]: --> [20:+FCS:0,3,0,2,0,0,0,5]
Dec 01 15:19:33.77: [  163]: REMOTE wants 9600 bit/s
Dec 01 15:19:33.77: [  163]: REMOTE wants page width 1728 pixels in 215 mm
Dec 01 15:19:33.77: [  163]: REMOTE wants unlimited page length
Dec 01 15:19:33.77: [  163]: REMOTE wants 3.85 line/mm
Dec 01 15:19:33.77: [  163]: REMOTE wants 1-D MR
Dec 01 15:19:33.88: [  163]: --> [2:OK]
Dec 01 15:19:33.88: [  163]: <-- [7:AT+FDR\r]
Dec 01 15:19:35.96: [  163]: --> [20:+FCS:0,3,0,2,0,0,0,5]
Dec 01 15:19:35.96: [  163]: REMOTE wants 9600 bit/s
Dec 01 15:19:35.96: [  163]: REMOTE wants page width 1728 pixels in 215 mm
Dec 01 15:19:35.96: [  163]: REMOTE wants unlimited page length
Dec 01 15:19:35.96: [  163]: REMOTE wants 3.85 line/mm
Dec 01 15:19:35.96: [  163]: REMOTE wants 1-D MR
Dec 01 15:19:38.17: [  163]: --> [7:CONNECT]
Dec 01 15:19:38.17: [  163]: RECV: begin page
Dec 01 15:19:38.17: [  163]: RECV: send trigger 022
Dec 01 15:19:38.17: [  163]: <-- data [1]
Dec 01 15:20:06.30: [  163]: RECV: 38 total lines, 37 bad lines, 37
consecutive bad lines
Dec 01 15:20:06.30: [  163]: --> [15:+FPS:1,69,0,0,0]
Dec 01 15:20:07.59: [  163]: --> [6:+FET:2]
Dec 01 15:20:07.59: [  163]: RECV recv EOP (no more pages or documents)
Dec 01 15:20:07.59: [  163]: --> [2:OK]
Dec 01 15:20:07.59: [  163]: RECV: REJECT page quality, 2% good lines (95%
required)
Dec 01 15:20:07.59: [  163]: RECV send RTN (retrain negative)
Dec 01 15:20:07.59: [  163]: <-- [9:AT+FPS=2\r]
Dec 01 15:20:07.74: [  163]: --> [5:ERROR]
Dec 01 15:20:07.74: [  163]: MODEM Command error
Dec 01 15:20:07.74: [  163]: REMOTE HANGUP: Unspecified Phase C error,
including too much delay between TCF and +FDR command (code 90)
Dec 01 15:20:07.74: [  163]: RECV FAX (00001206): recvq/fax00730.tif from
004 01 2500169, route to <unspecified>, 0 pages in 0:36
Dec 01 15:20:07.75: [  163]: RECV FAX: Unspecified Phase C error, including
too much delay between TCF and +FDR command
Dec 01 15:20:07.75: [  163]: <-- [7:AT+FKS\r]
Dec 01 15:20:09.29: [  163]: --> [7:+FHS:02]
Dec 01 15:20:09.29: [  163]: REMOTE HANGUP: Call aborted,  from +FK or <CAN>
(code 2)
Dec 01 15:20:09.29: [  163]: --> [2:OK]
Dec 01 15:20:09.29: [  163]: RECV FAX (00001206): session with 004 01
2500169 terminated abnormally: Unspecified Phase C error, including too much
delay between TCF and +FDR command
Dec 01 15:20:09.29: [  163]: RECV FAX: bin/faxrcvd "recvq/fax00730.tif"
"ttyS1" "00001206" "Unspecified Phase C error, including too much delay
between TCF and +FDR command"
Dec 01 15:20:09.92: [  163]: RECV FAX: end
Dec 01 15:20:09.92: [  163]: SESSION END


It seems to me that this is a software problem. Does anybody have a
suggestion on how to solve it.

Alexander Paprottka
alex@paprottka.com

____________________________
GEBR. PAPROTTKA GMBH
POB 770, 22587 Hamburg
Phone: +49 40 863916
Fax: +49 40 867409
http://www.paprottka.com
____________________________

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Sun, 13 Dec 1998 00:05:51 -0800 (PST)
From: Torsten Mueller <archesoft@yahoo.com>
Reply-To: torsten@xtremeweb.de
Subject: Re: flexfax: US Robotics Sportster VI class C error
To: Alex Paprottka <alex@paprottka.com>
Cc: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

Hello! 
My 2cents to this problem :
1. I think, the the usr doesn`t support quality check 
2. the command for the usr to make the RTN doesn`t seem to work.

My suggestion for you is to kick off the quality check and look what
happens now.

But, ... only my 2 cents

Torsten



---Alex Paprottka <alex@paprottka.com> wrote:
>
...
...

> Dec 01 15:20:07.59: [  163]: RECV: REJECT page quality, 2% good
lines (95%
> required)
> Dec 01 15:20:07.59: [  163]: RECV send RTN (retrain negative)
> Dec 01 15:20:07.59: [  163]: <-- [9:AT+FPS=2\r]
> Dec 01 15:20:07.74: [  163]: --> [5:ERROR]
> Dec 01 15:20:07.74: [  163]: MODEM Command error
> Dec 01 15:20:07.74: [  163]: REMOTE HANGUP: Unspecified Phase C error,
...
_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "KREMMIDAS KLEANTHIS" <kremidas@lrf.gr>
Organization: Lambrakis Research Foundation
To: flexfax@sgi.com
Date: Fri, 11 Dec 1998 16:00:24 +0000
Subject: flexfax: Problem installing HylaFAX at Slackware 3.5
Reply-to: kremidas@lrf.gr
Sender: owner-flexfax@celestial.com

Hello to all,

I'm trying to install HylaFAX 4.0 pl2 on my Slackware machine with 
kernel 2.0.34.
The output from gcc -v follows:
#Reading specs from /usr/lib/gcc-lib/i586-pc-linux-gnulibc1/egcs-
2.90.29/specs
gcc version egcs-2.90.29 980515 (egcs-1.0.3 release)

The problem seems that the sendfax program cannot be compiled 
since faxsetup cannot find it and at the compilation an error is 
produced. 
Could someone help me please cause it is something very 
important. What should I do ?? 

Thank you in advance.
Kremmidas Kleanthis
System Administrator at Lambrakis Research Foundation (L.R.F)
E-mail  : Kremmidas.Kleanthis@lrf.gr
          kremmidas@yahoo.com
          kremidas@hotmail.com
          kremidas@hellug.gr
Phone   : (+301) 3311848
Fax     : (+301) 3230668
Address : 3 Paparigopoulou st, 10561, Athens, Greece (GR)
        

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 11 Dec 1998 23:57:47 +0000 (GMT)
From: "Mark Wilson (P. Kay Associates Ltd.)" <percy@woodrow.demon.co.uk>
To: KREMMIDAS KLEANTHIS <kremidas@lrf.gr>
cc: flexfax@sgi.com
Subject: Re: flexfax: Problem installing HylaFAX at Slackware 3.5
Sender: owner-flexfax@celestial.com

Hi,

I've attached a variation of a patch I found at Nico Kadel-Garcia's web
site. I'd guess that it's also at www.hylafax.org. Put the patch in the
parent directory of the hylafax distribution - the directory that contains
hylafax-v4.0pl2. Ensure this is a fresh distribution, not one you've been
fiddling with. Then :
patch <hy_slack_ecgs.patch >p.out 2>p.err

Examine p.out & p.err to verify all hunks succeeded. If OK, build hylafax
as per README.

I've used this patch with Slackware 3.5 (kernel 2.0.34) several times,
most recently today, with success. 

Take it easy,

Mark Wilson

P. Kay Associates Ltd.


On Fri, 11 Dec 1998, KREMMIDAS KLEANTHIS wrote:

> Hello to all,
> 
> I'm trying to install HylaFAX 4.0 pl2 on my Slackware machine with 
> kernel 2.0.34.
> The output from gcc -v follows:
> #Reading specs from /usr/lib/gcc-lib/i586-pc-linux-gnulibc1/egcs-
> 2.90.29/specs
> gcc version egcs-2.90.29 980515 (egcs-1.0.3 release)
> 
> The problem seems that the sendfax program cannot be compiled 
> since faxsetup cannot find it and at the compilation an error is 
> produced. 
> Could someone help me please cause it is something very 
> important. What should I do ?? 
> 
> Thank you in advance.
> Kremmidas Kleanthis
> System Administrator at Lambrakis Research Foundation (L.R.F)
> E-mail  : Kremmidas.Kleanthis@lrf.gr
>           kremmidas@yahoo.com
>           kremidas@hotmail.com
>           kremidas@hellug.gr
> Phone   : (+301) 3311848
> Fax     : (+301) 3230668
> Address : 3 Paparigopoulou st, 10561, Athens, Greece (GR)
>         
> 
diff -cr hylafax-v4.0pl2/hfaxd/FileSystem.c++ hylafax-v4.0pl2.new/hfaxd/FileSystem.c++
*** hylafax-v4.0pl2/hfaxd/FileSystem.c++	Sat Feb 14 21:50:01 1998
--- hylafax-v4.0pl2.new/hfaxd/FileSystem.c++	Fri Feb 20 14:43:48 1998
***************
*** 139,202 ****
  SpoolDir HylaFAXServer::dirs[] = {
  { "/status/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   HylaFAXServer::listStatus,	HylaFAXServer::listStatusFile,
!   HylaFAXServer::nlstStatus,	HylaFAXServer::nlstUnixFile, },
  { "/sendq/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleSendQFile,
!   HylaFAXServer::listSendQ,	HylaFAXServer::listSendQFile,
!   HylaFAXServer::nlstSendQ,	HylaFAXServer::nlstSendQFile, },
  { "/doneq/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleSendQFile,
!   HylaFAXServer::listSendQ,	HylaFAXServer::listSendQFile,
!   HylaFAXServer::nlstSendQ,	HylaFAXServer::nlstSendQFile, },
  { "/docq/",	FALSE,  TRUE,  TRUE, 0,
    HylaFAXServer::isVisibleDocQFile,
!   HylaFAXServer::listDirectory,	HylaFAXServer::listUnixFile,
!   HylaFAXServer::nlstDirectory,	HylaFAXServer::nlstUnixFile, },
  { "/tmp/",	FALSE,  TRUE,  TRUE, 0,
    HylaFAXServer::isVisibleTRUE,
!   HylaFAXServer::listDirectory,	HylaFAXServer::listUnixFile,
!   HylaFAXServer::nlstDirectory,	HylaFAXServer::nlstUnixFile, },
  { "/log/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   HylaFAXServer::listDirectory,	HylaFAXServer::listUnixFile,
!   HylaFAXServer::nlstDirectory,	HylaFAXServer::nlstUnixFile, },
  { "/recvq/",	FALSE, FALSE,  TRUE, 0,
    HylaFAXServer::isVisibleRecvQFile,
!   HylaFAXServer::listRecvQ,	HylaFAXServer::listRecvQFile,
!   HylaFAXServer::nlstDirectory,	HylaFAXServer::nlstUnixFile, },
  { "/archive/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   HylaFAXServer::listDirectory,	HylaFAXServer::listUnixFile,
!   HylaFAXServer::nlstDirectory,	HylaFAXServer::nlstUnixFile, },
  { "/pollq/",	FALSE,  TRUE,  TRUE, 0,
    HylaFAXServer::isVisibleRecvQFile,
!   HylaFAXServer::listRecvQ,	HylaFAXServer::listRecvQFile,
!   HylaFAXServer::nlstDirectory,	HylaFAXServer::nlstUnixFile, },
  { "/",		FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleRootFile,
!   HylaFAXServer::listDirectory,	HylaFAXServer::listUnixFile,
!   HylaFAXServer::nlstDirectory,	HylaFAXServer::nlstUnixFile, },
  { "/etc/",	 TRUE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   HylaFAXServer::listDirectory,	HylaFAXServer::listUnixFile,
!   HylaFAXServer::nlstDirectory,	HylaFAXServer::nlstUnixFile, },
  { "/info/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   HylaFAXServer::listDirectory,	HylaFAXServer::listUnixFile,
!   HylaFAXServer::nlstDirectory,	HylaFAXServer::nlstUnixFile, },
  { "/bin/",	 TRUE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   HylaFAXServer::listDirectory,	HylaFAXServer::listUnixFile,
!   HylaFAXServer::nlstDirectory,	HylaFAXServer::nlstUnixFile, },
  { "/config/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   HylaFAXServer::listDirectory,	HylaFAXServer::listUnixFile,
!   HylaFAXServer::nlstDirectory,	HylaFAXServer::nlstUnixFile, },
  { "/client/",	 TRUE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   HylaFAXServer::listDirectory,	HylaFAXServer::listUnixFile,
!   HylaFAXServer::nlstDirectory,	HylaFAXServer::nlstUnixFile, },
  };
  #define	N(a)	(sizeof (a) / sizeof (a[0]))
  
--- 139,202 ----
  SpoolDir HylaFAXServer::dirs[] = {
  { "/status/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   &HylaFAXServer::listStatus,	&HylaFAXServer::listStatusFile,
!   &HylaFAXServer::nlstStatus,	&HylaFAXServer::nlstUnixFile, },
  { "/sendq/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleSendQFile,
!   &HylaFAXServer::listSendQ,	&HylaFAXServer::listSendQFile,
!   &HylaFAXServer::nlstSendQ,	&HylaFAXServer::nlstSendQFile, },
  { "/doneq/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleSendQFile,
!   &HylaFAXServer::listSendQ,	&HylaFAXServer::listSendQFile,
!   &HylaFAXServer::nlstSendQ,	&HylaFAXServer::nlstSendQFile, },
  { "/docq/",	FALSE,  TRUE,  TRUE, 0,
    HylaFAXServer::isVisibleDocQFile,
!   &HylaFAXServer::listDirectory,	&HylaFAXServer::listUnixFile,
!   &HylaFAXServer::nlstDirectory,	&HylaFAXServer::nlstUnixFile, },
  { "/tmp/",	FALSE,  TRUE,  TRUE, 0,
    HylaFAXServer::isVisibleTRUE,
!   &HylaFAXServer::listDirectory,	&HylaFAXServer::listUnixFile,
!   &HylaFAXServer::nlstDirectory,	&HylaFAXServer::nlstUnixFile, },
  { "/log/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   &HylaFAXServer::listDirectory,	&HylaFAXServer::listUnixFile,
!   &HylaFAXServer::nlstDirectory,	&HylaFAXServer::nlstUnixFile, },
  { "/recvq/",	FALSE, FALSE,  TRUE, 0,
    HylaFAXServer::isVisibleRecvQFile,
!   &HylaFAXServer::listRecvQ,	&HylaFAXServer::listRecvQFile,
!   &HylaFAXServer::nlstDirectory,	&HylaFAXServer::nlstUnixFile, },
  { "/archive/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   &HylaFAXServer::listDirectory,	&HylaFAXServer::listUnixFile,
!   &HylaFAXServer::nlstDirectory,	&HylaFAXServer::nlstUnixFile, },
  { "/pollq/",	FALSE,  TRUE,  TRUE, 0,
    HylaFAXServer::isVisibleRecvQFile,
!   &HylaFAXServer::listRecvQ,	&HylaFAXServer::listRecvQFile,
!   &HylaFAXServer::nlstDirectory,	&HylaFAXServer::nlstUnixFile, },
  { "/",		FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleRootFile,
!   &HylaFAXServer::listDirectory,	&HylaFAXServer::listUnixFile,
!   &HylaFAXServer::nlstDirectory,	&HylaFAXServer::nlstUnixFile, },
  { "/etc/",	 TRUE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   &HylaFAXServer::listDirectory,	&HylaFAXServer::listUnixFile,
!   &HylaFAXServer::nlstDirectory,	&HylaFAXServer::nlstUnixFile, },
  { "/info/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   &HylaFAXServer::listDirectory,	&HylaFAXServer::listUnixFile,
!   &HylaFAXServer::nlstDirectory,	&HylaFAXServer::nlstUnixFile, },
  { "/bin/",	 TRUE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   &HylaFAXServer::listDirectory,	&HylaFAXServer::listUnixFile,
!   &HylaFAXServer::nlstDirectory,	&HylaFAXServer::nlstUnixFile, },
  { "/config/",	FALSE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   &HylaFAXServer::listDirectory,	&HylaFAXServer::listUnixFile,
!   &HylaFAXServer::nlstDirectory,	&HylaFAXServer::nlstUnixFile, },
  { "/client/",	 TRUE, FALSE, FALSE, 0,
    HylaFAXServer::isVisibleTRUE,
!   &HylaFAXServer::listDirectory,	&HylaFAXServer::listUnixFile,
!   &HylaFAXServer::nlstDirectory,	&HylaFAXServer::nlstUnixFile, },
  };
  #define	N(a)	(sizeof (a) / sizeof (a[0]))
  
diff -cr hylafax-v4.0pl2/hfaxd/OldProtocol.c++ hylafax-v4.0pl2.new/hfaxd/OldProtocol.c++
*** hylafax-v4.0pl2/hfaxd/OldProtocol.c++	Sat Feb 14 21:50:07 1998
--- hylafax-v4.0pl2.new/hfaxd/OldProtocol.c++	Fri Feb 20 14:33:30 1998
***************
*** 220,257 ****
  
  // NB: there is no support for the old style data transfer
  const OldProtocolServer::protoCmd OldProtocolServer::cmds[] = {
! { "begin",		TRUE,	OldProtocolServer::submitJob },
! { "checkPerm",		TRUE,	OldProtocolServer::ackPermission },
! { "tiff",		TRUE,	OldProtocolServer::getTIFFData },
! { "postscript",		TRUE,	OldProtocolServer::getPostScriptData },
! { "zpostscript",	TRUE,	OldProtocolServer::getZPostScriptData },
! { "opaque",		TRUE,	OldProtocolServer::getOpaqueData },
! { "zopaque",		TRUE,	OldProtocolServer::getZOpaqueData },
! { "poll",		TRUE,	OldProtocolServer::newPollID },
! { "userID",		FALSE,	OldProtocolServer::setUserID },
! { "version",		FALSE,	OldProtocolServer::setProtoVersion },
! { "serverStatus",	FALSE,	OldProtocolServer::sendServerStatus },
! { "serverInfo",		FALSE,	OldProtocolServer::sendServerInfo },
! { "allStatus",		FALSE,	OldProtocolServer::sendAllStatus },
! { "userStatus",		FALSE,	OldProtocolServer::sendUserStatus },
! { "jobStatus",		FALSE,	OldProtocolServer::sendJobStatus },
! { "recvStatus",		FALSE,	OldProtocolServer::sendRecvStatus },
! { "remove",		TRUE,	OldProtocolServer::removeJob },
! { "removeGroup",	TRUE,	OldProtocolServer::removeJobGroup },
! { "kill",		TRUE,	OldProtocolServer::killJob },
! { "killGroup",		TRUE,	OldProtocolServer::killJobGroup },
! { "alterTTS",		TRUE,	OldProtocolServer::alterJobTTS },
! { "alterGroupTTS",	TRUE,	OldProtocolServer::alterJobGroupTTS },
! { "alterKillTime",	TRUE,	OldProtocolServer::alterJobKillTime },
! { "alterGroupKillTime",	TRUE,	OldProtocolServer::alterJobGroupKillTime },
! { "alterMaxDials",	TRUE,	OldProtocolServer::alterJobMaxDials },
! { "alterGroupMaxDials",	TRUE,	OldProtocolServer::alterJobGroupMaxDials },
! { "alterNotify",	TRUE,	OldProtocolServer::alterJobNotification },
! { "alterGroupNotify",	TRUE,	OldProtocolServer::alterJobGroupNotification },
! { "alterModem",		TRUE,	OldProtocolServer::alterJobModem },
! { "alterGroupModem",	TRUE,	OldProtocolServer::alterJobGroupModem },
! { "alterPriority",	TRUE,	OldProtocolServer::alterJobPriority },
! { "alterGroupPriority",	TRUE,	OldProtocolServer::alterJobGroupPriority },
  };
  #define	NCMDS	(sizeof (cmds) / sizeof (cmds[0]))
  
--- 220,257 ----
  
  // NB: there is no support for the old style data transfer
  const OldProtocolServer::protoCmd OldProtocolServer::cmds[] = {
! { "begin",		TRUE,	&OldProtocolServer::submitJob },
! { "checkPerm",		TRUE,	&OldProtocolServer::ackPermission },
! { "tiff",		TRUE,	&OldProtocolServer::getTIFFData },
! { "postscript",		TRUE,	&OldProtocolServer::getPostScriptData },
! { "zpostscript",	TRUE,	&OldProtocolServer::getZPostScriptData },
! { "opaque",		TRUE,	&OldProtocolServer::getOpaqueData },
! { "zopaque",		TRUE,	&OldProtocolServer::getZOpaqueData },
! { "poll",		TRUE,	&OldProtocolServer::newPollID },
! { "userID",		FALSE,	&OldProtocolServer::setUserID },
! { "version",		FALSE,	&OldProtocolServer::setProtoVersion },
! { "serverStatus",	FALSE,	&OldProtocolServer::sendServerStatus },
! { "serverInfo",		FALSE,	&OldProtocolServer::sendServerInfo },
! { "allStatus",		FALSE,	&OldProtocolServer::sendAllStatus },
! { "userStatus",		FALSE,	&OldProtocolServer::sendUserStatus },
! { "jobStatus",		FALSE,	&OldProtocolServer::sendJobStatus },
! { "recvStatus",		FALSE,	&OldProtocolServer::sendRecvStatus },
! { "remove",		TRUE,	&OldProtocolServer::removeJob },
! { "removeGroup",	TRUE,	&OldProtocolServer::removeJobGroup },
! { "kill",		TRUE,	&OldProtocolServer::killJob },
! { "killGroup",		TRUE,	&OldProtocolServer::killJobGroup },
! { "alterTTS",		TRUE,	&OldProtocolServer::alterJobTTS },
! { "alterGroupTTS",	TRUE,	&OldProtocolServer::alterJobGroupTTS },
! { "alterKillTime",	TRUE,	&OldProtocolServer::alterJobKillTime },
! { "alterGroupKillTime",	TRUE,	&OldProtocolServer::alterJobGroupKillTime },
! { "alterMaxDials",	TRUE,	&OldProtocolServer::alterJobMaxDials },
! { "alterGroupMaxDials",	TRUE,	&OldProtocolServer::alterJobGroupMaxDials },
! { "alterNotify",	TRUE,	&OldProtocolServer::alterJobNotification },
! { "alterGroupNotify",	TRUE,	&OldProtocolServer::alterJobGroupNotification },
! { "alterModem",		TRUE,	&OldProtocolServer::alterJobModem },
! { "alterGroupModem",	TRUE,	&OldProtocolServer::alterJobGroupModem },
! { "alterPriority",	TRUE,	&OldProtocolServer::alterJobPriority },
! { "alterGroupPriority",	TRUE,	&OldProtocolServer::alterJobGroupPriority },
  };
  #define	NCMDS	(sizeof (cmds) / sizeof (cmds[0]))
  
***************
*** 604,612 ****
  
  #define	DEFINE_Alter(param)						\
  void OldProtocolServer::alterJob##param(const char* tag)		\
!     { applyToJob(tag, "alter", OldProtocolServer::reallyAlterJob##param); }\
  void OldProtocolServer::alterJobGroup##param(const char* tag)		\
!     { applyToJobGroup(tag, "alter", OldProtocolServer::reallyAlterJob##param); }
  
  fxBool
  OldProtocolServer::alterSuspend(Job& job)
--- 604,612 ----
  
  #define	DEFINE_Alter(param)						\
  void OldProtocolServer::alterJob##param(const char* tag)		\
!     { applyToJob(tag, "alter", &OldProtocolServer::reallyAlterJob##param); }\
  void OldProtocolServer::alterJobGroup##param(const char* tag)		\
!     { applyToJobGroup(tag, "alter", &OldProtocolServer::reallyAlterJob##param); }
  
  fxBool
  OldProtocolServer::alterSuspend(Job& job)
***************
*** 752,760 ****
  
  #define	DEFINE_Op(op)						\
  void OldProtocolServer::##op##Job(const char* tag)		\
!     { applyToJob(tag, fxQUOTE(op), OldProtocolServer::do##op); }\
  void OldProtocolServer::##op##JobGroup(const char* tag)		\
!     { applyToJobGroup(tag, fxQUOTE(op), OldProtocolServer::do##op); }
  void
  OldProtocolServer::doremove(Job& job, const char*)
  {
--- 752,760 ----
  
  #define	DEFINE_Op(op)						\
  void OldProtocolServer::##op##Job(const char* tag)		\
!     { applyToJob(tag, fxQUOTE(op), &OldProtocolServer::do##op); }\
  void OldProtocolServer::##op##JobGroup(const char* tag)		\
!     { applyToJobGroup(tag, fxQUOTE(op), &OldProtocolServer::do##op); }
  void
  OldProtocolServer::doremove(Job& job, const char*)
  {
diff -cr hylafax-v4.0pl2/util/SendFaxClient.c++ hylafax-v4.0pl2.new/util/SendFaxClient.c++
*** hylafax-v4.0pl2/util/SendFaxClient.c++	Sat Feb 14 21:47:24 1998
--- hylafax-v4.0pl2.new/util/SendFaxClient.c++	Thu Feb 19 22:32:01 1998
***************
*** 457,467 ****
  	if (info.rule->getResult() == TypeRule::TIFF) {
  	    fileSent = setFormat(FORM_TIFF)
  		    && setType(TYPE_I)
! 		    && sendData(fd, FaxClient::storeTemp, info.doc, emsg);
  	} else {
  	    fileSent = setFormat(FORM_PS)
  	    	    && setType(TYPE_I)		// XXX TYPE_A???
! 		    && sendZData(fd, FaxClient::storeTemp, info.doc, emsg);
  	}
  	Sys::close(fd);
  	if (!fileSent) {
--- 457,467 ----
  	if (info.rule->getResult() == TypeRule::TIFF) {
  	    fileSent = setFormat(FORM_TIFF)
  		    && setType(TYPE_I)
! 		    && sendData(fd, &FaxClient::storeTemp, info.doc, emsg);
  	} else {
  	    fileSent = setFormat(FORM_PS)
  	    	    && setType(TYPE_I)		// XXX TYPE_A???
! 		    && sendZData(fd, &FaxClient::storeTemp, info.doc, emsg);
  	}
  	Sys::close(fd);
  	if (!fileSent) {
diff -cr hylafax-v4.0pl2/util/SendFaxJob.c++ hylafax-v4.0pl2.new/util/SendFaxJob.c++
*** hylafax-v4.0pl2/util/SendFaxJob.c++	Sat Feb 14 21:47:24 1998
--- hylafax-v4.0pl2.new/util/SendFaxJob.c++	Fri Feb 20 15:38:37 1998
***************
*** 496,502 ****
  	fxBool fileSent = 
  	       client.setFormat(FaxClient::FORM_PS)
  	    && client.setType(FaxClient::TYPE_I)	// XXX??? TYPE_A
! 	    && client.sendZData(fd, FaxClient::storeTemp, coverDoc, emsg);
  	Sys::close(fd);
  	if (!fileSent) {
  	    if (emsg == "")
--- 496,502 ----
  	fxBool fileSent = 
  	       client.setFormat(FaxClient::FORM_PS)
  	    && client.setType(FaxClient::TYPE_I)	// XXX??? TYPE_A
! 	    && client.sendZData(fd, &FaxClient::storeTemp, coverDoc, emsg);
  	Sys::close(fd);
  	if (!fileSent) {
  	    if (emsg == "")
diff -cr hylafax-v4.0pl2/util/faxconfig.c hylafax-v4.0pl2.new/util/faxconfig.c
*** hylafax-v4.0pl2/util/faxconfig.c	Sat Feb 14 21:47:57 1998
--- hylafax-v4.0pl2.new/util/faxconfig.c	Thu Feb 19 22:36:32 1998
***************
*** 51,57 ****
  
  extern	int cvtFacility(const char*, int*);
  
! void
  main(int argc, char** argv)
  {
      extern int optind;
--- 51,57 ----
  
  extern	int cvtFacility(const char*, int*);
  
! int
  main(int argc, char** argv)
  {
      extern int optind;
***************
*** 123,127 ****
  	} while ((optind += 2) < argc);
  	(void) close(fifo);
      }
!     exit(0);
  }
--- 123,127 ----
  	} while ((optind += 2) < argc);
  	(void) close(fifo);
      }
!    return 0;
  }
diff -cr hylafax-v4.0pl2/util/faxmodem.c hylafax-v4.0pl2.new/util/faxmodem.c
*** hylafax-v4.0pl2/util/faxmodem.c	Sat Feb 14 21:47:57 1998
--- hylafax-v4.0pl2.new/util/faxmodem.c	Fri Feb 20 14:14:00 1998
***************
*** 186,192 ****
  
  extern	int cvtFacility(const char*, int*);
  
! void
  main(int argc, char** argv)
  {
      extern int optind;
--- 186,192 ----
  
  extern	int cvtFacility(const char*, int*);
  
! int
  main(int argc, char** argv)
  {
      extern int optind;
***************
*** 261,265 ****
  	fatal("%s: FIFO write failed for command (%s)",
  	    argv[0], strerror(errno));
      (void) close(fifo);
!     exit(0);
  }
--- 261,265 ----
  	fatal("%s: FIFO write failed for command (%s)",
  	    argv[0], strerror(errno));
      (void) close(fifo);
!     return 0;
  }
diff -cr hylafax-v4.0pl2/util/faxmsg.c hylafax-v4.0pl2.new/util/faxmsg.c
*** hylafax-v4.0pl2/util/faxmsg.c	Sat Feb 14 21:47:58 1998
--- hylafax-v4.0pl2.new/util/faxmsg.c	Thu Feb 19 22:34:45 1998
***************
*** 50,56 ****
  
  extern	int cvtFacility(const char*, int*);
  
! void
  main(int argc, char** argv)
  {
      extern int optind;
--- 50,56 ----
  
  extern	int cvtFacility(const char*, int*);
  
! int
  main(int argc, char** argv)
  {
      extern int optind;
***************
*** 127,131 ****
      if (write(fifo, cmd, strlen(cmd)) != strlen(cmd))
  	fatal("FIFO write failed for command (%s)", strerror(errno));
      (void) close(fifo);
!     exit(0);
  }
--- 127,131 ----
      if (write(fifo, cmd, strlen(cmd)) != strlen(cmd))
  	fatal("FIFO write failed for command (%s)", strerror(errno));
      (void) close(fifo);
!     return 0;
  }
diff -cr hylafax-v4.0pl2/util/faxstate.c hylafax-v4.0pl2.new/util/faxstate.c
*** hylafax-v4.0pl2/util/faxstate.c	Sat Feb 14 21:47:58 1998
--- hylafax-v4.0pl2.new/util/faxstate.c	Fri Feb 20 20:07:23 1998
***************
*** 72,78 ****
      return (NULL);
  }
  
! void
  main(int argc, char** argv)
  {
      extern int optind;
--- 72,78 ----
      return (NULL);
  }
  
! int
  main(int argc, char** argv)
  {
      extern int optind;
***************
*** 140,144 ****
  	    fatal("FIFO write failed for command (%s)", strerror(errno));
      }
      (void) close(fifo);
!     exit(0);
  }
--- 140,144 ----
  	    fatal("FIFO write failed for command (%s)", strerror(errno));
      }
      (void) close(fifo);
!     return 0;
  }
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: Problem installing HylaFAX at Slackware 3.5
To: kremidas@lrf.gr
Date: Sat, 12 Dec 1998 11:46:23 +0000 (GMT)
Cc: flexfax@sgi.com
X-Mailer: ELM [version 2.4 PL25]
Sender: owner-flexfax@celestial.com

> The problem seems that the sendfax program cannot be compiled 
> since faxsetup cannot find it and at the compilation an error is 
> produced. 

You have cause and effect the wrong way round.

> Could someone help me please cause it is something very 
> important. What should I do ?? 

You should have included the compilation error messages, however this
is probably the error that the egcs patch fixes.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "KREMMIDAS KLEANTHIS" <kremidas@lrf.gr>
Organization: Lambrakis Research Foundation
To: flexfax@sgi.com
Date: Mon, 14 Dec 1998 13:48:07 +0000
Subject: flexfax: The Problem on installing HylaFAX at Slackware 3.5 continues
Reply-to: kremidas@lrf.gr
Sender: owner-flexfax@celestial.com

Hello again,

Thanks everyone that replied to my message. I've installed the gcc-
2.8.x.patch on a fresh distribution but the same errors continue.
The errors produced during make are attached. 
I've appreciate any help.

Thank you in advace

Kremmidas Kleanthis
System Administrator at Lambrakis Research Foundation (L.R.F)
E-mail  : Kremmidas.Kleanthis@lrf.gr
          kremmidas@yahoo.com
          kremidas@hotmail.com
          kremidas@hellug.gr
Phone   : (+301) 3311848
Fax     : (+301) 3230668
Address : 3 Paparigopoulou st, 10561, Athens, Greece (GR)
        
The following section of this message contains a file attachment
prepared for transmission using the Internet MIME message format.
If you are using Pegasus Mail, or any another MIME-compliant system,
you should be able to save it or view it from within your mailer.
If you cannot, please ask your system administrator for assistance.

   ---- File information -----------
     File:  make.err
     Date:  14 Dec 1998, 13:47
     Size:  10895 bytes.
     Type:  Unknown

Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\make.err"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 11 Dec 1998 09:03:50 -0600
From: Tim Kelley <tpkelley@winkinc.com>
X-Accept-Language: en
To: flexfax@sgi.com
Subject: Re: flexfax: TIF format used by hylafax ... <?>
Sender: owner-flexfax@celestial.com



David Woolley wrote:
> 
> > We use an OCR program to convert incoming faxes to text ... for some
> > reason this program cannot read all of the files which hylafax creates
> > (but it does read some of them).  This seems random.
> >
> > I know the program only reads class 2-4 TIFF files; is this compatible
>                                 ^^^^^^^^^^
> I don't think there is any such thing! (but might copy of the TIFF
> spec is too deeply buried to check quickly).

I realized what the problem is - the OCR program needs the images (be
they TIFF or whatever) to be in at least 200 dpi and many faxes come in
at 150 dpi; of course I can't stop people from sending faxes at 150
dpi.  Of course the error messages did not even hint that that was the
problem. (stupid windows program).


> I would expect any OCR program to cope with fax coded (i.e. classs F)
> TIFF files, but maybe not all of the suboptions.  However, there are
> tools as part of the TIFF package, which is a pre-requesite for Hylafax,
> that will convert between different TIFF subtypes.


However, does anyone know of a (linux) utility to increase dpi of
images?  Perhaps I could have faxrcvd process it with that before
sending?  Thanks for your advice!
Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\tpkelley1.vcf"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: TIF format used by hylafax ... <?>
To: tpkelley@winkinc.com (Tim Kelley)
Date: Sat, 12 Dec 1998 11:21:17 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> I realized what the problem is - the OCR program needs the images (be
> they TIFF or whatever) to be in at least 200 dpi and many faxes come in
> at 150 dpi; of course I can't stop people from sending faxes at 150

Faxes are by default at 98 x 196 dpi (assymetric) and at 196 x 196
in fine mode.  They are never anywhere near 150 and never as high as 200.

> dpi.  Of course the error messages did not even hint that that was the
> problem. (stupid windows program).

> However, does anyone know of a (linux) utility to increase dpi of
> images?  Perhaps I could have faxrcvd process it with that before
> sending?  Thanks for your advice!

The problem is not Linux specific as any such tools should not do 
anything that is not a generic Unix, or even win32 console mode,
operation.

Convert to pbm, use pnmscale, convert back to TIFF.  This assumes that
there is no simple option on say tiffcp.

You will not add information and if the OCR package is a cheap or 
free one, it may well not be able to cope with the poor quality
of a fax image, especially if it was scanned.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 11 Dec 1998 20:52:39 -0500
From: Don Linnell <dlinnell@ccs-llc.com>
Reply-To: dlinnell@ccs-llc.com
To: flexfax@sgi.com
CC: don.linnell@ihs-inc.com
Subject: flexfax: 2D Encoding
Sender: owner-flexfax@celestial.com

Hi,

I was hoping someone could tell me how to hard code a Multi Tech
(MT2834BR) to 1D encoding for inbound faxes.  If I use 1D, both single
and multi page faxes work fine.  If I receive a 1 page fax in 2D mode it
works fine.  If I receive a multi page fax in 2D mode everything is
blank after the first page.  This is hylafax version is 4.0 pl2 running
on hpux 10.2

PS: I've tried the two settings below>
#config
Use2D:  no    # only seems to work on outbound

#config.dtc01b1p8
Class2DCCQueryCmd:    "!(0,1),(0-3),(0-4),(0-2),(0),(0),(0),(0-7)"    #
no effect

  Thanks
        Don

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: flexfax@sgi.com
Path: not-for-mail
From: Thomas Trueten <thomas_trueten@cyberjunkie.com>
Newsgroups: local.lists.linux.flexfax
Subject: flexfax: email2fax Problem
Date: Sat, 12 Dec 1998 15:34:52 +0100
Organization: Private Site
Lines: 78
NNTP-Posting-Host: pavlov.creep.de
X-Server-Date: 12 Dec 1998 14:34:52 GMT
Sender: owner-flexfax@celestial.com

Hello all,
I've a problem with my sendmail 8.9.1 / Hylafax 4.0 pl2 Installation.
Both runs well tm. Hylafax sends and receives faxes, emails sent to the
sendmail Mailer fax will be transmitted to hylafax. My  problem is an
error in the adress conversion from user@12345678.fax to the recipient
number. The result is "12345678.fax.pavlov" instead of "12345678". So
Hylafax submits this job but won't dial out.

My question: How can I cut the "fax.mydomain" part of this job. I think
its an error in the /etc/mailertable:

# /etc/mailertable
.fax    fax:pavlov

And here's the jobfile:
----
tts:913462258
killtime:913472972
retrytime:0
state:5
npages:0
totpages:0
ntries:0
ndials:0
totdials:0
maxdials:12
tottries:0
maxtries:3
pagewidth:209
resolution:98
pagelength:296
priority:127
schedpri:127
minsp:0
desiredbr:5
desiredst:0
desiredec:1
desireddf:3
desiredtl:0
useccover:1
external:9319406.fax@pavlov
number:9319406.fax@pavlov
mailaddr:thomas_trueten@cyberjunkie.com
sender:thomas_trueten
jobid:13
jobtag:
pagehandling:
modem:any
receiver:tht
company:
location:
cover:
client:pavlov.creep.de
owner:tht
groupid:13
signalrate:
dataformat:
jobtype:facsimile
tagline:
subaddr:
passwd:
doneop:default
commid:
status:
notify:none
pagechop:default
chopthreshold:3
postscript:0::docq/doc13.cover
postscript:0::docq/doc20.ps.13
----

Any hints? TIA.
-- 
Bonan tagon,
Thomas Trueten

 PGP-encrypted Mails welcome, Key on Request (subj: get pgpkey)
PGP Fingerprint: AB 7F 05 74 1A 3C 9D BA 0B 44 C3 BF BC D6 52 94

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Sat, 12 Dec 1998 13:01:35 +0100 (MET)
To: flexfax@sgi.com
FROM: Thomas Trueten <thomas_trueten@cyberjunkie.com>
Subject: flexfax: email2fax Problem
Sender: owner-flexfax@celestial.com

Hello all,
I've a problem with my sendmail 8.9.1 / Hylafax 4.0 pl2 Installation.
Both runs well tm. Hylafax sends and receives faxes, emails sent to the
sendmail Mailer fax will be transmitted to hylafax. My  problem is an
error in the adress conversion from user@12345678.fax to the recipient
number. The result is "12345678.fax.pavlov" instead of "12345678". So
Hylafax submits this job but won't dial out.

My question: How can I cut the "fax.mydomain" part of this job. I think
its an error in the /etc/mailertable:

# /etc/mailertable
.fax    fax:pavlov

And here's the jobfile:
----
tts:913462258
killtime:913472972
retrytime:0
state:5
npages:0
totpages:0
ntries:0
ndials:0
totdials:0
maxdials:12
tottries:0
maxtries:3
pagewidth:209
resolution:98
pagelength:296
priority:127
schedpri:127
minsp:0
desiredbr:5
desiredst:0
desiredec:1
desireddf:3
desiredtl:0
useccover:1
external:9319406.fax@pavlov
number:9319406.fax@pavlov
mailaddr:thomas_trueten@cyberjunkie.com
sender:thomas_trueten
jobid:13
jobtag:
pagehandling:
modem:any
receiver:tht
company:
location:
cover:
client:pavlov.creep.de
owner:tht
groupid:13
signalrate:
dataformat:
jobtype:facsimile
tagline:
subaddr:
passwd:
doneop:default
commid:
status:
notify:none
pagechop:default
chopthreshold:3
postscript:0::docq/doc13.cover
postscript:0::docq/doc20.ps.13
----

Any hints? TIA.


--
Bonan tagon,
Thomas Trueten

 PGP-encrypted Mails welcome, Key on Request (subj: get pgpkey)
PGP Fingerprint: AB 7F 05 74 1A 3C 9D BA 0B 44 C3 BF BC D6 52 94

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: Zdravko Balorda <zdravc@lie.fe.uni-lj.si>
Subject: flexfax: util
To: flexfax@sgi.com
Date: Sat, 12 Dec 1998 17:38:21 +0100 (MET)
X-Organization: Faculty of Electrical Engineering, Ljubljana
X-Dept: Laboratory for Industrial Electronics
X-Dept: Laboratory for CIM
X-Postal: Trzaska 25, SI-1000 Ljubljana, Slovenia
X-Comm: Phone +386 61 1768-265   Fax: +386 61 1264-630
Sender: owner-flexfax@celestial.com

Hi,

I have problems compiling hylafax 4.0pl2
on my slakare 3.5 llinux:
Linux lipsa 2.0.34 #2 Thu Jun 4 22:36:07 PDT 1998 i586 unknown

and gcc:
Reading specs from /usr/lib/gcc-lib/i586-pc-linux-gnulibc1/egcs-2.90.29/specs
gcc version egcs-2.90.29 980515 (egcs-1.0.3 release)

in util directory here is what make reports:

make[1]: Entering directory `/usr/local/src/hylafax-v4.0pl2/util'
/usr/bin/gcc      -I.././zlib			  -D__ANSI_CPP__ -I. -I.. -I.././util -I.././util -I/usr/local/include -I.././regex -g -O -x c++ -c SendFaxJob.c++
SendFaxJob.c++: In method `unsigned char SendFaxJob::createJob(class SendFaxClient &, class fxStr &)':
SendFaxJob.c++:499: no matching function for call to `SendFaxClient::sendZData (int &, unsigned char (FaxClient::)(fxStr &, fxStr &), fxStr &, fxStr &)'
FaxClient.h:273: candidates are: FaxClient::sendZData(int, unsigned char (FaxClient::*)(fxStr &, fxStr &), fxStr &, fxStr &)
make[1]: *** [SendFaxJob.o] Error 1
make[1]: Leaving directory `/usr/local/src/hylafax-v4.0pl2/util'
make: *** [default] Error 2
bash$ 

Sounds like something terrible...
Any help? 
Regards, Zdravko.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: util
To: zdravc@lie.fe.uni-lj.si (Zdravko Balorda)
Date: Sun, 13 Dec 1998 11:33:26 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> Reading specs from /usr/lib/gcc-lib/i586-pc-linux-gnulibc1/egcs-2.90.29/specs
> gcc version egcs-2.90.29 980515 (egcs-1.0.3 release)

Apply the egcs patch (which basically adds &s).

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 14 Dec 1998 08:31:07 +0100
From: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Organization: Transcom
X-Accept-Language: English, en, German, de
To: HylaFax Mailing liste <flexfax@sgi.com>
Subject: Re: flexfax: 2D Encoding
Sender: owner-flexfax@celestial.com

Don Linnell wrote:
> 
> Hi,
> 
> I was hoping someone could tell me how to hard code a Multi Tech
> (MT2834BR) to 1D encoding for inbound faxes.  If I use 1D, both single
> and multi page faxes work fine.  If I receive a 1 page fax in 2D mode it
> works fine.  If I receive a multi page fax in 2D mode everything is
> blank after the first page.  This is hylafax version is 4.0 pl2 running
> on hpux 10.2
> 
> PS: I've tried the two settings below>
> #config
> Use2D:  no    # only seems to work on outbound
> 
> #config.dtc01b1p8
> Class2DCCQueryCmd:    "!(0,1),(0-3),(0-4),(0-2),(0),(0),(0),(0-7)"    #
> no effect
> 
>   Thanks
>         Don
Hi,

as i remember there is an option Use2D, which sould do , what you
want. From the man-page of config :

Use2D-   boolean    Yes      restrict/permit use of 2D-encoded fax data

Uli
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 14 Dec 1998 17:44:02 +0200
From: Eric Smith <eric@eric.nafex.com>
To: flexfax@sgi.com
Subject: flexfax: compressed lines
Reply-To: eric@nafex.com
X-Operating-System: Linux eric 2.0.34
Sender: owner-flexfax@celestial.com

My faxes sent to  certain faxmachines I am getting reports of "squashed" lines.  Some lines
more than others basically making the fax unreadable.

System info:

Linux eric 2.0.34 #2 Thu Dec 3 21:49:40 SAST 1998 i586 unknown
Name        : hylafax  Version     : 4.0pl2 
Modem DAVICOM V.34+/FAX/VOICE/SPEAKERPHONE MODEM    Ver:1.09I
here is my config file - its a bit hacked :7

any pointers much appreciated.

# $Id: class2,v 1.23 1996/06/24 02:58:32 sam Rel $
#
# HylaFAX Facsimile Software
#
# Generic Class 2 modem configuration.
#
# EDIT THIS CONFIGURATION TO REFLECT YOUR SETUP
#
CountryCode:		44
AreaCode:		171
FAXNumber:		44.171.2519462
LongDistancePrefix:	0
InternationalPrefix:	09
DialStringRules:	etc/dialrules
ServerTracing:		1
SessionTracing:		11
RecvFileMode:		0666
LogFileMode:		0666
DeviceMode:		0666
RingsBeforeAnswer:	1
SpeakerVolume:		off
GettyArgs:		"-h %l %s"

LocalIdentifier:	"Fruitcom.com"

TagLineFont:		etc/lutRS18.pcf
TagLineFormat:		"From %%l|%c|Page %%p of %%t"
MaxRecvPages:		25
#
#
# Modem-related stuff: should reflect modem command interface
# and hardware connection/cabling (e.g. flow control).
#
ModemType:		Class2		# use this to supply a hint
ModemRate:		19200		# max rate for DCE-DTE communication
ModemFlowControl:	rtscts		# XON/XOFF flow control assumed
ModemSetupDTRCmd:	AT&D2		# setup so DTR drop resets modem #Fiddled open Fri
#ModemSetupDCDCmd:	AT&C1		# setup so DCD reflects carrier (or not)
#
# We normally append the "@" symbol to the dial string so that
# the modem will wait 5 seconds before attempting to connect
# and return result codes that distinguish between no carrier
# and no answer.  This makes it possible to avoid problems with
# repeatedly dialing a number that doesn't have a fax machine
# (kudos to Stuart Lynne for this trick.)
#
# NB: If you need to prefix phone numbers to get through a PBX,
#     put it in the ModemDialCmd; e.g. "DT9%s@".
#
#ModemDialCmd:		ATDT%s@		# T for tone dialing, @ for silence
#
# Other possible configuration stuff.  The default strings are
# shown below.  Only those that are different from the defaults
# need to be included in the configuration file.
#
#ModemResetCmds:		""		# stuff to do when modem is reset
ModemAnswerCmd:		ATA		# use this to answer phone #fiddles open Friday
#ModemNoFlowCmd:		AT&K		# disable flow control cmd
#ModemHardFlowCmd:	AT&K3		# hardware flow control cmd
#ModemSoftFlowCmd:	AT&K4		# software flow control cmd
#ModemNoAutoAnswerCmd:	ATS0=0		# disable auto-answer
#
# Set modem speaker volume commands: OFF QUIET LOW MEDIUM HIGH.
# Note that we both turn the speaker on/off and set volume.
#
#ModemSetVolumeCmd:	"ATM0 ATL0M1 ATL1M1 ATL2M1 ATL3M1"
#ModemEchoOffCmd:	ATE0		# disable command echo
#ModemVerboseResultsCmd:	ATV1		# enable verbose command results
#ModemResultCodesCmd:	ATQ0		# enable result codes
#ModemOnHookCmd:		ATH0		# place phone on hook (hangup)
#ModemSoftResetCmd:	ATZ		# do soft reset of modem
#ModemWaitTimeCmd:	ATS7=60		# wait 60 seconds for carrier
#ModemCommaPauseTimeCmd:	ATS8=2		# comma pause time is 2 seconds
ModemRecvFillOrder:	MSB2LSB		# bit order of received facsimile
#ModemSendFillOrder:	MSB2LSB	# bit order modem expects for transmit
#
# Configuration parameters for Class 2 modems.
#
Class2Cmd:		AT+FCLASS=2	# command to enter class 2
Class2BORCmd:		AT+FBOR=0	# bit order for phase B/C/D (direct)
Class2RELCmd:		AT+FREL=1	# byte-align EOL codes on recv
Class2CQCmd:		""		# commands to enable copy quality proc.
Class2AbortCmd:		AT+FK		# abort session command
Class2CQQueryCmd:	AT+FCQ=?	# query for copy quality capabilities
Class2DCCQueryCmd:	AT+FDCC=?	# query for modem capabilities
Class2TBCCmd:		AT+FTBC=0	# setup stream mode
Class2CRCmd:		AT+FCR=1	# enable capability to receive
Class2PHCTOCmd:		AT+FPHCTO=30	# set phase C timeout parameter
Class2BUGCmd:		AT+FBUG=1	# enable HDLC frame tracing
Class2LIDCmd:		AT+FLID		# set local identifier command
Class2DCCCmd:		AT+FDCC		# set modem capabilities command
Class2DISCmd:		AT+FDIS		# set session parameters command
Class2DDISCmd:		""		# disable pre-dial DIS command hack
Class2CIGCmd:		AT+FCIG		# set polling identifier command
Class2PTSCmd:		AT+FPTS		# set post-page status command
Class2SPLCmd:		AT+FSPL		# set polling indicator command
#
# If Class2RecvDataTrigger is not set, then it is set to DC1
#
Class2RecvDataTrigger:	""		# character sent to modem to start recv
Class2XmitWaitForXON:	no		# if true, wait for XON before send
-- 
Eric Smith (eric@nafex.com)
Tel 0027 82 780 7888 (vodacom)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 15 Dec 1998 09:37:00 +1100
From: Damian A Ivereigh <damian@cisco.com>
Organization: Cisco Systems Inc
To: eric@nafex.com
CC: flexfax@sgi.com
Subject: Re: flexfax: compressed lines
Sender: owner-flexfax@celestial.com

Can you send a log file for when this happens. This is usually caused by
handshaking problems.

Damian

Eric Smith wrote:
> 
> My faxes sent to  certain faxmachines I am getting reports of "squashed" lines.  Some lines
> more than others basically making the fax unreadable.

-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 16 Dec 1998 10:29:51 +1100
From: Damian A Ivereigh <damian@cisco.com>
Organization: Cisco Systems Inc
To: eric@nafex.com
CC: flexfax@sgi.com
Subject: Re: flexfax: compressed lines
Sender: owner-flexfax@celestial.com

Hi Eric,

I think you should be taking note of those errors. Particularly the
timeout. That means that the modem didn't respond at all. Either the
modem is broken, your serial is broken or something else is grabbing the
response.

First of all try changing over to /dev/ttyS0, that is what I use and
everyone else seems to think that it is a better device. You will need
to change your faxgetty line in /etc/inittab, rename the config file and
the FIFO file. Then restart your hylafax processes - you may also need
to run faxmodem ttyS0. I am concerned that there might be another
process listening on /dev/ttyS0 (possibly grabbing the handshake
characters).

You may find that when you do this you can undo some of the mods that
you made to the config file.
Then try and grab a command reference for your modem and check that the
commands you are sending are reasonable.

Damian 

Eric Smith wrote:
> 
> On Tue, Dec 15, 1998 at 09:37:00AM +1100, Damian A Ivereigh wrote:
> > Can you send a log file for when this happens. This is usually caused by
> > handshaking problems.
> 
> sure:
> 
> But there aint much there - u will see some command errors in the beginning
> but this does not affect usage so I just ignore it
> 
> Here is the trace of the fax to New York that was screwy and I follow it with a
> normal trace that i tested recently - not much diff I am afraid:
> 
> ================
> 
> Dec 13 21:47:40.59: [13112]: SESSION BEGIN 00000112 44015163286874
> Dec 13 21:47:40.59: [13112]: SEND FAX: JOB 88 DEST 0015163286874 COMMID 00000112
> Dec 13 21:47:40.59: [13112]: DELAY 2600 ms
> Dec 13 21:47:43.20: [13112]: <-- [15:ATE0V1Q0S0=0H0\r]
> Dec 13 21:47:43.41: [13112]: --> [2:OK]
> Dec 13 21:47:43.41: [13112]: <-- [15:ATS8=2S7=60&D2\r]
> Dec 13 21:47:48.41: [13112]: MODEM <Timeout>
> Dec 13 21:47:48.41: [13112]: <-- [5:ATM0\r]
> Dec 13 21:47:48.62: [13112]: --> [2:OK]
> Dec 13 21:47:48.62: [13112]: <-- [12:AT+FCLASS=2\r]
> Dec 13 21:47:48.94: [13112]: --> [2:OK]
> Dec 13 21:47:48.94: [13112]: <-- [10:AT+FTBC=0\r]
> Dec 13 21:47:49.24: [13112]: --> [5:ERROR]
> Dec 13 21:47:49.24: [13112]: MODEM Command error
> Dec 13 21:47:49.24: [13112]: <-- [10:AT+FBOR=0\r]
> Dec 13 21:47:49.55: [13112]: --> [2:OK]
> Dec 13 21:47:49.55: [13112]: <-- [13:AT+FPHCTO=30\r]
> Dec 13 21:47:49.87: [13112]: --> [2:OK]
> Dec 13 21:47:49.87: [13112]: <-- [24:AT+FDCC=1,5,2,2,1,0,0,0\r]
> Dec 13 21:47:50.19: [13112]: --> [5:ERROR]
> Dec 13 21:47:50.19: [13112]: MODEM Command error
> Dec 13 21:47:50.19: [13112]: <-- [23:AT+FLID="Fruitcom.com"\r]
> Dec 13 21:47:50.51: [13112]: --> [2:OK]
> Dec 13 21:47:50.51: [13112]: DIAL 0015163286874
> Dec 13 21:47:50.51: [13112]: <-- [18:ATDT0015163286874\r]
> Dec 13 21:48:08.92: [13112]: --> [5:+FCON]
> Dec 13 21:48:10.10: [13112]: --> [6:+FNSF:]
> Dec 13 21:48:10.10: [13112]: REMOTE NSF ""
> Dec 13 21:48:10.81: [13112]: --> [29:+FCSI: "          5163286874"]
> Dec 13 21:48:10.81: [13112]: REMOTE CSI "5163286874"
> Dec 13 21:48:11.14: [13112]: --> [21:+FDIS:1,5,0,2,1,0,0,3]
> Dec 13 21:48:11.14: [13112]: --> [2:OK]
> Dec 13 21:48:11.14: [13112]: REMOTE best rate 14400 bit/s
> Dec 13 21:48:11.14: [13112]: REMOTE max page width 1728 pixels in 215 mm
> Dec 13 21:48:11.14: [13112]: REMOTE max unlimited page length
> Dec 13 21:48:11.14: [13112]: REMOTE best vres 7.7 line/mm
> Dec 13 21:48:11.14: [13112]: REMOTE best format 2-D MR
> Dec 13 21:48:11.14: [13112]: REMOTE best 10 ms/scanline
> Dec 13 21:48:11.14: [13112]: USE 14400 bit/s
> Dec 13 21:48:11.14: [13112]: USE 10 ms/scanline
> Dec 13 21:48:11.14: [13112]: SEND file "docq/doc109.ps;31"
> Dec 13 21:48:11.14: [13112]: USE page width 1728 pixels in 215 mm
> Dec 13 21:48:11.14: [13112]: USE unlimited page length
> Dec 13 21:48:11.14: [13112]: USE 7.7 line/mm
> Dec 13 21:48:11.14: [13112]: USE 1-D MR
> Dec 13 21:48:11.14: [13112]: <-- [24:AT+FDIS=1,5,0,2,0,0,0,3\r]
> Dec 13 21:48:11.27: [13112]: --> [2:OK]
> Dec 13 21:48:11.27: [13112]: <-- [7:AT+FDT\r]
> Dec 13 21:48:11.44: [13112]: --> [21:+FDCS:1,5,0,2,0,0,0,3]
> Dec 13 21:48:19.17: [13112]: --> [7:CONNECT]
> Dec 13 21:48:19.17: [13112]: SEND begin page
> Dec 13 21:48:19.17: [13112]: <-- data [1027]
> Dec 13 21:48:19.17: [13112]: <-- data [1037]
> Dec 13 21:48:19.17: [13112]: <-- data [1038]
> Dec 13 21:48:19.17: [13112]: <-- data [1044]
> Dec 13 21:48:21.14: [13112]: <-- data [1027]
> Dec 13 21:48:21.14: [13112]: <-- data [1027]
> Dec 13 21:48:21.14: [13112]: <-- data [1028]
> Dec 13 21:48:21.14: [13112]: <-- data [1028]
> Dec 13 21:48:21.68: [13112]: <-- data [1025]
> Dec 13 21:48:23.64: [13112]: <-- data [1026]
> Dec 13 21:48:23.64: [13112]: <-- data [1024]
> Dec 13 21:48:23.64: [13112]: <-- data [1024]
> Dec 13 21:48:25.54: [13112]: <-- data [1024]
> Dec 13 21:48:25.54: [13112]: <-- data [1027]
> Dec 13 21:48:25.54: [13112]: <-- data [1024]
> Dec 13 21:48:25.54: [13112]: <-- data [1024]
> Dec 13 21:48:27.44: [13112]: <-- data [1025]
> Dec 13 21:48:27.44: [13112]: <-- data [1025]
> Dec 13 21:48:27.44: [13112]: <-- data [1026]
> Dec 13 21:48:29.33: [13112]: <-- data [1025]
> Dec 13 21:48:29.33: [13112]: <-- data [1025]
> Dec 13 21:48:29.33: [13112]: <-- data [1026]
> Dec 13 21:48:31.25: [13112]: <-- data [1025]
> Dec 13 21:48:31.25: [13112]: <-- data [1025]
> Dec 13 21:48:31.25: [13112]: <-- data [1025]
> Dec 13 21:48:31.25: [13112]: <-- data [1024]
> Dec 13 21:48:33.01: [13112]: <-- data [1026]
> Dec 13 21:48:33.01: [13112]: <-- data [1025]
> Dec 13 21:48:33.01: [13112]: <-- data [1025]
> Dec 13 21:48:34.92: [13112]: <-- data [1024]
> Dec 13 21:48:34.92: [13112]: <-- data [1027]
> Dec 13 21:48:34.92: [13112]: <-- data [1025]
> Dec 13 21:48:36.82: [13112]: <-- data [1024]
> Dec 13 21:48:36.82: [13112]: <-- data [1024]
> Dec 13 21:48:36.82: [13112]: <-- data [644]
> Dec 13 21:48:36.82: [13112]: SENT 35460 bytes of data
> Dec 13 21:48:36.82: [13112]: <-- data [2]
> Dec 13 21:48:36.82: [13112]: SEND end page
> Dec 13 21:48:39.23: [13112]: --> [2:OK]
> Dec 13 21:48:39.23: [13112]: SEND send EOP (no more pages or documents)
> Dec 13 21:48:39.23: [13112]: <-- [9:AT+FET=2\r]
> Dec 13 21:48:42.32: [13112]: --> [8:+FPTS:1 ]
> Dec 13 21:48:42.32: [13112]: SEND recv MCF (message confirmation)
> Dec 13 21:48:42.32: [13112]: SEND FAX (00000112): FROM eric@london.nafex.com TO 0015163286874 (page 1 of 1 sent in 0:31)
> Dec 13 21:48:42.32: [13112]: SEND FAX (00000112): FROM eric@london.nafex.com TO 0015163286874 (docq/doc109.ps;31 sent in 0:31)
> Dec 13 21:48:42.32: [13112]: <-- [5:ATH0\r]
> Dec 13 21:48:42.32: [13112]: --> [7:+FHNG:0]
> Dec 13 21:48:42.32: [13112]: REMOTE HANGUP: Normal and proper end of connection (code 0)
> Dec 13 21:48:43.81: [13112]: --> [2:OK]
> Dec 13 21:48:43.81: [13112]: SESSION END
> 
> ===================
> 
> Heres a normal one:
> 
> Dec 14 20:21:28.43: [ 7529]: SESSION BEGIN 00000119 44027214236111
> Dec 14 20:21:28.43: [ 7529]: SEND FAX: JOB 94 DEST 0027214236111 COMMID 00000119
> Dec 14 20:21:28.43: [ 7529]: DELAY 2600 ms
> Dec 14 20:21:31.04: [ 7529]: <-- [15:ATE0V1Q0S0=0H0\r]
> Dec 14 20:21:31.26: [ 7529]: --> [2:OK]
> Dec 14 20:21:31.26: [ 7529]: <-- [15:ATS8=2S7=60&D2\r]
> Dec 14 20:21:36.26: [ 7529]: MODEM <Timeout>
> Dec 14 20:21:36.26: [ 7529]: <-- [5:ATM0\r]
> Dec 14 20:21:36.47: [ 7529]: --> [2:OK]
> Dec 14 20:21:36.47: [ 7529]: <-- [12:AT+FCLASS=2\r]
> Dec 14 20:21:36.78: [ 7529]: --> [2:OK]
> Dec 14 20:21:36.78: [ 7529]: <-- [10:AT+FTBC=0\r]
> Dec 14 20:21:37.10: [ 7529]: --> [5:ERROR]
> Dec 14 20:21:37.10: [ 7529]: MODEM Command error
> Dec 14 20:21:37.10: [ 7529]: <-- [10:AT+FBOR=0\r]
> Dec 14 20:21:37.40: [ 7529]: --> [2:OK]
> Dec 14 20:21:37.40: [ 7529]: <-- [13:AT+FPHCTO=30\r]
> Dec 14 20:21:37.70: [ 7529]: --> [2:OK]
> Dec 14 20:21:37.84: [ 7529]: <-- [24:AT+FDCC=1,5,2,2,1,0,0,0\r]
> Dec 14 20:21:38.16: [ 7529]: --> [5:ERROR]
> Dec 14 20:21:38.16: [ 7529]: MODEM Command error
> Dec 14 20:21:38.16: [ 7529]: <-- [23:AT+FLID="Fruitcom.com"\r]
> Dec 14 20:21:38.47: [ 7529]: --> [2:OK]
> Dec 14 20:21:38.47: [ 7529]: DIAL 0027214236111
> Dec 14 20:21:38.47: [ 7529]: <-- [18:ATDT0027214236111\r]
> Dec 14 20:21:59.32: [ 7529]: --> [5:+FCON]
> Dec 14 20:22:00.45: [ 7529]: --> [6:+FNSF:]
> Dec 14 20:22:00.45: [ 7529]: REMOTE NSF ""
> Dec 14 20:22:01.19: [ 7529]: --> [29:+FCSI: "      +27 21 4237675"]
> Dec 14 20:22:01.19: [ 7529]: REMOTE CSI "+27 21 4237675"
> Dec 14 20:22:01.57: [ 7529]: --> [21:+FDIS:1,5,0,2,1,0,0,0]
> Dec 14 20:22:01.57: [ 7529]: --> [2:OK]
> Dec 14 20:22:01.57: [ 7529]: REMOTE best rate 14400 bit/s
> Dec 14 20:22:01.57: [ 7529]: REMOTE max page width 1728 pixels in 215 mm
> Dec 14 20:22:01.57: [ 7529]: REMOTE max unlimited page length
> Dec 14 20:22:01.57: [ 7529]: REMOTE best vres 7.7 line/mm
> Dec 14 20:22:01.57: [ 7529]: REMOTE best format 2-D MR
> Dec 14 20:22:01.57: [ 7529]: REMOTE best 0 ms/scanline
> Dec 14 20:22:01.57: [ 7529]: USE 14400 bit/s
> Dec 14 20:22:01.57: [ 7529]: USE 0 ms/scanline
> Dec 14 20:22:01.57: [ 7529]: SEND file "docq/doc116.ps;31"
> Dec 14 20:22:01.57: [ 7529]: USE page width 1728 pixels in 215 mm
> Dec 14 20:22:01.57: [ 7529]: USE unlimited page length
> Dec 14 20:22:01.57: [ 7529]: USE 7.7 line/mm
> Dec 14 20:22:01.57: [ 7529]: USE 1-D MR
> Dec 14 20:22:01.57: [ 7529]: <-- [24:AT+FDIS=1,5,0,2,0,0,0,0\r]
> Dec 14 20:22:01.70: [ 7529]: --> [2:OK]
> Dec 14 20:22:01.70: [ 7529]: <-- [7:AT+FDT\r]
> Dec 14 20:22:01.87: [ 7529]: --> [21:+FDCS:1,5,0,2,0,0,0,0]
> Dec 14 20:22:09.80: [ 7529]: --> [7:CONNECT]
> Dec 14 20:22:09.80: [ 7529]: SEND begin page
> Dec 14 20:22:09.80: [ 7529]: <-- data [1029]
> Dec 14 20:22:09.80: [ 7529]: <-- data [1037]
> Dec 14 20:22:09.80: [ 7529]: <-- data [1038]
> Dec 14 20:22:09.80: [ 7529]: <-- data [1045]
> Dec 14 20:22:11.77: [ 7529]: <-- data [1027]
> Dec 14 20:22:11.77: [ 7529]: <-- data [1027]
> Dec 14 20:22:11.77: [ 7529]: <-- data [1028]
> Dec 14 20:22:11.77: [ 7529]: <-- data [1028]
> Dec 14 20:22:12.31: [ 7529]: <-- data [1025]
> Dec 14 20:22:14.27: [ 7529]: <-- data [1026]
> Dec 14 20:22:14.27: [ 7529]: <-- data [1024]
> Dec 14 20:22:14.27: [ 7529]: <-- data [1028]
> Dec 14 20:22:16.18: [ 7529]: <-- data [1029]
> Dec 14 20:22:16.18: [ 7529]: <-- data [1026]
> Dec 14 20:22:16.18: [ 7529]: <-- data [1026]
> Dec 14 20:22:16.18: [ 7529]: <-- data [1026]
> Dec 14 20:22:18.13: [ 7529]: <-- data [1025]
> Dec 14 20:22:18.13: [ 7529]: <-- data [1027]
> Dec 14 20:22:18.13: [ 7529]: <-- data [1026]
> Dec 14 20:22:20.05: [ 7529]: <-- data [1025]
> Dec 14 20:22:20.05: [ 7529]: <-- data [1026]
> Dec 14 20:22:20.05: [ 7529]: <-- data [1032]
> Dec 14 20:22:20.05: [ 7529]: <-- data [1024]
> Dec 14 20:22:22.01: [ 7529]: <-- data [1025]
> Dec 14 20:22:22.01: [ 7529]: <-- data [1028]
> Dec 14 20:22:22.01: [ 7529]: <-- data [1026]
> Dec 14 20:22:23.93: [ 7529]: <-- data [1024]
> Dec 14 20:22:23.93: [ 7529]: <-- data [1028]
> Dec 14 20:22:23.93: [ 7529]: <-- data [1026]
> Dec 14 20:22:25.87: [ 7529]: <-- data [1028]
> Dec 14 20:22:25.87: [ 7529]: <-- data [1027]
> Dec 14 20:22:25.87: [ 7529]: <-- data [1024]
> Dec 14 20:22:25.87: [ 7529]: <-- data [1024]
> Dec 14 20:22:27.80: [ 7529]: <-- data [1024]
> Dec 14 20:22:27.80: [ 7529]: <-- data [1024]
> Dec 14 20:22:27.80: [ 7529]: <-- data [1024]
> Dec 14 20:22:29.68: [ 7529]: <-- data [1024]
> Dec 14 20:22:29.68: [ 7529]: <-- data [1024]
> Dec 14 20:22:29.69: [ 7529]: <-- data [1008]
> Dec 14 20:22:29.69: [ 7529]: SENT 39920 bytes of data
> Dec 14 20:22:29.69: [ 7529]: <-- data [2]
> Dec 14 20:22:29.69: [ 7529]: SEND end page
> Dec 14 20:22:32.46: [ 7529]: --> [2:OK]
> Dec 14 20:22:32.46: [ 7529]: SEND send EOP (no more pages or documents)
> Dec 14 20:22:32.46: [ 7529]: <-- [9:AT+FET=2\r]
> Dec 14 20:22:35.85: [ 7529]: --> [8:+FPTS:1 ]
> Dec 14 20:22:35.85: [ 7529]: SEND recv MCF (message confirmation)
> Dec 14 20:22:35.85: [ 7529]: SEND FAX (00000119): FROM root@eric.nafex.com TO 0027214236111 (page 1 of 1 sent in 0:34)
> Dec 14 20:22:35.85: [ 7529]: SEND FAX (00000119): FROM root@eric.nafex.com TO 0027214236111 (docq/doc116.ps;31 sent in 0:34)
> Dec 14 20:22:35.85: [ 7529]: <-- [5:ATH0\r]
> Dec 14 20:22:35.85: [ 7529]: --> [7:+FHNG:0]
> Dec 14 20:22:35.85: [ 7529]: REMOTE HANGUP: Normal and proper end of connection (code 0)
> Dec 14 20:22:37.34: [ 7529]: --> [2:OK]
> Dec 14 20:22:37.34: [ 7529]: SESSION END
> >
> > Damian
> >
> > Eric Smith wrote:
> > >
> > > My faxes sent to  certain faxmachines I am getting reports of "squashed" lines.  Some lines
> > > more than others basically making the fax unreadable.
> >
> > --
> >  ______________________________________________________________________
> > * Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
> > * MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
> > * Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
> > * damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
> > *______________________________________________________________________*
> 
> --
> Eric Smith (eric@nafex.com)
> Tel 0027 82 780 7888 (vodacom)

-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 14 Dec 1998 17:44:12 +0200
From: Eric Smith <eric@eric.nafex.com>
To: flexfax@sgi.com
Subject: flexfax: faxgetty in inittab
Reply-To: eric@nafex.com
X-Operating-System: Linux eric 2.0.34
Sender: owner-flexfax@celestial.com

Hello

I have an entry in my inittab as follows:
0:23:respawn:/usr/sbin/faxgetty cua0 

Can someone advise if this is the correct syntax.
If I run /usr/sbin/faxgetty cua0 , then faxgetty deploys correctly but I am not
sure that the innitab is working becuase when I unplug the modem and then plug
it back in, faxgetty seems to die and must be started manually instead of
respawning.

Thanx for the help.
-- 
Eric Smith (eric@nafex.com)
Tel 0027 82 780 7888 (vodacom)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 15 Dec 1998 11:46:42 +1100
From: Damian A Ivereigh <damian@cisco.com>
Organization: Cisco Systems Inc
To: eric@nafex.com
CC: flexfax@sgi.com
Subject: Re: flexfax: faxgetty in inittab
Sender: owner-flexfax@celestial.com

It looks OK. Does init log anything of interest? Have you done a telinit
q to tell init to re-read /etc/inittab? Do you have any other entries
starting with '0:'? You might want to change that to something unique
like 'S1:'

Damian

Eric Smith wrote:
> 
> Hello
> 
> I have an entry in my inittab as follows:
> 0:23:respawn:/usr/sbin/faxgetty cua0
> 
> Can someone advise if this is the correct syntax.
> If I run /usr/sbin/faxgetty cua0 , then faxgetty deploys correctly but I am not
> sure that the innitab is working becuase when I unplug the modem and then plug
> it back in, faxgetty seems to die and must be started manually instead of
> respawning.
> 
> Thanx for the help.
> --
> Eric Smith (eric@nafex.com)
> Tel 0027 82 780 7888 (vodacom)

-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 14 Dec 1998 10:33:26 -0800
To: flexfax@sgi.com
From: Martin Dean <martin.dean@crncare.org>
Subject: flexfax: Returning FAX with email status
Sender: owner-flexfax@celestial.com

Is there any way to have a copy of the FAX document (ps or tiff) 
mailed with the FAX status ?


I'm using WHFC for Win95 and hylaFAX 4.x on Linux RedHat 5.1.

Users FAX from Win95 using WHFC. WHFC emails the status of a FAX but not the actual
FAX. As a result, users cannot retrieve a previously sent FAX.


Martin

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: flexfax@sgi.com
Subject: flexfax: faxstate command and FIFO.XXX not found
Date: Mon, 14 Dec 1998 13:13:44 -0800
From: Jason Venner <jason@idiom.com>
Sender: owner-flexfax@celestial.com



I am running hylafax on a linux libc (2.0.34) system. I just got the
installation up and running.
I am only doing outbound faxing at present.

I run faxq, then faxmodem cua16

I can now sendfax successfully.

But faxstate cua16 returns:
	FIFO.cua16: open: No such file or directory

There is only a 'FIFO' file in the /var/spool/fax directory.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 15 Dec 1998 11:41:53 +1100
From: Damian A Ivereigh <damian@cisco.com>
Organization: Cisco Systems Inc
To: Jason Venner <jason@idiom.com>
CC: flexfax@sgi.com
Subject: Re: flexfax: faxstate command and FIFO.XXX not found
Sender: owner-flexfax@celestial.com

Did you run faxaddmodem?

Damian

Jason Venner wrote:
> 
> I am running hylafax on a linux libc (2.0.34) system. I just got the
> installation up and running.
> I am only doing outbound faxing at present.
> 
> I run faxq, then faxmodem cua16
> 
> I can now sendfax successfully.
> 
> But faxstate cua16 returns:
>         FIFO.cua16: open: No such file or directory
> 
> There is only a 'FIFO' file in the /var/spool/fax directory.

-- 
 ______________________________________________________________________
* Damian Ivereigh     *      ||        ||      * Cisco Systems, Inc.   *
* MIS Printer Admin   *    .||||.    .||||.    * Sydney, Australia     *
* Linux Bigot         * ..:||||||:..:||||||:.. * +61 2 8448 7344       *
* damian@cisco.com    *   cisco Systems, Inc.  * Fax: +61 2 8448 7228  *
*______________________________________________________________________*

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: flexfax@sgi.com
Subject: flexfax: sendfax and faxcover
Date: Mon, 14 Dec 1998 14:44:22 -0800
From: Jason Venner <jason@idiom.com>
Sender: owner-flexfax@celestial.com


I was working on my custom cover page and noticed something odd.

sendfax doesn't appear to pass the -x, -y, -r or -c arguments to
faxcover.

The following is a cut down trace log.

sendfax -v -d XXXYYYY -f "Jason Venner" -r "My subject is" -x "destination company" -y "destination location" -c "This is a comment line that should get printed" /tmp/t
Trying localhost (127.0.0.1) at port 4559...
Connected to localhost.
COVER SHEET "/usr/local/bin/faxcover -f 'Jason Venner' -n 'XXXYYYY' -s 'default' -p '1'"
request id is 10 (group id 10) for host localhost (1 file)


Am I doing something wrong or is this just the way the 'stock software is'
4vpl2.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: flexfax@sgi.com
Subject: flexfax: Undocumented features of sendfax
Date: Mon, 14 Dec 1998 16:15:51 -0800
From: Jason Venner <jason@idiom.com>
Sender: owner-flexfax@celestial.com


case 'C':			// cover page: template file
case 'T':			// times to dial telephone
case 'w':			// wait for job to complete

Is there a place to send faxes?

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: flexfax@sgi.com
Subject: flexfax: ignored -c -r etc in sendfax - it was an ordering problem
Date: Tue, 15 Dec 1998 10:08:12 -0800
From: Jason Venner <jason@idiom.com>
Sender: owner-flexfax@celestial.com


The various flags arguments are stored in temporary job structure, and
each time a -d argument is provided, the temporary args are copied
into this new job.

This is done as the arguments are accessed off of the argument vector.

So, if want the flags applied to a particular job, make sure they
happen before the -d for that job.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: Rob Embry <Rob.Embry@emctest.com>
To: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: flexfax: Sendfax doesn't work when in startup script
Date: Tue, 15 Dec 1998 14:09:14 -0600
Sender: owner-flexfax@celestial.com

I have Hylafax working just fine on a RH Linux box as my network based fax
server.

I have a proprietary database running on an HP-UX box from which I need to
fax purchase orders (POs).  

I have solved this problem as follows:
1.  The database program prints a PO to a print queue called pofax which
parks a text copy of the PO in a directory on the Linux fax server via NFS.
2.  A fax monitor program (written in perl) on the Linux box monitors the
pofax queue directory.
3.  When a PO text file shows up, the monitor program spawns (using a
"system" call) another perl  process called faxit which reads the text PO
file, does some fancy merging with a PS-based forms mask, and calls sendfax
(using backquote function call, to capture return code) to fax the merged PS
file.

The problem:  When I start the monitor program manually from the command
line logged in as root ("/usr/bin/perl monitor_pgm &"), everything works OK.
When the monitor program is started from rc.local at system start after a
reboot, and after hfaxd starts, the sendfax command in faxit fails and
returns a blank error messages.

I have tried tweaking every permission and parameter I am aware of to no
avail.  Clearly the monitor process and its descendants are not getting
something they need when run from startup.

Any ideas?

Thanks in advance,

Rob Embry
EMC Test Systems
Austin, TX

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 16 Dec 1998 10:03:20 +1100
To: Rob Embry <Rob.Embry@emctest.com>, "'flexfax@sgi.com'" <flexfax@sgi.com>
From: Robert Colquhoun <rjc@trump.net.au>
Subject: Re: flexfax: Sendfax doesn't work when in startup script
Sender: owner-flexfax@celestial.com

Hi Rob,

How about installing the client side hylafax binaries on the HP machine and
running 'sendfax' there instead of 'lp'  Would remove the need for all of
the below.

Or if the purchase order application refuses to print to anything other
than 'lp' create a simple lp script that calls sendfax on the HP, perhaps
passing in the number via the -o param or something.

- Robert

At 02:09 PM 12/15/98 -0600, Rob Embry wrote:
>I have Hylafax working just fine on a RH Linux box as my network based fax
>server.
>
>I have a proprietary database running on an HP-UX box from which I need to
>fax purchase orders (POs).  
>
>I have solved this problem as follows:
>1.  The database program prints a PO to a print queue called pofax which
>parks a text copy of the PO in a directory on the Linux fax server via NFS.
>2.  A fax monitor program (written in perl) on the Linux box monitors the
>pofax queue directory.
>3.  When a PO text file shows up, the monitor program spawns (using a
>"system" call) another perl  process called faxit which reads the text PO
>file, does some fancy merging with a PS-based forms mask, and calls sendfax
>(using backquote function call, to capture return code) to fax the merged PS
>file.
>
>The problem:  When I start the monitor program manually from the command
>line logged in as root ("/usr/bin/perl monitor_pgm &"), everything works OK.
>When the monitor program is started from rc.local at system start after a
>reboot, and after hfaxd starts, the sendfax command in faxit fails and
>returns a blank error messages.
>
>I have tried tweaking every permission and parameter I am aware of to no
>avail.  Clearly the monitor process and its descendants are not getting
>something they need when run from startup.
>
>Any ideas?
>
>Thanks in advance,
>
>Rob Embry
>EMC Test Systems
>Austin, TX
>

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 16 Dec 1998 09:36:59 +0100
From: Torbjrn Gard <torbjorn.gard@elektrondata.se>
Organization: Elektrondata AB
X-Accept-Language: Swedish, en
To: Rob Embry <Rob.Embry@emctest.com>
CC: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: Re: flexfax: Sendfax doesn't work when in startup script
Sender: owner-flexfax@celestial.com

Rob Embry wrote:
> 
> The problem:  When I start the monitor program manually from the command
> line logged in as root ("/usr/bin/perl monitor_pgm &"), everything works OK.
> When the monitor program is started from rc.local at system start after a
> reboot, and after hfaxd starts, the sendfax command in faxit fails and
> returns a blank error messages.
> 
> I have tried tweaking every permission and parameter I am aware of to no
> avail.  Clearly the monitor process and its descendants are not getting
> something they need when run from startup.
> 
> Any ideas?

May be the same problem I had: sendfax ignoring SIGCHLD from (maybe
this
time also) faxcover. The problem occured when starting sendfax in the
context of lpd. 


sendfax wrapping program:

/*
 * This program starts sendfax with default handling of signal
SIGCHLD.
 * The reason is that lpd (and cron) sets this signal to be
ignored
 * which makes sendfax fail when creating faxcover.
 *
 * Torbjrn Gard, Elektrondata AB, 981102
 */

#include <signal.h>
#include <stdio.h>
#include <errno.h>

#define SENDFAX         "/usr/local/bin/sendfax"

main( argc, argv )
int argc;
char **argv;
{
        signal( SIGCHLD, SIG_DFL );
        execv( SENDFAX, argv );
        fprintf(stderr, "%s: %s\n", SENDFAX, strerror(errno) );

        exit( 0 );
}
-- 
Torbjrn Gard             Linux :-)        Tel +46 31 12 53 82
Elektrondata AB                            Fax +46 31 42 53 51
Jrntorget 2              mailto:torbjorn.gard@elektrondata.se
S-413 04 Gteborg Sweden           http://www.elektrondata.se/

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Mark G. Thomas" <Mark@Misty.com>
Subject: flexfax: request for Solaris-2.6 inittab entry for faxgetty startup
To: flexfax@sgi.com
Date: Tue, 15 Dec 1998 23:51:35 -0500 (EST)
Sender: owner-flexfax@celestial.com


Hi,

I just upgraded from SunOS-4.1.4 to Solaris-2.6, and re-installed flexfax.

I'd like to run faxgetty, so was hoping someone could send me an example
of the appropriate line to put in /etc/inittab for Solaris, to start up 
faxgetty.

Please email me directly, as I seem to be having trouble getting list mail,
assuming the list still exists.

Thanks much,

-Mark


-- 
Mark G. Thomas (Mark@Misty.com -- http://www.misty.com/)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: "Mark G. Thomas" <Mark@Misty.com>
cc: flexfax@sgi.com
Subject: Re: flexfax: request for Solaris-2.6 inittab entry for faxgetty startup 
Date: Wed, 16 Dec 1998 09:13:21 -0500
From: "Thomas A. Szybist" <szybist@boxhill.com>
Sender: owner-flexfax@celestial.com

This is what I use:

fx:234:respawn:/opt/local/fax/lib/faxgetty cua/a

In message <199812160451.XAA03063@lucky.misty.com>, "Mark G. Thomas" writes:
> 
> Hi,
> 
> I just upgraded from SunOS-4.1.4 to Solaris-2.6, and re-installed flexfax.
> 
> I'd like to run faxgetty, so was hoping someone could send me an example
> of the appropriate line to put in /etc/inittab for Solaris, to start up 
> faxgetty.
> 
> Please email me directly, as I seem to be having trouble getting list mail,
> assuming the list still exists.
> 
> Thanks much,
> 
> -Mark
> 
> 
> -- 
> Mark G. Thomas (Mark@Misty.com -- http://www.misty.com/)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Mark G. Thomas" <Mark@Misty.com>
Subject: Re: flexfax: request for Solaris-2.6 inittab entry for faxgetty startup
To: szybist@boxhill.com (Thomas A. Szybist)
Date: Wed, 16 Dec 1998 16:56:04 -0500 (EST)
Cc: flexfax@sgi.com
Sender: owner-flexfax@celestial.com


Thomas,

Thanks much!  That worked excellently.

This is what I ended up using:

/etc/initab:
--------------
fx8:234:respawn:/opt/hylafax-v4.0pl2/sbin/faxgetty cua/8
fx9:234:respawn:/opt/hylafax-v4.0pl2/sbin/faxgetty cua/9

/var/spool/fax/etc/config.cua_8 and config.cua_9:
--------------------------------------------------
GettyArgs:              "-g -h -d %l -l %s -m ldterm,ttcompat"

-Mark

> This is what I use:
> 
> fx:234:respawn:/opt/local/fax/lib/faxgetty cua/a
> 
> In message <199812160451.XAA03063@lucky.misty.com>, "Mark G. Thomas" writes:
> > 
> > Hi,
> > 
> > I just upgraded from SunOS-4.1.4 to Solaris-2.6, and re-installed flexfax.
> > 
> > I'd like to run faxgetty, so was hoping someone could send me an example
> > of the appropriate line to put in /etc/inittab for Solaris, to start up 
> > faxgetty.
> > 
> > Please email me directly, as I seem to be having trouble getting list mail,
> > assuming the list still exists.
> > 
> > Thanks much,
> > 
> > -Mark
> > 
> > 
> > -- 
> > Mark G. Thomas (Mark@Misty.com -- http://www.misty.com/)
> 


-- 
Mark G. Thomas (Mark@Misty.com -- http://www.misty.com/)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: The Problem on installing HylaFAX at Slackware 3.5 continues
To: kremidas@lrf.gr
Date: Tue, 15 Dec 1998 08:51:45 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> --Message-Boundary-4205
> Content-type: Application/Octet-stream; name="make.err"; type=Unknown
                ^^^^^^^^^^^^^^^^^^^^^^^^

Please don't describe plain text attachments as of unknown
binary type; preferably don't attach them at all; embed them
instead.  But if you must, code them as the text/plain that they are
and use 7bit transfer encoding, if possible, else quoted printable.

> Content-disposition: attachment; filename="make.err"
> Content-transfer-encoding: BASE64
> 
> U2VuZEZheEpvYi5jKys6IEluIG1ldGhvZCBgdW5zaWduZWQgY2hhciBTZW5kRmF4Sm9iOjpj
> cmVhdGVKb2IoY2xhc3MgU2VuZEZheENsaWVudCAmLCBjbGFzcyBmeFN0ciAmKSc6DQpTZW5k

This, when decoded (just the last few lines as the wrong content type
meant that the output didn't go through a pager) still looks like you
need to apply the egcs patch.

Other things to consider with Slackware are that it includes
libz and libtiff, but the libtiff is not compatible with the 
default way of building libtiff from source and there are no
utilties.  My advice is to use their libtiff and build the
TIFF utilties against the existing library.

Hylafax with the egcs patch definitely does build on Slackware 3.5;
I've done it recently.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 15 Dec 1998 16:27:57 +0100
From: Roeland de Ponti <Roeland@messina.demon.nl>
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: Squished pages when receiving
Sender: owner-flexfax@celestial.com

I have been experiencing similar problems to those stated in FAQ 141,
only my problem is exactly the other way around. I have configured my
faxmodem for CLASS2 operation. I've used the

    Class2DDISCmd:          AT+FDIS

configuration parameter.

If I send a fax from Hylafax to a Brother fax machine, the faxes turns
out correct. However if I send a fax from the Brother fax machine to
Hylafax, the faxes negotiate 3,85 line/mm, resulting in the 'squished'
fax syndrome.

This is a part of the trace log while sending from the Brother fax to
HylaFax:
    ...
    Dec 15 15:40:16.02: [ 3121]: ANSWER: FAX CONNECTION
    Dec 15 15:40:16.03: [ 3121]: RECV FAX: begin
    Dec 15 15:40:21.73: [ 3121]: --> [5:+FCON]
    Dec 15 15:40:23.35: [ 3121]: --> [29:+FTSI: "         31206387595"]
    Dec 15 15:40:23.35: [ 3121]: REMOTE TSI "31206387595"
    Dec 15 15:40:23.65: [ 3121]: --> [22:+FDCS: 0,5,0,2,0,0,0,3]
    Dec 15 15:40:23.65: [ 3121]: REMOTE wants 14400 bit/s
    Dec 15 15:40:23.65: [ 3121]: REMOTE wants page width 1728 pixels in
215 mm
    Dec 15 15:40:23.65: [ 3121]: REMOTE wants unlimited page length
    Dec 15 15:40:23.65: [ 3121]: REMOTE wants 3.85 line/mm
    Dec 15 15:40:23.65: [ 3121]: REMOTE wants 1-D MR
    Dec 15 15:40:23.76: [ 3121]: --> [2:OK]
    Dec 15 15:40:23.76: [ 3121]: <-- [7:AT+FDR\r]
    Dec 15 15:40:26.68: [ 3121]: --> [5:+FCFR]
    ...
And this is part of the log obtained from sending from Hylafax to the
Brother Fax
    ...
    Dec 15 15:45:53.95: [ 3157]: DIAL **2
    Dec 15 15:45:53.95: [ 3157]: <-- [8:ATDT**2\r]
    Dec 15 15:46:09.17: [ 3157]: --> [5:+FCON]
    Dec 15 15:46:11.25: [ 3157]: --> [29:+FCSI: "         31206387595"]
    Dec 15 15:46:11.25: [ 3157]: REMOTE CSI "31206387595"
    Dec 15 15:46:11.67: [ 3157]: --> [22:+FDIS: 1,5,0,2,1,0,0,3]
    Dec 15 15:46:11.67: [ 3157]: --> [2:OK]
    Dec 15 15:46:11.67: [ 3157]: REMOTE best rate 14400 bit/s
    Dec 15 15:46:11.67: [ 3157]: REMOTE max page width 1728 pixels in
215 mm
    Dec 15 15:46:11.67: [ 3157]: REMOTE max unlimited page length
    Dec 15 15:46:11.67: [ 3157]: REMOTE best vres 7.7 line/mm
    Dec 15 15:46:11.67: [ 3157]: REMOTE best format 2-D MR
    ...
It's strange since the faxes use 2-D encoding/ 7.7line/mm when sending
from Hylafax to the Brother fax, but use 1-D encoding/3.85line/mm when
sending from the Brother fax to Hylafax.

This doesn't only occur with the Brother fax. Other fax machines have
the same problem when sending to the Hylafax server. I've tried this
configuration using 'Use2D' set to yes and no, both options show the
same result.

If, however, I configure the faxmodem for class1 use, this is what the
log files show when Hylafax receives from the Brother fax.

    Dec 15 15:57:32.39: [ 3272]: REMOTE wants 14400 bit/s
    Dec 15 15:57:32.39: [ 3272]: REMOTE wants page width 1728 pixels in
215 mm
    Dec 15 15:57:32.39: [ 3272]: REMOTE wants unlimited page length
    Dec 15 15:57:32.39: [ 3272]: REMOTE wants 3.85 line/mm
    Dec 15 15:57:32.39: [ 3272]: REMOTE wants 2-D MR
    Dec 15 15:57:32.39: [ 3272]: RECV training at v.17 14400 bit/s

Received and transmitted faxes using Class1 operation show no signs of
squished pages.
What's more, the info file for the capabilities of the faxnumber for the
Brother fax state that the remote fax supports 2D-encoding. However, the
2D encoding is only used when transmitting to the Brother fax and not
when receiving from the Brother fax.

The modem I'm using is a so-called 'Wisecom' modem. It's based on a
Rockwell chipset. I've been experiencing problems like these with
basically all modems I've been using since I started using Hylafax 3.0
(I'm currently using 4.0pl2). All of these modems are Rockwell based.

For now, I'll go back to class1 operation mode, however I would
appreciate if anyone can explain why this occurs.

Roeland

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 15 Dec 1998 21:04:10 +0100
From: "Wolfgang S. Kechel - Patzschke + Rasp GmbH" <wolfgang@prs.de>
To: flexfax@sgi.com
CC: tip@prs.de
Subject: flexfax: Compiling hylafax4.0pl2 under Solaros 2.6 with gcc-2.8.1
Sender: owner-flexfax@celestial.com

When trying to compile the source, I get the following error:

gmake[2]: Leaving directory `/extra/gnu/hylafax-v4.0pl2/util'
gmake[2]: Entering directory `/extra/gnu/hylafax-v4.0pl2/util'
gmake[2]: Nothing to be done for `_quiet.cdependtime'.
gmake[2]: Leaving directory `/extra/gnu/hylafax-v4.0pl2/util'
gmake[1]: Leaving directory `/extra/gnu/hylafax-v4.0pl2/util'
gmake[1]: Entering directory `/extra/gnu/hylafax-v4.0pl2/util'
g++      -I.././zlib                      -D__ANSI_CPP__ -I. -I.. -I.././util -I.././util -I/usr2/gnu/include -I.././regex -g -O -x c++ -c SendFaxJob.c++
SendFaxJob.c++: In method `unsigned char SendFaxJob::createJob(class SendFaxClient &, class fxStr &)':
SendFaxJob.c++:499: `fxbool' undeclared (first use this function)
SendFaxJob.c++:499: (Each undeclared identifier is reported only once
SendFaxJob.c++:499: for each function it appears in.)
SendFaxJob.c++:499: parse error before `::'
gmake[1]: *** [SendFaxJob.o] Error 1
gmake[1]: Leaving directory `/extra/gnu/hylafax-v4.0pl2/util'
gmake: *** [default] Error 2
152% gcc --version
2.8.1
153% 


Is there a fix or workaround for this problem?

Thanks in advance

-- 
                     Wolfgang Kechel
         Email: wolfgang@prs.de  http://www.prs.de
  Patzschke + Rasp GmbH   Bierstadter Str. 7  D-65189 Wiesbaden
         Phone: +49-611-1731-26   FAX: +49-611-1731-31

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 15 Dec 1998 16:16:51 -0600
From: Tim Kelley <tpkelley@winkinc.com>
X-Accept-Language: en
To: Hylafax List <flexfax@sgi.com>
Subject: flexfax: Best modem for Hylafax?
Sender: owner-flexfax@celestial.com

At the moment I'm using a Gateway Telepath (USR oem) with Hylafax and
although it is tolerable, it is giving me some problems.  I'm wondering
what the folks on this list see as the best modem to use for faxing,
price not an issue.  The Hylafax web site says the MultiTechs and Zyxels
are good, what do you all think?
Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\tpkelley2.vcf"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 16 Dec 1998 08:42:03 +1100
From: Milan <milan@rubix.net.au>
To: flexfax@sgi.com
Subject: flexfax: Hylafax and Redhat 5.2
Sender: owner-flexfax@celestial.com

Hi,

I am trying to use the binary implementation of Hylafax for Redhat but
when I try to install it using rpm, I get a dependency error indicating
that my library is not >=5.03. This may be the case as it is a standard
RedHat 5.2 install.

Could anyone shed some light on the matter for me.

Thank you in advance
Milan

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 16 Dec 1998 11:40:56 +0100
From: Rainer Krienke <krienke@uni-koblenz.de>
Organization: Uni-Koblenz
To: flexfax@sgi.com
Subject: flexfax: fax printing package for hylafax
Sender: owner-flexfax@celestial.com

Hello,

I want to invite everyone interested in testing my just released
faxprint package. It consists of two small perl scripts that enables a
user, working under a GUI like KDE (or any other X-based GUI) on a unix
workstation, to send his fax from arbitrary applications simply by
printing on a (local or a network) fax printer.

To use this package you need perl at least version 5.002 and super user
permissions for the installation of a new printer.

You find the software (6 Kbytes) on my Web Page with the URL

 	http://www.uni-koblenz.de/~krienke/hylafax_eng.html

Comments are welcome.

Have a nice day
Rainer Krienke
-- 
---------------------------------------------------------------------
Rainer Krienke                     krienke@informatik.uni-koblenz.de
Universitaet Koblenz, 		   http://www.uni-koblenz.de/~krienke
Rechenzentrum,                     Voice: +49 261 287 -1312
Rheinau 1, 56075 Koblenz, Germany  Fax:   +49 261 9119-495
---------------------------------------------------------------------

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Reply-To: "Jens Peter Moeller" <jpm@cabacom.net>
From: "Jens Peter Moeller" <jpm@cabacom.net>
To: <flexfax@sgi.com>
Subject: flexfax: Problem with recieving
Date: Wed, 16 Dec 1998 13:09:50 +0100
Sender: owner-flexfax@celestial.com

My HylaFax server can send, but not recieve.
I use HylaFax 4.0pl2 with SuSE Linux 5.2
After first page the error "Missing EOL after 5 seconds" ocures.
Then I have to reset the modem.
I doesn't found any docs about this error.
The modem is an older V32terbo, with fax classes 1, 2, 2.0 (AT&T chip).
I works with windows (sorry...) progs and mgetty+sendfax without
any problem.
I have tested different flow control cmds and baudrates without success.

Best regards from germany,
Jens Peter Moeller
netnews@cabacom.net

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 16 Dec 1998 10:15:26 -0300
From: Angelo Nardone <ang@adinet.com.uy>
To: flexfax@sgi.com
Subject: flexfax: modem problem
Sender: owner-flexfax@celestial.com

I have a ActionTec ISA PnP modem, and I want to use in hylafax system.
But I have some problem with the reception of the faxes.
I am using the binary distribution 4.0pl1  for FreeBSD 2.2.6
I can send the configuration of the modem, and tow session log, one
received OK and the other NO. ( is 13K)
Thank in advance
    Angelo

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 16 Dec 1998 17:52:12 +0100 (MET)
From: Bachir Amghar <bachir@cpio1.cpio.com>
To: flexfax@sgi.com
Subject: flexfax: sendfax -F option
Sender: owner-flexfax@celestial.com

hello,

when i used the sendfax option -F "xxxxxx"
i receive this error message :

"503 permission denied: no write acces to job parameter USETAGLINE"

how i can do to solve this ?

thanks !

----------------------------------
E-Mail: Bachir Amghar <bachir@cpio1.cpio.com>
Date: 16-Dec-98
Time: 17:52:12

This message was sent by XFMail
----------------------------------

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 17 Dec 1998 00:39:20 +0100 (CET)
From: HF <hylafax@astra.sif.it>
To: flexfax@sgi.com
Subject: flexfax: Problem SENDING FAX 
Sender: owner-flexfax@celestial.com


Hi have some problems sending faxes with a zyxel 2864i

Here is what i get on my log:

Dec 16 23:51:35.02: [10994]: SESSION BEGIN 00000076 395434486
Dec 16 23:51:35.02: [10994]: SEND FAX: JOB 25 DEST 05434486 COMMID
00000076
Dec 16 23:51:35.02: [10994]: DELAY 2600 ms
Dec 16 23:51:37.63: [10994]: <-- [24:AT&B1&N0&S0E0V1Q0S0=0H0\r]
Dec 16 23:51:37.66: [10994]: --> [2:OK]
Dec 16 23:51:37.66: [10994]: <-- [21:ATS8=2S7=60&H3&D2&C1\r]
Dec 16 23:51:37.69: [10994]: --> [2:OK]
Dec 16 23:51:37.69: [10994]: <-- [14:AT+FCLASS=2.0\r]
Dec 16 23:51:37.71: [10994]: --> [2:OK]
Dec 16 23:51:37.71: [10994]: <-- [9:AT+FLO=2\r]
Dec 16 23:51:37.73: [10994]: --> [2:OK]
Dec 16 23:51:37.73: [10994]: <-- [9:AT+FPP=0\r]
Dec 16 23:51:37.75: [10994]: --> [2:OK]
Dec 16 23:51:37.75: [10994]: <-- [9:AT+FBO=0\r]
Dec 16 23:51:37.77: [10994]: --> [2:OK]
Dec 16 23:51:37.77: [10994]: <-- [10:AT+FCT=30\r]
Dec 16 23:51:37.80: [10994]: --> [2:OK]
Dec 16 23:51:37.80: [10994]: <-- [15:AT+FNR=1,1,1,1\r]
Dec 16 23:51:37.83: [10994]: --> [2:OK]
Dec 16 23:51:37.83: [10994]: <-- [9:AT+FIE=0\r]
Dec 16 23:51:37.85: [10994]: --> [2:OK]
Dec 16 23:51:37.85: [10994]: <-- [23:AT+FCC=1,5,2,2,1,0,0,0\r]
Dec 16 23:51:37.88: [10994]: --> [2:OK]
Dec 16 23:51:37.88: [10994]: <-- [5:ATM0\r]
Dec 16 23:51:37.90: [10994]: --> [2:OK]
Dec 16 23:51:37.90: [10994]: <-- [14:AT+FCLASS=2.0\r]
Dec 16 23:51:38.02: [10994]: --> [2:OK]
Dec 16 23:51:38.02: [10994]: <-- [9:AT+FLO=2\r]
Dec 16 23:51:38.14: [10994]: --> [2:OK]
Dec 16 23:51:38.14: [10994]: <-- [9:AT+FPP=0\r]
Dec 16 23:51:38.26: [10994]: --> [2:OK]
Dec 16 23:51:38.26: [10994]: <-- [9:AT+FBO=0\r]
Dec 16 23:51:38.39: [10994]: --> [2:OK]
Dec 16 23:51:38.39: [10994]: <-- [10:AT+FCT=30\r]
Dec 16 23:51:38.51: [10994]: --> [2:OK]
Dec 16 23:51:38.51: [10994]: <-- [15:AT+FNR=1,1,1,1\r]
Dec 16 23:51:38.63: [10994]: --> [2:OK]
Dec 16 23:51:38.63: [10994]: <-- [9:AT+FIE=0\r]
Dec 16 23:51:38.75: [10994]: --> [2:OK]
Dec 16 23:51:38.75: [10994]: <-- [23:AT+FCC=1,5,2,2,1,0,0,0\r]
Dec 16 23:51:38.88: [10994]: --> [2:OK]
Dec 16 23:51:38.88: [10994]: <-- [21:AT+FLI="39515813"\r]
Dec 16 23:51:39.01: [10994]: --> [2:OK]
Dec 16 23:51:39.01: [10994]: DIAL 0543448644
Dec 16 23:51:39.01: [10994]: <-- [15:ATDT05434486\r]
Dec 16 23:51:50.86: [10994]: --> [4:+FCO]
Dec 16 23:51:51.00: [10994]: --> [120:+FNF:00 00 25 00 00 00 12 10 4D 02 00 50 00 2A B8 2C 00 00 25 01 53 41 41 56 20 49 43 49 4D 49 48 43 20 52 4F 43 53 41  ]
Dec 16 23:51:51.00: [10994]: REMOTE NSF "00 00 25 00 00 00 12 10 4D 02 00 50 00 2A B8 2C 00 00 25 01 53 41 41 56 20 49 43 49 4D 49 48 43 20 52 4F 43 53 41"
Dec 16 23:51:51.00: [10994]: --> [26:+FCI:     0039 543 448644 ]
Dec 16 23:51:51.00: [10994]: REMOTE CSI "0039 543 4486"
Dec 16 23:51:51.00: [10994]: --> [20:+FIS:1,5,0,2,1,1,0,2]
Dec 16 23:51:51.00: [10994]: --> [2:OK]
Dec 16 23:51:51.00: [10994]: REMOTE best rate 14400 bit/s
Dec 16 23:51:51.00: [10994]: REMOTE max page width 1728 pixels in 215 mm
Dec 16 23:51:51.00: [10994]: REMOTE max unlimited page length 
Dec 16 23:51:51.00: [10994]: REMOTE best vres 7.7 line/mm
Dec 16 23:51:51.00: [10994]: REMOTE best format 2-D MR
Dec 16 23:51:51.00: [10994]: REMOTE supports T.30 Annex A, ECM
Dec 16 23:51:51.00: [10994]: REMOTE best 10 ms, 5 ms/scanline
Dec 16 23:51:51.00: [10994]: USE 14400 bit/s
Dec 16 23:51:51.00: [10994]: USE 10 ms, 5 ms/scanline
Dec 16 23:51:51.00: [10994]: SEND file "docq/doc38.ps;00"
Dec 16 23:51:51.00: [10994]: USE page width 1728 pixels in 215 mm
Dec 16 23:51:51.00: [10994]: USE unlimited page length 
Dec 16 23:51:51.00: [10994]: USE 3.85 line/mm
Dec 16 23:51:51.00: [10994]: USE 1-D MR
Dec 16 23:51:51.00: [10994]: <-- [23:AT+FIS=0,5,0,2,0,0,0,2\r]
Dec 16 23:51:51.13: [10994]: --> [2:OK]
Dec 16 23:51:51.13: [10994]: <-- [7:AT+FDT\r]
Dec 16 23:51:58.25: [10994]: --> [20:+FCS:0,5,0,2,0,0,0,3]
Dec 16 23:51:58.69: [10994]: --> [7:CONNECT]
Dec 16 23:51:58.69: [10994]: SEND begin page
Dec 16 23:51:58.69: [10994]: <-- data [1033]
Dec 16 23:51:58.69: [10994]: <-- data [1025]
Dec 16 23:51:58.69: [10994]: <-- data [1025]
Dec 16 23:51:58.69: [10994]: <-- data [1025]
Dec 16 23:51:58.69: [10994]: <-- data [1025]
Dec 16 23:52:00.69: [10994]: <-- data [1026]
Dec 16 23:52:00.69: [10994]: <-- data [1030]
Dec 16 23:52:00.69: [10994]: <-- data [1034]
Dec 16 23:52:02.68: [10994]: <-- data [1028]
Dec 16 23:52:02.69: [10994]: <-- data [1026]
Dec 16 23:52:02.69: [10994]: <-- data [1034]
Dec 16 23:52:02.69: [10994]: <-- data [1034]
Dec 16 23:52:04.68: [10994]: <-- data [1041]
Dec 16 23:52:04.68: [10994]: <-- data [1027]
Dec 16 23:52:04.68: [10994]: <-- data [1025]
Dec 16 23:52:04.68: [10994]: <-- data [1027]
Dec 16 23:52:06.68: [10994]: <-- data [1024]
Dec 16 23:52:06.68: [10994]: <-- data [1026]
Dec 16 23:52:06.68: [10994]: <-- data [1024]
Dec 16 23:52:08.67: [10994]: <-- data [1026]
Dec 16 23:52:08.67: [10994]: <-- data [1025]
Dec 16 23:52:08.67: [10994]: <-- data [458]
Dec 16 23:52:08.67: [10994]: SENT 21960 bytes of data
Dec 16 23:52:08.67: [10994]: SEND 1D RTC
Dec 16 23:52:08.67: [10994]: <-- data [9]
Dec 16 23:52:08.67: [10994]: SEND end page
Dec 16 23:52:08.67: [10994]: SEND send MPS (more pages, same document)
Dec 16 23:52:08.67: [10994]: <-- data [2]
Dec 16 23:52:19.96: [10994]: --> [5:ERROR]
Dec 16 23:52:19.96: [10994]: SEND recv RTN (retrain negative)
Dec 16 23:52:19.96: [10994]: <-- [7:AT+FDT\r]
Dec 16 23:52:26.88: [10994]: --> [20:+FCS:0,5,0,2,0,0,0,3]
Dec 16 23:52:27.32: [10994]: --> [7:CONNECT]
Dec 16 23:52:27.32: [10994]: SEND begin page
Dec 16 23:52:27.32: [10994]: <-- data [1033]
Dec 16 23:52:27.32: [10994]: <-- data [1025]
Dec 16 23:52:27.32: [10994]: <-- data [1025]
Dec 16 23:52:27.32: [10994]: <-- data [1025]
Dec 16 23:52:27.32: [10994]: <-- data [1025]
Dec 16 23:52:29.32: [10994]: <-- data [1026]
Dec 16 23:52:29.32: [10994]: <-- data [1030]
Dec 16 23:52:29.32: [10994]: <-- data [1034]
Dec 16 23:52:31.31: [10994]: <-- data [1028]
Dec 16 23:52:31.31: [10994]: <-- data [1026]
Dec 16 23:52:31.32: [10994]: <-- data [1034]
Dec 16 23:52:31.32: [10994]: <-- data [1034]
Dec 16 23:52:33.31: [10994]: <-- data [1041]
Dec 16 23:52:33.31: [10994]: <-- data [1027]
Dec 16 23:52:33.31: [10994]: <-- data [1025]
Dec 16 23:52:33.31: [10994]: <-- data [1027]
Dec 16 23:52:35.31: [10994]: <-- data [1024]
Dec 16 23:52:35.31: [10994]: <-- data [1026]
Dec 16 23:52:35.31: [10994]: <-- data [1024]
Dec 16 23:52:37.30: [10994]: <-- data [1026]
Dec 16 23:52:37.30: [10994]: <-- data [1025]
Dec 16 23:52:37.30: [10994]: <-- data [458]
Dec 16 23:52:37.30: [10994]: SENT 21960 bytes of data
Dec 16 23:52:37.30: [10994]: SEND 1D RTC
Dec 16 23:52:37.30: [10994]: <-- data [9]
Dec 16 23:52:37.30: [10994]: SEND end page
Dec 16 23:52:37.30: [10994]: SEND send MPS (more pages, same document)
Dec 16 23:52:37.30: [10994]: <-- data [2]
Dec 16 23:52:48.59: [10994]: --> [5:ERROR]
Dec 16 23:52:48.59: [10994]: SEND recv RTN (retrain negative)
Dec 16 23:52:48.59: [10994]: <-- [7:AT+FDT\r]
Dec 16 23:52:55.49: [10994]: --> [20:+FCS:0,5,0,2,0,0,0,3]
Dec 16 23:52:55.94: [10994]: --> [7:CONNECT]
Dec 16 23:52:55.94: [10994]: SEND begin page
Dec 16 23:52:55.94: [10994]: <-- data [1033]
Dec 16 23:52:55.94: [10994]: <-- data [1025]
Dec 16 23:52:55.94: [10994]: <-- data [1025]
Dec 16 23:52:55.94: [10994]: <-- data [1025]
Dec 16 23:52:55.94: [10994]: <-- data [1025]
Dec 16 23:52:57.94: [10994]: <-- data [1026]
Dec 16 23:52:57.94: [10994]: <-- data [1030]
Dec 16 23:52:57.94: [10994]: <-- data [1034]
Dec 16 23:52:59.93: [10994]: <-- data [1028]
Dec 16 23:52:59.94: [10994]: <-- data [1026]
Dec 16 23:52:59.94: [10994]: <-- data [1034]
Dec 16 23:52:59.94: [10994]: <-- data [1034]
Dec 16 23:53:01.93: [10994]: <-- data [1041]
Dec 16 23:53:01.93: [10994]: <-- data [1027]
Dec 16 23:53:01.93: [10994]: <-- data [1025]
Dec 16 23:53:01.93: [10994]: <-- data [1027]
Dec 16 23:53:03.93: [10994]: <-- data [1024]
Dec 16 23:53:03.93: [10994]: <-- data [1026]
Dec 16 23:53:03.93: [10994]: <-- data [1024]
Dec 16 23:53:05.92: [10994]: <-- data [1026]
Dec 16 23:53:05.92: [10994]: <-- data [1025]
Dec 16 23:53:05.92: [10994]: <-- data [458]
Dec 16 23:53:05.92: [10994]: SENT 21960 bytes of data
Dec 16 23:53:05.92: [10994]: SEND 1D RTC
Dec 16 23:53:05.92: [10994]: <-- data [9]
Dec 16 23:53:05.92: [10994]: SEND end page
Dec 16 23:53:05.92: [10994]: SEND send MPS (more pages, same document)
Dec 16 23:53:05.93: [10994]: <-- data [2]
Dec 16 23:53:17.18: [10994]: --> [5:ERROR]
Dec 16 23:53:17.18: [10994]: SEND recv RTN (retrain negative)
Dec 16 23:53:17.18: [10994]: <-- [7:AT+FKS\r]
Dec 16 23:53:18.64: [10994]: --> [7:+FHS:02]
Dec 16 23:53:18.64: [10994]: REMOTE HANGUP: Call aborted,  from +FK or <CAN> (code 2)
Dec 16 23:53:18.64: [10994]: --> [5:ERROR]
Dec 16 23:53:18.64: [10994]: MODEM Command error
Dec 16 23:53:18.64: [10994]: <-- [5:ATH0\r]
Dec 16 23:53:18.83: [10994]: --> [10:NO CARRIER]
Dec 16 23:53:18.83: [10994]: MODEM No carrier
Dec 16 23:53:18.83: [10994]: SESSION END

Any Idea ?

Alex

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 17 Dec 1998 09:50:13 +0530
From: Raj Mathur <raju@sgi.com>
To: flexfax@sgi.com
Subject: flexfax: Multiple fax numbers for single message
Reply-To: raju@sgi.com
Sender: owner-flexfax@celestial.com

Is it possible to have HylaFAX use one of a list of fax numbers for a
remote site? E.g. if a recipient has 4 fax machines with 4 different
numbers, can I tell HylaFAX to send the message to whichever machine
it can get through to?

A hacked-up solution is fine :)

Thanks in advance,

-- Raju
--
       Raj Mathur / Web Technical Support / Silicon Graphics / New Delhi
                  +91-11-6216324/6219501 /    raju@sgi.com  / 551-7228
            http://reality.sgi.com/raju / Not necessarily speaking
           PGP: F2 D4 4A 21 27 B0 63 FF | for Silicon Graphics.
                15 97 9D AE 9D 40 BC B8 | It is the Mind that Moves

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Thu, 17 Dec 1998 13:12:28 -0500 (EST)
From: Patrick Gardella <patrick@cre8tivegroup.com>
To: Network Operations <noc@qtm.net>
Subject: RE: flexfax: HylaFax and FreeBSD
Cc: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

Have you tried the port of HylaFax for FreeBSD?  
/usr/ports/comms/hylafax

That ought to work!

Patrick

On 17-Dec-98 Network Operations wrote:
> Does there exist a version of HylaFax for FreeBSD 3.0?
> We have interest in running an email-to-fax gateway and believe that hylafax
> would be an option.
> Please advise
> Thank You
> 
> Network operations..
> Quantum Connections, LLC
> noc@qtm.net

---
Patrick S. Gardella                    Director of Web Development 
The Creative Group    1-800-804-0783 ext 29     606-858-8029 (fax)    
http://www.cre8tivegroup.com                 PGP Key ID 0xEE2D47A9

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: roberto.meyer@altavista.net
Date: Thu, 17 Dec 1998 18:12:05 -0500 (EST)
To: flexfax@sgi.com
Subject: flexfax: Fax-on-demand support
Sender: owner-flexfax@celestial.com

Dear people:

Is it posible to configure hylafax as a fax-on-demand server?

Which's exactly the difference between a polling server and fax-on-demand server?

I've a USRobotics 33600 voice/fax Sportster running on RedHat Linux 5.2

Thanx in advance.

--
Roberto Meyer
mailto:roberto.meyer@bigfoot.com
"Take ctrl 'oya boax.  Let't roar.  Tra' Linux."

----------------------------------------------------------------
Get your free email from AltaVista at http://altavista.iname.com

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Network Operations" <noc@qtm.net>
To: <flexfax@sgi.com>
Subject: flexfax: HylaFax and FreeBSD
Date: Thu, 17 Dec 1998 11:31:55 -0500
Importance: Normal
Sender: owner-flexfax@celestial.com

<x-html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
<HTML>
<HEAD>

<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<META content='"MSHTML 4.72.3510.1400"' name=GENERATOR>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><SPAN class=690412916-17121998><FONT color=#000000 face=Arial size=2>Does 
there exist a version of HylaFax for FreeBSD 3.0?</FONT></SPAN></DIV>
<DIV><SPAN class=690412916-17121998><FONT color=#000000 face=Arial size=2>We 
have interest in running an email-to-fax gateway and believe that hylafax would 
be an option.</FONT></SPAN></DIV>
<DIV><SPAN class=690412916-17121998><FONT color=#000000 face=Arial size=2>Please 
advise</FONT></SPAN></DIV>
<DIV><SPAN class=690412916-17121998><FONT color=#000000 face=Arial size=2>Thank 
You</FONT></SPAN></DIV>
<DIV><SPAN class=690412916-17121998><FONT color=#000000 face=Arial 
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=690412916-17121998><FONT color=#000000 face=Arial 
size=2>Network operations..</FONT></SPAN></DIV>
<DIV><SPAN class=690412916-17121998><FONT color=#000000 face=Arial 
size=2>Quantum Connections, LLC</FONT></SPAN></DIV>
<DIV><SPAN class=690412916-17121998><FONT color=#000000 face=Arial size=2><A 
href="mailto:noc@qtm.net">noc@qtm.net</A></FONT></SPAN></DIV></BODY></HTML>
</x-html>

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 18 Dec 1998 08:44:08 +1300 (NZDT)
From: Jonathan Chen <jonc@pinnacle.co.nz>
To: Network Operations <noc@qtm.net>
cc: flexfax@sgi.com
Subject: Re: flexfax: HylaFax and FreeBSD
Sender: owner-flexfax@celestial.com

On Thu, 17 Dec 1998, Network Operations wrote:

> Does there exist a version of HylaFax for FreeBSD 3.0?
> We have interest in running an email-to-fax gateway and believe that hylafax
> would be an option.
> Please advise

Have you tried compiling the sources? Check out http://www.hylafax.org
for where you can get it. It should compile and install clean on 
reeBSD machines.
--
Jonathan Chen
------------------------------------------------------------------------
"We laugh in the face of danger, we drop icecubes down the vest of fear"
                                                 - Edmond Blackadder III

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Fri, 18 Dec 1998 09:53:25 -0600
From: "Eric L. Anderson" <anderson@more.net>
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: How to disable the current time from being displayed in a pager 
 message...
Sender: owner-flexfax@celestial.com

We use sendpage with some monitoring software to send alpha-numeric
pages to our SysAdmins and Network staff. The resulting message
displayed on the pager has the message we wish to display _plus_ the
current time as already displayed on the pager. Is the time portion of
the message coming from the service provider or HylaFAX? Is there a way
to disable the time from showing up as part of the resulting message
(thus shortening the length of the message)?

Just for mailing-list sake we are using HylaFAX v4.0pl2 under Solaris
2.6/SPARC compiled with GCC 2.8.0 and using Multi-Tech MT1932ZDX modems.

Thanks
--
Eric L. Anderson
anderson@more.net

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: How to disable the current time from being displayed in a pager
To: anderson@more.net (Eric L. Anderson)
Date: Sat, 19 Dec 1998 14:51:27 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> current time as already displayed on the pager. Is the time portion of
> the message coming from the service provider or HylaFAX? Is there a way

Not from Hylafax.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Carl Patten" <cpatte@trimodalinc.com>
To: <flexfax@sgi.com>
Subject: flexfax: DigiFax errors (begging for help)
Date: Fri, 18 Dec 1998 10:46:34 -0600
Importance: Normal
Sender: owner-flexfax@celestial.com


My most humble apologies for bothering this list with a non-HylaFAX
question.  I do not currently have Usenet access, and I've searched
DejaNews, Digi's web site, etc. without success.  I'd like to at least try
to solve this DigiFax problem before dumping it for HylaFAX.  (DigiFax is
discontinued).

The setup is a SCO OpenServer 5.0.4 system with MultiTech MT2834BR modems
and DigiFax 2.9.0 sending faxes to a customer's PC running WinFax Lite on an
unknown modem.  When he was running Microsoft Fax, all was well, but after
he switched, my transmissions began failing with the following errors: (1)
"B-RspError"  (2) "Fail2Train".  The customer can't just switch back to
Microsoft Fax because of other software compatability issues.

Can anyone take a wild guess as to what the errors mean?  BTW, I'm getting
rid of DigiFax as soon as I get HylaFAX configured properly on SCO Unix.
It's been running great on my Linux box for several months.

Thank you very much.

--
Carl Patten
Systems Administrator
Trimodal Inc.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Sat, 19 Dec 1998 23:48:29 +0100 (CET)
From: HF <hylafax@astra.sif.it>
To: flexfax@sgi.com
Subject: flexfax: Zyxel 2864I
Sender: owner-flexfax@celestial.com


I have just upgraded to the latest development firmware from zyxel on my
2864i.(Version 2.99i)
Hylafax works better in transmit and receive mode.
Take a look at point 4.18 that is a specific fix for hylafax.

Alex





4. Fax/Modem related bugs fixed:
 ================================
 4.1  The modem can only connect into 4800 bps with USR Sposter if FRN is
      initiated in the first 10 seconds.
 4.2  When "+FZF=1" is set, the modem will disconnect data call after a
      fax call if no printer is connected.
 4.3  The response of Rx Level of internal modem is incorrect.
 4.4  The CONNECT message format is incorrect (CR,LF missed) when
"+FAA=1",
      "+FClass=2.0" is entered.
 4.5  Fix incompatibility problem when calling to Rockwell modems.
 4.6  The modem will not start FRN again in V.32 mode if it happened
before.
 4.7  Fix V.8 incompatibility problem with Motorola modems.
 4.8  Fix incompatibility problem with NEC or Dynalink 56k modem when ZyXEL
      modem is in the answer site.
 4.9  Fix bug: The "Chars Received" of command ati1 is always 0.
 4.10 AT commands
      ATZ4S0M0N0=1 should be responded with ERROR
      ATSr=n : when n > 255 should be responded with ERROR
      'ATMOLO'='ATDL'
      'ATO26'='ATD26'
      AT#REV=? will not respond with ERROR
      AT#CLS=? will not respond with ERROR
 4.11 Fix Bug: Some data will be lost during file transfer in XON/XOFF
      software flow control.
 4.12 The modem will hang up or retrain continuously after a period of
time
      when connect to K.56flex server site.
 4.13 Fix the incompatibility problem with V.90 protocol.
 4.14 The connect speed is not correct for "AT+FDCC=1,2" or "AT+FDCC=1,4".
 4.15 In fax mode, the modem should not report "CONNECT FAX" to DTE if
      S38.3=1 since this will cause some software to assume a data call.
 4.16 In standalone fax mode, the incoming call will detect "busy" during
FAX
      printing from DRAM.
 4.17 The double quote ("string") is missed out in command response of
+FTSI,
      +FCSI commands.
 4.18 The modem will send the first page three times and then drop it when
      using Unix fax software "HylaFax".

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Reply-To: <geoande@cape.com>
From: "George Anderson Jr" <geoande@cape.com>
To: <flexfax@sgi.com>
Subject: flexfax: libfaxutil.a
Date: Mon, 21 Dec 1998 07:53:32 -0500
Importance: Normal
Sender: owner-flexfax@celestial.com

hi all,


trying to install hylafax, sendpage cannot be created due to "no rule to
make target   ../util/libfaxutil.a , needed by sendpage .


i would've thought this would've been created during the install proceess
since it seemed to go smoothly with no errors, but the sendpage was not
created.



using hylafax v4.0pl2 installed from the tar.gz file


using redhat 5.2


thanks for any help you might be able to offer





:)



geo

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: <geoande@cape.com>
Cc: <flexfax@sgi.com>
Subject: Re: flexfax: libfaxutil.a
X-Face: "J~~0'L`GfL^sW4%+i35x#X308)K/$7\]qy)UZ$`k:}Bx]6mgAA^N5,@brn/19TPn%o;j28
 W7mD)UN~se8P9\3?wU.g+i9)X<UMbOZm.'#`6?=Ui1E8cy7mC&/?v=']>7+R?ls}.ZwTx]xsol>)V^
 SJ?(e|0H6<9+u;pn<Q@j_ozt/tP#@#!guy|`;"95429mFa}3Bi2Cu|~-90',b19}%cd_Wu-h/TqxKp
 1{w,,!R)9\+1tlD~oY'
From: Lee Willis <lee@gbdirect.co.uk>
Date: 21 Dec 1998 14:36:06 +0000
Lines: 21
User-Agent: Gnus/5.070068 (Pterodactyl Gnus v0.68) Emacs/20.3
Sender: owner-flexfax@celestial.com

"George Anderson Jr" <geoande@cape.com> writes:

> trying to install hylafax, sendpage cannot be created due to "no rule to
> make target   ../util/libfaxutil.a , needed by sendpage .
> 
> i would've thought this would've been created during the install proceess
> since it seemed to go smoothly with no errors, but the sendpage was not
> created.

We got similar errors with the same software but under RH5.1.  The error
message is cause by one of the fiels in the util directory failing to
compile and hence the libfaxutil.a library is not created. I can't
remember exactly what the fix is (It's something to do with gcc/egcs not
doing something it should if I remember correctly ...)   It is fixable
by playing with the source.  I'd suggest redirecting the output of make
into a file and checking very carefully for errors.

Lee.
-- 
I was doing object-oriented assembly at 1 year old ...  
For some reason my mom insists on calling it "Playing with blocks"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 21 Dec 1998 20:51:46 +0100
To: flexfax@sgi.com
From: bassan.michele@inforeti.it (Michele Bassan)
Subject: flexfax: Hylafax 4.0p12-3rh5
Sender: owner-flexfax@celestial.com

Dear sirs,
search in the hylafax.org archives gave no result, so here am I.

O'm trying to install on Linux Red Hat 5.2 the latest
Hylafax-4.0p12-3rh5_i386.rpm package.

rpm halts immediately saying:
failed dependencies:
       ghostscript-fonts-std >= 5.02 is needed for...

The package coming with RedHat 5.2 included ghostscript-fonts 4.03
and it did not work.

So I retrieved ghostscript-fonts 5.50 ( andaladdin ghostscript 5.5)
installed it, but still the dependencies failed.

I browsed the hylafax.org website looking for anything called
ghostscript-fonts-std, but found none.

Any hint?

Michele Bassan
Inforeti snc
Via Pellizzo, 39/B  int 19
Padova - ITALY
tel +39 0498079040 fax 0498087772
http://inforeti.it       bassan.michele@inforeti.it

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
To: bassan.michele@inforeti.it (Michele Bassan)
cc: flexfax@sgi.com
From: darren@hylafax.org
Subject: Re: flexfax: Hylafax 4.0p12-3rh5 
Date: Tue, 22 Dec 1998 04:04:23 +0000
Sender: owner-flexfax@celestial.com

In message <v01540b01b2a452c6ff20@[195.31.233.247]>, Michele Bassan writes:
>Dear sirs,
>search in the hylafax.org archives gave no result, so here am I.
>
>O'm trying to install on Linux Red Hat 5.2 the latest
>Hylafax-4.0p12-3rh5_i386.rpm package.
>
>rpm halts immediately saying:
>failed dependencies:
>       ghostscript-fonts-std >= 5.02 is needed for...
>
>The package coming with RedHat 5.2 included ghostscript-fonts 4.03
>and it did not work.
>
>So I retrieved ghostscript-fonts 5.50 ( andaladdin ghostscript 5.5)
>installed it, but still the dependencies failed.

Yes, sorry about that - this will be fixed in the next release. For now keep your funky new gs 5.5 installed and force the HylaFAX RPM to install with the --nodeps flag.

-Darren

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
X-Ncc-Regid: de.netcologne
Date: Mon, 21 Dec 1998 20:00:02 +0100
From: "Bert Blmer" <bluemer.bert@netcologne.de>
To: flexfax@sgi.com
Subject: flexfax: No Connect with remote Fax
Sender: owner-flexfax@celestial.com

Hi,

i am using HylaFAX since one year with an Class 1.0 Fax-Modem,
it works very good.

Now i have to install it (Version 4.0, pl2) on a new Machine with
a Class2.0 Modem (Elsa Microlink 56k), and the Fax-Modem does not 
connect with the remote Fax-Machine.

The remote Fax hooks off the phone, some tones , after a timeout
the remote Modem hooks on and my modem gets an busy-tone.
This is reported to HylaFAX, who tries another time, and so on.

I have used the Class2.0 configuration file and made some 
changes concerning the TSI and the dial-string.


Any help would be perfect!

(I am using Linux, the SuSE-Distribution 5.2).

Please excuse my bad english.

Bert

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 22 Dec 1998 11:07:50 +0530 (IST)
From: ravi katti <rkatti@cmie.com>
To: flexfax@sgi.com
Subject: flexfax: faxmail with attachment
Sender: owner-flexfax@celestial.com

Is it possible to to faxmail the attachment? I didnt get any replies for
my last posting on the same subject..Surprise.

-------------------------------------
Ravi Katti
Systems Administrator

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 22 Dec 1998 12:08:56 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: faxmail with attachment
Cc: ravi katti <rkatti@cmie.com>
Sender: owner-flexfax@celestial.com

At 11:07 22/12/98 +0530, ravi katti <rkatti@cmie.com> wrote:
>Is it possible to to faxmail the attachment? I didnt get any replies 
>for my last posting on the same subject..Surprise.
>

I am surprised as well. 

Have a look at the faxmail man page first to find out what HylaFAX will
do for you straight away, and how you can apply your own external convertors.

With postscript attachments there is a bug. I gave a summary of the
problem and the workrounds on the 4 Dec 98. Because the mailing list
archives are down at the moment, circa 30 messages from the mailing
list concerning the faxmail attachment bug, report #0019, have been 
published on my web site at :-

     http://www.elgro.demon.co.uk/faxmail/maillist.html

Since then Robert Colquhoun has also published an alpha patch to
try to resolve this problem. This was the 9 Dec 98, the day after
your original request.

Good Luck and a Merry Christmas,
Phil Watkinson,
Boston, UK.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 22 Dec 1998 14:38:44 +0800
From: Jacky Hui Chun Kit <ckhui@school.net.hk>
Reply-To: ckhui@school.net.hk
Organization: Hong Kong School Net, CUHK
To: "flexfax@sgi.com" <flexfax@sgi.com>
Subject: flexfax: Questions or Error Code
Sender: owner-flexfax@celestial.com

Dear Sir,

    I ahve encounter a error "No Response to MPS or EOP" when I send a
two files fax using "sendfax -n -d telno. file1.ps file2.ps" , I want to
know what should I do? Anyone encounter this and what does it mean?
    Thanks..



Best Rgds,
Jacky Hui

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 22 Dec 1998 21:25:11 +1300
From: Steve Rooke <SRooke@chhlth.govt.nz>
Organization: Canterbury Health Ltd
To: flexfax@sgi.com, SRooke@chhlth.govt.nz
Subject: flexfax: sendpage DATA problem with SUN Sparc binary distribution
Sender: owner-flexfax@celestial.com

Hi, I'm new to the list but having problems running sendpage with data
piped to the command.  Running 'sendpage -p user this is a test' works
fine as this seems to use the single line message mode of the SNPP.
Telnetting to the hfaxd daemon shows that the problem is with the DATA
command not recognising a single '.' on it's own line.

The software release is 'hylafax-sparc-sunos5_5-v4_0pl1-pkg' running
under Solaris 2.5.1.  I have SUN's ANSI C compiler installed but have no
support for C++ compilation and I'm not in a position to install the gnu
stuff.  If anyone has an answer/fix for this, please let me know.

Thanks,
Steve

--
Steve Rooke - SRooke@chhlth.govt.nz



**********************************************************************
This email and any files transmitted with it are confidential and 
intended solely for the use of the individual or entity to whom they   
are addressed. If you have received this email in error please notify 
the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**********************************************************************

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 22 Dec 1998 12:56:20 +0530
From: Raj Mathur <raju@sgi.com>
To: flexfax@sgi.com
Subject: flexfax: Multiple destination phone numbers
Reply-To: raju@sgi.com
Sender: owner-flexfax@celestial.com

Is it possible for the hylafax server to handle multiple phone/fax
numbers for a single destination? E.g. I want to send a fax to Company 
Foo, one any one of their fax numbers 111-1111, 111-2222 or
111-3333. If the fax succeeds to any one, the others shouldn't be
sent.

Regards,

-- Raju

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 22 Dec 1998 10:26:28 +0100
From: Carsten Hoeger <choeger@suse.de>
To: flexfax@sgi.com
Subject: flexfax: Just another faxsetup
Sender: owner-flexfax@celestial.com

Hello,

we are about to write a faxsetup with a graphical user interface.
The GUI is in tcl/tk and the base-program in perl.

This software uses ready-to-run modem configurations from
modems we use and know.

I attached the current version to this mail.
Feel free to test it.

Future versions will go to ftp.suse.com.

Please send us your modem-configuration, if your modem
is not in the list of -currently 3- modems.

-- 
mfG,
	Carsten Hoeger

+-----------------------------------------------------------+
| Carsten Hoeger                   SuSE GmbH                |
| choeger@suse.de                  Schanzaeckerstr. 10      |
| http://www.suse.de               90443 Nuernberg, Germany |
+-----------------------------------------------------------+

Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\faxsetup.tar.gz"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: "Vyacheslav Maslikhov" <v.maslikhov@globalone.ru>
To: <flexfax@sgi.com>
Cc: <v.maslikhov@globalone.ru>
Subject: flexfax: Any problems !!!
Date: Tue, 22 Dec 1998 16:02:57 +0300
Sender: owner-flexfax@celestial.com

<x-html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
<HTML><HEAD>
<META content=text/html;charset=koi8-r http-equiv=Content-Type>
<STYLE></STYLE>

<META content='"MSHTML 5.00.0910.1309"' name=GENERATOR></HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial>Hi !!!</FONT></DIV>
<DIV><FONT face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial>I have : </FONT><FONT face=Arial>HylaFAX v4.0pl2 under 
Linux 5.2 with gcc-2.7.2.3-14; ZyXEL 1496E with 6.11a firmware</FONT></DIV>
<DIV><FONT face=Arial>and I can't install HylaFAX on my computer.</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial>When I did :</FONT></DIV>
<DIV><FONT face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial>&nbsp;&nbsp;&nbsp;  zcat hylafax-v4.0pl2-tar.gz | tar xf 
-</FONT></DIV>
<DIV><FONT face=Arial>&nbsp;&nbsp;&nbsp; cd hylafax-v4.0pl2</FONT></DIV>
<DIV><FONT face=Arial>&nbsp;&nbsp;&nbsp; ./configure</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial>i see in my config.log file any errors,</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial>first :</FONT></DIV>
<DIV><FONT face=Arial>&nbsp;&nbsp;&nbsp; ...</FONT></DIV>
<DIV><FONT face=Arial>&nbsp;&nbsp;&nbsp; ++ cat xgnu.c<BR>&nbsp;&nbsp;&nbsp; 
#ifdef __GNUC__<BR>&nbsp;&nbsp;&nbsp; yes;<BR>&nbsp;&nbsp;&nbsp; 
#endif<BR>&nbsp;&nbsp;&nbsp; ++ gcc -E xgnu.c<BR>&nbsp;&nbsp;&nbsp; ++ egrep 
yes<BR>&nbsp;&nbsp;&nbsp; yes;<BR></FONT><FONT face=Arial>&nbsp;&nbsp;&nbsp; ++ 
test 272 -ge 261<BR>&nbsp;&nbsp;&nbsp; ++ gcc -o dummy 
dummy.C<BR>&nbsp;&nbsp;&nbsp; gcc: installation problem, cannot exec `cc1plus': 
No such file or directory</FONT></DIV>
<DIV><FONT face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial>second :</FONT></DIV>
<DIV><FONT face=Arial></FONT><FONT face=Arial>&nbsp;&nbsp;&nbsp; 
...</FONT></DIV>
<DIV><FONT face=Arial>&nbsp;&nbsp;&nbsp; ++ cat xgnu.c<BR>&nbsp;&nbsp;&nbsp; 
#ifdef __GNUC__<BR>&nbsp;&nbsp;&nbsp; yes;<BR>&nbsp;&nbsp;&nbsp; 
#endif<BR>&nbsp;&nbsp;&nbsp; ++ gcc -E xgnu.c<BR>&nbsp;&nbsp;&nbsp; ++ egrep 
yes<BR>&nbsp;&nbsp;&nbsp; yes;<BR>&nbsp;&nbsp;&nbsp; ++ test 272 -ge 
261<BR>&nbsp;&nbsp;&nbsp; ++ gcc -o dummy dummy.C<BR>&nbsp;&nbsp;&nbsp; gcc: 
installation problem, cannot exec `cc1plus': No such file or 
directory</FONT></DIV>
<DIV><FONT face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial>third :</FONT></DIV>
<DIV><FONT face=Arial>&nbsp;&nbsp;&nbsp; ...</FONT></DIV>
<DIV><FONT face=Arial>&nbsp;&nbsp;&nbsp; + /usr/bin/g++ -o dummy 
dummy.C</FONT></DIV>
<DIV><FONT face=Arial>&nbsp;&nbsp;&nbsp; ++ make -f confMakefile t</FONT></DIV>
<DIV><FONT face=Arial>&nbsp;&nbsp;&nbsp; /usr/bin/g++        -D__ANSI_CPP__ -I. 
-I. -I. -I././util -I/usr/local/include -I././regex -g -O  
t.c++<BR>&nbsp;&nbsp;&nbsp; ++ make -f confMakefile t<BR>&nbsp;&nbsp;&nbsp; 
/usr/bin/g++        -D__ANSI_CPP__ -I. -I. -I. -I././util -I/usr/local/include 
-I././regex -g -O  t.c++<BR>&nbsp;&nbsp;&nbsp; ++ cat t.c<BR>&nbsp;&nbsp;&nbsp; 
int t() { iopen(); return 0; }<BR>&nbsp;&nbsp;&nbsp; int main(){ t(); return 0; 
}<BR>&nbsp;&nbsp;&nbsp; ++ make -f confMakefile t<BR>&nbsp;&nbsp;&nbsp; 
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util -I/usr/local/include 
-I././regex -g -O  t.c -limage<BR>&nbsp;&nbsp;&nbsp; ld: cannot open -limage: No 
such file or directory<BR>&nbsp;&nbsp;&nbsp; make: *** [t] Error 1</FONT></DIV>
<DIV><FONT face=Arial>&nbsp;&nbsp;&nbsp; ++ cat t.c<BR>&nbsp;&nbsp;&nbsp; int 
t() { mallopt(); return 0; }<BR>&nbsp;&nbsp;&nbsp; int main(){ t(); return 0; 
}<BR>&nbsp;&nbsp;&nbsp; ++ make -f confMakefile t<BR>&nbsp;&nbsp;&nbsp; 
/usr/bin/gcc-D__ANSI_CPP__ -I. -I. -I. -I././util -I/usr/local/include 
-I././regex -g -O  t.c -lmalloc<BR>&nbsp;&nbsp;&nbsp; ld: cannot open -lmalloc: 
No such file or directory<BR>&nbsp;&nbsp;&nbsp; make: *** [t] Error 
1</FONT></DIV>
<DIV><FONT face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial>fourth :</FONT></DIV>
<DIV><FONT face=Arial>&nbsp;&nbsp;&nbsp; ...</FONT></DIV>
<DIV><FONT face=Arial>&nbsp;&nbsp;&nbsp; </FONT><FONT face=Arial>++ cat 
t.c<BR>&nbsp;&nbsp;&nbsp; int t() { crypt(); return 0; }<BR>&nbsp;&nbsp;&nbsp; 
int main(){ t(); return 0; }<BR>&nbsp;&nbsp;&nbsp; ++ make -f confMakefile 
t<BR>&nbsp;&nbsp;&nbsp; /usr/bin/gcc-D__ANSI_CPP__ -I. -I. -I. -I././util 
-I/usr/local/include -I././regex -g -O  t.c -lc<BR>&nbsp;&nbsp;&nbsp; 
/tmp/cca093751.o: In function `t':<BR>&nbsp;&nbsp;&nbsp; 
/tmp/hylafax-v4.0pl2/t.c:1: undefined reference to `crypt'<BR>&nbsp;&nbsp;&nbsp; 
make: *** [t] Error 1</FONT></DIV>
<DIV><FONT face=Arial></FONT>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial>The file &quot;cc1plus&quot; lies  in 
&quot;/usr/lib/gcc-lib/i386-red~t-linux/egcs-2.90.29&quot;&nbsp;together 
&quot;cpp&quot; and other.</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial>Please, answer me, can you help me to resolve this problem 
?</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial>Beforehand thank you.</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial>Best regards,</FONT></DIV>
<DIV><FONT face=Arial>Slava.</FONT></DIV></BODY></HTML>
</x-html>

Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\config.log"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 23 Dec 1998 08:22:12 +0100
From: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Organization: Transcom
X-Accept-Language: English, en, German, de
To: HylaFax Mailing liste <flexfax@sgi.com>
Subject: Re: flexfax: Any problems !!!
Sender: owner-flexfax@celestial.com

> Vyacheslav Maslikhov wrote:
> 
> Hi !!!
> 
> I have : HylaFAX v4.0pl2 under Linux 5.2 with gcc-2.7.2.3-14; ZyXEL
> 1496E with 6.11a firmware
> and I can't install HylaFAX on my computer.
> 
> When I did :
> 
>     zcat hylafax-v4.0pl2-tar.gz | tar xf -
>     cd hylafax-v4.0pl2
>     ./configure
> 
> i see in my config.log file any errors,
[..]
>     gcc: installation problem, cannot exec `cc1plus': No such file or
> directory

Hi,

your gcc and the developement enviroment is not installed propperly.

Whats Linux 5.2 ? The latest linux kernel version is 2.1.131 . 

Uli
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: Any problems !!!
To: v.maslikhov@globalone.ru (Vyacheslav Maslikhov)
Date: Tue, 22 Dec 1998 21:37:34 +0000 (GMT)
Cc: flexfax@sgi.com, v.maslikhov@globalone.ru
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

I'm afraid I'm going to dump this after replying as it is much too
big.  THe multipart/alternatieve doesn't help, and nor does declaring
a text/plain attachment as though it were unstructure binary.


>     ++ test 272 -ge 261
>     ++ gcc -o dummy dummy.C
>     gcc: installation problem, cannot exec `cc1plus': No such file or =
> directory

As it says, gcc is incompletely installed; specifically you don't have the
first pass of the C++ part of the compiler installed; at a guess you don't
have any C++ specific parts installed.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 22 Dec 1998 17:44:59 -0800
From: "Steven R. Robertson" <srobert@anv.net>
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: Compilation Trouble
Sender: owner-flexfax@celestial.com

I'm having a series of error messages when compiling HylaFAX-v4.0p12.
This is for a linux 2.0.36, i586 system.
The error starts as follows:
 
make[3]: Entering directory `/home/morgoth/hylafax-v4.0pl2/util'
/usr/bin/gcc      -I.././zlib			  -D__ANSI_CPP__ -I. -I.. -I.././util
-I.././util -I/usr/local/include -I.././regex -g -O -x c++ -c
SendFaxJob.c++
SendFaxJob.c++: In method `unsigned char SendFaxJob::createJob(class
SendFaxClient &, class fxStr &)':
SendFaxJob.c++:499: no matching function for call to
`SendFaxClient::sendZData (int &, unsigned char (FaxClient::)(fxStr &,
fxStr &), fxStr &, fxStr &)'
FaxClient.h:273: candidates are: FaxClient::sendZData(int, unsigned char
(FaxClient::*)(fxStr &, fxStr &), fxStr &, fxStr &)
make[3]: *** [SendFaxJob.o] Error 1

I'm not very experienced in programming. I'd appreciate if anyone can
tell me how to past this.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 23 Dec 1998 04:30:12 +0100
From: Peter Br <comet.friend@gmx.net>
To: flexfax@sgi.com
Subject: 1. USR modem problem  2. Re: flexfax: Just another faxsetup
Reply-To: comet.friend@gmx.net
Sender: owner-flexfax@celestial.com

Dear Mr. Hoeger,

this is a very good approach to a long-lasting "inconvenience".
However, even with this new setup program a could not resolve
a problem with my brand-new "3Com 56k Voice Faxmodem".

While everything appears to be ok for connections to other
faxmodems of various types, there's a snag with conventional
fax machines. Most of the data is transferred as required.
However, the final handshake fails:

"No response to EOP repeated 3 times"

The faxmodem is Class 2.0. What can I do to overcome this problem?

Any hints will be most welcome! Thanks in advance!

	Peter Br

On Tue, Dec 22, 1998 at 10:26:28AM +0100, Carsten Hoeger wrote:
> Hello,
> 
> we are about to write a faxsetup with a graphical user interface.
> The GUI is in tcl/tk and the base-program in perl.
> 
> This software uses ready-to-run modem configurations from
> modems we use and know.
> 
> I attached the current version to this mail.
> Feel free to test it.
> 
> Future versions will go to ftp.suse.com.
> 
> Please send us your modem-configuration, if your modem
> is not in the list of -currently 3- modems.
> 
> -- 
> mfG,
> 	Carsten Hoeger
> 
> +-----------------------------------------------------------+
> | Carsten Hoeger                   SuSE GmbH                |
> | choeger@suse.de                  Schanzaeckerstr. 10      |
> | http://www.suse.de               90443 Nuernberg, Germany |
> +-----------------------------------------------------------+



-- 
---------------------------------------------------------------------
	  The manual said the software required Windows 95
	  	   or better, so I installed Linux.
		     >>> comet.friend@gmx.net <<<
---------------------------------------------------------------------

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 22 Dec 1998 23:15:28 -0500
From: Bernie <bfb@att.net>
To: HylaFAX <flexfax@sgi.com>
Subject: flexfax: Re: Faxes stuck in queue
Sender: owner-flexfax@celestial.com

Whenever I use sendfax to send a fax, the
fax is queued in /var/spool/fax/sendq,
but is never transmitted.  The man page
states that the default time to send the
fax is 'now'.

I'm running hylafax-4.0pl2-3rh5.i386.rpm
on RdHat Linux 5.2.

Any suggestions would be greatly appreciated.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 23 Dec 1998 09:56:38 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: Re: Faxes stuck in queue
Cc: Bernie <bfb@att.net>
Sender: owner-flexfax@celestial.com

At 23:15 22/12/98 -0500, Bernie <bfb@att.net> wrote:
>Whenever I use sendfax to send a fax, the
>fax is queued in /var/spool/fax/sendq,
>but is never transmitted.  The man page
>states that the default time to send the
>fax is 'now'.
>
>I'm running hylafax-4.0pl2-3rh5.i386.rpm
>on RdHat Linux 5.2.
>
>Any suggestions would be greatly appreciated.
>

Hmmm, what does faxstat say? Mine says :

[root /root]# faxstat
HylaFAX scheduler on derrick.elgro.co.uk: Running
Modem ttyS1 (723304): Running and idle
[root /root]#

And while you are there at the prompt, what processes are
running? Mine are :

[root /root]# ps ax |grep fax
27438  p0 S    0:00 grep fax
  340  ?  S    0:00 /usr/local/sbin/faxq
  349  ?  S    0:00 /usr/local/sbin/hfaxd -i hylafax
  375  ?  S    0:00 /usr/local/sbin/faxgetty ttyS1
[root /root]#

Let us know.

Cheers,
Phil Watkinson,
Boston, UK.

From bfb@att.net  Thu Feb 11 13:16:08 1999
Sender: root
Date: Wed, 23 Dec 1998 08:30:04 -0500
From: Bernie <bfb@att.net>
To: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: Re: Faxes stuck in queue

> Hmmm, what does faxstat say? Mine says :
> 
> [root /root]# faxstat
> HylaFAX scheduler on derrick.elgro.co.uk: Running
> Modem ttyS1 (723304): Running and idle
> [root /root]#
> 
> And while you are there at the prompt, what processes are
> running? Mine are :
> 
> [root /root]# ps ax |grep fax
> 27438  p0 S    0:00 grep fax
>   340  ?  S    0:00 /usr/local/sbin/faxq
>   349  ?  S    0:00 /usr/local/sbin/hfaxd -i hylafax
>   375  ?  S    0:00 /usr/local/sbin/faxgetty ttyS1
> [root /root]#
> 


I have the faxq and hfaxd daemons running.
I don't have faxgetty running, as I don't
intend to receive faxes.

-Thanks


/home/super> faxstat
HylaFAX scheduler on localhost: Running

/home/super> ps aux|grep fax
root       513  0.0  0.5   836   348  p0 S    08:26   0:00 grep fax
uucp       311  0.0  2.3  2548  1484  ?  S    07:50   0:00
/usr/sbin/faxq
uucp       313  0.0  1.8  2380  1144  ?  S    07:50   0:00
/usr/sbin/hfaxd -i hy
/h

From bfb@att.net  Thu Feb 11 13:16:08 1999
Sender: root
Date: Wed, 23 Dec 1998 09:34:35 -0500
From: Bernie <bfb@att.net>
To: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: Re: Faxes stuck in queue

> Hmmm, what does faxstat say? Mine says :
> 
> [root /root]# faxstat
> HylaFAX scheduler on derrick.elgro.co.uk: Running
> Modem ttyS1 (723304): Running and idle
> [root /root]#
> 
> And while you are there at the prompt, what processes are
> running? Mine are :
> 
> [root /root]# ps ax |grep fax
> 27438  p0 S    0:00 grep fax
>   340  ?  S    0:00 /usr/local/sbin/faxq
>   349  ?  S    0:00 /usr/local/sbin/hfaxd -i hylafax
>   375  ?  S    0:00 /usr/local/sbin/faxgetty ttyS1
> [root /root]#


The problem was that I did not run faxgetty
on this particular modem.  I thought faxgetty
needed to be used only if you wanted to receive
faxes.

-Thanks

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Wed, 23 Dec 1998 15:49:25 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: Re: Faxes stuck in queue
Cc: Bernie <bfb@att.net>
Sender: owner-flexfax@celestial.com

At 08:30 23/12/98 -0500, Bernie wrote directly to me:
>
>I have the faxq and hfaxd daemons running.
>I don't have faxgetty running, as I don't
>intend to receive faxes.
>
>-Thanks
>
>
>/home/super> faxstat
>HylaFAX scheduler on localhost: Running
>
>/home/super> ps aux|grep fax
>root       513  0.0  0.5   836   348  p0 S    08:26   0:00 grep fax
>uucp       311  0.0  2.3  2548  1484  ?  S    07:50   0:00
>/usr/sbin/faxq
>uucp       313  0.0  1.8  2380  1144  ?  S    07:50   0:00
>/usr/sbin/hfaxd -i hy
>/h

Hi, Bernie,

True, you don't have to have faxgetty running, although if you intend
having the modem on all the time, or have unattended operation, then
I would recommend using faxgetty even if you only send faxes.

What you need instead is 'faxstate', [ note, not faxstat ] to tell
HylaFAX that it can use the modem. Have a look at the man page, 
remember you will need the -n option to talk directly to the faxq
process. Something like :

      $ faxstate -s ready -n ttyS1 

where ttyS1 is the modem port on my system, it maybe different on 
your system.

Cheers,
Phil Watkinson,
Boston, UK.

 

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 14 Dec 1998 21:04:38 +0800
From: CN Liu <cn@mail.sinyih.com.tw>
Organization: Sinyih Ceramic Co., Ltd
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: Probemodem and faxmodem Fail
Sender: owner-flexfax@celestial.com

Hello!

I fail to configure hylafax 4.0pl2 for Zyxel 1496E in Linux 2.0.35.
Replacing Zyxel 1496E with another low-end modem still can not generate
any workable speed by probemodem.

These are what I tried:

mail:/var/spool/fax# probemodem cua0
Hmm, there does not appear to be an fuser command on your machine.
This means that I am unable to insure that all processes using the
modem have been killed.  I will keep going, but beware that you may
have competition for the modem.

Now we are going to probe the tty port.  This takes a few seconds,
so be patient.  Note that if you do not have the modem cabled to
the port, or the modem is turned off, this may hang (just go and
cable up the modem or turn it on, or whatever).

Probing for best speed to talk to modem: 38400 19200 9600 4800 2400 1200

Unable to deduce DTE-DCE speed; check that you are using the
correct device and/or that your modem is setup properly.  If
all else fails, try the -s option to lock the speed.

mail:/var/spool/fax# cu -s 38400 -l cua0
Connected.
at+fsp=?
0,1
OK
at+fclass=2.0
OK
at+fcc=?
(0,1),(0-5),(0-2),(0-2),(0,1),(0,1),(0),(0-7)
OK
Killed
mail:/var/spool/fax# faxmodem -c
"(0,1),(0-5),(0-2),(0-2),(0,1),(0,1),(0),(0-7)
" cua0
FIFO: open: No such device or address
mail:/var/spool/fax# ls -l
prw-------   1 uucp     10              0 Oct 28 19:28 FIFO|
drwx------   2 uucp     uucp         1024 Oct 27 18:08 archive/
drwxr-xr-x   2 uucp     uucp         1024 Dec 23 14:20 bin/
drwxr-xr-x   2 uucp     uucp         1024 Oct 29 18:55 client/
drwxr-xr-x   2 uucp     uucp         1024 Dec 23 19:04 config/
prw-r--r--   1 root     root            0 Dec 23 19:07 cua0|
....

(I manually created cua0| manually before running faxmodem -c.)

Script probemodem is too complicate for me to trace. I have no clue.
Please help!

Thanks a lot!

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Tue, 15 Dec 1998 21:28:16 +0800
From: CN Liu <cn@mail.sinyih.com.tw>
Organization: Sinyih Ceramic Co., Ltd
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: Configure Errors
Sender: owner-flexfax@celestial.com

Hi!

Because my probemodem fails to get the workable speed from Zyxel 1496e,
I tried to recompile everything.

The OS=Linux 2.0.35 upgraded from Slackware 3.5, Hylafax=4.0pl2,
gcc=2.8.1.

Because some programs, like faxq, are not generated, I went back and
check config.log.  Applying gcc-2.8.x.patch can not remove these error,
either. I would appreciate if anyone can help:

Regards,
----------------------------------
.....
++ /usr/bin/gcc -o dummy dummy.C
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
++ cat t.c
int t() { iopen(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
ld: cannot open -limage: No such file or directory
make: *** [t] Error 1
++ cat t.c
int t() { mallopt(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
ld: cannot open -lmalloc: No such file or directory
make: *** [t] Error 1
++ cat t.c
.....

From owner-flexfax@celestial.com  Thu Feb 11 13:16:08 1999
Date: Mon, 21 Dec 1998 08:27:57 +0800
From: CN Liu <cn@mail.sinyih.com.tw>
Organization: Sinyih Ceramic Co., Ltd
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: Patch & Configure Fail
Sender: owner-flexfax@celestial.com

Greetings!

I have removed the hylafax4.0pl2 source directories and started all over
again for many times trying to build everything (on gcc2.8.1, Linux
2.0.35 upgrade from Slackware). Both gcc-2.8.x.patch and configure have
errors.

I really have no idea how to proceed. Any help will be much appreciated!

Thanks!

CN
=============
myserver:/usr/src# patch <gcc-2.8.x.patch
Hmm...  Looks like a new-style context diff to me...
The text leading up to this was:
--------------------------
|# gcc-2.8.x.patch
|# Submitted by Robert Colquhoun
|#
|# For all versions of the GNU compiler gcc 2.8.0 and above, including
egcs
|#
|# Instructions : cd to the directory *above* the source, and run the
|# command 'patch < gcc-2.8.x.patch'
|
|diff -cr hylafax-v4.0pl2/hfaxd/FileSystem.c++
hylafax-v4.0pl2.new/hfaxd/FileSy+
|*** hylafax-v4.0pl2/hfaxd/FileSystem.c++        Sat Feb 14 21:50:01
1998
|--- hylafax-v4.0pl2.new/hfaxd/FileSystem.c++    Fri Feb 20 14:43:48
1998
--------------------------
Patching file hylafax-v4.0pl2/hfaxd/FileSystem.c++ using Plan A...
Hunk #1 failed at 139.
1 out of 1 hunks failed--saving rejects to
hylafax-v4.0pl2/hfaxd/FileSystem.c++j
Hmm...  The next patch looks like a new-style context diff to me...
The text leading up to this was:
--------------------------
|diff -cr hylafax-v4.0pl2/hfaxd/OldProtocol.c++
hylafax-v4.0pl2.new/hfaxd/OldPr+
|*** hylafax-v4.0pl2/hfaxd/OldProtocol.c++       Sat Feb 14 21:50:07
1998
|--- hylafax-v4.0pl2.new/hfaxd/OldProtocol.c++   Fri Feb 20 14:33:30
1998
--------------------------
Patching file hylafax-v4.0pl2/hfaxd/OldProtocol.c++ using Plan A...
Hunk #1 failed at 220.
Hunk #2 failed at 604.
Hunk #3 failed at 752.
3 out of 3 hunks failed--saving rejects to
hylafax-v4.0pl2/hfaxd/OldProtocol.c+j
Hmm...  The next patch looks like a new-style context diff to me...
The text leading up to this was:
--------------------------
|diff -cr hylafax-v4.0pl2/util/SendFaxClient.c++
hylafax-v4.0pl2.new/util/SendF+
|*** hylafax-v4.0pl2/util/SendFaxClient.c++      Sat Feb 14 21:47:24
1998
|--- hylafax-v4.0pl2.new/util/SendFaxClient.c++  Thu Feb 19 22:32:01
1998
--------------------------
Patching file hylafax-v4.0pl2/util/SendFaxClient.c++ using Plan A...
Hunk #1 failed at 457.
1 out of 1 hunks failed--saving rejects to
hylafax-v4.0pl2/util/SendFaxClient.cj
Hmm...  The next patch looks like a new-style context diff to me...
The text leading up to this was:
--------------------------
|diff -cr hylafax-v4.0pl2/util/SendFaxJob.c++
hylafax-v4.0pl2.new/util/SendFaxJ+
|*** hylafax-v4.0pl2/util/SendFaxJob.c++ Sat Feb 14 21:47:24 1998
|--- hylafax-v4.0pl2.new/util/SendFaxJob.c++     Fri Feb 20 15:38:37
1998
--------------------------
Patching file hylafax-v4.0pl2/util/SendFaxJob.c++ using Plan A...
Hunk #1 failed at 496.
1 out of 1 hunks failed--saving rejects to
hylafax-v4.0pl2/util/SendFaxJob.c++.j
Hmm...  The next patch looks like a new-style context diff to me...
The text leading up to this was:
--------------------------
|diff -cr hylafax-v4.0pl2/util/faxconfig.c
hylafax-v4.0pl2.new/util/faxconfig.c
|*** hylafax-v4.0pl2/util/faxconfig.c    Sat Feb 14 21:47:57 1998
|--- hylafax-v4.0pl2.new/util/faxconfig.c        Thu Feb 19 22:36:32
1998
--------------------------
Patching file hylafax-v4.0pl2/util/faxconfig.c using Plan A...
Hunk #1 succeeded at 51 with fuzz 2.
Hunk #2 succeeded at 123 with fuzz 2.
Hmm...  The next patch looks like a new-style context diff to me...
The text leading up to this was:
....(The rest all succeed)

myserver:/usr/src/hylafax-v4.0pl2#cat config.log
.....
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
++ cat t.c
int t() { iopen(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
ld: cannot open -limage: No such file or directory
make: *** [t] Error 1
++ cat t.c
int t() { mallopt(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
ld: cannot open -lmalloc: No such file or directory
make: *** [t] Error 1
++ cat t.c
int t() { crypt(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
++ cat t.c
int t() { strftime(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
++ cat t.c
int t() { socket(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
++ cat t.c
int t() { logwtmp(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
ld: cannot open -lutil: No such file or directory
make: *** [t] Error 1
++ cat t.c
int t() { ftruncate(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
++ cat t.c
int t() { flock(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
++ cat t.c
int t() { openlog(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
++ cat t.c
int t() { pututxline(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc        -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
/tmp/cca258871.o: In function `t':
/usr/src/hylafax-v4.0pl2/t.c:1: undefined reference to `pututxline'
make: *** [t] Error 1
.....(No more error follows)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: Questions or Error Code
To: ckhui@school.net.hk
Date: Tue, 22 Dec 1998 21:45:58 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> Dear Sir,

To avoid confusion, this is a mutual support group, not a support company.

>     I ahve encounter a error "No Response to MPS or EOP" when I send a
> two files fax using "sendfax -n -d telno. file1.ps file2.ps" , I want to
> know what should I do? Anyone encounter this and what does it mean?

The modem did not respond when Hylafax signalled end of page.  In default
of adequate information, check your flow control, but really we
need modem, operating system and Hylafax versions, any manual configuration
changes and a detailed session log.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 23 Dec 1998 10:36:09 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: Compilation Trouble
Cc: "Steven R. Robertson" <srobert@anv.net>
Sender: owner-flexfax@celestial.com

At 17:44 22/12/98 -0800, "Steven R. Robertson" wrote:
>I'm having a series of error messages when compiling HylaFAX-v4.0p12.
>This is for a linux 2.0.36, i586 system.
>The error starts as follows:
> 
>make[3]: Entering directory `/home/morgoth/hylafax-v4.0pl2/util'
>[snip]
>
>I'm not very experienced in programming. I'd appreciate if anyone can
>tell me how to past this.
> 

Hi,

This is the new Slackware release 3.5? There has been quite a few
messages on the hylafax mailing list about this - hylafax needs the
gcc-2.8 patch to be applied for systems with the gcc-2.8 or egcs
compilers; you can fetch the patch from 
          http://www.hylafax.org/patches/

If you have a RedHat 5.x system, however, there is a rpm binary
package which will save a *lot* of hard work at :
         ftp://ftp.hylafax.org/pub/hylafax/binary/

HTH,
Phil Watkinson,
Boston, UK.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 23 Dec 1998 17:38:01 +0000
From: Darrell Berry <darrellb@hhcl.com>
Organization: HHCL+P
To: flexfax@sgi.com
Subject: flexfax: 32-bit TIFF viewer for NT?
Sender: owner-flexfax@celestial.com

the author of WHFC recommends a thing called tiffview, but the homepage
for it sez it doesn't like win32...has anyone found a solution what will
work as a fax viewer on NT4?

thnx

-- 
"a gust of wind...a dog barks..."

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: 32-bit TIFF viewer for NT?
To: darrellb@hhcl.com (Darrell Berry)
Date: Wed, 23 Dec 1998 20:55:23 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> 
> the author of WHFC recommends a thing called tiffview, but the homepage
> for it sez it doesn't like win32...has anyone found a solution what will
> work as a fax viewer on NT4?

Wang (now Kodak?) Imaging, as supplied with NT4.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Thu, 24 Dec 1998 01:58:02 +0100
From: Philipp Steinkrueger <philipp@oberberg-online.de>
To: Darrell Berry <darrellb@hhcl.com>
CC: flexfax@sgi.com
Subject: Re: flexfax: 32-bit TIFF viewer for NT?
Sender: owner-flexfax@celestial.com

Darrell Berry schrieb:
> 
> the author of WHFC recommends a thing called tiffview, but the homepage
> for it sez it doesn't like win32...has anyone found a solution what will
> work as a fax viewer on NT4?

check out www.hylafax.org. there you will find a list of software
including
viewers.

phil

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
To: flexfax@sgi.com
Path: not-for-mail
From: "Eloy A. Paris" <eparis@ven.ra.rockwell.com>
Newsgroups: lists.hylafax
Subject: Re: flexfax: 32-bit TIFF viewer for NT?
Date: 24 Dec 1998 12:15:17 GMT
Organization: Rockwell Automation Venezuela
Lines: 11
Distribution: world
NNTP-Posting-Host: zeus.ven.ra.rockwell.com
X-Server-Date: 24 Dec 1998 12:15:17 GMT
User-Agent: tin/pre-1.4-981002 ("Phobia") (UNIX) (Linux/2.0.36 (i686))
Sender: owner-flexfax@celestial.com

Darrell Berry <darrellb@hhcl.com> wrote:

> the author of WHFC recommends a thing called tiffview, but the homepage
> for it sez it doesn't like win32...has anyone found a solution what will
> work as a fax viewer on NT4?

Windows NT comes with Imaging, which you will find in Start
menu:Programs:Accesories. I find Imaging very useful and so far I
haven't had any problems using it to view faxes received by HylaFAX.

peloy.-

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: "George Anderson Jr" <geoande@cape.com>
To: <flexfax@sgi.com>
Subject: flexfax: Windows client for hylafax server
Date: Thu, 24 Dec 1998 06:01:03 -0500
Importance: Normal
Sender: owner-flexfax@celestial.com

hi all,

and a big seasons greetings to all of you. what are the majority of you
using for a windows based client to fax into your hylafax server?



many thanks



:)


geo





George Anderson JR
West Yarmouth, Ma
geoande@cape.com

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Thu, 24 Dec 1998 13:22:23 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: Windows client for hylafax server
Cc: "George Anderson Jr" <geoande@cape.com>
Sender: owner-flexfax@celestial.com

At 06:01 24/12/98 -0500, "George Anderson Jr" wrote:
>hi all,
>
>and a big seasons greetings to all of you. what are the majority of you
>using for a windows based client to fax into your hylafax server?
>

Howdy,

We use Ulrich Eckhardt's whfc program available from :
             http://www.transcom.de/whfc

Merry Christmas,
Phil Watkinson,
Boston, UK.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Thu, 24 Dec 1998 22:40:03 +0800
From: Jacky Hui Chun Kit <ckhui@school.net.hk>
Reply-To: ckhui@school.net.hk
Organization: Hong Kong School Net, CUHK
To: flexfax@sgi.com, david@djwhome.demon.co.uk
Subject: Re: flexfax: Questions or Error Code
Sender: owner-flexfax@celestial.com

Dear ,

    Thanks for your response, actually, I can send fax to some machine but not
most. I am guessing whether this is a modem/flow control problem or
modem <- > fax machine problem.
    My OS is Redhat 5.1, hylafax-4.0pl2 from hylafax-4.0pl2-3rh5.i386.rpm,
modem is Hayes ACCURA 56K + FAX flash rom upgraded to V.90.
    Thanks.  I really hope to solve the problem....
    Besides, are there any other WIN32 client for hylafax other than whfc?
    Merry Christmas and Happy New Year.


Best Rgds,
Jacky Hui

Attached are one of the trace

    ---- Transcript of session follows ----

Dec 22 13:23:12.65: [ 7221]: SESSION BEGIN 00000036 85223496359
Dec 22 13:23:12.66: [ 7221]: SEND FAX: JOB 51 DEST 23496359 COMMID 00000036
Dec 22 13:23:12.66: [ 7221]: DELAY 2600 ms
Dec 22 13:23:15.27: [ 7221]: <-- [15:ATE0V1Q0S0=0H0\r]
Dec 22 13:23:15.29: [ 7221]: --> [2:OK]
Dec 22 13:23:15.29: [ 7221]: <-- [12:ATS8=2S7=60\r]
Dec 22 13:23:15.31: [ 7221]: --> [2:OK]
Dec 22 13:23:15.31: [ 7221]: <-- [12:AT+FCLASS=1\r]
Dec 22 13:23:15.33: [ 7221]: --> [2:OK]
Dec 22 13:23:15.33: [ 7221]: <-- [5:ATM0\r]
Dec 22 13:23:15.34: [ 7221]: --> [2:OK]
Dec 22 13:23:15.34: [ 7221]: <-- [12:AT+FCLASS=1\r]
Dec 22 13:23:15.46: [ 7221]: --> [2:OK]
Dec 22 13:23:15.47: [ 7221]: DIAL 23496359
Dec 22 13:23:15.47: [ 7221]: <-- [13:ATDT23496359\r]
Dec 22 13:23:28.68: [ 7221]: --> [7:CONNECT]
Dec 22 13:23:29.93: [ 7221]: --> [2:OK]
Dec 22 13:23:29.93: [ 7221]: <-- [9:AT+FRH=3\r]
Dec 22 13:23:29.95: [ 7221]: --> [7:CONNECT]
Dec 22 13:23:30.65: [ 7221]: --> [2:OK]
Dec 22 13:23:30.65: [ 7221]: REMOTE CSI "+852 2349 6359"
Dec 22 13:23:30.65: [ 7221]: <-- [9:AT+FRH=3\r]
Dec 22 13:23:30.67: [ 7221]: --> [7:CONNECT]
Dec 22 13:23:30.90: [ 7221]: --> [2:OK]
Dec 22 13:23:30.90: [ 7221]: REMOTE best rate 9600 bit/s
Dec 22 13:23:30.90: [ 7221]: REMOTE max page width 1728 pixels in 215 mm
Dec 22 13:23:30.90: [ 7221]: REMOTE max unlimited page length
Dec 22 13:23:30.90: [ 7221]: REMOTE best vres 7.7 line/mm
Dec 22 13:23:30.90: [ 7221]: REMOTE best format 2-D MR
Dec 22 13:23:30.90: [ 7221]: REMOTE supports T.30 Annex A, ECM
Dec 22 13:23:30.90: [ 7221]: REMOTE best 20 ms, 10 ms/scanline
Dec 22 13:23:30.90: [ 7221]: USE 9600 bit/s
Dec 22 13:23:30.90: [ 7221]: USE 20 ms, 10 ms/scanline
Dec 22 13:23:30.90: [ 7221]: SEND file "docq/doc61.ps;31"
Dec 22 13:23:30.90: [ 7221]: USE page width 1728 pixels in 215 mm
Dec 22 13:23:30.90: [ 7221]: USE unlimited page length
Dec 22 13:23:30.90: [ 7221]: USE 7.7 line/mm
Dec 22 13:23:30.90: [ 7221]: USE 1-D MR
Dec 22 13:23:30.90: [ 7221]: SEND training at v.29 9600 bit/s
Dec 22 13:23:30.90: [ 7221]: <-- [9:AT+FTH=3\r]
Dec 22 13:23:30.95: [ 7221]: --> [7:CONNECT]
Dec 22 13:23:32.74: [ 7221]: --> [7:CONNECT]
Dec 22 13:23:33.18: [ 7221]: --> [2:OK]
Dec 22 13:23:33.18: [ 7221]: DELAY 75 ms
Dec 22 13:23:33.27: [ 7221]: <-- [10:AT+FTM=96\r]
Dec 22 13:23:33.33: [ 7221]: --> [7:CONNECT]
Dec 22 13:23:35.29: [ 7221]: --> [2:OK]
Dec 22 13:23:35.29: [ 7221]: <-- [9:AT+FRH=3\r]
Dec 22 13:23:36.16: [ 7221]: --> [7:CONNECT]
Dec 22 13:23:37.06: [ 7221]: --> [2:OK]
Dec 22 13:23:37.06: [ 7221]: TRAINING succeeded
Dec 22 13:23:37.06: [ 7221]: <-- [10:AT+FTM=96\r]
Dec 22 13:23:37.12: [ 7221]: --> [7:CONNECT]
Dec 22 13:23:37.12: [ 7221]: SEND begin page
Dec 22 13:23:49.11: [ 7221]: SENT 25782 bytes of data
Dec 22 13:24:03.08: [ 7221]: SENT 25861 bytes of data
Dec 22 13:24:09.07: [ 7221]: SENT 11120 bytes of data
Dec 22 13:24:09.07: [ 7221]: SEND 1D RTC
Dec 22 13:24:09.07: [ 7221]: SEND end page
Dec 22 13:24:20.14: [ 7221]: --> [2:]
Dec 22 13:24:20.14: [ 7221]: --> [2:OK]
Dec 22 13:24:20.14: [ 7221]: DELAY 75 ms
Dec 22 13:24:20.23: [ 7221]: SEND send MPS (more pages, same document)
Dec 22 13:24:20.23: [ 7221]: <-- [9:AT+FTH=3\r]
Dec 22 13:24:20.28: [ 7221]: --> [7:CONNECT]
Dec 22 13:24:21.59: [ 7221]: --> [2:OK]
Dec 22 13:24:21.59: [ 7221]: <-- [9:AT+FRH=3\r]
Dec 22 13:24:24.69: [ 7221]: --> [0:]
Dec 22 13:24:24.69: [ 7221]: MODEM <Empty line>
Dec 22 13:24:24.75: [ 7221]: --> [2:OK]
Dec 22 13:24:24.75: [ 7221]: SEND send MPS (more pages, same document)
Dec 22 13:24:24.75: [ 7221]: <-- [9:AT+FTH=3\r]
Dec 22 13:24:24.81: [ 7221]: --> [7:CONNECT]
Dec 22 13:24:26.13: [ 7221]: --> [2:OK]
Dec 22 13:24:26.13: [ 7221]: <-- [9:AT+FRH=3\r]
Dec 22 13:24:29.23: [ 7221]: --> [0:]
Dec 22 13:24:29.23: [ 7221]: MODEM <Empty line>
Dec 22 13:24:29.29: [ 7221]: --> [2:OK]
Dec 22 13:24:29.29: [ 7221]: SEND send MPS (more pages, same document)
Dec 22 13:24:29.29: [ 7221]: <-- [9:AT+FTH=3\r]
Dec 22 13:24:29.35: [ 7221]: --> [7:CONNECT]
Dec 22 13:24:30.65: [ 7221]: --> [2:OK]
Dec 22 13:24:30.65: [ 7221]: <-- [9:AT+FRH=3\r]
Dec 22 13:24:33.75: [ 7221]: --> [0:]
Dec 22 13:24:33.75: [ 7221]: MODEM <Empty line>
Dec 22 13:24:33.81: [ 7221]: --> [2:OK]
Dec 22 13:24:33.81: [ 7221]: <-- [9:AT+FTH=3\r]
Dec 22 13:24:33.86: [ 7221]: --> [7:CONNECT]
Dec 22 13:24:35.17: [ 7221]: --> [2:OK]
Dec 22 13:24:35.17: [ 7221]: <-- [5:ATH0\r]
Dec 22 13:24:35.88: [ 7221]: --> [2:OK]
Dec 22 13:24:35.88: [ 7221]: SESSION END

To: ckhui@linux1.sch  Date: 12/22/98 13:27
Error: No response to MPS or EOP repeated 3 tries




David Woolley wrote:

> > Dear Sir,
>
> To avoid confusion, this is a mutual support group, not a support company.
>
> >     I ahve encounter a error "No Response to MPS or EOP" when I send a
> > two files fax using "sendfax -n -d telno. file1.ps file2.ps" , I want to
> > know what should I do? Anyone encounter this and what does it mean?
>
> The modem did not respond when Hylafax signalled end of page.  In default
> of adequate information, check your flow control, but really we
> need modem, operating system and Hylafax versions, any manual configuration
> changes and a detailed session log.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Mon, 28 Dec 1998 13:19:53 +0800
From: Jacky Hui Chun Kit <ckhui@school.net.hk>
Reply-To: ckhui@school.net.hk
Organization: Hong Kong School Net, CUHK
To: flexfax@sgi.com
Subject: Re: flexfax: Questions or Error Code
Sender: owner-flexfax@celestial.com

Dear All,

    I would like to give some more info on my problem,

THe ROM version of my modemis as follow
----------------
ATI3I6
V2.083H2-K56_DLS

RC56DPF L8570A Rev 47.22/47.22
----------------

Here is my config.cua0
----------------
CountryCode:  852
#AreaCode:  415
FAXNumber:  29943269
LongDistancePrefix: 001
InternationalPrefix: 001
DialStringRules: etc/dialrules
ServerTracing:  1
SessionTracing:  11
RecvFileMode:  0600
LogFileMode:  0600
DeviceMode:  0600
RingsBeforeAnswer: 2
SpeakerVolume:  off
GettyArgs:  "-h %l %s"
LocalIdentifier: CyberCampus-Fax
TagLineFont:  etc/lutRS18.pcf
TagLineFormat:  "From %%l|%c|Page %%p of %%t"
MaxRecvPages:  25
#
#
# Modem-related stuff: should reflect modem command interface
# and hardware connection/cabling (e.g. flow control).
#
ModemType:  Class1  # use this to supply a hint
#ModemRate:  19200  # rate for DCE-DTE communication
#ModemFlowControl: xonxoff  # XON/XOFF flow control assumed
#
#ModemSetupDTRCmd: AT&D2  # setup so DTR drop resets modem
#ModemSetupDCDCmd: AT&C1  # setup so DCD follows carrier
#GettyArgs:  "-h %l %s" # modem must auto-detect fax/data
#
# We normally append the "@" symbol to the dial string so that
# the modem will wait 5 seconds before attempting to connect
# and return result codes that distinguish between no carrier
# and no answer.  This makes it possible to avoid problems with
# repeatedly dialing a number that doesn't have a fax machine
# (kudos to Stuart Lynne for this trick.)
#
# NB: If you need to prefix phone numbers to get through a PBX,
#     put it in the ModemDialCmd; e.g. "DT9%s@".
#
#ModemDialCmd:  ATDT%s@  # T for tone dialing, @ for silence
#
# Other possible configuration stuff.  The default strings are
# shown below.  Only those that are different from the defaults
# need to be included in the configuration file.
#
#ModemResetCmds:  ""  # stuff to do when modem is reset
#ModemAnswerCmd:  ATA  # use this to answer phone
#ModemNoFlowCmd:  AT&K  # disable flow control cmd
#ModemHardFlowCmd: AT&K3  # hardware flow control cmd
#ModemSoftFlowCmd: AT&K4  # software flow control cmd
#ModemNoAutoAnswerCmd: ATS0=0  # disable auto-answer
#
# Set modem speaker volume commands: OFF QUIET LOW MEDIUM HIGH.
# Note that we both turn the speaker on/off and set volume.
#
#ModemSetVolumeCmd: "ATM0 ATL0M1 ATL1M1 ATL2M1 ATL3M1"
#ModemEchoOffCmd: ATE0  # disable command echo
#ModemVerboseResultsCmd: ATV1  # enable verbose command results
#ModemResultCodesCmd: ATQ0  # enable result codes
#ModemOnHookCmd:  ATH0  # place phone on hook (hangup)
#ModemSoftResetCmd: ATZ  # do soft reset of modem
#ModemWaitTimeCmd: ATS7=60  # wait 60 seconds for carrier
#ModemCommaPauseTimeCmd: ATS8=2  # comma pause time is 2 seconds
#ModemRecvFillOrder: LSB2MSB  # bit order of received facsimile
#ModemSendFillOrder: LSB2MSB  # bit order modem expects for transmit
#
Class1Cmd:  AT+FCLASS=1 # command to enter class 1
Class1TCFResponseDelay: 75  # 75ms delay between recv TCF & response
Class1SendPPMDelay: 75  # 75ms delay before sending PPM
Class1SendTCFDelay: 75  # 75ms delay between sending DCS & TCF
Class1TrainingRecovery: 1500  # 1.5sec delay after training failure
Class1RecvAbortOK: 200  # wait 200ms for abort response
Class1FrameOverhead: 4  # 4 byte overhead in recvd HDLC frames
Class1RecvIdentTimer: 40000  # 35+5secs waiting for ident frames
Class1TCFMaxNonZero: 10  # max 10% of data may be non-zero
Class1TCFMinRun: 1000  # min run is 2/3rds of TCF duration
-----------------


I am running on Redhat5.1 with kernel 2.0.36 ,hylafaxv4.0pl2


THanks all.


Jacky hUi


David Woolley wrote:

> > Dear Sir,
>
> To avoid confusion, this is a mutual support group, not a support company.
>
> >     I ahve encounter a error "No Response to MPS or EOP" when I send a
> > two files fax using "sendfax -n -d telno. file1.ps file2.ps" , I want to
> > know what should I do? Anyone encounter this and what does it mean?
>
> The modem did not respond when Hylafax signalled end of page.  In default
> of adequate information, check your flow control, but really we
> need modem, operating system and Hylafax versions, any manual configuration
> changes and a detailed session log.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Thu, 24 Dec 1998 11:51:42 -0500
From: Bernie <bfb@att.net>
To: HylaFAX <flexfax@sgi.com>
Subject: flexfax: Sending blank faxes problem
Sender: owner-flexfax@celestial.com

When I use sendfax to send a multi-page
group 4 tiff file, 5 blank pages are received
on the receiving fax machine.  I tried using
tiffsplit first, but had the same results.
When I view the documents prior to transmission,
they look OK.

Has anyone experienced this before?


My configuration information is as follows:
-RH Linux 5.2
-hylafax-4.0pl2-3rh5.i386.rpm
-MultiTech MT2834ZDXb modem


-Thanks

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Thu, 24 Dec 1998 20:43:18 +0100
From: Peter Br <comet.friend@gmx.net>
To: flexfax@sgi.com
Subject: flexfax: 3Com USR 56k Voice Faxmodem
Reply-To: comet.friend@gmx.net
Sender: owner-flexfax@celestial.com

Thank you all for your kind help. However, I still have the same
problem:

When transmitting faxes to fax machines, all pages go through and are
received at the other site. However, for some reason, my modem or
maybe HylaFAX appears to think that this is not the case. After
transmitting the last page there is always an error message

	No response to MPS repeated 3 times

when the fax is multi page, and

	No response to EOP repeated 3 times

when it is single page.

Switching to Class 1 has not helped, and even the configuration file
from Gerry Doris for use with Class 2.0 did not change anything
(thank you, Gerry, nevertheless).

Has anyone achieved to get the modem work with Hylafax successfully?

I understand that USR modems had problems with Class 2.0, however,
I hoped that this was a problem of the past (1996 and earlier).

Any help is much appreciated!

So long, a Merry Christmas to all of you,

	Peter
-- 
---------------------------------------------------------------------
	  The manual said the software required Windows 95
	  	   or better, so I installed Linux.
		     >>> comet.friend@gmx.net <<<
---------------------------------------------------------------------

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Sat, 26 Dec 1998 11:48:08 +0000
From: Darrell Berry <darrellb@hhcl.com>
Organization: HHCL+P
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: multi-image TIFF -> PDF? 
Sender: owner-flexfax@celestial.com

i'm thinking about the best way to distribute incoming faxes, and would
much rather they were PDF format (image layer only, i'm not planning
OCR!) than TIFF, as we use PDF extensively already, and people are
familiar with it...thanks to all of you who replied to my questions
about win32 TIFF viewers, but after a little thought, this seems a
better option...

does anyone know if a linux-friendly command line tiff2pdf convertor,
which will sensibly make each image in a multi-image TIFF into a
separate page in the PDF file?

thnx!

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Sat, 26 Dec 1998 10:36:31 -0700
From: Alan Sparks <asparks@nss.harris.com>
Organization: Harris Network Support Systems, Camarillo CA
To: Darrell Berry <darrell@ku24.com>
CC: flexfax@sgi.com
Subject: Re: flexfax: multi-image tiff -> PDF?
Sender: owner-flexfax@celestial.com

I can't vouch for this, since I haven't tried it, but I think it might
work...

I know of no tiff2pdf convertor (all-in-a-bag), but you might look at
using fax2ps (included w/ HylaFAX) to convert the TIFF into PS, and
passing the mess through your GhostScript engine with the PDF output
generation option.

I don't know what quality you'll get (or if it'll be usable), but seems
like a cheap solution worth looking at.  You'll need to do a little
research on the fax2ps and gs programs to get the right options -- if
you can't find them, write to me and I'll see if I can find a hint or
two.

-Alan

Darrell Berry wrote:
> 
> i'm thinking about the best way to distribute incoming faxes, and would
> much rather they were PDF format (image layer only, i'm not planning
> ocr!) than TIFF, as we use PDF extensively already, and people are
> familiar with it...
> 
> does anyone know if a linux-friendly command line tiff2pdf convertor,
> which will sensibly make each image in a multi-image TIFF into a
> separate page in the PDF file?
> 
> thnx!

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Sat, 26 Dec 1998 17:54:00 +0000
From: Darrell Berry <darrell@ku24.com>
X-Accept-Language: en
To: Alan Sparks <asparks@nss.harris.com>, flexfax@sgi.com
Subject: Re: flexfax: multi-image tiff -> PDF?
Sender: owner-flexfax@celestial.com

i've found a package called tifflib, which generates higher quality, and
much faster-rendering (tho larger) PostScript from TIFFs...its located
at

http://kubax9.kub.nl:2080/Decomate-1.0/tiff-v3.4-tar.gz

and its rather cool (worth a look!)

and GhostView 5.50 has a nice ps2pdf filter...chaining the two together
generates very high quality PDF fax images...

--

the only problem (and one shared with fax2ps), is that partial pages are
'bottom-justified' on the page, which will no doubt look a little odd to
our users, who are used to fax machines 'top-justifying' partiial pages
(ie cover pages etc which take up less than a full A4 image appear at
the top of the page, not the bottom, as they do with both fax2ps and
tiff2ps)...

do you have any clue as to hacking the image or ps output to change
this?

I guess I could use something like ImageMagik while the image is still
in the bitmap realm, test the image size, and crop and paste onto a
full, blank A4 image, but it seems pretty CPU-wasteful!)

thanx for your help! I hope the links above are also of use to other
hylafaxers...

cheers

- darrell

Alan Sparks wrote:
> 
> I can't vouch for this, since I haven't tried it, but I think it might
> work...
> 
> I know of no tiff2pdf convertor (all-in-a-bag), but you might look at
> using fax2ps (included w/ HylaFAX) to convert the TIFF into PS, and
> passing the mess through your GhostScript engine with the PDF output
> generation option.
> 
> I don't know what quality you'll get (or if it'll be usable), but seems
> like a cheap solution worth looking at.  You'll need to do a little
> research on the fax2ps and gs programs to get the right options -- if
> you can't find them, write to me and I'll see if I can find a hint or
> two.
> 
> -Alan
> 
> Darrell Berry wrote:
> >
> > i'm thinking about the best way to distribute incoming faxes, and would
> > much rather they were PDF format (image layer only, i'm not planning
> > ocr!) than TIFF, as we use PDF extensively already, and people are
> > familiar with it...
> >
> > does anyone know if a linux-friendly command line tiff2pdf convertor,
> > which will sensibly make each image in a multi-image TIFF into a
> > separate page in the PDF file?
> >
> > thnx!

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Mon, 28 Dec 1998 18:09:21 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: multi-image tiff -> PDF?
Sender: owner-flexfax@celestial.com

At 17:54 26/12/98 +0000, Darrell Berry <darrell@ku24.com> wrote:
>i've found a package called tifflib, which generates higher quality,
>and much faster-rendering (tho larger) PostScript from TIFFs...its
>located at
>
>http://kubax9.kub.nl:2080/Decomate-1.0/tiff-v3.4-tar.gz
>

This is the tiff library that HylaFAX uses.

>
>and GhostView 5.50 has a nice ps2pdf filter...chaining the two
>together generates very high quality PDF fax images...
>

I would be very interested in what you have achieved. Could you
send details of the script/command lines you used?

>
>the only problem (and one shared with fax2ps), is that partial 
>pages are 'bottom-justified' on the page, which will no doubt 
>look a little odd to our users, who are used to fax machines 
>'top-justifying' partiial pages...

There is a patch to solve exactly this *feature*. Please see

           http://www.hylafax.org/patches/tiff2ps.patch

Unfortunately hylafax.org seems to be down at the moment, so
you may have to be patient for a day or two.

Cheers,
Phil Watkinson,
Boston, UK.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: multi-image tiff -> PDF?
To: darrell@ku24.com (Darrell Berry)
Date: Mon, 28 Dec 1998 19:04:14 +0000 (GMT)
Cc: asparks@nss.harris.com, flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> 
> i've found a package called tifflib, which generates higher quality, and
> much faster-rendering (tho larger) PostScript from TIFFs...its located
> at
> 
> http://kubax9.kub.nl:2080/Decomate-1.0/tiff-v3.4-tar.gz
                                         ^^^^^^^^^^^^^^^^^

The name looks remarkably like the TIFF library that's needed to build
Hylafax, and the tiff2ps in Hylafax.  If it is not, the filename clashes.
I would be rather wary about getting it from the URL given, rather than
the canonical, or another well known site.

TIFF should code to Postscript with no loss of information, so if there
are quality differences, you should be worrying about bugs in one or
the other program.

> 
> and its rather cool (worth a look!)
> 
> and GhostView 5.50 has a nice ps2pdf filter...chaining the two together
> generates very high quality PDF fax images...

The ps2pdf processing of images is unstable in version 5.50, although
that in GS 5.10 supports no compression at all.  In particular,
pdf2ps (ps2pdf ()) aborts, and trying to force JPEG encoding causes a
memory fault; if it doesn't memory fault, the PDF seems acceptable to
Acrobat, even though it breaks ghostscript.  There is no sign of
acknowledgement of my bug reports, so I don't think GS is getting any
development effort at present.  GS 5.50 requires distiller parameters
to be inserted into the PS to get compression.  Neither supports fax G3
coding, which would be the obvious choice in this case.

> 
> --
> 
> the only problem (and one shared with fax2ps), is that partial pages are
> 'bottom-justified' on the page, which will no doubt look a little odd to
> our users, who are used to fax machines 'top-justifying' partiial pages
> (ie cover pages etc which take up less than a full A4 image appear at
> the top of the page, not the bottom, as they do with both fax2ps and
> tiff2ps)...
> 
> do you have any clue as to hacking the image or ps output to change
> this?

If you have accurate bounding box (rather than full page bounding box)
information in the Postscript, it should be simple to add postscript
translation operators to move the image; see the Postscript red book.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Posted-Date: Mon, 28 Dec 1998 12:09:00 -0700 (MST)
Date: Mon, 28 Dec 1998 12:13:22 -0700 (MST)
From: John Williams <williams@morinda.com>
To: Darrell Berry <darrell@ku24.com>
cc: Alan Sparks <asparks@nss.harris.com>, flexfax@sgi.com
Subject: Re: flexfax: multi-image tiff -> PDF?
Sender: owner-flexfax@celestial.com

On Sat, 26 Dec 1998, Darrell Berry wrote:

> i've found a package called tifflib, which generates higher quality, and
> much faster-rendering (tho larger) PostScript from TIFFs...its located
> at
> 
> http://kubax9.kub.nl:2080/Decomate-1.0/tiff-v3.4-tar.gz
> 
> and its rather cool (worth a look!)
> 
> and GhostView 5.50 has a nice ps2pdf filter...chaining the two together
> generates very high quality PDF fax images...
> 
> --
> 
> the only problem (and one shared with fax2ps), is that partial pages are
> 'bottom-justified' on the page, which will no doubt look a little odd to
> our users, who are used to fax machines 'top-justifying' partiial pages
> (ie cover pages etc which take up less than a full A4 image appear at
> the top of the page, not the bottom, as they do with both fax2ps and
> tiff2ps)...
> 
> do you have any clue as to hacking the image or ps output to change
> this?

I posted a patch for tiff2ps (also part of the tiff package) which fixes
this some time ago.  I've attached it again to this message.
It requires you to specify the page size with -h and -w, and also
compresses long faxes vertically rather than cutting them off as it did
previously.
Let me know if it helps.

~ John Williams
--- tiff2ps.c	1998/09/29 15:42:13	1.1
+++ tiff2ps.c	1998/10/08 16:56:50
@@ -56,9 +56,9 @@
 int	ascii85breaklen;
 
 int	TIFF2PS(FILE*, TIFF*, float, float);
-void	PSpage(FILE*, TIFF*, uint32, uint32);
-void	PSColorContigPreamble(FILE*, uint32, uint32, int);
-void	PSColorSeparatePreamble(FILE*, uint32, uint32, int);
+void	PSpage(FILE*, TIFF*, uint32, uint32, uint32);
+void	PSColorContigPreamble(FILE*, uint32, uint32, uint32, int);
+void	PSColorSeparatePreamble(FILE*, uint32, uint32, uint32, int);
 void	PSDataColorContig(FILE*, TIFF*, uint32, uint32, int);
 void	PSDataColorSeparate(FILE*, TIFF*, uint32, uint32, int);
 void	PSDataPalette(FILE*, TIFF*, uint32, uint32);
@@ -71,6 +71,8 @@
 void 	PSTail(FILE*, int);
 
 static	void usage(int);
+#define MIN(a,b)	((a)<(b)?(a):(b))
+#define MAX(a,b)	((a)>(b)?(a):(b))
 
 int
 main(int argc, char* argv[])
@@ -263,10 +265,10 @@
 }
 
 static void
-setupPageState(TIFF* tif, uint32* pw, uint32* ph, float* pprw, float* pprh)
+setupPageState(TIFF* tif, uint32* pw, uint32* ph, float* pprw, float* pprh, float *xres, float *yres)
 {
 	uint16 res_unit;
-	float xres, yres;
+	/*float xres, yres;*/
 
 	TIFFGetField(tif, TIFFTAG_IMAGEWIDTH, pw);
 	TIFFGetField(tif, TIFFTAG_IMAGELENGTH, ph);
@@ -274,20 +276,20 @@
 	/*
 	 * Calculate printable area.
 	 */
-	if (!TIFFGetField(tif, TIFFTAG_XRESOLUTION, &xres))
-		xres = PS_UNIT_SIZE;
-	if (!TIFFGetField(tif, TIFFTAG_YRESOLUTION, &yres))
-		yres = PS_UNIT_SIZE;
+	if (!TIFFGetField(tif, TIFFTAG_XRESOLUTION, xres))
+		*xres = PS_UNIT_SIZE;
+	if (!TIFFGetField(tif, TIFFTAG_YRESOLUTION, yres))
+		*yres = PS_UNIT_SIZE;
 	switch (res_unit) {
 	case RESUNIT_CENTIMETER:
-		xres /= 2.54, yres /= 2.54;
+		*xres /= 2.54, *yres /= 2.54;
 		break;
 	case RESUNIT_NONE:
-		xres *= PS_UNIT_SIZE, yres *= PS_UNIT_SIZE;
+		*xres *= PS_UNIT_SIZE, *yres *= PS_UNIT_SIZE;
 		break;
 	}
-	*pprh = PSUNITS(*ph, yres);
-	*pprw = PSUNITS(*pw, xres);
+	*pprh = PSUNITS(*ph, *yres);
+	*pprw = PSUNITS(*pw, *xres);
 }
 
 static int
@@ -317,18 +319,19 @@
 	uint32 subfiletype;
 	uint16* sampleinfo;
 	static int npages = 0;
+	float xres,yres;
 
 	if (!TIFFGetField(tif, TIFFTAG_XPOSITION, &ox))
 		ox = 0;
 	if (!TIFFGetField(tif, TIFFTAG_YPOSITION, &oy))
 		oy = 0;
-	setupPageState(tif, &w, &h, &prw, &prh);
+	setupPageState(tif, &w, &h, &prw, &prh, &xres, &yres);
 
 	do {
 	        tf_numberstrips = TIFFNumberOfStrips(tif);
 		TIFFGetFieldDefaulted(tif, TIFFTAG_ROWSPERSTRIP,
 		    &tf_rowsperstrip);
-		setupPageState(tif, &w, &h, &prw, &prh);
+		setupPageState(tif, &w, &h, &prw, &prh, &xres, &yres);
 		if (!npages)
 		        PSHead(fd, tif, w, h, prw, prh, ox, oy);
 		tf_bytesperrow = TIFFScanlineSize(tif);
@@ -361,12 +364,22 @@
 			fprintf(fd, "%%%%Page: %d %d\n", npages, npages);
 			fprintf(fd, "gsave\n");
 			fprintf(fd, "100 dict begin\n");
-			if (pw != 0 && ph != 0)
-				fprintf(fd, "%f %f scale\n",
-				    pw*PS_UNIT_SIZE, ph*PS_UNIT_SIZE);
-			else
+			if (pw != 0 && ph != 0) {
+				if (ph*PS_UNIT_SIZE < prh) {
+					fprintf(fd, "%f %f scale\n",
+					    MIN(pw*PS_UNIT_SIZE,prw), 
+					    ph*PS_UNIT_SIZE );
+					PSpage(fd, tif, w, h, h);
+				} else {
+					fprintf(fd, "%f %f scale\n",
+					    MIN(pw*PS_UNIT_SIZE,prw),
+					    prh );
+					PSpage(fd, tif, w, h, (unsigned long)(ph*yres));
+				}
+			} else {
 				fprintf(fd, "%f %f scale\n", prw, prh);
-			PSpage(fd, tif, w, h);
+				PSpage(fd, tif, w, h, h);
+			}
 			fprintf(fd, "end\n");
 			fprintf(fd, "grestore\n");
 			fprintf(fd, "showpage\n");
@@ -901,7 +914,7 @@
 }
 
 void
-PSpage(FILE* fd, TIFF* tif, uint32 w, uint32 h)
+PSpage(FILE* fd, TIFF* tif, uint32 w, uint32 h, uint32 ph)
 {
 	if (level2 && PS_Lvl2page(fd, tif, w, h))
 		return;
@@ -910,20 +923,20 @@
 	case PHOTOMETRIC_RGB:
 		if (planarconfiguration == PLANARCONFIG_CONTIG) {
 			fprintf(fd, "%s", RGBcolorimage);
-			PSColorContigPreamble(fd, w, h, 3);
+			PSColorContigPreamble(fd, w, h, ph, 3);
 			PSDataColorContig(fd, tif, w, h, 3);
 		} else {
-			PSColorSeparatePreamble(fd, w, h, 3);
+			PSColorSeparatePreamble(fd, w, h, ph, 3);
 			PSDataColorSeparate(fd, tif, w, h, 3);
 		}
 		break;
 	case PHOTOMETRIC_SEPARATED:
 		/* XXX should emit CMYKcolorimage */
 		if (planarconfiguration == PLANARCONFIG_CONTIG) {
-			PSColorContigPreamble(fd, w, h, 4);
+			PSColorContigPreamble(fd, w, h, ph, 4);
 			PSDataColorContig(fd, tif, w, h, 4);
 		} else {
-			PSColorSeparatePreamble(fd, w, h, 4);
+			PSColorSeparatePreamble(fd, w, h, ph, 4);
 			PSDataColorSeparate(fd, tif, w, h, 4);
 		}
 		break;
@@ -935,7 +948,7 @@
 		fprintf(fd, "%lu %lu 8\n",
 		    (unsigned long) w, (unsigned long) h);
 		fprintf(fd, "[%lu 0 0 -%lu 0 %lu]\n",
-		    (unsigned long) w, (unsigned long) h, (unsigned long) h);
+		    (unsigned long) w, (unsigned long) h, (unsigned long) ph);
 		fprintf(fd, "{currentfile scanLine readhexstring pop} bind\n");
 		fprintf(fd, "false 3 colorimage\n");
 		PSDataPalette(fd, tif, w, h);
@@ -948,7 +961,7 @@
 		fprintf(fd, "%lu %lu %d\n",
 		    (unsigned long) w, (unsigned long) h, bitspersample);
 		fprintf(fd, "[%lu 0 0 -%lu 0 %lu]\n",
-		    (unsigned long) w, (unsigned long) h, (unsigned long) h);
+		    (unsigned long) w, (unsigned long) h, (unsigned long) ph);
 		fprintf(fd,
 		    "{currentfile scanLine readhexstring pop} bind\n");
 		fprintf(fd, "image\n");
@@ -959,7 +972,7 @@
 }
 
 void
-PSColorContigPreamble(FILE* fd, uint32 w, uint32 h, int nc)
+PSColorContigPreamble(FILE* fd, uint32 w, uint32 h, uint32 ph, int nc)
 {
 	ps_bytesperrow = nc * (tf_bytesperrow / samplesperpixel);
 	PhotoshopBanner(fd, w, h, 1, nc, "false %d colorimage");
@@ -967,13 +980,13 @@
 	fprintf(fd, "%lu %lu %d\n",
 	    (unsigned long) w, (unsigned long) h, bitspersample);
 	fprintf(fd, "[%lu 0 0 -%lu 0 %lu]\n",
-	    (unsigned long) w, (unsigned long) h, (unsigned long) h);
+	    (unsigned long) w, (unsigned long) h, (unsigned long) ph);
 	fprintf(fd, "{currentfile line readhexstring pop} bind\n");
 	fprintf(fd, "false %d colorimage\n", nc);
 }
 
 void
-PSColorSeparatePreamble(FILE* fd, uint32 w, uint32 h, int nc)
+PSColorSeparatePreamble(FILE* fd, uint32 w, uint32 h, uint32 ph, int nc)
 {
 	int i;
 
@@ -984,7 +997,7 @@
 	fprintf(fd, "%lu %lu %d\n",
 	    (unsigned long) w, (unsigned long) h, bitspersample);
 	fprintf(fd, "[%lu 0 0 -%lu 0 %lu] \n",
-	    (unsigned long) w, (unsigned long) h, (unsigned long) h);
+	    (unsigned long) w, (unsigned long) h, (unsigned long) ph);
 	for (i = 0; i < nc; i++)
 		fprintf(fd, "{currentfile line%d readhexstring pop}bind\n", i);
 	fprintf(fd, "true %d colorimage\n", nc);
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: multi-image TIFF -> PDF?
To: darrellb@hhcl.com (Darrell Berry)
Date: Mon, 28 Dec 1998 19:14:02 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
X-Mailer: ELM [version 2.4 PL25]
Sender: owner-flexfax@celestial.com

> does anyone know if a linux-friendly command line tiff2pdf convertor,
> which will sensibly make each image in a multi-image TIFF into a
> separate page in the PDF file?

A general TIFF to PDF convertor would be easy if you didn't mind about
compression, but might be a lot of work if you did want appropriate
compression.  However, you don't actually want a TIFF to PDF convertor;
you want a G3 FAX (wrapped in TIFF) to PDF convertor.  As PDF supports
G3 FAX as a native format, this should almost amount to an exercise in
wrapping the image of each page in an appropriate dictionary.

Things that make it not that simple are that it is possible that the
G3 options in the received file may not be amongst those supported by
Postscript/PDF, so you may have to run a G3 to G3 conversion (tiffcp
might do this) and that you need to construct a page tree.  None of
these should take you more than a few man days, given a copy of the PDF
specification from the Adobe web site.  There is, however, slightly more
work than I'm prepared to do without a real, personal/business, need.

(As far as I can tell, some versions of fax2ps use a roundabout method
of creating a bit map font, rather than directly storing the image.
My guess is that this is done because it renders faster on some printers,
but might also have been done for compatibility with very old versions
of Postscript.  However, it does mean that any route through ps2pdf is
likely to produce excessively large PDF files.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
To: Phil Watkinson <pkw@elgro.co.uk>
cc: HylaFAX List <flexfax@sgi.com>
Subject: Re: flexfax: multi-image tiff -> PDF? 
Date: Mon, 28 Dec 1998 20:37:12 +0000
From: "Mr. Arlington Hewes" <tpcadmin@info.tpc.int>
Sender: owner-flexfax@celestial.com

In message <199812281746.RAA00038@derrick.elgro.co.uk>, Phil Watkinson writes:
>
>
>There is a patch to solve exactly this *feature*. Please see
>
>           http://www.hylafax.org/patches/tiff2ps.patch
>
>Unfortunately hylafax.org seems to be down at the moment, so
>you may have to be patient for a day or two.

The site should reappear approximately 24 hours from now, to be more precise. 
Alas, the Christmas holidays have resulted in a little ISP hiccup, and staff 
will not be able to revive the machine until tomorrow.

Apologies for the outage, which has been a result of some last-minute network 
reconfiguration carried out by the site at which the server is co-located.

-Darren

From darrellb@hhcl.com  Thu Feb 11 13:16:09 1999
Date: Mon, 28 Dec 1998 23:42:40 +0000
From: Darrell Berry <darrellb@hhcl.com>
Organization: HHCL+P
X-Accept-Language: en
To: Phil Watkinson <pkw@elgro.co.uk>
CC: flexfax@sgi.com
Subject: Re: flexfax: multi-image tiff -> PDF?



Phil Watkinson wrote:
> 
> At 17:54 26/12/98 +0000, Darrell Berry <darrell@ku24.com> wrote:
> >i've found a package called tifflib, which generates higher quality,
> >and much faster-rendering (tho larger) PostScript from TIFFs...its
> >located at
> >
> >http://kubax9.kub.nl:2080/Decomate-1.0/tiff-v3.4-tar.gz
> >
> 
> This is the tiff library that HylaFAX uses.

hmm ok, so there's a bit of reinventing the wheel going on,
then...strangely tiff2ps from the above source DOES generate different
(more detailed?) PostScript than fax2ps (or is fax2ps actually different
from tiff2ps?)

--

> I would be very interested in what you have achieved. Could you
> send details of the script/command lines you used?

i've posted my faxrcvd to the list...have a look at an earlier mesage of
mine from today...

--

> There is a patch to solve exactly this *feature*. Please see
> 
>            http://www.hylafax.org/patches/tiff2ps.patch

thanks...i'll have a look!

thanks again to all who have emailed me privately or on the list with
suggestions!

- darrell

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Sat, 26 Dec 1998 11:53:06 +0000
From: Darrell Berry <darrellb@hhcl.com>
Organization: HHCL+P
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: getting sender name foe rec faxes?
Sender: owner-flexfax@celestial.com

is tehre any place that hylafax records the sender name string (if any)
on received faxes?

i want to write a little script that picks up each incoming fax,
converts it to PDf format, and emails it to someone responsible for
checking the intended recipient and forwarding i on to them...it would
be a nice touch if the Subject of the email could be whatever sender ID
string was printed at the top of the fax (you know what i mean...not
attempting to OCR the fax, but just ripping out the 'header' at the top
which contains the sender's name or phone number...)

?

thnx

-- 
"a gust of wind...a dog barks..."

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Sat, 26 Dec 1998 13:43:47 -0800 (PST)
From: "Joel B. Stalder" <joel@uptimecomputers.com>
To: Darrell Berry <darrellb@hhcl.com>
cc: flexfax@sgi.com
Subject: Re: flexfax: getting sender name foe rec faxes?
Sender: owner-flexfax@celestial.com

On Sat, 26 Dec 1998, Darrell Berry wrote:

> is tehre any place that hylafax records the sender name string (if any)
> on received faxes?
> 
> i want to write a little script that picks up each incoming fax,
> converts it to PDf format, and emails it to someone responsible for
> checking the intended recipient and forwarding i on to them...it would
> be a nice touch if the Subject of the email could be whatever sender ID
> string was printed at the top of the fax (you know what i mean...not
> attempting to OCR the fax, but just ripping out the 'header' at the top
> which contains the sender's name or phone number...)
> 

Have a look at faxinfo, included with the hylafax distribution. It does
what you want, and the output is easily parsed.

And ImageMagick/PerlMagick also notices the extra info fields stuffed 
into the tiff by hylafax. This can be handy if you're already using
ImageMagick for other conversions, CGIs, or whatever.

Hope you find this useful,

-Joel


Joel B. Stalder                              joel@uptimecomputers.com
Uptime Computer Services               http://www.uptimecomputers.com
                 Solutions for Office and Internet
 I respect faith, but doubt is what gives you an education.
 			 - Wilson Mizner
 

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Sat, 26 Dec 1998 21:33:59 +0000
From: Darrell Berry <darrellb@hhcl.com>
Organization: HHCL+P
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: pollrecvd & running scripts for every incoming fax...
Sender: owner-flexfax@celestial.com


i'm still pursuing my mail-delivery of pdf-formatted faxes, and am now
looking at how to schedule the checking and sending...basically what i
want to do is similar to the fucntion of bin/pollrecd...in fact
pollrecvd goes one furth and reports back on partically recieved faxes,
which is great...hoewver i don't quite understand what calls
pollrecd...is it only run when a poll command is issued manually?

if so, is there a server-side stub somewhere where a script can be caled
EVERY TIME a fax is received? Or do I have to write a cron job that
looks at the seqf in log/ and does it itself...and if so, how do i link
the cxxxxxxx files to actual tif files in recvq?

so many questions...sorry!


all i realy want to do, is run something like pollrecvq everytime a fax
(or partial fax) comes in, sensibly linking the info form the log with
the tif file (or pdf file, as it will be), and mail it off to a central
fax-distribution point...


(does any of this make sense?!)

thnx

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Sat, 26 Dec 1998 23:37:44 +0000
From: Darrell Berry <darrell@ku24.com>
X-Accept-Language: en
To: Darrell Berry <darrellb@hhcl.com>
CC: flexfax@sgi.com
Subject: Re: flexfax: pollrecvd & running scripts for every incoming fax...
Sender: owner-flexfax@celestial.com

ok, solved...its just a matter of editing faxrecvd...thank god for good
design!

as usual with open source stuff, its done so it can be built on...i now
have exactly what i want...beausitful PDF faxes automatically
distributed...thank you all for you kind assistance


Darrell Berry wrote:
> 
> i'm still pursuing my mail-delivery of pdf-formatted faxes, and am now
> looking at how to schedule the checking and sending...basically what i
> want to do is similar to the fucntion of bin/pollrecd...in fact
> pollrecvd goes one furth and reports back on partically recieved faxes,
> which is great...hoewver i don't quite understand what calls
> pollrecd...is it only run when a poll command is issued manually?
> 
> if so, is there a server-side stub somewhere where a script can be caled
> EVERY TIME a fax is received? Or do I have to write a cron job that
> looks at the seqf in log/ and does it itself...and if so, how do i link
> the cxxxxxxx files to actual tif files in recvq?
> 
> so many questions...sorry!
> 
> all i realy want to do, is run something like pollrecvq everytime a fax
> (or partial fax) comes in, sensibly linking the info form the log with
> the tif file (or pdf file, as it will be), and mail it off to a central
> fax-distribution point...
> 
> (does any of this make sense?!)
> 
> thnx

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Sat, 26 Dec 1998 18:09:54 -0600
From: "Randall D. DuCharme" <randyd@ameritech.net>
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: Solaris 7 (x86) build?
Sender: owner-flexfax@celestial.com

Greetings,

Wondering if anyone's successfully built hylafax on the latest Solaris
x86 platform with gcc 2.8.1.  I've applied the patch ( which doesn't
apply cleanly ) and still have lots of errors like this....

make[3]: Entering directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/util'
/usr/local/bin/gcc      -I.././zlib                       -D__ANSI_CPP__
-I. -I.. -I.././util -I.././util -I/usr/local/include -I.././regex -g -O
-x c++ -c SendFaxJob.c++
SendFaxJob.c++: In method `unsigned char SendFaxJob::createJob(class
SendFaxClient &, class fxStr &)':
SendFaxJob.c++:499: no matching function for call to
`SendFaxClient::sendZData (int &, unsigned char (FaxClient::)(fxStr &,
fxStr &), fxStr &, fxStr &)'
FaxClient.h:273: candidates are: FaxClient::sendZData(int, unsigned char
(FaxClient::*)(fxStr &, fxStr &), fxStr &, fxStr &)
make[3]: *** [SendFaxJob.o] Error 1
make[3]: Leaving directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/util'
make[2]: *** [default] Error 2
make[2]: Leaving directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/util'
= faxalter
make[2]: Entering directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxalter'
make[3]: Entering directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxalter'
make[4]: Entering directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxalter'
make[4]: Nothing to be done for `_quiet.c++dependtime'.
make[4]: Leaving directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxalter'
make[3]: Leaving directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxalter'
make[3]: Entering directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxalter'
make[3]: *** No rule to make target `../util/libfaxutil.a', needed by
`faxalter'.  Stop.
make[3]: Leaving directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxalter'
make[2]: *** [default] Error 2
make[2]: Leaving directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxalter'
= faxcover
make[2]: Entering directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxcover'
make[3]: Entering directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxcover'
make[4]: Entering directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxcover'
make[4]: Nothing to be done for `_quiet.c++dependtime'.
make[4]: Leaving directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxcover'
make[3]: Leaving directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxcover'
make[3]: Entering directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxcover'
make[3]: *** No rule to make target `../util/libfaxutil.a', needed by
`faxcover'.  Stop.
make[3]: Leaving directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxcover'
make[2]: *** [default] Error 2
make[2]: Leaving directory
`/export/home/randy/hylafax/hylafax-v4.0pl2/faxcover'
= faxd

I'm not entirely sure how to proceed with trying to fix this.

Any thoughts?

Thanks much in advance
-- 
Randall D DuCharme       
Systems Engineer         Novell, Microsoft, and UNIX Networking Support
Computer Specialists                Free Your Machine....     FreeBSD
414-253-9998   414-253-9919 (fax)      The Power To Serve!

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Sat, 26 Dec 1998 18:19:30 -0800 (PST)
From: Torsten Mueller <archesoft@yahoo.com>
Reply-To: torsten@xtremeweb.de
Subject: flexfax: Modem Config Database
To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

Hello,

I want to generate a database, which contains working config.tty**
data for modems.

I would take the following entries into the database:

Modem manufacturer
model
e-mail of the sender
name of the sender
config itself
comments to the config

I hope, with this database we can (better) solve requests for "working
config.ttyS* for my modem"

What else would you implement into this database?

maybe the country, from which the modem is, the firmware version, ATI
responses  ... ???

Suggestions are welcome.

Greetings from Germany

Torsten Mueller



_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Mon, 28 Dec 1998 23:43:13 -0800 (PST)
From: Torsten Mueller <archesoft@yahoo.com>
Reply-To: torsten@xtremeweb.de
Subject: flexfax: Modem config.tty** Database
To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

Hello,

as i said some days ago, i will "open" a database for config.tty**
files for Hylafax.

It`s now online. You could see it at
http://www.xtremeweb.de/hyla/

Some output things of the database will change next time, i am working
on it.

Thank you for the config files, you mailed to me, i will add them into
the database.

In the future please use the web interface at
http://www.xtremeweb.de/hyla/

If there are problems with the database or you have suggestions for
it, feel free to mail me at hyladb@xtremeweb.de

I hope, you enjoy it !

Greetings from Germany

Torsten Mueller




_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Mon, 28 Dec 1998 19:58:55 +1300
From: "Steve Rooke" <SRooke@chhlth.govt.nz>
To: <Flexfax@sgi.com>
Cc: "Steve Rooke" <SRooke.CPH.CHC@chhlth.govt.nz>
Subject: flexfax: Problems trying to install WHFC NT 4.0 SP3, missing library
	files
Sender: owner-flexfax@celestial.com

I get an error:

'One of the library files needed to run C:\HylaFAX\whfc\disk1\setup.exe is damaged. Please reinstall this application.'

when trying to install whfc-1.0.0.2_SetupNT.zip under NT 4.0 SP3.  I've tried dowloading the zip a couple of times but always get the same message. Does anyone have an idea on this please?

Thanks,
Steve

**********************************************************************
This email and any files transmitted with it are confidential and 
intended solely for the use of the individual or entity to whom they   
are addressed. If you have received this email in error please notify 
the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**********************************************************************

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Mon, 28 Dec 1998 10:13:46 +0100
From: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Organization: Transcom
X-Accept-Language: English, en, German, de
To: HylaFax Mailing liste <flexfax@sgi.com>
CC: Steve Rooke <SRooke@chhlth.govt.nz>
Subject: Re: flexfax: Problems trying to install WHFC NT 4.0 SP3, missing 
 libraryfiles
Sender: owner-flexfax@celestial.com

Steve Rooke wrote:
> 
> I get an error:
> 
> 'One of the library files needed to run C:\HylaFAX\whfc\disk1\setup.exe is damaged. Please reinstall this application.'
> 
> when trying to install whfc-1.0.0.2_SetupNT.zip under NT 4.0 SP3.  I've tried dowloading the zip a couple of times but always get the same message. Does anyone have an idea on this please?
> 
> Thanks,
> Steve

Hi,

downloaded via FTP and set transfer type to ASCII instead of Binary ?

Uli
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Mon, 28 Dec 1998 18:59:28 +0000
From: Darrell Berry <darrellb@hhcl.com>
Organization: HHCL+P
X-Accept-Language: en
To: David Anderson <dand@steelerubber.com>
CC: flexfax@sgi.com
Subject: Re: flexfax: pollrecvd & running scripts for every incoming fax...
Sender: owner-flexfax@celestial.com

well, i'm kind-of relying on the auto-indexer on the archive to help out
any fellow travellers ;-)

so here goes...

the goal was to get autodelivery of PDF image-layer files for incoming
faxes.

the key script that gets run for every incoming fax is etc/faxrcvd,
which gets run every time a fax comes in, so this needed modification
(what i ended up with is included below...i make no claims for elegance,
but it works...feel free to hack and/or add to the distribution or
contrib directory)...

--

note that i've used the tiff2ps utility from tifflib (located at
http://kubax9.kub.nl:2080/Decomate-1.0/tiff-v3.4-tar.gz), rather than
fax2ps included with hylafax, as it seems to generate higher-quality,
though fatter, PostScript, and used ps2pdf from GhostScript 5.50. Also
needed is mimencode, which comes as standard with RH 5.1, on which I'm
running...this is to base64-convert the resulting PDF file for mail
delivery...

--

anyway, here's the code...there are probably numerous security race
risks in my use of tmp/ files, so if anyone has a better idea, please
let me know...

--

(i've also changed the Sender name to fit our potenital use of it here,
so you'll need to change that)

cheers






David Anderson wrote:
> 
> OK,  now do the right thing and document what you did so each of us
> do not have to go down the same path and get lost along the way.
> 
> Thanks
> 
> -----Original Message-----
> From: Darrell Berry <darrell@ku24.com>
> To: Darrell Berry <darrellb@hhcl.com>
> Cc: flexfax@sgi.com <flexfax@sgi.com>
> Date: Saturday, December 26, 1998 8:21 PM
> Subject: Re: flexfax: pollrecvd & running scripts for every incoming fax...
> 
> >ok, solved...its just a matter of editing faxrecvd...thank god for good
> >design!
> >
> >as usual with open source stuff, its done so it can be built on...i now
> >have exactly what i want...beausitful PDF faxes automatically
> >distributed...thank you all for you kind assistance
> >
> >
> >Darrell Berry wrote:
> >>
> >> i'm still pursuing my mail-delivery of pdf-formatted faxes, and am now
> >> looking at how to schedule the checking and sending...basically what i
> >> want to do is similar to the fucntion of bin/pollrecd...in fact
> >> pollrecvd goes one furth and reports back on partically recieved faxes,
> >> which is great...hoewver i don't quite understand what calls
> >> pollrecd...is it only run when a poll command is issued manually?
> >>
> >> if so, is there a server-side stub somewhere where a script can be caled
> >> EVERY TIME a fax is received? Or do I have to write a cron job that
> >> looks at the seqf in log/ and does it itself...and if so, how do i link
> >> the cxxxxxxx files to actual tif files in recvq?
> >>
> >> so many questions...sorry!
> >>
> >> all i realy want to do, is run something like pollrecvq everytime a fax
> >> (or partial fax) comes in, sensibly linking the info form the log with
> >> the tif file (or pdf file, as it will be), and mail it off to a central
> >> fax-distribution point...
> >>
> >> (does any of this make sense?!)
> >>
> >> thnx

-- 
"a gust of wind...a dog barks..."#! /bin/sh
#	$Id: faxrcvd.sh,v 1.33 1998/02/12 10:04:57 guru Rel $
#
# 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.
#
# 27 Dec 98, db
# edited to provide PDF delivery rather than PostScript (uses tifflib and the gs5.50
# ps2pdf utilities)


#
# faxrcvd file devID commID error-msg
#
if [ $# != 4 ]; then
    echo "Usage: $0 file devID commID error-msg"
    exit 1
fi

test -f etc/setup.cache || {
    SPOOL=`pwd`
    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
}
. etc/setup.cache

INFO=$SBIN/faxinfo
FAX2PS=$TIFFBIN/fax2ps
PS2PDF=$TIFFBIN/ps2pdf
TIFF2PS=$TIFFBIN/tiff2ps
TOADDR=FaxMaster
#
# There is no good portable way to find out the fully qualified
# domain name (FQDN) of the host or the TCP port for the hylafax
# service so we fudge here.  Folks may want to tailor this to
# their needs; e.g. add a domain or use localhost so the loopback
# interface is used.
#
HOSTNAME=`hostname`			# XXX no good way to find FQDN
PORT=4559				# XXX no good way to lookup service

FILE="$1"
BASENAME="`echo $FILE | perl -ne '($dir,$name)=split(/\//);print $name'`"
BASENAME="`echo $BASENAME | perl -ne '($name,$ext)=split(/\./);print $name'`"
TMPFILE1="tmp/"$BASENAME".ps"
TMPFILE2="tmp/"$BASENAME".pdf"

DEVICE="$2"
COMMID="$3"
MSG="$4"
if [ -f $FILE ]; then
    #
    # Check the sender's TSI and setup to dispatch
    # facsimile received from well-known senders.
    #
    SENDER="`$INFO $FILE | $AWK -F: '/Sender/ { print $2 }' 2>/dev/null`"
    SENDTO=
    if [ -f etc/FaxDispatch ]; then
	. etc/FaxDispatch	# NB: FaxDispatch sets SENDTO based on $SENDER
    fi
    (echo "To: $TOADDR"
     echo "From: HHCL Fax Agent <fax>"
     echo "Subject: Facsimile received from $SENDER";
     echo ""
     echo "$FILE:"; $INFO -n $FILE
     echo "ReceivedOn: $DEVICE"
     if [ "$MSG" ]; then
	echo ""
	echo "The full document was not received because:"
	echo ""
	echo "    $MSG"
	echo ""
	echo "    ---- Transcript of session follows ----"
	echo ""
	if [ -f log/c$COMMID ]; then
	    $SED -e '/-- data/d' \
		 -e '/start.*timer/d' -e '/stop.*timer/d' \
		 log/c$COMMID
	elif [ -n "$COMMID" ]; then
	    echo "    No transcript available (CommID c$COMMID)."
	else
	    echo "    No transcript available."
	fi
     else
	echo "CommID:     c$COMMID"
     fi
     if [ -n "$SENDTO" ]; then
	echo ""
	echo "The facsimile was automatically dispatched to: $SENDTO." 
     fi
    ) | 2>&1 $SENDMAIL -ffax -oi $TOADDR

#    $FAX2PS $FILE | lpr 

    if [ -n "$SENDTO" ]; then
	 $TIFF2PS -a $FILE -O $TMPFILE1 2>/dev/null
         $PS2PDF $TMPFILE1 $TMPFILE2 2>/dev/null
	(MIMEBOUNDARY="NextPart$$"
	 echo "Mime-Version: 1.0"
	 echo "Content-Type: Multipart/Mixed; Boundary=\"$MIMEBOUNDARY\""
	 echo "Content-Transfer-Encoding: 7bit"
	 echo "To: $SENDTO"
	 echo "From: HHCL Fax Agent <fax>"
	 echo "Subject: Facsimile received from $SENDER";
	 echo ""
	 echo "--$MIMEBOUNDARY"
	 echo "Content-Type: text/plain; charset=us-ascii"
	 echo "Content-Transfer-Encoding: 7bit"
	 echo ""
	 echo "$FILE:"; $INFO -n $FILE
	 echo "ReceivedOn: $DEVICE"
	 if [ "$MSG" ]; then
	    echo ""
	    echo "The full document was not received because:"
	    echo ""
	    echo "    $MSG"
	    echo ""
	    echo "    ---- Transcript of session follows ----"
	    echo ""
	    if [ -f log/c$COMMID ]; then
		$SED -e '/-- data/d' \
		     -e '/start.*timer/d' -e '/stop.*timer/d' \
		     log/c$COMMID
	    elif [ -n "$COMMID" ]; then
		echo "    No transcript available (CommID c$COMMID)."
	    else
		echo "    No transcript available."
	    fi
	 else
	    echo "CommID:     c$COMMID"
	 fi
	 echo ""
	 echo "--$MIMEBOUNDARY"
	 echo "Content-Type: application/pdf;  name=\"$BASENAME.pdf\""
	 echo "Content-Description: FAX document"
	 echo "Content-Transfer-Encoding: Base64"
	 echo ""
	 /usr/bin/mimencode $TMPFILE2
	 echo ""
	 echo "--$MIMEBOUNDARY--"
	) | 2>&1 $SENDMAIL -ffax -oi $SENDTO
        rm -f $TMPFILE1
        rm -f $TMPFILE2
    fi
else
    #
    # Generate notification mail for a failed attempt.
    #
    (echo "To: $TOADDR"
     echo "From: HHCL Fax Agent <fax>"
     echo "Subject: facsimile not received"
     echo ""
     echo "An attempt to receive facsimile on $DEVICE failed because:"
     echo ""
     echo "    $MSG"
     echo ""
     echo "    ---- Transcript of session follows ----"
     echo ""
     if [ -f log/c$COMMID ]; then
	$SED -e '/-- data/d' \
	     -e '/start.*timer/d' -e '/stop.*timer/d' \
	    log/c$COMMID
     elif [ -n "$COMMID" ]; then
	echo "    No transcript available (CommID c$COMMID)."
     else
	echo "    No transcript available."
     fi
    ) | 2>&1 $SENDMAIL -ffax -oi $TOADDR
fi

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Tue, 29 Dec 1998 22:56:35 +0000
From: Darrell Berry <darrell@ku24.com>
X-Accept-Language: en
To: flexfax@sgi.com
Subject: Re: flexfax: multi-image tiff -> PDF?
Sender: owner-flexfax@celestial.com

thnx for your help...turns out they ARE the same library (for my ignorance of
this i blame having the fax server on a RH5.1 machine, and having installed
via RPM, which rather hides the provenance on the code ;-)

as for instabilities, i've yet to see any, tho your info makes me wary in
advance!

and as for the 'cropping to the bottom' issue, turns out there is a patch for
tiff2ps whih works beautifully!

thanks again for your help!

David Woolley wrote:

> >
> > i've found a package called tifflib, which generates higher quality, and
> > much faster-rendering (tho larger) PostScript from TIFFs...its located
> > at
> >
> > http://kubax9.kub.nl:2080/Decomate-1.0/tiff-v3.4-tar.gz
>                                          ^^^^^^^^^^^^^^^^^
>
> The name looks remarkably like the TIFF library that's needed to build
> Hylafax, and the tiff2ps in Hylafax.  If it is not, the filename clashes.
> I would be rather wary about getting it from the URL given, rather than
> the canonical, or another well known site.
>
> TIFF should code to Postscript with no loss of information, so if there
> are quality differences, you should be worrying about bugs in one or
> the other program.
>
> >
> > and its rather cool (worth a look!)
> >
> > and GhostView 5.50 has a nice ps2pdf filter...chaining the two together
> > generates very high quality PDF fax images...
>
> The ps2pdf processing of images is unstable in version 5.50, although
> that in GS 5.10 supports no compression at all.  In particular,
> pdf2ps (ps2pdf ()) aborts, and trying to force JPEG encoding causes a
> memory fault; if it doesn't memory fault, the PDF seems acceptable to
> Acrobat, even though it breaks ghostscript.  There is no sign of
> acknowledgement of my bug reports, so I don't think GS is getting any
> development effort at present.  GS 5.50 requires distiller parameters
> to be inserted into the PS to get compression.  Neither supports fax G3
> coding, which would be the obvious choice in this case.
>
> >
> > --
> >
> > the only problem (and one shared with fax2ps), is that partial pages are
> > 'bottom-justified' on the page, which will no doubt look a little odd to
> > our users, who are used to fax machines 'top-justifying' partiial pages
> > (ie cover pages etc which take up less than a full A4 image appear at
> > the top of the page, not the bottom, as they do with both fax2ps and
> > tiff2ps)...
> >
> > do you have any clue as to hacking the image or ps output to change
> > this?
>
> If you have accurate bounding box (rather than full page bounding box)
> information in the Postscript, it should be simple to add postscript
> translation operators to move the image; see the Postscript red book.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: "Sam Leffler" <sam@cthulhu.engr.sgi.com>
To: <flexfax@sgi.com>
Subject: flexfax: RE: multi-image TIFF -> PDF?
Date: Tue, 29 Dec 1998 21:39:42 -0800
Importance: Normal
Sender: owner-flexfax@celestial.com

 
> (As far as I can tell, some versions of fax2ps use a roundabout method
> of creating a bit map font, rather than directly storing the image.
> My guess is that this is done because it renders faster on some printers,
> but might also have been done for compatibility with very old versions
> of Postscript.  However, it does mean that any route through ps2pdf is
> likely to produce excessively large PDF files.
> 

fax2ps was designed for printing on devices w/ slow serial links (e.g.
Apple LaserWriters w/ 19.2K hookups).  Devices that directly support
G3 compression (or any of the PS II compressions) shouldn't use it.

	Sam

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: "George Anderson Jr" <geoande@cape.com>
To: <flexfax@sgi.com>
Subject: flexfax: whfc interface problem
Date: Mon, 28 Dec 1998 08:54:53 -0500
Importance: Normal
Sender: owner-flexfax@celestial.com

After printing to the fax printer within NT, I receive " WSAECONNABORTED:
SOFTWARE CAUSED CONNECTION ABORT"  after pressing ok, prompts for password,
I enter password for the Unix user on the hylafax server and the original
above listed error message returns.


The hylafax has been started

Using rh5.2 and the latest copy of hylafax off of hylafax.org


Any ideas??


Many thanks,


:)


geo

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Tue, 29 Dec 1998 08:46:20 +0100
From: Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de>
Organization: Transcom
X-Accept-Language: English, en, German, de
To: George Anderson Jr <geoande@cape.com>
CC: flexfax@sgi.com
Subject: Re: flexfax: whfc interface problem
Sender: owner-flexfax@celestial.com

George Anderson Jr wrote:
> 
> After printing to the fax printer within NT, I receive " WSAECONNABORTED:
> SOFTWARE CAUSED CONNECTION ABORT"  after pressing ok, prompts for password,
> I enter password for the Unix user on the hylafax server and the original
> above listed error message returns.
> 
> The hylafax has been started
> 
> Using rh5.2 and the latest copy of hylafax off of hylafax.org
> 
> Any ideas??

Hi,

read the whfc FAQ, Topic : Why must i enter a password

Uli
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Tue, 29 Dec 1998 19:43:29 +0100
From: Okke Timm <okke@asta.uni-hamburg.de>
To: flexfax@sgi.com
Subject: flexfax: Problems with 3com/USR 56k Voice Faxmodem / Maillist archive
Reply-To: okke@asta.uni-hamburg.de
Sender: owner-flexfax@celestial.com

Hello,

I have some problems with 3com/USR 56k Voice Faxmodems and HylaFAX. We have
two normal but different faxstatios. The modems do work with station A but
refuse to work with station B. The modems dial to station B, establish a
connection (tested with minicom) but HylaFAX doesn't seem to notice... here
are the logs:

Station A:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Dec 29 11:42:11.40: [19868]: SESSION BEGIN 00000047 494619090031
Dec 29 11:42:11.40: [19868]: SEND FAX: JOB 32 DEST +49.461.9090031 COMMID 00000047
Dec 29 11:42:11.40: [19868]: MODEM set DTR OFF
Dec 29 11:42:11.40: [19868]: DELAY 2600 ms
Dec 29 11:42:14.00: [19868]: MODEM set DTR ON
Dec 29 11:42:14.00: [19868]: MODEM set baud rate: 115200 baud, input flow RTS/CTS, output flow RTS/CTS
Dec 29 11:42:14.00: [19868]: MODEM flush i/o
Dec 29 11:42:14.00: [19868]: <-- [21:ATS40=15E0V1Q0S0=0H0\r]
Dec 29 11:42:14.13: [19868]: --> [2:OK]
Dec 29 11:42:14.13: [19868]: <-- [12:ATS8=2S7=60\r]
Dec 29 11:42:14.26: [19868]: --> [2:OK]
Dec 29 11:42:14.26: [19868]: <-- [14:AT+FCLASS=2.0\r]
Dec 29 11:42:14.39: [19868]: --> [2:OK]
Dec 29 11:42:14.39: [19868]: <-- [9:AT+FLO=2\r]
Dec 29 11:42:14.52: [19868]: --> [2:OK]
Dec 29 11:42:14.52: [19868]: <-- [9:AT+FPP=0\r]
Dec 29 11:42:14.65: [19868]: --> [2:OK]
Dec 29 11:42:14.65: [19868]: <-- [9:AT+FBO=0\r]
Dec 29 11:42:14.78: [19868]: --> [2:OK]
Dec 29 11:42:14.78: [19868]: <-- [10:AT+FCT=30\r]
Dec 29 11:42:14.91: [19868]: --> [2:OK]
Dec 29 11:42:14.91: [19868]: <-- [15:AT+FNR=1,1,1,1\r]
Dec 29 11:42:15.04: [19868]: --> [2:OK]
Dec 29 11:42:15.04: [19868]: <-- [9:AT+FIE=0\r]
Dec 29 11:42:15.17: [19868]: --> [2:OK]
Dec 29 11:42:15.17: [19868]: <-- [9:AT+FBU=1\r]
Dec 29 11:42:15.30: [19868]: --> [5:ERROR]
Dec 29 11:42:15.30: [19868]: MODEM Command error
Dec 29 11:42:15.30: [19868]: <-- [23:AT+FCC=1,5,2,2,0,0,0,0\r]
Dec 29 11:42:15.43: [19868]: --> [2:OK]
Dec 29 11:42:15.43: [19868]: <-- [7:ATL2M1\r]
Dec 29 11:42:15.56: [19868]: --> [2:OK]
Dec 29 11:42:15.56: [19868]: MODEM input buffering enabled
Dec 29 11:42:15.56: [19868]: <-- [14:AT+FCLASS=2.0\r]
Dec 29 11:42:15.79: [19868]: --> [2:OK]
Dec 29 11:42:15.79: [19868]: <-- [9:AT+FLO=2\r]
Dec 29 11:42:16.02: [19868]: --> [2:OK]
Dec 29 11:42:16.02: [19868]: <-- [9:AT+FPP=0\r]
Dec 29 11:42:16.25: [19868]: --> [2:OK]
Dec 29 11:42:16.25: [19868]: <-- [9:AT+FBO=0\r]
Dec 29 11:42:16.48: [19868]: --> [2:OK]
Dec 29 11:42:16.48: [19868]: <-- [10:AT+FCT=30\r]
Dec 29 11:42:16.71: [19868]: --> [2:OK]
Dec 29 11:42:16.71: [19868]: <-- [15:AT+FNR=1,1,1,1\r]
Dec 29 11:42:16.94: [19868]: --> [2:OK]
Dec 29 11:42:16.94: [19868]: <-- [9:AT+FIE=0\r]
Dec 29 11:42:17.17: [19868]: --> [2:OK]
Dec 29 11:42:17.17: [19868]: <-- [9:AT+FBU=1\r]
Dec 29 11:42:17.40: [19868]: --> [5:ERROR]
Dec 29 11:42:17.40: [19868]: MODEM Command error
Dec 29 11:42:17.40: [19868]: <-- [23:AT+FCC=1,5,2,2,0,0,0,0\r]
Dec 29 11:42:17.63: [19868]: --> [2:OK]
Dec 29 11:42:17.63: [19868]: <-- [29:AT+FLI="KomTel Faxserver L2"\r]
Dec 29 11:42:17.86: [19868]: --> [2:OK]
Dec 29 11:42:17.88: [19868]: DIAL 9090031
Dec 29 11:42:17.88: [19868]: <-- [14:ATDT09090031@\r]
Dec 29 11:42:34.18: [19868]: --> [4:+FCO]
Dec 29 11:42:37.30: [19868]: --> [36:+FNF:IKOMTEL          O؎]
Dec 29 11:42:37.30: [19868]: REMOTE NSF "IKOMTEL          O؎"
Dec 29 11:42:37.30: [19868]: --> [27:+FCI:"     +49 461 9090021"]
Dec 29 11:42:37.30: [19868]: REMOTE CSI "+49 461 9090021"
Dec 29 11:42:37.30: [19868]: --> [20:+FIS:1,5,0,2,1,0,0,3]
Dec 29 11:42:37.30: [19868]: --> [2:OK]
Dec 29 11:42:37.30: [19868]: REMOTE best rate 14400 bit/s
Dec 29 11:42:37.30: [19868]: REMOTE max page width 1728 pixels in 215 mm
Dec 29 11:42:37.30: [19868]: REMOTE max unlimited page length 
Dec 29 11:42:37.30: [19868]: REMOTE best vres 7.7 line/mm
Dec 29 11:42:37.30: [19868]: REMOTE best format 2-D MR
Dec 29 11:42:37.30: [19868]: REMOTE best 10 ms/scanline
Dec 29 11:42:37.30: [19868]: USE 14400 bit/s
Dec 29 11:42:37.30: [19868]: USE 10 ms/scanline
Dec 29 11:42:37.30: [19868]: SEND file "docq/doc36.ps;31"
Dec 29 11:42:37.40: [19868]: USE page width 1728 pixels in 215 mm
Dec 29 11:42:37.40: [19868]: USE unlimited page length 
Dec 29 11:42:37.40: [19868]: USE 7.7 line/mm
Dec 29 11:42:37.40: [19868]: USE 1-D MR
Dec 29 11:42:37.40: [19868]: <-- [23:AT+FIS=1,5,0,2,0,0,0,3\r]
Dec 29 11:42:37.63: [19868]: --> [2:OK]
Dec 29 11:42:37.63: [19868]: <-- [7:AT+FDT\r]
Dec 29 11:42:37.90: [19868]: --> [20:+FCS:1,5,0,2,0,0,0,3]
Dec 29 11:42:44.52: [19868]: --> [7:CONNECT]
Dec 29 11:42:44.52: [19868]: SEND begin page
Dec 29 11:42:44.58: [19868]: <-- data [1026]
Dec 29 11:42:44.58: [19868]: <-- data [1028]
Dec 29 11:42:44.58: [19868]: <-- data [1036]
Dec 29 11:42:44.58: [19868]: <-- data [640]
Dec 29 11:42:44.58: [19868]: SENT 3712 bytes of data
Dec 29 11:42:44.58: [19868]: SEND 1D RTC
Dec 29 11:42:44.58: [19868]: <-- data [9]
Dec 29 11:42:44.58: [19868]: SEND end page
Dec 29 11:42:44.58: [19868]: SEND send EOP (no more pages or documents)
Dec 29 11:42:44.58: [19868]: <-- data [2]
Dec 29 11:42:52.20: [19868]: --> [7:+FHS:00]
Dec 29 11:42:52.20: [19868]: REMOTE HANGUP: Normal and proper end of connection (code 0)
Dec 29 11:42:52.20: [19868]: SEND recv MCF (message confirmation)
Dec 29 11:42:52.21: [19868]: SEND FAX (00000047): FROM root@faxserver.komtel.lan TO +49.461.9090031 (page 1 of 1 sent in 0:15)
Dec 29 11:42:52.21: [19868]: SEND FAX (00000047): FROM root@faxserver.komtel.lan TO +49.461.9090031 (docq/doc36.ps;31 sent in 0:15)
Dec 29 11:42:52.24: [19868]: <-- [5:ATH0\r]
Dec 29 11:42:52.34: [19868]: --> [2:OK]
Dec 29 11:42:52.34: [19868]: MODEM set DTR OFF
Dec 29 11:42:52.36: [19868]: SESSION END
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


Station B:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Dec 29 11:44:56.36: [19882]: SESSION BEGIN 00000048 494619090021
Dec 29 11:44:56.36: [19882]: SEND FAX: JOB 33 DEST +49.461.9090021 COMMID 00000048
Dec 29 11:44:56.36: [19882]: MODEM set DTR OFF
Dec 29 11:44:56.36: [19882]: DELAY 2600 ms
Dec 29 11:44:58.97: [19882]: MODEM set DTR ON
Dec 29 11:44:58.97: [19882]: MODEM set baud rate: 115200 baud, input flow RTS/CTS, output flow RTS/CTS
Dec 29 11:44:58.97: [19882]: MODEM flush i/o
Dec 29 11:44:58.97: [19882]: <-- [23:ATS40=15E0V1Q0X3S0=0H0\r]
Dec 29 11:44:59.10: [19882]: --> [2:OK]
Dec 29 11:44:59.10: [19882]: <-- [12:ATS8=2S7=60\r]
Dec 29 11:44:59.23: [19882]: --> [2:OK]
Dec 29 11:44:59.23: [19882]: <-- [14:AT+FCLASS=2.0\r]
Dec 29 11:44:59.36: [19882]: --> [2:OK]
Dec 29 11:44:59.36: [19882]: <-- [9:AT+FLO=2\r]
Dec 29 11:44:59.49: [19882]: --> [2:OK]
Dec 29 11:44:59.49: [19882]: <-- [9:AT+FPP=0\r]
Dec 29 11:44:59.62: [19882]: --> [2:OK]
Dec 29 11:44:59.62: [19882]: <-- [9:AT+FBO=0\r]
Dec 29 11:44:59.75: [19882]: --> [2:OK]
Dec 29 11:44:59.75: [19882]: <-- [10:AT+FCT=30\r]
Dec 29 11:44:59.88: [19882]: --> [2:OK]
Dec 29 11:44:59.88: [19882]: <-- [15:AT+FNR=1,1,1,1\r]
Dec 29 11:45:00.01: [19882]: --> [2:OK]
Dec 29 11:45:00.01: [19882]: <-- [9:AT+FIE=0\r]
Dec 29 11:45:00.14: [19882]: --> [2:OK]
Dec 29 11:45:00.14: [19882]: <-- [9:AT+FBU=1\r]
Dec 29 11:45:00.27: [19882]: --> [5:ERROR]
Dec 29 11:45:00.27: [19882]: MODEM Command error
Dec 29 11:45:00.27: [19882]: <-- [23:AT+FCC=1,5,2,2,0,0,0,0\r]
Dec 29 11:45:00.40: [19882]: --> [2:OK]
Dec 29 11:45:00.40: [19882]: <-- [7:ATL2M1\r]
Dec 29 11:45:00.53: [19882]: --> [2:OK]
Dec 29 11:45:00.53: [19882]: MODEM input buffering enabled
Dec 29 11:45:00.53: [19882]: <-- [14:AT+FCLASS=2.0\r]
Dec 29 11:45:00.76: [19882]: --> [2:OK]
Dec 29 11:45:00.76: [19882]: <-- [9:AT+FLO=2\r]
Dec 29 11:45:00.99: [19882]: --> [2:OK]
Dec 29 11:45:00.99: [19882]: <-- [9:AT+FPP=0\r]
Dec 29 11:45:01.22: [19882]: --> [2:OK]
Dec 29 11:45:01.22: [19882]: <-- [9:AT+FBO=0\r]
Dec 29 11:45:01.45: [19882]: --> [2:OK]
Dec 29 11:45:01.45: [19882]: <-- [10:AT+FCT=30\r]
Dec 29 11:45:01.68: [19882]: --> [2:OK]
Dec 29 11:45:01.68: [19882]: <-- [15:AT+FNR=1,1,1,1\r]
Dec 29 11:45:01.91: [19882]: --> [2:OK]
Dec 29 11:45:01.91: [19882]: <-- [9:AT+FIE=0\r]
Dec 29 11:45:02.14: [19882]: --> [2:OK]
Dec 29 11:45:02.14: [19882]: <-- [9:AT+FBU=1\r]
Dec 29 11:45:02.37: [19882]: --> [5:ERROR]
Dec 29 11:45:02.37: [19882]: MODEM Command error
Dec 29 11:45:02.37: [19882]: <-- [23:AT+FCC=1,5,2,2,0,0,0,0\r]
Dec 29 11:45:02.60: [19882]: --> [2:OK]
Dec 29 11:45:02.60: [19882]: <-- [29:AT+FLI="KomTel Faxserver L2"\r]
Dec 29 11:45:02.83: [19882]: --> [2:OK]
Dec 29 11:45:02.85: [19882]: DIAL 9090021
Dec 29 11:45:02.85: [19882]: <-- [14:ATDT09090021@\r]
Dec 29 11:46:00.57: [19882]: --> [9:NO ANSWER]
Dec 29 11:46:00.57: [19882]: SEND FAILED: No answer from remote
Dec 29 11:46:00.57: [19882]: <-- [5:ATH0\r]
Dec 29 11:46:00.80: [19882]: --> [2:OK]
Dec 29 11:46:00.80: [19882]: MODEM set DTR OFF
Dec 29 11:46:00.80: [19882]: SESSION END
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Regards,
Okke.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Tue, 29 Dec 1998 18:32:35 -0500 (EST)
From: Gerry Doris <gdoris@shaw.wave.ca>
To: Okke Timm <okke@asta.uni-hamburg.de>
Subject: RE: flexfax: Problems with 3com/USR 56k Voice Faxmodem / Maillis
Cc: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

What do your config files look like?

Gerry

On 29-Dec-98 Okke Timm wrote:
> Hello,
> 
> I have some problems with 3com/USR 56k Voice Faxmodems and
> HylaFAX. We have
> two normal but different faxstatios. The modems do work with
> station A but
> refuse to work with station B. The modems dial to station B,
> establish a
> connection (tested with minicom) but HylaFAX doesn't seem to
> notice... here
> are the logs:
> 
 - - - - - -
> 
> Regards,
> Okke.

----------------------------------
E-Mail: Gerry Doris <gdoris@shaw.wave.ca>
Date: 29-Dec-98
Time: 18:31:29

"The lyf so short, the craft so long to learne"  Chaucer
----------------------------------

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: Problems with 3com/USR 56k Voice Faxmodem / Maillist archive
To: okke@asta.uni-hamburg.de
CC: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Date: Tue, 29 Dec 1998 23:39:10 +0000 (GMT)
Sender: owner-flexfax@celestial.com

> Dec 29 11:42:17.63: [19868]: <-- [29:AT+FLI=3D"KomTel Faxserver L2"\r]
                                                 ^^^^^^^^^^^^^^^^^^^
Technically illegal.  Please try restricting to +0123456789, although
this is unlikely to be the problem.

> Dec 29 11:42:17.86: [19868]: --> [2:OK]
> Dec 29 11:42:17.88: [19868]: DIAL 9090031
> Dec 29 11:42:17.88: [19868]: <-- [14:ATDT09090031@\r]
> Dec 29 11:42:34.18: [19868]: --> [4:+FCO]
> Dec 29 11:42:37.30: [19868]: --> [36:+FNF:=11=80=8AI=10KOMTEL          O=80=
                                            ^^^^^^^^^^^^^                 ^^^^
> =80=D8=8E=01=01=01=01=04]
  ^^^^^^^^^^^^^^^^^^^^^^^^
See many previous articles and web sites on broken firmware in USR
FAX modems.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 08:33:17 +0100
From: Okke Timm <okke@asta.uni-hamburg.de>
To: flexfax@sgi.com
Subject: Re: flexfax: Problems with 3com/USR 56k Voice Faxmodem / Maillis
Reply-To: okke@asta.uni-hamburg.de
Mail-Followup-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

Gerry Doris wrote:
> What do your config files look like?

OK, here they are...

Regards
Okke.

Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\config"

Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\config.ttyS1"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Mon, 28 Dec 1998 13:54:00 -0500
From: Daya Cooppan <dcooppan@mediaone.net>
Organization: BULL HN
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: Help with FAX modem
Sender: owner-flexfax@celestial.com

Hi,

I just installed HylaFax version 4.0 on RedHat Linux 5.2.

This took a while but I finally got thinks working. The modem seems to
dial and make a connection to the far end fax machine ...then stalls.
Error message is something to do with +FPHCTO and +FET.

I have a 3Com USR 56K VOICE FAXMODEM that supports Class2.0 and Class1.
I tied various combinations with the generic Class2.0 config
(/var/spool/fax/etc/config.cua1) and the usr-2.0 config
(/var/spool/fax/config). Ran faxsetup, etc.

No luck ..the modem seems to dial and make an initial connection but
then stalls. I can tell because the "tran" sound stops.

HELP - Is there a better USR (class2.0) file for USR 56K modems out
there ?

Thanks in advance,
Daya
d.cooppan@mediaone.net

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: Questions or Error Code
To: ckhui@school.net.hk
Date: Mon, 28 Dec 1998 19:36:12 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> Dec 22 13:23:30.90: [ 7221]: USE 9600 bit/s

= 1200 bytes/s

> Dec 22 13:23:37.12: [ 7221]: SEND begin page
> Dec 22 13:23:49.11: [ 7221]: SENT 25782 bytes of data
> Dec 22 13:24:03.08: [ 7221]: SENT 25861 bytes of data
> Dec 22 13:24:09.07: [ 7221]: SENT 11120 bytes of data

62,793 bytes in 31.95 secs = 1,965 bytes/sec

> Dec 22 13:24:09.07: [ 7221]: SEND 1D RTC
> Dec 22 13:24:09.07: [ 7221]: SEND end page
> Dec 22 13:24:20.14: [ 7221]: --> [2:^S^Q]

Modem attempting software flow control.

Conclusion, definitely a flow control problem.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Posted-Date: Mon, 28 Dec 1998 13:20:51 -0700 (MST)
Date: Mon, 28 Dec 1998 13:25:15 -0700 (MST)
From: John Williams <williams@morinda.com>
To: Hylafax <flexfax@sgi.com>
Subject: flexfax: HylaFAX in Japan?
Sender: owner-flexfax@celestial.com

Is anyone using HylaFAX in Japan?

I'm wondering if there are any issues with the phone system, or anything
else which might be tricky to deal with.  I'm in the USA, but our company
is going to be installing hylafax in our Japan office.

Can WHFC do kanji?

~ John Williams

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Mon, 28 Dec 1998 19:21:35 -0500
From: Steven A DuChene <sad@hpuerca.atl.hp.com>
To: flexfax@sgi.com
Subject: flexfax: is there a faxdelmodem proceedure?
Sender: owner-flexfax@celestial.com

I have a HylaFAX server setup with faxgetting running from the inittab
against four modem. We had to temporarily remove two modems so I turned
off the faxgetty that was running against those two devices but when
I run faxstat it still shows the modems as running & idle. If I send
a fax out it does get sent out via the two remaining modems but I am
wondering about the spurious output from faxstat. Should I also
move/remove the FIFO.cul* and config.cul* files for the two modems
thus neccesitating running faxaddmodem when I put the hardware back
on the system or is there a better method to temporarily turn off
an available modem?
-- 
Steve DuChene              sad@ale.org

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: "Mark G. Thomas" <Mark@Misty.com>
Subject: Re: flexfax: is there a faxdelmodem proceedure?
To: sad@hpuerca.atl.hp.com (Steven A DuChene)
Date: Tue, 29 Dec 1998 15:49:51 -0500 (EST)
Cc: flexfax@sgi.com
Sender: owner-flexfax@celestial.com


Steve,

You might just need to manually remove the stray files in /var/spool/fax/status

I suggest keeping your config.cul* files since their existance itself is
not causing the extra faxstat info.

-Mark

> I have a HylaFAX server setup with faxgetting running from the inittab
> against four modem. We had to temporarily remove two modems so I turned
> off the faxgetty that was running against those two devices but when
> I run faxstat it still shows the modems as running & idle. If I send
> a fax out it does get sent out via the two remaining modems but I am
> wondering about the spurious output from faxstat. Should I also
> move/remove the FIFO.cul* and config.cul* files for the two modems
> thus neccesitating running faxaddmodem when I put the hardware back
> on the system or is there a better method to temporarily turn off
> an available modem?
> -- 
> Steve DuChene              sad@ale.org


-- 
Mark G. Thomas (Mark@Misty.com -- http://www.misty.com/)

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: "George Anderson Jr" <geoande@cape.com>
To: <flexfax@sgi.com>
Subject: flexfax: whfc not accepting login
Date: Mon, 28 Dec 1998 21:07:43 -0500
Importance: Normal
Sender: owner-flexfax@celestial.com

Seems too finding the hylafax server properly, but refuses to login properly
after entering the password for the login user in whfc.



Any ideas??


Rh5.2
Hylafax 40pl2

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 14:48:11 +0100
From: Philipp Steinkrueger <philipp@oberberg-online.de>
To: George Anderson Jr <geoande@cape.com>
CC: flexfax@sgi.com
Subject: Re: flexfax: whfc not accepting login
Sender: owner-flexfax@celestial.com

George Anderson Jr schrieb:
> 
> Seems too finding the hylafax server properly, but refuses to login properly
> after entering the password for the login user in whfc.
> 

did you read the Hylafax FAQ about setting user passwords ??
read it at www.hylafax.org.
if you are not able to set passwords, you can also disable the
passwordfile entry
in your hfaxd.conf (<- not sure if this is the right file)


philipp

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Tue, 29 Dec 1998 21:29:09 +1300
From: "Steve Rooke" <SRooke@chhlth.govt.nz>
To: <flexfax@sgi.com>, <Ulrich.Eckhardt@transcom.de>
Cc: "Steve Rooke" <SRooke.CPH.CHC@chhlth.govt.nz>
Subject: Re: flexfax: Problems trying to install WHFC NT 4.0 SP3,
	missing libraryfiles
Sender: owner-flexfax@celestial.com

Thanks, but this does not seem, to me, to be the answer.  The file unzips ok, so it is not corrupted by ascii transfer, and I can extract all the files fine.

I decided to download the non-windows-setup version which installs and works fine, so I'm a happy man now, thanks.

Cheers,
Steve
>>> Ulrich Eckhardt <Ulrich.Eckhardt@transcom.de> 12/28 10:13  >>>
Steve Rooke wrote:
> 
> I get an error:
> 
> 'One of the library files needed to run C:\HylaFAX\whfc\disk1\setup.exe is damaged. Please reinstall this application.'
> 
> when trying to install whfc-1.0.0.2_SetupNT.zip under NT 4.0 SP3.  I've tried dowloading the zip a couple of times but always get the same message. Does anyone have an idea on this please?
> 
> Thanks,
> Steve

Hi,

downloaded via FTP and set transfer type to ASCII instead of Binary ?

Uli
-- 
Ulrich Eckhardt                         Tr@nscom GbR 
http://people.frankfurt.netsurf.de/uli  http://www.transcom.de 
                                        Lagerstrae 11-15 A8
                                        64807 Dieburg Germany

**********************************************************************
This email and any files transmitted with it are confidential and 
intended solely for the use of the individual or entity to whom they   
are addressed. If you have received this email in error please notify 
the system manager.

This footnote also confirms that this email message has been swept by 
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**********************************************************************

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Tue, 29 Dec 1998 08:44:34 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: Help with FAX modem
Cc: Daya Cooppan <dcooppan@mediaone.net>
Sender: owner-flexfax@celestial.com

At 13:54 28/12/98 -0500, Daya Cooppan <dcooppan@mediaone.net> wrote:
>
>I have a 3Com USR 56K VOICE FAXMODEM that supports Class2.0 and Class1.
>I tied various combinations with the generic Class2.0 config
>(/var/spool/fax/etc/config.cua1) and the usr-2.0 config
>(/var/spool/fax/config). Ran faxsetup, etc.
>

Hi,

A fix to the usr-2.0 config file, and your mileage may vary, is to 
insert :-

  Class2NRCmd: AT+FNR=1,1,1,0      #setup status reporting command 

The mileage here depends on the date of the firmware in your Sportster;
(checked with the 'ATI7' command) 1997 - you are probably okay; 1996 -
you may have to go with Class 1.

HTH,
Phil Watkinson,
Boston, UK.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
To: williams@morinda.com
Cc: flexfax@sgi.com
Subject: Re: flexfax: HylaFAX in Japan?
Date: Tue, 29 Dec 1998 21:35:46 +0900
From: "Andrew S. Howell" <andy@tibco.com>
X-Dispatcher: imput version 980905(IM100)
Lines: 55
Sender: owner-flexfax@celestial.com

>>>>> "John" == John Williams <williams@morinda.com> writes:

    John> Is anyone using HylaFAX in Japan?  I'm wondering if there
    John> are any issues with the phone system, or anything else which
    John> might be tricky to deal with.  I'm in the USA, but our
    John> company is going to be installing hylafax in our Japan
    John> office.

John,

	I'm using it both at home and at our office here in Tokyo. 

    John> Can WHFC do kanji?

I have not used WHFC to much. In fact, the last time it tried it, I
ran into a problem that required to re-install service pack 3 on
NT. M$ saw fit to remove ntkernel.exe in the process. I upgraded to
Linux and have been much happier! :) Note, this was not WHFC's
fault. I will probably give it another go soon, as there are others in
the office that are not a MS phobic as I.

As for Kanji, that should not be a problem. The printer driver
actually takes care of generating the postscript. For some stuff I fax
from home, I just print to a file on a samba share, and then send it
from Linux. WHFC works the same way ( as I remember, its been quite a
while. )

Note that the PC printer driver generates kanji postscript fonts from
True Type fonts, and sends them the page. The only effect of this is
that generated PS can be larger, say 500k+ if you use a few fonts. I
only send 1 or two page docs, so it is likely that additional pages
would not incur such an overhead.

As for Hylafax supporting Kanji, that is another thing altogether. It
has been on my want-to-do-list for a long time. Ghostscript does
support kanji, and there are patches to get it to support True Type
kanji fonts directly. This works from sendfax, in that it will pass
the PS to GS, and GS will render the fonts correctly.

What does not work, is sending kanji text files directly. The code in
Hylafax is geared towards 7/8 bit characters. This also applies to the
cover page generation as well. I made a patch quite some time ago to
use an external kanji text to postscript formatter. Hylafax uses a
"magic" mechanism, like "file", to figure out the file type. It can
then call a PS formatter to convert the text. I think I can dig this
up if you are interested.

It will be a fair amount of work to get it to handle CJK properly. I'm
happy to supply more info if you want, and might ever finally take
this project on, it there is interest out there.

Regards,

	Andy

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: "Carl Patten" <cpatte@trimodalinc.com>
To: <flexfax@sgi.com>
Subject: flexfax: Converting PCL to PostScript or TIFF
Date: Tue, 29 Dec 1998 12:25:10 -0600
Importance: Normal
Sender: owner-flexfax@celestial.com


I'm in the midst of converting my company's SCO Unix 5.0.4 fax server from
DigiFAX to HylaFAX 4.0 and need help with PCL-to-PostScript or PCL-to-TIFF
conversion.

My company's faxed reports are text files with a short PCL5 printer control
string and some PC-8 graphics characters.  This is enough to make SCO's
"file" command identify the file as "data" instead of ASCII, and make
HylaFAX's sendfax command choke with a "Can not determine file type" error.

How can I cleanly convert this file to a fairly high quality fax? I've seen
mention made of a PCL RIP but have no idea what it is.  I do have
GhostScript and its fonts installed.

Thanks,

--
Carl Patten
Systems Administrator
Trimodal Inc.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 09:16:37 +1100
From: Keith Gray <kapgray@ocean.com.au>
Organization: K & AP Gray
To: Carl Patten <cpatte@trimodalinc.com>
CC: HylaFax Mailing List <flexfax@sgi.com>
Subject: Re: flexfax: Converting PCL to PostScript or TIFF
Sender: owner-flexfax@celestial.com

Carl Patten wrote:
> 
> I'm in the midst of converting my company's SCO Unix 5.0.4 fax server from
> DigiFAX to HylaFAX 4.0 and need help with PCL-to-PostScript or PCL-to-TIFF
> conversion.
> 
> My company's faxed reports are text files with a short PCL5 printer control
> string and some PC-8 graphics characters.  This is enough to make SCO's
> "file" command identify the file as "data" instead of ASCII, and make
> HylaFAX's sendfax command choke with a "Can not determine file type" error.
> 
> How can I cleanly convert this file to a fairly high quality fax? I've seen
> mention made of a PCL RIP but have no idea what it is.  I do have
> GhostScript and its fonts installed.
> 

If your workstations are M$ you could just use WHFC and a Postscript
Printer Driver

Keith
-- 
http://members.ocean.com.au/kapgray/

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: "Carl Patten" <cpatte@trimodalinc.com>
To: <flexfax@sgi.com>
Subject: RE: flexfax: Converting PCL to PostScript or TIFF
Date: Tue, 29 Dec 1998 17:49:56 -0600
Importance: Normal
Sender: owner-flexfax@celestial.com



> -----Original Message-----
> From: keith@sotong.ocean.com.au [mailto:keith@sotong.ocean.com.au]On
> Behalf Of Keith Gray
> Sent: Tuesday, December 29, 1998 4:17 PM
> To: Carl Patten
> Cc: HylaFax Mailing List
> Subject: Re: flexfax: Converting PCL to PostScript or TIFF
>
> If your workstations are M$ you could just use WHFC and a Postscript
> Printer Driver
>

That part (faxing from WHFC PCs) is working perfectly.  I'm stuck on the
server-generated PCL-language reports, though.  DigiFAX used a tool called
pcl2tiff which seems to work ok, but I'm not happy with the quality.

--
Carl Patten
Systems Administrator
Trimodal Inc.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Tue, 29 Dec 1998 14:26:01 -0500
From: Alex <backgroundinfo@mindspring.com>
To: HylaFAX newsgroup <flexfax@sgi.com>
Subject: flexfax: Printing
Sender: owner-flexfax@celestial.com

I don't know if you can be of assistance. I printed a tiff file to a .ps
file instead of to my printer. I use KDE by the way and their fax
viewer, which doesn't let me choose which page to print -- it's all or
none. Now when I view the .ps file within the ps viewer, everything
looks fine. The problem I'm having is that I cna't print the page I want
to the printer. I tested it out by printing a word document that was
faxed out first. It prints just fine. The print commands, such as print
spool and variable are the same in both print attempts. Any ideas as to
why I can't print a certain page when it gives me that option?

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Tue, 29 Dec 1998 15:25:58 -0600
From: Tim Kelley <tpkelley@winkinc.com>
X-Accept-Language: en
To: torsten@xtremeweb.de
CC: flexfax@sgi.com
Subject: Re: flexfax: Modem Config Database
Sender: owner-flexfax@celestial.com



Torsten Mueller wrote:

> I want to generate a database, which contains working config.tty**
> data for modems.
> 
> I would take the following entries into the database:
> 
> Modem manufacturer
> model
> e-mail of the sender
> name of the sender
> config itself
> comments to the config
> 
> I hope, with this database we can (better) solve requests for "working
> config.ttyS* for my modem"

This is an awesome idea, I am currently having great difficulties with a
Sportster 14.4 being used as a Class 1. It rejects a lot of incoming
calls.

Does anyone have a good config for a USR Sportster 14.4?
Attachment Converted: "C:\PROGRAM FILES\EUDORA\Attach\tpkelley3.vcf"

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Tue, 29 Dec 1998 21:49:42 +0000 (GMT)
From: Darrell Berry <darrellb@hhcl.com>
To: flexfax@sgi.com
Subject: flexfax: periodic cleanup/seqf etc
Sender: owner-flexfax@celestial.com

whats the recommended procedure for a weekly/monthly cronscript to remove
received faxes that have already been dealt with/clean out the log
directory etc?

in our setup, i'm assuming that everything thats been sitting in recvq for
more than a week has been delivered to the correct recipiuent, so
basically everything can go after that period of time...

i'm assuming that faxrm does the right thing, but if anyone has it
automated, do they have scripts they can share?

--

also what happens when the various seqf values rollover (i'm assuming they
do this at 99999?)

thanks!

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Tue, 29 Dec 1998 22:32:02 -0300
From: Leonardo Pedretti <granfenix@usa.net>
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: Client commands
Sender: owner-flexfax@celestial.com

I am writing a win32 client for hylafax, but i can not find any document
that explains in full detail the new protocol. I have managed to
discover from trial and error, here and there, and reading RFC's from
the FTP protocol the way to submit a fax, but there are a lot of
commands (the JPARM secondary commands for example) that I can't figure
what do they do, or exactly what information must be sent to the HylaFAX
server in order to make a proper fax sending. If you could tell me of
some RFC or similar to this protocol, i would be spending a lot less
work on trying to figure it myself and trying and trying again...

Thank you for your attention.

Leonardo Pedretti
Firewall S.T.
Buenos Aires, Argentina

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
To: Leonardo Pedretti <granfenix@usa.net>
cc: flexfax@sgi.com
From: darren@hylafax.org
Subject: Re: flexfax: Client commands 
Date: Wed, 30 Dec 1998 02:31:03 +0000
Sender: owner-flexfax@celestial.com

In message <36898291.D6D6B87D@usa.net>, Leonardo Pedretti writes:
>I am writing a win32 client for hylafax, but i can not find any document
>that explains in full detail the new protocol. I have managed to
>discover from trial and error, here and there, and reading RFC's from
>the FTP protocol the way to submit a fax, but there are a lot of
>commands (the JPARM secondary commands for example) that I can't figure
>what do they do, or exactly what information must be sent to the HylaFAX
>server in order to make a proper fax sending. If you could tell me of
>some RFC or similar to this protocol, i would be spending a lot less
>work on trying to figure it myself and trying and trying again...


*hint* I went to http://www.hylafax.org/ and hit the search menu option on the left hand side. I entered 'protocol' and pressed SEARCH. The hit below was second on the list.

See http://www.hylafax.org/HylaFAQ/Q90.html

Basically try out all the client-side commands and use the -v flag to trace the protocol. That and reading the source is the best you can do, I'm afraid.

Such a document would be useful of course . . . perhaps you could contribute what you learn ;-)

-Darren

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 12:33:50 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: Modem config.tty** Database
Cc: Torsten Mueller <hyladb@xtremeweb.de>
Sender: owner-flexfax@celestial.com

At 23:43 28/12/98 -0800, Torsten Mueller wrote:
>Hello,
>
>as i said some days ago, i will "open" a database for config.tty**
>files for Hylafax.
>
>It`s now online. You could see it at
>http://www.xtremeweb.de/hyla/
>

Hi,

I think your online database is very good; the WODA software (if 
that is the name of the interface) looks very handy.

Can I suggest a couple of changes to the database structure?

I wonder if it maybe preferable to keep the config data in a 
seperate (text) file, and simply show a hyperlink to it in the
database record. This would :

    * make it easier for users to download - the current display
      unfortunately has many lines wrapped round;

    * reduce the size of the database, where more than one modem
      uses the same config file;

    * the browse screen would be more compact.

It would also (ah, the real reason!) make it easier to merge back
into the HylaFAX distribution the fruits of your labours (and those
of your contributors).

HylaFAX keeps generic and specific prototype config files in the
/var/spool/fax/config directory, which are used by the faxaddmodem
script to create an individual config file. The man page for
faxaddmodem gives a clear account on how this works. Sometime in 
the future it would be great if these files could be updated with
the information from your database.

In a previous mail, you asked if there were other fields to add to
the database, in particular ATI commands. The responses from ATI 
commands seem to vary so much from protocol to protocol and from
maker to maker. Can I suggest, instead, a single field to hold the
class and the flow control for the modem?

The new field would hold a combination of either 'CLASS1', 'CLASS2'
or 'CLASS2.0' *and* 'RTSCTS' or 'XONXOFF'.

So, the entry for a modem would be, for example :

     Manufacturer :        Multi-Tech Systems
     Model        :        MT2834ZDX
     Operation    :        CLASS2 RTSCTS
     Config File  :        mt-1432.txt
     Comments     :        Works well with standard config file 
                           mt-1432 from HylaFAX v4.0pl2.
     Sender       :        Phil Watkinson <pkw@elgro.co.uk>

What you do think?

A final thought. Carsten Hoeger <choeger@suse.de> is writing a
graphical version of faxsetup with the faxaddmodem functionality.
Rather than using the probemodem script, the current version allows
the user to select their modem from a list. Your database (in a flat
file form) would fulfill his needs for that list.... is it something
on which you could collaborate?

Sorry for a long post,

mfG,
Phil Watkinson,
Boston, UK.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 16:00:10 +0100
From: Peter Br <comet.friend@gmx.net>
To: flexfax@sgi.com
Subject: Re: flexfax: Modem config.tty** Database
Reply-To: comet.friend@gmx.net
Sender: owner-flexfax@celestial.com

The database is a great idea, I agree, all along.
Regarding the ati results: In addition to what you
suggest I think the firmware version the config file
has been tested with should go somewhere. 

Even better: __Any__ firmware and modem version a
config file has been tested with should be listed
in the db, along with information if it works or not.



	Peter


On Wed, Dec 30, 1998 at 12:33:50PM +0000, Phil Watkinson wrote:
> >http://www.xtremeweb.de/hyla/
> 
> Hi,
> 
> I think your online database is very good; the WODA software (if 
> that is the name of the interface) looks very handy.
> 
> Can I suggest a couple of changes to the database structure?
> 
> I wonder if it maybe preferable to keep the config data in a 
> seperate (text) file, and simply show a hyperlink to it in the
> database record. This would :
> 
>     * make it easier for users to download - the current display
>       unfortunately has many lines wrapped round;
> 
>     * reduce the size of the database, where more than one modem
>       uses the same config file;
> 
>     * the browse screen would be more compact.
> 
> It would also (ah, the real reason!) make it easier to merge back
> into the HylaFAX distribution the fruits of your labours (and those
> of your contributors).
> 
> HylaFAX keeps generic and specific prototype config files in the
> /var/spool/fax/config directory, which are used by the faxaddmodem
> script to create an individual config file. The man page for
> faxaddmodem gives a clear account on how this works. Sometime in 
> the future it would be great if these files could be updated with
> the information from your database.
> 
> In a previous mail, you asked if there were other fields to add to
> the database, in particular ATI commands. The responses from ATI 
> commands seem to vary so much from protocol to protocol and from
> maker to maker. Can I suggest, instead, a single field to hold the
> class and the flow control for the modem?
> 
> The new field would hold a combination of either 'CLASS1', 'CLASS2'
> or 'CLASS2.0' *and* 'RTSCTS' or 'XONXOFF'.
> 
> So, the entry for a modem would be, for example :
> 
>      Manufacturer :        Multi-Tech Systems
>      Model        :        MT2834ZDX
>      Operation    :        CLASS2 RTSCTS
>      Config File  :        mt-1432.txt
>      Comments     :        Works well with standard config file 
>                            mt-1432 from HylaFAX v4.0pl2.
>      Sender       :        Phil Watkinson <pkw@elgro.co.uk>
> 
> What you do think?
> 
> A final thought. Carsten Hoeger <choeger@suse.de> is writing a
> graphical version of faxsetup with the faxaddmodem functionality.
> Rather than using the probemodem script, the current version allows
> the user to select their modem from a list. Your database (in a flat
> file form) would fulfill his needs for that list.... is it something
> on which you could collaborate?
> 
> Sorry for a long post,
> 
> mfG,
> Phil Watkinson,
> Boston, UK.
> 

-- 
---------------------------------------------------------------------
	  The manual said the software required Windows 95
	  	   or better, so I installed Linux.
		     >>> comet.friend@gmx.net <<<
---------------------------------------------------------------------

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 14:31:31 +0800
From: Jacky Hui Chun Kit <ckhui@school.net.hk>
Reply-To: ckhui@school.net.hk
Organization: Hong Kong School Net, CUHK
To: "flexfax@sgi.com" <flexfax@sgi.com>
Subject: flexfax: questions on sending a large number of fax
Sender: owner-flexfax@celestial.com

Dear All,

    I have some problem. I use hylafaxv4.0pl2 on redhat5.1 running
kernel 2.0.36 and hayes accura 56K + FAX modem.
    When i use a shell script to call the sendfax program and loop to
send a large number of faxes (about 100), i found that some job show the
status
"Blocked by concurrent job" . What does that mean and is it a problem?
will the fax eventually be sent??
    Thanks.


Best RGds,
Jacky Hui

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 21:43:46 +0000 (GMT)
From: "Mark Wilson (P. Kay Associates Ltd.)" <percy@woodrow.demon.co.uk>
To: Jacky Hui Chun Kit <ckhui@school.net.hk>
cc: "flexfax@sgi.com" <flexfax@sgi.com>
Subject: Re: flexfax: questions on sending a large number of fax
Sender: owner-flexfax@celestial.com

Hi,

They'll go eventually; there's a parameter in /var/spool/fax/etc/config
called MaxConcurrentJobs which governs this behaviour.

Mark Wilson


P. Kay Associates Ltd.


On Wed, 30 Dec 1998, Jacky Hui Chun Kit wrote:

> Dear All,
> 
>     I have some problem. I use hylafaxv4.0pl2 on redhat5.1 running
> kernel 2.0.36 and hayes accura 56K + FAX modem.
>     When i use a shell script to call the sendfax program and loop to
> send a large number of faxes (about 100), i found that some job show the
> status
> "Blocked by concurrent job" . What does that mean and is it a problem?
> will the fax eventually be sent??
>     Thanks.
> 
> 
> Best RGds,
> Jacky Hui
> 
> 

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 15:11:34 +0800
To: flexfax@sgi.com
From: Edmond Cheung <ccedmond@uxmail.cityu.edu.hk>
Subject: flexfax: How to remove a job which is queued at the hylafax fax server?
Sender: owner-flexfax@celestial.com

Dear all,

I have sent several jobs to my hylafax 4.0pl2 fax server (linux 2.0.34 for
PC). I can show that some jobs are queueing by typing the command "faxstat
-s". However, when I try to kill some of the jobs which is queueing by
typing "faxrm id-number", the system response is "Cannot kill job.
Operation not permitted". Is it need to type "faxrm -a id-number" to use
the administrative privileges. If it is, it would prompt for a password.
What is the password it refers to and how to change the password? 
Thank you very much for your help!



Edmond  

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 09:28:36 +0100
From: Okke Timm <okke@asta.uni-hamburg.de>
To: flexfax@sgi.com
Subject: flexfax: Layering
Reply-To: okke@asta.uni-hamburg.de
Mail-Followup-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

Hello,

is it possible to achive some kind of layering with hylafax ? My company
wants to put a letter template under every outgouing fax...

Regards
Okke.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 17:20:06 +0800
To: flexfax@sgi.com
From: Azman Shariff <portal@pacific.net.sg>
Subject: flexfax: getpeername: Socket operation on non socket
Sender: owner-flexfax@celestial.com



What is this "getpeername: Socket operation on non socket" ???

Azman

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 10:54:18 +0100
From: Okke Timm <okke@asta.uni-hamburg.de>
To: flexfax@sgi.com
Subject: Re: flexfax: getpeername: Socket operation on non socket
Reply-To: okke@asta.uni-hamburg.de
Mail-Followup-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

Azman Shariff wrote:

> What is this "getpeername: Socket operation on non socket" ???

>From getpeername(2):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NAME
       getpeername - get name of connected peer

SYNOPSIS
       #include <sys/socket.h>

       int getpeername(int s, struct sockaddr *name, int *namelen);

DESCRIPTION
       Getpeername returns the name of the peer connected to socket s.  The
       namelen parameter should be initialized to indicate the amount of
       space pointed to by name.  On return it contains the actual size of
       the name returned (in bytes).  The name is truncated if the buffer
       provided is too small.


RETURN VALUE
       On success, zero is returned.  On error, -1 is returned, and errno is
       set appropriately.

ERRORS
       EBADF   The argument s is not a valid descriptor.

       ENOTSOCK
               The argument s is a file, not a socket.
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[...]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                              
For further investigation you should supply more information (how/where did
this happen, config files, etc.).

Regards
Okke.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 10:28:43 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: getpeername: Socket operation on non socket
Cc: Azman Shariff <portal@pacific.net.sg>
Sender: owner-flexfax@celestial.com

At 17:20 30/12/98 +0800, Azman Shariff wrote:
>
>What is this "getpeername: Socket operation on non socket" ???
>
>Azman
>

Hi,

I suggest you look carefully at the way you invoke hfaxd (either by
inetd.conf or a boot-time script) and double check the parameters.
The hfaxd man page gives the valid options.

This should be in the FAQ, methinks.

Cheers,
Phil Watkinson,
Boston, UK.
 

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 14:47:56 +0100
From: Okke Timm <okke@asta.uni-hamburg.de>
To: flexfax@sgi.com
Subject: Re: flexfax: Problems with 3com/USR 56k Voice Faxmodem (solved)
Reply-To: okke@asta.uni-hamburg.de
Mail-Followup-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

Hello,

the problem is solved. The dialstring contained an '@' at the end, so the
modem ignored everything (including a fax connect) for 5 seconds after
dialing. Station A let the caller ring 3 times, but station B answered the
call immediatly.

Wow. It took a long time and some scripting to find this one, because I
suspected the mistake in the class2.0 command configuration. May I suggest
to change the defaults and add this problem to the FAQ ?

Regards
Okke.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: "George Anderson Jr" <geoande@cape.com>
To: <flexfax@sgi.com>
Subject: flexfax: problems accessing the hylafax server
Date: Wed, 30 Dec 1998 15:30:03 -0500
Importance: Normal
Sender: owner-flexfax@celestial.com

<x-html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
<HTML><HEAD>
<META content='"MSHTML 5.00.0910.1309"' name=GENERATOR>
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type></HEAD>
<BODY bgColor=#ffffff>
<DIV><SPAN class=520172520-30121998><FONT size=2>I have read the FAQ, and have 
made changes within the /var/spool/fax/etc/hosts file</FONT></SPAN></DIV>
<DIV><SPAN class=520172520-30121998><FONT size=2>copying the format from the FAQ 
exactly. if someone could send me a copy of a working hosts file for their users 
I would be most appreciative.</FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV><SPAN class=520172520-30121998><FONT size=2>I am trying to access from an 
NT workstation, have tried both ; logging in using telnet then the user and the 
pass commands and bye using the whfc program.</FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV><SPAN class=520172520-30121998><FONT size=2>again any assistance you might 
offer would be appreciated.</FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV><SPAN class=520172520-30121998><FONT size=2>:)</FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV><SPAN class=520172520-30121998><FONT size=2>geo</FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV><SPAN class=520172520-30121998><FONT size=2>rh5.2</FONT></SPAN></DIV>
<DIV><SPAN class=520172520-30121998><FONT size=2>hylafax 
4.0pl2</FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<P><FONT size=2>George Anderson Jr<BR>West Yarmouth, Ma<BR><A 
href="mailto:geoande@cape.com">geoande@cape.com</A> </FONT></P>
<DIV>&nbsp;</DIV></BODY></HTML>
</x-html>

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 16:33:16 -0500 (EST)
From: Aidan Van Dyk <aidan@magma.ca>
Reply-To: aidan@magma.ca
Subject: Re: flexfax: problems accessing the hylafax server
To: geoande@cape.com
cc: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

On 30 Dec, George Anderson Jr wrote:
> I have read the FAQ, and have made changes within the
> /var/spool/fax/etc/hosts file
> copying the format from the FAQ exactly. if someone could send me a copy of
> a working hosts file for their users I would be most appreciative.
> 
> I am trying to access from an NT workstation, have tried both ; logging in
> using telnet then the user and the pass commands and bye using the whfc
> program.
> 
> again any assistance you might offer would be appreciated.

Many people have asked about this.  My example is built right from the
hosts manpage (man 5 hosts on linux) first line in the EXAMPLE section

This works for me.  The crypted passwords were taken right from
a .htaccess (web server) - standard unix crypt.  the localhost and
workstation give me access from the server and my workstation. Forms is
common user for the office (with an admin passwd some team leaders have
access to). aidan is me.  I know it's not all that secure, but that's
what firewalls are for.

I make no promises.  It works for me, and probably no-one else ;-).

a.


======================================
127.0.0.1
workstation.domain.com
# This is for Office use:
^forms@[^.]*\.domain\.com$:100:OGAyS0EvsKsO6:z9BiSXF4siQqU
^aidan@[^.]*\.domain\.com$:100::z9BiSXF4siQqU

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 09:43:31 -0800
From: "Steven R. Robertson" <srobert@anv.net>
X-Accept-Language: en
To: flexfax@sgi.com
Subject: flexfax: HylaFAX-v4.0pl2
Sender: owner-flexfax@celestial.com

I'm trying to get  started with a binary distribution of Hylafax-4.0pl2.
The documentation seems a little cryptic to me at times.
I've run faxsetup and faxaddmodem for a Gateway 2000 Telepath II. 
faxq and hfaxd are running but when I try to use sendfax. I get a mail
message back from the system that states.
"modem on /dev/cua0 appears wedged" and "repeated attempts to initialize
the modem have failed".
It also says "Consult the server trace logs".
 What is the name of the server trace log and where do I find it?
 Any ideas what could cause this?

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Wed, 30 Dec 1998 17:11:18 -0600
From: root <root@droopy.com>
To: flexfax@sgi.com
Subject: flexfax: Temporarily disable modem answer
Sender: owner-flexfax@celestial.com

With faxgetty, is there a way to temporarily disable answering?  With
mgetty, I could run a cron job to create the file "/etc/nologin.ttyS1"
and mgetty did not answer as long as that file existed...

I'm not on the mailing list, so please CC my address.

Thanx,
John

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: tg@aran.se (Tomas Gradin)
To: flexfax@sgi.com
cc: pa@aran.se
Subject: flexfax: HylaFAX v4.0pl2 under Solaris 7 with SunSoft C++ 4.2
Date: Thu, 31 Dec 1998 01:25:10 +0100
Sender: owner-flexfax@celestial.com

Hello,

LOG_PERROR is used in port/syslog.c, but openlog(3) doesn't have this logopt
on Solaris 7, so it isn't defined anywhere.

In port.h, HAS_NETERRNO_H is defined, which is incorrect.

Finally, also in port.h: paths.h and sys/bsdtypes.h should not be included.

/tg

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: sfrazier@ns1.futurenet.net
Date: Wed, 30 Dec 1998 20:30:36 -0500 (EST)
To: flexfax@sgi.com
Subject: flexfax: Hylafax on RedHat 5.2
Sender: owner-flexfax@celestial.com

I just got Hylafax 4.0pl-3rh5.386.rpm

I tried to install it and it complained about not having a couple of
packages that I found on the RH CD.  However, it wants ghostscript fonts
5.02.  That is newer than comes on the RH 5.2 (at least I couldn't find
it).  Could someone tell me where I could get it from?  I tried
ftp.hylafax.org.

Thanks.

Steve

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Fri, 1 Jan 1999 09:30:00 +0100 (MET)
From: Torsten Mueller <torsten@xtremeweb.de>
To: Phil Watkinson <pkw@elgro.co.uk>
cc: flexfax@sgi.com
Subject: flexfax: Re: Hylafax: Modem config.tty** Database
Sender: owner-flexfax@celestial.com



> >as i said some days ago, i will "open" a database for config.tty**
> >files for Hylafax.
> >
> >It`s now online. You could see it at
> >http://www.xtremeweb.de/hyla/
> >
> 
> Can I suggest a couple of changes to the database structure?

every suggestion is welcome, (in time there are only 2 entries)
changes to the structure are now not as hard as later to realize,
bit i think there are no more changes necessary. 
> 
> I wonder if it maybe preferable to keep the config data in a 
> seperate (text) file, and simply show a hyperlink to it in the
> database record. This would :
> 
>     * make it easier for users to download - the current display
>       unfortunately has many lines wrapped round;
> 
>     * reduce the size of the database, where more than one modem
>       uses the same config file;
> 
>     * the browse screen would be more compact.
> 
> It would also (ah, the real reason!) make it easier to merge back
> into the HylaFAX distribution the fruits of your labours (and those
> of your contributors).

it is now possible to upload a config file, which is downloadable.
the output of the search screens is now more compact (without the config
and the comment), take a look and tell me what you think now.
> 
> Can I suggest, instead, a single field to hold the
> class and the flow control for the modem?

Ready
 
> A final thought. Carsten Hoeger <choeger@suse.de> is writing a
> graphical version of faxsetup with the faxaddmodem functionality.
> Rather than using the probemodem script, the current version allows
> the user to select their modem from a list. Your database (in a flat
> file form) would fulfill his needs for that list.... is it something
> on which you could collaborate?

In time we have only 2 modems in this database, i think, in the future ,
if there are more modem config files available, it could be possible.
> 
> mfG,
> Phil Watkinson,
> Boston, UK.
> 
Torsten Mueller

From torsten@xtremeweb.de  Thu Feb 11 13:16:09 1999
Date: Fri, 1 Jan 1999 09:30:00 +0100 (MET)
From: Torsten Mueller <torsten@xtremeweb.de>
To: Phil Watkinson <pkw@elgro.co.uk>
cc: flexfax@sgi.com
Subject: Re: Hylafax: Modem config.tty** Database



> >as i said some days ago, i will "open" a database for config.tty**
> >files for Hylafax.
> >
> >It`s now online. You could see it at
> >http://www.xtremeweb.de/hyla/
> >
> 
> Can I suggest a couple of changes to the database structure?

every suggestion is welcome, (in time there are only 2 entries)
changes to the structure are now not as hard as later to realize,
bit i think there are no more changes necessary. 
> 
> I wonder if it maybe preferable to keep the config data in a 
> seperate (text) file, and simply show a hyperlink to it in the
> database record. This would :
> 
>     * make it easier for users to download - the current display
>       unfortunately has many lines wrapped round;
> 
>     * reduce the size of the database, where more than one modem
>       uses the same config file;
> 
>     * the browse screen would be more compact.
> 
> It would also (ah, the real reason!) make it easier to merge back
> into the HylaFAX distribution the fruits of your labours (and those
> of your contributors).

it is now possible to upload a config file, which is downloadable.
the output of the search screens is now more compact (without the config
and the comment), take a look and tell me what you think now.
> 
> Can I suggest, instead, a single field to hold the
> class and the flow control for the modem?

Ready
 
> A final thought. Carsten Hoeger <choeger@suse.de> is writing a
> graphical version of faxsetup with the faxaddmodem functionality.
> Rather than using the probemodem script, the current version allows
> the user to select their modem from a list. Your database (in a flat
> file form) would fulfill his needs for that list.... is it something
> on which you could collaborate?

In time we have only 2 modems in this database, i think, in the future ,
if there are more modem config files available, it could be possible.
> 
> mfG,
> Phil Watkinson,
> Boston, UK.
> 
Torsten Mueller

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Fri, 01 Jan 1999 17:47:37 +0000
To: HylaFAX List <flexfax@sgi.com>
From: Phil Watkinson <pkw@elgro.co.uk>
Subject: Re: flexfax: Re: Hylafax: Modem config.tty** Database
Sender: owner-flexfax@celestial.com

At 09:30 01/01/99 +0100, Torsten Mueller wrote:
>[snip]
>it is now possible to upload a config file, which is downloadable.
>the output of the search screens is now more compact (without the
>config and the comment), take a look and tell me what you think now.

Excellent. And I particularly like the 'Browse by Keyword' and 
'Browse Contents' facility. Response from the server/ server software
seems pretty nifty as well.

>
>In time we have only 2 modems in this database, i think, in the future,
>if there are more modem config files available, it could be possible.
>

Yes. I noted the 'Add to Database' button, but I didn't try it since
I didn't fancy typing in a whole config file. I suppose you expect
submissions still to be made to you via email ?

Cheers,
Phil Watkinson,
Boston, UK.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: flexfax: Modem Wedged on Binary Only Distribution (was: HylaFAX-v4.0pl2)
To: srobert@anv.net (Steven R. Robertson)
Date: Thu, 31 Dec 1998 10:09:23 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> 
> I'm trying to get  started with a binary distribution of Hylafax-4.0pl2.

Which binary distribution?  What operating system?  What version of the
operating system (NB Linux kernel versions are less important than the
name of the distribution and its version)?  Have you attempted to obtain
support from the distributor of the binary version?

> The documentation seems a little cryptic to me at times.

Relevant examples, so we can explain or someone can clarify in the
next version?

> I've run faxsetup and faxaddmodem for a Gateway 2000 Telepath II. 
> faxq and hfaxd are running but when I try to use sendfax. I get a mail
> message back from the system that states.
> "modem on /dev/cua0 appears wedged" and "repeated attempts to initialize
> the modem have failed".

You are not by any chance running another getty on cua0 are you?  (Note
for Linux you should be using ttyS0 for everything (although it is more 
important to ensure you are using the same one for everything) - cua0 should
be considered obsolete; cua0 will work if used consistently).
You are strongly reccommended to run faxgetty even for outgoing only
configurations.  I've never run it any other way, but recent articles
suggest that you may need to run faxstate if you are not using faxmodem -
please check the archives as this information may be unreliable.

> It also says "Consult the server trace logs".
>  What is the name of the server trace log and where do I find it?

See the config man page.

[ I've changed your subject as the original had almost no information in it. ]

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: How to remove a job which is queued at the hylafax fax server?
To: ccedmond@uxmail.cityu.edu.hk (Edmond Cheung)
Date: Thu, 31 Dec 1998 10:20:24 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> What is the password it refers to and how to change the password? 

See ...../etc/hosts, where .... is the fax spool directory, and the
associated man page.  NB this is not the same as /etc/hosts.

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: JOHN PRICE <john.price@adtran.com>
To: "'flexfax@sgi.com'" <flexfax@sgi.com>
Subject: flexfax: Disabling answer with faxgetty
Date: Thu, 31 Dec 1998 09:43:19 -0600
Sender: owner-flexfax@celestial.com

Is there a way to keep faxgetty from answering the phone?  I want it to
only answer after hours.

Using mgetty, I just wrote a cron to create "/etc/nologin.ttyS1" and
mgetty will not answer the phone while that file exists.

Is there a simular function with faxgett?

Thanx,
John

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
Date: Thu, 31 Dec 1998 12:20:53 -0500 (EST)
From: Aidan Van Dyk <aidan@magma.ca>
Reply-To: aidan@magma.ca
Subject: Re: flexfax: Disabling answer with faxgetty
To: john.price@adtran.com
cc: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

FAXCONFIG(8C)                                       FAXCONFIG(8C)


NAME
       faxconfig   -  dynamically  change  HylaFAX  configuration
       parameters

SYNOPSIS
       /usr/local/sbin/faxconfig [ -q queue-dir ] [ -m modem ]  [
       parameter value  ... ]


and the config option would be "RingsBeforeAnswer"

I've never tried this combination before, but I would suspect it to
work.  Just use a cronjob to set RingsBeforeAnswer to 0 (means never
answer) or 1 (or something else for more rings),


a.

On 31 Dec, JOHN PRICE wrote:
> Is there a way to keep faxgetty from answering the phone?  I want it to
> only answer after hours.
> 
> Using mgetty, I just wrote a cron to create "/etc/nologin.ttyS1" and
> mgetty will not answer the phone while that file exists.
> 
> Is there a simular function with faxgett?
> 
> Thanx,
> John

From torsten@xtremeweb.de  Thu Feb 11 13:16:09 1999
Date: Mon, 4 Jan 1999 06:55:21 +0100 (MET)
From: Torsten Mueller <torsten@xtremeweb.de>
To: pkw@elgro.co.uk
cc: flexfax@sgi.com
Subject: Re: flexfax: Re: Hylafax: Modem config.tty** Database



> ---Phil Watkinson <pkw@elgro.co.uk> wrote:
> >
> > Yes. I noted the 'Add to Database' button, but I didn't try it since
> > I didn't fancy typing in a whole config file. I suppose you expect
> > submissions still to be made to you via email ?
> > 
... typing in a whole config ...
what about copy and paste ?
is it not available under X11 ? (i have no X11 installed)

Submissions are in time only possible via the webinterface at
http://www.xtremeweb.de/hyla
I am not a expert for perl (i am learning ...) so i can not process
incoming mail to a special mail adress like hyladbentry@xtremeweb.de
automatic. If anyone is interested to write such a script for me (us) or
to tell me, how to do it, i am interested.

Greetings from germany

Torsten

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: "George Anderson Jr" <geoande@cape.com>
To: <flexfax@sgi.com>
Subject: flexfax: activating faxgetty during the bootup
Date: Thu, 31 Dec 1998 13:23:36 -0500
Importance: Normal
Sender: owner-flexfax@celestial.com

Hi all,


I am assuming that the faxgetty command needs to be placed into the inittab
file, if so what is the appropriate entry syntax for the command within that
file.


Many thanks,


:)


happy new year!


geo

From owner-flexfax@celestial.com  Thu Feb 11 13:16:09 1999
From: David Woolley <david@djwhome.demon.co.uk>
Subject: Re: flexfax: activating faxgetty during the bootup
To: geoande@cape.com (George Anderson Jr)
Date: Thu, 31 Dec 1998 22:17:27 +0000 (GMT)
Cc: flexfax@sgi.com
Reply-To: flexfax@sgi.com
Sender: owner-flexfax@celestial.com

> I am assuming that the faxgetty command needs to be placed into the inittab
> file, if so what is the appropriate entry syntax for the command within that
> file.

man inittab; man faxgetty

