[arachne] get on white list

  • From: "L.D. Best" <l.d.best@xxxxxxxxxxxxxxx>
  • To: Arachne@xxxxxxxxxxxxx
  • Date: Sat, 17 Apr 2004 08:12:15 -0500

Arachne at FreeLists---The Arachne Fan Club!

----- Forwarded message begin -----
From: Arachne@xxxxxxxxxxxxx

Arachne-Digest at Freelists.org---The Arachne Fan Club---

------------------------------------
arachne Digest  Fri, 16 Apr 2004        Volume: 02  Issue: 135

In This Issue:
                [arachne] Re: arachne Digest V2 #134
                [arachne] Re: arachne Digest V2 #133
                [arachne] Re: GPL 1.73 stuff

----------------------------------------------------------------------

From: "Ray Andrews" <randrews@xxxxxx>
Date: Fri, 16 Apr 2004 16:57:41 -0800
Subject: [arachne] Re: arachne Digest V2 #134

On Fri, 16 Apr 2004 17:13:01 -0500 (EST), Arachne@xxxxxxxxxxxxx wrote:

> From: Mel Evans <arachne4dos@xxxxxxxxxxxxx>

Mel! ... Good to hear from you.  Hope Glenn can solve your problem, if not
we'll all work on it :-)

Ray Andrews,
Arachne Sanitary Engineering Ltd.
Vancouver, Canada

-- Arachne V1.73 GPL/B3 :The best in freeware!

------------------------------

From: "Bastiaan Edelman, PA3FFZ" <bastiaan.pa3ffz@xxxxxxxxx>
Date: Sat, 17 Apr 2004 01:19:47 +00
Subject: [arachne] Re: arachne Digest V2 #133

On Fri, 16 Apr 2004 16:05:22 +0930, Greg Mayman wrote:

> Arachne at FreeLists---The Arachne Fan Club!

> On Fri, 16 Apr 2004 01:06:35 -0500 (EST), Arachne@xxxxxxxxxxxxx wrote:

>> Date: Thu, 15 Apr 2004 11:59:46 -0600
>> From: "Glenn Gilbreath Jr." <wizard57m@xxxxxxxxxxxx>
>> Subject: [arachne] Re: internal editor??

>> Greg,

>> I disagree with your comment that observations from those of us
>> who have not experienced some given problem are not useful!

> I find it EXTREMELY non-useful and also ANNOYING when someone's
> reply conveys no more information than the fact that they haven't
> had that problem.

I realy did give some suggestions though... version related?
                                        ... corrupted files?

I earn a great deal of my money in "fault finding" in electronic
equipement and it is important to know what part or what system is OK
and what part is wrong.
You may find this annoying... but how would the doctor cure if he does
not know the healthy ones?

Regards, Bastiaan

>> At the very least, it could provide the user with some insight that
>> the problem encountered COULD be specific to their system or
>> particular setup.

-
*************************
Technische Redactie CQ-PA
Bastiaan Edelman, PA3FFZ
*************************
pa3ffz@xxxxxxxx
pa3ffz@xxxxxxxxx
bastiaan.pa3ffz@xxxxxxxxx
    http://home.hetnet.nl/~ba8tian/index.html

** Arachne download page:
    http://home.hetnet.nl/~ba8tian/arachne/arachne.htm

** Virusvrij e-mailen? => Arachne browser/mailer **

------------------------------

Date: Sat, 17 Apr 2004 1:12:34 -0600
From: "Glenn Gilbreath Jr." <wizard57m@xxxxxxxxxxxx>
Subject: [arachne] Re: GPL 1.73 stuff

Hello Mel!

