Hello,<br>I have following problem with my Asterisk installation (version <a href="http://1.6.0.">1.6.0.</a> beta 7.1). I want to assign start record conversation to #7 and stop record conversation to #8, but it isn&#39;t working (on previous Asterisk 1.2.17 it was working fine).&nbsp;&nbsp;When I assign those functions to 7/8 (without #) correspondingly it also works fine, but it works only from caller side. I would appreciate very much if somebody can take a look at my configuration below and give me comments what I am doing wrong.<br>
 <br><br>My configuration:<br><br>features.conf:<br>[featuremap]<br>blindxfer =&gt; 111222333&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; Blind transfer&nbsp;&nbsp;(default is #)<br>disconnect =&gt; 444555666&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; Disconnect&nbsp;&nbsp;(default is *)<br>;automon =&gt; *1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ; One Touch Record a.k.a. Touch Monitor<br>
 ;atxfer =&gt; *2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; Attended transfer<br>;parkcall =&gt; #72&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; Park call (one step parking)<br>;automixmon =&gt; *3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; One Touch Record a.k.a. Touch MixMonitor<br>
<br> <br>[applicationmap]<br>testfeature =&gt; #9,peer/both,Playback,beep<br><br>record_start =&gt; #7,self/both,Macro,RECORD_START&nbsp;&nbsp; ; doesn&#39;t work, peer or self doesn&#39;t make difference<br>record_stop =&gt; #8,self/both,Macro,RECORD_STOP&nbsp;&nbsp;&nbsp;&nbsp; ; doesn&#39;t work, peer or self doesn&#39;t make difference<br>
 ;record_start =&gt; 7,self/both,Macro,RECORD_START&nbsp;&nbsp;&nbsp;&nbsp;; works fine only from caller side<br>;record_stop =&gt; 8,self/both,Macro,RECORD_STOP&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;; works fine only from caller side<br> <br>extension.conf:<br>[general]<br>
 autofallthrough=yes<br><br>[macro-RECORD_START]<br>exten =&gt; s,1,Playback(beep)<br>exten =&gt; s,2,AGI(${AGI_SERVER}${RECORD_AGI}?MODE=start)<br><br>[macro-RECORD_STOP]<br>exten =&gt; s,1,AGI(${AGI_SERVER}${RECORD_AGI}?MODE=stop)<br>
 <br><br>-- <br>Regards,&nbsp;&nbsp;Shuma