Re: [Bug 364481] Re: offlineimap constantly goes for a spin consuming 100% cpu

2009-10-15 Thread Amit Kucheria
On 09 Oct 03, Pär Andersson wrote:
 Do you still see this problem with 6.2.0ubuntu2 in karmic? 6.2.0 is
 supposed to fix several connection issues according to the changelog.
 
 The commit 30344587d9a62a92d921f6643bdf1384cd6b5a9f (not in 6.2.0)
 also looks like it might be relevant.

This problem still exists. Every other day I have to kill the offlineimap cron
job that is stuck since the night before.

-- 
offlineimap constantly goes for a spin consuming 100% cpu
https://bugs.launchpad.net/bugs/364481
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Re: [Bug 364481] Re: offlineimap constantly goes for a spin consuming 100% cpu

2009-07-02 Thread Amit Kucheria
On 09 Jun 30, Reuben Thomas wrote:
 See also Debian bug #525007 (inconclusive, but the symptoms I was having
 seem to be the same).

The common thing in between your report and mine, now that you've
brought it to my attention, is that I too have a flaky ADSL link.
Although it is 10/1Mbit, ping times to google.com go from 40ms to 8000ms
once or twice a day.

I will watch out for a correlation between huge network latencies and
the CPU spike from now on.

-- 
offlineimap constantly goes for a spin consuming 100% cpu
https://bugs.launchpad.net/bugs/364481
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 364481] Re: offlineimap constantly goes for a spin consuming 100% cpu

2009-04-27 Thread Amit Kucheria
 Do you run offlineimap with any kind of front-end; or does do you have
 it running as a daemon?

Through cron. My crontab entry is:

# fetch email every 10mins - less causes gmail problems
*/10 * * * * $HOME/bin/cron-run-offlineimap.sh

And cron-run-offlineimap.sh is:

#!/bin/sh

# Run offlineimap through cron to fetch email periodically

ps aux | grep \/usr\/bin\/offlineimap

if [ $? -eq 0 ]; then
logger -i -t offlineimap Another instance of offlineimap running. 
Exiting.
exit 0;
else
logger -i -t offlineimap Starting offlineimap...
offlineimap -u Noninteractive.Basic
logger -i -t offlineimap Done offlineimap...
fi

-- 
offlineimap constantly goes for a spin consuming 100% cpu
https://bugs.launchpad.net/bugs/364481
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs