Re: [Samba] RESPOND-EFAX/Payong Gig

2002-10-04 Thread Keith G. Murphy

OK, let's go through this again.

printfax.pl as it comes from the author already does a cover page (or, 
more precisely, it gets the server software to do it).  It turned out 
over time that what you really wanted was your client's logo on the 
page, which actually means a modification of faxcover.ps.

It further turned out that you're not using hylafax or mgetty, so you 
must be using a modified version of printfax.pl.

Therefore, I needed the faxcover.ps and printfax.pl you were using, 
because those are the things I would possibly have to tailor.  That's 
what I asked for, and instead you sent your printcap entry for faxlpr, 
then ignored further requests for info.  We had already gone through a 
prior period in which you ignored E-mails; you said later that you 
thought you might have lost some.

Do you see why I say you are difficult to work with?

I have burned up *way* too much time trying to work with you on this.  I 
gladly turn over this (non-technical) challenge to someone else.

 I need it to create a front end cover page.
 
 It's the only aditional thing I need it to do.
 
 Can you do this?
 
 
 On 2002.10.03 16:17 Keith G. Murphy wrote:
 
The only thing I said I couldn't (more like would not/didn't have time 
to) do was make the frontend (Respond) display PostScript.

A quote from your E-mail:

The front end should produce a postscript cover page.

I explained that with Respond/printfax.pl, the backend produces the 
PostScript, but that my Respond replacement could provide a preview of 
the fax.

You did not dispute that, and we continued to correspond for a while, so 
I assumed we were still go on the project.

I basically think that you never had a handle on what software you were 
using or how to express what you wanted.  And you apparently had a poor 
understanding of what I was trying to tell you.

That's the charitable interpretation, anyway.

But why you dropped the whole issue as I continued to try to get the 
information I needed to continue, I'm not sure.

None of this is a capital crime.  But I did find you very difficult to 
(try to) work with, and I think my warning was proper.

Anyway, this list is not the place to continue to discuss this.  Not 
that I want to, or have any desire to continue to (try to) work with you...

Ruben I Safir wrote:

And you said you couldn't do it

On 2002.10.03 12:56 Keith G. Murphy wrote:


Ruben Safir wrote:


I'm using efax and faxlpr to send faxes from the Windows computers.
I need to hire someone to hack RESPOND to create a nice Cover Letter with
inforamation in it about each user.

Can someone do this hack?


Be prepared for grief.  This guy posted to the Hylafax list a while 
back, saying he needed it for Hylafax.  I responded, we made a deal, I 
started working on it, but when I had questions he stopped responding.

He made another posting on the same list, I wrote to him again, he 
claimed to have lost my E-mails.

Started work again, had questions, turned out he wasn't sure about what 
he was running; I needed more detail, told him what files he needed to 
send me.

Got no response (for weeks) until I saw this posting.

Maybe someone else will have better luck dealing with this guy.

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba





-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] RESPOND-EFAX/Payong Gig

2002-10-04 Thread Ruben Safir

Keith

I'm using EFAX and faxlpr

The set up doesn't currently take in the user information or
ceate a cover sheet on the server side.

I'd like to create the cover sheet on the client side.
and send it in the print spool from windows


This is the printcap entry

fax2:\
 :lp=/dev/null:\
 :sd=/var/spool/fax:\
 :if=/usr/bin/faxlpr:
   

This is faxlpr

#!/bin/sh
#
# fax - script to make, send, receive, view or print a fax
# Copyright 1993-1999 by Ed Casas
#
# --- Start of user configuration section ---
#
# Notes:
#
#  - do not put spaces before or after the equal (=) signs.
#
#  - variables can also be set on the command line, for example:
#   fax DEV=cua0 send file.ps
#or in a configuration file (see CONFIGFILES below)
#

# The names of the fax script, efax and efix, including full path
# if necessary.

