|
@@ -135,7 +135,7 @@ class Imap:
|
|
|
self.remove_absence_messages()
|
|
|
|
|
|
def undelivered(self):
|
|
|
- with MailBox("mail.global-cube.com").login("versand", "y6!avXX3tQvr") as mb:
|
|
|
+ with self.conncet("versand") as mb:
|
|
|
selected = []
|
|
|
for msg in mb.fetch(
|
|
|
criteria=AND(to="@global-cube.com"),
|
|
@@ -181,5 +181,5 @@ class Imap:
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
- # plac.Interpreter.call(Imap)
|
|
|
- Imap().undelivered()
|
|
|
+ plac.Interpreter.call(Imap)
|
|
|
+ # Imap().undelivered()
|