home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sys / amiga / datacomm / 7463 < prev    next >
Encoding:
Internet Message Format  |  1992-11-06  |  4.3 KB

  1. Xref: sparky comp.sys.amiga.datacomm:7463 alt.sys.amiga.uucp:2624
  2. Path: sparky!uunet!portal!lll-winken!snow.geology.wisc.edu!saimiri.primate.wisc.edu!zaphod.mps.ohio-state.edu!caen!destroyer!gumby!yale!yale.edu!qt.cs.utexas.edu!cs.utexas.edu!sun-barr!olivea!sgigate!rutgers!cbmvax!cbmehq!cbmaus!cbmozq!richard
  3. From: richard@cbmozq.adsp.sub.org (Richard Carde Australia)
  4. Newsgroups: comp.sys.amiga.datacomm,alt.sys.amiga.uucp
  5. Subject: more about... Re: GPFax launching Getty
  6. Message-ID: <152@cbmozq.adsp.sub.org>
  7. Date: 5 Nov 92 03:26:46 GMT
  8. References: <kkrebs.03zj@amilink.UUCP>
  9. Reply-To: richard@cbmozq.adsp.sub.org (Richard Carde Australia)
  10. Followup-To: comp.sys.amiga.datacomm
  11. Organization: CBM Australia - Developer Access Queensland
  12. Lines: 88
  13.  
  14. * GPFAX mailing list being made, read on... *
  15.  
  16. Anyone using a DATACALL.GPF script should not a revised script below.
  17. This should help to eliminate any problems.
  18.  
  19. I will be posting information about how to get GETTY (and other interfaces)
  20. working soon.
  21.  
  22. In article <kkrebs.03zj@amilink.UUCP> amilink!kkrebs@citrus.sac.ca.us (Ken Krebs) writes:
  23.  
  24. >Can someone help me out here?  I want to run GPFax all the time so I can
  25. >have it launch a Getty when I a get a Data call.  Here is my Getty
  26. >parameters:
  27. >
  28. >Run >Nil: <Nil: Getty -7 -A -Mm -B57600 -b1 -d0 ATZ0
  29. >Can someone help me set up a DataCall.GPF ARexx script for use with GPFax?
  30.  
  31. First of all, if GPFax answers the phone for you, it will be set to 19200
  32. baud.  This is because the FAX standard defines that as the baud rate to
  33. use.  Since the connection is already established, you must keep talking
  34. to the modem at 19200.
  35.  
  36. A typical datacall.gpf script would look like:
  37. ---------------------------------------------------------
  38. /* $VER: DataCall.GPF 0.02 (2.11.92) rsc
  39.  * this script will start a GETTY on receipt of a DATA call
  40.  */
  41. options results
  42. address rexx_gpfax
  43. baudrate
  44. baud = result
  45. address command 'uucp:c/getty <nil: >nil:'  "-B"baud "-Md" "-A" "-h0" "-c0"
  46. /* if you are running a LOCKBAUD modem, then use the following command */
  47. /* address command 'uucp:c/getty <nil: >nil:'  "-B19200" "-Md" "-A" "-h0" "-c0"
  48. -----------------------------------------------------------
  49.  
  50. Now, the other way to do things is to get GETTY to answer the phone at
  51. whatever baudrate you want.  Then use the GPFax RECEIVENOW ARexx command to
  52. start receiving a FAX. (This is using the FAXGETTY)
  53.  
  54. Procedure (roughly):
  55. ---------- a script to start the system running -----------------
  56. cd GPFAX:
  57. run GPFAX -Q -S -NP ; -S if getty or other program wont allow SHARED mode
  58.             ; -NP no printer driver (optional)
  59.             ; -Q for quiet (optional)
  60.             ; -L is not required as it only applies to DATA
  61. waitforport "REXX_GPFAX"  ; makesure GPFax is ready
  62. rx "address rexx_gpfax UNLISTEN"  ; if -S was not specified
  63. run uucp:c/getty <with your parameters>
  64.  
  65. ; now your uulib:passwd file should contain the standard entry for FAX and
  66. ; run a script which looks like the following:
  67.  
  68. rx "address rexx_gpfax OPENSERIAL"
  69. rx "address rexx_gpfax LISTEN"
  70. ; the above two lines are required, as GPFax will try to INIT the modem
  71. ; at the RECEIVENOW phase (if running -S)
  72. rx "address rexx_gpfax RECEIVENOW"
  73. ; after returning from a RECEIVENOW command, fax in in UNLITEN mode
  74. rx "address rexx_gpfax CLOSESERIAL" ; (optional) depends on whether you
  75.                     ; had it this way to start with.
  76.  
  77. the last command will depend on whether you want to actually
  78. close the serial device. Closing the serial device is recommended to
  79. help the disconnect. (Dropping DTR should cause a hangup).
  80.  
  81. If you have any problems send we mail and I will try to help.
  82.  
  83. I will start a mailing list too, so can people please send mail to
  84. fax-info@vogue.adsp.sub.org and I will add your name to a mailing list.
  85.  
  86. Specify in the subject line, your areas of interest.
  87. eg: GETTY, UPGRADES, VOICE, MODEM TYPE, SUGGESTIONS, anything else...
  88.  
  89. Keep messages small. If you have files to uuencode and send, I would
  90. prefer you sent those to rc@splat.aarnet.edu.au (internet connected)
  91. but I read that only about once a week (this will be more often soon).
  92.  
  93. >Thanks..
  94. >-- 
  95. >*Ken Krebs* SkinnyPuppyLaTourBauhausBookOfLoveModernEnglishB52s |25Mhz/6Meg|
  96.  
  97. Hope this helps people...
  98. -- 
  99.   Richard Carde     Developer for GPSoftware    Voice: +61 7 300 6864
  100.          EMAIL: richardc@vogue.adsp.sub.org            +61 7 300 6315
  101.                 rc@splat.aarnet.edu.au            IRC: Mongus
  102.