idle timeout setting (30 minutes) is also almost never increased because
it doesn't make sense. The "auth penalty" option is something people do
change, but there's no reason for doing so, because 4 seconds is
reasonable. These options should be removed. :-)

Ack! Don't delete the idle timeout option yet! I have to set it to 30 seconds to make multiple Thunderbird clients share a common folder without losing sync. I know, RFC 3501 prohibits timeout periods of less than 30 minutes ... but sometimes I run with scissors too :-) I'm still trying to figure out the root cause of this problem by studying the logs and ethereal captures (TB no doubt - its IMAP implementation is still pretty immature).



a script that periodically removes deleted messages, is very feasable and
easy to write as a daily cron job:

for k in `ls /home`; do
    if [ -d $k/Mail ]; then
        find $k/Mail -type f | egrep '2,[A-Z]+?T' | xargs echo rm
    fi
done

Yes, you are right - there's no point adding this feature to Binc if a 4-line script will do the job! With my feeble programming skills, I was planning a much less elegant and much more painful script...


Thanks, Andy!


- Mike

Reply via email to