Commit Graph

1031 Commits (1bd776b0ea449c12809c4494481e16cf9a1acde4)

Author SHA1 Message Date
Olle Johansson c85b71bf72 Documentation updates
18 years ago
Mark Michelson 6d57a8c873 Adding the QUEUENAME variable to the variables set using the setqueuevar option
18 years ago
Tilghman Lesher 6181e386b5 Merged revisions 99341 via svnmerge from
18 years ago
Russell Bryant 12a6e88d8c correct the name of a CLI command for getting available device names
18 years ago
Russell Bryant f20450ea03 Merge changes from team/russell/console_devices
18 years ago
Russell Bryant b995c78c31 Merge changes from team/group/sip-tcptls
18 years ago
Jason Parker 8dc5e09ccb Add several busy detection related defines to menuselect.
18 years ago
Jason Parker 4346a37106 Merged revisions 98991 via svnmerge from
18 years ago
Kevin P. Fleming cd4cc27c93 major reliability and performance improvement in VWMI monitoring for FXO ports (code by markster, me and dbailey)
18 years ago
Terry Wilson 417c6dcb1d Update res_phoneprov to default to setting the SERVER variable to the IP
18 years ago
Russell Bryant 6aaa992301 Merge the changes from issue #10665 from the team/group/sip_session_timers branch.
18 years ago
Tilghman Lesher 799246dae3 Add the "filter" keyword
18 years ago
Jason Parker b875d0df01 Add backupdeleted option to app_voicemail
18 years ago
Kevin P. Fleming 138799091c Add 'auto' signalling mode for Zaptel channels.
18 years ago
Russell Bryant 5c2beee6c3 Add a new global and per-peer option to chan_sip, qualifyfreq, which allows you
18 years ago
Russell Bryant 234b856d17 Merged revisions 97753 via svnmerge from
18 years ago
Tilghman Lesher 857e3412f4 Several manager changes:
18 years ago
Terry Wilson 3570ad103d Added a new module, res_phoneprov, which allows auto-provisioning of phones
18 years ago
Mark Michelson 427f17fd9d Adding the option of specifying a second interface in a member definition for a queue. app_queue
18 years ago
Russell Bryant ef0dd2e184 Merged revisions 96932 via svnmerge from
18 years ago
Russell Bryant d27b5d9648 Add a note about viewing the default set of documentation using the built-in http server
18 years ago
Kevin P. Fleming 9d3ee005b0 another checkpoint... chan_zap can now use the new ZT_ECHOCAN_PARAMS ioctl if it is present, but doesn't parse any supplied parameters yet
18 years ago
Russell Bryant 4e99cc88e2 Merge the main set of changes from team/russell/chan_console.
18 years ago
Mark Michelson 00d848c94e Adding support for storing the queue log entries in a realtime backend.
18 years ago
Tilghman Lesher 27f8b5bc2d Change the abbreviated TON from 'A' to 'V', since 'A' is a legitimate DTMF
18 years ago
Luigi Rizzo 67a704503b Change the name of config file entries for keypad regions
18 years ago
Mark Michelson b489558138 Merging the queue-penalty branch. In short, this allows one to dynamically adjust
18 years ago
Russell Bryant a9616a7153 Add a bit more to the description of the "mwimonitor" option.
18 years ago
Olle Johansson 1d6b192ce0 Adding the ability to specify the To: header in an outbound INVITE
18 years ago
Olle Johansson 17afebc1a6 HUGE improvements to QoS/CoS handling by IgorG
18 years ago
Olle Johansson 00647ff5f7 Update documentation
18 years ago
Olle Johansson d8795b4542 Make more timers settable in SIP so that we can force timeout earlier on non-responsive SIP servers.
18 years ago
Luigi Rizzo 94a6c12129 configuration options related to video support.
18 years ago
Tilghman Lesher 70cd3d0037 Remove use of privacy.conf by the Privacy app.
18 years ago
Jason Parker fc607d5be4 Update documentation for pbx_lua.
18 years ago
Tilghman Lesher ce2f670228 Change cdr_manager to use a "CDR" level, rather than the (overcrowded) "call" level.
18 years ago
Joshua Colp fd4f9d55e8 Remove second prefix line. Only need it documented once in the same file.
18 years ago
Olle Johansson 0cc002a48a Rename "username" to "defaultuser" to match with "defaultip".
18 years ago
Russell Bryant f15be28fb0 Add support for monitoring MWI on FXO lines.
18 years ago
Mark Michelson 18259c2318 Updating sample queues.conf file to show how multiple periodic announcements
18 years ago
Mark Michelson 6b08c442c7 Adding support for the "automixmonitor" dial and queue options.
18 years ago
Kevin P. Fleming 57c2bcca86 Merged revisions 90098 via svnmerge from
18 years ago
Mark Michelson a42259c3ff Adding support for realtime music on hold. The following are the main points:
18 years ago
Russell Bryant df1689e927 Merged revisions 89634 via svnmerge from
18 years ago
Olle Johansson b1c0c67e76 Merged revisions 89624 via svnmerge from
18 years ago
Steve Murphy 4d8932a6dc Merged revisions 89622 via svnmerge from
18 years ago
Olle Johansson 11df6a9119 Rename "limitonpeer" to "counteronpeer" since the call-limit is deprecated.
18 years ago
Steve Murphy 2ec4b57622 Thanks to pnlarsson for noting the spelling error in the cli commands. Also, added some verbage about the new algorithm to CHANGES.
18 years ago
Tilghman Lesher f1de129e5f Merged revisions 89559 via svnmerge from
18 years ago
Olle Johansson 07cb09ad86 - Deprecate "call-limit" in chan_sip. No other channel driver enforces call-limits
18 years ago
Steve Murphy a63f6be669 closes issue #11363; where the pattern _20x. buried in an included context, didn't match 2012; There were a small set of problems to fix: 1. I needed NOT to score patterns unless you are at the end of the data string. 2. Capital N,X,Z and small n,x,z are OK in patterns. I canonicalize the patterns in the trie to caps. 3. When a pattern ends with dot or exclamation, CANMATCH/MATCHMORE should always report this pattern, no matter the length. With this commit, I also supplied the wish of Luigi, where the user can select which pattern matching algorithm to use, the old (legacy) pattern matcher, or the new, trie based matcher. The OLD matcher is the default. A new [general] section variable, extenpatternmatchnew, is added to the extensions.conf, and the example config has it set to false. If true, the new matcher is used. In all other respects, the context/exten structs are the same; the tries and hashtabs are formed, but in the new mode the tries are not used. A new CLI command 'dialplan set extenpatternmatch true/false' is provided to allow switching at run time. I beg users that are forced to return to the old matcher to please report the reason in the bug tracker. Measured the speed benefit of the new matcher against an impossibly large context with 10,000 extensions: the new matcher is 374 times faster.
18 years ago
Russell Bryant f0780d2b47 Merged revisions 89527 via svnmerge from
18 years ago
Mark Michelson f5e5a443cf Changed occurrences of "busy-level" to "busylevel" in sip.conf.sample
18 years ago
Olle Johansson eab6b00904 Add support for application/dtmf SIP INFO dtmf handling. Yep, another
18 years ago
Christian Richter 2a0b16b663 Merged revisions 89173 via svnmerge from
18 years ago
Christian Richter c9b8afb447 Merged revisions 89169 via svnmerge from
18 years ago
Jason Parker a442780a75 Add usbradio.conf.sample from branches/1.4/configs - r84162.
18 years ago
Jason Parker b436362b19 Fix a few potential deadlocks in cdr_sqlite3_custom.
18 years ago
Jason Parker e03cb6a721 Merged revisions 89115 via svnmerge from
18 years ago
Tilghman Lesher 6a9fbeaf68 Merged revisions 89079 via svnmerge from
18 years ago
Tilghman Lesher 37166d9a1a Provide the ability to directly manipulate the TON/NPI bits in the dialstring.
18 years ago
Mark Michelson 0cd3118a62 Adding the queue strategy wrandom
18 years ago
Joshua Colp e9e78af981 Merged revisions 88994 via svnmerge from
18 years ago
Russell Bryant b164d5a675 Add jitterbuffer support to chan_unistim.
18 years ago
Russell Bryant 267683eb19 Merge the code from asterisk/team/group/chan_unistim:
18 years ago
Tilghman Lesher e8c781b215 Add pbx_lua as a method of doing extensions
18 years ago
Mark Michelson cf861b38c7 Added queue strategy "linear". This strategy is useful for those who always wish for their
18 years ago
Mark Michelson 6cd5e1aee6 Remove information about the roundrobin strategy from trunk's queues.conf.sample
18 years ago
Mark Michelson a8cc80e36d Adding the general option "shared_lastcall" to queues so that a member's wrapuptime
18 years ago
Kevin P. Fleming 0c14c47523 resetinterval defaulting to something other than 'never' doesn't seem to accomplish any good and causes problems for plenty of people...
18 years ago
Matthew Fredrickson c5bb538818 Improved comments and organization for zapata.conf (#10904)
18 years ago
Tilghman Lesher 6998be1b3b Document the changes made earlier today to meetme
18 years ago
Mark Michelson cd1e6873aa Merged revisions 86032 via svnmerge from
18 years ago
Jason Parker ed690fc348 Switch dundi to new tos config format.
18 years ago
Joshua Colp fb9855eba1 Merged revisions 85571 via svnmerge from
18 years ago
Mark Michelson fbcd884e1b Allow for the position announcement to be turned off if desired.
18 years ago
Philippe Sultan 510430a6a2 Make the status and priority configurable.
18 years ago
Russell Bryant df30de142c Add a new option for files-based music on hold to ensure that the sort order
18 years ago
Dwayne M. Hubbard 0f53904918 merged jcmoore's patch for configurable SDP origin-field username and session field, closes issue# 10795
18 years ago
Jason Parker 0c8381a1f5 (closes issue #10739)
18 years ago
Jason Parker 9a5f7c5764 (closes issue #10755)
18 years ago
Jason Parker a9c2f441d3 Merged revisions 82751 via svnmerge from
18 years ago
Jason Parker cb8c4122bc Fix the sample redirect to point to a valid file in the Asterisk GUI.
18 years ago
Russell Bryant da5930c234 Merged revisions 82435 via svnmerge from
18 years ago
Jason Parker 4baba7c951 Add support in chan_skinny for sending RTP directly to the endpoints.
18 years ago
Joshua Colp 5460e72015 Add setvar support to chan_zap. Just like you can in chan_sip and chan_iax2 you can now use it with zaptel channels. (done while in Montreal at the Asterisk bootcamp!)
18 years ago
Russell Bryant 1282de797d Various code and documentation cleanups for res_config_sqlite
18 years ago
Joshua Colp 9bd4b3e353 Lil' bit more documentation to keep folks happy.
18 years ago
Joshua Colp 9642d93117 (closes issue #9433)
18 years ago
Mark Michelson 6ed072cb5a Merged revisions 82091 via svnmerge from
18 years ago
Mark Michelson 144b090ddb Merged revisions 81886 via svnmerge from
18 years ago
Russell Bryant 235417dbd0 Fix the syntax of declaring a hint with a name to be compatible with trunk
18 years ago
Jason Parker a087396798 Merged revisions 81453 via svnmerge from
18 years ago
Joshua Colp 944352251d (closes issue #10633)
18 years ago
Mark Michelson 54170b94e0 Added note to sample queues.conf file to line up with most recent change regarding setinterfacevar.
18 years ago
Russell Bryant 4b2095bdd3 Merged revisions 81379 via svnmerge from
18 years ago
Tilghman Lesher f5a14167f3 Support better rotation of log files to be more like system logging (closes issue #10398)
18 years ago
Russell Bryant 01490ecd70 Merged revisions 81226 via svnmerge from
18 years ago
Joshua Colp 7c760f67c3 (closes issue #10569)
18 years ago
Jason Parker 31c82ec1e0 Merged revisions 80130 via svnmerge from
18 years ago