Connect to configured inbox instead of hardcoded one.

Now the retrieving of emails from the inbox set in the config file works
as expected.
This commit is contained in:
David Martin 2017-05-21 08:34:49 +10:00
parent 70dceb3b37
commit c647daace2

View File

@ -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]))