FAX=/usr/bin/fax
EFAX=/usr/bin/efax
EFIX=/usr/bin/efix
# The device to which the fax modem is connected (e.g. ttya for
# /dev/ttya).  Use a dial-out (cua) device if available.  If
# there are links to this device then all programs must use same
# name or the UUCP locking mechanism will fail.  For example, if
# /dev/modem is a link to /dev/cua1, then getty, uucp, kermit,
# pppd, dip, etc. must *all* use either /dev/modem or /dev/cua1.

DEV=ttyS0

# Your fax number in international format, 20 characters maximum.
# Use only digits, spaces, and the + character.

FROM=1 212 980 2177

# Your name as it should appear on the page header.

NAME=Rosenzweig  Maffia LLP

# The preferred page size for creating and printing faxes.
# Allowed values are letter, legal, and a4.

PAGE=letter
# PAGE=legal
# PAGE=a4

# The type of printer. Use 'pcl' for HP-PCL or 'ps' for
# Postscript.  See definition of PRINT (below) for more options.

PRTYPE=ps   # Postscript (e.g. Apple LaserWriter)
# PRTYPE=pcl# HP-PCL (e.g. HP LaserJet)

# The command to print image files from standard input.  Typically
# this is lpr or lp.

PRCMD=lpr

# The command to view a Portable Gray Map (PGM) image from the
# standard input.  Typically xv - or xloadimage stdin.

VIEWCMD=xloadimage stdin  # best
# VIEWCMD=pnmtoxwd | xwud # slower alternative
# VIEWCMD=xv -# much slower alternative

# The name of the Ghostscript executable including full path if
# necessary.  Only required if faxing Postscript files.

GS=/usr/bin/gs

# Dial string prefix and suffix such as T for tone dialing, P for
# pulse dialing, 9 to get an external line, commas for delays or
# W to wait for dial tone.  See definition of TELCVT below if you
# have more complex requirements.

DIALPREFIX=T
DIALSUFFIX=


# The name(s) of lock file(s) according to your system's
# conventions. Protect with single quotes for delayed evaluation.
# Add a leading '#' to the file name to use binary format.

LOCK='-x /var/lock/LCK..$DEV'   # modern systems
# LOCK='-x /usr/spool/uucp/LCK..$DEV'   # older systems
# LOCK='-x /var/lock/LCK..$DEV -x /var/spool/uucp/LCK..$DEV' # both
# LOCK='-x #/usr/spool/uucp/LCK..$DEV'  # binary format
# LOCK='-x /usr/spool/locks/LK.047.040.011' # SysV style names
# LOCK=''   # no lock file

# Uncomment one of the following lines to force xon/xoff flow
# control only if you have one of the types of modems listed.

# FCINIT='-j\Q4'# ATT (Dataport, Paradyne)
# FCINIT='-j\Q1'# Motorola (Power Modem, 3400 Pro,...)
# FCINIT='-j*F1'# QuickComm (Spirit II)
# FCINIT='-jH2'# USR (Courier, Sportster)
#FCINIT='-or'   # Multi-Tech (for bit reversal)
FCINIT='-oh'# Multi-Tech (for bit reversal)

# 
# The remaining options probably won't need to be changed.
# 

# Configuration files that are sourced if they exist.  Comment
# out if you don't need to use config files. Warning: any type of
# shell command in these files will be executed.

#CONFIGFILES=/etc/efax.rc ${HOME:-~}/.efaxrc ./.efaxrc

# A command that will generate unique names for logs and received
# files.  'date +%m%d%H%M%S' works on most systems.  Protect with
# single quotes.

TSTAMP='date +%m%d%H%M%S'
# TSTAMP='echo $$'  # alternative - use process number

# Shell command to convert aliases to phone numbers when sending
# faxes.  When executed $1 will be the alias and $f the file name
# to search.  The example below uses a directory file where alias
# lines start with the keyword fax followed by the alias in
# be the phone number. Other lines are ignored.  For example, if
# one of the files in DIRFILES (defined below) contained the line
# fax(kpmg): 691-3031, you could use the command fax send kpmg
# invoice.24. Protect with single 

Re: [Samba] RESPOND-EFAX/Payong Gig

2002-10-04 Thread Keith G. Murphy

Ruben Safir wrote:
 Keith
 
 I'm using EFAX and faxlpr

