Changes between Version 4 and Version 5 of freeswitch
- Timestamp:
- Dec 5, 2012, 3:47:19 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
freeswitch
v4 v5 1 [[PageOutline]] 1 2 = Freeswitch Details = 2 3 … … 10 11 * Created symlink /usr/storage => /var/lib/freeswitch/storage (for voicemail recording) 11 12 12 == BasicConfiguration ==13 == Incoming calls Configuration == 13 14 14 15 There are three directories where incoming calls are handled: … … 19 20 * /etc/freeswitch/autoload_configs/ivr*: these files define interactive voice response menues (ivr_mfpl.xml). This is how you define a automated attendent with a menu of options. 20 21 22 == SIP account Configuration 23 21 24 There is one directory for sip / client configuration: 22 25 23 * /etc/freeswitch/directory/mfpl: copy existing files to create new user accounts. When configuring your SIP client, you will need: {{{username@talk.mayfirst.org}}} plus your password. 26 * /etc/freeswitch/directory/mfpl - each file in this directory represents one user account. If you want to add a new user account, copy existing file to a new name. You'll need to change the username, password, and all instances of the four digit number starting with 20 (it's used as your numeric extension and voicemail box). To find the next four digit number, you can run: 27 28 {{{ 29 grep number-alias /etc/freeswitch/directory/mfpl/* | egrep -o "[0-9]+" | sort -n 30 }}} 31 32 When configuring your SIP client, you will need: {{{username@talk.mayfirst.org}}} plus your password. 24 33 25 34 == Tips ==