def __init__(self, *a, **kws): self._name = None log.info('aolmail: %r', kws) # All AOLMAil accounts use the same server. kws.update(dict( imapserver = self.AIM_SERVER)) IMAPMail.__init__(self, *a, **kws)
def __init__(self, *a, **kws): self._name = None log.info('aolmail: %r', kws) # All AOLMAil accounts use the same server. kws.update(dict(imapserver=self.AIM_SERVER)) IMAPMail.__init__(self, *a, **kws)
def archive(self, msg): IMAPMail.archive(self, msg) self.move(msg, "Saved Mail")
def delete(self, msg): IMAPMail.delete(self, msg) self.move(msg, "Trash")
def reportSpam(self, msg): IMAPMail.reportSpam(self, msg) self.move(msg, "Spam")
def _get_options(self): opts = IMAPMail._get_options(self) opts.pop('email_address', None) opts.pop('mailclient', None) return opts