diff --git a/src/dbus/configurationmanager.cpp b/src/dbus/configurationmanager.cpp
index 290a8187d1aee30a8ee288dd5a718d1081e6e702..e2caf05e47f3633afbea0e167579ee5b4cbf4ebd 100644
--- a/src/dbus/configurationmanager.cpp
+++ b/src/dbus/configurationmanager.cpp
@@ -36,7 +36,6 @@ const char* ConfigurationManager::SERVER_PATH = "/org/sflphone/SFLphone/Configur
 	std::map< std::string, std::string > 
 ConfigurationManager::getAccountDetails( const std::string& accountID )
 {
-	_debug("ConfigurationManager::getAccountDetails received\n");
 	return Manager::instance().getAccountDetails(accountID);
 }
 
diff --git a/src/managerimpl.cpp b/src/managerimpl.cpp
index 7149082b2d1a1a16522ff6d0f9a2a72ff16eff4a..f8ea5fe7287bb50815978f15920f6133ba9beee5 100644
--- a/src/managerimpl.cpp
+++ b/src/managerimpl.cpp
@@ -1975,13 +1975,6 @@ std::map< std::string, std::string > ManagerImpl::getAccountDetails(const Accoun
   a.insert( std::pair<std::string, std::string>( HOSTNAME, getConfigString(accountID, HOSTNAME) ) );
   a.insert( std::pair<std::string, std::string>( CONFIG_ACCOUNT_MAILBOX, getConfigString(accountID, CONFIG_ACCOUNT_MAILBOX)) );
   
-  // SIP SPECIFIC
-  if( accountType == "SIP")
-  {
-    a.insert( std::pair<std::string, std::string>( SIP_STUN_SERVER, getConfigString(accountID, SIP_STUN_SERVER) ) );
-    a.insert( std::pair<std::string, std::string>( SIP_USE_STUN, getConfigString(accountID, SIP_USE_STUN) == "1" ? "TRUE": "FALSE"));
-  }
-
   return a;
 }