From 59549eb9df2efdd899d11b24fb934991afd331b1 Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Thu, 10 Jan 2019 16:01:36 +0530 Subject: [PATCH] [Fix] Emails are not fetching --- frappe/email/receive.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/email/receive.py b/frappe/email/receive.py index f77e8a80d9..900456e37f 100644 --- a/frappe/email/receive.py +++ b/frappe/email/receive.py @@ -547,6 +547,7 @@ class Email: # fix due to a python bug in poplib that limits it to 2048 poplib._MAXLINE = 20480 +imaplib._MAXLINE = 20480 class TimerMixin(object): def __init__(self, *args, **kwargs):