From: <abe...@us...> - 2012-02-08 23:40:52
|
Revision: 5452 http://astlinux.svn.sourceforge.net/astlinux/?rev=5452&view=rev Author: abelbeck Date: 2012-02-08 23:40:46 +0000 (Wed, 08 Feb 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-02-08 23:36:21 UTC (rev 5451) +++ branches/1.0/docs/ChangeLog.txt 2012-02-08 23:40:46 UTC (rev 5452) @@ -107,10 +107,14 @@ Example Dialplan Code to replace Notify() application: (AstLinux 1.0.2 and later) [macro-notify] - exten => s,1,System(/bin/echo -ne "${ARG1}|${ARG2}|${ARG3}\\x00" | /usr/bin/nc -u -w1 ${ARG4} 40000 &) - ... + exten => s,1,System(/bin/echo -ne '${ARG1}|${ARG2}|${ARG3}\\x00' | /usr/bin/nc -u -w1 ${ARG4} 40000 &) + ; + ;Note: Asterisk 1.4 will require the above ' characters to be escaped as \' + ; It is important to use single quotes so no shell expansion takes place. + ;... exten => 3,1,Macro(notify,${CALLERID(name)},${CALLERID(num)},${EXTEN},192.168.101.13) + ** Web Interface -- Prefs tab and System tab, if the "Repository URL:" has not been defined (ex. initial This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |