Re: Absolutely Insane Problem with Gmail

2011-03-07 Thread Terry Reedy
On 3/7/2011 1:26 PM, Ian wrote: On 06/03/2011 13:56, Victor Subervi wrote: gmail, for whatever reason, filters out emails send to the same address from which they are sent. Its possibly a protection against circular forwarding. Or spam. Many spam messages sent to me have me as sender. -- Ter

Re: Absolutely Insane Problem with Gmail

2011-03-07 Thread Ian
On 06/03/2011 13:56, Victor Subervi wrote: gmail, for whatever reason, filters out emails send to the same address from which they are sent. Its possibly a protection against circular forwarding. Ian -- http://mail.python.org/mailman/listinfo/python-list

Re: Absolutely Insane Problem with Gmail

2011-03-06 Thread Victor Subervi
On Sat, Mar 5, 2011 at 11:11 PM, Littlefield, Tyler wrote: > >ourEmail = ' > myemaila...@gmail.com' > > >ourEmail = ' > q...@xxx.com' > > You redefine this twice. > Right. The second definition, of course, overwrites the first. That is deliberate. I simply comment out the second when I'm testin

Re: Absolutely Insane Problem with Gmail

2011-03-05 Thread Littlefield, Tyler
>ourEmail = ' myemaila...@gmail.com' >ourEmail = ' q...@xxx.com' You redefine this twice. You also don't define a variable down lower. ># to_address = ourEmail, > from_address = ourEmail, > to_address = emailText, I could be wrong, but emailText isn't defined. Perhaps a better var

Absolutely Insane Problem with Gmail

2011-03-05 Thread Victor Subervi
Hi; I have this code: #!/usr/bin/python import sys, os, string import cgitb; cgitb.enable() import cgi cwd = os.getcwd() dirs = string.split(cwd, '/') dirs = dirs[1:-1] backLevel = '/' + string.join(dirs, '/') sys.path.append(cwd) sys.path.append(backLevel) import string form = cgi.FieldStorage()