home *** CD-ROM | disk | FTP | other *** search
/ Chip 1996 January / Chip_Special_Best_Web_Sites_01-96.iso / pc / zugang / eunet / disk1 / qsockpro.qip / EUNETIAP.MPS < prev    next >
Text File  |  1995-09-18  |  514b  |  27 lines

  1. # Quarterdeck - EUnet Germany IAP script for logging into the IAP server
  2.  
  3. STRING IPaddress
  4. STRING username
  5. STRING password
  6.  
  7. SetTimeout 60
  8.  
  9. CfgGetValue "Username" username
  10. IF result=0 THEN
  11.   ABORT "Can't load username from qdeck.ini"
  12. ENDIF
  13.  
  14. CfgGetValue "Password" password
  15. IF result=0 THEN
  16.   ABORT "Can't load password from qdeck.ini"
  17. ENDIF
  18.  
  19. CommWaitFor     "ogin:"
  20. CommSend        username
  21. CommSend        "%r"
  22. CommWaitFor     "ssword:"
  23. CommSend        password
  24. CommSend        "%r"
  25.  
  26. end
  27.