Comment 6 for bug 360667

Revision history for this message
Tremaine Lea (tremaine) wrote :

Upgraded to Jaunty, issue remains.

What further information can I provide to help move this along?

I'm currently having to run evolution out of a script to automagically wipe the cmeta and ibex files, force an evolution shutdown, then launch it with debugging turned on. I've attached the output from evolution --debug /home/tlea/Desktop/evolution-debugs/evolution.debug.$DATE

<code>
#!/bin/bash

# script for https://bugs.launchpad.net/bugs/360667

# /usr/local/bin/cmetaibex.sh is simply the commands below. The rm *.ev-summary* should be unneccessary
# in current versions of evolution, but may be left over from an upgrade

# rm *.cmeta;
# rm *.ibex.*
# rm *.ev-summary*

DATE=`date +%a%m%d%Y:%T`

evolution --force-shutdown;
cd /home/$USER/.evolution/mail/local/;
/usr/local/bin/cmetaibex.sh;
cd /home/$USER/.evolution/mail/local/Inbox.sbd/ddiction.sbd/ ;
/usr/local/bin/cmetaibex.sh;
cd /home/$USER/.evolution/mail/local/Inbox.sbd/Facebook.sbd/ ;
/usr/local/bin/cmetaibex.sh;
cd /home/$USER/.evolution/mail/local/Inbox.sbd/FD.sbd/ ;
/usr/local/bin/cmetaibex.sh;
cd /home/$USER/.evolution/mail/local/Inbox.sbd/GoogleAlerts.sbd/ ;
/usr/local/bin/cmetaibex.sh;
cd /home/$USER/.evolution/mail/local/Inbox.sbd/Livejournal.sbd/ ;
/usr/local/bin/cmetaibex.sh;
cd /home/$USER/.evolution/mail/local/Inbox.sbd/SierraSystems.sbd/ ;
/usr/local/bin/cmetaibex.sh;
cd /home/$USER/.evolution/mail/local/Inbox.sbd/Zorch.sbd/ ;
/usr/local/bin/cmetaibex.sh;
cd /home/$USER/.evolution/mail/local/Inbox.sbd/zot.sbd/ ;
/usr/local/bin/cmetaibex.sh;

evolution --force-shutdown;
evolution --debug /home/tlea/Desktop/evolution-debugs/evolution.debug.$DATE
</code>