Complete.Org: Mailing Lists: Archives: offlineimap: February 2004:
Unhandled exception in offlineimap-4
Home

Unhandled exception in offlineimap-4

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
To: offlineimap@xxxxxxxxxxxx
Subject: Unhandled exception in offlineimap-4
From: Aron Griffis <agriffis@xxxxxxxxxx>
Date: Wed, 18 Feb 2004 14:17:27 -0500

OfflineIMAP 4.0.0 (Rev 509)
Copyright (C) 2002, 2003 John Goerzen <jgoerzen@xxxxxxxxxxxx>
This software comes with ABSOLUTELY NO WARRANTY; see the file
COPYING for details.  This is free software, and you are welcome
to distribute it under the conditions laid out in COPYING.
***** Processing account Home
Copying folder structure from IMAP to Maildir
Establishing connection to tunnel:ssh -q griffis1.net \
'env SENDMAIL=/usr/sbin/sendmail OUTBOX=.Outbox /usr/sbin/courier-imapd 
.maildir'.
INFO: LOGIN, user=user, ip=[127.0.0.1], protocol=IMAP
Syncing INBOX.Outbox: IMAP -> Maildir
Copy message -1 Maildir[Outbox] -> IMAP[INBOX.Outbox], LocalStatus[Outbox]
Syncing INBOX: IMAP -> Maildir
Copy message 54718 IMAP[INBOX] -> Maildir[INBOX], LocalStatus[INBOX]
Syncing INBOX.Trash: IMAP -> Maildir
Syncing INBOX.evolution-patches: IMAP -> Maildir
Syncing INBOX.gentoo-alpha: IMAP -> Maildir
Syncing INBOX.gentoo-core: IMAP -> Maildir
Syncing INBOX.gentoo-dev: IMAP -> Maildir
Syncing INBOX.ruby-talk: IMAP -> Maildir
Copy message 143 IMAP[INBOX.ruby-talk] -> Maildir[ruby-talk], 
LocalStatus[ruby-talk]
Syncing INBOX.vim-dev: IMAP -> Maildir
***** Finished processing account Home
INFO: LOGOUT, user=user, ip=[127.0.0.1], headers=0, body=3851
Unhandled exception in thread started by <bound method 
ExitNotifyThread.__bootstrap of <ExitNotifyThread(Sync Runner, stopped daemon)>>
Traceback (most recent call last):
  File "/usr/lib/python2.3/threading.py", line 451, in __bootstrap
    self.__stop()
  File "/usr/lib/python2.3/threading.py", line 460, in __stop
    self.__block.notifyAll()
  File "/usr/lib/python2.3/threading.py", line 256, in notifyAll
    self.notify(len(self.__waiters))
  File "/usr/lib/python2.3/threading.py", line 238, in notify
    currentThread() # for side-effect
TypeError: 'NoneType' object is not callable

-- Attached file included as plaintext by Ecartis --

[general]
metadata = ~/.offlineimap
accounts = Home
maxsyncaccounts = 1
ui = Noninteractive.Basic
pythonfile = ~/.offlineimap.py

[Account Home]
localrepository = Local
remoterepository = griffis1
autorefresh = 1

[Repository Local]
type = Maildir
localfolders = ~/mail/griffis1
sep = .

[Repository griffis1]
type = IMAP
preauthtunnel = ssh -q griffis1.net \
    'env SENDMAIL=/usr/sbin/sendmail OUTBOX=.Outbox /usr/sbin/courier-imapd 
.maildir'
nametrans = lambda foldername: re.sub('^INBOX.', '', foldername)
folderfilter = lambda foldername: not re.search('backup', foldername)
foldersort = mycmp


-- Attached file included as plaintext by Ecartis --

import re

def mycmp(x, y):
    if re.match('Outbox', x):
        return -1
    if re.match('Outbox', y):
        return +1
    return cmp(x, y)




[Prev in Thread] Current Thread [Next in Thread]