Index: libs/sipwrapper/src/phapi/PhApiWrapper.cpp
===================================================================
--- libs/sipwrapper/src/phapi/PhApiWrapper.cpp	(revision 269)
+++ libs/sipwrapper/src/phapi/PhApiWrapper.cpp	(revision 270)
@@ -1045,5 +1045,7 @@
 		return;
 	
-	std::string from = "2001@voip.mbdsys.com";//info->u.remoteUri;
+	std::string from;
+	if(info->remoteUri)
+		from = info->remoteUri;
 	
 	switch (info->event)
@@ -1079,5 +1081,5 @@
 			
 		case phCALLOK:
-			printf("CALLOK cid=%d uri=%s\n", cid, from.c_str());
+			phoneCallStateChangedSignal(cid, EnumPhoneCallState::PhoneCallStateTalking, from);
 			break;
 			
