2002-06-19 07:22:21 +02:00
|
|
|
# Base folder support
|
2011-04-27 12:15:49 +02:00
|
|
|
# Copyright (C) 2002-2011 John Goerzen & contributors
|
2002-06-19 07:22:21 +02:00
|
|
|
#
|
|
|
|
# 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-06-19 07:22:21 +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-06-19 07:22:21 +02:00
|
|
|
|
2002-07-04 05:59:19 +02:00
|
|
|
from offlineimap import threadutil
|
2011-01-21 16:02:27 +01:00
|
|
|
from offlineimap.ui import getglobalui
|
2011-08-15 11:00:06 +02:00
|
|
|
from offlineimap.error import OfflineImapError
|
2012-01-04 19:24:19 +01:00
|
|
|
import offlineimap.accounts
|
2011-01-05 17:00:57 +01:00
|
|
|
import os.path
|
|
|
|
import re
|
2011-08-11 12:22:35 +02:00
|
|
|
from sys import exc_info
|
2011-01-28 01:46:29 +01:00
|
|
|
import traceback
|
2011-08-16 12:16:46 +02:00
|
|
|
try: # python 2.6 has set() built in
|
|
|
|
set
|
|
|
|
except NameError:
|
|
|
|
from sets import Set as set
|
2002-06-21 08:51:21 +02:00
|
|
|
|
2011-05-05 15:59:24 +02:00
|
|
|
class BaseFolder(object):
|
2011-09-16 10:54:22 +02:00
|
|
|
def __init__(self, name, repository):
|
|
|
|
"""
|
|
|
|
:para name: Path & name of folder minus root or reference
|
|
|
|
:para repository: Repository() in which the folder is.
|
|
|
|
"""
|
2011-08-14 13:38:13 +02:00
|
|
|
self.sync_this = True
|
|
|
|
"""Should this folder be included in syncing?"""
|
2011-01-05 17:00:57 +01:00
|
|
|
self.ui = getglobalui()
|
2011-09-30 17:20:11 +02:00
|
|
|
# Top level dir name is always ''
|
|
|
|
self.name = name if not name == self.getsep() else ''
|
2011-09-16 10:54:22 +02:00
|
|
|
self.repository = repository
|
2011-09-19 13:41:38 +02:00
|
|
|
self.visiblename = repository.nametrans(name)
|
2011-09-30 17:20:11 +02:00
|
|
|
# In case the visiblename becomes '.' or '/' (top-level) we use
|
|
|
|
# '' as that is the name that e.g. the Maildir scanning will
|
|
|
|
# return for the top-level dir.
|
|
|
|
if self.visiblename == self.getsep():
|
2011-09-23 14:27:25 +02:00
|
|
|
self.visiblename = ''
|
2011-09-16 10:54:24 +02:00
|
|
|
self.config = repository.getconfig()
|
2011-04-27 12:15:49 +02:00
|
|
|
|
2002-06-19 07:22:21 +02:00
|
|
|
def getname(self):
|
|
|
|
"""Returns name"""
|
|
|
|
return self.name
|
|
|
|
|
2011-03-06 20:03:05 +01:00
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
2011-09-16 10:54:23 +02:00
|
|
|
@property
|
|
|
|
def accountname(self):
|
|
|
|
"""Account name as string"""
|
|
|
|
return self.repository.accountname
|
|
|
|
|
2002-07-04 03:35:05 +02:00
|
|
|
def suggeststhreads(self):
|
|
|
|
"""Returns true if this folder suggests using threads for actions;
|
|
|
|
false otherwise. Probably only IMAP will return true."""
|
|
|
|
return 0
|
|
|
|
|
2002-07-04 05:59:19 +02:00
|
|
|
def getcopyinstancelimit(self):
|
|
|
|
"""For threading folders, returns the instancelimitname for
|
|
|
|
InstanceLimitedThreads."""
|
|
|
|
raise NotImplementedException
|
|
|
|
|
2002-07-16 04:26:58 +02:00
|
|
|
def storesmessages(self):
|
|
|
|
"""Should be true for any backend that actually saves message bodies.
|
|
|
|
(Almost all of them). False for the LocalStatus backend. Saves
|
|
|
|
us from having to slurp up messages just for localstatus purposes."""
|
|
|
|
return 1
|
|
|
|
|
2002-06-21 08:51:21 +02:00
|
|
|
def getvisiblename(self):
|
2011-09-19 13:41:38 +02:00
|
|
|
"""The nametrans-transposed name of the folder's name"""
|
|
|
|
return self.visiblename
|
2002-06-21 08:51:21 +02:00
|
|
|
|
2002-08-20 22:54:02 +02:00
|
|
|
def getrepository(self):
|
|
|
|
"""Returns the repository object that this folder is within."""
|
|
|
|
return self.repository
|
|
|
|
|
2002-06-19 07:22:21 +02:00
|
|
|
def getroot(self):
|
|
|
|
"""Returns the root of the folder, in a folder-specific fashion."""
|
|
|
|
return self.root
|
|
|
|
|
|
|
|
def getsep(self):
|
|
|
|
"""Returns the separator for this folder type."""
|
|
|
|
return self.sep
|
|
|
|
|
|
|
|
def getfullname(self):
|
2002-06-20 08:26:28 +02:00
|
|
|
if self.getroot():
|
|
|
|
return self.getroot() + self.getsep() + self.getname()
|
|
|
|
else:
|
|
|
|
return self.getname()
|
2011-04-27 12:15:49 +02:00
|
|
|
|
2003-04-18 04:18:34 +02:00
|
|
|
def getfolderbasename(self):
|
2011-08-17 16:11:00 +02:00
|
|
|
"""Return base file name of file to store Status/UID info in"""
|
|
|
|
if not self.name:
|
|
|
|
basename = '.'
|
|
|
|
else: #avoid directory hierarchies and file names such as '/'
|
|
|
|
basename = self.name.replace('/', '.')
|
|
|
|
# replace with literal 'dot' if final path name is '.' as '.' is
|
|
|
|
# an invalid file name.
|
|
|
|
basename = re.sub('(^|\/)\.$','\\1dot', basename)
|
|
|
|
return basename
|
2003-04-18 04:18:34 +02:00
|
|
|
|
2012-01-19 11:51:53 +01:00
|
|
|
def check_uidvalidity(self):
|
2012-01-19 11:24:16 +01:00
|
|
|
"""Tests if the cached UIDVALIDITY match the real current one
|
2011-03-06 11:17:12 +01:00
|
|
|
|
2012-01-19 11:24:16 +01:00
|
|
|
If required it saves the UIDVALIDITY value. In this case the
|
|
|
|
function is not threadsafe. So don't attempt to call it from
|
2012-01-19 11:51:53 +01:00
|
|
|
concurrent threads.
|
|
|
|
|
|
|
|
:returns: Boolean indicating the match. Returns True in case it
|
|
|
|
implicitely saved the UIDVALIDITY."""
|
2011-03-06 11:17:12 +01:00
|
|
|
|
2012-01-19 11:50:19 +01:00
|
|
|
if self.get_saveduidvalidity() != None:
|
|
|
|
return self.get_saveduidvalidity() == self.get_uidvalidity()
|
2003-04-18 04:18:34 +02:00
|
|
|
else:
|
2012-01-19 11:53:48 +01:00
|
|
|
self.save_uidvalidity()
|
2012-01-19 11:51:53 +01:00
|
|
|
return True
|
2003-04-18 04:18:34 +02:00
|
|
|
|
|
|
|
def _getuidfilename(self):
|
2012-01-19 11:54:16 +01:00
|
|
|
"""provides UIDVALIDITY cache filename for class internal purposes"""
|
2003-04-18 04:18:34 +02:00
|
|
|
return os.path.join(self.repository.getuiddir(),
|
|
|
|
self.getfolderbasename())
|
2011-04-27 12:15:49 +02:00
|
|
|
|
2012-01-19 11:50:19 +01:00
|
|
|
def get_saveduidvalidity(self):
|
|
|
|
"""Return the previously cached UIDVALIDITY value
|
|
|
|
|
|
|
|
:returns: UIDVALIDITY as (long) number or None, if None had been
|
|
|
|
saved yet."""
|
2003-04-18 04:18:34 +02:00
|
|
|
if hasattr(self, '_base_saved_uidvalidity'):
|
|
|
|
return self._base_saved_uidvalidity
|
|
|
|
uidfilename = self._getuidfilename()
|
|
|
|
if not os.path.exists(uidfilename):
|
|
|
|
self._base_saved_uidvalidity = None
|
|
|
|
else:
|
|
|
|
file = open(uidfilename, "rt")
|
|
|
|
self._base_saved_uidvalidity = long(file.readline().strip())
|
|
|
|
file.close()
|
|
|
|
return self._base_saved_uidvalidity
|
|
|
|
|
2012-01-19 11:53:48 +01:00
|
|
|
def save_uidvalidity(self):
|
|
|
|
"""Save the UIDVALIDITY value of the folder to the cache
|
2011-03-06 11:17:12 +01:00
|
|
|
|
|
|
|
This function is not threadsafe, so don't attempt to call it
|
|
|
|
from concurrent threads."""
|
2012-01-19 11:24:16 +01:00
|
|
|
newval = self.get_uidvalidity()
|
2003-04-18 04:18:34 +02:00
|
|
|
uidfilename = self._getuidfilename()
|
2011-03-06 11:17:12 +01:00
|
|
|
|
|
|
|
file = open(uidfilename + ".tmp", "wt")
|
|
|
|
file.write("%d\n" % newval)
|
|
|
|
file.close()
|
|
|
|
os.rename(uidfilename + ".tmp", uidfilename)
|
|
|
|
self._base_saved_uidvalidity = newval
|
2002-06-20 05:33:23 +02:00
|
|
|
|
2012-01-19 11:24:16 +01:00
|
|
|
def get_uidvalidity(self):
|
|
|
|
"""Retrieve the current connections UIDVALIDITY value
|
|
|
|
|
|
|
|
This function needs to be implemented by each Backend
|
|
|
|
:returns: UIDVALIDITY as a (long) number"""
|
2002-06-20 05:33:23 +02:00
|
|
|
raise NotImplementedException
|
|
|
|
|
|
|
|
def cachemessagelist(self):
|
|
|
|
"""Reads the message list from disk or network and stores it in
|
|
|
|
memory for later use. This list will not be re-read from disk or
|
|
|
|
memory unless this function is called again."""
|
|
|
|
raise NotImplementedException
|
|
|
|
|
|
|
|
def getmessagelist(self):
|
2002-06-20 05:50:58 +02:00
|
|
|
"""Gets the current message list.
|
|
|
|
You must call cachemessagelist() before calling this function!"""
|
2002-06-20 05:33:23 +02:00
|
|
|
raise NotImplementedException
|
|
|
|
|
2011-03-11 10:50:18 +01:00
|
|
|
def uidexists(self, uid):
|
|
|
|
"""Returns True if uid exists"""
|
|
|
|
return uid in self.getmessagelist()
|
|
|
|
|
|
|
|
def getmessageuidlist(self):
|
|
|
|
"""Gets a list of UIDs.
|
|
|
|
You may have to call cachemessagelist() before calling this function!"""
|
|
|
|
return self.getmessagelist().keys()
|
|
|
|
|
2011-03-09 08:53:20 +01:00
|
|
|
def getmessagecount(self):
|
|
|
|
"""Gets the number of messages."""
|
|
|
|
return len(self.getmessagelist())
|
|
|
|
|
2002-06-20 05:50:58 +02:00
|
|
|
def getmessage(self, uid):
|
|
|
|
"""Returns the content of the specified message."""
|
|
|
|
raise NotImplementedException
|
|
|
|
|
2006-08-22 03:09:36 +02:00
|
|
|
def savemessage(self, uid, content, flags, rtime):
|
2002-06-20 06:37:36 +02:00
|
|
|
"""Writes a new message, with the specified uid.
|
2002-06-21 03:12:52 +02:00
|
|
|
|
2011-03-16 16:24:07 +01:00
|
|
|
If the uid is < 0: The backend should assign a new uid and
|
|
|
|
return it. In case it cannot assign a new uid, it returns
|
|
|
|
the negative uid passed in WITHOUT saving the message.
|
2002-07-18 02:51:03 +02:00
|
|
|
|
2011-03-16 16:24:07 +01:00
|
|
|
If the backend CAN assign a new uid, but cannot find out what
|
|
|
|
this UID is (as is the case with some IMAP servers), it
|
|
|
|
returns 0 but DOES save the message.
|
2002-06-21 03:12:52 +02:00
|
|
|
|
2011-03-16 16:24:07 +01:00
|
|
|
IMAP backend should be the only one that can assign a new
|
|
|
|
uid.
|
2002-06-20 13:39:27 +02:00
|
|
|
|
|
|
|
If the uid is > 0, the backend should set the uid to this, if it can.
|
2011-03-16 16:24:07 +01:00
|
|
|
If it cannot set the uid to that, it will save it anyway.
|
|
|
|
It will return the uid assigned in any case.
|
2002-06-20 13:39:27 +02:00
|
|
|
"""
|
2002-06-20 05:50:58 +02:00
|
|
|
raise NotImplementedException
|
|
|
|
|
2006-08-22 03:09:36 +02:00
|
|
|
def getmessagetime(self, uid):
|
|
|
|
"""Return the received time for the specified message."""
|
|
|
|
raise NotImplementedException
|
|
|
|
|
2002-06-20 05:50:58 +02:00
|
|
|
def getmessageflags(self, uid):
|
|
|
|
"""Returns the flags for the specified message."""
|
|
|
|
raise NotImplementedException
|
|
|
|
|
|
|
|
def savemessageflags(self, uid, flags):
|
|
|
|
"""Sets the specified message's flags to the given set."""
|
|
|
|
raise NotImplementedException
|
|
|
|
|
2002-06-20 06:37:36 +02:00
|
|
|
def addmessageflags(self, uid, flags):
|
|
|
|
"""Adds the specified flags to the message's flag set. If a given
|
2011-08-16 12:16:46 +02:00
|
|
|
flag is already present, it will not be duplicated.
|
|
|
|
:param flags: A set() of flags"""
|
|
|
|
newflags = self.getmessageflags(uid) | flags
|
2002-06-20 06:37:36 +02:00
|
|
|
self.savemessageflags(uid, newflags)
|
|
|
|
|
2002-07-03 07:05:49 +02:00
|
|
|
def addmessagesflags(self, uidlist, flags):
|
|
|
|
for uid in uidlist:
|
2003-01-09 03:16:07 +01:00
|
|
|
self.addmessageflags(uid, flags)
|
2002-07-03 07:05:49 +02:00
|
|
|
|
2002-06-20 06:37:36 +02:00
|
|
|
def deletemessageflags(self, uid, flags):
|
|
|
|
"""Removes each flag given from the message's flag set. If a given
|
|
|
|
flag is already removed, no action will be taken for that flag."""
|
2011-08-16 12:16:46 +02:00
|
|
|
newflags = self.getmessageflags(uid) - flags
|
2002-06-20 06:37:36 +02:00
|
|
|
self.savemessageflags(uid, newflags)
|
|
|
|
|
2003-01-09 03:16:07 +01:00
|
|
|
def deletemessagesflags(self, uidlist, flags):
|
|
|
|
for uid in uidlist:
|
|
|
|
self.deletemessageflags(uid, flags)
|
|
|
|
|
2011-08-30 10:52:11 +02:00
|
|
|
def change_message_uid(self, uid, new_uid):
|
|
|
|
"""Change the message from existing uid to new_uid
|
|
|
|
|
|
|
|
If the backend supports it (IMAP does not).
|
|
|
|
:param new_uid: (optional) If given, the old UID will be changed
|
|
|
|
to a new UID. This allows backends efficient renaming of
|
|
|
|
messages if the UID has changed."""
|
|
|
|
raise NotImplementedException
|
|
|
|
|
2002-06-20 05:50:58 +02:00
|
|
|
def deletemessage(self, uid):
|
|
|
|
raise NotImplementedException
|
|
|
|
|
2002-06-21 03:55:06 +02:00
|
|
|
def deletemessages(self, uidlist):
|
|
|
|
for uid in uidlist:
|
|
|
|
self.deletemessage(uid)
|
|
|
|
|
2011-03-06 20:03:04 +01:00
|
|
|
def copymessageto(self, uid, dstfolder, statusfolder, register = 1):
|
|
|
|
"""Copies a message from self to dst if needed, updating the status
|
|
|
|
|
|
|
|
:param uid: uid of the message to be copied.
|
|
|
|
:param dstfolder: A BaseFolder-derived instance
|
|
|
|
:param statusfolder: A LocalStatusFolder instance
|
|
|
|
:param register: whether we should register a new thread."
|
|
|
|
:returns: Nothing on success, or raises an Exception."""
|
2002-07-16 04:26:58 +02:00
|
|
|
# Sometimes, it could be the case that if a sync takes awhile,
|
|
|
|
# a message might be deleted from the maildir before it can be
|
|
|
|
# synced to the status cache. This is only a problem with
|
|
|
|
# self.getmessage(). So, don't call self.getmessage unless
|
|
|
|
# really needed.
|
2011-08-11 12:22:35 +02:00
|
|
|
if register: # output that we start a new thread
|
2011-11-03 13:45:44 +01:00
|
|
|
self.ui.registerthread(self.repository.account)
|
2011-08-11 12:22:35 +02:00
|
|
|
|
2011-08-15 11:00:06 +02:00
|
|
|
try:
|
|
|
|
message = None
|
|
|
|
flags = self.getmessageflags(uid)
|
|
|
|
rtime = self.getmessagetime(uid)
|
|
|
|
|
|
|
|
if uid > 0 and dstfolder.uidexists(uid):
|
|
|
|
# dst has message with that UID already, only update status
|
|
|
|
statusfolder.savemessage(uid, None, flags, rtime)
|
|
|
|
return
|
|
|
|
|
|
|
|
# If any of the destinations actually stores the message body,
|
|
|
|
# load it up.
|
|
|
|
if dstfolder.storesmessages():
|
|
|
|
message = self.getmessage(uid)
|
|
|
|
#Succeeded? -> IMAP actually assigned a UID. If newid
|
|
|
|
#remained negative, no server was willing to assign us an
|
|
|
|
#UID. If newid is 0, saving succeeded, but we could not
|
|
|
|
#retrieve the new UID. Ignore message in this case.
|
2011-08-30 10:52:11 +02:00
|
|
|
new_uid = dstfolder.savemessage(uid, message, flags, rtime)
|
|
|
|
if new_uid > 0:
|
|
|
|
if new_uid != uid:
|
|
|
|
# Got new UID, change the local uid to match the new one.
|
|
|
|
self.change_message_uid(uid, new_uid)
|
|
|
|
statusfolder.deletemessage(uid)
|
2011-08-15 11:00:06 +02:00
|
|
|
# Got new UID, change the local uid.
|
|
|
|
# Save uploaded status in the statusfolder
|
2011-08-30 10:52:11 +02:00
|
|
|
statusfolder.savemessage(new_uid, message, flags, rtime)
|
2012-01-06 21:41:04 +01:00
|
|
|
elif new_uid == 0:
|
2011-08-15 11:00:06 +02:00
|
|
|
# Message was stored to dstfolder, but we can't find it's UID
|
|
|
|
# This means we can't link current message to the one created
|
|
|
|
# in IMAP. So we just delete local message and on next run
|
|
|
|
# we'll sync it back
|
|
|
|
# XXX This could cause infinite loop on syncing between two
|
|
|
|
# IMAP servers ...
|
2011-07-26 10:59:54 +02:00
|
|
|
self.deletemessage(uid)
|
2011-08-15 11:00:06 +02:00
|
|
|
else:
|
|
|
|
raise OfflineImapError("Trying to save msg (uid %d) on folder "
|
2011-08-30 10:52:11 +02:00
|
|
|
"%s returned invalid uid %d" % (uid,
|
|
|
|
dstfolder.getvisiblename(), new_uid),
|
2011-08-15 11:00:06 +02:00
|
|
|
OfflineImapError.ERROR.MESSAGE)
|
2011-08-30 10:52:11 +02:00
|
|
|
except (KeyboardInterrupt): # bubble up CTRL-C
|
|
|
|
raise
|
2011-08-15 11:00:06 +02:00
|
|
|
except OfflineImapError, e:
|
|
|
|
if e.severity > OfflineImapError.ERROR.MESSAGE:
|
|
|
|
raise # buble severe errors up
|
|
|
|
self.ui.error(e, exc_info()[2])
|
|
|
|
except Exception, e:
|
|
|
|
self.ui.error(e, "Copying message %s [acc: %s]:\n %s" %\
|
2011-09-16 10:54:23 +02:00
|
|
|
(uid, self.accountname,
|
2011-08-30 10:52:11 +02:00
|
|
|
exc_info()[2]))
|
2011-08-15 11:00:06 +02:00
|
|
|
raise #raise on unknown errors, so we can fix those
|
|
|
|
|
2011-03-06 20:03:04 +01:00
|
|
|
def syncmessagesto_copy(self, dstfolder, statusfolder):
|
2011-03-24 17:45:21 +01:00
|
|
|
"""Pass1: Copy locally existing messages not on the other side
|
2002-06-25 06:47:09 +02:00
|
|
|
|
2011-03-24 17:45:21 +01:00
|
|
|
This will copy messages to dstfolder that exist locally but are
|
|
|
|
not in the statusfolder yet. The strategy is:
|
2011-03-06 20:03:04 +01:00
|
|
|
|
|
|
|
1) Look for messages present in self but not in statusfolder.
|
|
|
|
2) invoke copymessageto() on those which:
|
|
|
|
- If dstfolder doesn't have it yet, add them to dstfolder.
|
|
|
|
- Update statusfolder
|
|
|
|
"""
|
2002-07-04 03:35:05 +02:00
|
|
|
threads = []
|
2011-03-06 20:03:04 +01:00
|
|
|
|
2011-03-24 17:45:21 +01:00
|
|
|
copylist = filter(lambda uid: not \
|
2011-03-11 10:50:18 +01:00
|
|
|
statusfolder.uidexists(uid),
|
|
|
|
self.getmessageuidlist())
|
2011-09-29 16:51:48 +02:00
|
|
|
num_to_copy = len(copylist)
|
|
|
|
for num, uid in enumerate(copylist):
|
2012-01-04 19:24:19 +01:00
|
|
|
# bail out on CTRL-C or SIGTERM
|
|
|
|
if offlineimap.accounts.Account.abort_NOW_signal.is_set():
|
|
|
|
break
|
2011-09-29 16:51:48 +02:00
|
|
|
self.ui.copyingmessage(uid, num+1, num_to_copy, self, dstfolder)
|
2011-08-15 11:00:06 +02:00
|
|
|
# exceptions are caught in copymessageto()
|
|
|
|
if self.suggeststhreads():
|
|
|
|
self.waitforthread()
|
|
|
|
thread = threadutil.InstanceLimitedThread(\
|
|
|
|
self.getcopyinstancelimit(),
|
|
|
|
target = self.copymessageto,
|
2011-09-29 16:51:48 +02:00
|
|
|
name = "Copy message from %s:%s" % (self.repository, self),
|
2011-08-15 11:00:06 +02:00
|
|
|
args = (uid, dstfolder, statusfolder))
|
|
|
|
thread.start()
|
|
|
|
threads.append(thread)
|
|
|
|
else:
|
|
|
|
self.copymessageto(uid, dstfolder, statusfolder,
|
|
|
|
register = 0)
|
2002-07-04 03:35:05 +02:00
|
|
|
for thread in threads:
|
|
|
|
thread.join()
|
2002-06-20 05:50:58 +02:00
|
|
|
|
2011-03-06 20:03:04 +01:00
|
|
|
def syncmessagesto_delete(self, dstfolder, statusfolder):
|
2011-03-24 17:45:21 +01:00
|
|
|
"""Pass 2: Remove locally deleted messages on dst
|
2002-06-20 05:50:58 +02:00
|
|
|
|
2011-03-06 20:03:04 +01:00
|
|
|
Get all UIDS in statusfolder but not self. These are messages
|
|
|
|
that were deleted in 'self'. Delete those from dstfolder and
|
|
|
|
statusfolder."""
|
|
|
|
deletelist = filter(lambda uid: uid>=0 \
|
2011-03-11 10:50:18 +01:00
|
|
|
and not self.uidexists(uid),
|
|
|
|
statusfolder.getmessageuidlist())
|
2002-07-03 07:05:49 +02:00
|
|
|
if len(deletelist):
|
2011-03-06 20:03:04 +01:00
|
|
|
self.ui.deletingmessages(deletelist, [dstfolder])
|
|
|
|
# delete in statusfolder first to play safe. In case of abort, we
|
|
|
|
# won't lose message, we will just retransmit some unneccessary.
|
|
|
|
for folder in [statusfolder, dstfolder]:
|
|
|
|
folder.deletemessages(deletelist)
|
|
|
|
|
|
|
|
def syncmessagesto_flags(self, dstfolder, statusfolder):
|
2011-03-24 17:45:21 +01:00
|
|
|
"""Pass 3: Flag synchronization
|
2011-03-06 20:03:04 +01:00
|
|
|
|
|
|
|
Compare flag mismatches in self with those in statusfolder. If
|
|
|
|
msg has a valid UID and exists on dstfolder (has not e.g. been
|
|
|
|
deleted there), sync the flag change to both dstfolder and
|
|
|
|
statusfolder.
|
|
|
|
"""
|
|
|
|
# For each flag, we store a list of uids to which it should be
|
|
|
|
# added. Then, we can call addmessagesflags() to apply them in
|
|
|
|
# bulk, rather than one call per message.
|
2003-01-09 03:16:07 +01:00
|
|
|
addflaglist = {}
|
|
|
|
delflaglist = {}
|
2011-03-11 10:50:18 +01:00
|
|
|
for uid in self.getmessageuidlist():
|
2011-08-16 12:16:46 +02:00
|
|
|
# Ignore messages with negative UIDs missed by pass 1 and
|
|
|
|
# don't do anything if the message has been deleted remotely
|
2011-03-11 10:50:18 +01:00
|
|
|
if uid < 0 or not dstfolder.uidexists(uid):
|
2002-06-20 06:37:36 +02:00
|
|
|
continue
|
2002-06-20 05:50:58 +02:00
|
|
|
|
2011-03-06 20:03:04 +01:00
|
|
|
selfflags = self.getmessageflags(uid)
|
|
|
|
statusflags = statusfolder.getmessageflags(uid)
|
|
|
|
#if we could not get message flags from LocalStatus, assume empty.
|
|
|
|
if statusflags is None:
|
2011-08-16 12:16:46 +02:00
|
|
|
statusflags = set()
|
|
|
|
|
|
|
|
addflags = selfflags - statusflags
|
|
|
|
delflags = statusflags - selfflags
|
2003-01-09 03:16:07 +01:00
|
|
|
|
|
|
|
for flag in addflags:
|
|
|
|
if not flag in addflaglist:
|
|
|
|
addflaglist[flag] = []
|
|
|
|
addflaglist[flag].append(uid)
|
2002-06-20 06:14:54 +02:00
|
|
|
|
2003-01-09 03:16:07 +01:00
|
|
|
for flag in delflags:
|
|
|
|
if not flag in delflaglist:
|
|
|
|
delflaglist[flag] = []
|
|
|
|
delflaglist[flag].append(uid)
|
2002-06-20 06:37:36 +02:00
|
|
|
|
2011-08-16 12:16:46 +02:00
|
|
|
for flag, uids in addflaglist.items():
|
|
|
|
self.ui.addingflags(uids, flag, dstfolder)
|
|
|
|
dstfolder.addmessagesflags(uids, set(flag))
|
|
|
|
statusfolder.addmessagesflags(uids, set(flag))
|
2011-04-27 12:15:49 +02:00
|
|
|
|
2011-08-16 12:16:46 +02:00
|
|
|
for flag,uids in delflaglist.items():
|
|
|
|
self.ui.deletingflags(uids, flag, dstfolder)
|
|
|
|
dstfolder.deletemessagesflags(uids, set(flag))
|
|
|
|
statusfolder.deletemessagesflags(uids, set(flag))
|
|
|
|
|
2011-03-06 20:03:04 +01:00
|
|
|
def syncmessagesto(self, dstfolder, statusfolder):
|
|
|
|
"""Syncs messages in this folder to the destination dstfolder.
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
|
2011-03-06 20:03:04 +01:00
|
|
|
This is the high level entry for syncing messages in one direction.
|
|
|
|
Syncsteps are:
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
|
2011-03-24 17:45:21 +01:00
|
|
|
Pass1: Copy locally existing messages
|
2011-03-06 20:03:04 +01:00
|
|
|
Copy messages in self, but not statusfolder to dstfolder if not
|
2011-03-24 17:45:21 +01:00
|
|
|
already in dstfolder. dstfolder might assign a new UID (e.g. if
|
|
|
|
uploading to IMAP). Update statusfolder.
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
|
2011-03-24 17:45:21 +01:00
|
|
|
Pass2: Remove locally deleted messages
|
2011-03-06 20:03:04 +01:00
|
|
|
Get all UIDS in statusfolder but not self. These are messages
|
|
|
|
that were deleted in 'self'. Delete those from dstfolder and
|
|
|
|
statusfolder.
|
2002-06-25 06:47:09 +02:00
|
|
|
|
2011-03-06 20:03:04 +01:00
|
|
|
After this pass, the message lists should be identical wrt the
|
|
|
|
uids present (except for potential negative uids that couldn't
|
|
|
|
be placed anywhere).
|
|
|
|
|
2011-03-24 17:45:21 +01:00
|
|
|
Pass3: Synchronize flag changes
|
2011-03-06 20:03:04 +01:00
|
|
|
Compare flag mismatches in self with those in statusfolder. If
|
|
|
|
msg has a valid UID and exists on dstfolder (has not e.g. been
|
|
|
|
deleted there), sync the flag change to both dstfolder and
|
|
|
|
statusfolder.
|
|
|
|
|
|
|
|
:param dstfolder: Folderinstance to sync the msgs to.
|
|
|
|
:param statusfolder: LocalStatus instance to sync against.
|
|
|
|
"""
|
2011-03-24 17:45:21 +01:00
|
|
|
passes = [('copying messages' , self.syncmessagesto_copy),
|
2011-03-06 20:03:04 +01:00
|
|
|
('deleting messages' , self.syncmessagesto_delete),
|
|
|
|
('syncing flags' , self.syncmessagesto_flags)]
|
|
|
|
|
|
|
|
for (passdesc, action) in passes:
|
2012-01-04 19:24:19 +01:00
|
|
|
# bail out on CTRL-C or SIGTERM
|
|
|
|
if offlineimap.accounts.Account.abort_NOW_signal.is_set():
|
|
|
|
break
|
2011-03-06 20:03:04 +01:00
|
|
|
try:
|
|
|
|
action(dstfolder, statusfolder)
|
|
|
|
except (KeyboardInterrupt):
|
|
|
|
raise
|
2011-08-17 10:01:37 +02:00
|
|
|
except OfflineImapError, e:
|
2011-08-11 12:22:35 +02:00
|
|
|
if e.severity > OfflineImapError.ERROR.FOLDER:
|
|
|
|
raise
|
|
|
|
self.ui.error(e, exc_info()[2])
|
|
|
|
except Exception, e:
|
2011-08-22 17:22:41 +02:00
|
|
|
self.ui.error(e, exc_info()[2], "Syncing folder %s [acc: %s]" %\
|
2011-09-16 10:54:23 +02:00
|
|
|
(self, self.accountname))
|
2011-08-11 12:22:35 +02:00
|
|
|
raise # raise unknown Exceptions so we can fix them
|