____ ___________ ________ ___ _ __
/ __ \/ __/ __/ (_)___ ___ / ____/ |/ /___ _(_) /
/ / / / /_/ /_/ / / __ \/ _ \ / __/ / /|_/ / __ `/ / /
/ /_/ / __/ __/ / / / / / __/ / /___/ / / / /_/ / / /
\____/_/ /_/ /_/_/_/ /_/\___/ /_____/_/ /_/\__,_/_/_/
We will see how to setup Eudora Mail Reader for "offline" operation on a shell account. We will use VSNL Shell Accounts as the target ISP.
Eudora uses a set of four "scripts" to achieve offline mailing. These scripts are -
You will find four scripts written for VSNL Shell account at the end of this chapter.
[ Explanation of each script to be inserted, here, later, only if the readers want it ]
WARNING: Do not include the "cut-lines" in the saved files!!!
C:\EUDORA\SCRIPTS.
For Eudora Light 1.5.4:
---Begin---HAYS2400.MOD------------------Cut here------------------------ ;Standard Hayes compatible 2400 bps ; hays2400.mod - the Modem setup ; ; NOTE: Open the trace window to see what is actually happening. ; ; Remove this line if you are have a modem which supports a line speed ; higher than 2400 baud. set BaudRate=2400 ; cancelon ERROR ; ; Check if the modem is alive and kicking send AT\r waitfor OK ; ; Let's setup the modem - use the init string which you normally use with ; your communication package - the logic being: if it works there then ; it should work here - Just shrug and pray..er..plug and play! send AT &FV1X4&C1&D2S7=60S10=150\r waitfor OK ; ; Keep the FlowControl=Hardware unless you have an ancient modem and/or ; ancient serial port which does not support hardware flowcontrol ; set FlowControl=Software set FlowControl=Hardware ---End---HAYS2400.MOD-----------------------Cut here---------------------------
---Begin---VSNLSH.NAV-----------------------Cut here---------------------------
;VSNL Shell
;vsnlsh.nav - "Navigate" to system prompt
;
cancelon |ERROR|NO CARRIER|NO DIALTONE|BUSY|incorrect|
;
; Dial the dial-up number; use ATDP for pulse dial
send ATDT {DialNumber}\r
;
; Wait for login prompt
waitfor ogin:
send {DialLogin}\r
;
; Wait for the password prompt
waitfor ssword:
send {DialPass}\r
;
; Let's get out of the stupid "user friendly" menu
waitfor election :
send 10\r
waitfor net.in>
;
; Send a carriage return just to be sure
send \r
waitfor net.in>
;
; set up a supposedly echo-less terminal
send stty -echo\r
waitfor net.in>
---End---VSNLSH.NAV-------------------------Cut here---------------------------
---Begin-VSNLSH.MID-------------------------Cut here--------------------------- ;VSNL Shell ; vsnlsh.mid - the middle script ; Don't ask me what this script does...I am equally clueless as you and not ; at all keen in experimenting waitfor net.in> ---End---VSNLSH.MID-------------------------Cut here---------------------------
---Begin-VSNLSH.END-------------------------Cut here--------------------------- ;VSNL Shell ; vsnlsh.End ; Let's call it a day if VSNL has not already done so!! send exit\r send +++ath0 ---End---VSNLSH.END-------------------------Cut here---------------------------