Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F7312453
settings.py
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
settings.py
View Options
"""
SIP SIMPLE settings.
Definition of general (non-account related) settings.
"""
import
os
from
sipsimple
import
__version__
from
sipsimple.configuration
import
Setting
,
SettingsGroup
,
SettingsObject
from
sipsimple.configuration.datatypes
import
AbsolutePath
,
ContentTypeList
,
DataPath
,
ImageDepth
,
LocalIPAddress
,
NonNegativeInteger
,
Port
,
PortRange
,
Resolution
,
SampleRate
,
TLSProtocol
,
Transports
__all__
=
[
'SIPSimpleSettings'
]
class
AudioSettings
(
SettingsGroup
):
input_device
=
Setting
(
type
=
str
,
default
=
None
,
nillable
=
True
)
output_device
=
Setting
(
type
=
str
,
default
=
None
,
nillable
=
True
)
echo_delay
=
Setting
(
type
=
NonNegativeInteger
,
default
=
200
)
recordings_directory
=
Setting
(
type
=
DataPath
,
default
=
DataPath
(
'history'
))
sample_rate
=
Setting
(
type
=
SampleRate
,
default
=
32
)
playback_dtmf
=
Setting
(
type
=
bool
,
default
=
True
)
class
ChatSettings
(
SettingsGroup
):
message_received_sound
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
message_sent_sound
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
history_directory
=
Setting
(
type
=
DataPath
,
default
=
DataPath
(
'history'
))
accept_types
=
Setting
(
type
=
ContentTypeList
,
default
=
(
'message/cpim'
,
'text/*'
))
accept_wrapped_types
=
Setting
(
type
=
ContentTypeList
,
default
=
(
'*'
,))
class
DesktopSharingSettings
(
SettingsGroup
):
depth
=
Setting
(
type
=
ImageDepth
,
default
=
8
)
resolution
=
Setting
(
type
=
Resolution
,
default
=
Resolution
(
width
=
1024
,
height
=
768
))
client_command
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
server_command
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
class
FileTransferSettings
(
SettingsGroup
):
directory
=
Setting
(
type
=
DataPath
,
default
=
DataPath
(
'file_transfers'
))
file_received_sound
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
file_sent_sound
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
class
LoggingSettings
(
SettingsGroup
):
directory
=
Setting
(
type
=
DataPath
,
default
=
DataPath
(
'logs'
))
trace_sip
=
Setting
(
type
=
bool
,
default
=
False
)
trace_pjsip
=
Setting
(
type
=
bool
,
default
=
False
)
trace_msrp
=
Setting
(
type
=
bool
,
default
=
False
)
trace_xcap
=
Setting
(
type
=
bool
,
default
=
False
)
pjsip_level
=
Setting
(
type
=
NonNegativeInteger
,
default
=
5
)
class
RingtoneSettings
(
SettingsGroup
):
audio_inbound
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
audio_outbound
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
chat_inbound
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
chat_outbound
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
file_transfer_inbound
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
file_transfer_outbound
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
desktop_sharing_inbound
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
desktop_sharing_outbound
=
Setting
(
type
=
AbsolutePath
,
default
=
None
,
nillable
=
True
)
class
RTPSettings
(
SettingsGroup
):
port_range
=
Setting
(
type
=
PortRange
,
default
=
PortRange
(
50000
,
50400
))
class
SIPSettings
(
SettingsGroup
):
local_udp_port
=
Setting
(
type
=
Port
,
default
=
5060
)
local_tcp_port
=
Setting
(
type
=
Port
,
default
=
5060
)
local_tls_port
=
Setting
(
type
=
Port
,
default
=
5061
)
transports
=
Setting
(
type
=
Transports
,
default
=
(
'tls'
,
'tcp'
,
'udp'
))
class
TLSSettings
(
SettingsGroup
):
ca_list_file
=
Setting
(
type
=
DataPath
,
default
=
DataPath
(
'tls/ca.crt'
))
certificate_file
=
Setting
(
type
=
DataPath
,
default
=
None
,
nillable
=
True
)
private_key_file
=
Setting
(
type
=
DataPath
,
default
=
None
,
nillable
=
True
)
protocol
=
Setting
(
type
=
TLSProtocol
,
default
=
'TLSv1'
)
verify_server
=
Setting
(
type
=
bool
,
default
=
True
)
timeout
=
Setting
(
type
=
NonNegativeInteger
,
default
=
1000
)
class
SIPSimpleSettings
(
SettingsObject
):
__section__
=
'Global'
__id__
=
'SIPSimple'
data_directory
=
Setting
(
type
=
AbsolutePath
,
default
=
os
.
path
.
expanduser
(
'~/.sipclient'
))
default_account
=
Setting
(
type
=
str
,
default
=
'bonjour'
,
nillable
=
True
)
local_ip
=
Setting
(
type
=
LocalIPAddress
,
default
=
LocalIPAddress
())
user_agent
=
Setting
(
type
=
str
,
default
=
'sipsimple
%s
'
%
__version__
)
audio
=
AudioSettings
desktop_sharing
=
DesktopSharingSettings
file_transfer
=
FileTransferSettings
logging
=
LoggingSettings
ringtone
=
RingtoneSettings
rtp
=
RTPSettings
sip
=
SIPSettings
tls
=
TLSSettings
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Feb 1, 6:15 AM (1 d, 11 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3488844
Default Alt Text
settings.py (4 KB)
Attached To
Mode
rPYNSIPSIMPLE python3-sipsimple
Attached
Detach File
Event Timeline
Log In to Comment