[web2py] Re: email_auth works on web2py server, but not GAE - ANSWER: No sockets in the sandbox, no smtp connections! That's all. No email_auth on GAE

2012-01-26 Thread Alan Etkin
Some built-in web2py functions have conditional commands for addressing AppEngine compatibility issues, it seems that this is not performed for the email authentication. Perhaps this problem could added to the web2py issues list? On 26 ene, 02:43, pattu wrote: > I didn't get much success in getti

[web2py] Re: email_auth works on web2py server, but not GAE - ANSWER: No sockets in the sandbox, no smtp connections! That's all. No email_auth on GAE

2012-01-25 Thread pattu
I didn't get much success in getting logging to work with the GAE - there is a slice for it, but it all is pretty complicated. BUT... I tried the following code in the interactive console on the dev engine: import smtplib host = 'gmail.com' port = 587 server = smtplib.SMTP(host, port) server.h