I solved it together with a colleague
to use a socks proxy you have to do the following..
inside the mail.jar you can find the SocketFetcher class. within this class it is checked if a session factory object or class name is set via system properties. I implemented my own SocketFactory copying from SSLSocketFactory and I had to manipulate the SocketFetcher inside javaMail and I replaced the class file to call createSocket(host, port) method from my own SocketFactory. And there I used a proxy to
String proxyHost = System.getProperty(SYSTEM_PROP_SOCKS_PROXY_HOST);
int proxyPort = Integer.parseInt(System.getProperty(SYSTEM_PROP_SOCKS_PROXY_PORT));
SocketAddress addr = new InetSocketAddress(proxyHost, proxyPort);
Proxy proxy = new Proxy(Proxy.Type.SOCKS, addr);
socket = new Socket(proxy);
additionally I had to manipulate SocketFetcher.createSocket()
...
socket.connect(new InetSocketAddress(host, port));
...you have to check if the socket is already connected otherwise an exception will be thrown and the default socketFactory will be used which isn't yours
Lots of luck :-)