Why has gmail been so slow for…

December 29, 2009 | Filed Under twitter | Leave a Comment 

Why has gmail been so slow for the last week (with chrome)?



Python for scientific programm…

December 15, 2009 | Filed Under twitter | Leave a Comment 

Python for scientific programming, warts: http://tinyurl.com/y96xnvc



Backup gmail with mpop

December 13, 2009 | Filed Under Uncategorized | Leave a Comment 

To backup email from a gmail account, first install mpop:

sudo apt-get install mpop

Edit your ~/.mpoprc file:

# defaults
defaults
tls on

# gmail
account gmail
host pop.gmail.com
user myaccount
password myaccountpassword
keep on
only_new off
tls_starttls off
delivery mbox ~/Backup/myaccount@gmail.mbox

# Set a default account
account default : gmail

To grab some emails:

mpop --tls-certcheck=off

Original info from this post.