OK, the first thing I would try is a different PPP TCP/IP driver...
instead of EPPPD, try WZPPP or LSPPP.  You may need
to setup the TCP/IP first, get the connection.  Then in the
Arachne Options, TCP/IP setup, choose to use the
"Resident Packet Driver".  Many newer ISPs sometimes
do not communicate well with EPPPD at higher modem
speeds (my experience anyway), which is the reason I
put WZPPP together.
For your assistance, the following is a simple DOS BATCH
program to utilize with WZPPP.  Edit the specifics for your
login data, ISP data (DNS, Nameserver, etc) then save it
as WIZDIAL.BAT, execute the BAT from your command line
or shell if preferred.  You can also REM (remark out) the
references to SETSCRN and WAIT, if not on your system.
HANGUP.BAT is similar, but really consists of one line:\
WZPPP /u
Don't forget to change the DIRECTORY references as well.
WZPPP is available from my DOS sites, try:
http://www.geocities.com/wizard57m/dosinet.htm
http://www.geocities.com/wzlx42/index.html
-----begin WIZDIAL.BAT----
REM Batch file to load PPP with SurfBest
REM Using WZPPP to dial and as TCP/IP
@echo off
cls
C:
cd C:\DOSTCPIP
setscrn
echo.
echo.
echo.
echo              ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo              º   Wizard57M's ISP Dialer and TCP/IP Driver   º
echo              º        Attempting PPP Connection...          º
echo              ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo.
if exist ip-up.bat del ip-up.bat
set WZPPP=/n:2 /i:3 /F:4 /B:115200 /N:198.6.1.218,198.6.100.218

CHOICE /C:12 /T:1,99  DIAL PRIMARY OR ALTERNATE ACCESS NUMBER...:

IF ERRORLEVEL 2 GOTO ALT
IF ERRORLEVEL 1 GOTO PRM

:PRM
REM *70 to disable callwaiting, change XXX-XXXX to primary access number
REM change youruser@xxxxxxxxxxx and yourpassword to your specific
REM also make same changes in "alternate" ALT
loadhigh wzppp /d:,*70,XXX-XXXX /U:youruser@xxxxxxxxxxx /P:yourpassword

if errorlevel goto CONNERR
if not exist ip-up.bat goto CONNERR
call ip-up.bat
if not exist myisp.dat goto CONNERR
if exist currconn.cfg del currconn.cfg
copy myisp.dat currconn.cfg
echo my_ip=%MYIP% >>currconn.cfg
echo gateway=%REMIP% >>currconn.cfg
echo netmask=%NETMASK% >>currconn.cfg
echo mss=%PEERMRU% >>currconn.cfg
echo Connection succesful
goto WEB

:ALT
REM same as primary, use alternate access number for XXX-XXXX
loadhigh wzppp /d:,*70,XXX-XXXX /U:youruser@xxxxxxxxxxx /P:yourpassword

if errorlevel goto CONNERR
if not exist ip-up.bat goto CONNERR
call ip-up.bat
if not exist myisp.dat goto CONNERR
if exist currconn.cfg del currconn.cfg
copy myisp.dat currconn.cfg
echo my_ip=%MYIP% >>currconn.cfg
echo gateway=%REMIP% >>currconn.cfg
echo netmask=%NETMASK% >>currconn.cfg
echo mss=%PEERMRU% >>currconn.cfg
echo Connection succesful
goto WEB

:CONNERR
echo.
echo Connection failed...
echo.
echo Re-dial to try again.
goto EXIT

:WEB
echo.
echo Welcome to the Internet!
echo To terminate Internet connection
echo close all running Internet programs,
echo then type HANGUP and press ENTER
echo at the MS DOS prompt!  Happy Netting!
goto EXIT

:EXIT
wait 0:01
exit

----end WIZDIAL.BAT
----begin HANGUP.BAT---
@echo off
REM Batch file to terminate Internet
REM connection and hangup the modem
REM Also resets DOS variables and
REM unloads WZPPP

E:
SETSCRN
cd E:\dostcpip
E:
echo.
echo.
echo.
echo              ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo              º   Wizard57M's ISP Dialer and TCP/IP Driver   º
echo              º         Disconnecting PPP TCP/IP...          º
echo              ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo.

wzppp /u

cls
setscrn
echo.
echo.
echo.
echo              ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo              º   Wizard57M's ISP Dialer and TCP/IP Driver   º
echo              º         Clearing TCP/IP Variables...         º
echo              ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo.

set ip=
set myip=
set remip=
set netmask=
set peermru=
set gateway=
set WZPPP=
set DOMAIN=
set WATTCP=
set DNS=
set DNS1=
set DNS2=

