2008-01-03 04:56:55 +01:00
|
|
|
# Gmail IMAP folder support
|
|
|
|
# Copyright (C) 2008 Riccardo Murri <riccardo.murri@gmail.com>
|
|
|
|
# Copyright (C) 2002-2007 John Goerzen <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
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
"""Folder implementation to support features of the Gmail IMAP server.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from IMAP import IMAPFolder
|
2011-03-08 16:05:14 +01:00
|
|
|
from offlineimap import imaputil
|
2008-01-03 04:56:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
class GmailFolder(IMAPFolder):
|
|
|
|
"""Folder implementation to support features of the Gmail IMAP server.
|
|
|
|
Specifically, deleted messages are moved to folder `Gmail.TRASH_FOLDER`
|
|
|
|
(by default: ``[Gmail]/Trash``) prior to expunging them, since
|
|
|
|
Gmail maps to IMAP ``EXPUNGE`` command to "remove label".
|
|
|
|
|
|
|
|
For more information on the Gmail IMAP server:
|
|
|
|
http://mail.google.com/support/bin/answer.py?answer=77657&topic=12815
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, imapserver, name, visiblename, accountname, repository):
|
|
|
|
self.realdelete = repository.getrealdelete(name)
|
2008-08-13 01:19:38 +02:00
|
|
|
self.trash_folder = repository.gettrashfolder(name)
|
|
|
|
#: Gmail will really delete messages upon EXPUNGE in these folders
|
|
|
|
self.real_delete_folders = [ self.trash_folder, repository.getspamfolder() ]
|
2008-01-03 04:56:55 +01:00
|
|
|
IMAPFolder.__init__(self, imapserver, name, visiblename, \
|
|
|
|
accountname, repository)
|
|
|
|
|
|
|
|
def deletemessages_noconvert(self, uidlist):
|
|
|
|
uidlist = [uid for uid in uidlist if uid in self.messagelist]
|
|
|
|
if not len(uidlist):
|
2011-08-16 12:16:46 +02:00
|
|
|
return
|
2008-01-03 04:56:55 +01:00
|
|
|
|
2008-08-13 01:19:38 +02:00
|
|
|
if self.realdelete and not (self.getname() in self.real_delete_folders):
|
2008-01-03 04:56:55 +01:00
|
|
|
# IMAP expunge is just "remove label" in this folder,
|
|
|
|
# so map the request into a "move into Trash"
|
|
|
|
|
|
|
|
imapobj = self.imapserver.acquireconnection()
|
|
|
|
try:
|
|
|
|
imapobj.select(self.getfullname())
|
|
|
|
result = imapobj.uid('copy',
|
2011-08-22 12:21:11 +02:00
|
|
|
imaputil.uid_sequence(uidlist),
|
2008-08-13 01:19:38 +02:00
|
|
|
self.trash_folder)
|
2008-01-03 04:56:55 +01:00
|
|
|
assert result[0] == 'OK', \
|
|
|
|
"Bad IMAPlib result: %s" % result[0]
|
|
|
|
finally:
|
|
|
|
self.imapserver.releaseconnection(imapobj)
|
|
|
|
for uid in uidlist:
|
|
|
|
del self.messagelist[uid]
|
|
|
|
else:
|
|
|
|
IMAPFolder.deletemessages_noconvert(self, uidlist)
|