From b37a50336b3e05d50b0fbee39b3cc3f91957bb7c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 7 Nov 2022 08:39:22 +0530 Subject: [PATCH] also recognize @free.kindle.com in addition to @kindle.com --- 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 bab33c28bd..68504245ec 100644 --- a/src/calibre/gui2/email.py +++ b/src/calibre/gui2/email.py @@ -148,7 +148,7 @@ gui_sendmail = Sendmail() def is_for_kindle(to): - return isinstance(to, str) and ('@kindle.com' in to or '@kindle.cn' in to) + return isinstance(to, str) and ('@kindle.com' in to or '@kindle.cn' in to or '@free.kindle.com' in to or '@free.kindle.cn' in to) def send_mails(jobnames, callback, attachments, to_s, subjects,