Skip to content

Contacts#

Default contacts.xml#

contacts.xml
1
2
3
4
<?xml version="1.0" encoding="utf-8"?>
<config version="1.2.0">
  <contacts>
  </contacts>

Commented File-structure#

contacts.xml
<?xml version="1.0" encoding="utf-8"?>
<config version="1.2.0">
  <!-- List of all local contacts and contacts with extensions
       type: list -->
  <contacts>
    <!-- a local contact
         parameters:
           uuid: primary key
               type: string -->
    <contact uuid="47297d7a-bb53-4d65-b77f-65fb584cc8f5">
      <!-- The name of the contact
           type: string -->
      <name>Name of Contact</name>
      <!-- A phone number entry
           type: string -->
      <number>0123456789</number>
      <extensionOf></extensionOf>
      <!-- The contact ist starred, if it is a favorite contact
          type: boolean -->
      <starred>true</starred>
      <!-- Whether or not to issue a sip-subscription for the contact          
           type: boolean -->
      <dialogSubscription>true</dialogSubscription>
      <!-- Whether or not to signal presence states of the contact         
           type: boolean -->
      <presenceSubscription>true</presenceSubscription>
      <!-- Type of Number (like home, work, mobile, etc)
           type: string -->
      <phoneNumberType>home</phoneNumberType>
      <!-- Photo for the contact
           type: string -->
      <uri>http://example.org/contact_icon_user1.jpg</uri>
      <customNumberLabel></customNumberLabel>
      <videoFeed></videoFeed>
    </contact>
  </contacts>