I hope to eventually expand this into a section with screenshots and stuff, but right now I'm just trying to get the general skeleton done. Here's a quick rundown on how to do it:
Method 1: SSL
Tell your email program to use an SSL, or Secure connection.
Method 2: Forwarding over SSH
Tell your ssh program to forward local port 10110 (for POP3) and/or port 10143 (for IMAP) to remote host:port yip.org:110 or yip.org:143, respectively:
Most commandline ssh's:
ssh -L 10110:yip.org:110 you@yip.orgor
ssh -L 10143:yip.org:10143 you@yip.orgThe reason for not forwarding local port 110 is because you must be root to take over any ports below 1024, and we'd rather not force you to have root privileges to do things with yip.org. Note that you can put in multiple -L flags (and thus forward multiple ports).