Installing Stunnel to Enable SSL Connections in Pan Newsreader
I'd like my newsreading activity to remain private and I enjoy using the PAN Newsreader . The newsreader is open and free, but unfortunately doesn't support SSL connections. My news provider astraweb  does support SSL at no additional cost. So I decided to take the plunge an utilize stunnel  to encrypt connections to news service provider on my 64-bit Kubuntu  linux machine. Hope the following procedure helps anyone trying to do the same.   Install stunnel4 form the Ubuntu repositories:  sudo apt-get install stunnel4  Configure stunnel to start automatically by editing the main configuration file with nano text editir (my favorite) and change the ENABLED=0 line to 1:  sudo nano /etc/default/stunnel4  ENABLED=1  Copy the example configuration /usr/share/doc/stunnel4/examples/stunnel.conf-sample to /etc/stunnel/    sudo cp /usr/share/doc/stunnel4/examples/stunnel.conf-sample /etc/stunnel/stunnel.conf  Edit the newly copied configuration file to make news request secure  Uncommen...