Ruben, it wasn't until the posting to *this* list that you revealed you 
were using efax.  And that changes everything.
 
 The set up doesn't currently take in the user information or
 ceate a cover sheet on the server side.
 
 I'd like to create the cover sheet on the client side.

Yes, with efax you would probably have to do that, since it doesn't seem 
to have much coverpage capability on the server side.

 and send it in the print spool from windows
 
 
 This is the printcap entry
 
 
 This is faxlpr
 
OK, it only now becomes apparent that of the three pieces of software 
you indicated to me that you were running, Hylafax (yes, I looked back 
in my saved E-mails, and you *did* mention Hylafax), printfax.pl, and 
Respond, you aren't actually using any of them.

Anyway, if you want to stick with efax, it looks like you need someone 
who can do you up a port monitor, like WHFC uses, a Windows application 
to take user input, like WHFC does, and write up a bunch of postscript. 
  I'm guessing, by the way.

WHFC sounds like a really good starting point; it's GNU-licensed.  I 
don't have the MS C compiler it needs, however, so I'm not interested.

Please, someone take this job and get this guy out of my hair!

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] RESPOND-EFAX/Payong Gig

2002-10-04 Thread Ruben Safir

Thanks

Reuvain

On Fri, Oct 04, 2002 at 11:33:04AM -0500, Keith G. Murphy wrote:
 Ruben Safir wrote:
 Keith
 
 I'm using EFAX and faxlpr
 
 Ruben, it wasn't until the posting to *this* list that you revealed you 
 were using efax.  And that changes everything.
 
 The set up doesn't currently take in the user information or
 ceate a cover sheet on the server side.
 
 I'd like to create the cover sheet on the client side.
 
 Yes, with efax you would probably have to do that, since it doesn't seem 
 to have much coverpage capability on the server side.
 
 and send it in the print spool from windows
 
 
 This is the printcap entry
 
 
 This is faxlpr
 
 OK, it only now becomes apparent that of the three pieces of software 
 you indicated to me that you were running, Hylafax (yes, I looked back 
 in my saved E-mails, and you *did* mention Hylafax), printfax.pl, and 
 Respond, you aren't actually using any of them.
 
 Anyway, if you want to stick with efax, it looks like you need someone 
 who can do you up a port monitor, like WHFC uses, a Windows application 
 to take user input, like WHFC does, and write up a bunch of postscript. 
  I'm guessing, by the way.
 
 WHFC sounds like a really good starting point; it's GNU-licensed.  I 
 don't have the MS C compiler it needs, however, so I'm not interested.
 
 Please, someone take this job and get this guy out of my hair!

-- 
__

Brooklyn Linux Solutions
__
DRM is THEFT - We are the STAKEHOLDERS http://www.nyfairuse.org

http://www.mrbrklyn.com - Consulting
http://www.nylxs.com/radio - Free Software Radio Show and Archives
http://www.brooklynonline.com - For the love of Brooklyn
http://www.nylxs.com - Leadership Development in Free Software
http://www.nyfairuse.org - The foundation of Democracy
http://www2.mrbrklyn.com/resources - Unpublished Archive or stories and articles from 
around the net
http://www2.mrbrklyn.com/mp3/dr.mp3 - Imagine my surprise when I saw you...
http://www2.mrbrklyn.com/downtown.html - See the New Downtown Brooklyn

1-718-382-5752



-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



[Samba] RESPOND-EFAX/Payong Gig

2002-10-03 Thread Ruben Safir

I'm using efax and faxlpr to send faxes from the Windows computers.
I need to hire someone to hack RESPOND to create a nice Cover Letter with
inforamation in it about each user.

Can someone do this hack?


Ruben
-- 
__

Brooklyn Linux Solutions
__
DRM is THEFT - We are the STAKEHOLDERS http://www.nyfairuse.org

