]> git.ipfire.org Git - ipfire.org.git/commitdiff
accounts: Disable SIP for all accounts
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 26 Jun 2023 09:42:21 +0000 (09:42 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 26 Jun 2023 09:42:21 +0000 (09:42 +0000)
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 <michael.tremer@ipfire.org>
src/backend/accounts.py

index 0831a349b9ae3a62e45b1034422d8c6f184fc8d6..89b35595531c7357d9c3162a06d74e34d837d783 100644 (file)
@@ -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):