From 53c1fe717a79d33cdaf358267429e3a48472c199 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 26 Jun 2023 09:42:21 +0000 Subject: [PATCH] accounts: Disable SIP for all accounts The integration into our VoIP is slightly broken right now and since I lack the time to fix it right now, I will turn this off for now. Signed-off-by: Michael Tremer --- src/backend/accounts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/accounts.py b/src/backend/accounts.py index 0831a349..89b35595 100644 --- a/src/backend/accounts.py +++ b/src/backend/accounts.py @@ -820,6 +820,7 @@ class Account(LDAPObject): return "postfixMailUser" in self.classes def has_sip(self): + return False # XXX return "sipUser" in self.classes or "sipRoutingObject" in self.classes def is_lwl(self): -- 2.47.3