Re: ssl proxy server

2013-05-15 Thread Chris “Kwpolska” Warrick
On Tue, May 14, 2013 at 9:14 PM, Skip Montanaro s...@pobox.com wrote: I haven't touched the SpamBayes setup for the usenet-to-mail gateway in a long while. For whatever reason, this message was either held and then approved by the current list moderator(s), or (more likely) slipped through

Re: ssl proxy server

2013-05-15 Thread Zachary Ware
On Wed, May 15, 2013 at 1:58 PM, Chris “Kwpolska” Warrick kwpol...@gmail.com wrote: On Tue, May 14, 2013 at 9:14 PM, Skip Montanaro s...@pobox.com wrote: I haven't touched the SpamBayes setup for the usenet-to-mail gateway in a long while. For whatever reason, this message was either held and

ssl proxy server

2013-05-14 Thread 23alagmy
ssl proxy server http://natigtas7ab.blogspot.com/2013/05/ssl-proxy-server.html -- http://mail.python.org/mailman/listinfo/python-list

Re: ssl proxy server

2013-05-14 Thread Chris “Kwpolska” Warrick
On Tue, May 14, 2013 at 2:34 PM, 23alagmy hossamala...@gmail.com wrote: ssl proxy server hxxp://natigtas7ab.blogspot.com/2013/05/ssl-proxy-server.html -- http://mail.python.org/mailman/listinfo/python-list I have been seeing those mails for a long time. Why didn’t anybody ban that guy

Re: ssl proxy server

2013-05-14 Thread Skip Montanaro
, Chris “Kwpolska” Warrick kwpol...@gmail.com wrote: On Tue, May 14, 2013 at 2:34 PM, 23alagmy hossamala...@gmail.com wrote: ssl proxy server hxxp://natigtas7ab.blogspot.com/2013/05/ssl-proxy-server.html -- http://mail.python.org/mailman/listinfo/python-list I have been seeing those mails

Re: python: HTTP connections through a proxy server requiring authentication

2013-01-28 Thread Barry Scott
The shipped python library code does not work. See http://bugs.python.org/issue7291 for patches. Barry -- http://mail.python.org/mailman/listinfo/python-list

Re: python: HTTP connections through a proxy server requiring authentication

2013-01-28 Thread Saju M
Hi , Thanks barry, I solved that issue. I reconfigured squid3 with ncsa_auth, now its working same python code. Earlier I used digest_pw_auth. Actually I am trying to fix an issue related to python boto API. Please check this post https://groups.google.com/forum/#!topic/boto-users/1qk6d7v2HpQ

python: HTTP connections through a proxy server requiring authentication

2013-01-26 Thread sajuptpm
Hi, I followed http://dabase.com/blog/Minimal_squid3_proxy_configuration/ to setup proxy server. I tested my proxy server with firefox with IP:127.0.0.1 and Port:3128 and it working (asking for proxy username and password). But, i could not make http connection through proxy server requiring

Re: python: HTTP connections through a proxy server requiring authentication

2013-01-26 Thread sajuptpm
Hi, /etc/squid3/squid.conf --- saju@saju-Inspiron-N5010:~$ cat squid.conf | grep ^[^#] auth_param digest program /usr/lib/squid3/digest_pw_auth -c /etc/squid3/passwords auth_param digest realm saju-Inspiron-N5010 acl manager proto cache_object acl localhost src

Uploading files to an an FTP site through a proxy server which requires authentication

2011-02-09 Thread tkp...@hotmail.com
I would like to upload files to a ftp site, but can't seem to get through our proxy server, which requires authentication. How can one do this in Python (I use 2.7, but am more than happy to use 3.2 rc2) Thanks in advance Thomas Philips -- http://mail.python.org/mailman/listinfo/python-list

use smtpd as a gmail proxy server

2009-04-22 Thread Robin Becker
A bit of googling reveals that it's possible to use smtplib to do mailing using gmail. Is there a way to use smtpd as a proxy server with gmail. This apparently works with smtplib, mailServer = smtplib.SMTP('smtp.gmail.com', 587) mailServer.ehlo() mailServer.starttls() mailServer.ehlo

[issue872815] How to pass the proxy server use socket

2009-02-19 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- resolution: - invalid stage: - committed/rejected status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue872815 ___

[issue872815] How to pass the proxy server use socket

2009-02-17 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- priority: normal - low status: open - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue872815 ___

[issue872815] How to pass the proxy server use socket

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: I don't understand the problem. I will close this one if no opposition arises. -- components: +Library (Lib) -None nosy: +ajaksu2 type: - behavior ___ Python tracker rep...@bugs.python.org

Re: Proxy server?

2008-07-30 Thread Gary
Diez B. Roggisch [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Gary schrieb: Diez B. Roggisch [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] You can't make any TCP/IP communication run through a proxy, unless it's transparent. Thanks for all the info. I'm puzzled

Re: Proxy server?

2008-07-30 Thread Heiko Wundram
Am Mittwoch, 30. Juli 2008 13:48:08 schrieb Gary: Diez B. Roggisch [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Gary schrieb: Diez B. Roggisch [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] You can't make any TCP/IP communication run through a proxy, unless

Proxy server?

2008-07-28 Thread Gary
I've seen examples for HTTP and FTP use, but not for simply any TCP data on any port, which is what I require. Can anyone please point me in the right direction? TIA -- http://mail.python.org/mailman/listinfo/python-list

Re: Proxy server?

2008-07-28 Thread Diez B. Roggisch
Gary wrote: I've seen examples for HTTP and FTP use, but not for simply any TCP data on any port, which is what I require. Can anyone please point me in the right direction? For what? How to use such a thing, a transparent proxy? There is nothing to it, just plug it between your router and

Re: Proxy server?

2008-07-28 Thread Gary
Diez B. Roggisch [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Gary wrote: For what? A non-transparent proxy, for anonymity purposes only. -- http://mail.python.org/mailman/listinfo/python-list

Re: Proxy server?

2008-07-28 Thread Diez B. Roggisch
Gary schrieb: Diez B. Roggisch [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Gary wrote: For what? A non-transparent proxy, for anonymity purposes only. You can't make any TCP/IP communication run through a proxy, unless it's transparent. HTTP (and maybe FTP, I personally

Re: imap4_SSL from behind a proxy server

2008-07-04 Thread Michael Ströder
Diez B. Roggisch wrote: Dave schrieb: I'm trying write some Python code to connect to Gmail from work, where I need to direct all non-HTTP traffic through a proxy server. AFAIK that's simply not possible. It's possible. Proxying that is not transparent is only (for practical matters

imap4_SSL from behind a proxy server

2008-07-03 Thread Dave
need to direct all non-HTTP traffic through a proxy server. Can anyone provide syntax which would redirect the imap4_SSL method through a proxy server:port? I suspect there are some environment variables which, when set, will do this very easily and elegantly. I also suspect there is a really

Re: imap4_SSL from behind a proxy server

2008-07-03 Thread Diez B. Roggisch
work, where I need to direct all non-HTTP traffic through a proxy server. Can anyone provide syntax which would redirect the imap4_SSL method through a proxy server:port? I suspect there are some environment variables which, when set, will do this very easily and elegantly. I also suspect

HTTP proxy server for Motorola E815 phone in Python

2007-02-22 Thread Dan Lenski
Hi all, I've recently written an HTTP proxy server for the Motorola E815 cell phone, based on Suzuki Hisao's Tiny HTTP Proxy (http:// www.okisoft.co.jp/esc/python/proxy/). This cell phone allows free Internet access if you change the default proxy server, but it has a severely buggy HTTP client