1
0
mirror of https://github.com/OfflineIMAP/offlineimap.git synced 2024-06-21 06:56:38 +02:00

/head: changeset 42

Fixed MD5 processing.
This commit is contained in:
jgoerzen 2002-06-22 05:39:02 +01:00
parent 97f39b5ea8
commit 6e50d78e72
2 changed files with 3 additions and 2 deletions

View File

@ -43,9 +43,9 @@ accounts = accounts.split(",")
server = None
remoterepos = None
localrepos = None
mailboxes = []
def syncitall():
mailboxes = []
for accountname in accounts:
ui.acct(accountname)
accountmetadata = os.path.join(metadatadir, accountname)

View File

@ -24,6 +24,7 @@ timeseq = 0
lasttime = long(0)
def gettimeseq():
global lasttime, timeseq
thistime = long(time.time())
if thistime == lasttime:
timeseq += 1
@ -91,7 +92,7 @@ class MaildirFolder(BaseFolder):
# assume it is a foreign (new) message and generate a
# negative uid for it
uid = nouidcounter
nouidcountr -= 1
nouidcounter -= 1
else: # It comes from our folder.
uidmatch = re.search(',U=(\d+)', messagename)
uid = None