Archive for August 26th, 2009

Postfix catch-all. The proper way…

An issue I recently encountered with some mail servers was poor MTA reputation. Even though the servers were only used for corporate email, somehow their MTA is poor at senderbase, even though none of the IP’s are on a single RBL/SBL. This is partly due to Slicehost having bad IP blocks and the method they use for assigning IP’s to new slices. But I believe the issue can be resolved with good history.
Read more

Evolution Mail 2.26.1 – Not deleting trash

After switching from windoz to Linux, I immediately started using Evolution Mail after being an Outlook user for many years. Evolution in many ways is better than Outlook besides being free, but there is a small issue.

Sometimes, somehow and someway the client loses sync with folders and this little bash script will fix the problem. I originally found this on the Ubuntu forums a few months ago.


#!/bin/bash
# see http://ubuntuforums.org/showthread.php?t=974536
cd $HOME/.evolution/mail
echo "Deleting .index(s)";
find -name "*.index" -exec rm {} \;
echo "Deleting .ev-summary(s)";
find -name "*.ev-summary" -exec rm {} \;
echo "Deleting .cmeta(s)";
find -name "*.cmeta" -exec rm {} \;
echo "Done.";