""" This file is part of alot. Alot 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 3 of the License, or (at your option) any later version. Alot 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 notmuch. If not, see . Copyright (C) 2011 Patrick Totzke """ import mailbox from urlparse import urlparse from send import SendmailSender class Account: def __init__(self, address, realname=None, gpg_key=None, signature=None, sender_type='sendmail', sendmail_command='sendmail', sent_mailbox=None): self.address = address self.realname = realname self.gpg_key = gpg_key self.signature = signature self.sender_type = sender_type self.mailbox = None if sent_mailbox: mburl = urlparse(sent_mailbox) if mburl.scheme == 'mbox': self.mailbox = mailbox.mbox(mburl.path) elif mburl.scheme == 'maildir': self.mailbox = mailbox.Maildir(mburl.path) elif mburl.scheme == 'mh': self.mailbox = mailbox.MH(mburl.path) elif mburl.scheme == 'babyl': self.mailbox = mailbox.Babyl(mburl.path) elif mburl.scheme == 'mmdf': self.mailbox = mailbox.MMDF(mburl.path) if self.sender_type == 'sendmail': self.sender = SendmailSender(sendmail_command, mailbox=self.mailbox)