diff --git a/src/Call.cpp b/src/Call.cpp
index b23e67f1a93c91e6c8a75a4a90749fe7bed3bfe8..fe36a4f16938a2050fc894b5912112bfa5e72040 100644
--- a/src/Call.cpp
+++ b/src/Call.cpp
@@ -673,7 +673,7 @@ void Call::backspaceItemText()
 
 void Call::changeCurrentState(call_state newState)
 {
-   qDebug() << "Call state changed to: " << newState;
+   //qDebug() << "Call state changed to: " << newState;
    currentState = newState;
 
    emit changed();
diff --git a/src/CallModel.hpp b/src/CallModel.hpp
index e4dfffc3591d79490e3cf80d066c3249a9f1c7e1..56c625c094044cb0baa495b94bdbaefa2adb7a40 100644
--- a/src/CallModel.hpp
+++ b/src/CallModel.hpp
@@ -73,10 +73,8 @@ template<typename CallWidget, typename Index> bool CallModel<CallWidget,Index>::
    if (!historyInit) {
       ConfigurationManagerInterface& configurationManager = ConfigurationManagerInterfaceSingleton::getInstance();
       QStringList historyMap = configurationManager.getHistory().value();
-      qDebug() << "\n\n\n\n\n\n\n\nCall History = " ;
       foreach (QString historyCallId, historyMap) {
          QStringList param = historyCallId.split("|");
-         qDebug() << "Param count" << param.size();
          if (param.count() <= 10) {
             //If this ever change, look at the gnome client
             QString history_state = param[0];
diff --git a/src/sflphone_const.h b/src/sflphone_const.h
index da143bc4db5d55f77be791a99dce97c42d8f92c4..71b65a2837c5a8c67a9d6988cd092b2dda3ff514 100644
--- a/src/sflphone_const.h
+++ b/src/sflphone_const.h
@@ -267,9 +267,7 @@
 #define TLS_NEGOTIATION_TIMEOUT_MSEC        "TLS.negotiationTimemoutMsec"
 
 #define ACCOUNT_ID                         "Account.id"
-#define ACCOUNT_PASSWORD                   "password"
 #define ACCOUNT_AUTHENTICATION_USERNAME    "authenticationUsername"
-#define ACCOUNT_REALM                      "realm"
 #define ACCOUNT_KEY_EXCHANGE               "SRTP.keyExchange"
 #define ACCOUNT_SRTP_ENABLED               "SRTP.enable"
 #define ACCOUNT_SRTP_RTP_FALLBACK          "SRTP.rtpFallback"