tags 535160 pending
thanks

A commit relevant to this bug has occurred.

commit 3299b2240c1ce05dfc24852af71a36dfe39e3b44
Author: Peter Colberg <pe...@colberg.org>
Date:   Tue Jun 30 11:37:36 2009 +0200

    Applied patch from Peter Colberg to remove usage of hard linking
    Closes: #535160
    
    Bug#535160: offlineimap fails on encfs (FUSE) due to hard linking
    
    Package: offlineimap
    Version: 6.0.3
    Severity: normal
    Tags: patch
    
    Hi,
    
    if the localrepository is stored on an encfs, offlineimap fails as follows:
    
        OfflineIMAP 6.0.3
        Copyright (C) 2002 - 2008 John Goerzen <jgoer...@complete.org>
        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 pleione
        Copying folder structure from IMAP to Maildir
        Establishing connection to tunnel:eval `keychain --quiet --eval` && ssh 
-q mymailhost /usr/sbin/dovecot --exec-mail imap.
        Syncing Drafts: IMAP -> Maildir
        Syncing INBOX: IMAP -> Maildir
        ----------8<----------
        Syncing net: IMAP -> Maildir
        Copy message 360 IMAP[net] -> Maildir[net], LocalStatus[net]
        Syncing personal: IMAP -> Maildir
        Thread 'Copy message 360 from net' terminated with exception:
        Traceback (most recent call last):
          File "/var/lib/python-support/python2.4/offlineimap/threadutil.py", 
line 149, in run
        Thread.run(self)
          File "threading.py", line 422, in run
        self.__target(*self.__args, **self.__kwargs)
          File "/var/lib/python-support/python2.4/offlineimap/folder/Base.py", 
line 282, in copymessageto
        newuid = object.savemessage(uid, message, flags, rtime)
          File 
"/var/lib/python-support/python2.4/offlineimap/folder/Maildir.py", line 198, in 
savemessage
        os.path.join(tmpdir, messagename))
        OSError: [Errno 1] Operation not permitted
    
        Last 4 debug messages logged for Copy message 360 from net prior to 
exception:
        ----------8<----------
    
    As encfs does not support hard linking, the rename of the temporary
    message file fails.
    
    This is the only occurrence of hard linking in offlineimap and can be
    fixed by using an atomic `os.rename` instead of `os.link`+`os.unlink`.
    I have been using the attached patch for more than 1.5 years and have
    never again had any problems with offlineimap on encfs.
    
    Regards,
    Peter

Diff: 
http://git.complete.org/offlineimap?a=commitdiff_plain;h=3299b2240c1ce05dfc24852af71a36dfe39e3b44

 offlineimap/folder/Maildir.py |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

More details are available at:
    
http://git.complete.org/offlineimap?a=commit;h=3299b2240c1ce05dfc24852af71a36dfe39e3b44



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to