From 0976c91256b69f7a2309d68ecb94b8efdd345754 Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Mon, 28 Apr 2014 10:49:03 +0530 Subject: [PATCH] Enter valid default email address (for Administrator and Guest) --- frappe/utils/install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/utils/install.py b/frappe/utils/install.py index 98893d4780..b3e5c83188 100644 --- a/frappe/utils/install.py +++ b/frappe/utils/install.py @@ -17,9 +17,9 @@ def after_install(): # core users / roles install_docs = [ {'doctype':'User', 'name':'Administrator', 'first_name':'Administrator', - 'email':'admin@localhost', 'enabled':1}, + 'email':'admin@example.com', 'enabled':1}, {'doctype':'User', 'name':'Guest', 'first_name':'Guest', - 'email':'guest@localhost', 'enabled':1}, + 'email':'guest@example.com', 'enabled':1}, {'doctype':'UserRole', 'parent': 'Administrator', 'role': 'Administrator', 'parenttype':'User', 'parentfield':'user_roles'}, {'doctype':'UserRole', 'parent': 'Guest', 'role': 'Guest',