tags:

views:

70

answers:

1

I want to create an app which integrate my POP3 mail which is hosted at ISP and on college server, access to servers is through 2 different proxies and this is problem because JavaMail only use proxy from preferences.

I need java mail library which allow connections to POP3 servers via different proxies in same time. Any advice?

A: 

I modified JavaMail source code :) and replaced socket creation new Socket() with new Socket(proxy) - work well, no problems