From 3c05bf2ec29da51cc9f619a3645130a80b2760e7 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 6 Sep 2016 22:54:13 +0530 Subject: [PATCH] Increase email send timeout to 25min. See #1620732 (Feature: Reconfigurable Email Timeout) --- src/calibre/gui2/email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/email.py b/src/calibre/gui2/email.py index 8514720818..d0ef891e9b 100644 --- a/src/calibre/gui2/email.py +++ b/src/calibre/gui2/email.py @@ -52,7 +52,7 @@ class Worker(Thread): class Sendmail(object): MAX_RETRIES = 1 - TIMEOUT = 15 * 60 # seconds + TIMEOUT = 25 * 60 # seconds def __init__(self): self.calculate_rate_limit()