Stunnel
From Notes
stunnel
will proxy SSL connections from one host to another.
Server side proxy
The following command will redirect all incoming SSL connections on port 995 to localhost 110 -- this could be an example of securing your POP3 server with SSL even though you dont have an SSL capable MTA:
stunnel -d 995 -r 127.0.0.1:110
