Skip to content

Call-In

The call-in module provides a user-friendly solution that not only allows participants to connect via telephone but also displays the necessary phone number, ensuring a straightforward and accessible joining process.

Configuration

The section in the configuration file is called call_in.

Field Type Required Default value Description
tel string yes - The Phone number which will be displayed to the user
enable_phone_mapping bool yes - Enable the mapping of user names to their phone number
mask_unmapped_numbers bool no true Mask unmapped phone numbers to protect privacy
default_country_code string yes - The default country code as Alpha-2 code (ISO 3166)

Phone number mapping and masking

When enable_phone_mapping is enabled, phone numbers of registered users are mapped to their display names. For guests, or when enable_phone_mapping is disabled, the phone numbers of call-in participants are displayed. In these cases, mask_unmapped_numbers controls whether the displayed phone number is masked so only the first and last digits are visible (e.g., +491***123) to protect participants' privacy.

Examples

Example with phone mapping

Enable the mapping of user names to their phone number. This requires the OIDC provider to have a phone number field configured for their users.

[call_in]
tel="03012345678"
enable_phone_mapping=true
mask_unmapped_numbers=true
default_country_code="DE"

Example without phone mapping

[call_in]
tel="03012345678"
enable_phone_mapping=false
mask_unmapped_numbers=true
default_country_code="DE"