docker-offlineimap/head/offlineimap/repository/IMAP.py

56 lines
2.2 KiB
Python
Raw Normal View History

2002-06-19 06:39:00 +02:00
# IMAP repository support
# Copyright (C) 2002 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from Base import BaseRepository
from imapsync import folder, imaputil
2002-06-21 08:51:21 +02:00
import re
2002-06-19 06:39:00 +02:00
class IMAPRepository(BaseRepository):
2002-06-21 08:51:21 +02:00
def __init__(self, config, accountname, imapserver):
2002-06-19 06:39:00 +02:00
"""Initialize an IMAPRepository object. Takes an IMAPServer
object."""
self.imapserver = imapserver
2002-06-21 08:51:21 +02:00
self.config = config
self.accountname = accountname
self.imapobj = imapserver.makeconnection()
self.folders = None
2002-06-21 08:51:21 +02:00
self.nametrans = lambda foldername: foldername
if config.has_option(accountname, 'nametrans'):
self.nametrans = eval(config.get(accountname, 'nametrans'))
2002-06-19 08:16:19 +02:00
def getsep(self):
return self.imapserver.delim
2002-06-20 04:55:24 +02:00
def getfolder(self, foldername):
2002-06-21 08:51:21 +02:00
return folder.IMAP.IMAPFolder(self.imapserver, foldername,
self.nametrans(foldername))
2002-06-20 04:55:24 +02:00
def getfolders(self):
if self.folders != None:
return self.folders
retval = []
2002-06-20 09:40:29 +02:00
for string in self.imapobj.list()[1]:
flags, delim, name = imaputil.imapsplit(string)
if '\\Noselect' in imaputil.flagsplit(flags):
continue
2002-06-21 08:51:21 +02:00
retval.append(folder.IMAP.IMAPFolder(self.imapserver, name,
self.nametrans(imaputil.dequote(name))))
retval.sort(lambda x, y: cmp(x.getvisiblename(), y.getvisiblename()))
self.folders = retval
return retval