root / offlineimap / syncmaster.py

syncmaster.py

View | Annotate | Download (2.2 KB)

# Date Author Comment
e1fb9492 12/01/2008 04:13 PM John Goerzen

Patch for signal handling to start a sync by Jim Pryor
Here's the way I'd like to use offlineimap on my laptop:
1. Have a regular cron job running infrequently. The cron job
checks to see
if I'm online, plugged in, and that no other copy of offlineimap is
running. If
all of these conditions are satisfied, it runs offlineimap just once:
"offlineimap -o -u Noninteractive.Quiet" until cron-started copies of offlineimap have finished, then starts
offlineimap
on its regular, stay-alive and keep checking schedule. When I quit
mutt, the
wrapper script tells offlineimap to stop.

2. When I start up mutt, I do it by calling a wrapper script that
delays

This way I get frequent regular checks while I have mutt running, but
I don't
waste my battery/cpu checking frequently for mail when I'm not
interested in
it.

To make this work, though, it'd be nicer if it were easier to tell
offlineimap,
from the outside, things like "terminate cleanly now" and "when you've
finished
synching, then terminate instead of sleeping and synching again."

OK, to put my money where my mouth is, I attach two patches against
offlineimap
6.0.3.

The first, "cleanup.patch", cleans up a few spots that tend to throw
exceptions
for me as offlineimap is exiting from a KeyboardInterrupt.

The second adds signaling capabilities to offlineimap.

  • sending a SIGTERM tells offlineimap to terminate immediately but
    cleanly,
    just as if "q" had been pressed in the GUI interface
  • sending a SIGUSR1 tells every account to do a full sync asap: if
    it's
    sleeping, then wake up and do the sync now. If it's mid-sync, then
    re-synch
    any folders whose syncing has already been started or completed, and
    continue
    to synch the other, queued but not-yet-synched folders.
  • sending a SIGHUP tells every account to die as soon as it can (but
    not
    immediately: only after finishing any synch it's now engaged in)
  • sending a SIGUSR2 tells every account to do a full sync asap (as
    with
    SIGUSR1), then die

It's tricky to mix signals with threads, but I think I've done this
correctly.
I've been using it now for a few weeks without any obvious
problems. But I'm passing it
on so that others can review the code and test it out on their
systems. I developed the
patch when I was running Python 2.5.2, but to my knowledge I don't use
any Python 2.5-specific
code. Now I'm using the patch with Python 2.6.

Although I said "without any obvious problems," let me confess that
I'm
seeing offlineimap regularly choke when I do things like this: start
up
my offlineimap-wrapped copy of mutt, wait a while, put the machine to
sleep (not sure if offlineimap is active in the background or idling),
move to a different spot, wake the machine up again and it acquires a
new network, sometimes a wired network instead of wifi. Offlineimap
doesn't like that so much. I don't yet have any reason to think the
problems here come from my patches. But I'm just acknowledging them,
so
that if others are able to use offlineimap without any difficulty in
situations like I described, then maybe the fault is with my patches.

6790c948 05/20/2008 01:38 AM John Goerzen

Revert "Checkpointing work on mailbox deletion"

This reverts commit f58ebe390d281e6fe526e70451e2377b77f68183.

Not going to follow this path right now

f58ebe39 05/20/2008 01:38 AM John Goerzen

Checkpointing work on mailbox deletion

abf9648f 07/04/2007 06:53 PM John Goerzen

Clean up imaplib imports

71c8b2e7 12/11/2006 06:12 AM aaron

Configurable thread status character for ui.Curses.Blinkenlights

39a18fef 08/12/2006 05:15 AM John Goerzen

Update FSF address

d839be3c 04/16/2005 08:33 PM John Goerzen

Step 2 of SVN to arch tree conversion