http://www.mrbrklyn.com - Consulting
http://www.nylxs.com/radio - Free Software Radio Show and Archives
http://www.brooklynonline.com - For the love of Brooklyn
http://www.nylxs.com - Leadership Development in Free Software
http://www.nyfairuse.org - The foundation of Democracy
http://www2.mrbrklyn.com/resources - Unpublished Archive or stories and articles from 
around the net
http://www2.mrbrklyn.com/mp3/dr.mp3 - Imagine my surprise when I saw you...
http://www2.mrbrklyn.com/downtown.html - See the New Downtown Brooklyn

1-718-382-5752



-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] RESPOND-EFAX/Payong Gig

2002-10-03 Thread Keith G. Murphy

Ruben Safir wrote:
 I'm using efax and faxlpr to send faxes from the Windows computers.
 I need to hire someone to hack RESPOND to create a nice Cover Letter with
 inforamation in it about each user.
 
 Can someone do this hack?
 
Be prepared for grief.  This guy posted to the Hylafax list a while 
back, saying he needed it for Hylafax.  I responded, we made a deal, I 
started working on it, but when I had questions he stopped responding.

He made another posting on the same list, I wrote to him again, he 
claimed to have lost my E-mails.

Started work again, had questions, turned out he wasn't sure about what 
he was running; I needed more detail, told him what files he needed to 
send me.

Got no response (for weeks) until I saw this posting.

Maybe someone else will have better luck dealing with this guy.

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] RESPOND-EFAX/Payong Gig

2002-10-03 Thread Ruben I Safir

And you said you couldn't do it

On 2002.10.03 12:56 Keith G. Murphy wrote:
 Ruben Safir wrote:
  I'm using efax and faxlpr to send faxes from the Windows computers.
  I need to hire someone to hack RESPOND to create a nice Cover Letter with
  inforamation in it about each user.
  
  Can someone do this hack?
  
 Be prepared for grief.  This guy posted to the Hylafax list a while 
 back, saying he needed it for Hylafax.  I responded, we made a deal, I 
 started working on it, but when I had questions he stopped responding.
 
 He made another posting on the same list, I wrote to him again, he 
 claimed to have lost my E-mails.
 
 Started work again, had questions, turned out he wasn't sure about what 
 he was running; I needed more detail, told him what files he needed to 
 send me.
 
 Got no response (for weeks) until I saw this posting.
 
 Maybe someone else will have better luck dealing with this guy.
 
 -- 
 To unsubscribe from this list go to the following URL and read the
 instructions:  http://lists.samba.org/mailman/listinfo/samba
 
-- 
__

Brooklyn Linux Solutions
__
DRM is THEFT - We are the STAKEHOLDERS http://www.nyfairuse.org

http://www.mrbrklyn.com - Consulting
http://www.nylxs.com/radio - Free Software Radio Show and Archives
http://www.brooklynonline.com - For the love of Brooklyn
http://www.nylxs.com - Leadership Development in Free Software
http://www.nyfairuse.org - The foundation of Democracy
http://www2.mrbrklyn.com/resources - Unpublished Archive or stories and articles from 
around the net
http://www2.mrbrklyn.com/mp3/dr.mp3 - Imagine my surprise when I saw you...
http://www2.mrbrklyn.com/downtown.html - See the New Downtown Brooklyn

1-718-382-5752



-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] RESPOND-EFAX/Payong Gig

2002-10-03 Thread Keith G. Murphy

The only thing I said I couldn't (more like would not/didn't have time 
to) do was make the frontend (Respond) display PostScript.

A quote from your E-mail:

The front end should produce a postscript cover page.

I explained that with Respond/printfax.pl, the backend produces the 
PostScript, but that my Respond replacement could provide a preview of 
the fax.

You did not dispute that, and we continued to correspond for a while, so 
I assumed we were still go on the project.

I basically think that you never had a handle on what software you were 
using or how to express what you wanted.  And you apparently had a poor 
understanding of what I was trying to tell you.

That's the charitable interpretation, anyway.

But why you dropped the whole issue as I continued to try to get the 
information I needed to continue, I'm not sure.

None of this is a capital crime.  But I did find you very difficult to 
(try to) work with, and I think my warning was proper.

Anyway, this list is not the place to continue to discuss this.  Not 
that I want to, or have any desire to continue to (try to) work with you...

