You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Introduction

Index:

  • Introduction
  • Syntax
  • Example
  • Alternatives to provisioning the internal directory



Introduction

The directory settings XML tag (<tbook> or <phone-book) contains a list of contact entries to be provisioned into the internal phone directory.

Syntax

Note:

The tags <tbook> and <phone-book> are equivalent: These XML tags can be used either

  • inside the <settings> tag:
    <tbook complete="true">
      <item context="<outgoing_SIP_identity>" type="<contact_category>" index="<contact_index(0)>">
       <name><contact_name</name>
       <number><contact_name></number>
      </item>
      ...
      <item context="<outgoing_SIP_identity>" type="<contact_category>" index="<contact_index(n)>">
       <name><contact_name</name>
       <number><contact_name></number>
       <number_type>sip</number_type>
     </item>
    </tbook>
  • or as an individual XML file whose URL is listed inside <setting-files> tag
    <?xml version="1.0" encoding="utf-8"?>
     <tbook complete="true">
      <item context="<outgoing_SIP_identity>" type="<contact_category>" index="<contact_index(0)>">
       <name><contact_name</name>
       <number><contact_name></number>
      </item>
      ...
      <item context="<outgoing_SIP_identity>" type="<contact_category>" index="<contact_index(n)>">
       <name><contact_name</name>
       <number><contact_name></number>
       <number_type>sip</number_type>
      </item>
    </tbook>
Panel name


  • No labels