cls
setscrn
echo.
echo.
echo.
echo              ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo              º   Wizard57M's ISP Dialer and TCP/IP Driver   º
echo              º           Disconnection Complete...          º
echo              ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo.

wait 0:02
exit

-----end HANGUP.BAT----
At 04/16/04 9:31:00 AM, you wrote:
>Arachne at FreeLists---The Arachne Fan Club!
>
>
>Hi Glenn et al,
>
>Had a few minutes to spare, so downloaded 1.73 GPL and=
> installed=3D
> it.
>
>Filled in all the usual blanks and fired it up. Opens modem,=3D
> dials up
>and handshakes, then dies!
>
>Get usual " PPP link down, driver not installed" message. Any
>thoughts?
>
>Using 386 file and cfg comes out as follows:-
>
>************
>
>[profile]
>Profile 386PC.ACF
>Connection @epppd.exe>>PPP.LOG
>Hangup @termin.com 0x60>NUL
>
>;Connection @cmd    ... command cmd will estabilish connection
>;Connection READY   ... connection is permanent, packet driver=3D
> in
>AUTOEXEC...
>;Connection NUL     ... do not start TCP/IP (run "arachne -c" to
>force this)
>
>[dialer]
>DialPage file:pppglenn.htm
>Dialer @MINITERM.EXE>PPP.LOG
>TerminalWindow @MINITERM.EXE
>UseTerminal No
>Port 1
>Irq 4
>Base 0x3f8
>Mode 8N1
>Speed 38400
>InitString ATZ
>DialString ATDT
>PhoneNumber 147008089933151
>Autologin No
>WaitFor1 name:
>Response1 \u
>WaitFor2 sword:
>Response2 \p
>WaitFor3 >
>Response3 ppp
>PPPusername arachne4dos@xxxxxxxxxxxxx
>PPPpassword *****
>
>;Port values: 0=3D3Dnon-standard serial (COM) port, 1-4 standard=3D
> ports
>;Base values: 0x??? (eg. 0x3e8) - Base and Irq are used for=
> "Port=3D
> 0"
>;Mode values: databits/parity/stopbits (eg. 8N1)
>
>[tcp/ip]
>IP_Address PPP
>IP_Grab IP address set to
>NameServer 212.74.112.66
>AltNameServer 212.74.112.67
>Gateway 0.0.0.0
>AltGateway 0.0.0.0
>Netmask 0.0.0.0
>TCPconfig PPPTCP.CFG
>
>;IP_Address n.n.n.n  ... fixed IP address
>;IP_Address PPP      ... for PPP.EXE and PPPD.EXE (get address=3D
> from
>PPP.LOG)
>;IP_Address BOOTP    ... WatTcp attepmts to use BOOTP protocol
>;IP_Address %enviro% ... Minuet style (enviroment variable, like
>%MYIP%)
>;IP_Address WATTCP   ... use ONLY values from TCPconfig=3D
> (variable
>"my_ip")
>;IP_Grab string      ... prefix of IP address in PPP.LOG ("IP=3D
> address
>set to")
>;TCPconfig filename  ... name of WatTcp configuration file=3D
> (often
>WATTCP.CFG)
>
>[mail]
>SMTPserver smtp.tiscali.co.uk
>POP3server pop.tiscali.co.uk
>POP3username arachne4dos@xxxxxxxxxxxxx
>POP3password *****
>KeepOnServer No
>eMail arachne4dos@xxxxxxxxxxxxx
>PersonalName Mel Evans, Arachne User
>Organization Arachne Fan Club
>TimeZone +0000
>UseSignature Yes
>SignatureFile SIGN.TXT
>MailEncoding MIME
>MailSortOrder DateSnt
>NoHELO No
>KillSent No
>MailIdxTemplate idxfast.htp
>ForwardString1 ----- Forwarded message begin -----
>ForwardString2 ------ Forwarded message end ------
>ReplyString On %s, %s wrote:
>MyCharset US-ASCII
>MailBodyEncoding 7bit
>
>;MailSortOrder values: DateRcv|DateSnt|Address|Subject
>
>[internet]
>HTTPproxy proxy.provider.com:8080
>UseProxy No
>HomePage http://www.xetronella.com/
>SearchPage http://search.arachne.cz/
>SearchEngine http://www.altavista.com/cgi-bin/query?q=3D3D
>FTPusername user
>FTPpassword xxxxxx
>FTPhost ftp.provider.com
>FTPpath /home/user/
>AcceptCharset ISO-8859-1,*
>
>[system]
>Hotlist .\HOTLIST.HTM
>History .\HISTORY.LST
>CookieFile .\COOKIES.LST
>CacheIndex .\CACHE.IDX
>CachePath .\CACHE\
>Cache2TEMP Yes
>MailPath .\MAIL\
>DownloadPath .\DOWNLOAD\
>
>[misc]
>Logo 12000
>LoadImages Yes
>Frames Yes
>JPEGargs -bmp -fast
>FILEargs -l
>RefreshDelay 20
>ScreenSaver 10
>ScreenSaverStyle R
>ScreenSaverColors 0
>ESC Exits
>F3key file:*.htm
>AutoF3key Yes
>BigFont No
>ScrollBarSize 14
>ScrollBarStyle Windows
>Colors 11 0
>MouseColors 15 15
>VirtualScreen 0
>ScreenMode Auto
>SmoothScroll No
>ScrollStep 1000
>BgColor #000000
>Text #F0F0F0
>Link #00FF00
>Background NUL
>ExitOnHangup No
>ASCIIwidth 78
>HTMLtext #000000
>HTMLbgColor #C4C4C4
>HTMLlink #0000C4
>;AfterPOP3 smtp:
>;AfterSMTP file:mail.htm
>ShiftF1 file://doc/howto.htm
>ShiftF2 file://oops\*.*
>ShiftF3 file:*.*
>ShiftF4 file://examples\newfile.htm
>ShiftF5 http://www.yahoo.com/
>ShiftF6 http://www.wired.com/
>ShiftF7 http://www.altavista.com/
>ShiftF8 http://www.hotbot.com/
>ShiftF9 http://www.slashdot.org/
>ShiftF10 file://readmail.dgi
>AltTab No
>EditHotlistEntry Yes
>Autodial No
>UseCID No
>UseCDescr No
>AltSysFont 0
>Index *.*
>FontShift 0
>Multitasking Yes
>XMS4allGIFs 1024
>XMS4oneGIF 270000
>CSS No
>
>;ScrollBarStyle values: NextStep|Windows|Arachne|X
>;BgColor,Text,Link values: #RRGGBB (hexadecimal values of red,=3D
> green
>and blue)
>;VirtualScreen value: vertical number of pixels, 0 disables=3D
> virtual
>screen.
>;ScreenMode values: Auto|Smart|Nice
>;BodyArachne values: System|Default|All
>;Colors values are <ink 0..15> <paper 0..15>
>
>[security]
>SavePasswords Yes
>Cookies Yes
>HTTPreferer Yes
>;FakeFTPeMail user@domain
>
>[not-yet-implemeted]
>NNTPserver news.provider.com
>IRCserver irc.provider.com:6667
>IRCchannel #arachne
>IRCnick arachne_user
>
>[auto-added]
>POP3log No
>SMTPlog No
>KeepHTT Yes
>HTTPKeepAlive Yes
>HTTPS2HTTP No
>IGNOREJS No
>IgnoreBaseHref No
>Replyto arachne4dos@xxxxxxxxxxxxx
>QADT No
>Kill468x60 No
>DelHistory No
>CacheFonts Yes
>ScreenSaverMess 20
>
>**************
>
>Regards
>
>Mel
>
>who wishes he had time to get into DOS more! Too much to do in=
> HTML
>
>
>Arachne at FreeLists
>-- Arachne, The Web Browser/Suite for DOS and Linux --
>
>
Glenn Gilbreath, Jr.
Wizard57M
http://www.geocities.com/wizard57m/index.html

------------------------------

End of arachne Digest V2 #135
*****************************

Arachne Digest at Freelists
--Arachne, The Web Browser/Suite for DOS and Linux--

------ Forwarded message end ------

-- Arachne V1.71;UE01, NON-COMMERCIAL copy, http://arachne.cz/


Arachne at FreeLists
-- Arachne, The Web Browser/Suite for DOS and Linux --

Other related posts:

  • » [arachne] get on white list