From 50f8360d4633d87920d702c809ea0369be5d6706 Mon Sep 17 00:00:00 2001 From: strixaluco Date: Wed, 6 Jul 2016 11:38:20 +0800 Subject: [PATCH] [minor] email_account.js spelling fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GMail → Gmail allows → allow --- frappe/email/doctype/email_account/email_account.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frappe/email/doctype/email_account/email_account.js b/frappe/email/doctype/email_account/email_account.js index 7333f243f4..a4bbbd72b7 100644 --- a/frappe/email/doctype/email_account/email_account.js +++ b/frappe/email/doctype/email_account/email_account.js @@ -1,5 +1,5 @@ email_defaults = { - "GMail": { + "Gmail": { "email_server": "pop.gmail.com", "use_ssl": 1, "enable_outgoing": 1, @@ -34,7 +34,7 @@ email_defaults = { }; email_defaults_imap = { - "GMail": { + "Gmail": { "email_server": "imap.gmail.com" }, "Outlook.com": { @@ -97,9 +97,9 @@ frappe.ui.form.on("Email Account", { }, show_gmail_message_for_less_secure_apps: function(frm) { frm.dashboard.reset(); - if(frm.doc.service==="GMail") { - frm.dashboard.set_headline_alert('GMail will only work if you allows access for Less Secure \ - Apps in GMail Settings. Read this for details'); } },