Ruben I Safir wrote:
 And you said you couldn't do it
 
 On 2002.10.03 12:56 Keith G. Murphy wrote:
 
Ruben Safir wrote:

I'm using efax and faxlpr to send faxes from the Windows computers.
I need to hire someone to hack RESPOND to create a nice Cover Letter with
inforamation in it about each user.

Can someone do this hack?


Be prepared for grief.  This guy posted to the Hylafax list a while 
back, saying he needed it for Hylafax.  I responded, we made a deal, I 
started working on it, but when I had questions he stopped responding.

He made another posting on the same list, I wrote to him again, he 
claimed to have lost my E-mails.

Started work again, had questions, turned out he wasn't sure about what 
he was running; I needed more detail, told him what files he needed to 
send me.

Got no response (for weeks) until I saw this posting.

Maybe someone else will have better luck dealing with this guy.

-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba

 


-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba



Re: [Samba] RESPOND-EFAX/Payong Gig

2002-10-03 Thread Ruben I Safir

I need it to create a front end cover page.

It's the only aditional thing I need it to do.

Can you do this?


On 2002.10.03 16:17 Keith G. Murphy wrote:
 The only thing I said I couldn't (more like would not/didn't have time 
 to) do was make the frontend (Respond) display PostScript.
 
 A quote from your E-mail:
 
 The front end should produce a postscript cover page.
 
 I explained that with Respond/printfax.pl, the backend produces the 
 PostScript, but that my Respond replacement could provide a preview of 
 the fax.
 
 You did not dispute that, and we continued to correspond for a while, so 
 I assumed we were still go on the project.
 
 I basically think that you never had a handle on what software you were 
 using or how to express what you wanted.  And you apparently had a poor 
 understanding of what I was trying to tell you.
 
 That's the charitable interpretation, anyway.
 
 But why you dropped the whole issue as I continued to try to get the 
 information I needed to continue, I'm not sure.
 
 None of this is a capital crime.  But I did find you very difficult to 
 (try to) work with, and I think my warning was proper.
 
 Anyway, this list is not the place to continue to discuss this.  Not 
 that I want to, or have any desire to continue to (try to) work with you...
 
 Ruben I Safir wrote:
  And you said you couldn't do it
  
  On 2002.10.03 12:56 Keith G. Murphy wrote:
  
 Ruben Safir wrote:
 
 I'm using efax and faxlpr to send faxes from the Windows computers.
 I need to hire someone to hack RESPOND to create a nice Cover Letter with
 inforamation in it about each user.
 
 Can someone do this hack?
 
 
 Be prepared for grief.  This guy posted to the Hylafax list a while 
 back, saying he needed it for Hylafax.  I responded, we made a deal, I 
 started working on it, but when I had questions he stopped responding.
 
 He made another posting on the same list, I wrote to him again, he 
 claimed to have lost my E-mails.
 
 Started work again, had questions, turned out he wasn't sure about what 
 he was running; I needed more detail, told him what files he needed to 
 send me.
 
 Got no response (for weeks) until I saw this posting.
 
 Maybe someone else will have better luck dealing with this guy.
 
 -- 
 To unsubscribe from this list go to the following URL and read the
 instructions:  http://lists.samba.org/mailman/listinfo/samba
 
  
 
 
-- 
__

Brooklyn Linux Solutions
__
DRM is THEFT - We are the STAKEHOLDERS http://www.nyfairuse.org

http://www.mrbrklyn.com - Consulting
http://www.nylxs.com/radio - Free Software Radio Show and Archives
http://www.brooklynonline.com - For the love of Brooklyn
http://www.nylxs.com - Leadership Development in Free Software
http://www.nyfairuse.org - The foundation of Democracy
http://www2.mrbrklyn.com/resources - Unpublished Archive or stories and articles from 
around the net
http://www2.mrbrklyn.com/mp3/dr.mp3 - Imagine my surprise when I saw you...
http://www2.mrbrklyn.com/downtown.html - See the New Downtown Brooklyn

1-718-382-5752



-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba