Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Command SSL to read your web mail (Any HTTP / SSL gurus ?)

From: jmalv::hotmail::com at: 8-Mar-2002 17:41

Why is this not working ? Do you think is the redirect ? I get invalid port spec error !! (the html form below works ok) Thanks =============================================================================== pass: ask/hide "Password ? " str: reduce [ "curmbox=ACTIVE&js=yes&lang=EN&frames=no&login=" login &passwd pass "&submit=GO" ] page: read/custom https://lc1.law5.hotmail.passport.com/cgi-bin/dologin reduce ['post str ] write %test.html page ================================================================================ <html> <head> </head> <body> <form action=https://lc1.law5.hotmail.passport.com/cgi-bin/dologin method=post name=passwordform target=_new> <input name=curmbox type=hidden value=ACTIVE> <input name=js type=hidden value=yes> <input name=_lang type=hidden value=EN> <input name=frames type=hidden value=no> <input name="login" type=hidden value="YOUR-LOGIN"> <input type="password" name="passwd" size="15" maxlength="16"> <input type="submit" name="GO" value="GO"> </form> </body> </html>