示例#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)
示例#2
0
文件: aolmail.py 项目: sgricci/digsby
    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)
示例#3
0
文件: aolmail.py 项目: sgricci/digsby
 def archive(self, msg):
     IMAPMail.archive(self, msg)
     self.move(msg, "Saved Mail")
示例#4
0
文件: aolmail.py 项目: sgricci/digsby
 def delete(self, msg):
     IMAPMail.delete(self, msg)
     self.move(msg, "Trash")
示例#5
0
文件: aolmail.py 项目: sgricci/digsby
 def reportSpam(self, msg):
     IMAPMail.reportSpam(self, msg)
     self.move(msg, "Spam")
示例#6
0
文件: aolmail.py 项目: sgricci/digsby
 def _get_options(self):
     opts = IMAPMail._get_options(self)
     opts.pop('email_address', None)
     opts.pop('mailclient', None)
     return opts
示例#7
0
 def archive(self, msg):
     IMAPMail.archive(self, msg)
     self.move(msg, "Saved Mail")
示例#8
0
 def delete(self, msg):
     IMAPMail.delete(self, msg)
     self.move(msg, "Trash")
示例#9
0
 def reportSpam(self, msg):
     IMAPMail.reportSpam(self, msg)
     self.move(msg, "Spam")
示例#10
0
 def _get_options(self):
     opts = IMAPMail._get_options(self)
     opts.pop('email_address', None)
     opts.pop('mailclient', None)
     return opts