diff --git a/src/sip/sipcall.cpp b/src/sip/sipcall.cpp
index 5bd8c4c8c953354ab4c548801277871726231e64..a86e62a68e6bd1863c1227e4aae7101542bc75cb 100644
--- a/src/sip/sipcall.cpp
+++ b/src/sip/sipcall.cpp
@@ -84,14 +84,6 @@ const char* const SIPCall::LINK_TYPE = SIPAccount::ACCOUNT_TYPE;
 static void
 dtmfSend(SIPCall &call, char code, const std::string &dtmf)
 {
-    if (dtmf == SIPAccount::OVERRTP_STR) {
-        RING_WARN("[call:%s] DTMF over RTP not supported yet", call.getCallId().c_str());
-        return;
-    } else if (dtmf != SIPAccount::SIPINFO_STR) {
-        RING_WARN("[call:%s] Unknown DTMF type %s, defaulting to %s instead",
-                  call.getCallId().c_str(), dtmf.c_str(), SIPAccount::SIPINFO_STR);
-    } // else : dtmf == SIPINFO
-
     int duration = Manager::instance().voipPreferences.getPulseLength();
     char dtmf_body[1000];