Comment 18 for bug 160142

Revision history for this message
Subodh Bhattacharjya (subodhb) wrote :

This bug keeps hitting me once every 2 months. For now, I run the following script, and it resyncs for me.

#!/bin/bash

PRESENTDIR=`pwd`;
/usr/bin/evolution --force-shutdown

if [ $? -eq 0 ]; then

    cd /<email address hidden>/personal
    mv summary sub.summary 2>/dev/null; mv summary-meta sub.summary-meta 2>/dev/null

    cd subfolders/Inbox/
    mv summary sub.summary 2>/dev/null; mv summary-meta sub.summary-meta 2>/dev/null
fi

cd $PRESENTDIR