I upgraded my Mail-server to Debian 6 – squeeze, it was everything great till I started my Thunderbird and get this Message: Filesystem notification initialization error — contact your mail administrator (check for configuration errors with the FAM/Gamin library)
This error can be seen in your mail client and is often caused by Courier. If you are the administrator of the mail server, simply install libgamin instead of libfam as follows:
1 | aptitude install gamin |
Now restart all courier services:
1 | find /etc/init.d/ | grep courier | while read line; do $line restart; done |
P says
Does not work for debian squeezy
Xelaz says
Thanks for very fast and small Fix and how to restart all Services with Grep and While
N says
Thanks! I just had this problem and this post was short, straight to the point and, most importantly, fixed the problem.