You might face problems in receiving the emails in the inbox. Checking the email logs you can find the error logs as follows :
2012-02-19 12:45:17 Berkeley DB error: /var/spool/exim/db/ratelimit: unexpected file type or format
2012-02-19 12:45:17 failed to open DB file /var/spool/exim/db/ratelimit: Bad file descriptor
2012-02-19 12:45:17 H=xxx.xxxx.xxxx [1.1.1.1] temporarily rejected connection in “connect” ACL: ratelimit database not available
2012-02-19 12:45:17 Berkeley DB error: /var/spool/exim/db/ratelimit: unexpected file type or format
The above error is basically due to exim database on the server being corrupted. You can follow the follow the following steps for this:
First stop the exim service
[root@support ~]#/etc/init.d/exim stop
[root@support ~]#cd /var/spool/exim
We will create a backup of the current exim DB.
[root@support exim]# cp -R db/ db-bak
[root@support exim]# cd db/
We will remove all the files currently existing in the folder.
[root@support db]# rm -rf *
Now restart the exim service so the DB is auto created.
[root@support ~]# /etc/init.d/exim start
The emails should now be working fine on the server !

