CHANGES 237 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899
  1. ==============================================================================
  2. ===
  3. === This file documents the new and/or enhanced functionality added in
  4. === the Asterisk versions listed below. This file does NOT include
  5. === changes in behavior that would not be backwards compatible with
  6. === previous versions; for that information see the UPGRADE.txt file
  7. === and the other UPGRADE files for older releases.
  8. ===
  9. ==============================================================================
  10. ------------------------------------------------------------------------------
  11. --- Functionality changes from Asterisk 13 to Asterisk 14 --------------------
  12. ------------------------------------------------------------------------------
  13. Applications
  14. ------------------
  15. ConfBridge
  16. ------------------
  17. * Added the ability to pass options to MixMonitor when recording is used with
  18. ConfBridge. This includes the addition of the following configuration
  19. parameters for the 'bridge' object:
  20. - record_file_timestamp: whether or not to append the start time to the
  21. recorded file name
  22. - record_options: the options to pass to the MixMonitor application
  23. - record_command: a command to execute when recording is finished
  24. Note that these options may also be with the CONFBRIDGE function.
  25. SMS
  26. ------------------
  27. * Added the 'n' option, which prevents the SMS from being written to the log
  28. file. This is needed for those countries with privacy laws that require
  29. providers to not log SMS content.
  30. Channel Drivers
  31. ------------------
  32. chan_dahdi
  33. ------------------
  34. * The CALLERID(ani2) value for incoming calls is now populated in featdmf
  35. signaling mode. The information was previously discarded.
  36. chan_iax2
  37. ------------------
  38. * The iax.conf forcejitterbuffer option has been removed. It is now always
  39. forced if you set iax.conf jitterbuffer=yes. If you put a jitter buffer
  40. on a channel it will be on the channel.
  41. * A new configuration parameters, 'calltokenexpiration', has been added that
  42. controls the duration before a call token expires. Default duration is 10
  43. seconds. Setting this to a higher value may help in lagged networks or those
  44. experiencing high packet loss.
  45. chan_sip
  46. ------------------
  47. * New 'rtpbindaddr' global setting. This allows a user to define which
  48. ipaddress to bind the rtpengine to. For example, chan_sip might bind
  49. to eth0 (10.0.0.2) but rtpengine to eth1 (192.168.1.10).
  50. * DTLS related configuration options can now be set at a general level.
  51. Enabling DTLS support, though, requires enabling it at the user
  52. or peer level.
  53. chan_pjsip
  54. ------------------
  55. * New 'user_eq_phone' endpoint setting. This adds a 'user=phone' parameter
  56. to the request URI and From URI if the user is determined to be a phone number.
  57. * New 'moh_passthrough' endpoint setting. This will pass hold and unhold requests
  58. through using SIP re-invites with sendonly and sendrecv accordingly.
  59. * Added the pjsip.conf system type disable_tcp_switch option. The option
  60. allows the user to disable switching from UDP to TCP transports described
  61. by RFC 3261 section 18.1.1.
  62. * New 'line' and 'endpoint' options added on outbound registrations. This allows some
  63. identifying information to be added to the Contact of the outbound registration.
  64. If this information is present on messages received from the remote server
  65. the message will automatically be associated with the configured endpoint on the
  66. outbound registration.
  67. Core
  68. ------------------
  69. * The core of Asterisk uses a message bus called "Stasis" to distribute
  70. information to internal components. For performance reasons, the message
  71. distribution was modified to make use of a thread pool instead of a
  72. dedicated thread per consumer in certain cases. The initial settings for
  73. the thread pool can now be configured in 'stasis.conf'.
  74. Functions
  75. ------------------
  76. CHANNEL
  77. ------------------
  78. * Added CHANNEL(onhold) item that returns 1 (onhold) and 0 (not-onhold) for
  79. the hold status of a channel.
  80. DTMF Features
  81. ------------------
  82. * The transferdialattempts default value has been changed from 1 to 3. The
  83. transferinvalidsound has been changed from "pbx-invalid" to "privacy-incorrect".
  84. These were changed to make DTMF transfers be more user-friendly by default.
  85. Resources
  86. ------------------
  87. res_musiconhold
  88. ------------------
  89. * Added sort=randstart to the sort options. It sorts the files by name and
  90. then chooses the first file to play at random.
  91. * Added preferchannelclass=no option to prefer the application-passed class
  92. over the channel-set musicclass. This allows separate hold-music from
  93. application (e.g. Queue or Dial) specified music.
  94. CEL Backends
  95. ------------------
  96. cel_pgsql
  97. ------------------
  98. * Added a new option, 'usegmtime', which causes timestamps in CEL events
  99. to be logged in GMT.
  100. ------------------------------------------------------------------------------
  101. --- Functionality changes from Asterisk 13.3.0 to Asterisk 13.4.0 ------------
  102. ------------------------------------------------------------------------------
  103. chan_pjsip
  104. ------------------
  105. * New 'rpid_immediate' option to control if connected line update information
  106. goes to the caller immediately or waits for another reason to send the
  107. connected line information update. See the online option documentation for
  108. more information. Defaults to 'no' as setting it to 'yes' can result in
  109. many unnecessary messages being sent to the caller.
  110. * The configuration setting 'progressinband' now defaults to 'no', which
  111. matches the actual behavior of previous versions.
  112. res_pjsip
  113. ------------------
  114. * A new CLI command has been added: "pjsip show settings", which shows
  115. both the global and system configuration settings.
  116. res_ari_channels
  117. ------------------
  118. * Two new events, 'ChannelHold' and 'ChannelUnhold', have been added to the
  119. events data model. These events are raised when a channel indicates a hold
  120. or unhold, respectively.
  121. func_holdintercept
  122. ------------------
  123. * A new dialplan function, HOLD_INTERCEPT, has been added. This function, when
  124. placed on a channel, intercepts hold/unhold indications signalled by the
  125. channel and prevents them from moving on to other channels in a bridge with
  126. the hold initiator. Instead, AMI or ARI events are raised indicating that
  127. the channel wanted to place someone on hold. This allows external
  128. applications to implement their own custom hold/unhold logic.
  129. ------------------------------------------------------------------------------
  130. --- Functionality changes from Asterisk 13.2.0 to Asterisk 13.3.0 ------------
  131. ------------------------------------------------------------------------------
  132. chan_pjsip/app_transfer
  133. ------------------
  134. * The Transfer application, when used with chan_pjsip, now supports using
  135. a PJSIP endpoint as the transfer destination. This is in addition to
  136. explicitly specifying a SIP URI to transfer to.
  137. res_ari_channels
  138. ------------------
  139. * The ARI /channels resource now supports a new operation, 'redirect'. The
  140. redirect operation will perform a technology and state specific redirection
  141. on the channel to a specified endpoint or destination. In the case of SIP
  142. technologies, this is either a 302 Redirect response to an on-going INVITE
  143. dialog or a SIP REFER request.
  144. res_pjsip
  145. ------------------
  146. * A new 'endpoint_identifier_order' option has been added that allows one to
  147. set the order by which endpoint identifiers are processed and checked. This
  148. option is specified under the 'global' type configuration section.
  149. ------------------------------------------------------------------------------
  150. --- Functionality changes from Asterisk 13.1.0 to Asterisk 13.2.0 ------------
  151. ------------------------------------------------------------------------------
  152. * New 'PJSIP_AOR' and 'PJSIP_CONTACT' dialplan functions have been added which
  153. allow examining PJSIP AORs or contacts from the dialplan.
  154. res_pjsip_outbound_registration
  155. ------------------
  156. * The 'pjsip send unregister' command now stops further registrations.
  157. * A new command 'pjsip send register' has been added which allows you to
  158. start or restart periodic registration. It can be used after a
  159. 'send unregister' or after a 401 permanent error.
  160. res_pjsip_config_wizard
  161. ------------------
  162. * This is a new module that adds streamlined configuration capability for
  163. chan_pjsip. It's targeted at users who have lots of basic configuration
  164. scenarios like 'phone' or 'agent' or 'trunk'. Additional information
  165. can be found in the sample configuration file at
  166. config/samples/pjsip_wizard.conf.sample.
  167. res_fax
  168. -----------
  169. * The T.38 negotiation timeout was previously hard coded at 5000 milliseconds
  170. and is now configurable via the 't38timeout' configuration option in
  171. res_fax.conf and via the fax options dialplan function 'FAXOPT(t38timeout)'.
  172. The default remains at 5000 milliseconds.
  173. PJSIP Transports
  174. ----------
  175. * The ca_list_path transport parameter has been added for TLS transports. This
  176. option behaves similarly to the old sip.conf option "tlscapath". In order to
  177. use this, you must be using PJProject version 2.4 or higher.
  178. ARI
  179. ------------------
  180. * The Originate operation now takes in an originator channel. The linked ID of
  181. this originator channel is applied to the newly originated outgoing channel.
  182. If using CEL this allows an association to be established between the two so
  183. it can be recognized that the originator is dialing the originated channel.
  184. * "language" (the default spoken language for the channel) is now included in
  185. the standard channel state output for suitable events.
  186. * The POST channels/{id} operation and the POST channels/{id}/continue operation
  187. now have a new "label" parameter. This allows for origination or continuation
  188. to a labeled priority in the dialplan instead of requiring a specific priority
  189. number. The ARI version has been bumped to 1.7.0 as a result.
  190. AMI
  191. ------------------
  192. * "Language" (the default spoken language for the channel) is now included in
  193. the standard channel state output for suitable events.
  194. * AMI actions that return a list of events have been made to return consistent
  195. headers for the action response event starting the list and the list complete
  196. event. The AMI version has been bumped to 2.7.0 as a result.
  197. ------------------------------------------------------------------------------
  198. --- Functionality changes from Asterisk 13.0.0 to Asterisk 13.1.0 ------------
  199. ------------------------------------------------------------------------------
  200. AMI
  201. ------------------
  202. * Event NewConnectedLine is emitted when the connected line information on
  203. a channel changes.
  204. ARI
  205. ------------------
  206. * Event ChannelConnectedLine is emitted when the connected line information
  207. on a channel changes.
  208. Core Transfers
  209. -----------------
  210. The features.conf general section has three new configurable options:
  211. * transferdialattempts
  212. * transferretrysound
  213. * transferinvalidsound
  214. For more information on what these options do, see the Asterisk wiki:
  215. https://wiki.asterisk.org/wiki/x/W4fAAQ
  216. Channel Drivers
  217. ------------------
  218. chan_pjsip
  219. ------------------
  220. * New 'media_encryption_optimistic' endpoint setting. This will use SRTP
  221. when possible but does not consider lack of it a failure.
  222. res_pjsip_endpoint_identifer_ip
  223. ------------------
  224. * New CLI commands have been added: "pjsip show identif(y|ies)", which lists
  225. all configured PJSIP identify objects
  226. ------------------------------------------------------------------------------
  227. --- Functionality changes from Asterisk 12 to Asterisk 13 --------------------
  228. ------------------------------------------------------------------------------
  229. Overview
  230. ------------------
  231. Asterisk 13 is the next Long Term Support (LTS) release of Asterisk. As such,
  232. the focus of development for this release of Asterisk was on improving the
  233. usability and features developed in the previous Standard release, Asterisk 12.
  234. Beyond a general refinement of end user features, development focussed heavily
  235. on the Asterisk APIs - the Asterisk Manager Interface (AMI) and the Asterisk
  236. REST Interface (ARI) - and the PJSIP stack in Asterisk. Some highlights of the
  237. new features include:
  238. * Asterisk security events are now provided via AMI, allowing end users to
  239. monitor their Asterisk system in real time for security related issues.
  240. * External control of Message Waiting Indicators (MWI) through both AMI and ARI.
  241. * Reception/transmission of out of call text messages using any supported
  242. channel driver/protocol stack through ARI.
  243. * Resource List Server support in the PJSIP stack, providing subscriptions to
  244. lists of resources and batched delivery of NOTIFY requests.
  245. * Inter-Asterisk distributed device state and mailbox state using the PJSIP
  246. stack.
  247. It is important to note that Asterisk 13 is built on the architecture developed
  248. during the previous Standard release, Asterisk 12. Users upgrading to
  249. Asterisk 13 should read about the new features in Asterisk 12 later in this file
  250. (see Functionality changes from Asterisk 11 to Asterisk 12), as well as the
  251. UPGRADE-12.txt delivered with this release. In particular, users upgrading to
  252. Asterisk 13 from a release prior to Asterisk 12 should read the specifications
  253. on AMI, CDRs, and CEL on the Asterisk wiki:
  254. * AMI - https://wiki.asterisk.org/wiki/x/dAFRAQ
  255. * CEL - https://wiki.asterisk.org/wiki/x/4ICLAQ
  256. * CDRs - https://wiki.asterisk.org/wiki/x/pwpRAQ
  257. Many new featuers in Asterisk 13 were introduced in point releases of
  258. Asterisk 12. Following this section - which documents the changes from all
  259. versions of Asterisk 12 to Asterisk 13 - users should examine the new features
  260. that were introduced in the point releases of Asterisk 12, as they are also
  261. included in Asterisk 13.
  262. Finally, all users upgrading to Asterisk 13 should read the UPGRADE.txt file
  263. delivered with this release.
  264. Build System
  265. ------------------
  266. * Sample config files have been moved from configs/ to a sub-folder of that
  267. directory, samples.
  268. * The menuselect utility has been pulled into the Asterisk repository. As a
  269. result, the libxml2 development library is now a required dependency for
  270. Asterisk.
  271. * A new Compiler Flag, REF_DEBUG, has been added. When enabled, reference
  272. counted objects will emit additional debug information to the refs log file
  273. located in the standard Asterisk log file directory. This log file is useful
  274. in tracking down object leaks and other reference counting issues. Prior to
  275. this version, this option was only available by modifying the source code
  276. directly. This change also includes a new script, refcounter.py, in the
  277. contrib folder that will process the refs log file. Note that this replaces
  278. the refcounter utility that could be built from the utils directory.
  279. Applications
  280. ------------------
  281. DahdiBarge
  282. ------------------
  283. * This module was deprecated and has been removed. Users of app_dahdibarge
  284. should use ChanSpy instead.
  285. MixMonitor
  286. ------------------
  287. * New options to play a beep when starting a recording and stopping a recording
  288. have been added. The option "p" will play a beep to the channel that starts
  289. the recording. The option "P" will play a beep to the channel that stops the
  290. recording.
  291. Queue
  292. ------------------
  293. * Queue rules can now be stored in a database table, queue_rules. Unlike other
  294. RealTime tables, the queue_rules table is only examined on module load or
  295. module reload. A new general setting has been added to queuerules.conf,
  296. 'realtime_rules', which, when set to 'yes', will cause app_queue to look in
  297. RealTime for additional queue rules to parse. Note that both the file and
  298. the database can be used as a provide of queue rules when 'realtime_rules'
  299. is set to 'yes'.
  300. When app_queue is reloaded, all rules are re-parsed and loaded into memory.
  301. There is no caching of RealTime queue rules.
  302. ReadFile
  303. ------------------
  304. * This module was deprecated and has been removed. Users of app_readfile
  305. should use func_env's FILE function instead.
  306. Say
  307. ------------------
  308. * The 'say' family of dialplan applications now support the Japanese
  309. language. The 'language' parameter in say.conf now recognizes a setting of
  310. 'ja', which will enable Japanese language specific mechanisms for playing
  311. back numbers, dates, and other items.
  312. SayCountPL
  313. ------------------
  314. * This module was deprecated and has been removed. Users of app_saycountpl
  315. should use the Say family of applications.
  316. SetMusicOnHold
  317. ------------------
  318. * The SetMusicOnHold dialplan application was deprecated and has been removed.
  319. Users of the application should use the CHANNEL function's musicclass
  320. setting instead.
  321. WaitMusicOnHold
  322. ------------------
  323. * The WaitMusicOnHold dialplan application was deprecated and has been
  324. removed. Users of the application should use MusicOnHold with a duration
  325. parameter instead.
  326. VoiceMail
  327. ------------------
  328. * VoiceMail and VoiceMailMain now support the Japanese language. The
  329. 'language' parameter in voicemail.conf now recognizes a setting of 'ja',
  330. which will enable prompts to be played back using a Japanese grammatical
  331. structure. Additional prompts are necessary for this functionality,
  332. including:
  333. - jb-arimasu: there is
  334. - jb-arimasen: there is not
  335. - jb-oshitekudasai: please press
  336. - jb-ni: article ni
  337. - jb-ga: article ga
  338. - jb-wa: article wa
  339. - jb-wo: article wo
  340. * Add the ability to specify multiple email addresses in configuration,
  341. separated by a |.
  342. CDR Backends
  343. ------------------
  344. cdr_sqlite
  345. -----------------
  346. * This module was deprecated and has been removed. Users of cdr_sqlite
  347. should use cdr_sqlite3_custom.
  348. cdr_pgsql
  349. ------------------
  350. * Added the ability to support PostgreSQL application_name on connections.
  351. This allows PostgreSQL to display the configured name in the
  352. pg_stat_activity view and CSV log entries. This setting is configurable
  353. for cdr_pgsql via the appname configuration setting in cdr_pgsql.conf.
  354. CEL Backends
  355. ------------------
  356. cel_pgsql
  357. ------------------
  358. * Added the ability to support PostgreSQL application_name on connections.
  359. This allows PostgreSQL to display the configured name in the
  360. pg_stat_activity view and CSV log entries. This setting is configurable
  361. for cel_pgsql via the appname configuration setting in cel_pgsql.conf.
  362. Channel Drivers
  363. ------------------
  364. chan_dahdi
  365. ------------------
  366. * SS7 support now requires libss7 v2.0 or later.
  367. * Added SS7 support for connected line and redirecting.
  368. * Most SS7 CLI commands are reworked as well as new SS7 commands added.
  369. See online CLI help.
  370. * Added several SS7 config option parameters described in
  371. chan_dahdi.conf.sample.
  372. chan_gtalk
  373. ------------------
  374. * This module was deprecated and has been removed. Users of chan_gtalk
  375. should use chan_motif.
  376. chan_h323
  377. ------------------
  378. * This module was deprecated and has been removed. Users of chan_h323
  379. should use chan_ooh323.
  380. chan_jingle
  381. ------------------
  382. * This module was deprecated and has been removed. Users of chan_jingle
  383. should use chan_motif.
  384. chan_pjsip
  385. ------------------
  386. * Added the CLI command 'pjsip list ciphers' so a user can know what
  387. OpenSSL names are available on their system for the pjsip.conf cipher
  388. option.
  389. chan_sip
  390. ------------------
  391. * The SIPPEER dialplan function no longer supports using a colon as a
  392. delimiter for parameters. The parameters for the function should be
  393. delimited using a comma.
  394. * The SIPCHANINFO dialplan function was deprecated and has been removed. Users
  395. of the function should use the CHANNEL function instead.
  396. Core
  397. ------------------
  398. Account Codes
  399. ------------------
  400. * Added functional peeraccount support. Except for Queue, the
  401. accountcode propagation is now consistently propagated to outgoing
  402. channels before dialing. The channel accountcode can change from its
  403. original non-empty value on channel creation for the following specific
  404. reasons. One, dialplan sets it using CHANNEL(accountcode). Two, an
  405. originate method that can specify an accountcode value. Three, the
  406. calling channel propagates its peeraccount or accountcode to the
  407. outgoing channel's accountcode before dialing. The change has two
  408. visible effects. One, local channels now cross accountcode and
  409. peeraccount across the special bridge between the ;1 and ;2 channels
  410. just like channels between normal bridges. Two, the
  411. CHANNEL(peeraccount) value can now be set before Dial and FollowMe to
  412. set the accountcode on the outgoing channel(s).
  413. For Queue, an outgoing channel's non-empty accountcode will not change
  414. unless explicitly set by CHANNEL(accountcode). The change has three
  415. visible effects. One, local channels now cross accountcode and
  416. peeraccount across the special bridge between the ;1 and ;2 channels
  417. just like channels between normal bridges. Two, the queue member will
  418. get an accountcode if it doesn't have one and one is available from the
  419. calling channel's peeraccount. Three, accountcode propagation includes
  420. local channel members where the accountcodes are propagated early
  421. enough to be available on the ;2 channel.
  422. AMI
  423. ------------------
  424. * New DeviceStateChanged and PresenceStateChanged AMI events have been added.
  425. These events are emitted whenever a device state or presence state change
  426. occurs. The events are controlled by res_manager_device_state.so and
  427. res_manager_presence_state.so. If the high frequency of these events is
  428. problematic for you, do not load these modules.
  429. * Added DialplanExtensionAdd and DialplanExtensionRemove AMI commands. They
  430. work in basically the same way as the 'dialplan add extension' and
  431. 'dialplan remove extension' CLI commands respectively.
  432. * New AMI action LoggerRotate reloads and rotates logger in the same manner
  433. as CLI command 'logger rotate'
  434. * New AMI Actions FAXSessions, FAXSession, and FAXStats replicate the
  435. functionality of CLI commands 'fax show sessions', 'fax show session',
  436. and fax show stats' respectively.
  437. * New AMI actions PRIDebugSet, PRIDebugFileSet, and PRIDebugFileUnset
  438. enable manager control over PRI debugging levels and file output.
  439. * AMI action PJSIPNotify may now send to a URI instead of only to a PJSIP
  440. endpoint as long as a default outbound endpoint is set. This also applies
  441. to the equivalent CLI command (pjsip send notify)
  442. * The AMI action PJSIPShowEndpoint now includes ContactStatusDetail sections
  443. that give information on Asterisk's attempts to qualify the endpoint.
  444. * The DialEnd event will now contain a Forward header if the dial is ending
  445. due to the call being forwarded. The contents of the Forward header is the
  446. extension in the number to which the call is being forwarded.
  447. CEL
  448. ------------------
  449. * The "bridge_technology" extra field key has been added to BRIDGE_ENTER
  450. and BRIDGE_EXIT events.
  451. Features
  452. ------------------
  453. * Channel variables are now substituted in arguments passed to applications
  454. run by using dynamic features.
  455. TLS
  456. ------------------
  457. * The TLS core in Asterisk now supports Perfect Forward Secrecy (PFS).
  458. Enabling PFS is attempted by default, and is dependent on the configuration
  459. of the module using TLS.
  460. - Ephemeral ECDH (ECDHE) is enabled by default. To disable it, do not
  461. specify a ECDHE cipher suite in sip.conf, for example:
  462. tlscipher=AES128-SHA:DES-CBC3-SHA
  463. - Ephemeral DH (DHE) is disabled by default. To enable it, add DH parameters
  464. into the private key file, e.g., sip.conf tlsprivatekey. For example, the
  465. default dh2048.pem - see
  466. http://www.opensource.apple.com/source/OpenSSL098/OpenSSL098-35.1/src/apps/dh2048.pem?txt
  467. - Because clients expect the server to prefer PFS, and because OpenSSL sorts
  468. its cipher suites by bit strength, see "openssl ciphers -v DEFAULT".
  469. Consider re-ordering your cipher suites in the respective configuration
  470. file. For example:
  471. tlscipher=AES128+kEECDH:AES128+kEDH:3DES+kEDH:AES128-SHA:DES-CBC3-SHA:-ADH:-AECDH
  472. will use PFS when offered by the client. Clients which do not offer PFS
  473. fall-back to AES-128 (or even 3DES, as recommended by RFC 3261).
  474. Functions
  475. ------------------
  476. JACK_HOOK
  477. ------------------
  478. * The JACK_HOOK function now supports audio with a sample rate higher than
  479. 8kHz.
  480. Resources
  481. ------------------
  482. res_config_pgsql
  483. ------------------
  484. * Added the ability to support PostgreSQL application_name on connections.
  485. This allows PostgreSQL to display the configured name in the
  486. pg_stat_activity view and CSV log entries. This setting is configurable
  487. for res_config_pgsql via the dbappname configuration setting in
  488. res_pgsql.conf.
  489. res_pjsip_outbound_publish
  490. ------------------
  491. * A new module, res_pjsip_outbound_publish provides the mechanisms for sending
  492. PUBLISH requests for specific event packages to another SIP User Agent.
  493. res_pjsip_pubsub
  494. ------------------
  495. * The publish/subscribe core module has been updated to support RFC 4662
  496. Resource Lists, allowing Asterisk to act as a Resource List Server (RLS).
  497. Resource lists are configured in pjsip.conf under a new object type,
  498. resource_list. Resource lists can contain either message-summary or presence
  499. events, and can be composed of specific resources that provide the event or
  500. other resource lists.
  501. * Inbound publication support is provided by a new object, inbound-publication.
  502. This configures res_pjsip_pubsub to accept PUBLISH requests from a particular
  503. resource. Which events are accepted is constructed dynamically; see
  504. res_pjsip_publish_asterisk for more information.
  505. res_pjsip_publish_asterisk
  506. ------------------
  507. * A new module, res_pjsip_publish_asterisk adds support for PUBLISH requests of
  508. Asterisk information to other Asterisk servers. This module is intended only
  509. for Asterisk to Asterisk exchanges of information. Currently, this includes
  510. both mailbox state and device state information.
  511. ------------------------------------------------------------------------------
  512. --- Functionality changes from Asterisk 12.4.0 to Asterisk 12.5.0 ------------
  513. ------------------------------------------------------------------------------
  514. ARI
  515. ------------------
  516. * Stored recordings now support a new operation, copy. This will take an
  517. existing stored recording and copy it to a new location in the recordings
  518. directory.
  519. * LiveRecording objects now have three additional fields that can be reported
  520. in a RecordingFinished ARI event:
  521. - total_duration: the duration of the recording
  522. - talking_duration: optional. The duration of talking detected in the
  523. recording. This is only available if max_silence_seconds was specified
  524. when the recording was started.
  525. - silence_duration: optional. The duration of silence detected in the
  526. recording. This is only available if max_silence_seconds was specified
  527. when the recording was started.
  528. Note that all duration values are reported in seconds.
  529. * Users of ARI can now send and receive out of call text messages. Messages
  530. can be sent directly to a particular endpoint, or can be sent to the
  531. endpoints resource directly and inferred from the URI scheme. Text
  532. messages are passed to ARI clients as TextMessageReceived events. ARI
  533. clients can choose to receive text messages by subscribing to the particular
  534. endpoint technology or endpoints that they are interested in.
  535. * The applications resource now supports subscriptions to all endpoints of
  536. a particular channel technology. For example, subscribing to an eventSource
  537. of 'endpoint:PJSIP' will subscribe to all PJSIP endpoints.
  538. res_pjsip
  539. ------------------
  540. * The endpoint configuration object now supports 'accountcode'. Any channel
  541. created for an endpoint with this setting will have its accountcode set
  542. to the specified value.
  543. res_hep_rtcp
  544. ------------------
  545. * A new module, res_hep_rtcp, has been added that will forward RTCP call
  546. statistics to a HEP capture server. See res_hep for more information.
  547. Functions
  548. ------------------
  549. * Function AUDIOHOOK_INHERIT has been deprecated. Audiohooks are now
  550. unconditionally inhereted through masquerades. As a side benefit, more
  551. than one audiohook of a given type may persist through a masquerade now.
  552. ------------------------------------------------------------------------------
  553. --- Functionality changes from Asterisk 12.3.0 to Asterisk 12.4.0 ------------
  554. ------------------------------------------------------------------------------
  555. AgentRequest
  556. ------------------
  557. * Returns new AGENT_STATUS value "NOT_CONNECTED" if the agent fails to
  558. connect with an incoming caller after being alerted to the presence
  559. of the incoming caller. The most likely reason this would happen is
  560. the agent did not acknowledge the call in time.
  561. AMI
  562. ------------------
  563. * New events have been added for the TALK_DETECT function. When the function
  564. is used on a channel, ChannelTalkingStart/ChannelTalkingStop events will be
  565. emitted to connected AMI clients indicating the start/stop of talking on
  566. the channel.
  567. ARI
  568. ------------------
  569. * New event models have been aded for the TALK_DETECT function. When the
  570. function is used on a channel, ChannelTalkingStarted/ChannelTalkingFinished
  571. events will be emitted to connected WebSockets subscribed to the channel,
  572. indicating the start/stop of talking on the channel.
  573. Functions
  574. ------------------
  575. * A new function, TALK_DETECT, has been added. When set on a channel, this
  576. fucntion causes events indicating the starting/stoping of talking on said
  577. channel to be emitted to both AMI and ARI clients.
  578. ------------------------------------------------------------------------------
  579. --- Functionality changes from Asterisk 12.2.0 to Asterisk 12.3.0 ------------
  580. ------------------------------------------------------------------------------
  581. ARI
  582. ------------------
  583. * A new Playback URI 'tone' has been added. Tones are specified either as
  584. an indication name (e.g. 'tone:busy') from indications.conf or as a tone
  585. pattern (e.g. 'tone:240/250,0/250'). Tones differ from normal playback
  586. URIs in that they must be stopped manually and will continue to occupy
  587. a channel's ARI control queue until they are stopped. They also can not
  588. be rewound or fastforwarded.
  589. * User events can now be generated from ARI. Events can be signalled with
  590. arbitrary json variables, and include one or more of channel, bridge, or
  591. endpoint snapshots. An application must be specified which will receive
  592. the event message (other applications can subscribe to it). The message
  593. will also be delivered via AMI provided a channel is attached. Dialplan
  594. generated user event messages are still transmitted via the channel, and
  595. will only be received by a stasis application they are attached to or if
  596. the channel is subscribed to.
  597. chan_sip
  598. -----------
  599. * SIP peers can now specify 'trust_id_outbound' which affects RPID/PAI
  600. fields for prohibited callingpres information. Values are legacy, no, and
  601. yes. By default, legacy is used.
  602. trust_id_outbound=legacy - behavior remains the same as 1.8.26.1. When
  603. dealing with prohibited callingpres and sendrpid=pai/rpid, RPID/PAI
  604. headers are appended to outbound SIP messages just as they are with
  605. allowed callingpres values, but data about the remote party's identity is
  606. anonymized.
  607. When sendrpid=rpid, only the remote party's domain is anonymized.
  608. trust_id_outbound=no - when dealing with prohibited callingpres, RPID/PAI
  609. headers are not sent.
  610. trust_id_outbound=yes - RPID/PAI headers are applied with the full remote
  611. party information in tact even for prohibited callingpres information.
  612. In the case of PAI, a Privacy: id header will be appended for prohibited
  613. calling information to communicate that the private information should
  614. not be relayed to untrusted parties.
  615. res_parking
  616. ------------------
  617. * Manager action 'Park' now takes an additional argument 'AnnounceChannel'
  618. which can be used to announce the parked call's location to an arbitrary
  619. channel in a bridge. If 'Channel' and 'TimeoutChannel' are now the two
  620. parties in a one to one bridge, 'TimeoutChannel' is treated as having
  621. parked 'Channel' like with the Park Call DTMF feature and will receive
  622. announcements prior to being hung up.
  623. ------------------------------------------------------------------------------
  624. --- Functionality changes from Asterisk 12.1.0 to Asterisk 12.2.0 ------------
  625. ------------------------------------------------------------------------------
  626. Record
  627. ------------------
  628. * Record application now has an option 'o' which allows 0 to act as an exit
  629. key setting the RECORD_STATUS variable to 'OPERATOR' instead of 'DTMF'
  630. ChanSpy
  631. --------------------------
  632. * ChanSpy now accepts a channel uniqueid or a fully specified channel name
  633. as the chanprefix parameter if the 'u' option is specified.
  634. ConfBridge
  635. --------------------------
  636. * CONFBRIDGE dialplan function is now capable of creating/modifying dynamic
  637. conference user menus.
  638. * CONFBRIDGE dialplan function is now capable of removing dynamic conference
  639. menus, bridge settings, and user settings that have been applied by the
  640. CONFBRIDGE dialplan function.
  641. * The ConfBridge dialplan application now sets a channel variable,
  642. CONFBRIGE_RESULT, upon exiting. This variable can be used to determine
  643. how a channel exited the conference.
  644. * Added conference user option 'announce_join_leave_review'. This option
  645. implies 'announce_join_leave' with the added effect that the user will
  646. be asked if they want to confirm or re-record the recording of their
  647. name when entering the conference
  648. Directory
  649. --------------------------
  650. * At exit, the Directory application now sets a channel variable
  651. DIRECTORY_RESULT to one of the following based on the reason for exiting:
  652. OPERATOR user requested operator by pressing '0' for operator
  653. ASSISTANT user requested assistant by pressing '*' for assistant
  654. TIMEOUT user pressed nothing and Directory stopped waiting
  655. HANGUP user's channel hung up
  656. SELECTED user selected a user from the directory and is routed
  657. USEREXIT user pressed '#' from the selection prompt to exit
  658. FAILED directory failed in a way that wasn't accounted for. Dang.
  659. Monitor
  660. ------------------
  661. * Monitor() - A new option, B(), has been added that will turn on a periodic
  662. beep while the call is being recorded.
  663. MusicOnHold
  664. --------------------------
  665. * MusicOnHold streams (all modes other than "files") now support wide band
  666. audio too.
  667. Page
  668. --------------------------
  669. * Added options 'b' and 'B' to apply predial handlers for outgoing calls
  670. and for the channel executing Page respectively.
  671. PickupChan
  672. --------------------------
  673. * PickupChan now accepts channel uniqueids of channels to pickup.
  674. Say
  675. --------------------------
  676. * If a channel variable SAY_DTMF_INTERRUPT is present on a channel and set
  677. to 'true' (case insensitive), then any Say application (SayNumber,
  678. SayDigits, SayAlpha, SayAlphaCase, SayUnixTime, and SayCounted) will
  679. anticipate DTMF. If DTMF is received, these applications will behave like
  680. the background application and jump to the received extension once a match
  681. is established or after a short period of inactivity.
  682. MixMonitor
  683. -------------------------
  684. * A new function, MIXMONITOR, has been added to allow access to individual
  685. instances of MixMonitor on a channel.
  686. * A new option, B(), has been added that will turn on a periodic beep while the
  687. call is being recorded.
  688. Channel Drivers
  689. -------------------------
  690. chan_sip
  691. -------------------------
  692. * TEL URI support for inbound INVITE requests has been added. chan_sip will
  693. now handle TEL schemes in the Request and From URIs. The phone-context in
  694. the Request URI will be stored in the SIPURIPHONECONTEXT channel variable on
  695. the inbound channel.
  696. Core
  697. ------------------
  698. * Exposed sorcery-based configuration files like pjsip.conf to dialplans via
  699. the new AST_SORCERY diaplan function.
  700. * Core Show Locks output now includes Thread/LWP ID if the platform
  701. supports this feature.
  702. * New "logger add channel" and "logger remove channel" CLI commands have
  703. been added to allow creation and deletion of dynamic logger channels
  704. without configuration changes. These dynamic logger channels will only
  705. exist until the next restart of asterisk.
  706. ARI
  707. ------------------
  708. * The live recording object on recording events now contains a target_uri
  709. field which contains the URI of what is being recorded.
  710. * The bridge type used when creating a bridge is now a comma separated list of
  711. bridge properties. Valid options are: mixing, holding, dtmf_events, and
  712. proxy_media.
  713. * A channelId can now be provided when creating a channel, either in the
  714. uri (POST channels/my-channel-id) or as query parameter. A local channel
  715. will suffix the second channel id with ';2' unless provided as query
  716. parameter otherChannelId.
  717. * A bridgeId can now be provided when creating a bridge, either in the uri
  718. (POST bridges/my-bridge-id) or as a query parameter.
  719. * A playbackId can be provided when starting a playback, either in the uri
  720. (POST channels/my-channel-id/play/my-playback-id /
  721. POST bridges/my-bridge-id/play/my-playback-id) or as a query parameter.
  722. * A snoop channel can be started with a snoopId, in the uri or query.
  723. AMI
  724. ------------------
  725. * Originate now takes optional parameters ChannelId and OtherChannelId,
  726. used to set the UniqueId on creation. The other id is assigned to the
  727. second channel when dialing LOCAL, or defaults to appending ;2 if only
  728. the single Id is given.
  729. * The Mixmonitor action now has a "Command" header that can be used to
  730. indicate a post-process command to run once recording finishes.
  731. RealTime
  732. ------------------
  733. * A new set of Alembic scripts has been added for CDR tables. This will create
  734. a 'cdr' table with the default schema that Asterisk expects.
  735. Functions
  736. ------------------
  737. * A new function was added: PERIODIC_HOOK. This allows running a periodic
  738. dialplan hook on a channel. Any audio generated by this hook will be
  739. injected into the call.
  740. Resources
  741. ------------------
  742. res_hep
  743. ------------------
  744. * A new module, res_hep, has been added, that acts as a generic packet
  745. capture agent for the Homer Encapsulation Protocol (HEP) version 3.
  746. It can be configured via hep.conf. Other modules can use res_hep to send
  747. message traffic to a HEP capture server.
  748. res_hep_pjsip
  749. ------------------
  750. * A new module, res_hep_pjsip, has been added that will forward PJSIP
  751. message traffic to a HEP capture server. See res_hep for more
  752. information.
  753. res_pjsip
  754. ------------------
  755. * transport and endpoint ToS options (tos, tos_audio, and tos_video) may now
  756. be set as the named set of ToS values (cs0-cs7, af11-af43, ef).
  757. * Added the following new CLI commands:
  758. - "pjsip show contacts" - list all current PJSIP contacts.
  759. - "pjsip show contact" - show specific information about a current PJSIP
  760. contact.
  761. - "pjsip show channel" - show detailed information about a PJSIP channel.
  762. res_pjsip_multihomed
  763. ------------------
  764. * A new module, res_pjsip_multihomed handles situations where the system
  765. Asterisk is running out has multiple interfaces. res_pjsip_multihomed
  766. determines which interface should be used during message sending.
  767. res_pjsip_pidf_digium_body_supplement
  768. ------------------
  769. * A new module, res_pjsip_pidf_digium_body_supplement provides NOTIFY
  770. request body formatting for presence support in Digium phones.
  771. res_pjsip_send_to_voicemail
  772. ------------------
  773. * A new module, res_pjsip_send_to_voicemail allows for REFER requests with
  774. particular headers to transfer a PJSIP channel directly to a particular
  775. extension that has VoiceMail. This is intended to be used with Digium
  776. phones that support this feature.
  777. res_pjsip_outbound_registration
  778. ------------------
  779. * A new CLI command has been added: "pjsip show registrations", which lists
  780. all configured PJSIP registrations
  781. ------------------------------------------------------------------------------
  782. --- Functionality changes from Asterisk 12.0.0 to Asterisk 12.1.0 ------------
  783. ------------------------------------------------------------------------------
  784. AMI
  785. ------------------
  786. * Added a new module that provides AMI control over MWI within Asterisk,
  787. res_mwi_external_ami. Note that this module depends on res_mwi_external;
  788. for more information on enabling this module, see res_mwi_external.
  789. This module provides the MWIGet/MWIUpdate/MWIDelete actions, as well as
  790. the MWIGet/MWIGetComplete events.
  791. * The DialStatus field in the DialEnd event can now contain additional
  792. statuses that convey how the dial operation terminated. This includes
  793. ABORT, CONTINUE, and GOTO.
  794. * AMI will now emit security events. A new class authorization has been
  795. added in manager.conf for the security events, 'security'. The new events
  796. are:
  797. - FailedACL - raised when a request violates an ACL check
  798. - InvalidAccountID - raised when a request fails an authentication
  799. check due to an invalid account ID
  800. - SessionLimit - raised when a request fails due to exceeding the
  801. number of allowed concurrent sessions for a service
  802. - MemoryLimit - raised when a request fails due to an internal memory
  803. allocation failure
  804. - LoadAverageLimit - raised when a request fails because a configured
  805. load average limit has been reached
  806. - RequestNotAllowed - raised when a request is not allowed by
  807. the service
  808. - AuthMethodNotAllowed - raised when a request used an authentication
  809. method not allowed by the service
  810. - RequestBadFormat - raised when a request is received with bad formatting
  811. - SuccessfulAuth - raised when a request successfully authenticates
  812. - UnexpectedAddress - raised when a request has a different source address
  813. then what is expected for a session already in progress with a service
  814. - ChallengeResponseFailed - raised when a request's attempt to authenticate
  815. has been challenged, and the request failed the authentication challenge
  816. - InvalidPassword - raised when a request provides an invalid password
  817. during an authentication attempt
  818. - ChallengeSent - raised when an Asterisk service send an authentication
  819. challenge to a request
  820. - InvalidTransport - raised when a request attempts to use a transport not
  821. allowed by the Asterisk service
  822. * Bridge related events now have two additional fields: BridgeName and
  823. BridgeCreator. BridgeName is a descriptive name for the bridge;
  824. BridgeCreator is the name of the entity that created the bridge. This
  825. affects the following events: ConfbridgeStart, ConfbridgeEnd,
  826. ConfbridgeJoin, ConfbridgeLeave, ConfbridgeRecord, ConfbridgeStopRecord,
  827. ConfbridgeMute, ConfbridgeUnmute, ConfbridgeTalking, BlindTransfer,
  828. AttendedTransfer, BridgeCreate, BridgeDestroy, BridgeEnter, BridgeLeave
  829. ARI
  830. ------------------
  831. * The Bridge data model now contains the additional fields 'name' and
  832. 'creator'. The 'name' field conveys a descriptive name for the bridge;
  833. the 'creator' field conveys the name of the entity that created the bridge.
  834. This affects all responses to HTTP requests that return a Bridge data model
  835. as well as all event derived data models that contain a Bridge data model.
  836. The POST /bridges operation may now optionally specify a name to give to
  837. the bridge being created.
  838. * Added a new ARI resource 'mailboxes' which allows the creation and
  839. modification of mailboxes managed by external MWI. Modules res_mwi_external
  840. and res_stasis_mailbox must be enabled to use this resource. For more
  841. information on external MWI control, see res_mwi_external.
  842. * Added new events for externally initiated transfers. The event
  843. BridgeBlindTransfer is now raised when a channel initiates a blind transfer
  844. of a bridge in the ARI controlled application to the dialplan; the
  845. BridgeAttendedTransfer event is raised when a channel initiates an
  846. attended transfer of a bridge in the ARI controlled application to the
  847. dialplan.
  848. * Channel variables may now be specified as a body parameter to the
  849. POST /channels operation. The 'variables' key in the JSON is interpreted
  850. as a sequence of key/value pairs that will be added to the created channel
  851. as channel variables. Other parameters in the JSON body are treated as
  852. query parameters of the same name.
  853. HTTP
  854. ------------------
  855. * Asterisk's HTTP server now supports chunked Transfer-Encoding. This will be
  856. automatically handled by the HTTP server if a request is received with a
  857. Transfer-Encoding type of "chunked".
  858. res_pjsip
  859. ------------------
  860. * Path support has been added with the 'support_path' option in registration
  861. and aor sections.
  862. * A 'debug' option has been added to the globals section that will allow
  863. sip messages to be logged.
  864. * A 'set_var' option has been added to endpoints that will automatically
  865. set the desired variable(s) on a channel created for that endpoint.
  866. * Several new tables and columns have been added to the realtime schema for
  867. the res_pjsip related modules. See the UPGRADE.txt notes for updating
  868. the database schema.
  869. res_mwi_external
  870. ------------------
  871. * A new module, res_mwi_external, has been added to Asterisk. This module
  872. acts as a base framework that other modules can build on top of to allow
  873. an external system to control MWI within Asterisk. For implementations
  874. that make use of res_mwi_external, see res_mwi_external_ami and
  875. res_ari_mailboxes. Note that res_mwi_external canflicts with other modules
  876. that may produce MWI themselves, such as app_voicemail. res_mwi_external
  877. and other modules that depend on it cannot be built or loaded with
  878. app_voicemail present.
  879. res_pjsip
  880. ------------------
  881. * DNS functionality will now automatically be enabled if the system configured
  882. nameservers can be retrieved. If the system configured nameservers can not be
  883. retrieved the functionality will resort to using system resolution. Functionalty
  884. such as SRV records and failover will not be available if system resolution
  885. is in use.
  886. ------------------------------------------------------------------------------
  887. --- Functionality changes from Asterisk 11 to Asterisk 12 --------------------
  888. ------------------------------------------------------------------------------
  889. Overview
  890. ------------------
  891. Asterisk 12 is a standard release of the Asterisk project. As such, the
  892. focus of development for this release was on core architectural changes and
  893. major new features. This includes:
  894. * A more flexible bridging core based on the Bridging API
  895. * A new internal message bus, Stasis
  896. * Major standardization and consistency improvements to AMI
  897. * Addition of the Asterisk RESTful Interface (ARI)
  898. * A new SIP channel driver, chan_pjsip
  899. In addition, as the vast majority of bridging in Asterisk was migrated to the
  900. Bridging API used by ConfBridge, major changes were made to most of the
  901. interfaces in Asterisk. This includes not only AMI, but also CDRs and CEL.
  902. Specifications have been written for the affected interfaces. These
  903. specifications are available on the Asterisk wiki:
  904. * AMI - https://wiki.asterisk.org/wiki/x/dAFRAQ
  905. * CEL - https://wiki.asterisk.org/wiki/x/4ICLAQ
  906. * CDRs - https://wiki.asterisk.org/wiki/x/pwpRAQ
  907. It is *highly* recommended that anyone migrating to Asterisk 12 read the
  908. information regarding its release both in this file and in the accompanying
  909. UPGRADE.txt file. More detailed information on the major changes can be found
  910. on the Asterisk wiki at https://wiki.asterisk.org/wiki/x/0YCLAQ.
  911. Build System
  912. ------------------
  913. * Added build option DISABLE_INLINE. This option can be used to work around a
  914. bug in gcc. For more information, see
  915. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47816
  916. * Removed the CHANNEL_TRACE development mode build option. Certain aspects of
  917. the CHANNEL_TRACE build option were incompatible with the new bridging
  918. architecture.
  919. * Asterisk now optionally uses libxslt to improve XML documentation generation
  920. and maintainability. If libxslt is not available on the system, some XML
  921. documentation will be incomplete.
  922. * Asterisk now depends on libjansson. If a package of libjansson is not
  923. available on your distro, please see http://www.digip.org/jansson/.
  924. * Asterisk now depends on libuuid and, optionally, uriparser. It is
  925. recommended that you install uriparser, even if it is optional.
  926. * The new SIP stack and channel driver uses a particular version of PJSIP.
  927. Please see https://wiki.asterisk.org/wiki/x/J4GLAQ for more information on
  928. configuring and installing PJSIP for usage with Asterisk.
  929. * Optional API was re-implemented to be more portable, and no longer requires
  930. weak reference support from the compiler. The build option OPTIONAL_API may
  931. be disabled to disable Optional API support.
  932. Applications
  933. ------------------
  934. AgentLogin
  935. ------------------
  936. * Along with AgentRequest, this application has been modified to be a
  937. replacement for chan_agent. The act of a channel calling the AgentLogin
  938. application places the channel into a pool of agents that can be
  939. requested by the AgentRequest application. Note that this application, as
  940. well as all other agent related functionality, is now provided by the
  941. app_agent_pool module. See chan_agent and AgentRequest for more information.
  942. * This application no longer performs agent authentication. If authentication
  943. is desired, the dialplan needs to perform this function using the
  944. Authenticate or VMAuthenticate application or through an AGI script before
  945. running AgentLogin.
  946. * If this application is called and the agent is already logged in, the
  947. dialplan will continue exection with the AGENT_STATUS channel variable set
  948. to ALREADY_LOGGED_IN.
  949. * The agents.conf schema has changed. Rather than specifying agents on a
  950. single line in comma delineated fashion, each agent is defined in a separate
  951. context. This allows agents to use the power of context templates in their
  952. definition.
  953. * A number of parameters from agents.conf have been removed. This includes
  954. maxloginretries, autologoffunavail, updatecdr, goodbye, group, recordformat,
  955. urlprefix, and savecallsin. These options were obsoleted by the move from
  956. a channel driver model to the bridging/application model provided by
  957. app_agent_pool.
  958. AgentRequest
  959. ------------------
  960. * A new application, this will request a logged in agent from the pool and
  961. bridge the requested channel with the channel calling this application.
  962. Logged in agents are those channels that called the AgentLogin application.
  963. If an agent cannot be requested from the pool, the AGENT_STATUS dialplan
  964. application will be set with an appropriate error value.
  965. AgentMonitorOutgoing
  966. ------------------
  967. * This application has been removed. It was a holdover from when
  968. AgentCallbackLogin was removed.
  969. AlarmReceiver
  970. ------------------
  971. * Added support for additional Ademco DTMF signalling formats, including
  972. Express 4+1, Express 4+2, High Speed and Super Fast.
  973. * Added channel variable ALARMRECEIVER_CALL_LIMIT. This sets the maximum
  974. call time, in milliseconds, to run the application.
  975. * Added channel variable ALARMRECEIVER_RETRIES_LIMIT. This sets the
  976. maximum number of times to retry the call.
  977. * Added a new configuration option answait. If set, the AlarmReceiver
  978. application will wait the number of milliseconds specified by answait
  979. after the channel has answered. Valid values range between 500
  980. milliseconds and 10000 milliseconds.
  981. * Added configuration option no_group_meta. If enabled, grouping of metadata
  982. information in the AlarmReceiver log file will be skipped.
  983. Answer
  984. ------------------
  985. * It is now no longer possible to bypass updating the CDR on the channel
  986. when answering. CDRs reflect the state of the channel and will always
  987. reflect the time they were Answered.
  988. BridgeWait
  989. ------------------
  990. * A new application in Asterisk, this will place the calling channel
  991. into a holding bridge, optionally entertaining them with some form of
  992. media. Channels participating in a holding bridge do not interact with
  993. other channels in the same holding bridge. Optionally, however, a channel
  994. may join as an announcer. Any media passed from an announcer channel is
  995. played to all channels in the holding bridge. Channels leave a holding
  996. bridge either when an optional timer expires, or via the ChannelRedirect
  997. application or AMI Redirect action.
  998. ConfBridge
  999. ------------------
  1000. * All participants in a bridge can now be kicked out of a conference room
  1001. by specifying the channel parameter as 'all' in the ConfBridge kick CLI
  1002. command, i.e., 'confbridge kick <conference> all'
  1003. * CLI output for the 'confbridge list' command has been improved. When
  1004. displaying information about a particular bridge, flags will now be shown
  1005. for the participating users indicating properties of that user.
  1006. * The ConfbridgeList event now contains the following fields: WaitMarked,
  1007. EndMarked, and Waiting. This displays additional properties about the
  1008. user's profile, as well as whether or not the user is waiting for a
  1009. Marked user to enter the conference.
  1010. * Added a new option for conference recording, record_file_append. If enabled,
  1011. when the recording is stopped and then re-started, the existing recording
  1012. will be used and appended to.
  1013. * ConfBridge now has the ability to set the language of announcements to the
  1014. conference. The language can be set on a bridge profile in confbridge.conf
  1015. or by the dialplan function CONFBRIDGE(bridge,language)=en.
  1016. ControlPlayback
  1017. ------------------
  1018. * The channel variable CPLAYBACKSTATUS may now return the value
  1019. 'REMOTESTOPPED'. This occurs when playback is stopped by a remote interface,
  1020. such as AMI. See the AMI action ControlPlayback for more information.
  1021. Directory
  1022. ------------------
  1023. * Added the 'a' option, which allows the caller to enter in an additional
  1024. alias for the user in the directory. This option must be used in conjunction
  1025. with the 'f', 'l', or 'b' options. Note that the alias for a user can be
  1026. specified in voicemail.conf.
  1027. DumpChan
  1028. ------------------
  1029. * The output of DumpChan no longer includes the DirectBridge or IndirectBridge
  1030. fields. Instead, if a channel is in a bridge, it includes a BridgeID field
  1031. containing the unique ID of the bridge that the channel happens to be in.
  1032. ForkCDR
  1033. ------------------
  1034. * ForkCDR no longer automatically resets the forked CDR. See the 'r' option
  1035. for more information.
  1036. * Variables are no longer purged from the original CDR. See the 'v' option for
  1037. more information.
  1038. * The 'A' option has been removed. The Answer time on a CDR is never updated
  1039. once set.
  1040. * The 'd' option has been removed. The disposition on a CDR is a function of
  1041. the state of the channel and cannot be altered.
  1042. * The 'D' option has been removed. Who the Party B is on a CDR is a function
  1043. of the state of the respective channels involved in the CDR and cannot be
  1044. altered.
  1045. * The 'r' option has been changed. Previously, ForkCDR always reset the CDR
  1046. such that the start time and, if applicable, the answer time was updated.
  1047. Now, by default, ForkCDR simply forks the CDR, maintaining any times. The
  1048. 'r' option now triggers the Reset, setting the start time (and answer time
  1049. if applicable) to the current time. Note that the 'a' option still sets
  1050. the answer time to the current time if the channel was already answered.
  1051. * The 's' option has been removed. A variable can be set on the original CDR
  1052. if desired using the CDR function, and removed from a forked CDR using the
  1053. same function.
  1054. * The 'T' option has been removed. The concept of DONT_TOUCH and LOCKED no
  1055. longer applies in the CDR engine.
  1056. * The 'v' option now prevents the copy of the variables from the original CDR
  1057. to the forked CDR. Previously the variables were always copied but were
  1058. removed from the original. This was changed as removing variables from a CDR
  1059. can have unintended side effects - this option allows the user to prevent
  1060. propagation of variables from the original to the forked without modifying
  1061. the original.
  1062. MeetMe
  1063. -------------------
  1064. * Added the 'n' option to MeetMe to prevent application of the DENOISE
  1065. function to a channel joining a conference. Some channel drivers that vary
  1066. the number of audio samples in a voice frame will experience significant
  1067. quality problems if a denoiser is attached to the channel; this option gives
  1068. them the ability to remove the denoiser without having to unload func_speex.
  1069. MixMonitor
  1070. ------------------
  1071. * The 'b' option now includes conferences as well as sounds played to the
  1072. participants.
  1073. * The AUDIOHOOK_INHERIT function is no longer needed to keep a MixMonitor
  1074. running during a transfer. If a MixMonitor is started on a channel,
  1075. the MixMonitor will continue to record the audio passing through the
  1076. channel even in the presence of transfers.
  1077. NoCDR
  1078. ------------------
  1079. * The NoCDR application is deprecated. Please use the CDR_PROP function to
  1080. disable CDRs.
  1081. * While the NoCDR application will prevent CDRs for a channel from being
  1082. propagated to registered CDR backends, it will not prevent that data from
  1083. being collected. Hence, a subsequent call to ResetCDR or the CDR_PROP
  1084. function that enables CDRs on a channel will restore those records that have
  1085. not yet been finalized.
  1086. ParkAndAnnounce
  1087. -------------------
  1088. * The app_parkandannounce module has been removed. The application
  1089. ParkAndAnnounce is now provided by the res_parking module. See the
  1090. res_parking changes for more information.
  1091. Queue
  1092. -------------------
  1093. * Added queue available hint. The hint can be added to the dialplan using the
  1094. following syntax: exten,hint,Queue:{queue_name}_avail
  1095. For example, if the name of the queue is 'markq':
  1096. exten => 8501,hint,Queue:markq_avail
  1097. This will report 'InUse' if there are no logged in agents or no free agents.
  1098. It will report 'Idle' when an agent is free.
  1099. * Queues now support a hint for member paused state. The hint uses the form
  1100. 'Queue:{queue_name}_pause_{member_name}', where {queue_name} and {member_name}
  1101. are the name of the queue and the name of the member to subscribe to,
  1102. respectively. For example: exten => 8501,hint,Queue:sales_pause_mark.
  1103. Members will show as In Use when paused.
  1104. * The configuration options eventwhencalled and eventmemberstatus have been
  1105. removed. As a result, the AMI events QueueMemberStatus, AgentCalled,
  1106. AgentConnect, AgentComplete, AgentDump, and AgentRingNoAnswer will always be
  1107. sent. The "Variable" fields will also no longer exist on the Agent* events.
  1108. These events can be filtered out from a connected AMI client using the
  1109. eventfilter setting in manager.conf.
  1110. * The queue log now differentiates between blind and attended transfers. A
  1111. blind transfer will result in a BLINDTRANSFER message with the destination
  1112. context and extension. An attended transfer will result in an
  1113. ATTENDEDTRANSFER message. This message will indicate the method by which
  1114. the attended transfer was completed: "BRIDGE" for a bridge merge, "APP"
  1115. for running an application on a bridge or channel, or "LINK" for linking
  1116. two bridges together with local channels. The queue log will also now detect
  1117. externally initiated blind and attended transfers and record the transfer
  1118. status accordingly.
  1119. * When performing queue pause/unpause on an interface without specifying an
  1120. individual queue, the PAUSEALL/UNPAUSEALL event will only be logged if at
  1121. least one member of any queue exists for that interface.
  1122. * Added the 'queue_log_realtime_use_gmt' option to have timestamps in GMT
  1123. for realtime queue log entries.
  1124. ResetCDR
  1125. ------------------
  1126. * The 'e' option has been deprecated. Use the CDR_PROP function to re-enable
  1127. CDRs when they were previously disabled on a channel.
  1128. * The 'w' and 'a' options have been removed. Dispatching CDRs to registered
  1129. backends occurs on an as-needed basis in order to preserve linkedid
  1130. propagation and other needed behavior.
  1131. SayAlphaCase
  1132. ------------------
  1133. * A new application, this is similar to SayAlpha except that it supports
  1134. case sensitive playback of the specified characters. For example,
  1135. SayAlphaCase(u,aBc) will result in 'a uppercase b c'.
  1136. SetAMAFlags
  1137. ------------------
  1138. * This application is deprecated in favor of CHANNEL(amaflags).
  1139. SendDTMF
  1140. ------------------
  1141. * The SendDTMF application will now accept 'W' as valid input. This will cause
  1142. the application to delay one second while streaming DTMF.
  1143. Stasis
  1144. ------------------
  1145. * A new application in Asterisk 12, this hands control of the channel calling
  1146. the application over to an external system. Currently, external systems
  1147. manipulate channels in Stasis through the Asterisk RESTful Interface (ARI).
  1148. UserEvent
  1149. ------------------
  1150. * UserEvent will now handle duplicate keys by overwriting the previous value
  1151. assigned to the key.
  1152. * In addition to AMI, UserEvent invocations will now be distributed to any
  1153. interested Stasis applications.
  1154. VoiceMail
  1155. ------------------
  1156. * Mailboxes defined by app_voicemail MUST be referenced by the rest of the
  1157. system as mailbox@context. The rest of the system cannot add @default
  1158. to mailbox identifiers for app_voicemail that do not specify a context
  1159. any longer. It is a mailbox identifier format that should only be
  1160. interpreted by app_voicemail.
  1161. * The voicemail.conf configuration file now has an 'alias' configuration
  1162. parameter for use with the Directory application. The voicemail realtime
  1163. database table schema has also been updated with an 'alias' column.
  1164. Codecs
  1165. ------------------
  1166. * Pass through support has been added for both VP8 and Opus.
  1167. * Added format attribute negotiation for the Opus codec. Format attribute
  1168. negotiation is provided by the res_format_attr_opus module.
  1169. Core
  1170. ------------------
  1171. * Masquerades as an operation inside Asterisk have been effectively hidden
  1172. by the migration to the Bridging API. As such, many 'quirks' of Asterisk
  1173. no longer occur. This includes renaming of channels, "<ZOMBIE>" channels,
  1174. dropping of frame/audio hooks, and other internal implementation details
  1175. that users had to deal with. This fundamental change has large implications
  1176. throughout the changes documented for this version. For more information
  1177. about the new core architecture of Asterisk, please see the Asterisk wiki.
  1178. * Multiple parties in a bridge may now be transferred. If a participant in a
  1179. multi-party bridge initiates a blind transfer, a Local channel will be used
  1180. to execute the dialplan location that the transferer sent the parties to. If
  1181. a participant in a multi-party bridge initiates an attended transfer,
  1182. several options are possible. If the attended transfer results in a transfer
  1183. to an application, a Local channel is used. If the attended transfer results
  1184. in a transfer to another channel, the resulting channels will be merged into
  1185. a single bridge.
  1186. * The channel variable ATTENDED_TRANSFER_COMPLETE_SOUND is no longer channel
  1187. driver specific. If the channel variable is set on the transferrer channel,
  1188. the sound will be played to the target of an attended transfer.
  1189. * The channel variable BRIDGEPEER becomes a comma separated list of peers in
  1190. a multi-party bridge. The BRIDGEPEER value can have a maximum of 10 peers
  1191. listed. Any more peers in the bridge will not be included in the list.
  1192. BRIDGEPEER is not valid in holding bridges like parking since those channels
  1193. do not talk to each other even though they are in a bridge.
  1194. * The channel variable BRIDGEPVTCALLID is only valid for two party bridges
  1195. and will contain a value if the BRIDGEPEER's channel driver supports it.
  1196. * A channel variable ATTENDEDTRANSFER is now set which indicates which channel
  1197. was responsible for an attended transfer in a similar fashion to
  1198. BLINDTRANSFER.
  1199. * Modules using the Configuration Framework or Sorcery must have XML
  1200. configuration documentation. This configuration documentation is included
  1201. with the rest of Asterisk's XML documentation, and is accessible via CLI
  1202. commands. See the CLI changes for more information.
  1203. AMI (Asterisk Manager Interface)
  1204. ------------------
  1205. * Major changes were made to both the syntax as well as the semantics of the
  1206. AMI protocol. In particular, AMI events have been substantially improved
  1207. in this version of Asterisk. For more information, please see the AMI
  1208. specification at https://wiki.asterisk.org/wiki/x/dAFRAQ
  1209. * AMI events that reference a particular channel or bridge will now always
  1210. contain a standard set of fields. When multiple channels or bridges are
  1211. referenced in an event, fields for at least some subset of the channels
  1212. and bridges in the event will be prefixed with a descriptive name to avoid
  1213. name collisions. See the AMI event documentation on the Asterisk wiki for
  1214. more information.
  1215. * The CLI command 'manager show commands' no longer truncates command names
  1216. longer than 15 characters and no longer shows authorization requirement
  1217. for commands. 'manager show command' now displays the privileges needed
  1218. for using a given manager command instead.
  1219. * The SIPshowpeer action will now include a 'SubscribeContext' field for a
  1220. peer in its response if the peer has a subscribe context set.
  1221. * The SIPqualifypeer action now acknowledges the request once it has
  1222. established that the request is against a known peer. It also issues a new
  1223. event, 'SIPQualifyPeerDone', once the qualify action has been completed.
  1224. * The PlayDTMF action now supports an optional 'Duration' parameter. This
  1225. specifies the duration of the digit to be played, in milliseconds.
  1226. * Added VoicemailRefresh action to allow an external entity to trigger mailbox
  1227. updates when changes occur instead of requiring the use of pollmailboxes.
  1228. * Added a new action 'ControlPlayback'. The ControlPlayback action allows an
  1229. AMI client to manipulate audio currently being played back on a channel. The
  1230. supported operations depend on the application being used to send audio to
  1231. the channel. When the audio playback was initiated using the ControlPlayback
  1232. application or CONTROL STREAM FILE AGI command, the audio can be paused,
  1233. stopped, restarted, reversed, or skipped forward. When initiated by other
  1234. mechanisms (such as the Playback application), the audio can be stopped,
  1235. reversed, or skipped forward.
  1236. * Channel related events now contain a snapshot of channel state, adding new
  1237. fields to many of these events.
  1238. * The AMI event 'Newexten' field 'Extension' is deprecated, and may be removed
  1239. in a future release. Please use the common 'Exten' field instead.
  1240. * The AMI event 'UserEvent' from app_userevent now contains the channel state
  1241. fields. The channel state fields will come before the body fields.
  1242. * The AMI events 'ParkedCall', 'ParkedCallTimeOut', 'ParkedCallGiveUp', and
  1243. 'UnParkedCall' have changed significantly in the new res_parking module.
  1244. The 'Channel' and 'From' headers are gone. For the channel that was parked
  1245. or is coming out of parking, a 'Parkee' channel snapshot is issued and it
  1246. has a number of fields associated with it. The old 'Channel' header relayed
  1247. the same data as the new 'ParkeeChannel' header.
  1248. The 'From' field was ambiguous and changed meaning depending on the event.
  1249. for most of these, it was the name of the channel that parked the call
  1250. (the 'Parker'). There is no longer a header that provides this channel name,
  1251. however the 'ParkerDialString' will contain a dialstring to redial the
  1252. device that parked the call.
  1253. On UnParkedCall events, the 'From' header would instead represent the
  1254. channel responsible for retrieving the parkee. It receives a channel
  1255. snapshot labeled 'Retriever'. The 'from' field is is replaced with
  1256. 'RetrieverChannel'.
  1257. Lastly, the 'Exten' field has been replaced with 'ParkingSpace'.
  1258. * The AMI event 'Parkinglot' (response to 'Parkinglots' command) in a similar
  1259. fashion has changed the field names 'StartExten' and 'StopExten' to
  1260. 'StartSpace' and 'StopSpace' respectively.
  1261. * The deprecated use of | (pipe) as a separator in the channelvars setting in
  1262. manager.conf has been removed.
  1263. * Channel Variables conveyed with a channel no longer contain the name of the
  1264. channel as part of the key field, i.e., ChanVariable(SIP/foo): bar=baz is now
  1265. ChanVariable: bar=baz. When multiple channels are present in a single AMI
  1266. event, the various ChanVariable fields will contain a suffix that specifies
  1267. which channel they correspond to.
  1268. * The NewPeerAccount AMI event is no longer raised. The NewAccountCode AMI
  1269. event always conveys the AMI event for a particular channel.
  1270. * All 'Reload' events have been consolidated into a single event type. This
  1271. event will always contain a Module field specifying the name of the module
  1272. and a Status field denoting the result of the reload. All modules now issue
  1273. this event when being reloaded.
  1274. * The 'ModuleLoadReport' event has been removed. Most AMI connections would
  1275. fail to receive this event due to being connected after modules have loaded.
  1276. AMI connections that want to know when Asterisk is ready should listen for
  1277. the 'FullyBooted' event.
  1278. * app_fax now sends the same send fax/receive fax events as res_fax. The
  1279. 'FaxSent' event is now the 'SendFAX' event, and the 'FaxReceived' event is
  1280. now the 'ReceiveFAX' event.
  1281. * The 'MusicOnHold' event is now two events: 'MusicOnHoldStart' and
  1282. 'MusicOnHoldStop'. The sub type field has been removed.
  1283. * The 'JabberEvent' event has been removed. It is not AMI's purpose to be a
  1284. carrier for another protocol.
  1285. * The Bridge Manager action's 'Playtone' header now accepts more fine-grained
  1286. options. 'Channel1' and 'Channel2' may be specified in order to play a tone
  1287. to the specific channel. 'Both' may be specified to play a tone to both
  1288. channels. The old 'yes' option is still accepted as a way of playing the
  1289. tone to Channel2 only.
  1290. * The AMI 'Status' response event to the AMI Status action replaces the
  1291. 'BridgedChannel' and 'BridgedUniqueid' headers with the 'BridgeID' header to
  1292. indicate what bridge the channel is currently in.
  1293. * The AMI 'Hold' event has been moved out of individual channel drivers, into
  1294. core, and is now two events: 'Hold' and 'Unhold'. The status field has been
  1295. removed.
  1296. * The AMI events in app_queue have been made more consistent with each other.
  1297. Events that reference channels (QueueCaller* and Agent*) will show
  1298. information about each channel. The (infamous) 'Join' and 'Leave' AMI
  1299. events have been changed to 'QueueCallerJoin' and 'QueueCallerLeave'.
  1300. * The 'MCID' AMI event now publishes a channel snapshot when available and
  1301. its non-channel-snapshot parameters now use either the "MCallerID" or
  1302. 'MConnectedID' prefixes with Subaddr*, Name*, and Num* suffixes instead
  1303. of 'CallerID' and 'ConnectedID' to avoid confusion with similarly named
  1304. parameters in the channel snapshot.
  1305. * The AMI events 'Agentlogin' and 'Agentlogoff' have been renamed
  1306. 'AgentLogin' and 'AgentLogoff' respectively.
  1307. * The 'Channel' key used in the 'AlarmClear', 'Alarm', and 'DNDState' has been
  1308. renamed "DAHDIChannel" since it does not convey an Asterisk channel name.
  1309. * 'ChannelUpdate' events have been removed.
  1310. * All AMI events now contain a 'SystemName' field, if available.
  1311. * Local channel optimization is now conveyed in two events:
  1312. 'LocalOptimizationBegin' and 'LocalOptimizationEnd'. The Begin event is sent
  1313. when the Local channel driver begins attempting to optimize itself out of
  1314. the media path; the End event is sent after the channel halves have
  1315. successfully optimized themselves out of the media path.
  1316. * Local channel information in events is now prefixed with 'LocalOne' and
  1317. 'LocalTwo'. This replaces the suffix of '1' and '2' for the two halves of
  1318. the Local channel. This affects the 'LocalBridge', 'LocalOptimizationBegin',
  1319. and 'LocalOptimizationEnd' events.
  1320. * The option 'allowmultiplelogin' can now be set or overriden in a particular
  1321. account. When set in the general context, it will act as the default
  1322. setting for defined accounts.
  1323. * The 'BridgeAction' event was removed. It technically added no value, as the
  1324. Bridge Action already receives confirmation of the bridge through a
  1325. successful completion Event.
  1326. * The 'BridgeExec' events were removed. These events duplicated the events that
  1327. occur in the Briding API, and are conveyed now through BridgeCreate,
  1328. BridgeEnter, and BridgeLeave events.
  1329. * The 'RTCPSent'/'RTCPReceived' events have been significantly modified from
  1330. previous versions. They now report all SR/RR packets sent/received, and
  1331. have been restructured to better reflect the data sent in a SR/RR. In
  1332. particular, the event structure now supports multiple report blocks.
  1333. * Added 'BlindTransfer' and 'AttendedTransfer' events. These events are
  1334. raised when a blind transfer/attended transfer completes successfully.
  1335. They contain information about the transfer that just completed, including
  1336. the location of the transfered channel.
  1337. * Added a 'security' class to AMI which outputs the required fields for
  1338. security messages similar to the log messages from res_security_log
  1339. * The AMI event 'ExtensionStatus' now contains a 'StatusText' field
  1340. that describes the status value in a human readable string.
  1341. CDR (Call Detail Records)
  1342. ------------------
  1343. * Significant changes have been made to the behavior of CDRs. The CDR engine
  1344. was effectively rewritten and built on the Stasis message bus. For a full
  1345. definition of CDR behavior in Asterisk 12, please read the specification
  1346. on the Asterisk wiki (wiki.asterisk.org).
  1347. * CDRs will now be created between all participants in a bridge. For each
  1348. pair of channels in a bridge, a CDR is created to represent the path of
  1349. communication between those two endpoints. This lets an end user choose who
  1350. to bill for what during bridge operations with multiple parties.
  1351. * The duration, billsec, start, answer, and end times now reflect the times
  1352. associated with the current CDR for the channel, as opposed to a cumulative
  1353. measurement of all CDRs for that channel.
  1354. * When a CDR is dispatched, user defined CDR variables from both parties are
  1355. included in the resulting CDR. If both parties have the same variable, only
  1356. the Party A value is provided.
  1357. * Added a new option to cdr.conf, 'debug'. When enabled, significantly more
  1358. information regarding the CDR engine is logged as verbose messages. This
  1359. option should only be used if the behavior of the CDR engine needs to be
  1360. debugged.
  1361. * Added CLI command 'cdr set debug {on|off}'. This toggles the 'debug' setting
  1362. normally configured in cdr.conf.
  1363. * Added CLI command 'cdr show active {channel}'. When {channel} is not
  1364. specified, this command provides a summary of the channels with CDR
  1365. information and their statistics. When {channel} is specified, it shows
  1366. detailed information about all records associated with {channel}.
  1367. CEL (Channel Event Logging)
  1368. ------------------
  1369. * CEL has undergone significant rework in Asterisk 12, and is now built on the
  1370. Stasis message bus. Please see the specification for CEL on the Asterisk
  1371. wiki at https://wiki.asterisk.org/wiki/x/4ICLAQ for more detailed
  1372. information.
  1373. * The 'extra' field of all CEL events that use it now consists of a JSON blob
  1374. with key/value pairs which are defined in the Asterisk 12 CEL documentation.
  1375. * BLINDTRANSFER events now report the transferee bridge unique
  1376. identifier, extension, and context in a JSON blob as the extra string
  1377. instead of the transferee channel name as the peer.
  1378. * ATTENDEDTRANSFER events now report the peer as NULL and additional
  1379. information in the 'extra' string as a JSON blob. For transfers that occur
  1380. between two bridged channels, the 'extra' JSON blob contains the primary
  1381. bridge unique identifier, the secondary channel name, and the secondary
  1382. bridge unique identifier. For transfers that occur between a bridged channel
  1383. and a channel running an app, the 'extra' JSON blob contains the primary
  1384. bridge unique identifier, the secondary channel name, and the app name.
  1385. * LOCAL_OPTIMIZE events have been added to convey local channel
  1386. optimizations with the record occurring for the semi-one channel and
  1387. the semi-two channel name in the peer field.
  1388. * BRIDGE_START, BRIDGE_END, BRIDGE_UPDATE, 3WAY_START, 3WAY_END, CONF_ENTER,
  1389. CONF_EXIT, CONF_START, and CONF_END events have all been removed. These
  1390. events have been replaced by BRIDGE_ENTER/BRIDGE_EXIT. The BRIDGE_ENTER
  1391. and BRIDGE_EXIT events are raised when a channel enters/exits any bridge,
  1392. regardless of whether or not that bridge happens to contain multiple
  1393. parties.
  1394. CLI
  1395. -------------------
  1396. * When compiled with '--enable-dev-mode', the astobj2 library will now add
  1397. several CLI commands that allow for inspection of ao2 containers that
  1398. register themselves with astobj2. The CLI commands are 'astobj2 container
  1399. dump', 'astobj2 container stats', and 'astobj2 container check'.
  1400. * Added specific CLI commands for bridge inspection. This includes 'bridge
  1401. show all', which lists all bridges in the system, and 'bridge show {id}',
  1402. which provides specific information about a bridge.
  1403. * Added CLI command 'bridge destroy'. This will destroy the specified bridge,
  1404. ejecting the channels currently in the bridge. If the channels cannot
  1405. continue in the dialplan or application that put them in the bridge, they
  1406. will be hung up.
  1407. * Added command 'bridge kick'. This will eject a single channel from a bridge.
  1408. * Added commands to inspect and manipulate the registered bridge technologies.
  1409. This include 'bridge technology show', which lists the registered bridge
  1410. technologies, as well as 'bridge technology {suspend|unsuspend} {tech}',
  1411. which controls whether or not a registered bridge technology can be used
  1412. during smart bridge operations. If a technology is suspended, it will not
  1413. be used when a bridge technology is picked for channels; when unsuspended,
  1414. it can be used again.
  1415. * The command 'config show help {module} {type} {option}' will show
  1416. configuration documentation for modules with XML configuration
  1417. documentation. When {module}, {type}, and {option} are omitted, a listing
  1418. of all modules with registered documentation is displayed. When {module}
  1419. is specified, a listing of all configuration types for that module is
  1420. displayed, along with their synopsis. When {module} and {type} are
  1421. specified, a listing of all configuration options for that type are
  1422. displayed along with their synopsis. When {module}, {type}, and {option}
  1423. are specified, detailed information for that configuration option is
  1424. displayed.
  1425. * Added 'core show sounds' and 'core show sound' CLI commands. These display
  1426. a listing of all installed media sounds available on the system and
  1427. detailed information about a sound, respectively.
  1428. * 'xmldoc dump' has been added. This CLI command will dump the XML
  1429. documentation DOM as a string to the specified file. The Asterisk core
  1430. will populate certain XML elements pulled from the source files with
  1431. additional run-time information; this command lets a user produce the
  1432. XML documentation with all information.
  1433. Features
  1434. -------------------
  1435. * Parking has been pulled from core and placed into a separate module called
  1436. res_parking. See Parking changes below for more details. Configuration for
  1437. parking should now be performed in res_parking.conf. Configuration for
  1438. parking in features.conf is now unsupported.
  1439. * Core attended transfers now have several new options. While performing an
  1440. attended transfer, the transferer now has the following options:
  1441. - *1 - cancel the attended transfer (configurable via atxferabort)
  1442. - *2 - complete the attended transfer, dropping out of the call
  1443. (configurable via atxfercomplete)
  1444. - *3 - complete the attended transfer, but stay in the call. This will turn
  1445. the call into a multi-party bridge (configurable via atxferthreeway)
  1446. - *4 - swap to the other party. Once an attended transfer has begun, this
  1447. options may be used multiple times (configurable via atxferswap)
  1448. * For DTMF blind and attended transfers, the channel variable TRANSFER_CONTEXT
  1449. must be on the channel initiating the transfer to have any effect.
  1450. * The BRIDGE_FEATURES channel variable would previously only set features for
  1451. the calling party and would set this feature regardless of whether the
  1452. feature was in caps or in lowercase. Use of a caps feature for a letter
  1453. will now apply the feature to the calling party while use of a lowercase
  1454. letter will apply that feature to the called party.
  1455. * Add support for automixmon to the BRIDGE_FEATURES channel variable.
  1456. * The channel variable DYNAMIC_PEERNAME is redundant with BRIDGEPEER and is
  1457. removed. The more useful DYNAMIC_WHO_ACTIVATED gives the channel name that
  1458. activated the dynamic feature.
  1459. * The channel variables DYNAMIC_FEATURENAME and DYNAMIC_WHO_ACTIVATED are set
  1460. only on the channel executing the dynamic feature. Executing a dynamic
  1461. feature on the bridge peer in a multi-party bridge will execute it on all
  1462. peers of the activating channel.
  1463. * You can now have the settings for a channel updated using the FEATURE()
  1464. and FEATUREMAP() functions inherited to child channels by setting
  1465. FEATURE(inherit)=yes.
  1466. * automixmon now supports additional channel variables from automon including:
  1467. TOUCH_MIXMONITOR_PREFIX, TOUCH_MIXMONITOR_MESSAGE_START,
  1468. and TOUCH_MIXMONITOR_MESSAGE_STOP
  1469. * A new general features.conf option 'recordingfailsound' has been added which
  1470. allowssetting a failure sound for a user tries to invoke a recording feature
  1471. such as automon or automixmon and it fails.
  1472. * It is no longer necessary (or possible) to define the ATXFER_NULL_TECH in
  1473. features.c for atxferdropcall=no to work properly. This option now just
  1474. works.
  1475. Logging
  1476. -------------------
  1477. * Added log rotation strategy 'none'. If set, no log rotation strategy will
  1478. be used. Given that this can cause the Asterisk log files to grow quickly,
  1479. this option should only be used if an external mechanism for log management
  1480. is preferred.
  1481. Realtime
  1482. ------------------
  1483. * Dynamic realtime tables for SIP Users can now include a 'path' field. This
  1484. will store the path information for that peer when it registers. Realtime
  1485. tables can also use the 'supportpath' field to enable Path header support.
  1486. * LDAP realtime configurations for SIP Users now have the AstAccountPathSupport
  1487. objectIdentifier. This maps to the supportpath option in sip.conf.
  1488. Sorcery
  1489. ------------------
  1490. * Sorcery is a new data abstraction and object persistence API in Asterisk. It
  1491. provides modules a useful abstraction on top of the many storage mechanisms
  1492. in Asterisk, including the Asterisk Database, static configuration files,
  1493. static Realtime, and dynamic Realtime. It also provides a caching service.
  1494. Users can configure a hierarchy of data storage layers for specific modules
  1495. in sorcery.conf.
  1496. * All future modules which utilize Sorcery for object persistence must have a
  1497. column named "id" within their schema when using the Sorcery realtime module.
  1498. This column must be able to contain a string of up to 128 characters in length.
  1499. Security Events Framework
  1500. ------------------
  1501. * Security Event timestamps now use ISO 8601 formatted date/time instead of
  1502. the "seconds-microseconds" format that it was using previously.
  1503. Stasis Message Bus
  1504. ------------------
  1505. * The Stasis message bus is a publish/subscribe message bus internal to
  1506. Asterisk. Many services in Asterisk are built on the Stasis message bus,
  1507. including AMI, ARI, CDRs, and CEL. Parameters controlling the operation of
  1508. Stasis can be configured in stasis.conf. Note that these parameters operate
  1509. at a very low level in Asterisk, and generally will not require changes.
  1510. Channel Drivers
  1511. ------------------
  1512. * When a channel driver is configured to enable jiterbuffers, they are now
  1513. applied unconditionally when a channel joins a bridge. If a jitterbuffer
  1514. is already set for that channel when it enters, such as by the JITTERBUFFER
  1515. function, then the existing jitterbuffer will be used and the one set by
  1516. the channel driver will not be applied.
  1517. chan_agent
  1518. ------------------
  1519. * chan_agent has been removed and replaced with AgentLogin and AgentRequest
  1520. dialplan applications provided by the app_agent_pool module. Agents are
  1521. connected with callers using the new AgentRequest dialplan application.
  1522. The Agents:<agent-id> device state is available to monitor the status of an
  1523. agent. See agents.conf.sample for valid configuration options.
  1524. * The updatecdr option has been removed. Altering the names of channels on a
  1525. CDR is not supported - the name of the channel is the name of the channel,
  1526. and pretending otherwise helps no one. The AGENTUPDATECDR channel variable
  1527. has also been removed, for the same reason.
  1528. * The endcall and enddtmf configuration options are removed. Use the
  1529. dialplan function CHANNEL(dtmf-features) to set DTMF features on the agent
  1530. channel before calling AgentLogin.
  1531. chan_bridge
  1532. ------------------
  1533. * chan_bridge has been removed. Its functionality has been incorporated
  1534. directly into the ConfBridge application itself.
  1535. chan_dahdi
  1536. ------------------
  1537. * Added the CLI command 'pri destroy span'. This will destroy the D-channel
  1538. of the specified span and its B-channels. Note that this command should
  1539. only be used if you understand the risks it entails.
  1540. * The CLI command 'dahdi destroy channel' is now 'dahdi destroy channels'.
  1541. A range of channels can be specified to be destroyed. Note that this command
  1542. should only be used if you understand the risks it entails.
  1543. * Added the CLI command 'dahdi create channels'. A range of channels can be
  1544. specified to be created, or the keyword 'new' can be used to add channels
  1545. not yet created.
  1546. * The script specified by the chan_dahdi.conf mwimonitornotify option now gets
  1547. the exact configured mailbox name. For app_voicemail mailboxes this is
  1548. mailbox@context.
  1549. * Added mwi_vm_boxes that also must be configured for ISDN MWI to be enabled.
  1550. chan_iax2
  1551. ------------------
  1552. * IPv6 support has been added. We are now able to bind to and
  1553. communicate using IPv6 addresses.
  1554. chan_local
  1555. ------------------
  1556. * The /b option has been removed.
  1557. * chan_local moved into the system core and is no longer a loadable module.
  1558. chan_mobile
  1559. ------------------
  1560. * Added general support for busy detection.
  1561. * Added ECAM command support for Sony Ericsson phones.
  1562. chan_pjsip
  1563. ------------------
  1564. * A new SIP channel driver for Asterisk, chan_pjsip is built on the PJSIP
  1565. SIP stack. A collection of resource modules provides the bulk of the SIP
  1566. functionality. For more information on the new SIP channel driver, see
  1567. https://wiki.asterisk.org/wiki/x/JYGLAQ
  1568. chan_sip
  1569. ------------------
  1570. * Added support for RFC 3327 "Path" headers. This can be enabled in sip.conf
  1571. using the 'supportpath' setting, either on a global basis or on a peer basis.
  1572. This setting enables Asterisk to route outgoing out-of-dialog requests via a
  1573. set of proxies by using a pre-loaded route-set defined by the Path headers in
  1574. the REGISTER request. See Realtime updates for more configuration information.
  1575. * The SIP_CODEC family of variables may now specify more than one codec. Each
  1576. codec must be separated by a comma. The first codec specified is the
  1577. preferred codec for the offer. This allows a dialplan writer to specify both
  1578. audio and video codecs, e.g., Set(SIP_CODEC=ulaw,h264)
  1579. * The 'callevents' parameter has been removed. Hold AMI events are now raised
  1580. in the core, and can be filtered out using the 'eventfilter' parameter
  1581. in manager.conf.
  1582. * Added 'ignore_requested_pref'. When enabled, this will use the preferred
  1583. codecs configured for a peer instead of the requested codec.
  1584. * The option "register_retry_403" has been added to chan_sip to work around
  1585. servers that are known to erroneously send 403 in response to valid
  1586. REGISTER requests and allows Asterisk to continue attepmting to connect.
  1587. chan_skinny
  1588. ------------------
  1589. * Added the 'immeddialkey' parameter. If set, when the user presses the
  1590. configured key the already entered number will be immediately dialed. This
  1591. is useful when the dialplan allows for variable length pattern matching.
  1592. Valid options are '*' and '#'.
  1593. * Added the 'callfwdtimeout' parameter. This configures the amount of time (in
  1594. milliseconds) before a call forward is considered to not be answered.
  1595. * The 'serviceurl' parameter allows Service URLs to be attached to line
  1596. buttons.
  1597. Functions
  1598. ------------------
  1599. AGENT
  1600. ------------------
  1601. * The password option has been disabled, as the AgentLogin application no
  1602. longer provides authentication.
  1603. AUDIOHOOK_INHERIT
  1604. ------------------
  1605. * Due to changes in the Asterisk core, this function is no longer needed to
  1606. preserve a MixMonitor on a channel during transfer operations and dialplan
  1607. execution. It is effectively obsolete.
  1608. CDR (function)
  1609. ------------------
  1610. * The 'amaflags' and 'accountcode' attributes for the CDR function are
  1611. deprecated. Use the CHANNEL function instead to access these attributes.
  1612. * The 'l' option has been removed. When reading a CDR attribute, the most
  1613. recent record is always used. When writing a CDR attribute, all non-finalized
  1614. CDRs are updated.
  1615. * The 'r' option has been removed, for the same reason as the 'l' option.
  1616. * The 's' option has been removed, as LOCKED semantics no longer exist in the
  1617. CDR engine.
  1618. CDR_PROP
  1619. ------------------
  1620. * A new function CDR_PROP has been added. This function lets you set properties
  1621. on a channel's active CDRs. This function is write-only. Properties accept
  1622. boolean values to set/clear them on the channel's CDRs. Valid properties
  1623. include:
  1624. - 'party_a' - make this channel the preferred Party A in any CDR between two
  1625. channels. If two channels have this property set, the creation time of the
  1626. channel is used to determine who is Party A. Note that dialed channels are
  1627. never Party A in a CDR.
  1628. - 'disable' - disable CDRs on this channel. This is analogous to the NoCDR
  1629. application when set to True, and analogous to the 'e' option in ResetCDR
  1630. when set to False.
  1631. CHANNEL
  1632. ------------------
  1633. * Added the argument 'dtmf_features'. This sets the DTMF features that will be
  1634. enabled on a channel when it enters a bridge. Allowed values are 'T', 'K',
  1635. 'H', 'W', and 'X', and are analogous to the parameters passed to the Dial
  1636. application.
  1637. * Added the argument 'after_bridge_goto'. This can be set to a parseable Goto
  1638. string, i.e., [[context],extension],priority. If set on a channel, if a
  1639. channel leaves a bridge but is not hung up it will resume dialplan execution
  1640. at that location.
  1641. JITTERBUFFER
  1642. ------------------
  1643. * JITTERBUFFER now accepts an argument of 'disabled' which can be used
  1644. to remove jitterbuffers previously set on a channel with JITTERBUFFER.
  1645. The value of this setting is ignored when disabled is used for the argument.
  1646. PJSIP_DIAL_CONTACTS
  1647. ------------------
  1648. * A new function provided by chan_pjsip, this function can be used in
  1649. conjunction with the Dial application to construct a dial string that will
  1650. dial all contacts on an Address of Record associated with a chan_pjsip
  1651. endpoint.
  1652. PJSIP_MEDIA_OFFER
  1653. ------------------
  1654. * Provided by chan_pjsip, this function sets the codecs to be offerred on the
  1655. outbound channel prior to dialing.
  1656. REDIRECTING
  1657. ------------------
  1658. * Redirecting reasons can now be set to arbitrary strings. This means
  1659. that the REDIRECTING dialplan function can be used to set the redirecting
  1660. reason to any string. It also allows for custom strings to be read as the
  1661. redirecting reason from SIP Diversion headers.
  1662. SPEECH_ENGINE
  1663. ------------------
  1664. * The SPEECH_ENGINE function now supports read operations. When read from, it
  1665. will return the current value of the requested attribute.
  1666. VMCOUNT:
  1667. ------------------
  1668. * Mailboxes defined by app_voicemail MUST be referenced by the rest of the
  1669. system as mailbox@context. The rest of the system cannot add @default
  1670. to mailbox identifiers for app_voicemail that do not specify a context
  1671. any longer. It is a mailbox identifier format that should only be
  1672. interpreted by app_voicemail.
  1673. Resources
  1674. ------------------
  1675. res_agi (Asterisk Gateway Interface)
  1676. ------------------
  1677. * The manager event AGIExec has been split into AGIExecStart and AGIExecEnd.
  1678. * The manager event AsyncAGI has been split into AsyncAGIStart, AsyncAGIExec,
  1679. and AsyncAGIEnd.
  1680. * The CONTROL STREAM FILE command now accepts an offsetms parameter. This
  1681. will start the playback of the audio at the position specified. It will
  1682. also return the final position of the file in 'endpos'.
  1683. * The CONTROL STREAM FILE command will now populate the CPLAYBACKSTATUS
  1684. channel variable if the user stopped the file playback or if a remote
  1685. entity stopped the playback. If neither stopped the playback, it will
  1686. indicate the overall success/failure of the playback. If stopped early,
  1687. the final offset of the file will be set in the CPLAYBACKOFFSET channel
  1688. variable.
  1689. * The SAY ALPHA command now accepts an additional parameter to control
  1690. whether it specifies the case of uppercase, lowercase, or all letters to
  1691. provide functionality similar to SayAlphaCase.
  1692. res_ari (Asterisk RESTful Interface) (and others)
  1693. ------------------
  1694. * The Asterisk RESTful Interface (ARI) provides a mechanism to expose and
  1695. control telephony primitives in Asterisk by remote client. This includes
  1696. channels, bridges, endpoints, media, and other fundamental concepts. Users
  1697. of ARI can develop their own communications applications, controlling
  1698. multiple channels using an HTTP RESTful interface and receiving JSON events
  1699. about the objects via a WebSocket connection. ARI can be configured in
  1700. Asterisk via ari.conf. For more information on ARI, see
  1701. https://wiki.asterisk.org/wiki/x/0YCLAQ
  1702. res_parking
  1703. -------------------
  1704. * Parking has been extracted from the Asterisk core as a loadable module,
  1705. res_parking. Configuration for parking is now provided by res_parking.conf.
  1706. Configuration through features.conf is no longer supported.
  1707. * res_parking uses the configuration framework. If an invalid configuration is
  1708. supplied, res_parking will fail to load or fail to reload. Previously,
  1709. invalid configurations would generally be accepted, with certain errors
  1710. resulting in individually disabled parking lots.
  1711. * Parked calls are now placed in bridges. While this is largely an
  1712. architectural change, it does have implications on how channels in a parking
  1713. lot are viewed. For example, commands that display channels in bridges will
  1714. now also display the channels in a parking lot.
  1715. * The order of arguments for the new parking applications have been modified.
  1716. Timeout and return context/exten/priority are now implemented as options,
  1717. while the name of the parking lot is now the first parameter. See the
  1718. application documentation for Park, ParkedCall, and ParkAndAnnounce for more
  1719. in-depth information as well as syntax.
  1720. * Extensions are by default no longer automatically created in the dialplan to
  1721. park calls or pickup parked calls. Generation of dialplan extensions can be
  1722. enabled using the 'parkext' configuration option.
  1723. * ADSI functionality for parking is no longer supported. The 'adsipark'
  1724. configuration option has been removed as a result.
  1725. * The PARKINGSLOT channel variable has been deprecated in favor of
  1726. PARKING_SPACE to match the naming scheme of the new system.
  1727. * PARKING_SPACE and PARKEDLOT channel variables will now be set for a parked
  1728. channel even when the configuration option 'comebactoorigin' is enabled.
  1729. * A new CLI command 'parking show' has been added. This allows a user to
  1730. inspect the parking lots that are currently in use.
  1731. 'parking show <parkinglot>' will also show the parked calls in a specific
  1732. parking lot.
  1733. * The CLI command 'parkedcalls' is now deprecated in favor of
  1734. 'parking show <parkinglot>'.
  1735. * The AMI command 'ParkedCalls' will now accept a 'ParkingLot' argument which
  1736. can be used to get a list of parked calls for a specific parking lot.
  1737. * The AMI command 'Park' field 'Channel2' has been deprecated and replaced
  1738. with 'TimeoutChannel'. If both 'Channel2' and 'TimeoutChannel' are
  1739. specified, 'TimeoutChannel' will be used. The field 'TimeoutChannel' is no
  1740. longer a required argument.
  1741. * The ParkAndAnnounce application is now provided through res_parking instead
  1742. of through the separate app_parkandannounce module.
  1743. * ParkAndAnnounce will no longer go to the next position in dialplan on timeout
  1744. by default. Instead, it will follow the timeout rules of the parking lot. The
  1745. old behavior can be reproduced by using the 'c' option.
  1746. * Dynamic parking lots will now fail to be created under the following
  1747. conditions:
  1748. - if the parking lot specified by PARKINGDYNAMIC does not exist
  1749. - if they require exclusive park and parkedcall extensions which overlap
  1750. with existing parking lots.
  1751. * Dynamic parking lots will be cleared on reload for dynamic parking lots that
  1752. currently contain no calls. Dynamic parking lots containing parked calls
  1753. will persist through the reloads without alteration.
  1754. * If 'parkext_exclusive' is set for a parking lot and that extension is
  1755. already in use when that parking lot tries to register it, this is now
  1756. considered a parking system configuration error. Configurations which do
  1757. this will be rejected.
  1758. * Added channel variable PARKER_FLAT. This contains the name of the extension
  1759. that would be used if 'comebacktoorigin' is enabled. This can be useful when
  1760. comebacktoorigin is disabled, but the dialplan or an external control
  1761. mechanism wants to use the extension in the park-dial context that was
  1762. generated to re-dial the parker on timeout.
  1763. res_pjsip (and many others)
  1764. ------------------
  1765. * A large number of resource modules make up the SIP stack based on pjsip.
  1766. The chan_pjsip channel driver users these resource modules to provide
  1767. various SIP functionality in Asterisk. The majority of configuration for
  1768. these modules is performed in pjsip.conf. Other modules may use their
  1769. own configuration files.
  1770. * Added 'set_var' option for an endpoint. For each variable specified that
  1771. variable gets set upon creation of a channel involving the endpoint.
  1772. res_rtp_asterisk
  1773. ------------------
  1774. * ICE/STUN/TURN support in res_rtp_asterisk has been made optional. To enable
  1775. them, an Asterisk-specific version of PJSIP needs to be installed.
  1776. Tarballs are available from https://github.com/asterisk/pjproject/tags/.
  1777. res_statsd/res_chan_stats
  1778. ------------------
  1779. * A new resource module, res_statsd, has been added, which acts as a statsd
  1780. client. This module allows Asterisk to publish statistics to a statsd
  1781. server. In conjunction with res_chan_stats, it will publish statistics about
  1782. channels to the statsd server. It can be configured via res_statsd.conf.
  1783. res_xmpp
  1784. ------------------
  1785. * Device state for XMPP buddies is now available using the following format:
  1786. XMPP/<client name>/<buddy address>
  1787. If any resource is available the device state is considered to be not in use.
  1788. If no resources exist or all are unavailable the device state is considered
  1789. to be unavailable.
  1790. Scripts
  1791. ------------------
  1792. Realtime/Database Scripts
  1793. ------------------
  1794. * Asterisk previously included example db schemas in the contrib/realtime/
  1795. directory of the source tree. This has been replaced by a set of database
  1796. migrations using the Alembic framework. This allows you to use alembic to
  1797. initialize the database for you. It will also serve as a database migration
  1798. tool when upgrading Asterisk in the future.
  1799. See contrib/ast-db-manage/README.md for more details.
  1800. sip_to_res_pjsip.py
  1801. -------------------
  1802. * A new script has been added in the contrib/scripts/sip_to_res_pjsip folder.
  1803. This python script will convert an existing sip.conf file to a
  1804. pjsip.conf file, for use with the chan_pjsip channel driver. This script
  1805. is meant to be an aid in converting an existing chan_sip configuration to
  1806. a chan_pjsip configuration, but it is expected that configuration beyond
  1807. what the script provides will be needed.
  1808. ------------------------------------------------------------------------------
  1809. --- Functionality changes from Asterisk 10 to Asterisk 11 --------------------
  1810. ------------------------------------------------------------------------------
  1811. Build System
  1812. -------------------
  1813. * The Asterisk build system will now build and install a shared library
  1814. (libasteriskssl.so) used to wrap various initialization and shutdown functions
  1815. from the libssl and libcrypto libraries provided by OpenSSL. This is done so
  1816. that Asterisk can ensure that these functions do *not* get called by any
  1817. modules that are loaded into Asterisk, since they should only be called once
  1818. in any single process. If desired, this feature can be disabled by supplying
  1819. the "--disable-asteriskssl" option to the configure script.
  1820. * A new make target, 'full', has been added to the Makefile. This performs
  1821. the same compilation actions as make all, but will also scan the entirety of
  1822. each source file for documentation. This option is needed to generate AMI
  1823. event documentation. Note that your system must have Python in order for
  1824. this make target to succeed.
  1825. * The optimization portion of the build system has been reworked to avoid
  1826. broken builds on certain architectures. All architecture-specific
  1827. optimization has been removed in favor of using -march=native to allow gcc
  1828. to detect the environment in which it is running when possible. This can
  1829. be toggled as BUILD_NATIVE under "Compiler Flags" in menuselect.
  1830. * BUILD_CFLAGS and BUILD_LDFLAGS can now be passed to menuselect, e.g.,
  1831. make BUILD_CFLAGS="whatever" BUILD_LDFLAGS="whatever"
  1832. * Remove "asterisk/version.h" in favor of "asterisk/ast_version.h". If you
  1833. previously parsed the header file to obtain the version of Asterisk, you
  1834. will now have to go through Asterisk to get the version information.
  1835. Applications
  1836. -------------------
  1837. Bridge
  1838. -------------------
  1839. * Added 'F()' option. Similar to the dial option, this can be supplied with
  1840. arguments indicating where the callee should go after the caller is hung up,
  1841. or without options specified, the priority after the Queue will be used.
  1842. ConfBridge
  1843. -------------------
  1844. * Added menu action admin_toggle_mute_participants. This will mute / unmute
  1845. all non-admin participants on a conference. The confbridge configuration
  1846. file also allows for the default sounds played to all conference users when
  1847. this occurs to be overriden using sound_participants_unmuted and
  1848. sound_participants_muted.
  1849. * Added menu action participant_count. This will playback the number of
  1850. current participants in a conference.
  1851. * Added announcement configuration option to user profile. If set the sound
  1852. file will be played to the user, and only the user, upon joining the
  1853. conference bridge.
  1854. * Added record_file_append option that defaults to "yes", but if set to no
  1855. will create a new file between each start/stop recording.
  1856. Dial
  1857. -------------------
  1858. * Added 'b' and 'B' options to Dial that execute a Gosub on callee and caller
  1859. channels respectively before the callee channels are called.
  1860. ExternalIVR
  1861. -------------------
  1862. * Added support for IPv6.
  1863. * Add interrupt ('I') command to ExternalIVR. Sending this command from an
  1864. external process will cause the current playlist to be cleared, including
  1865. stopping any audio file that is currently playing. This is useful when you
  1866. want to interrupt audio playback only when specific DTMF is entered by the
  1867. caller.
  1868. FollowMe
  1869. -------------------
  1870. * A new option, 'I' has been added to app_followme. By setting this option,
  1871. Asterisk will not update the caller with connected line changes when they
  1872. occur. This is similar to app_dial and app_queue.
  1873. * The 'N' option is now ignored if the call is already answered.
  1874. * Added 'b' and 'B' options to FollowMe that execute a Gosub on callee
  1875. and caller channels respectively before the callee channels are called.
  1876. * The winning FollowMe outgoing call is now put on hold if the caller put it on
  1877. hold.
  1878. MixMonitor
  1879. ------------------
  1880. * MixMonitor hooks now have IDs associated with them which can be used to
  1881. assign a target to StopMixMonitor. Use of MixMonitor's i(variable) option
  1882. will allow storage of the MixMontior ID in a channel variable. StopMixmonitor
  1883. now accepts that ID as an argument.
  1884. * Added 'm' option, which stores a copy of the recording as a voicemail in the
  1885. indicated mailboxes.
  1886. MySQL
  1887. -------------------
  1888. * The connect action in app_mysql now allows you to specify a port number to
  1889. connect to. This is useful if you run a MySQL server on a non-standard
  1890. port number.
  1891. OSP Applications
  1892. -------------------
  1893. * Increased the default number of allowed destinations from 5 to 12.
  1894. Page
  1895. -------------------
  1896. * The app_page application now no longer depends on DAHDI or app_meetme. It
  1897. has been re-architected to use app_confbridge internally.
  1898. Queue
  1899. -------------------
  1900. * Added queue options autopausebusy and autopauseunavail for automatically
  1901. pausing a queue member when their device reports busy or congestion.
  1902. * The 'ignorebusy' option for queue members has been deprecated in favor of
  1903. the option 'ringinuse. Also a 'queue set ringinuse' CLI command has been
  1904. added as well as an AMI action 'QueueMemberRingInUse' to set this variable on a
  1905. per interface basis. Individual ringinuse values can now be set in
  1906. queues.conf via an argument to member definitions. Lastly, the queue
  1907. 'ringinuse' setting now only determines defaults for the per member
  1908. 'ringinuse' setting and does not override per member settings like it does
  1909. in earlier versions.
  1910. * Added 'F()' option. Similar to the dial option, this can be supplied with
  1911. arguments indicating where the callee should go after the caller is hung up,
  1912. or without options specified, the priority after the Queue will be used.
  1913. * Added new option log_member_name_as_agent, which will cause the membername to
  1914. be logged in the agent field for ADDMEMBER and REMOVEMEMBER queue events if a
  1915. state_interface has been set.
  1916. * Add queue monitoring hints. exten => 8501,hint,Queue:markq.
  1917. * App_queue will now play periodic announcements for the caller that
  1918. holds the first position in the queue while waiting for answer.
  1919. SayUnixTime
  1920. ------------------
  1921. * Added 'j' option to SayUnixTime. SayUnixTime no longer auto jumps to extension
  1922. when receiving DTMF. Use the 'j' option to enable extension jumping. Also
  1923. changed arguments to SayUnixTime so that every option is truly optional even
  1924. when using multiple options (so that j option could be used without having to
  1925. manually specify timezone and format) There are other benefits, e.g., format
  1926. can now be used without specifying time zone as well.
  1927. Voicemail
  1928. ------------------
  1929. * Addition of the VM_INFO function - see Function changes.
  1930. * The imapserver, imapport, and imapflags configuration options can now be
  1931. overriden on a user by user basis.
  1932. * When voicemail plays a message's envelope with saycid set to yes, when
  1933. reaching the caller id field it will play a recording of a file with the same
  1934. base name as the sender's callerid if there is a similarly named file in
  1935. <astspooldir>/recordings/callerids/
  1936. * Voicemails now contains a unique message identifier "msg_id", which is stored
  1937. in the message envelope with the sound files. IMAP backends will now store
  1938. the message identifiers with a header of "X-Asterisk-VM-Message-ID". ODBC
  1939. backends will store the message identifier in a "msg_id" column. See
  1940. UPGRADE.txt for more information.
  1941. * Added VoiceMailPlayMsg application. This application will play a single
  1942. voicemail message from a mailbox. The result of the application, SUCCESS or
  1943. FAILED, is stored in the channel variable VOICEMAIL_PLAYBACKSTATUS.
  1944. Functions
  1945. ------------------
  1946. * Hangup handlers can be attached to channels using the CHANNEL() function.
  1947. Hangup handlers will run when the channel is hung up similar to the h
  1948. extension. The hangup_handler_push option will push a GoSub compatible
  1949. location in the dialplan onto the channel's hangup handler stack. The
  1950. hangup_handler_pop option will remove the last added location, and optionally
  1951. replace it with a new GoSub compatible location. The hangup_handler_wipe
  1952. option will remove all locations on the stack, and optionally add a new
  1953. location.
  1954. * The expression parser now recognizes the ABS() absolute value function,
  1955. which will convert negative floating point values to positive values.
  1956. * FAXOPT(faxdetect) will enable a generic fax detect framehook for dialplan
  1957. control of faxdetect.
  1958. * Addition of the VM_INFO function that can be used to retrieve voicemail
  1959. user information, such as the email address and full name.
  1960. The MAILBOX_EXISTS dialplan function has been deprecated in favour of
  1961. VM_INFO.
  1962. * The REDIRECTING function now supports the redirecting original party id
  1963. and reason.
  1964. * Two new functions have been added: FEATURE() and FEATUREMAP(). FEATURE()
  1965. lets you set some of the configuration options from the [general] section
  1966. of features.conf on a per-channel basis. FEATUREMAP() lets you customize
  1967. the key sequence used to activate built-in features, such as blindxfer,
  1968. and automon. See the built-in documentation for details.
  1969. * MESSAGE(from) for incoming SIP messages now returns "display-name" <uri>
  1970. instead of simply the uri. This is the format that MessageSend() can use
  1971. in the from parameter for outgoing SIP messages.
  1972. * Added the PRESENCE_STATE function. This allows retrieving presence state
  1973. information from any presence state provider. It also allows setting
  1974. presence state information from a CustomPresence presence state provider.
  1975. See AMI/CLI changes for related commands.
  1976. * Added the AMI_CLIENT function to make manager account attributes available
  1977. to the dialplan. It currently supports returning the current number of
  1978. active sessions for a given account.
  1979. * Added support for private party ID information to CALLERID, CONNECTEDLINE,
  1980. and the REDIRECTING functions.
  1981. Channel Drivers
  1982. ------------------
  1983. chan_local
  1984. ------------------
  1985. * Added a manager event "LocalBridge" for local channel call bridges between
  1986. the two pseudo-channels created.
  1987. chan_dahdi
  1988. ------------------
  1989. * Added dialtone_detect option for analog ports to disconnect incoming
  1990. calls when dialtone is detected.
  1991. * Added option colp_send to send ISDN connected line information. Allowed
  1992. settings are block, to not send any connected line information; connect, to
  1993. send connected line information on initial connect; and update, to send
  1994. information on any update during a call. Default is update.
  1995. * Add options namedcallgroup and namedpickupgroup to support installations
  1996. where a higher number of groups (>64) is required.
  1997. * Added support to use private party ID information with PRI calls.
  1998. chan_motif
  1999. ------------------
  2000. * A new channel driver named chan_motif has been added which provides support for
  2001. Google Talk and Jingle in a single channel driver. This new channel driver includes
  2002. support for both audio and video, RFC2833 DTMF, all codecs supported by Asterisk,
  2003. hold, unhold, and ringing notification. It is also compliant with the current Jingle
  2004. specification, current Google Jingle specification, and the original Google Talk
  2005. protocol.
  2006. chan_ooh323
  2007. ------------------
  2008. * Added NAT support for RTP. Setting in config is 'nat', which can be set
  2009. globally and overriden on a peer by peer basis.
  2010. * Direct media functionality has been added. Options in config are:
  2011. directmedia (directrtp) and directrtpsetup (earlydirect)
  2012. * ChannelUpdate events now contain a CallRef header.
  2013. chan_sip
  2014. ------------------
  2015. * Asterisk will no longer substitute CID number for CID name in the display
  2016. name field if CID number exists without a CID name. This change improves
  2017. compatibility with certain device features such as Avaya IP500's directory
  2018. lookup service.
  2019. * A new setting for autocreatepeer (autocreatepeer=persistent) allows peers
  2020. created using that setting to not be removed during SIP reload.
  2021. * Added settings recordonfeature and recordofffeature. When receiving an INFO
  2022. request with a "Record:" header, this will turn the requested feature on/off.
  2023. Allowed values are 'automon', 'automixmon', and blank to disable. Note that
  2024. dynamic features must be enabled and configured properly on the requesting
  2025. channel for this to function properly.
  2026. * Add support to realtime for the 'callbackextension' option.
  2027. * When multiple peers exist with the same address, but differing
  2028. callbackextension options, incoming requests that are matched by address
  2029. will be matched to the peer with the matching callbackextension if it is
  2030. available.
  2031. * Two new NAT options, auto_force_rport and auto_comedia, have been added
  2032. which set the force_rport and comedia options automatically if Asterisk
  2033. detects that an incoming SIP request crossed a NAT after being sent by
  2034. the remote endpoint.
  2035. * The default global nat setting in sip.conf has been changed from force_rport
  2036. to auto_force_rport.
  2037. * NAT settings are now a combinable list of options. The equivalent of the
  2038. deprecated nat=yes is nat=force_rport,comedia. nat=no behaves as before.
  2039. * Adds an option send_diversion which can be disabled to prevent
  2040. diversion headers from automatically being added to INVITE requests.
  2041. * Add support for lightweight NAT keepalive. If enabled a blank packet will
  2042. be sent to the remote host at a given interval to keep the NAT mapping open.
  2043. This can be enabled using the keepalive configuration option.
  2044. * Add option 'tonezone' to specify country code for indications. This option
  2045. can be set both globally and overridden for specific peers.
  2046. * The SIP Security Events Framework now supports IPv6.
  2047. * Add a new setting for directmedia, 'outgoing', to alleviate INVITE glares
  2048. between multiple user agents. When set, for directmedia reinvites,
  2049. Asterisk will not send an immediate reinvite on an incoming call leg. This
  2050. option is useful when peered with another SIP user agent that is known to
  2051. send immediate direct media reinvites upon call establishment.
  2052. * Add support for WebSocket transport. This can be configured using 'ws' or 'wss'
  2053. as the transport.
  2054. * Add options subminexpiry and submaxexpiry to set limits of subscription
  2055. timer independently from registration timer settings. The setting of the
  2056. registration timer limits still is done by options minexpiry, maxexpiry
  2057. and defaultexpiry. For backwards compatibility the setting of minexpiry
  2058. and maxexpiry also is used to configure the subscription timer limits if
  2059. subminexpiry and submaxexpiry are not set in sip.conf.
  2060. * Set registration timer limits to default values when reloading sip
  2061. configuration and values are not set by configuration.
  2062. * Add options namedcallgroup and namedpickupgroup to support installations
  2063. where a higher number of groups (>64) is required.
  2064. * When a MESSAGE request is received, the address the request was received from
  2065. is now saved in the SIP_RECVADDR variable.
  2066. * Add ANI2/OLI parsing for SIP. The "From" header in INVITE requests is now
  2067. parsed for the presence of "isup-oli", "ss7-oli", or "oli" tags. If present,
  2068. the ANI2/OLI information is set on the channel, which can be retrieved using
  2069. the CALLERID function.
  2070. * Peers can now be configured to support negotiation of ICE candidates using
  2071. the setting icesupport. See res_rtp_asterisk changes for more information.
  2072. * Added support for format attribute negotiation. See the Codecs changes for
  2073. more information.
  2074. * Extra headers specified with SIPAddHeader are sent with the REFER message
  2075. when using Transfer application. See refer_addheaders in sip.conf.sample.
  2076. * Added support to use private party ID information with calls.
  2077. * Adds an option discard_remote_hold_retrieval that when set stops telling
  2078. the peer to start music on hold.
  2079. chan_skinny
  2080. ------------------
  2081. * Added skinny version 17 protocol support.
  2082. chan_unistim
  2083. --------------------
  2084. * Added option 'dtmf_duration' allowing playback time of DTMF tones to be set
  2085. * Modified option 'date_format' to allow options to display date in 31Jan and Jan31
  2086. formats as options 0 and 1. The previous options 0 and 1 now map to options 2 and 3
  2087. as per the UNISTIM protocol.
  2088. * Fixed issues with dialtone not matching indications.conf and mute stopping rx
  2089. as well as tx. Also fixed issue with call "Timer" displaying as French "Dur\E9e"
  2090. * Added ability to use multiple lines for a single phone. This allows multiple
  2091. calls to occur on a single phone, using callwaiting and switching between calls.
  2092. * Added option 'sharpdial' allowing end dialing by pressing # key
  2093. * Added option 'interdigit_timer' to control phone dial timeout
  2094. * Added options 'cwstyle', 'cwvolume' controlling callwaiting appearance
  2095. * Added global 'debug' option, that enables debug in channel driver
  2096. * Added ability to translate on-screen menu in multiple languages. Tested on
  2097. Russian languages. Supported encodings: ISO 8859-1, ISO 8859-2, ISO 8859-4,
  2098. ISO 8859-5, ISO 2022-JP. Language controlled by 'language' and on-screen
  2099. menu of phone
  2100. * In addition to English added French and Russian languages for on-screen menus
  2101. * Reworked dialing number input: added dialing by timeout, immediate dial on
  2102. on dialplan compare, phone number length now not limited by screen size
  2103. * Added ability to pickup a call using features.conf defined value and
  2104. on-screen key
  2105. chan_mISDN:
  2106. ------------------
  2107. * Add options namedcallgroup and namedpickupgroup to support installations
  2108. where a higher number of groups (>64) is required.
  2109. * Added support to use private party ID information with calls.
  2110. Core
  2111. ------------------
  2112. * The minimum DTMF duration can now be configured in asterisk.conf
  2113. as "mindtmfduration". The default value is (as before) set to 80 ms.
  2114. (previously it was only available in source code)
  2115. * Named ACLs can now be specified in acl.conf and used in configurations that
  2116. use ACLs. As a general rule, if some derivative of 'permit' or 'deny' is
  2117. used to specify an ACL, a similar form of 'acl' will add a named ACL to the
  2118. working ACL. In addition, some CLI commands have been added to provide
  2119. show information and allow for module reloading - see CLI Changes.
  2120. * Rules in ACLs (specified using 'permit' and 'deny') can now contain multiple
  2121. items (separated by commas), and items in the rule can be negated by prefixing
  2122. them with '!'. This simplifies Asterisk Realtime configurations, since it is no
  2123. longer necessray to control the order that the 'permit' and 'deny' columns are
  2124. returned from queries.
  2125. * DUNDi now allows the built in variables ${NUMBER}, ${IPADDR} and ${SECRET} to
  2126. be used within the dynamic weight attribute when specifying a mapping.
  2127. * CEL backends can now be configured to show "USER_DEFINED" in the EventName
  2128. header, instead of putting the user defined event name there. When enabled
  2129. the UserDefType header is added for user defined events. This feature is
  2130. enabled with the setting show_user_defined.
  2131. * Macro has been deprecated in favor of GoSub. For redirecting and connected
  2132. line purposes use the following variables instead of their macro equivalents:
  2133. REDIRECTING_SEND_SUB, REDIRECTING_SEND_SUB_ARGS, CONNECTED_LINE_SEND_SUB,
  2134. CONNECTED_LINE_SEND_SUB_ARGS. For CCSS, use cc_callback_sub instead of
  2135. cc_callback_macro in channel configurations.
  2136. * Asterisk can now use a system-provided NetBSD editline library (libedit) if it
  2137. is available.
  2138. * Call files now support the "early_media" option to connect with an outgoing
  2139. extension when early media is received.
  2140. * Added support to use private party ID information with calls.
  2141. AGI
  2142. ------------------
  2143. * A new channel variable, AGIEXITONHANGUP, has been added which allows
  2144. Asterisk to behave like it did in Asterisk 1.4 and earlier where the
  2145. AGI application would exit immediately after a channel hangup is detected.
  2146. * IPv6 addresses are now supported when using FastAGI (agi://). Hostnames
  2147. are resolved and each address is attempted in turn until one succeeds or
  2148. all fail.
  2149. AMI (Asterisk Manager Interface)
  2150. ------------------
  2151. * The originate action now has an option "EarlyMedia" that enables the
  2152. call to bridge when we get early media in the call. Previously,
  2153. early media was disregarded always when originating calls using AMI.
  2154. * Added setvar= option to manager accounts (much like sip.conf)
  2155. * Originate now generates an error response if the extension given is not found
  2156. in the dialplan
  2157. * MixMonitor will now show IDs associated with the mixmonitor upon creating
  2158. them if the i(variable) option is used. StopMixMonitor will accept
  2159. MixMonitorID as an option to close specific MixMonitors.
  2160. * The SIPshowpeer manager action response field "SIP-Forcerport" has been
  2161. updated to include information about peers configured with
  2162. nat=auto_force_rport by returning "A" if auto_force_rport is set and nat is
  2163. detected, and "a" if it is set and nat is not detected. "Y" and "N" are still
  2164. returned if auto_force_rport is not enabled.
  2165. * Added SIPpeerstatus manager command which will generate PeerStatus events
  2166. similar to the existing PeerStatus events found in chan_sip on demand.
  2167. * Hangup now can take a regular expression as the Channel option. If you want
  2168. to hangup multiple channels, use /regex/ as the Channel option. Existing
  2169. behavior to hanging up a single channel is unchanged, but if you pass a regex,
  2170. the manager will send you a list of channels back that were hung up.
  2171. * Support for IPv6 addresses has been added.
  2172. * AMI Events can now be documented in the Asterisk source. Note that AMI event
  2173. documentation is only generated when Asterisk is compiled using 'make full'.
  2174. See the CLI section for commands to display AMI event information.
  2175. * The AMI Hangup event now includes the AccountCode header so you can easily
  2176. correlate with AMI Newchannel events.
  2177. * The QueueMemberStatus, QueueMemberAdded, and QueueMember events now include
  2178. the StateInterface of the queue member.
  2179. * Added AMI event SessionTimeout in the Call category that is issued when a
  2180. call is terminated due to either RTP stream inactivity or SIP session timer
  2181. expiration.
  2182. * CEL events can now contain a user defined header UserDefType. See core
  2183. changes for more information.
  2184. * OOH323 ChannelUpdate events now contain a CallRef header.
  2185. * Added PresenceState command. This command will report the presence state for
  2186. the given presence provider.
  2187. * Added Parkinglots command. This will list all parking lots as a series of
  2188. AMI Parkinglot events.
  2189. * Added MessageSend command. This behaves in the same manner as the
  2190. MessageSend application, and is a technolgoy agnostic mechanism to send out
  2191. of call text messages.
  2192. * Added "message" class authorization. This grants an account permission to
  2193. send out of call messages. Write-only.
  2194. CLI
  2195. -------------------
  2196. * The "dialplan add include" command has been modified to create context a context
  2197. if one does not already exist. For instance, "dialplan add include foo into bar"
  2198. will create context "bar" if it does not already exist.
  2199. * A "dialplan remove context" command has been added to remove a context from
  2200. the dialplan
  2201. * The "mixmonitor list <channel>" command will now show MixMonitor ID, and the
  2202. filenames of all running mixmonitors on a channel.
  2203. * The debug level of "pri set debug" is now a bitmask ranging from 0 to 15 if
  2204. numeric instead of 0, 1, or 2.
  2205. * "stun show status" will show a table describing how the STUN client is
  2206. behaving.
  2207. * "acl show [named acl]" will show information regarding a Named ACL. The
  2208. acl module can be reloaded with "reload acl".
  2209. * Added CLI command to display AMI event information - "manager show events",
  2210. which shows a list of all known and documented AMI events, and "manager show
  2211. event [event name]", which shows detail information about a specific AMI
  2212. event.
  2213. * The result of the CLI command "queue show" now includes the state interface
  2214. information of the queue member.
  2215. * The command "core set verbose" will now set a separate level of logging for
  2216. each remote console without affecting any other console.
  2217. * Added command "cdr show pgsql status" to check connection status
  2218. * "sip show channel" will now display the complete route set.
  2219. * Added "presencestate list" command. This command will list all custom
  2220. presence states that have been set by using the PRESENCE_STATE dialplan
  2221. function.
  2222. * Added "presencestate change <entity> <state>[,<subtype>[,message[,options]]]"
  2223. command. This changes a custom presence to a new state.
  2224. Codecs
  2225. -------------------
  2226. * Codec lists may now be modified by the '!' character, to allow succinct
  2227. specification of a list of codecs allowed and disallowed, without the
  2228. requirement to use two different keywords. For example, to specify all
  2229. codecs except g729 and g723, one need only specify allow=all,!g729,!g723.
  2230. * Add support for parsing SDP attributes, generating SDP attributes, and
  2231. passing it through. This support includes codecs such as H.263, H.264, SILK,
  2232. and CELT. You are able to set up a call and have attribute information pass.
  2233. This should help considerably with video calls.
  2234. * The iLBC codec can now use a system-provided iLBC library if one is installed,
  2235. just like the GSM codec.
  2236. DUNDi changes
  2237. -------------
  2238. * Added CLI commands dundi show hints and dundi show cache which will list DUNDi
  2239. 'DONTASK' hints in the cache and list all DUNDi cache entires respectively.
  2240. Logging
  2241. -------------------
  2242. * Asterisk version and build information is now logged at the beginning of a
  2243. log file.
  2244. * Threads belonging to a particular call are now linked with callids which get
  2245. added to any log messages produced by those threads. Log messages can now be
  2246. easily identified as involved with a certain call by looking at their call id.
  2247. Call ids may also be attached to log messages for just about any case where
  2248. it can be determined to be related to a particular call.
  2249. * Each logging destination and console now have an independent notion of the
  2250. current verbosity level. Logger.conf now allows an optional argument to
  2251. the 'verbose' specifier, indicating the level of verbosity sent to that
  2252. particular logging destination. Additionally, remote consoles now each
  2253. have their own verbosity level. The command 'core set verbose' will now set
  2254. a separate level for each remote console without affecting any other
  2255. console.
  2256. Music On Hold
  2257. -------------------
  2258. * Added 'announcement' option which will play at the start of MOH and between
  2259. songs in modes of MOH that can detect transitions between songs (eg.
  2260. files, mp3, etc).
  2261. Parking
  2262. -------------------
  2263. * New per parking lot options: comebackcontext and comebackdialtime. See
  2264. configs/features.conf.sample for more details.
  2265. * Channel variable PARKER is now set when comebacktoorigin is disabled in
  2266. a parking lot.
  2267. * Channel variable PARKEDCALL is now set with the name of the parking lot
  2268. when a timeout occurs.
  2269. CDRs
  2270. -------------------
  2271. CDR Postgresql Driver
  2272. -------------------
  2273. * Added command "cdr show pgsql status" to check connection status
  2274. CDR Adaptive ODBC Driver
  2275. -------------------
  2276. * Added schema option for databases that support specifying a schema.
  2277. Resource Modules
  2278. -------------------
  2279. Calendars
  2280. -------------------
  2281. * A CALENDAR_SUCCESS=1/0 channel variable is now set to show whether or not
  2282. CALENDAR_WRITE has completed successfully.
  2283. res_rtp_asterisk
  2284. -------------------
  2285. * A new option, 'probation' has been added to rtp.conf
  2286. RTP in strictrtp mode can now require more than 1 packet to exit learning
  2287. mode with a new source (and by default requires 4). The probation option
  2288. allows the user to change the required number of packets in sequence to any
  2289. desired value. Use a value of 1 to essentially restore the old behavior.
  2290. Also, with strictrtp on, Asterisk will now drop all packets until learning
  2291. mode has successfully exited. These changes are based on how pjmedia handles
  2292. media sources and source changes.
  2293. * Add support for ICE/STUN/TURN in res_rtp_asterisk. This option can be
  2294. enabled or disabled using the icesupport setting. A variety of other
  2295. settings have been introduced to configure STUN/TURN connections.
  2296. res_corosync
  2297. -------------------
  2298. * A new module, res_corosync, has been introduced. This module uses the
  2299. Corosync cluster enginer (http://www.corosync.org) to allow a local cluster
  2300. of Asterisk servers to both Message Waiting Indication (MWI) and/or
  2301. Device State (presence) information. This module is very similar to, and
  2302. is a replacement for the res_ais module that was in previous releases of
  2303. Asterisk.
  2304. res_xmpp
  2305. -------------------
  2306. * This module adds a cleaned up, drop-in replacement for res_jabber called
  2307. res_xmpp. This provides the same externally facing functionality but is
  2308. implemented differently internally. res_jabber has been deprecated in favor
  2309. of res_xmpp; please see the UPGRADE.txt file for more information.
  2310. Scripts
  2311. -------------------
  2312. * The safe_asterisk script has been updated to allow several of its parameters
  2313. to be set from environment variables. This also enables a custom run
  2314. directory of Asterisk to be specified, instead of defaulting to /tmp.
  2315. * The live_ast script will now look for the LIVE_AST_BASE_DIR variable and use
  2316. its value to determine the directory to assume is the top-level directory of
  2317. the source tree. If the variable is not set, it defaults to the current
  2318. behavior and uses the current working directory.
  2319. ------------------------------------------------------------------------------
  2320. --- Functionality changes from Asterisk 1.8 to Asterisk 10 -------------------
  2321. ------------------------------------------------------------------------------
  2322. Text Messaging
  2323. --------------
  2324. * Asterisk now has protocol independent support for processing text messages
  2325. outside of a call. Messages are routed through the Asterisk dialplan.
  2326. SIP MESSAGE and XMPP are currently supported. There are options in
  2327. jabber.conf and sip.conf to allow enabling these features.
  2328. -> jabber.conf: see the "sendtodialplan" and "context" options.
  2329. -> sip.conf: see the "accept_outofcall_message", "auth_message_requests"
  2330. and "outofcall_message_context" options.
  2331. The MESSAGE() dialplan function and MessageSend() application have been
  2332. added to go along with this functionality. More detailed usage information
  2333. can be found on the Asterisk wiki (http://wiki.asterisk.org/).
  2334. * If real-time text support (T.140) is negotiated, it will be preferred for
  2335. sending text via the SendText application. For example, via SIP, messages
  2336. that were once sent via the SIP MESSAGE request would be sent via RTP if
  2337. T.140 text is negotiated for a call.
  2338. Parking
  2339. -------
  2340. * parkedmusicclass can now be set for non-default parking lots.
  2341. Asterisk Manager Interface
  2342. --------------------------
  2343. * PeerStatus now includes Address and Port.
  2344. * Added Hold events for when the remote party puts the call on and off hold
  2345. for chan_dahdi ISDN channels.
  2346. * Added new action MeetmeListRooms to list active conferences (shows same
  2347. data as "meetme list" at the CLI).
  2348. * DAHDIShowChannels, SIPshowpeer, SIPpeers, and IAXpeers now contains a
  2349. Description field that is set by 'description' in the channel configuration
  2350. file.
  2351. * Added Uniqueid header to UserEvent.
  2352. * Added new action FilterAdd to control event filters for the current session.
  2353. This requires the system permission and uses the same filter syntax as
  2354. filters that can be defined in manager.conf
  2355. * The Unlink event is now a Bridge event with Bridgestatus: Unlink. Previous
  2356. versions had some instances of the event converted, but others were left
  2357. as-is. All Unlink events should now be converted to Bridge events. The AMI
  2358. protocol version number was incremented to 1.2 as a result of this change.
  2359. Asterisk HTTP Server
  2360. --------------------------
  2361. * The HTTP Server can bind to IPv6 addresses.
  2362. chan_dahdi
  2363. --------------------------
  2364. * Busy tone patterns featuring 2 silence and 2 tone lengths can now be used
  2365. with busydetect. usage example: busypattern=200,200,200,600
  2366. CLI Changes
  2367. --------------------------
  2368. * New 'gtalk show settings' command showing the current settings loaded from
  2369. gtalk.conf.
  2370. * The 'logger reload' command now supports an optional argument, specifying an
  2371. alternate configuration file to use.
  2372. * 'dialplan add extension' command will now automatically create a context if
  2373. the specified context does not exist with a message indicated it did so.
  2374. * 'sip show peers', 'iax show peers', and 'dahdi show peers' now contains a
  2375. Description field which can be populated with 'description' in the channel
  2376. configuration files (sip.conf, iax2.conf, and chan_dahdi.conf).
  2377. CDR
  2378. --------------------------
  2379. * The filter option in cdr_adaptive_odbc now supports negating the argument,
  2380. thus allowing records which do NOT match the specified filter.
  2381. * Added ability to log CONGESTION calls to CDR
  2382. CODECS
  2383. --------------------------
  2384. * Ability to define custom SILK formats in codecs.conf.
  2385. * Addition of speex32 audio format with translation.
  2386. * CELT codec pass-through support and ability to define
  2387. custom CELT formats in codecs.conf.
  2388. * Ability to read raw signed linear files with sample rates
  2389. ranging from 8khz - 192khz. The new file extensions introduced
  2390. are .sln12, .sln24, .sln32, .sln44, .sln48, .sln96, .sln192.
  2391. * Due to protocol limitations, channel drivers other than SIP (eg. IAX2, MGCP,
  2392. Skinny, H.323, etc) can still only support the following codecs:
  2393. Audio: ulaw, alaw, slin, slin16, g719, g722, g723, g726, g726aal2, g729, gsm,
  2394. siren7, siren14, speex, speex16, ilbc, lpc10, adpcm
  2395. Video: h261, h263, h263p, h264, mpeg4
  2396. Image: jpeg, png
  2397. Text: red, t140
  2398. ConfBridge
  2399. --------------------------
  2400. * New highly optimized and customizable ConfBridge application capable of
  2401. mixing audio at sample rates ranging from 8khz-96khz.
  2402. * CONFBRIDGE dialplan function capable of creating dynamic ConfBridge user
  2403. and bridge profiles on a channel.
  2404. * CONFBRIDGE_INFO dialplan function capable of retrieving information
  2405. about a conference such as locked status and number of parties, admins,
  2406. and marked users.
  2407. * Addition of video_mode option in confbridge.conf for adding video support
  2408. into a bridge profile.
  2409. * Addition of the follow_talker video_mode in confbridge.conf. This video
  2410. mode dynamically switches the video feed to always display the loudest talker
  2411. supplying video in the conference.
  2412. Dialplan Variables
  2413. ------------------
  2414. * Added ASTETCDIR, ASTMODDIR, ASTVARLIBDIR, ASTDBDIR, ASTKEYDIR, ASTDATADIR,
  2415. ASTAGIDIR, ASTSPOOLDIR, ASTRUNDIR, ASTLOGDIR which hold the equivalent
  2416. variables from asterisk.conf.
  2417. Dialplan Functions
  2418. ------------------
  2419. * Addition of the JITTERBUFFER dialplan function. This function allows
  2420. for jitterbuffering to occur on the read side of a channel. By using
  2421. this function conference applications such as ConfBridge and MeetMe can
  2422. have the rx streams jitterbuffered before conference mixing occurs.
  2423. * Added DB_KEYS, which lists the next set of keys in the Asterisk database
  2424. hierarchy.
  2425. * Added STRREPLACE function. This function let's the user search a variable
  2426. for a given string to replace with another string as many times as the
  2427. user specifies or just throughout the whole string.
  2428. * Added option to CHANNEL(pickupgroup) allow reading and setting the pickupgroup of channel.
  2429. * Mark VALID_EXTEN() deprecated in favor of DIALPLAN_EXISTS()
  2430. * Added extensions to chan_ooh323 in function CHANNEL()
  2431. libpri channel driver (chan_dahdi) DAHDI changes
  2432. --------------------------
  2433. * Added moh_signaling option to specify what to do when the channel's bridged
  2434. peer puts the ISDN channel on hold.
  2435. * Added display_send and display_receive options to control how the display ie
  2436. is handled. To send display text from the dialplan use the SendText()
  2437. application when the option is enabled.
  2438. * Added mcid_send option to allow sending a MCID request on a span.
  2439. Calendaring
  2440. --------------------------
  2441. * Added setvar option to calendar.conf to allow setting channel variables on
  2442. notification channels.
  2443. * Added "calendar show types" CLI command to list registered calendar
  2444. connectors.
  2445. MixMonitor
  2446. --------------------------
  2447. * Added two new options, r and t with file name arguments to record
  2448. single direction (unmixed) audio recording separate from the bidirectional
  2449. (mixed) recording. The mixed file name argument is optional now as long
  2450. as at least one recording option is used.
  2451. FollowMe
  2452. --------------------------
  2453. * Added a new option, l, which will disable local call optimization for
  2454. channels involved with the FollowMe thread. Use this option to improve
  2455. compatability for a FollowMe call with certain dialplan apps, options, and
  2456. functions.
  2457. Meetme
  2458. --------------------------
  2459. * Added option "k" that will automatically close the conference when there's
  2460. only one person left when a user exits the conference.
  2461. CEL
  2462. --------------------------
  2463. * cel_pgsql now supports the 'extra' column for data added using the
  2464. CELGenUserEvent() application.
  2465. pbx_lua
  2466. --------------------------
  2467. * Support for defining hints has been added to pbx_lua. See the 'hints' table
  2468. in the sample extensions.lua file for syntax details.
  2469. * Applications that perform jumps in the dialplan such as Goto will now
  2470. execute properly. When pbx_lua detects that the context, extension, or
  2471. priority we are executing on has changed it will immediately return control
  2472. to the asterisk PBX engine. Currently the engine cannot detect a Goto to
  2473. the priority after the currently executing priority.
  2474. * An autoservice is now started by default for pbx_lua channels. It can be
  2475. stopped and restarted using the autoservice_stop() and autoservice_start()
  2476. functions.
  2477. res_fax
  2478. --------------------------
  2479. * The ReceiveFAXStatus and SendFAXStatus manager events have been consolidated
  2480. into a FAXStatus event with an 'Operation' header that will be either
  2481. 'send', 'receive', and 'gateway'.
  2482. * T.38 gateway functionality has been added to res_fax (and res_fax_spandsp).
  2483. Set FAXOPT(gateway)=yes to enable this functionality on a channel. This
  2484. feature will handle converting a fax call between an audio T.30 fax terminal
  2485. and an IFP T.38 fax terminal.
  2486. SIP Changes
  2487. -----------
  2488. * Add T38 support for REJECTED state where T.38 Negotiation is explicitly rejected.
  2489. * Add option encryption_taglen to set auth taglen only 32 and 80 are supported currently.
  2490. * SIP now generates security events using the Security Events Framework for REGISTER and INVITE.
  2491. Queue changes
  2492. -------------
  2493. * Added general option negative_penalty_invalid default off. when set
  2494. members are seen as invalid/logged out when there penalty is negative.
  2495. for realtime members when set remove from queue will set penalty to -1.
  2496. * Added queue option autopausedelay when autopause is enabled it will be
  2497. delayed for this number of seconds since last successful call if there
  2498. was no prior call the agent will be autopaused immediately.
  2499. * Added member option ignorebusy this when set and ringinuse is not
  2500. will allow per member control of multiple calls as ringinuse does for
  2501. the Queue.
  2502. Applications
  2503. ------------
  2504. * Added 'v' option to MeetMe to play voicemail greetings when a user joins/leaves
  2505. a MeetMe conference
  2506. * Added 'k' option to MeetMe to automatically kill the conference when there's only
  2507. one participant left (much like a normal call bridge)
  2508. * Added extra argument to Originate to set timeout.
  2509. Asterisk Database
  2510. -----------------
  2511. * The internal Asterisk database has been switched from Berkeley DB 1.86 to
  2512. SQLite 3. An existing Berkeley astdb file can be converted with the astdb2sqlite3
  2513. utility in the UTILS section of menuselect. If an existing astdb is found and no
  2514. astdb.sqlite3 exists, astdb2sqlite3 will be compiled automatically. Asterisk will
  2515. convert an existing astdb to the SQLite3 version automatically at runtime.
  2516. Asterisk Modules
  2517. ----------------
  2518. * Modules marked as deprecated are no longer marked as building by default. Enabling
  2519. these modules is still available via menuselect.
  2520. IAX2 Changes
  2521. ------------
  2522. * authdebug is now disabled by default. To enable this functionaility again
  2523. set authdebug = yes in iax.conf.
  2524. RTP Changes
  2525. -----------
  2526. * The rtp.conf setting "strictrtp" is now enabled by default. In previous
  2527. releases it was disabled.
  2528. PBX Core
  2529. --------
  2530. * The PBX core previously made a call with a non-existing extension test for
  2531. extension s@default and jump there if the extension existed.
  2532. This was a bad default behaviour and violated the principle of least surprise.
  2533. It has therefore been changed in this release. It may affect some
  2534. applications and configurations that rely on this behaviour. Most channel
  2535. drivers have avoided this for many releases by testing whether the extension
  2536. called exists before starting the PBX and generating a local error.
  2537. This behaviour still exists and works as before.
  2538. Extension "s" is used when no extension is given in a channel driver,
  2539. like immediate answer in DAHDI or calling to a domain with no user part
  2540. in a SIP uri.
  2541. ------------------------------------------------------------------------------
  2542. --- Functionality changes from Asterisk 1.6.2 to Asterisk 1.8 ----------------
  2543. ------------------------------------------------------------------------------
  2544. SIP Changes
  2545. -----------
  2546. * Due to potential username discovery vulnerabilities, the 'nat' setting in sip.conf
  2547. now defaults to force_rport. It is very important that phones requiring nat=no be
  2548. specifically set as such instead of relying on the default setting. If at all
  2549. possible, all devices should have nat settings configured in the general section as
  2550. opposed to configuring nat per-device.
  2551. * Added preferred_codec_only option in sip.conf. This feature limits the joint
  2552. codecs sent in response to an INVITE to the single most preferred codec.
  2553. * Added SIP_CODEC_OUTBOUND dialplan variable which can be used to set the codec
  2554. to be used for the outgoing call. It must be one of the codecs configured
  2555. for the device.
  2556. * Added tlsprivatekey option to sip.conf. This allows a separate .pem file
  2557. to be used for holding a private key. If tlsprivatekey is not specified,
  2558. tlscertfile is searched for both public and private key.
  2559. * Added tlsclientmethod option to sip.conf. This allows the protocol for
  2560. outbound client connections to be specified.
  2561. * The sendrpid parameter has been expanded to include the options
  2562. 'rpid' and 'pai'. Setting sendrpid to 'rpid' will cause Remote-Party-ID
  2563. header to be sent (equivalent to setting sendrpid=yes) and setting
  2564. sendrpid to 'pai' will cause P-Asserted-Identity header to be sent.
  2565. * The 'ignoresdpversion' behavior has been made automatic when the SDP received
  2566. is in response to a T.38 re-INVITE that Asterisk initiated. In this situation,
  2567. since the call will fail if Asterisk does not process the incoming SDP, Asterisk
  2568. will accept the SDP even if the SDP version number is not properly incremented,
  2569. but will generate a warning in the log indicating that the SIP peer that sent
  2570. the SDP should have the 'ignoresdpversion' option set.
  2571. * The 'nat' option has now been been changed to have yes, no, force_rport, and
  2572. comedia as valid values. Setting it to yes forces RFC 3581 behavior and enables
  2573. symmetric RTP support. Setting it to no only enables RFC 3581 behavior if the
  2574. remote side requests it and disables symmetric RTP support. Setting it to
  2575. force_rport forces RFC 3581 behavior and disables symmetric RTP support.
  2576. Setting it to comedia enables RFC 3581 behavior if the remote side requests it
  2577. and enables symmetric RTP support.
  2578. * Slave SIP channels now set HASH(SIP_CAUSE,<slave-channel-name>) on each
  2579. response. This permits the master channel to know how each channel dialled
  2580. in a multi-channel setup resolved in an individual way. This carries a
  2581. performance penalty and can be disabled in sip.conf using the
  2582. 'storesipcause' option.
  2583. * Added 'externtcpport' and 'externtlsport' options to allow custom port
  2584. configuration for the externip and externhost options when tcp or tls is used.
  2585. * Added support for message body (stored in content variable) to SIP NOTIFY message
  2586. accessible via AMI and CLI.
  2587. * Added 'media_address' configuration option which can be used to explicitly specify
  2588. the IP address to use in the SDP for media (audio, video, and text) streams.
  2589. * Added 'unsolicited_mailbox' configuration option which specifies the virtual mailbox
  2590. that the new/old count should be stored on if an unsolicited MWI NOTIFY message is
  2591. received.
  2592. * Added 'use_q850_reason' configuration option for generating and parsing
  2593. if available Reason: Q.850;cause=<cause code> header. It is implemented
  2594. in some gateways for better passing PRI/SS7 cause codes via SIP.
  2595. * When dialing SIP peers, a new component may be added to the end of the dialstring
  2596. to indicate that a specific remote IP address or host should be used when dialing
  2597. the particular peer. The dialstring format is SIP/peer/exten/host_or_IP.
  2598. * SRTP SDES support for encrypting calls to/from Asterisk over SIP. The
  2599. ability to selectively force bridged channels to also be encrypted is also
  2600. implemented. Branching in the dialplan can be done based on whether or not
  2601. a channel has secure media and/or signaling.
  2602. * Added directmediapermit/directmediadeny to limit which peers can send direct media
  2603. to each other
  2604. * Added the 'snom_aoc_enabled' option to turn on support for sending Advice of
  2605. Charge messages to snom phones.
  2606. * Added support for G.719 media streams.
  2607. * Added support for 16khz signed linear media streams.
  2608. * SIP is now able to bind to and communicate with IPv6 addresses. In addition,
  2609. RTP has been outfitted with the same abilities.
  2610. * Added support for setting the Max-Forwards: header in SIP requests. Setting is
  2611. available in device configurations as well as in the dial plan.
  2612. * Addition of the 'subscribe_network_change' option for turning on and off
  2613. res_stun_monitor module support in chan_sip.
  2614. * Addition of the 'auth_options_requests' option for turning on and off
  2615. authentication for OPTIONS requests in chan_sip.
  2616. Configuration files
  2617. -------------------
  2618. * Add #tryinclude statement for config files. This provides the same
  2619. functionality as the #include statement however an asterisk module will
  2620. still load if the filename does not exist. Using the #include statement
  2621. Asterisk will not allow the module to load.
  2622. IAX2 Changes
  2623. -----------
  2624. * Added rtsavesysname option into iax.conf to allow the systname to be saved
  2625. on realtime updates.
  2626. * Added the ability for chan_iax2 to inform the dialplan whether or not
  2627. encryption is being used. This interoperates with the SIP SRTP implementation
  2628. so that a secure SIP call can be bridged to a secure IAX call when the
  2629. dialplan requires bridged channels to be "secure".
  2630. * Addition of the 'subscribe_network_change' option for turning on and off
  2631. res_stun_monitor module support in chan_iax.
  2632. MGCP Changes
  2633. ------------
  2634. * Added ability to preset channel variables on indicated lines with the setvar
  2635. configuration option. Also, clearvars=all resets the list of variables back
  2636. to none.
  2637. * PacketCable NCS 1.0 support has been added for Docsis/Eurodocsis Networks.
  2638. See configs/res_pktccops.conf for more information.
  2639. XMPP Google Talk/Jingle changes
  2640. -------------------------------
  2641. * Added the externip option to gtalk.conf.
  2642. * Added the stunaddr option to gtalk.conf which allows for the automatic
  2643. retrieval of the external ip from a stun server.
  2644. Applications
  2645. ------------
  2646. * Added 'p' option to PickupChan() to allow for picking up channel by the first
  2647. match to a partial channel name.
  2648. * Added .m3u support for Mp3Player application.
  2649. * Added progress option to the app_dial D() option. When progress DTMF is
  2650. present, those values are sent immediately upon receiving a PROGRESS message
  2651. regardless if the call has been answered or not.
  2652. * Added functionality to the app_dial F() option to continue with execution
  2653. at the current location when no parameters are provided.
  2654. * Added the 'a' option to app_dial to answer the calling channel before any
  2655. announcements or macros are executed.
  2656. * Modified app_dial to set answertime when the called channel answers even if
  2657. the called channel hangs up during playback of an announcement.
  2658. * Modified app_dial 'r' option to support an additional parameter to play an
  2659. indication tone from indications.conf
  2660. * Added c() option to app_chanspy. This option allows custom DTMF to be set
  2661. to cycle through the next available channel. By default this is still '*'.
  2662. * Added x() option to app_chanspy. This option allows DTMF to be set to
  2663. exit the application.
  2664. * The Voicemail application has been improved to automatically ignore messages
  2665. that only contain silence.
  2666. * If you set maxmsg to 0 in voicemail.conf, Voicemail will consider the
  2667. associated mailbox(es) to be greetings-only.
  2668. * The ChanSpy application now has the 'S' option, which makes the application
  2669. automatically exit once it hits a point where no more channels are available
  2670. to spy on.
  2671. * The ChanSpy application also now has the 'E' option, which spies on a single
  2672. channel and exits when that channel hangs up.
  2673. * The MeetMe application now turns on the DENOISE() function by default, for
  2674. each participant. In our tests, this has significantly decreased background
  2675. noise (especially noisy data centers).
  2676. * Voicemail now permits storage of secrets in a separate file, located in the
  2677. spool directory of each individual user. The control for this is located in
  2678. the "passwordlocation" option in voicemail.conf. Please see the sample
  2679. configuration for more information.
  2680. * The ChanIsAvail application now exposes the returned cause code using a separate
  2681. variable, AVAILCAUSECODE, instead of overwriting the device state in AVAILSTATUS.
  2682. * Added 'd' option to app_followme. This option disables the "Please hold"
  2683. announcement.
  2684. * Added 'y' option to app_record. This option enables a mode where any DTMF digit
  2685. received will terminate recording.
  2686. * Voicemail now supports per mailbox settings for folders when using IMAP storage.
  2687. Previously the folder could only be set per context, but has now been extended
  2688. using the imapfolder option.
  2689. * Voicemail now supports per mailbox settings for nextaftercmd and minsecs.
  2690. * Voicemail now allows the pager date format to be specified separately from the
  2691. email date format.
  2692. * New applications JabberJoin, JabberLeave, and JabberSendGroup have been added
  2693. to allow joining, leaving, and sending text to group chats.
  2694. * MeetMe has a new option 'G' to play an announcement before joining a conference.
  2695. * Page has a new option 'A(x)' which will playback an announcement simultaneously
  2696. to all paged phones (and optionally excluding the caller's one using the new
  2697. option 'n') before the call is bridged.
  2698. * The 'f' option to Dial has been augmented to take an optional argument. If no
  2699. argument is provided, the 'f' option works as it always has. If an argument is
  2700. provided, then the connected party information of all outgoing channels created
  2701. during the Dial will be set to the argument passed to the 'f' option.
  2702. * Dial now inherits the GOSUB_RETVAL from the peer, when the U() option runs a
  2703. Gosub on the peer.
  2704. * The OSP lookup application adds in/outbound network ID, optional security,
  2705. number portability, QoS reporting, destination IP port, custom info and service
  2706. type features.
  2707. * Added new application VMSayName that will play the recorded name of the voicemail
  2708. user if it exists, otherwise will play the mailbox number.
  2709. * Added custom device states to ConfBridge bridges. Use 'confbridge:<name>' to
  2710. retrieve state for a particular bridge, where <name> is the conference name
  2711. * app_directory now allows exiting at any time using the operator or pound key.
  2712. * Voicemail now supports setting a locale per-mailbox.
  2713. * Two new applications are provided for declining counting phrases in multiple
  2714. languages. See the application notes for SayCountedNoun and SayCountedAdj for
  2715. more information.
  2716. * Voicemail now runs the externnotify script when pollmailboxes is activated and
  2717. notices a change.
  2718. * Voicemail now includes rdnis within msgXXXX.txt file.
  2719. * ExternalIVR now supports IPv6 addresses.
  2720. * Added 'D' command to ExternalIVR. Details are available on the Asterisk wiki
  2721. at https://wiki.asterisk.org/wiki/x/oQBB
  2722. * ParkedCall and Park can now specify the parking lot to use.
  2723. Dialplan Functions
  2724. ------------------
  2725. * SRVQUERY and SRVRESULT functions added. This can be used to query and iterate
  2726. over SRV records associated with a specific service. From the CLI, type
  2727. 'core show function SRVQUERY' and 'core show function SRVRESULT' for more
  2728. details on how these may be used.
  2729. * PITCH_SHIFT dialplan function added. This function can be used to modify the
  2730. pitch of a channel's tx and rx audio streams.
  2731. * Added new dialplan functions CONNECTEDLINE and REDIRECTING which permits
  2732. setting various connected line and redirecting party information.
  2733. * CALLERID and CONNECTEDLINE dialplan functions have been extended to
  2734. support ISDN subaddressing.
  2735. * The CHANNEL() function now supports the "name" and "checkhangup" options.
  2736. * For DAHDI channels, the CHANNEL() dialplan function now allows
  2737. the dialplan to request changes in the configuration of the active
  2738. echo canceller on the channel (if any), for the current call only.
  2739. The syntax is:
  2740. exten => s,n,Set(CHANNEL(echocan_mode)=off)
  2741. The possible values are:
  2742. on - normal mode (the echo canceller is actually reinitialized)
  2743. off - disabled
  2744. fax - FAX/data mode (NLP disabled if possible, otherwise completely
  2745. disabled)
  2746. voice - voice mode (returns from FAX mode, reverting the changes that
  2747. were made when FAX mode was requested)
  2748. * Added new dialplan function MASTER_CHANNEL(), which permits retrieving
  2749. and setting variables on the channel which created the current channel.
  2750. Administrators should take care to avoid naming conflicts, when multiple
  2751. channels are dialled at once, especially when used with the Local channel
  2752. construct (which all could set variables on the master channel). Usage
  2753. of the HASH() dialplan function, with the key set to the name of the slave
  2754. channel, is one approach that will avoid conflicts.
  2755. * Added new dialplan function MUTEAUDIO() for muting inbound and/or outbound
  2756. audio in a channel.
  2757. * func_odbc now allows multiple row results to be retrieved without using
  2758. mode=multirow. If rowlimit is set, then additional rows may be retrieved
  2759. from the same query by using the name of the function which retrieved the
  2760. first row as an argument to ODBC_FETCH().
  2761. * Added JABBER_RECEIVE, which permits receiving XMPP messages from the
  2762. dialplan. This function returns the content of the received message.
  2763. * Added REPLACE, which searches a given variable name for a set of characters,
  2764. then either replaces them with a single character or deletes them.
  2765. * Added PASSTHRU, which literally passes the same argument back as its return
  2766. value. The intent is to be able to use a literal string argument to
  2767. functions that currently require a variable name as an argument.
  2768. * HASH-associated variables now can be inherited across channel creation, by
  2769. prefixing the name of the hash at assignment with the appropriate number of
  2770. underscores, just like variables.
  2771. * GROUP_MATCH_COUNT has been improved to allow regex matching on category
  2772. * CHANNEL(secure_bridge_signaling) and CHANNEL(secure_bridge_media) to set/get
  2773. whether or not channels that are bridged to the current channel will be
  2774. required to have secure signaling and/or media.
  2775. * CHANNEL(secure_signaling) and CHANNEL(secure_media) to get whether or not
  2776. the current channel has secure signaling and/or media.
  2777. * For DAHDI/ISDN channels, the CHANNEL() dialplan function now supports the
  2778. "no_media_path" option.
  2779. Returns "0" if there is a B channel associated with the call.
  2780. Returns "1" if no B channel is associated with the call. The call is either
  2781. on hold or is a call waiting call.
  2782. * Added option to dialplan function CDR(), the 'f' option
  2783. allows for high resolution times for billsec and duration fields.
  2784. * FILE() now supports line-mode and writing.
  2785. * Added FIELDNUM(), which returns the 1-based offset of a field in a list.
  2786. * FRAME_TRACE(), for tracking internal ast_frames on a channel.
  2787. Dialplan Variables
  2788. ------------------
  2789. * Added DYNAMIC_FEATURENAME which holds the last triggered dynamic feature.
  2790. * Added DYNAMIC_PEERNAME which holds the unique channel name on the other side
  2791. and is set when a dynamic feature is triggered.
  2792. * Added PARKINGLOT which can be used with parkeddynamic feature.conf option
  2793. to dynamically create a new parking lot matching the value this varible is
  2794. set to.
  2795. * Added PARKINGDYNAMIC which represents the template parkinglot defined in
  2796. features.conf that should be the base for dynamic parkinglots.
  2797. * Added PARKINGDYNCONTEXT which tells what context a newly created dynamic
  2798. parkinglot should have.
  2799. * Added PARKINGDYNEXTEN which tells what parking exten a newly created dynamic
  2800. parkinglot should have.
  2801. * Added PARKINGDYNPOS which holds what parking positions a dynamic parkinglot
  2802. should have.
  2803. Queue changes
  2804. -------------
  2805. * Added "ready" option to QUEUE_MEMBER counting to count free agents whose wrap-up
  2806. timeout has expired.
  2807. * Added 'R' option to app_queue. This option stops moh and indicates ringing
  2808. to the caller when an Agent's phone is ringing. This can be used to indicate
  2809. to the caller that their call is about to be picked up, which is nice when
  2810. one has been on hold for an extened period of time.
  2811. * A new config option, penaltymemberslimit, has been added to queues.conf.
  2812. When set this option will disregard penalty settings when a queue has too
  2813. few members.
  2814. * A new option, 'I' has been added to both app_queue and app_dial.
  2815. By setting this option, Asterisk will not update the caller with
  2816. connected line changes or redirecting party changes when they occur.
  2817. * A 'relative-periodic-announce' option has been added to queues.conf. When
  2818. enabled, this option will cause periodic announce times to be calculated
  2819. from the end of announcements rather than from the beginning.
  2820. * The autopause option in queues.conf can be passed a new value, "all." The
  2821. result is that if a member becomes auto-paused, he will be paused in all
  2822. queues for which he is a member, not just the queue that failed to reach
  2823. the member.
  2824. * Added dialplan function QUEUE_EXISTS to check if a queue exists
  2825. * The queue logger now allows events to optionally propagate to a file,
  2826. even when realtime logging is turned on. Additionally, realtime logging
  2827. supports sending the event arguments to 5 individual fields, although it
  2828. will fallback to the previous data definition, if the new table layout is
  2829. not found.
  2830. mISDN channel driver (chan_misdn) changes
  2831. ----------------------------------------
  2832. * Added display_connected parameter to misdn.conf to put a display string
  2833. in the CONNECT message containing the connected name and/or number if
  2834. the presentation setting permits it.
  2835. * Added display_setup parameter to misdn.conf to put a display string
  2836. in the SETUP message containing the caller name and/or number if the
  2837. presentation setting permits it.
  2838. * Made misdn.conf parameters localdialplan and cpndialplan take a -1 to
  2839. indicate the dialplan settings are to be obtained from the asterisk
  2840. channel.
  2841. * Made misdn.conf parameter callerid accept the "name" <number> format
  2842. used by the rest of the system.
  2843. * Made use the nationalprefix and internationalprefix misdn.conf
  2844. parameters to prefix any received number from the ISDN link if that
  2845. number has the corresponding Type-Of-Number. NOTE: This includes
  2846. comparing the incoming call's dialed number against the MSN list.
  2847. * Added the following new parameters: unknownprefix, netspecificprefix,
  2848. subscriberprefix, and abbreviatedprefix in misdn.conf to prefix any
  2849. received number from the ISDN link if that number has the corresponding
  2850. Type-Of-Number.
  2851. * Added new dialplan application misdn_command which permits controlling
  2852. the CCBS/CCNR functionality.
  2853. * Added new dialplan function mISDN_CC which permits retrieval of various
  2854. values from an active call completion record.
  2855. * For PTP, you should manually send the COLR of the redirected-to party
  2856. for an incomming redirected call if the incoming call could experience
  2857. further redirects. Just set the REDIRECTING(to-num,i) = ${EXTEN} and
  2858. set the REDIRECTING(to-pres) to the COLR. A call has been redirected
  2859. if the REDIRECTING(from-num) is not empty.
  2860. * For outgoing PTP redirected calls, you now need to use the inhibit(i)
  2861. option on all of the REDIRECTING statements before dialing the
  2862. redirected-to party. You still have to set the REDIRECTING(to-xxx,i)
  2863. and the REDIRECTING(from-xxx,i) values. The PTP call will update the
  2864. redirecting-to presentation (COLR) when it becomes available.
  2865. * Added outgoing_colp parameter to misdn.conf to filter outgoing COLP
  2866. information.
  2867. thirdparty mISDN enhancements
  2868. -----------------------------
  2869. mISDN has been modified by Digium, Inc. to greatly expand facility message
  2870. support to allow:
  2871. * Enhanced COLP support for call diversion and transfer.
  2872. * CCBS/CCNR support.
  2873. The latest modified mISDN v1.1.x based version is available at:
  2874. http://svn.digium.com/svn/thirdparty/mISDN/trunk
  2875. http://svn.digium.com/svn/thirdparty/mISDNuser/trunk
  2876. Tagged versions of the modified mISDN code are available under:
  2877. http://svn.digium.com/svn/thirdparty/mISDN/tags
  2878. http://svn.digium.com/svn/thirdparty/mISDNuser/tags
  2879. libpri channel driver (chan_dahdi) DAHDI changes
  2880. -------------------------------------------
  2881. * The channel variable PRIREDIRECTREASON is now just a status variable
  2882. and it is also deprecated. Use the REDIRECTING(reason) dialplan function
  2883. to read and alter the reason.
  2884. * For Q.SIG and ETSI PRI/BRI-PTP, you should manually send the COLR of the
  2885. redirected-to party for an incomming redirected call if the incoming call
  2886. could experience further redirects. Just set the
  2887. REDIRECTING(to-num,i) = CALLERID(dnid) and set the REDIRECTING(to-pres)
  2888. to the COLR. A call has been redirected if the REDIRECTING(count) is not
  2889. zero.
  2890. * For outgoing Q.SIG and ETSI PRI/BRI-PTP redirected calls, you need to
  2891. use the inhibit(i) option on all of the REDIRECTING statements before
  2892. dialing the redirected-to party. You still have to set the
  2893. REDIRECTING(to-xxx,i) and the REDIRECTING(from-xxx,i) values. The call
  2894. will update the redirecting-to presentation (COLR) when it becomes available.
  2895. * Added the ability to ignore calls that are not in a Multiple Subscriber
  2896. Number (MSN) list for PTMP CPE interfaces.
  2897. * Added dynamic range compression support for dahdi channels. It is
  2898. configured via the rxdrc and txdrc parameters in chan_dahdi.conf.
  2899. * Added support for ISDN calling and called subaddress with partial support
  2900. for connected line subaddress.
  2901. * Added support for BRI PTMP NT mode. (Requires latest LibPRI.)
  2902. * Added handling of received HOLD/RETRIEVE messages and the optional ability
  2903. to transfer a held call on disconnect similar to an analog phone.
  2904. * Added CallRerouting/CallDeflection support for Q.SIG, ETSI PTP, ETSI PTMP.
  2905. Will reroute/deflect an outgoing call when receive the message.
  2906. Can use the DAHDISendCallreroutingFacility to send the message for the
  2907. supported switches.
  2908. * Added standard location to add options to chan_dahdi dialing:
  2909. Dial(DAHDI/g1[/extension[/options]])
  2910. Current options:
  2911. K(<keypad_digits>)
  2912. R Reverse charging indication
  2913. * Added Reverse Charging Indication (Collect calls) send/receive option.
  2914. Send reverse charging in SETUP message with the chan_dahdi R dialing option.
  2915. Dial(DAHDI/g1/extension/R)
  2916. Access received reverse charge in SETUP message by: ${CHANNEL(reversecharge)}
  2917. (requires latest LibPRI)
  2918. * Added ability to send/receive keypad digits in the SETUP message.
  2919. Send keypad digits in SETUP message with the chan_dahdi K(<keypad_digits>)
  2920. dialing option. Dial(DAHDI/g1/[extension]/K(<keypad_digits>))
  2921. Access any received keypad digits in SETUP message by: ${CHANNEL(keypad_digits)}
  2922. (requires latest LibPRI)
  2923. * Added ability to send and receive ETSI Explicit Call Transfer (ECT) messages
  2924. to eliminate tromboned calls. A tromboned call goes out an interface and comes
  2925. back into the same interface. Tromboned calls happen because of call routing,
  2926. call deflection, call forwarding, and call transfer.
  2927. * Added the ability to send and receive ETSI Advice-Of-Charge messages.
  2928. * Added the ability to support call waiting calls. (The SETUP has no B channel
  2929. assigned.)
  2930. * Added Malicious Call ID (MCID) event to the AMI call event class.
  2931. * Added Message Waiting Indication (MWI) support for ISDN PTMP endpoints (phones).
  2932. Asterisk Manager Interface
  2933. --------------------------
  2934. * The Hangup action now accepts a Cause header which may be used to
  2935. set the channel's hangup cause.
  2936. * sslprivatekey option added to manager.conf and http.conf. Adds the ability
  2937. to specify a separate .pem file to hold a private key. By default sslcert
  2938. is used to hold both the public and private key.
  2939. * Options in manager.conf and http.conf with the 'ssl' prefix have been replaced
  2940. for options containing the 'tls' prefix. For example, 'sslenable' is now
  2941. 'tlsenable'. This has been done in effort to keep ssl and tls options consistent
  2942. across all .conf files. All affected sample.conf files have been modified to
  2943. reflect this change. Previous options such as 'sslenable' still work,
  2944. but options with the 'tls' prefix are preferred.
  2945. * Added a MuteAudio AMI action for muting inbound and/or outbound audio
  2946. in a channel. (res_mutestream.so)
  2947. * The configuration file manager.conf now supports a channelvars option, which
  2948. specifies a list of channel variables to include in each channel-oriented
  2949. event.
  2950. * The redirect command now has new parameters ExtraContext, ExtraExtension,
  2951. and ExtraPriority to allow redirecting the second channel to a different
  2952. location than the first.
  2953. * Added new event "JabberStatus" in the Jabber module to monitor buddies
  2954. status.
  2955. * Added a "MixMonitorMute" AMI action for muting inbound and/or outbound audio
  2956. in a MixMonitor recording.
  2957. * The 'iax2 show peers' output is now similar to the expected output of
  2958. 'sip show peers'.
  2959. * Added Advice-Of-Charge events (AOC-S, AOC-D, and AOC-E) in the new
  2960. aoc event class.
  2961. * Added Advice-Of-Charge manager action, AOCMessage, for generating AOC-D and
  2962. AOC-E messages on a channel.
  2963. * A DBGetComplete event now follows a DBGetResponse, to make the DBGet action
  2964. conform more closely to similar events.
  2965. * Added a new eventfilter option per user to allow whitelisting and blacklisting
  2966. of events.
  2967. * Added optional parkinglot variable for park command.
  2968. * Added ConnectedLineNum and ConnectedLineName headers to AMI events/responses
  2969. if CallerIDNum and CallerIDName headers are also present.
  2970. Channel Event Logging
  2971. ---------------------
  2972. * A new interface, CEL, is introduced here. CEL logs single events, much like
  2973. the AMI, but it differs from the AMI in that it logs to db backends much
  2974. like CDR does; is based on the event subsystem introduced by Russell, and
  2975. can share in all its benefits; allows multiple backends to operate like CDR;
  2976. is specialized to event data that would be of concern to billing sytems,
  2977. like CDR. Backends for logging and accounting calls have been produced,
  2978. but a new CDR backend is still in development.
  2979. CDR
  2980. ---
  2981. * 'linkedid' and 'peeraccount' are new CDR fields available to CDR aficionados.
  2982. linkedid is based on uniqueID, but spreads to other channels as transfers, dials,
  2983. etc are performed. Thus the pieces of CDR can be grouped into multilegged sets.
  2984. * Multiple files and formats can now be specified in cdr_custom.conf.
  2985. * cdr_syslog has been added which allows CDRs to be written directly to syslog.
  2986. See configs/cdr_syslog.conf.sample for more information.
  2987. * A 'sequence' field has been added to CDRs which can be combined with
  2988. linkedid or uniqueid to uniquely identify a CDR.
  2989. * Handling of billsec and duration field has changed. If your table definition
  2990. specifies those fields as float,double or similar they will now be logged with
  2991. microsecond accuracy instead of a whole integer.
  2992. Calendaring for Asterisk
  2993. ------------------------
  2994. * A new set of modules were added supporing calendar integration with Asterisk.
  2995. Dialplan functions for reading from and writing to calendars are included,
  2996. as well as the ability to execute dialplan logic upon calendar event notifications.
  2997. iCalendar, CalDAV, and Exchange Server calendars (via res_calendar_exchange for
  2998. Exchange Server 2003 with no write or attendee support, and res_calendar_ews for
  2999. Exchange Server 2007+ with full write and attendee support) are supported (Exchange
  3000. 2003 support does not support forms-based authentication).
  3001. Call Completion Supplementary Services for Asterisk
  3002. ---------------------------------------------------
  3003. * Call completion support has been added for SIP, DAHDI/ISDN, and DAHDI/analog.
  3004. DAHDI/ISDN supports call completion for the following switch types:
  3005. EuroIsdn(ETSI) for PTP and PTMP modes, and Qsig.
  3006. See https://wiki.asterisk.org/wiki/x/2ABQ for details.
  3007. Multicast RTP Support
  3008. ---------------------
  3009. * A new RTP engine and channel driver have been added which supports Multicast RTP.
  3010. The channel driver can be used with the Page application to perform multicast RTP
  3011. paging. The dial string format is: MulticastRTP/<type>/<destination>/<control address>
  3012. Type can be either basic or linksys.
  3013. Destination is the IP address and port for the RTP packets.
  3014. Control address is specific to the linksys type and is used for sending the control
  3015. packets unique to them.
  3016. Security Events Framework
  3017. -------------------------
  3018. * Asterisk has a new C API for reporting security events. The module res_security_log
  3019. sends these events to the "security" logger level. Currently, AMI is the only
  3020. Asterisk component that reports security events. However, SIP support will be
  3021. coming soon. For more information on the security events framework, see the
  3022. "Asterisk Security Framework" section of the Asterisk wiki at
  3023. https://wiki.asterisk.org/wiki/x/wgBQ
  3024. * SIP support was added in Asterisk 10
  3025. * This API now supports IPv6 addresses
  3026. Fax
  3027. ---
  3028. * A technology independent fax frontend (res_fax) has been added to Asterisk.
  3029. * A spandsp based fax backend (res_fax_spandsp) has been added.
  3030. * The app_fax module has been deprecated in favor of the res_fax module and
  3031. the new res_fax_spandsp backend.
  3032. * The SendFAX and ReceiveFAX applications now send their log messages to a
  3033. 'fax' logger level, instead of to the generic logger levels. To see these
  3034. messages, the system's logger.conf file will need to direct the 'fax' logger
  3035. level to one or more destinations; the logger.conf.sample file includes an
  3036. example of how to do this. Note that if the 'fax' logger level is *not*
  3037. directed to at least one destination, log messages generated by these
  3038. applications will be lost, and that if the 'fax' logger level is directed to
  3039. the console, the 'core set verbose' and 'core set debug' CLI commands will
  3040. have no effect on whether the messages appear on the console or not.
  3041. Miscellaneous
  3042. -------------
  3043. * The transmit_silence_during_record option in asterisk.conf.sample has been removed.
  3044. Now, in order to enable transmitting silence during record the transmit_silence
  3045. option should be used. transmit_silence_during_record remains a valid option, but
  3046. defaults to the behavior of the transmit_silence option.
  3047. * Addition of the Unit Test Framework API for managing registration and execution
  3048. of unit tests with the purpose of verifying the operation of C functions.
  3049. * SendText is now implemented in chan_gtalk and chan_jingle. It will simply send
  3050. XMPP text messages to the remote JID.
  3051. * Modules.conf has a new option - "require" - that marks a module as critical for
  3052. the execution of Asterisk.
  3053. If one of the required modules fail to load, Asterisk will exit with a return
  3054. code set to 2.
  3055. * An 'X' option has been added to the asterisk application which enables #exec support.
  3056. This allows #exec to be used in asterisk.conf.
  3057. * jabber.conf supports a new option auth_policy that toggles auto user registration.
  3058. * A new lockconfdir option has been added to asterisk.conf to protect the
  3059. configuration directory (/etc/asterisk by default) during reloads.
  3060. * The parkeddynamic option has been added to features.conf to enable the creation
  3061. of dynamic parkinglots.
  3062. * chan_dahdi now supports reporting alarms over AMI either by channel or span via
  3063. the reportalarms config option.
  3064. * chan_dahdi supports dialing configuring and dialing by device file name.
  3065. DAHDI/span-name!local!1 will use /dev/dahdi/span-name/local/1 . Likewise
  3066. it may appear in chan_dahdi.conf as 'channel => span-name!local!1'.
  3067. * A new options for chan_dahdi.conf: 'ignore_failed_channels'. Boolean.
  3068. False by default. If set, chan_dahdi will ignore failed 'channel' entries.
  3069. Handy for the above name-based syntax as it does not depend on
  3070. initialization order.
  3071. * The Realtime dialplan switch now caches entries for 1 second. This provides a
  3072. significant increase in performance (about 3X) for installations using this switchtype.
  3073. * Distributed devicestate now supports the use of the XMPP protocol, in addition to
  3074. AIS. For more information, please see the Distributed Device State section of the
  3075. Asterisk wiki at https://wiki.asterisk.org/wiki/x/jw4iAQ
  3076. * The addition of G.719 pass-through support.
  3077. * Added support for 16khz Speex audio. This can be enabled by using 'allow=speex16'
  3078. during device configuration.
  3079. * The UNISTIM channel driver (chan_unistim) has been updated to support devices that
  3080. have less than 3 lines on the LCD.
  3081. * Realtime now supports database failover. See the sample extconfig.conf for details.
  3082. * The addition of improved translation path building for wideband codecs. Sample
  3083. rate changes during translation are now avoided unless absolutely necessary.
  3084. * The addition of the res_stun_monitor module for monitoring and reacting to network
  3085. changes while behind a NAT.
  3086. * DTMF: Normal and Reverse Twist acceptance values can be set in dsp.conf.
  3087. DTMF Valid/Invalid number of hits/misses can be set in dsp.conf.
  3088. These allow support for any Administration. Default is AT&T values.
  3089. CLI Changes
  3090. -----------
  3091. * The 'core set debug' and 'core set verbose' commands, in previous versions, could
  3092. optionally accept a filename, to apply the setting only to the code generated from
  3093. that source file when Asterisk was built. However, there are some modules in Asterisk
  3094. that are composed of multiple source files, so this did not result in the behavior
  3095. that users expected. In this version, 'core set debug' and 'core set verbose'
  3096. can optionally accept *module* names instead (with or without the .so extension),
  3097. which applies the setting to the entire module specified, regardless of which source
  3098. files it was built from.
  3099. * New 'manager show settings' command showing the current settings loaded from
  3100. manager.conf.
  3101. * Added 'all' keyword to the CLI command "channel request hangup" so that you can send
  3102. the channel hangup request to all channels.
  3103. * Added a "core reload" CLI command that executes a global reload of Asterisk.
  3104. ------------------------------------------------------------------------------
  3105. --- Functionality changes from Asterisk 1.6.1 to Asterisk 1.6.2 -------------
  3106. ------------------------------------------------------------------------------
  3107. SIP Changes
  3108. -----------
  3109. * Added support for SUBSCRIBE/NOTIFY with dialog-info based call pickups.
  3110. Snom phones use this for call pickup of extensions that the phone is
  3111. subscribed to.
  3112. * Added support for setting the domain in the URI for caller of an
  3113. outbound call by using the SIPFROMDOMAIN channel variable.
  3114. * Added a new configuration option "remotesecret" for authentication to
  3115. remote services. For backwards compatibility, "secret" still has the
  3116. same function as before, but now you can configure both a remote secret and a
  3117. local secret for mutual authentication.
  3118. * If the channel variable ATTENDED_TRANSFER_COMPLETE_SOUND is set,
  3119. the sound will be played to the target of an attended transfer
  3120. * Added two new configuration options, "qualifygap" and "qualifypeers", which allow
  3121. finer control over how many peers Asterisk will qualify and the gap between them
  3122. when all peers need to be qualified at the same time.
  3123. * Added a new 'ignoresdpversion' option to sip.conf. When this is enabled
  3124. (either globally or for a specific peer), chan_sip will treat any SDP data
  3125. it receives as new data and update the media stream accordingly. By
  3126. default, Asterisk will only modify the media stream if the SDP session
  3127. version received is different from the current SDP session version. This
  3128. option is required to interoperate with devices that have non-standard SDP
  3129. session version implementations (observed with Microsoft OCS). This option
  3130. is disabled by default.
  3131. * The parsing of register => lines in sip.conf has been modified to allow a port
  3132. to be present in the "user" portion. Please see the sip.conf.sample file for more
  3133. information
  3134. * Added support for subscribing to MWI on a remote server and making the status available
  3135. as a mailbox. Please see the sip.conf.sample file for more information.
  3136. * Added a function to remove SIP headers added in the dialplan before the
  3137. first INVITE is generated - SIPRemoveHeader()
  3138. * Channel variables set with setvar= in a device configuration is now
  3139. set both for inbound and outbound calls.
  3140. * Added support for ITU G.722.1 and G.722.1C (Siren7 and Siren14) media streams.
  3141. IAX2 changes
  3142. ------------
  3143. * Added immediate option to iax.conf
  3144. * Added forceencryption option to iax.conf
  3145. * Added Encryption and Trunk status to manager command "iaxpeers"
  3146. Skinny Changes
  3147. --------------
  3148. * The configuration file now holds separate sections for devices and lines.
  3149. Please have a look at configs/skinny.conf.sample and change your skinny.conf
  3150. accordingly.
  3151. DAHDI Changes
  3152. -------------
  3153. * chan_dahdi now supports MFC/R2 signaling when Asterisk is compiled with
  3154. support for LibOpenR2. http://www.libopenr2.org/
  3155. * The UK option waitfordialtone has been added for use with BT analog
  3156. lines.
  3157. * Added a 'faxbuffers' configuration option to chan_dahdi.conf. This option
  3158. is used in conjunction with the 'faxdetect' configuration option. When
  3159. 'faxbuffers' is used and fax tones are detected, the channel will dynamically
  3160. switch to the configured faxbuffers policy. For example, to use 6 buffers
  3161. and a 'full' buffer policy for a fax transmission, add:
  3162. faxbuffers=>6,full
  3163. The faxbuffers configuration will be in affect until the call is torn down.
  3164. * Added service message support for 4ESS/5ESS switches.
  3165. Dialplan Functions
  3166. ------------------
  3167. * For DAHDI channels, the CHANNEL() dialplan function now
  3168. supports changing the channel's buffer policy (for the current
  3169. call only), using this syntax:
  3170. exten => s,n,Set(CHANNEL(buffers)=6,full)
  3171. This would change the channel to the 'full' buffer policy and
  3172. 6 (six) buffers. Possible options for this setting are the same
  3173. as those in chan_dahdi.conf.
  3174. * Added a new dialplan function, CURLOPT, which permits setting various
  3175. options that may be useful with the CURL dialplan function, such as
  3176. cookies, proxies, connection timeouts, passwords, etc.
  3177. * Permit the syntax and synopsis fields of the corresponding dialplan
  3178. functions to be individually set from func_odbc.conf.
  3179. * Added debugging CLI functions to func_odbc, 'odbc read' and 'odbc write'.
  3180. * func_odbc now may specify an insert query to execute, when the write query
  3181. affects 0 rows (usually indicating that no such row exists).
  3182. * Added a new dialplan function, LISTFILTER, which permits removing elements
  3183. from a set list, by name. Uses the same general syntax as the existing CUT
  3184. and FIELDQTY dialplan functions, which also manage lists.
  3185. * Added REALTIME_FIELD and REALTIME_HASH, which should aid users in better
  3186. obtaining realtime data from the dialplan.
  3187. * Added LOCAL_PEEK, which allows access to variables in any stack frame within
  3188. a subroutine when using the GoSub() and Return() applications.
  3189. * Added AUDIOHOOK_INHERIT. For information on its use, please see the output
  3190. of "core show function AUDIOHOOK_INHERIT" from the CLI
  3191. * Added AES_ENCRYPT. For information on its use, please see the output
  3192. of "core show function AES_ENCRYPT" from the CLI
  3193. * Added AES_DECRYPT. For information on its use, please see the output
  3194. of "core show function AES_DECRYPT" from the CLI
  3195. * func_odbc now supports database transactions across multiple queries.
  3196. Applications
  3197. ------------
  3198. * Scheduled meetme conferences may now have their end times extended by
  3199. using MeetMeAdmin.
  3200. * app_authenticate now gives the ability to select a prompt other than
  3201. the default.
  3202. * app_directory now pays attention to the searchcontexts setting in
  3203. voicemail.conf and will look through all contexts, if no context is
  3204. specified in the initial argument.
  3205. * A new application, Originate, has been introduced, that allows asynchronous
  3206. call origination from the dialplan.
  3207. * Voicemail now permits setting the emailsubject and emailbody per mailbox,
  3208. in addition to the setting in the "general" context.
  3209. * Added ConfBridge dialplan application which does conference bridges without
  3210. DAHDI. For information on its use, please see the output of
  3211. "core show application ConfBridge" from the CLI.
  3212. Miscellaneous
  3213. -------------
  3214. * The Asterisk CLI has a new command, "channel redirect", which is similar in
  3215. operation to the AMI Redirect action.
  3216. * extensions.conf now allows you to use keyword "same" to define an extension
  3217. without actually specifying an extension. It uses exactly the same pattern
  3218. as previously used on the last "exten" line. For example:
  3219. exten => 123,1,NoOp(something)
  3220. same => n,SomethingElse()
  3221. * musiconhold.conf classes of type 'files' can now use relative directory paths,
  3222. which are interpreted as relative to the astvarlibdir setting in asterisk.conf.
  3223. * All deprecated CLI commands are removed from the sourcecode. They are now handled
  3224. by the new clialiases module. See cli_aliases.conf.sample file.
  3225. * Times within timespecs are now accurate down to the minute. This is a change
  3226. from historical Asterisk, which only provided timespecs rounded to the nearest
  3227. even (read: evenly divisible by 2) minute mark.
  3228. * The realtime switch now supports an option flag, 'p', which disables searches for
  3229. pattern matches.
  3230. * In addition to a time range and date range, timespecs now accept a 5th optional
  3231. argument, timezone. This allows you to perform time checks on alternate
  3232. timezones, especially if those daylight savings time ranges vary from your
  3233. machine's native timezone. See GotoIfTime, ExecIfTime, IFTIME(), and timed
  3234. includes.
  3235. * The contrib/scripts/ directory now has a script called sip_nat_settings that will
  3236. give you the correct output for an asterisk box behind nat. It will give you the
  3237. externhost and localnet settings.
  3238. * The Asterisk core now supports ITU G.722.1 and G.722.1C media streams, and
  3239. can connect calls in passthrough mode, as well as record and play back files.
  3240. * Successful and unsuccessful call pickup can now be alerted through sounds, by
  3241. using pickupsound and pickupfailsound in features.conf.
  3242. * ASTVARRUNDIR is now set to $(localstatedir)/run/asterisk by default.
  3243. This means the asterisk pid file will now be in /var/run/asterisk/asterisk.pid on LINUX
  3244. instead of the /var/run/asterisk.pid where it used to be. This will make
  3245. installs as non-root easier to manage.
  3246. CDR
  3247. ---
  3248. * The cdr.conf file must exist and be correctly programmed in order for CDR records to
  3249. be written; they will no longer be explicitly written.
  3250. Asterisk Manager Interface
  3251. --------------------------
  3252. * When using the AMI over HTTP, you can now include a 'SuppressEvents' header (with
  3253. a non-empty value) in your request. If you do this, any pending AMI events will
  3254. *not* be included in the response to your request as they would normally, but
  3255. will be left in the event queue for the next request you make to retrieve. For
  3256. some applications, this will allow you to guarantee that you will only see
  3257. events in responses to 'WaitEvent' actions, and can better know when to expect them.
  3258. To know whether the Asterisk server supports this header or not, your client can
  3259. inspect the first response back from the server to see if it includes this header:
  3260. Pragma: SuppressEvents
  3261. If this is included, the server supports event suppression.
  3262. * Added 4 new Actions to list skinny device(s) and line(s)
  3263. SKINNYdevices
  3264. SKINNYshowdevice
  3265. SKINNYlines
  3266. SKINNYshowline
  3267. LDAP Schema File Additions
  3268. --------------------------
  3269. * Added AsteriskDialplan, AsteriskAccount and AsteriskMailbox objectClasses
  3270. to allow standalone dialplan, account and mailbox entries (STRUCTURAL)
  3271. * Added new Fields:
  3272. - AstAccountLanguage, AstAccountTransport, AstAccountPromiscRedir,
  3273. - AstAccountAccountCode, AstAccountSetVar, AstAccountAllowOverlap,
  3274. - AstAccountVideoSupport, AstAccountIgnoreSDPVersion
  3275. * Removed redundant IPaddr (there's already IPAddress)
  3276. - Gives more configuration Flags for SIP-Users available (tested)
  3277. - Allows to create Asterisk Attributes in defined Asterisk ObjectClasses
  3278. without extensibleObject (which really should be the last resort); gives
  3279. also additional possibilities for LDAP-filter
  3280. ------------------------------------------------------------------------------
  3281. --- Functionality changes from Asterisk 1.6.0 to Asterisk 1.6.1 -------------
  3282. ------------------------------------------------------------------------------
  3283. Device State Handling
  3284. ---------------------
  3285. * The event infrastructure in Asterisk got another big update to help support
  3286. distributed events. It currently supports distributed device state and
  3287. distributed Voicemail MWI (Message Waiting Indication). A new module has
  3288. been merged, res_ais, which facilitates communicating events between servers.
  3289. It uses the SAForum AIS (Service Availability Forum Application Interface
  3290. Specification) CLM (Cluster Management) and EVT (Event) services to maintain
  3291. a cluster of Asterisk servers, and to share events between them. For more
  3292. information on setting this up, refer to the Distributed Device State section
  3293. of the Asterisk wiki at https://wiki.asterisk.org/wiki/x/jw4iAQ
  3294. Dialplan Functions
  3295. ------------------
  3296. * Added a new dialplan function, AST_CONFIG(), which allows you to access
  3297. variables from an Asterisk configuration file.
  3298. * The JACK_HOOK function now has a c() option to supply a custom client name.
  3299. * Added two new dialplan functions from libspeex for audio gain control and
  3300. denoise, AGC() and DENOISE(). Both functions can be applied to the tx and
  3301. rx directions of a channel from the dialplan.
  3302. * The SMDI_MSG_RETRIEVE function now has the ability to search for SMDI messages
  3303. based on other parameters. The default is still to search based on the
  3304. forwarding station ID. However, there are new options that allow you to search
  3305. based on the message desk terminal ID, or the message desk number.
  3306. * TIMEOUT() has been modified to be accurate down to the millisecond.
  3307. * ENUM*() functions now include the following new options:
  3308. - 'u' returns the full URI and does not strip off the URI-scheme.
  3309. - 's' triggers ISN specific rewriting
  3310. - 'i' looks for branches into an Infrastructure ENUM tree
  3311. - 'd' for a direct DNS lookup without any flipping of digits.
  3312. * TXCIDNAME() has a new zone-suffix parameter (which defaults to 'e164.arpa')
  3313. * CHANNEL() now has options for the maximum, minimum, and standard or normal
  3314. deviation of jitter, rtt, and loss for a call using chan_sip.
  3315. DAHDI channel driver (chan_dahdi) Changes
  3316. ----------------------------------------
  3317. * Channels can now be configured using named sections in chan_dahdi.conf, just
  3318. like other channel drivers, including the use of templates.
  3319. * The default for pridialplan has changed from 'national' to 'unknown'.
  3320. PBX Changes
  3321. -----------
  3322. * It is now possible to specify a pattern match as a hint. Once a phone subscribes
  3323. to something that matches the pattern a hint will be created using the contents
  3324. and variables evaluated.
  3325. * Dialplan matching has been extended to allow an extension to return to the
  3326. PBX core to wait for more digits. This is done by using the new dialplan
  3327. application called "Incomplete". This will permit a whole new level of
  3328. extension control, by giving the administrator more control over early
  3329. matches employing one of the short-circuit pattern match operators. Note
  3330. that custom applications can trigger this same behavior by returning the
  3331. special value AST_PBX_INCOMPLETE.
  3332. Application Changes
  3333. -------------------
  3334. * Directory now permits both first and last names to be matched at the same
  3335. time. In addition, the number of digits to enter of the name can be set in
  3336. the arguments to Directory; previously, you could enter only 3, regardless
  3337. of how many names are in your company. For large companies, this should be
  3338. quite helpful.
  3339. * Voicemail now permits a mailbox setting to wrap around from first to last
  3340. messages, if the "messagewrap" option is set to a true value.
  3341. * Voicemail now permits an external script to be run, for password validation.
  3342. The script should output "VALID" or "INVALID" on stdout, depending upon the
  3343. wish to validate or invalidate the password given. Arguments are:
  3344. "mailbox" "context" "oldpass" "newpass". See the sample voicemail.conf for
  3345. more details
  3346. * Dial has a new option: F(context^extension^pri), which permits a callee to
  3347. continue in the dialplan, at the specified label, if the caller hangs up.
  3348. * ChanSpy and ExtenSpy have a new option, 's' which suppresses speaking the
  3349. technology name (e.g. SIP, IAX, etc) of the channel being spied on.
  3350. * The Jack application now has a c() option to supply a custom client name.
  3351. * Chanspy has a new option, 'B', which can be used to "barge" on a call. This is
  3352. like the pre-existing whisper mode, except that the spy can also talk to the
  3353. participant on the bridged channel as well.
  3354. * Chanspy has a new option, 'n', which will allow for the spied-on party's name
  3355. to be spoken instead of the channel name or number. For more information on the
  3356. use of this option, issue the command "core show application ChanSpy" from the
  3357. Asterisk CLI.
  3358. * Chanspy has a new option, 'd', which allows the spy to use DTMF to swap between
  3359. spy modes. Use of this feature overrides the typical use of numeric DTMF. In other
  3360. words, if using the 'd' option, it is not possible to enter a number to append to
  3361. the first argument to Chanspy(). Pressing 4 will change to spy mode, pressing 5 will
  3362. change to whisper mode, and pressing 6 will change to barge mode.
  3363. * ExternalIVR now takes several options that affect the way it performs, as
  3364. well as having several new commands. Please see the External IVR page on the Asterisk
  3365. wiki for complete documentation: https://wiki.asterisk.org/wiki/x/oQBB
  3366. * Added ability to communicate over a TCP socket instead of forking a child process for the
  3367. ExternalIVR application.
  3368. * ChanIsAvail has a new option, 'a', which will return all available channels instead
  3369. of just the first one if you give the function more then one channel to check.
  3370. * PrivacyManager now takes an option where you can specify a context where the
  3371. given number will be matched. This way you have more control over who is allowed
  3372. and it stops the people who blindly enter 10 digits.
  3373. * ForkCDR has new options: 'a' updates the answer time on the new CDR; 'A' locks
  3374. answer times, disposition, on orig CDR against updates; 'D' Copies the disposition
  3375. from the orig CDR to the new CDR after reset; 'e' sets the 'end' time on the
  3376. original CDR; 'R' prevents the new CDR from being reset; 's(var=val)' adds/changes
  3377. the 'var' variable on the original CDR; 'T' forces ast_cdr_end(), ast_cdr_answer(),
  3378. obey the LOCKED flag on cdr's in the chain, and also the ast_cdr_setvar() func.
  3379. * The Dial() application no longer copies the language used by the caller to the callee's
  3380. channel. If you desire for the caller's channel's language to be used for file playback
  3381. to the callee, then the file specified may be prepended with "${CHANNEL(language)}/" .
  3382. * SendImage() no longer hangs up the channel on error; instead, it sets the
  3383. status variable SENDIMAGESTATUS to one of 'SUCCESS', 'FAILURE', or
  3384. 'UNSUPPORTED'. This change makes SendImage() more consistent with other
  3385. applications.
  3386. * Park has a new option, 's', which silences the announcement of the parking space number.
  3387. * A non-numeric, zero, or negative timeout specified to Dial() will now be interpreted as
  3388. invalid input and will be assumed to mean that no timeout is desired.
  3389. SIP Changes
  3390. -----------
  3391. * Added DNS manager support to registrations for peers referencing peer entries.
  3392. DNS manager runs in the background which allows DNS lookups to be run asynchronously
  3393. as well as periodically updating the IP address. These properties allow for
  3394. better performance as well as recovery in the event of an IP change.
  3395. * Performance improvements via using hash tables (astobj2) and doubly-linked lists to improve
  3396. load/reload of large numbers of peers/users by ~40x (for large lists of peers).
  3397. These changes also provide performance improvements for call setup and tear down.
  3398. * Added ability to specify registration expiry time on a per registration basis in
  3399. the register line.
  3400. * Added support for T140 RED - redundancy in T.140 to prevent text loss due to
  3401. lost packets.
  3402. * Added t38pt_usertpsource option. See sip.conf.sample for details.
  3403. * Added SIPnotify AMI command, for sending arbitrary SIP notify commands.
  3404. * 'sip show peers' and 'sip show users' display their entries sorted in
  3405. alphabetical order, as opposed to the order they were in, in the config
  3406. file or database.
  3407. * Videosupport now supports an additional option, "always", which always sets
  3408. up video RTP ports, even on clients that don't support it. This helps with
  3409. callfiles and certain transfers to ensure that if two video phones are
  3410. connected, they will always share video feeds.
  3411. IAX Changes
  3412. -----------
  3413. * Existing DNS manager lookups extended to check for SRV records.
  3414. * IAX2 encryption support has been improved to support periodic key rotation
  3415. within a call for enhanced security. The option "keyrotate" has been
  3416. provided to disable this functionality to preserve backwards compatibility
  3417. with older versions of IAX2 that do not support key rotation.
  3418. CLI Changes
  3419. -----------
  3420. * New CLI command, "data get <path> [<search> [<filter>]]" which retrieves the
  3421. data tree based on the given <path>.
  3422. * New CLI command "data show providers" that will display all the registered
  3423. callbacks.
  3424. * New CLI command, "config reload <file.conf>" which reloads any module that
  3425. references that particular configuration file. Also added "config list"
  3426. which shows which configuration files are in use.
  3427. * New CLI commands, "pri show version" and "ss7 show version" that will
  3428. display which version of libpri and libss7 are being used, respectively.
  3429. A new API call was added so trunk will now have to be compiled against
  3430. a versions of libpri and libss7 that have them or it will not know that
  3431. these libraries exist.
  3432. * The commands "core show globals", "core set global" and "core set chanvar" has
  3433. been deprecated in favor of the more semanticly correct "dialplan show globals",
  3434. "dialplan set chanvar" and "dialplan set global".
  3435. * New CLI command "dialplan show chanvar" to list all variables associated
  3436. with a given channel.
  3437. DNS manager changes
  3438. -------------------
  3439. * Addresses managed by DNS manager now can check to see if there is a DNS
  3440. SRV record for a given domain and will use that hostname/port if present.
  3441. AMI - The manager (TCP/TLS/HTTP)
  3442. --------------------------------
  3443. * The Status command now takes an optional list of variables to display
  3444. along with channel status.
  3445. * The QueueEntry event now also includes the channel's uniqueid
  3446. ODBC Changes
  3447. ------------
  3448. * res_odbc no longer has a limit of 1023 total possible unshared connections,
  3449. as some people were running into this limit. This limit has been increased
  3450. to 4.2 billion.
  3451. Queue changes
  3452. -------------
  3453. * The TRANSFER queue log entry now includes the the caller's original
  3454. position in the transferred-from queue.
  3455. * A new configuration option, "timeoutpriority" has been added. Please see the section labeled
  3456. "QUEUE TIMING OPTIONS" in configs/queues.conf.sample for a detailed explanation of the option
  3457. as well as an explanation about timeout options in general
  3458. * Added a new option - C - for forcing the "answered elsewhere" flag on
  3459. cancellation of calls in to members of the queue. This is to avoid the
  3460. call to a member of a queue having the call listed as a "missed call".
  3461. Realtime changes
  3462. ----------------
  3463. * Several (ODBC, Postgres, MySQL, SQLite) realtime drivers have been given
  3464. adaptive capabilities. What this means in practical terms is that if your
  3465. realtime table lacks critical fields, Asterisk will now emit warnings to
  3466. that effect. Also, some of the realtime drivers have the ability (if
  3467. configured) to automatically add those columns to the table with the
  3468. correct type and length.
  3469. Miscellaneous
  3470. -------------
  3471. * The channel variable ATTENDED_TRANSFER_COMPLETE_SOUND can now be set using
  3472. the 'setvar' option to cause a given audio file to be played upon completion
  3473. of an attended transfer. Currently it works for DAHDI, IAX2, SIP, and
  3474. Skinny channels only.
  3475. * You can now compile Asterisk against the Hoard Memory Allocator, see the
  3476. Hoard page on the Asterisk wiki for more information:
  3477. https://wiki.asterisk.org/wiki/x/pQBB
  3478. * Config file variables may now be appended to, by using the '+=' append
  3479. operator. This is most helpful when working with long SQL queries in
  3480. func_odbc.conf, as the queries no longer need to be specified on a single
  3481. line.
  3482. * CDR config file, cdr.conf, has an added option, "initiatedseconds",
  3483. which will add a second to the billsec when the ending
  3484. time is set, if the number in the microseconds field of the end time is
  3485. greater than the number of microseconds in the answer time. This allows
  3486. users to count the 'initiated' seconds in their billing records.
  3487. ------------------------------------------------------------------------------
  3488. --- Functionality changes from Asterisk 1.4.X to Asterisk 1.6.0 -------------
  3489. ------------------------------------------------------------------------------
  3490. AMI - The manager (TCP/TLS/HTTP)
  3491. --------------------------------
  3492. * Manager has undergone a lot of changes, all of them documented
  3493. on the Asterisk wiki at https://wiki.asterisk.org/wiki/x/tQBB
  3494. * Manager version has changed to 1.1
  3495. * Added a new action 'CoreShowChannels' to list currently defined channels
  3496. and some information about them.
  3497. * Added a new action 'SIPshowregistry' to list SIP registrations.
  3498. * Added TLS support for the manager interface and HTTP server
  3499. * Added the URI redirect option for the built-in HTTP server
  3500. * The output of CallerID in Manager events is now more consistent.
  3501. CallerIDNum is used for number and CallerIDName for name.
  3502. * Enable https support for builtin web server.
  3503. See configs/http.conf.sample for details.
  3504. * Added a new action, GetConfigJSON, which can return the contents of an
  3505. Asterisk configuration file in JSON format. This is intended to help
  3506. improve the performance of AJAX applications using the manager interface
  3507. over HTTP.
  3508. * SIP and IAX manager events now use "ChannelType" in all cases where we
  3509. indicate channel driver. Previously, we used a mixture of "Channel"
  3510. and "ChannelDriver" headers.
  3511. * Added a "Bridge" action which allows you to bridge any two channels that
  3512. are currently active on the system.
  3513. * Added a "ListAllVoicemailUsers" action that allows you to get a list of all
  3514. the voicemail users setup.
  3515. * Added 'DBDel' and 'DBDelTree' manager commands.
  3516. * cdr_manager now reports events via the "cdr" level, separating it from
  3517. the very verbose "call" level.
  3518. * Manager users are now stored in memory. If you change the manager account
  3519. list (delete or add accounts) you need to reload manager.
  3520. * Added Masquerade manager event for when a masquerade happens between
  3521. two channels.
  3522. * Added "manager reload" command for the CLI
  3523. * Lots of commands that only provided information are now allowed under the
  3524. Reporting privilege, instead of only under Call or System.
  3525. * The IAX* commands now require either System or Reporting privilege, to
  3526. mirror the privileges of the SIP* commands.
  3527. * Added ability to retrieve list of categories in a config file.
  3528. * Added ability to retrieve the content of a particular category.
  3529. * Added ability to empty a context.
  3530. * Created new action to create a new file.
  3531. * Updated delete action to allow deletion by line number with respect to category.
  3532. * Added new action insert to add new variable to category at specified line.
  3533. * Updated action newcat to allow new category to be inserted in file above another
  3534. existing category.
  3535. * Added new event "JitterBufStats" in the IAX2 channel
  3536. * Originate now requires the Originate privilege and, if you want to call out
  3537. to a subshell, it requires the System privilege, as well. This was done to
  3538. enhance manager security.
  3539. * Originate now accepts codec settings with "Codecs: alaw, ulaw, h264"
  3540. * New command: Atxfer. See https://wiki.asterisk.org/wiki/x/uABB for more details
  3541. or manager show command Atxfer from the CLI
  3542. * New command: IAXregistry. See https://wiki.asterisk.org/wiki/x/uABB for more
  3543. details or manager show command IAXregistry from the CLI
  3544. Dialplan functions
  3545. ------------------
  3546. * Added the DEVICE_STATE() dialplan function which allows retrieving any device
  3547. state in the dialplan, as well as creating custom device states that are
  3548. controllable from the dialplan.
  3549. * Extend CALLERID() function with "pres" and "ton" parameters to
  3550. fetch string representation of calling number presentation indicator
  3551. and numeric representation of type of calling number value.
  3552. * MailboxExists converted to dialplan function
  3553. * A new option to Dial() for telling IP phones not to count the call
  3554. as "missed" when dial times out and cancels.
  3555. * Added LOCK(), TRYLOCK(), and UNLOCK(), which provide a single level dialplan
  3556. mutex. No deadlocks are possible, as LOCK() only allows a single lock to be
  3557. held for any given channel. Also, locks are automatically freed when a
  3558. channel is hung up.
  3559. * Added HINT() dialplan function that allows retrieving hint information.
  3560. Hints are mappings between extensions and devices for the sake of
  3561. determining the state of an extension. This function can retrieve the list
  3562. of devices or the name associated with a hint.
  3563. * Added EXTENSION_STATE() dialplan function which allows retrieving the state
  3564. of any extension.
  3565. * Added SYSINFO() dialplan function which allows retrieval of system information
  3566. * Added a new dialplan function, DIALPLAN_EXISTS(), which allows you to check for
  3567. the existence of a dialplan target.
  3568. * Added two new dialplan functions, TOUPPER and TOLOWER, which convert a string to
  3569. upper and lower case, respectively.
  3570. * When bridging, Asterisk sets the BRIDGEPVTCALLID to the channel drivers unique
  3571. ID for the call (not the Asterisk call ID or unique ID), provided that the
  3572. channel driver supports this. For SIP, you get the SIP call-ID for the
  3573. bridged channel which you can store in the CDR with a custom field.
  3574. CLI Changes
  3575. -----------
  3576. * Added CLI permissions, config file: cli_permissions.conf
  3577. default is to allow all commands for every local user/group.
  3578. Also this new feature added three new CLI commands:
  3579. - cli check permissions {<username>|@<groupname>|<username>@<groupname>} [<command>]
  3580. - cli reload permissions
  3581. - cli show permissions
  3582. * New CLI command "core show hint" (usage: core show hint <exten>)
  3583. * New CLI command "core show settings"
  3584. * Added 'core show channels count' CLI command.
  3585. * Added the ability to set the core debug and verbose values on a per-file basis.
  3586. * Added 'queue pause member' and 'queue unpause member' CLI commands
  3587. * Ability to set process limits ("ulimit") without restarting Asterisk
  3588. * Enhanced "agi debug" to print the channel name as a prefix to the debug
  3589. output to make debugging on busy systems much easier.
  3590. * New CLI commands "dialplan set extenpatternmatching true/false"
  3591. * New CLI command: "core set chanvar" to set a channel variable from the CLI.
  3592. * Added an easy way to execute Asterisk CLI commands at startup. Any commands
  3593. listed in the startup_commands section of cli.conf will get executed.
  3594. * Added a CLI command, "devstate change", which allows you to set custom device
  3595. states from the func_devstate module that provides the DEVICE_STATE() function
  3596. and handling of the "Custom:" devices.
  3597. * New CLI command: "sip show sched" which shows all ast_sched entries for sip,
  3598. sorted into the different possible callbacks, with the number of entries
  3599. currently scheduled for each. Gives you a feel for how busy the sip channel
  3600. driver is.
  3601. * Added 'skinny show lines verbose' CLI command. This will show the subs for every channel.
  3602. * Cleanup another bunch of CLI commands. Now all modules follow the same schema.
  3603. (Done by lmadsen, junky and mvanbaak during the devcon 2008)
  3604. SIP changes
  3605. -----------
  3606. * Added a new 'faxdetect=yes|no' configuration option to sip.conf. When this
  3607. option is enabled, Asterisk will watch for a CNG tone in the incoming audio
  3608. for a received call. If it is detected, the channel will jump to the
  3609. 'fax' extension in the dialplan.
  3610. * The default SIP useragent= identifier now includes the Asterisk version
  3611. * A new option, match_auth_username in sip.conf changes the matching of incoming requests.
  3612. If set, and the incoming request carries authentication info,
  3613. the username to match in the users list is taken from the Digest header
  3614. rather than from the From: field. This feature is considered experimental.
  3615. * The "musiconhold" and "musicclass" settings in sip.conf are now removed,
  3616. since they where replaced by "mohsuggest" and "mohinterpret" in version 1.4
  3617. * The "localmask" setting was removed in version 1.2 and the reminder about it
  3618. being removed is now also removed.
  3619. * A new option "busylevel" for setting a level of calls where asterisk reports
  3620. a device as busy, to separate it from call-limit. This value is also added
  3621. to the SIP_PEER dialplan function.
  3622. * A new realtime family called "sipregs" is now supported to store SIP registration
  3623. data. If this family is defined, "sippeers" will be used for configuration and
  3624. "sipregs" for registrations. If it's not defined, "sippeers" will be used for
  3625. registration data, as before.
  3626. * The SIPPEER function have new options for port address, call and pickup groups
  3627. * Added support for T.140 realtime text in SIP/RTP
  3628. * The "checkmwi" option has been removed from sip.conf, as it is no longer
  3629. required due to the restructuring of how MWI is handled. See the descriptions
  3630. in this file of the "pollmailboxes" and "pollfreq" options to voicemail.conf
  3631. for more information.
  3632. * Added rtpdest option to CHANNEL() dialplan function.
  3633. * Added SIPREFERRINGCONTEXT and SIPREFERREDBYHDR variables which are set when a transfer takes place.
  3634. * SIP now adds a header to the CANCEL if the call was answered by another phone
  3635. in the same dial command, or if the new c option in dial() is used.
  3636. * The new default is that 100 Trying is not sent on REGISTER attempts as the RFC specifically
  3637. states it is not needed. For phones, however, that do require it the "registertrying" option
  3638. has been added so it can be enabled.
  3639. * A new option called "callcounter" (global/peer/user level) enables call counters needed
  3640. for better status reports needed for queues and SIP subscriptions. (Call-Limit was previously
  3641. used to enable this functionality).
  3642. * New settings for timer T1 and timer B on a global level or per device. This makes it
  3643. possible to force timeout faster on non-responsive SIP servers. These settings are
  3644. considered advanced, so don't use them unless you have a problem.
  3645. * Added a dial string option to be able to set the To: header in an INVITE to any
  3646. SIP uri.
  3647. * Added a new global and per-peer option, qualifyfreq, which allows you to configure
  3648. the qualify frequency.
  3649. * Added SIP Session Timers support (RFC 4028). This prevents stuck SIP sessions that
  3650. were not properly torn down due to network or endpoint failures during an established
  3651. SIP session.
  3652. * Added experimental TCP and TLS support for SIP. See https://wiki.asterisk.org/wiki/x/ygBB
  3653. and configs/sip.conf.sample for more information on how it is used.
  3654. * Added a new configuration option "authfailureevents" that enables manager events when
  3655. a peer can't authenticate properly.
  3656. * Added DNS manager support to registrations for peers not referencing a peer entry.
  3657. IAX2 changes
  3658. ------------
  3659. * Added the trunkmaxsize configuration option to chan_iax2.
  3660. * Added the srvlookup option to iax.conf
  3661. * Added support for OSP. The token is set and retrieved through the CHANNEL()
  3662. dialplan function.
  3663. XMPP Google Talk/Jingle changes
  3664. -------------------------------
  3665. * Added the bindaddr option to gtalk.conf.
  3666. Skinny changes
  3667. -------------
  3668. * Added skinny show device, skinny show line, and skinny show settings CLI commands.
  3669. * Proper codec support in chan_skinny.
  3670. * Added settings for IP and Ethernet QoS requests
  3671. MGCP changes
  3672. ------------
  3673. * Added separate settings for media QoS in mgcp.conf
  3674. Console Channel Driver changes
  3675. ------------------------------
  3676. * Added experimental support for video send & receive to chan_oss.
  3677. This requires SDL and ffmpeg/avcodec, plus Video4Linux or X11 to act as
  3678. a video source.
  3679. Phone channel changes (chan_phone)
  3680. ----------------------------------
  3681. * Added G729 passthrough support to chan_phone for Sigma Designs boards.
  3682. H.323 channel Changes
  3683. ---------------------
  3684. * H323 remote hold notification support added (by NOTIFY message
  3685. and/or H.450 supplementary service)
  3686. Local channel changes
  3687. ---------------------
  3688. * The device state functionality in the Local channel driver has been updated
  3689. to indicate INUSE or NOT_INUSE when a Local channel is being used as opposed
  3690. to just UNKNOWN if the extension exists.
  3691. * Added jitterbuffer support for chan_local. This allows you to use the
  3692. generic jitterbuffer on incoming calls going to Asterisk applications.
  3693. For example, this would allow you to use a jitterbuffer for an incoming
  3694. SIP call to Voicemail by putting a Local channel in the middle. This
  3695. feature is enabled by using the 'j' option in the Dial string to the Local
  3696. channel in conjunction with the existing 'n' option for local channels.
  3697. * A 'b' option has been added which causes chan_local to return the actual channel
  3698. that is behind it when queried. This is useful for transfer scenarios as the
  3699. actual channel will be transferred, not the Local channel.
  3700. Agent channel changes
  3701. ----------------------
  3702. * The ackcall and endcall options are now supplemented with options acceptdtmf
  3703. and enddtmf. These allow for the DTMF keypress to be configurable. The options
  3704. default to their old hard-coded values ('#' and '*' respectively) so this should
  3705. not break any existing agent installations.
  3706. DAHDI channel driver (chan_dahdi) Changes
  3707. ----------------------------------------
  3708. * SS7 support (via libss7 library)
  3709. * In India, some carriers transmit CID via dtmf. Some code has been added
  3710. that will handle some situations. The cidstart=polarity_IN choice has been added for
  3711. those carriers that transmit CID via dtmf after a polarity change.
  3712. * CID matching information is now shown when doing 'dialplan show'.
  3713. * Added dahdi show version CLI command.
  3714. * Added setvar support to chan_dahdi.conf channel entries.
  3715. * Added two new options: mwimonitor and mwimonitornotify. These options allow
  3716. you to enable MWI monitoring on FXO lines. When the MWI state changes,
  3717. the script specified in the mwimonitornotify option is executed. An internal
  3718. event indicating the new state of the mailbox is also generated, so that
  3719. the normal MWI facilities in Asterisk work as usual.
  3720. * Added signalling type 'auto', which attempts to use the same signalling type
  3721. for a channel as configured in DAHDI. This is primarily designed for analog
  3722. ports, but will also work for digital ports that are configured for FXS or FXO
  3723. signalling types. This mode is also the default now, so if your chan_dahdi.conf
  3724. does not specify signalling for a channel (which is unlikely as the sample
  3725. configuration file has always recommended specifying it for every channel) then
  3726. the 'auto' mode will be used for that channel if possible.
  3727. * Added a 'dahdi set dnd' command to allow CLI control of the Do-Not-Disturb
  3728. state for a channel; also ensured that the DNDState Manager event is
  3729. emitted no matter how the DND state is set or cleared.
  3730. New Channel Drivers
  3731. -------------------
  3732. * Added a new channel driver, chan_unistim. See the Asterisk wiki at
  3733. https://wiki.asterisk.org/wiki/x/vgsiAQ and configs/unistim.conf.sample
  3734. for details. This new channel driver allows you to use Nortel i2002,
  3735. i2004, and i2050 phones with Asterisk.
  3736. * Added a new channel driver, chan_console, which uses portaudio as a cross
  3737. platform audio interface. It was written as a channel driver that would
  3738. work with Mac CoreAudio, but portaudio supports a number of other audio
  3739. interfaces, as well. Note that this channel driver requires v19 or higher
  3740. of portaudio; older versions have a different API.
  3741. DUNDi changes
  3742. -------------
  3743. * Added the ability to specify arguments to the Dial application when using
  3744. the DUNDi switch in the dialplan.
  3745. * Added the ability to set weights for responses dynamically. This can be
  3746. done using a global variable or a dialplan function. Using the SHELL()
  3747. function would allow you to have an external script set the weight for
  3748. each response.
  3749. * Added two new dialplan functions, DUNDIQUERY and DUNDIRESULT. These
  3750. functions will allow you to initiate a DUNDi query from the dialplan,
  3751. find out how many results there are, and access each one.
  3752. * Added the ability to specifiy a port for a dundi peer.
  3753. ENUM changes
  3754. ------------
  3755. * Added two new dialplan functions, ENUMQUERY and ENUMRESULT. These
  3756. functions will allow you to initiate an ENUM lookup from the dialplan,
  3757. and Asterisk will cache the results. ENUMRESULT can be used to access
  3758. the results without doing multiple DNS queries.
  3759. Voicemail Changes
  3760. -----------------
  3761. * Added the ability to customize which sound files are used for some of the
  3762. prompts within the Voicemail application by changing them in voicemail.conf
  3763. * Added the ability for the "voicemail show users" CLI command to show users
  3764. configured by the dynamic realtime configuration method.
  3765. * MWI (Message Waiting Indication) handling has been significantly
  3766. restructured internally to Asterisk. It is now totally event based
  3767. instead of polling based. The voicemail application will notify other
  3768. modules that have subscribed to MWI events when something in the mailbox
  3769. changes.
  3770. This also means that if any other entity outside of Asterisk is changing
  3771. the contents of mailboxes, then the voicemail application still needs to
  3772. poll for changes. Examples of situations that would require this option
  3773. are web interfaces to voicemail or an email client in the case of using
  3774. IMAP storage. So, two new options have been added to voicemail.conf
  3775. to account for this: "pollmailboxes" and "pollfreq". See the sample
  3776. configuration file for details.
  3777. * Added "tw" language support
  3778. * Added support for storage of greetings using an IMAP server
  3779. * Added ability to customize forward, reverse, stop, and pause keys for message playback
  3780. * SMDI is now enabled in voicemail using the smdienable option.
  3781. * A "lockmode" option has been added to asterisk.conf to configure the file
  3782. locking method used for voicemail, and potentially other things in the
  3783. future. The default is the old behavior, lockfile. However, there is a
  3784. new method, "flock", that uses a different method for situations where the
  3785. lockfile will not work, such as on SMB/CIFS mounts.
  3786. * Added the ability to backup deleted messages, to ease recovery in the case
  3787. that a user accidentally deletes a message, and discovers that they need it.
  3788. * Reworked the SMDI interface in Asterisk. The new way to access SMDI information
  3789. is through the new functions, SMDI_MSG_RETRIEVE() and SMDI_MSG(). The file
  3790. smdi.conf can now be configured with options to map SMDI station IDs to Asterisk
  3791. voicemail boxes. The SMDI interface can also poll for MWI changes when some
  3792. outside entity is modifying the state of the mailbox (such as IMAP storage or
  3793. a web interface of some kind).
  3794. * Added the support for marking messages as "urgent." There are two methods to accomplish
  3795. this. One is to pass the 'U' option to VoiceMail(). Another way to mark a message as urgent
  3796. is to specify "review=yes" in voicemail.conf. Doing this will cause allow the user to mark
  3797. the message as urgent after he has recorded a voicemail by following the voice instructions.
  3798. When listening to voicemails using VoiceMailMain urgent messages will be presented before other
  3799. messages
  3800. Queue changes
  3801. -------------
  3802. * Added the general option 'shared_lastcall' so that member's wrapuptime may be
  3803. used across multiple queues.
  3804. * Added QUEUE_VARIABLES function to set queue variables added setqueuevar and
  3805. setqueueentryvar options for each queue, see queues.conf.sample for details.
  3806. * Added keepstats option to queues.conf which will keep queue
  3807. statistics during a reload.
  3808. * setinterfacevar option in queues.conf also now sets a variable
  3809. called MEMBERNAME which contains the member's name.
  3810. * Added 'Strategy' field to manager event QueueParams which represents
  3811. the queue strategy in use.
  3812. * Added option to run macro when a queue member is connected to a caller,
  3813. see queues.conf.sample for details.
  3814. * app_queue now has a 'loose' option which is almost exactly like 'strict' except it
  3815. does not count paused queue members as unavailable.
  3816. * Added min-announce-frequency option to queues.conf which allows you to control the
  3817. minimum amount of time between queue announcements for use when the caller's queue
  3818. position changes frequently.
  3819. * Added additional information to EXITWITHTIMEOUT and EXITWITHKEY events in the
  3820. queue log.
  3821. * Added ability for non-realtime queues to have realtime members
  3822. * Added the "linear" strategy to queues.
  3823. * Added the "wrandom" strategy to queues.
  3824. * Added new channel variable QUEUE_MIN_PENALTY
  3825. * QUEUE_MAX_PENALTY and QUEUE_MIN_PENALTY may be adjusted in mid-call by defining
  3826. rules in queuerules.conf. See configs/queuerules.conf.sample for details
  3827. * Added a new parameter for member definition, called state_interface. This may be
  3828. used so that a member may be called via one interface but have a different interface's
  3829. device state reported.
  3830. * Added new CLI and Manager commands relating to reloading queues. From the CLI, see
  3831. "queue reload", "queue reset stats". Also see "manager show command QueueReload" and
  3832. "manager show command QueueReset."
  3833. * New configuration option: randomperiodicannounce. If a list of periodic announcements is
  3834. specified by the periodic-announce option, then one will be chosen randomly when it is time
  3835. to play a periodic announcment
  3836. * New configuration options: announce-position now takes two more values in addition to "yes" and
  3837. "no." Two new options, "limit" and "more," are allowed. These are tied to another option,
  3838. announce-position-limit. By setting announce-position to "limit" callers will only have their
  3839. position announced if their position is less than what is specified by announce-position-limit.
  3840. If announce-position is set to "more" then callers beyond the position specified by announce-position-limit
  3841. will be told that their are more than announce-position-limit callers waiting.
  3842. * Two new queue log events have been added. An ADDMEMBER event will be logged
  3843. when a realtime queue member is added and a REMOVEMEMBER event will be logged
  3844. when a realtime queue member is removed. Since there is no calling channel associated
  3845. with these events, the string "REALTIME" is placed where the channel's unique id
  3846. is typically placed.
  3847. * The configuration method for the "joinempty" and "leavewhenempty" options has
  3848. changed to a comma-separated list of methods of determining member availability
  3849. instead of vague terms such as "yes," "loose," "no," and "strict." These old four
  3850. values are still accepted for backwards-compatibility, though.
  3851. * The average talktime is now calculated on queues. This information is reported via the
  3852. CLI commands "queue show" and "queues show"; through the AMI events AgentComplete, QueueSummary,
  3853. and QueueParams; and through the channelvariable QUEUETALKTIME if setinterfacevar=yes is set for
  3854. the queue.
  3855. MeetMe Changes
  3856. --------------
  3857. * The 'o' option to provide an optimization has been removed and its functionality
  3858. has been enabled by default.
  3859. * When a conference is created, the UNIQUEID of the channel that caused it to be
  3860. created is stored. Then, every channel that joins the conference will have the
  3861. MEETMEUNIQUEID channel variable set with this ID. This can be used to relate
  3862. callers that come and go from long standing conferences.
  3863. * Added a new application, MeetMeChannelAdmin, which is similar to MeetMeAdmin,
  3864. except it does operations on a channel by name, instead of number in a conference.
  3865. This is a very useful feature in combination with the 'X' option to ChanSpy.
  3866. * Added 'C' option to Meetme which causes a caller to continue in the dialplan
  3867. when kicked out.
  3868. * Added new RealTime functionality to provide support for scheduled conferencing.
  3869. This includes optional messages to the caller if they attempt to join before
  3870. the schedule start time, or to allow the caller to join the conference early.
  3871. Also included is optional support for limiting the number of callers per
  3872. RealTime conference.
  3873. * Added the S() and L() options to the MeetMe application. These are pretty
  3874. much identical to the S() and L() options to Dial(). They let you set
  3875. timeouts for the conference, as well as have warning sounds played to
  3876. let the caller know how much time is left, and when it is running out.
  3877. * Added the ability to do "meetme concise" with the "meetme" CLI command.
  3878. This extends the concise capabilities of this CLI command to include
  3879. listing all conferences, instead of an addition to the other sub commands
  3880. for the "meetme" command.
  3881. * Added the ability to specify the music on hold class used to play into the
  3882. conference when there is only one member and the M option is used.
  3883. * Added MEETME_INFO dialplan function which provides a way to query
  3884. various properties of a Meetme conference.
  3885. * Added new admin features: *81: Roll call, *82: eject all, *83: mute all,
  3886. and *84: record in-conf
  3887. Other Dialplan Application Changes
  3888. ----------------------------------
  3889. * Argument support for Gosub application
  3890. * From the to-do lists: straighten out the app timeout args:
  3891. Wait() app now really does 0.3 seconds- was truncating arg to an int.
  3892. WaitExten() same as Wait().
  3893. Congestion() - Now takes floating pt. argument.
  3894. Busy() - now takes floating pt. argument.
  3895. Read() - timeout now can be floating pt.
  3896. WaitForRing() now takes floating pt timeout arg.
  3897. SpeechBackground() -- clarified in the docstrings that the timeout is an integer seconds.
  3898. * Added 's' option to Page application.
  3899. * Added an optional timeout argument to the Page application.
  3900. * Added 'E', 'V', and 'P' commands to ExternalIVR.
  3901. * Added 'o' and 'X' options to Chanspy.
  3902. * Added a new dialplan application, Bridge, which allows you to bridge the
  3903. calling channel to any other active channel on the system.
  3904. * Added the ability to specify a music on hold class to play instead of ringing
  3905. for the SLATrunk application.
  3906. * The Read application no longer exits the dialplan on error. Instead, it sets
  3907. READSTATUS to ERROR, which you can catch and handle separately.
  3908. * Added 'm' option to Directory, which lists out names, 8 at a time, instead
  3909. of asking for verification of each name, one at a time.
  3910. * Privacy() no longer uses privacy.conf, as all options are specifyable as
  3911. direct options to the app.
  3912. * AMD() has a new "maximum word length" option. "show application AMD" from the CLI
  3913. for more details
  3914. * GotoIfTime() now may branch based on a "false" condition, like other Goto-related applications
  3915. * The ChannelRedirect application no longer exits the dialplan if the given channel
  3916. does not exist. It will now set the CHANNELREDIRECT_STATUS variable to SUCCESS upon success
  3917. or NOCHANNEL if the given channel was not found.
  3918. * The silencethreshold setting that was previously configurable in multiple
  3919. applications is now settable globally via dsp.conf.
  3920. Music On Hold Changes
  3921. ---------------------
  3922. * A new option, "digit", has been added for music on hold classes in
  3923. musiconhold.conf. If this is set for a music on hold class, a caller
  3924. listening to music on hold can press this digit to switch to listening
  3925. to this music on hold class.
  3926. * Support for realtime music on hold has been added.
  3927. * In conjunction with the realtime music on hold, a general section has
  3928. been added to musiconhold.conf, its sole variable is cachertclasses. If this
  3929. is set, then music on hold classes found in realtime will be cached in memory.
  3930. AEL Changes
  3931. -----------
  3932. * AEL upgraded to use the Gosub with Arguments instead
  3933. of Macro application, to hopefully reduce the problems
  3934. seen with the artificially low stack ceiling that
  3935. Macro bumps into. Macros can only call other Macros
  3936. to a depth of 7. Tests run using gosub, show depths
  3937. limited only by virtual memory. A small test demonstrated
  3938. recursive call depths of 100,000 without problems.
  3939. -- in addition to this, all apps that allowed a macro
  3940. to be called, as in Dial, queues, etc, are now allowing
  3941. a gosub call in similar fashion.
  3942. * AEL now generates LOCAL(argname) declarations when it
  3943. Set()'s the each arg name to the value of ${ARG1}, ${ARG2),
  3944. etc. That makes the arguments local in scope. The user
  3945. can define their own local variables in macros, now,
  3946. by saying "local myvar=someval;" or using Set() in this
  3947. fashion: Set(LOCAL(myvar)=someval); ("local" is now
  3948. an AEL keyword).
  3949. * utils/conf2ael introduced. Will convert an extensions.conf
  3950. file into extensions.ael. Very crude and unfinished, but
  3951. will be improved as time goes by. Should be useful for a
  3952. first pass at conversion.
  3953. * aelparse will now read extensions.conf to see if a referenced
  3954. macro or context is there before issueing a warning.
  3955. * AEL parser sets a local channel variable ~~EXTEN~~, to
  3956. preserve the value of ${EXTEN} thru switch statements.
  3957. * New operator in $[...] expressions: the ~~ operator serves
  3958. as a concatenation operator. AT THE MOMENT, it is really only
  3959. necessary and useful in AEL, especially in if() expressions.
  3960. Operation: ${a} ~~ ${b| with force both a and b to strings, strip
  3961. any enclosing double-quotes, and evaluate to the value of a
  3962. concatenated with the value of b. For example if a is set to
  3963. "xyz" and b has the value "abc", then ${a} ~~ ${b| would
  3964. evaluate to xyzabc .
  3965. Call Features (res_features) Changes
  3966. ------------------------------------
  3967. * Added the parkedcalltransfers option to features.conf
  3968. * Added parkedcallparking option to control one touch parking w/ parking
  3969. pickup
  3970. * Added parkedcallhangup option to control disconnect feature w/ parking
  3971. pickup
  3972. * Added parkedcallrecording option to control one-touch record w/ parking
  3973. pickup
  3974. * Added parkedcallparking, parkedcallhangup, parkedcallrecording, and
  3975. parkedcalltransfers option support for multiple parking lots.
  3976. * Added BRIDGE_FEATURES variable to set available features for a channel
  3977. * The built-in method for doing attended transfers has been updated to
  3978. include some new options that allow you to have the transferee sent
  3979. back to the person that did the transfer if the transfer is not successful.
  3980. See the options "atxferdropcall", "atxferloopdelay", and "atxfercallbackretries"
  3981. in features.conf.sample.
  3982. * Added support for configuring named groups of custom call features in
  3983. features.conf. This means that features can be written a single time, and
  3984. then mapped into groups of features for different key mappings or easier
  3985. access control.
  3986. * Updated the ParkedCall application to allow you to not specify a parking
  3987. extension. If you don't specify a parking space to pick up, it will grab
  3988. the first one available.
  3989. * Added cli command 'features reload' to reload call features from features.conf
  3990. * Moved into core asterisk binary.
  3991. * Changed the default setting for featuredigittimeout to 2000 ms from 500 ms.
  3992. * Added the ability for custom parking lots to be configured with their own
  3993. parking extension with the parkext option.
  3994. Language Support Changes
  3995. ------------------------
  3996. * Brazilian Portuguese (pt-BR) in VM, and say.c was added
  3997. * Added support for the Hungarian language for saying numbers, dates, and times.
  3998. AGI Changes
  3999. -----------
  4000. * Added SPEECH commands for speech recognition. A complete listing can be found
  4001. using agi show.
  4002. * If app_stack is loaded, GOSUB is a native AGI command that may be used to
  4003. invoke subroutines in the dialplan. Note that calling EXEC with Gosub
  4004. does not behave as expected; the native command needs to be used, instead.
  4005. * Added the ability to perform SRV lookups on fast AGI calls. To use this
  4006. feature, simply use hagi: instead of agi: as the protocol portion
  4007. of the URI parameter to the AGI function call in your dial plan. Also note
  4008. that specifying a port number in the AGI URI will disable SRV lookups,
  4009. even if you use the hagi: protocol.
  4010. * No longer support MSG_OOB flag on HANGUP.
  4011. Logger changes
  4012. --------------
  4013. * Added rotatestrategy option to logger.conf, along with two new options:
  4014. "timestamp" which will use the time to name the logger files instead of
  4015. sequence number; and "rotate", which rotates the names of the log files,
  4016. similar to the way syslog rotates files.
  4017. * Added exec_after_rotate option to logger.conf, which allows a system
  4018. command to be run after rotation. This is primarily useful with
  4019. rotatestrategy=rotate, to allow a limit on the number of log files kept
  4020. and to ensure that the oldest log file gets deleted.
  4021. * Added realtime support for the queue log
  4022. Call Detail Records
  4023. -------------------
  4024. * The cdr_manager module has a [mappings] feature, like cdr_custom,
  4025. to add fields to the manager event from the CDR variables.
  4026. * Added cdr_adaptive_odbc, a new module that adapts to the structure of your
  4027. backend database CDR table. Specifically, additional, non-standard
  4028. columns are supported, merely by setting the corresponding CDR variable in
  4029. your dialplan. In addition, you may alias any column to another name (for
  4030. example, if you want the 'src' CDR variable to be column 'ANI' in the DB,
  4031. simply "alias src => ANI" in the configuration file). Records may be
  4032. posted to more than one backend, simply by specifying multiple categories
  4033. in the configuration file. And finally, you may filter which CDRs get
  4034. posted to each backend, by specifying a filter (which the record must
  4035. match) for the particular category. Filters are additive (meaning all
  4036. rules must match to post that CDR).
  4037. * The Postgres CDR module now supports some features of the cdr_adaptive_odbc
  4038. module. Specifically, you may add additional columns into the table and
  4039. they will be set, if you set the corresponding CDR variable name. Also,
  4040. if you omit columns in your database table, they will be silently skipped
  4041. (but a record will still be inserted, based on what columns remain). Note
  4042. that the other two features from cdr_adaptive_odbc (alias and filter) are
  4043. not currently supported.
  4044. * The ResetCDR application now has an 'e' option that re-enables a CDR if it
  4045. has been disabled using the NoCDR application.
  4046. Miscellaneous New Modules
  4047. -------------------------
  4048. * Added a new CDR module, cdr_sqlite3_custom.
  4049. * Added a new realtime configuration module, res_config_sqlite
  4050. * Added a new codec translation module, codec_resample, which re-samples
  4051. signed linear audio between 8 kHz and 16 kHz to help support wideband
  4052. codecs.
  4053. * Added a new module, res_phoneprov, which allows auto-provisioning of phones
  4054. based on configuration templates that use Asterisk dialplan function and
  4055. variable substitution. It should be possible to create phone profiles and
  4056. templates that work for the majority of phones provisioned over http. It
  4057. is currently only intended to provision a single user account per phone.
  4058. An example profile and set of templates for Polycom phones is provided.
  4059. NOTE: Polycom firmware is not included, but should be placed in
  4060. AST_DATA_DIR/phoneprov/configs to match up with the included templates.
  4061. * Added a new module, app_jack, which provides interfaces to JACK, the Jack
  4062. Audio Connection Kit (http://www.jackaudio.org/). Two interfaces are
  4063. provided; there is a JACK() application, and a JACK_HOOK() function. Both
  4064. interfaces create an input and output JACK port. The application makes
  4065. these ports the endpoint of the call. The audio coming from the channel
  4066. goes out the output port and whatever comes back in on the input port is
  4067. what gets sent to the channel. The JACK_HOOK() function turns on a JACK
  4068. audiohook on the channel. This lets you run the audio coming from a
  4069. channel through JACK, and whatever comes back in is what gets forwarded
  4070. on as the channel's audio. This is very useful for building custom
  4071. vocoders or doing recording or analysis of the channel's audio in another
  4072. application.
  4073. * Added a new module, res_config_curl, which permits using a HTTP POST url
  4074. to retrieve, create, update, and delete realtime information from a remote
  4075. web server. Note that this module requires func_curl.so to be loaded for
  4076. backend functionality.
  4077. * Added a new module, res_config_ldap, which permits the use of an LDAP
  4078. server for realtime data access.
  4079. * Added support for writing and running your dialplan in lua using the pbx_lua
  4080. module. See configs/extensions.lua.sample for examples of how to do this.
  4081. Miscellaneous
  4082. -------------
  4083. * Ability to use libcap to set high ToS bits when non-root
  4084. on Linux. If configure is unable to find libcap then you
  4085. can use --with-cap to specify the path.
  4086. * Added maxfiles option to options section of asterisk.conf which allows you to specify
  4087. what Asterisk should set as the maximum number of open files when it loads.
  4088. * Added the jittertargetextra configuration option.
  4089. * Added support for setting the CoS for VLAN traffic (802.1p). See the sample
  4090. configuration files for the IP channel drivers. The new option is "cos".
  4091. This information is also documented on the Asterisk wiki at
  4092. https://wiki.asterisk.org/wiki/x/EYBG
  4093. * When originating a call using AMI or pbx_spool that fails the reason for failure
  4094. will now be available in the failed extension using the REASON dialplan variable.
  4095. * Added support for reading the TOUCH_MONITOR_PREFIX channel variable.
  4096. It allows you to configure a prefix for auto-monitor recordings.
  4097. * A new extension pattern matching algorithm, based on a trie, is introduced
  4098. here, that could noticeably speed up mid-sized to large dialplans.
  4099. It is NOT used by default, as duplicating the behaviour of the old pattern
  4100. matcher is still under development. A config file option, in extensions.conf,
  4101. in the [general] section, called "extenpatternmatchingnew", is by default
  4102. set to false; setting that to true will force the use of the new algorithm.
  4103. Also, the cli commands "dialplan set extenpatternmatchingnew true/false" can
  4104. be used to switch the algorithms at run time.
  4105. * A new option when starting a remote asterisk (rasterisk, asterisk -r) for
  4106. specifying which socket to use to connect to the running Asterisk daemon
  4107. (-s)
  4108. * Performance enhancements to the sched facility, which is used in
  4109. the channel drivers, etc. Added hashtabs and doubly-linked lists
  4110. to speed up deletion; start at the beginning or end of list to
  4111. speed up insertion.
  4112. * Added Doubly-linked lists after the fashion of linkedlists.h. They are in
  4113. dlinkedlists.h. Doubly-linked lists feature fast deletion times.
  4114. Added regression tests to the tests/ dir, also.
  4115. * Added a refcount trace feature to astobj2 for those trying to balance
  4116. object creation, deletion; work, play; space and time. See the
  4117. notes in astobj2.h. Also, see utils/refcounter as well, as a
  4118. quick way to find unbalanced refcounts in what could be a sea
  4119. of objects that were balanced.
  4120. * Added logging to 'make update' command. See update.log
  4121. * Added strictrtp option to rtp.conf. If enabled this will drop RTP packets that
  4122. do not come from the remote party.
  4123. * Added the 'n' option to the SpeechBackground application to tell it to not
  4124. answer the channel if it has not already been answered.
  4125. * Added a compiler flag, CHANNEL_TRACE, which permits channel tracing to be
  4126. turned on, via the CHANNEL(trace) dialplan function. Could be useful for
  4127. dialplan debugging.
  4128. * iLBC source code no longer included (see UPGRADE.txt for details)
  4129. * If compiled with DETECT_DEADLOCKS enabled and if you have glibc, then if
  4130. deadlock is detected, a backtrace of the stack which led to the lock calls
  4131. will be output to the CLI.
  4132. * If compiled with DEBUG_THREADS enabled and if you have glibc, then issuing
  4133. the "core show locks" CLI command will give lock information output as well
  4134. as a backtrace of the stack which led to the lock calls.
  4135. * users.conf now sports an optional alternateexts property, which permits
  4136. allocation of additional extensions which will reach the specified user.
  4137. * A new option for the configure script, --enable-internal-poll, has been added
  4138. for use with systems which may have a buggy implementation of the poll system
  4139. call. If you notice odd behavior such as the CLI being unresponsive on remote
  4140. consoles, you may want to try using this option. This option is enabled by default
  4141. on Darwin systems since it is known that the Darwin poll() implementation has
  4142. odd issues.
  4143. Timer Changes
  4144. --------------------
  4145. * In addition to timing from DAHDI, there is a new timing module called
  4146. res_timing_timerfd. In order to use this, you must be running Linux with
  4147. a kernel version 2.6.25 or newer as well as glibc 2.8 or newer. The configure
  4148. script will be able to tell if you have the requirements. From menuselect, select
  4149. res_timing_timerfd from the Resource Modules menu.