From c647daace2d49a4178ae002104ee18b336eab71e Mon Sep 17 00:00:00 2001 From: David Martin Date: Sun, 21 May 2017 08:34:49 +1000 Subject: [PATCH] Connect to configured inbox instead of hardcoded one. Now the retrieving of emails from the inbox set in the config file works as expected. --- src/documents/mail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/mail.py b/src/documents/mail.py index 012ee0cf9..af4371652 100644 --- a/src/documents/mail.py +++ b/src/documents/mail.py @@ -219,7 +219,7 @@ class MailFetcher(Loggable): if not login[0] == "OK": raise MailFetcherError("Can't log into mail: {}".format(login[1])) - inbox = self._connection.select("INBOX") + inbox = self._connection.select(self._inbox) if not inbox[0] == "OK": raise MailFetcherError("Can't find the inbox: {}".format(inbox[1]))