• Api Documentation

Provisioning configuration keys

This document lists the supported sections and keys of the ini-style linphonerc configuration file.
This configuration can be served through https in order to remotely configure a linphone-sdk based application, see @Linphone.Core.SetProvisioningUri(). The Flexisip Account Manager has built-in support for remote provisioning Linphone or linphone-sdk based client applications.

@warning this page is under construction, not all section and keys are yet referenced.

SIP accounts - section [proxy_N]

The proxy_N sections represents SIP accounts. Their name inherits from the legacy object name ProxyConfig in liblinphone, that is now superseeded by by the Account and AccountParams object, but the linphonerc section name was left unchanged to preserve configuration file compatibility.

SIP account parameters
KeyValue typePossible valuesDefault valueDescription
reg_identitystringSIP address""The SIP address of the user, as to be sent in the From header of the REGISTER request
reg_proxystringSIP address""The address of the SIP server
reg_routestringSIP address""An optional SIP address to include as a route
reg_sendregisterboolean0 or 11Whether to send a REGISTER request
reg_expiresintegerany strictly positive integer3600The expiry of the REGISTER, in seconds
realmstringany string""The authentication realm of the SIP service, used to match with authentication information

Remote contact directories - section [remote_contact_directory_N]

Their role is not to present a permanent list of contacts to the user, but rather return, per a search request, a list of contacts that match the request.
The search request is transmitted through the protocol (LDAP or CardDav), and executed on the server. The server's response is analysed and search results are represented as a list of Friend objects.
LDAP connection configuration has it is own password key, and it is not relying at all on the AuthInfo objects, unlike all other liblinphone initiated connections.
The table below lists all remote contact directory parameters one may find under section [remote_contact_directory_N] of a Linphone RC file.

Remote Contact directory parameters
KeyValue typePossible valuesDefault valueDescription
enabledinteger0 or 11Whether the remote contact directory is enabled
typestringcarddav or ldap""The type (protocol) used by the remote contact directory
uristringa URI""The server URI, typically ldap://example.org or https://carddav.example.org
min_charactersintegerany positive integer or 03The minimum number of characters needed to submit the request
results_limitintegerany positive integer or 00Limit on the number of returned results. 0 means returns all results
timeoutintegerany positive integer or 05Request timeout in seconds
delayintegerany positive integer or 0500Delay in milliseconds before submitting the request
carddav_fields_for_user_inputstring""List of comma separated VCard fields to match with the user input
carddav_fields_for_domainstring""List of comma separated VCard fields to match for SIP domain
carddav_use_exact_match_policyinteger0 or 10Whether the match must be exact or approximate (ignoring accents, case, ...)
ldap_bind_dnstring""LDAP bind distinguished name
ldap_auth_methodinteger0: anonymous1LDAP authentication method
1: simple
ldap_base_objectstring""LDAP base object
ldap_name_attributestring"sn"LDAP attribute(s) to browse for contact names
ldap_sip_attributestring"mobile,telephonenumber,homephone,sn"LDAP attribute(s) to use to create SIP URIs associated with this remote contact directory
ldap_sip_domainstring""A SIP domain to filter results
ldap_filterstring"(sn=%s)"A LDAP search filter

Authentication - section [auth_info_N]

The auth_info sections provide authentication information to use for SIP as well as http services (typically remote provisioning, cardDav requests). They need to be supplied in the form of a AuthInfo object, whose configuration storage representation is of [auth_info_N] sections, numbered continuously from 0.
The table below lists all remote contact directory parameters one may find under section [auth_info_N] of a Linphone RC file.

Authentication information parameters
KeyValue typePossible valuesDefault valueDescription
usernamestringanything""The username to use for authenticating
domainstringanything""A SIP domain to which the use of thie @Linphone.AuthInfo is scoped to
passwdstringanything""The clear-text password
realmstringanything""The realm advertised by the server, it may be left empty if unknown
ha1stringanything""A digest HA1 of the password
algorithmstringMD5MD5The digest algorithm
SHA-256
authorization_serverstringany HTTP/HTTPS URI""An OAUTH/OpenID connect authorization server URI to use to autheticate
token_endpointstringany HTTP/HTTPS URI""URI of endpoint to refresh tokens
client_idstringanything""OAUTH client ID
client_secretstringanything""OAUTH client secret
In This Article
Back to top Generated by DocFX