mirror of
https://github.com/pulb/mailnag.git
synced 2026-01-13 17:32:03 +01:00
150 lines
3.9 KiB
Python
150 lines
3.9 KiB
Python
# Copyright 2016 Timo Kankare <timo.kankare@iki.fi>
|
|
#
|
|
# 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 Street, Fifth Floor, Boston,
|
|
# MA 02110-1301, USA.
|
|
#
|
|
|
|
"""Implementation of local mailboxes, like mbox and maildir."""
|
|
|
|
import email
|
|
import mailbox
|
|
import logging
|
|
import os.path
|
|
|
|
from Mailnag.backends.base import MailboxBackend
|
|
|
|
class MBoxBackend(MailboxBackend):
|
|
"""Implementation of mbox mail boxes."""
|
|
|
|
def __init__(self, name = '', path=None, **kw):
|
|
"""Initialize mbox mailbox backend with a name and path."""
|
|
self._name = name
|
|
self._path = path
|
|
self._opened = False
|
|
|
|
|
|
def open(self):
|
|
"""'Open' mbox. (Actually just checks that mailbox file exists.)"""
|
|
if not os.path.isfile(self._path):
|
|
raise IOError('Mailbox {} does not exist.'.format(self._path))
|
|
self._opened = True
|
|
|
|
|
|
def close(self):
|
|
"""Close mbox."""
|
|
self._opened = False
|
|
|
|
|
|
def is_open(self):
|
|
"""Return True if mailbox is opened."""
|
|
return self._opened
|
|
|
|
|
|
def list_messages(self):
|
|
"""List unread messages from the mailbox.
|
|
Yields pairs (folder, message) where folder is always ''.
|
|
"""
|
|
mbox = mailbox.mbox(self._path, create=False)
|
|
folder = ''
|
|
try:
|
|
for msg in mbox:
|
|
if 'R' not in msg.get_flags():
|
|
yield folder, msg
|
|
finally:
|
|
mbox.close()
|
|
|
|
|
|
def request_folders(self):
|
|
"""mbox does not suppoert folders."""
|
|
raise NotImplementedError("mbox does not support folders")
|
|
|
|
|
|
def notify_next_change(self, callback=None, timeout=None):
|
|
raise NotImplementedError("mbox does not support notifications")
|
|
|
|
|
|
def cancel_notifications(self):
|
|
raise NotImplementedError("mbox does not support notifications")
|
|
|
|
|
|
class MaildirBackend(MailboxBackend):
|
|
"""Implementation of maildir mail boxes."""
|
|
|
|
def __init__(self, name = '', path=None, folders=[], **kw):
|
|
"""Initialize maildir mailbox backend with a name, path and folders."""
|
|
self._name = name
|
|
self._path = path
|
|
self._folders = folders
|
|
self._opened = False
|
|
|
|
|
|
def open(self):
|
|
"""'Open' mailbox. (Actually just checks that maildir directory exists.)"""
|
|
if not os.path.isdir(self._path):
|
|
raise IOError('Mailbox {} does not exist.'.format(self._path))
|
|
self._opened = True
|
|
|
|
|
|
def close(self):
|
|
"""Close mailbox."""
|
|
self._opened = False
|
|
|
|
|
|
def is_open(self):
|
|
"""Return True if mailbox is opened."""
|
|
return self._opened
|
|
|
|
|
|
def list_messages(self):
|
|
"""List unread messages from the mailbox.
|
|
Yields pairs (folder, message).
|
|
"""
|
|
folders = self._folders if len(self._folders) != 0 else ['']
|
|
root_maildir = mailbox.Maildir(self._path, factory=None, create=False)
|
|
try:
|
|
for folder in folders:
|
|
maildir = self._get_folder(root_maildir, folder)
|
|
for msg in maildir:
|
|
if 'S' not in msg.get_flags():
|
|
yield folder, msg
|
|
finally:
|
|
root_maildir.close()
|
|
|
|
|
|
def request_folders(self):
|
|
"""Lists folders from maildir."""
|
|
maildir = mailbox.Maildir(self._path, factory=None, create=False)
|
|
try:
|
|
return [''] + maildir.list_folders()
|
|
finally:
|
|
maildir.close()
|
|
|
|
|
|
def notify_next_change(self, callback=None, timeout=None):
|
|
raise NotImplementedError("maildir does not support notifications")
|
|
|
|
|
|
def cancel_notifications(self):
|
|
raise NotImplementedError("maildir does not support notifications")
|
|
|
|
|
|
def _get_folder(self, maildir, folder):
|
|
"""Returns folder instance of the given maildir."""
|
|
if folder == '':
|
|
return maildir
|
|
else:
|
|
return maildir.get_folder(folder)
|
|
|