#
# SIP accounts - one account per line -- sample configuration
#
# Displayname <sip:user:password@domain:port;uri-params>;addr-params
#
#  uri-params:
#    ;transport={udp,tcp,tls}
#
#  addr-params:
#    ;100rel={yes,no,required}  # default: no
#    ;answermode={manual,early,auto,early-audio,early-video}
#    ;answerdelay=0
#    ;audio_codecs=opus/48000/2,pcma,...
#    ;audio_source=alsa,default
#    ;audio_player=alsa,default
#    ;autelev_pt=101
#    ;sip_autoanswer={yes, no}
#    ;sip_autoanswer_beep={off, on, local}
#    ;dtmfmode={rtpevent, info, auto}
#    ;auth_user=username
#    ;auth_pass=password
#    ;call_transfer=no
#    ;catchall={yes, no}  # default: no
#    ;cert=cert.pem
#    ;mediaenc={srtp,srtp-mand,srtp-mandf,dtls_srtp,zrtp}
#    ;medianat={stun,turn,ice}
#    ;natpinhole={yes, no}  # default: no
#    ;mwi=no
#    ;outbound="sip:primary.example.com;transport=tcp"
#    ;outbound2=sip:secondary.example.com
#    ;ptime={10,20,30,40,...}
#    ;regint=3600
#    ;fbregint=120
#    ;prio={0,1,2,3,...}
#    ;rwait=90
#    ;pubint=0 (publishing off)
#    ;regq=0.5
#    ;rtcp_mux={yes, no}  # default: no
#    ;sipnat={outbound}
#    ;sip_autoredirect={yes, no}  # default: no
#    ;stunuser=STUN/TURN/ICE-username
#    ;stunpass=STUN/TURN/ICE-password
#    ;stunserver=stun:[user:pass]@host[:port]  # see RFC 3986: Use of the format "user:password" in the userinfo field is deprecated.
#    ;tcpsrcport=6060
#    ;inreq_allowed={yes, no}  # default: yes
#    ;uas_user=username
#    ;uas_pass=password
#    ;video_codecs=h264,vp8,...
#
# Examples:
#
#  <sip:user@example.com>;auth_pass=secret
#  <sip:user@example.com;transport=tcp>;auth_pass=secret
#  <sip:user@192.0.2.4;transport=tcp>;auth_pass=secret
#  <sip:user@[2001:db8:0:16:216:6fff:fe91:614c]:5070;transport=tcp>;auth_pass=secret
#
#
# A very basic example
#
<sip:user@iptel.org>;auth_pass=PASSWORD

# A registrar-less account
<sip:alice@office>;regint=0

#
# Use SIP Outbound over TCP, with ICE for Media NAT Traversal, and DTLS-SRTP for encryption
#
<sip:user@example.com>;sipnat=outbound;outbound="sip:example.com;transport=tcp";medianat=ice;mediaenc=dtls_srtp;auth_pass=pass


#
# Use ICE for Media NAT Traversal, using a specific STUN-server
# See RFC 3986: use of the format "user:password" in the userinfo field is deprecated.
#
<sip:user@example.com>;medianat=ice;stunserver="stun:username:password@stunserver.org";auth_pass=pass


#
# Force audio-codec 'opus' and video-codec 'vp8'
#
<sip:user@example.com>;audio_codecs=opus/48000/2;video_codecs=vp8;auth_pass=pass


# ... more examples can be added here ...
