2002-10-07 22:59:02 +02:00
|
|
|
# OfflineIMAP initialization code
|
2007-07-04 19:53:48 +02:00
|
|
|
# Copyright (C) 2002-2007 John Goerzen
|
2002-10-07 22:59:02 +02:00
|
|
|
# <jgoerzen@complete.org>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2003-04-16 21:23:45 +02:00
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
2002-10-07 22:59:02 +02:00
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2006-08-12 06:15:55 +02:00
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-10-07 22:59:02 +02:00
|
|
|
|
2011-01-10 12:12:42 +01:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import threading
|
2011-03-08 16:05:16 +01:00
|
|
|
import offlineimap.imaplib2 as imaplib
|
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"
2. When I start up mutt, I do it by calling a wrapper script that
delays
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.
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.
2008-12-01 23:13:16 +01:00
|
|
|
import signal
|
2011-01-10 12:12:42 +01:00
|
|
|
import socket
|
2010-12-15 19:06:59 +01:00
|
|
|
import logging
|
2011-01-10 12:12:42 +01:00
|
|
|
from optparse import OptionParser
|
2011-07-08 12:29:00 +02:00
|
|
|
try:
|
|
|
|
import fcntl
|
|
|
|
except ImportError:
|
|
|
|
pass #it's OK
|
2011-01-10 12:12:42 +01:00
|
|
|
import offlineimap
|
|
|
|
from offlineimap import accounts, threadutil, syncmaster
|
2011-09-16 15:09:20 +02:00
|
|
|
from offlineimap.error import OfflineImapError
|
2011-01-10 12:12:42 +01:00
|
|
|
from offlineimap.ui import UI_LIST, setglobalui, getglobalui
|
|
|
|
from offlineimap.CustomConfig import CustomConfigParser
|
|
|
|
|
2002-10-07 22:59:02 +02:00
|
|
|
|
2010-12-06 13:36:54 +01:00
|
|
|
class OfflineImap:
|
2010-12-15 19:06:59 +01:00
|
|
|
"""The main class that encapsulates the high level use of OfflineImap.
|
2010-12-06 13:36:54 +01:00
|
|
|
|
2011-05-02 17:11:40 +02:00
|
|
|
To invoke OfflineImap you would call it with::
|
|
|
|
|
|
|
|
oi = OfflineImap()
|
|
|
|
oi.run()
|
2010-12-15 19:06:59 +01:00
|
|
|
"""
|
|
|
|
def run(self):
|
|
|
|
"""Parse the commandline and invoke everything"""
|
|
|
|
|
2011-01-26 09:20:18 +01:00
|
|
|
parser = OptionParser(version=offlineimap.__version__,
|
2010-12-22 12:35:41 +01:00
|
|
|
description="%s.\n\n%s" %
|
|
|
|
(offlineimap.__copyright__,
|
|
|
|
offlineimap.__license__))
|
2010-12-15 19:06:59 +01:00
|
|
|
parser.add_option("-1",
|
|
|
|
action="store_true", dest="singlethreading",
|
|
|
|
default=False,
|
|
|
|
help="Disable all multithreading operations and use "
|
|
|
|
"solely a single-thread sync. This effectively sets the "
|
|
|
|
"maxsyncaccounts and all maxconnections configuration file "
|
|
|
|
"variables to 1.")
|
|
|
|
|
|
|
|
parser.add_option("-P", dest="profiledir", metavar="DIR",
|
|
|
|
help="Sets OfflineIMAP into profile mode. The program "
|
|
|
|
"will create DIR (it must not already exist). "
|
|
|
|
"As it runs, Python profiling information about each "
|
|
|
|
"thread is logged into profiledir. Please note: "
|
|
|
|
"This option is present for debugging and optimization "
|
|
|
|
"only, and should NOT be used unless you have a "
|
|
|
|
"specific reason to do so. It will significantly "
|
|
|
|
"decrease program performance, may reduce reliability, "
|
|
|
|
"and can generate huge amounts of data. This option "
|
|
|
|
"implies the -1 option.")
|
|
|
|
|
|
|
|
parser.add_option("-a", dest="accounts", metavar="ACCOUNTS",
|
|
|
|
help="""Overrides the accounts section in the config file.
|
|
|
|
Lets you specify a particular account or set of
|
|
|
|
accounts to sync without having to edit the config
|
|
|
|
file. You might use this to exclude certain accounts,
|
|
|
|
or to sync some accounts that you normally prefer not to.""")
|
|
|
|
|
|
|
|
parser.add_option("-c", dest="configfile", metavar="FILE",
|
|
|
|
default="~/.offlineimaprc",
|
|
|
|
help="Specifies a configuration file to use in lieu of "
|
2010-12-22 12:35:41 +01:00
|
|
|
"%default.")
|
2010-12-15 19:06:59 +01:00
|
|
|
|
|
|
|
parser.add_option("-d", dest="debugtype", metavar="type1,[type2...]",
|
2011-01-12 11:15:13 +01:00
|
|
|
help="""Enables debugging for OfflineIMAP. This is useful
|
|
|
|
if you are to track down a malfunction or figure out what is
|
|
|
|
going on under the hood. This option requires one or more
|
|
|
|
debugtypes, separated by commas. These define what exactly
|
|
|
|
will be debugged, and so far include two options: imap, thread,
|
|
|
|
maildir or ALL. The imap option will enable IMAP protocol
|
|
|
|
stream and parsing debugging. Note that the output may contain
|
|
|
|
passwords, so take care to remove that from the debugging
|
|
|
|
output before sending it to anyone else. The maildir option
|
|
|
|
will enable debugging for certain Maildir operations.
|
|
|
|
The use of any debug option (unless 'thread' is included),
|
|
|
|
implies the single-thread option -1.""")
|
2010-12-15 19:06:59 +01:00
|
|
|
|
|
|
|
parser.add_option("-l", dest="logfile", metavar="FILE",
|
|
|
|
help="Log to FILE")
|
|
|
|
|
|
|
|
parser.add_option("-f", dest="folders", metavar="folder1,[folder2...]",
|
|
|
|
help=
|
|
|
|
"Only sync the specified folders. The folder names "
|
|
|
|
"are the *untranslated* foldernames. This "
|
|
|
|
"command-line option overrides any 'folderfilter' "
|
|
|
|
"and 'folderincludes' options in the configuration "
|
|
|
|
"file.")
|
|
|
|
|
|
|
|
parser.add_option("-k", dest="configoverride",
|
|
|
|
action="append",
|
|
|
|
metavar="[section:]option=value",
|
|
|
|
help=
|
|
|
|
"""Override configuration file option. If"section" is
|
|
|
|
omitted, it defaults to "general". Any underscores
|
|
|
|
in the section name are replaced with spaces:
|
|
|
|
for instance, to override option "autorefresh" in
|
|
|
|
the "[Account Personal]" section in the config file
|
|
|
|
one would use "-k Account_Personal:autorefresh=30".""")
|
|
|
|
|
|
|
|
parser.add_option("-o",
|
|
|
|
action="store_true", dest="runonce",
|
|
|
|
default=False,
|
|
|
|
help="Run only once, ignoring any autorefresh setting "
|
|
|
|
"in the configuration file.")
|
|
|
|
|
|
|
|
parser.add_option("-q",
|
|
|
|
action="store_true", dest="quick",
|
|
|
|
default=False,
|
|
|
|
help="Run only quick synchronizations. Ignore any "
|
|
|
|
"flag updates on IMAP servers (if a flag on the remote IMAP "
|
|
|
|
"changes, and we have the message locally, it will be left "
|
|
|
|
"untouched in a quick run.")
|
|
|
|
|
|
|
|
parser.add_option("-u", dest="interface",
|
|
|
|
help="Specifies an alternative user interface to "
|
|
|
|
"use. This overrides the default specified in the "
|
|
|
|
"configuration file. The UI specified with -u will "
|
|
|
|
"be forced to be used, even if checks determine that it is "
|
|
|
|
"not usable. Possible interface choices are: %s " %
|
2011-01-10 12:12:42 +01:00
|
|
|
", ".join(UI_LIST.keys()))
|
2010-12-15 19:06:59 +01:00
|
|
|
|
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
|
|
|
#read in configuration file
|
|
|
|
configfilename = os.path.expanduser(options.configfile)
|
2010-12-06 13:36:54 +01:00
|
|
|
|
|
|
|
config = CustomConfigParser()
|
|
|
|
if not os.path.exists(configfilename):
|
2010-12-15 19:06:59 +01:00
|
|
|
logging.error(" *** Config file '%s' does not exist; aborting!" %
|
|
|
|
configfilename)
|
2010-12-06 13:36:54 +01:00
|
|
|
sys.exit(1)
|
|
|
|
config.read(configfilename)
|
2010-12-15 19:06:59 +01:00
|
|
|
|
|
|
|
#profile mode chosen?
|
|
|
|
if options.profiledir:
|
|
|
|
if not options.singlethreading:
|
|
|
|
logging.warn("Profile mode: Forcing to singlethreaded.")
|
2011-03-03 13:44:39 +01:00
|
|
|
options.singlethreading = True
|
2010-12-15 19:06:59 +01:00
|
|
|
profiledir = options.profiledir
|
|
|
|
os.mkdir(profiledir)
|
|
|
|
threadutil.setprofiledir(profiledir)
|
|
|
|
logging.warn("Profile mode: Potentially large data will be "
|
|
|
|
"created in '%s'" % profiledir)
|
|
|
|
|
|
|
|
#override a config value
|
|
|
|
if options.configoverride:
|
|
|
|
for option in options.configoverride:
|
|
|
|
(key, value) = option.split('=', 1)
|
|
|
|
if ':' in key:
|
|
|
|
(secname, key) = key.split(':', 1)
|
|
|
|
section = secname.replace("_", " ")
|
|
|
|
else:
|
|
|
|
section = "general"
|
|
|
|
config.set(section, key, value)
|
|
|
|
|
2011-03-06 11:04:46 +01:00
|
|
|
#which ui to use? cmd line option overrides config file
|
|
|
|
ui_type = config.getdefault('general','ui', 'ttyui')
|
2011-01-05 17:00:54 +01:00
|
|
|
if options.interface != None:
|
|
|
|
ui_type = options.interface
|
2011-03-06 11:04:46 +01:00
|
|
|
if '.' in ui_type:
|
|
|
|
#transform Curses.Blinkenlights -> Blinkenlights
|
|
|
|
ui_type = ui_type.split('.')[-1]
|
|
|
|
logging.warning('Using old interface name, consider using one '
|
|
|
|
'of %s' % ', '.join(UI_LIST.keys()))
|
2011-01-05 17:00:54 +01:00
|
|
|
try:
|
2011-03-06 11:04:46 +01:00
|
|
|
# create the ui class
|
|
|
|
ui = UI_LIST[ui_type.lower()](config)
|
2011-01-05 17:00:54 +01:00
|
|
|
except KeyError:
|
|
|
|
logging.error("UI '%s' does not exist, choose one of: %s" % \
|
2011-01-10 12:12:42 +01:00
|
|
|
(ui_type,', '.join(UI_LIST.keys())))
|
2011-01-05 17:00:54 +01:00
|
|
|
sys.exit(1)
|
2011-01-10 12:12:42 +01:00
|
|
|
setglobalui(ui)
|
2011-01-05 17:00:54 +01:00
|
|
|
|
|
|
|
#set up additional log files
|
2010-12-15 19:06:59 +01:00
|
|
|
if options.logfile:
|
|
|
|
ui.setlogfd(open(options.logfile, 'wt'))
|
2010-12-06 13:36:54 +01:00
|
|
|
|
2010-12-15 19:06:59 +01:00
|
|
|
#welcome blurb
|
2010-12-06 13:36:54 +01:00
|
|
|
ui.init_banner()
|
2010-12-15 19:06:59 +01:00
|
|
|
|
|
|
|
if options.debugtype:
|
|
|
|
if options.debugtype.lower() == 'all':
|
|
|
|
options.debugtype = 'imap,maildir,thread'
|
2011-01-12 11:15:13 +01:00
|
|
|
#force single threading?
|
|
|
|
if not ('thread' in options.debugtype.split(',') \
|
2011-05-12 20:59:26 +02:00
|
|
|
and not options.singlethreading):
|
2011-01-12 11:15:13 +01:00
|
|
|
ui._msg("Debug mode: Forcing to singlethreaded.")
|
2011-05-05 11:15:51 +02:00
|
|
|
options.singlethreading = True
|
2011-01-12 11:15:13 +01:00
|
|
|
|
2011-05-01 20:18:28 +02:00
|
|
|
debugtypes = options.debugtype.split(',') + ['']
|
|
|
|
for type in debugtypes:
|
2010-12-15 19:06:59 +01:00
|
|
|
type = type.strip()
|
|
|
|
ui.add_debug(type)
|
|
|
|
if type.lower() == 'imap':
|
2010-12-06 13:36:54 +01:00
|
|
|
imaplib.Debug = 5
|
2010-12-15 19:06:59 +01:00
|
|
|
|
|
|
|
if options.runonce:
|
2010-12-06 13:36:54 +01:00
|
|
|
# FIXME: maybe need a better
|
|
|
|
for section in accounts.getaccountlist(config):
|
|
|
|
config.remove_option('Account ' + section, "autorefresh")
|
2010-12-15 19:06:59 +01:00
|
|
|
|
|
|
|
if options.quick:
|
2010-12-06 13:36:54 +01:00
|
|
|
for section in accounts.getaccountlist(config):
|
|
|
|
config.set('Account ' + section, "quick", '-1')
|
2010-12-15 19:06:59 +01:00
|
|
|
|
2011-04-05 12:16:43 +02:00
|
|
|
#custom folder list specified?
|
2010-12-15 19:06:59 +01:00
|
|
|
if options.folders:
|
2011-04-28 15:26:07 +02:00
|
|
|
foldernames = options.folders.split(",")
|
2010-12-06 13:36:54 +01:00
|
|
|
folderfilter = "lambda f: f in %s" % foldernames
|
|
|
|
folderincludes = "[]"
|
|
|
|
for accountname in accounts.getaccountlist(config):
|
|
|
|
account_section = 'Account ' + accountname
|
|
|
|
remote_repo_section = 'Repository ' + \
|
|
|
|
config.get(account_section, 'remoterepository')
|
|
|
|
local_repo_section = 'Repository ' + \
|
|
|
|
config.get(account_section, 'localrepository')
|
|
|
|
for section in [remote_repo_section, local_repo_section]:
|
|
|
|
config.set(section, "folderfilter", folderfilter)
|
|
|
|
config.set(section, "folderincludes", folderincludes)
|
2010-12-15 19:06:59 +01:00
|
|
|
|
2011-05-07 17:40:32 +02:00
|
|
|
self.config = config
|
2010-12-06 13:36:54 +01:00
|
|
|
|
2011-02-14 15:52:07 +01:00
|
|
|
def sigterm_handler(signum, frame):
|
2010-12-06 13:36:54 +01:00
|
|
|
# die immediately
|
2011-01-10 12:12:42 +01:00
|
|
|
ui = getglobalui()
|
2010-12-06 13:36:54 +01:00
|
|
|
ui.terminate(errormsg="terminating...")
|
2010-12-13 20:40:25 +01:00
|
|
|
|
2010-12-06 13:36:54 +01:00
|
|
|
signal.signal(signal.SIGTERM,sigterm_handler)
|
|
|
|
|
|
|
|
try:
|
|
|
|
pidfd = open(config.getmetadatadir() + "/pid", "w")
|
|
|
|
pidfd.write(str(os.getpid()) + "\n")
|
|
|
|
pidfd.close()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
2010-12-15 19:06:59 +01:00
|
|
|
if options.logfile:
|
2010-12-06 13:36:54 +01:00
|
|
|
sys.stderr = ui.logfile
|
|
|
|
|
|
|
|
socktimeout = config.getdefaultint("general", "socktimeout", 0)
|
|
|
|
if socktimeout > 0:
|
|
|
|
socket.setdefaulttimeout(socktimeout)
|
|
|
|
|
|
|
|
activeaccounts = config.get("general", "accounts")
|
2010-12-15 19:06:59 +01:00
|
|
|
if options.accounts:
|
|
|
|
activeaccounts = options.accounts
|
2010-12-06 13:36:54 +01:00
|
|
|
activeaccounts = activeaccounts.replace(" ", "")
|
|
|
|
activeaccounts = activeaccounts.split(",")
|
|
|
|
allaccounts = accounts.AccountHashGenerator(config)
|
|
|
|
|
|
|
|
syncaccounts = []
|
|
|
|
for account in activeaccounts:
|
|
|
|
if account not in allaccounts:
|
|
|
|
if len(allaccounts) == 0:
|
|
|
|
errormsg = 'The account "%s" does not exist because no accounts are defined!'%account
|
|
|
|
else:
|
|
|
|
errormsg = 'The account "%s" does not exist. Valid accounts are:'%account
|
|
|
|
for name in allaccounts.keys():
|
|
|
|
errormsg += '\n%s'%name
|
|
|
|
ui.terminate(1, errortitle = 'Unknown Account "%s"'%account, errormsg = errormsg)
|
|
|
|
if account not in syncaccounts:
|
|
|
|
syncaccounts.append(account)
|
|
|
|
|
|
|
|
server = None
|
|
|
|
remoterepos = None
|
|
|
|
localrepos = None
|
|
|
|
|
2011-03-06 10:20:14 +01:00
|
|
|
threadutil.initInstanceLimit('ACCOUNTLIMIT',
|
|
|
|
config.getdefaultint('general',
|
|
|
|
'maxsyncaccounts', 1))
|
2010-12-06 13:36:54 +01:00
|
|
|
|
|
|
|
for reposname in config.getsectionlist('Repository'):
|
|
|
|
for instancename in ["FOLDER_" + reposname,
|
|
|
|
"MSGCOPY_" + reposname]:
|
2010-12-15 19:06:59 +01:00
|
|
|
if options.singlethreading:
|
2010-12-06 13:36:54 +01:00
|
|
|
threadutil.initInstanceLimit(instancename, 1)
|
|
|
|
else:
|
|
|
|
threadutil.initInstanceLimit(instancename,
|
2011-03-06 10:20:14 +01:00
|
|
|
config.getdefaultint('Repository ' + reposname,
|
|
|
|
'maxconnections', 2))
|
2011-05-07 17:40:32 +02:00
|
|
|
def sig_handler(sig, frame):
|
|
|
|
if sig == signal.SIGUSR1 or sig == signal.SIGHUP:
|
|
|
|
# tell each account to stop sleeping
|
|
|
|
accounts.Account.set_abort_event(self.config, 1)
|
|
|
|
elif sig == signal.SIGUSR2:
|
|
|
|
# tell each account to stop looping
|
|
|
|
accounts.Account.set_abort_event(self.config, 2)
|
|
|
|
|
2010-12-06 13:36:54 +01:00
|
|
|
signal.signal(signal.SIGHUP,sig_handler)
|
|
|
|
signal.signal(signal.SIGUSR1,sig_handler)
|
|
|
|
signal.signal(signal.SIGUSR2,sig_handler)
|
|
|
|
|
2011-01-12 11:15:12 +01:00
|
|
|
#various initializations that need to be performed:
|
|
|
|
offlineimap.mbnames.init(config, syncaccounts)
|
|
|
|
|
2011-07-08 12:29:00 +02:00
|
|
|
#TODO: keep legacy lock for a few versions, then remove.
|
|
|
|
self._legacy_lock = open(self.config.getmetadatadir() + "/lock",
|
|
|
|
'w')
|
|
|
|
try:
|
|
|
|
fcntl.lockf(self._legacy_lock, fcntl.LOCK_EX|fcntl.LOCK_NB)
|
|
|
|
except NameError:
|
|
|
|
#fcntl not available (Windows), disable file locking... :(
|
|
|
|
pass
|
|
|
|
except IOError:
|
|
|
|
raise OfflineImapError("Could not take global lock.",
|
|
|
|
OfflineImapError.ERROR.REPO)
|
|
|
|
|
2011-01-12 11:15:12 +01:00
|
|
|
if options.singlethreading:
|
|
|
|
#singlethreaded
|
2011-05-07 17:40:32 +02:00
|
|
|
self.sync_singlethreaded(syncaccounts, config)
|
2011-01-12 11:15:12 +01:00
|
|
|
else:
|
|
|
|
# multithreaded
|
|
|
|
t = threadutil.ExitNotifyThread(target=syncmaster.syncitall,
|
2010-12-06 13:36:54 +01:00
|
|
|
name='Sync Runner',
|
|
|
|
kwargs = {'accounts': syncaccounts,
|
2011-05-07 17:40:32 +02:00
|
|
|
'config': config})
|
2011-01-12 11:15:12 +01:00
|
|
|
t.setDaemon(1)
|
|
|
|
t.start()
|
|
|
|
threadutil.exitnotifymonitorloop(threadutil.threadexited)
|
2011-01-12 11:15:08 +01:00
|
|
|
|
2011-06-14 11:52:05 +02:00
|
|
|
ui.terminate()
|
2011-01-12 11:15:08 +01:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
ui.terminate(1, errormsg = 'CTRL-C pressed, aborting...')
|
|
|
|
return
|
|
|
|
except (SystemExit):
|
2010-12-06 13:36:54 +01:00
|
|
|
raise
|
2011-07-08 12:29:00 +02:00
|
|
|
except Exception, e:
|
2011-08-22 11:49:57 +02:00
|
|
|
ui.error(e)
|
|
|
|
ui.terminate()
|
2002-10-07 22:59:02 +02:00
|
|
|
|
2011-05-07 17:40:32 +02:00
|
|
|
def sync_singlethreaded(self, accs, config):
|
2011-01-12 11:15:12 +01:00
|
|
|
"""Executed if we do not want a separate syncmaster thread
|
|
|
|
|
|
|
|
:param accs: A list of accounts that should be synced
|
|
|
|
:param config: The CustomConfig object
|
|
|
|
"""
|
|
|
|
for accountname in accs:
|
|
|
|
account = offlineimap.accounts.SyncableAccount(config, accountname)
|
|
|
|
threading.currentThread().name = "Account sync %s" % accountname
|
2011-05-07 17:40:32 +02:00
|
|
|
account.syncrunner()
|