home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Magazin 1996 March / CD_03_96.BIN / direct / qsockpro.qip / POP_HNVR.MPS < prev    next >
Text File  |  1996-02-14  |  751b  |  43 lines

  1. # Point Of Presence Hannover Germany VJPPP&PPP login
  2. # 13/09/95 BC
  3.  
  4. String username
  5. String password
  6.  
  7.  
  8.  
  9. # Trace on
  10. SetTimeout 60
  11.  
  12. CfgGetValue "Username" username
  13. if result = 0 then
  14.         GetInput "Enter your user name" username
  15.     if result = 0 then
  16.         Print "Warning, no username entered"
  17.     else
  18.         Print "Username set to ["; username; "]"
  19.     endif
  20. endif
  21.  
  22. CfgGetValue "Password" password
  23. if result = 0 then
  24.         GetPassword "Enter your password" password
  25.     if result = 0 then
  26.         Print "Warning, no password entered"
  27.     else
  28.         Print "Password set."
  29.     endif
  30. endif
  31.  
  32.         CommWaitFor     "ogin:"
  33.     CommSend    username
  34.     CommSend    "%r"
  35.     CommWaitFor    "word:"
  36.     CommSend    password
  37.     CommSend    "%r"
  38.  
  39.     Print        "Framing is PPP"
  40.  
  41. END
  42.  
  43.