From 7423e4187fd8bb43c1adda9ce4468c51d16df5b5 Mon Sep 17 00:00:00 2001 From: Diptanil Saha Date: Tue, 29 Apr 2025 12:13:12 +0530 Subject: [PATCH] fix: remove invalid email account creation (#47318) --- erpnext/setup/setup_wizard/operations/install_fixtures.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/erpnext/setup/setup_wizard/operations/install_fixtures.py b/erpnext/setup/setup_wizard/operations/install_fixtures.py index 84cf05f128e..7c62a425357 100644 --- a/erpnext/setup/setup_wizard/operations/install_fixtures.py +++ b/erpnext/setup/setup_wizard/operations/install_fixtures.py @@ -273,8 +273,6 @@ def install(country=None): {"doctype": "Issue Priority", "name": _("Low")}, {"doctype": "Issue Priority", "name": _("Medium")}, {"doctype": "Issue Priority", "name": _("High")}, - {"doctype": "Email Account", "email_id": "sales@example.com", "append_to": "Opportunity"}, - {"doctype": "Email Account", "email_id": "support@example.com", "append_to": "Issue"}, {"doctype": "Party Type", "party_type": "Customer", "account_type": "Receivable"}, {"doctype": "Party Type", "party_type": "Supplier", "account_type": "Payable"}, {"doctype": "Party Type", "party_type": "Employee", "account_type": "Payable"},