Example #1
0
    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)
Example #2
0
    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)
Example #3
0
 def archive(self, msg):
     IMAPMail.archive(self, msg)
     self.move(msg, "Saved Mail")
Example #4
0
 def delete(self, msg):
     IMAPMail.delete(self, msg)
     self.move(msg, "Trash")
Example #5
0
 def reportSpam(self, msg):
     IMAPMail.reportSpam(self, msg)
     self.move(msg, "Spam")
Example #6
0
 def _get_options(self):
     opts = IMAPMail._get_options(self)
     opts.pop('email_address', None)
     opts.pop('mailclient', None)
     return opts
Example #7
0
 def archive(self, msg):
     IMAPMail.archive(self, msg)
     self.move(msg, "Saved Mail")
Example #8
0
 def delete(self, msg):
     IMAPMail.delete(self, msg)
     self.move(msg, "Trash")
Example #9
0
 def reportSpam(self, msg):
     IMAPMail.reportSpam(self, msg)
     self.move(msg, "Spam")
Example #10
0
 def _get_options(self):
     opts = IMAPMail._get_options(self)
     opts.pop('email_address', None)
     opts.pop('mailclient', None)
     return opts