SSH tunnelling is an interesting way to tunnel clear text protocols
through a secure communication channel.
To tunnel POP3 traffic using ssh you should create a local ssh tunnel
on your local machine (using port 1234, for instance) to the remote mail
server port 110.
$ ssh -f -L 1234:localhost:110 user@remoteserver tail -f /dev/null the command tail -f /dev/null is used to fork the process
Configure your mail client to access your mail via POP3, using localhost
and port 1234
|