{% if owner_email or owner_phone %}
Owner (always allowed in Default mode):
{% if owner_email %}
{{ owner_email }}
{% endif %} {% if owner_phone %}
{{ owner_phone }}
{% endif %}
{% endif %} {% if pending_invites %}
Pending Invitations:
{% for invite in pending_invites %}
{% if invite.channel == "email" %} {% else %} {% endif %} {{ invite.address }}
Pending
{% if invite.allow_inbound %} Will receive from contact {% else %} Won't receive {% endif %}
{% if invite.allow_outbound %} Will send to contact {% else %} Won't send {% endif %}
{% endfor %}
{% endif %} {% if allowlist_entries %}
Allowed Contacts:
{% for entry in allowlist_entries %}
{% if entry.channel == "email" %} {% else %} {% endif %} {{ entry.address }}
{% if entry.allow_inbound %} Receives from contact {% else %} Receives from contact {% endif %}
{% if entry.allow_outbound %} Sends to contact {% else %} Sends to contact {% endif %}
{% endfor %} {% endif %} {% if not allowlist_entries and not pending_invites %}
No additional contacts configured yet.
{% endif %}