updated recipients email in communication
diff --git a/selling/doctype/lead/lead.js b/selling/doctype/lead/lead.js
index 0c5bf87..e4b3a7d 100644
--- a/selling/doctype/lead/lead.js
+++ b/selling/doctype/lead/lead.js
@@ -71,7 +71,7 @@
 		list: wn.model.get("Communication", {"lead": doc.name}),
 		parent: cur_frm.fields_dict.communication_html.wrapper,
 		doc: doc,
-		email: doc.email_id
+		recipients: doc.email_id
 	})
 }
 
diff --git a/selling/doctype/opportunity/opportunity.js b/selling/doctype/opportunity/opportunity.js
index 2bb41b2..2b530ff 100644
--- a/selling/doctype/opportunity/opportunity.js
+++ b/selling/doctype/opportunity/opportunity.js
@@ -51,7 +51,7 @@
 			list: wn.model.get("Communication", {"opportunity": doc.name}),
 			parent: cur_frm.fields_dict.communication_html.wrapper,
 			doc: doc,
-			email: doc.contact_email
+			recipients: doc.contact_email
 		});
 	}
 	
diff --git a/selling/doctype/quotation/quotation.js b/selling/doctype/quotation/quotation.js
index 1b03781..7199132 100644
--- a/selling/doctype/quotation/quotation.js
+++ b/selling/doctype/quotation/quotation.js
@@ -107,7 +107,7 @@
 			list: wn.model.get("Communication", {"quotation": doc.name}),
 			parent: cur_frm.fields_dict.communication_html.wrapper,
 			doc: doc,
-			email: doc.contact_email
+			recipients: doc.contact_email
 		});		
 	}
 }
diff --git a/startup/startup.py b/startup/startup.py
index 828239e..15ea491 100644
--- a/startup/startup.py
+++ b/startup/startup.py
@@ -48,7 +48,7 @@
 	incomplete_todos = webnotes.conn.sql("""\
 		SELECT COUNT(*) FROM `tabToDo`
 		WHERE IFNULL(checked, 0) = 0
-		AND owner = %s""", webnotes.session.get('user'))
+		AND (owner = %s or assigned_by=%s)""", (webnotes.session.user, webnotes.session.user))
 	return incomplete_todos and cint(incomplete_todos[0][0]) or 0
 
 def get_todays_events():
diff --git a/utilities/doctype/contact/contact.js b/utilities/doctype/contact/contact.js
index 3876ca2..97fd8a6 100644
--- a/utilities/doctype/contact/contact.js
+++ b/utilities/doctype/contact/contact.js
@@ -27,7 +27,7 @@
 		list: wn.model.get("Communication", {"contact": doc.name}),
 		parent: cur_frm.fields_dict.communication_html.wrapper,
 		doc: doc,
-		email: doc.email_id
+		recipients: doc.email_id
 	})	
 }