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't working (on previous Asterisk 1.2.17 it was working fine). 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 => 111222333 ; Blind transfer (default is #)<br>disconnect => 444555666 ; Disconnect (default is *)<br>;automon => *1 ; One Touch Record a.k.a. Touch Monitor<br>
;atxfer => *2 ; Attended transfer<br>;parkcall => #72 ; Park call (one step parking)<br>;automixmon => *3 ; One Touch Record a.k.a. Touch MixMonitor<br>
<br> <br>[applicationmap]<br>testfeature => #9,peer/both,Playback,beep<br><br>record_start => #7,self/both,Macro,RECORD_START ; doesn't work, peer or self doesn't make difference<br>record_stop => #8,self/both,Macro,RECORD_STOP ; doesn't work, peer or self doesn't make difference<br>
;record_start => 7,self/both,Macro,RECORD_START ; works fine only from caller side<br>;record_stop => 8,self/both,Macro,RECORD_STOP ; works fine only from caller side<br> <br>extension.conf:<br>[general]<br>
autofallthrough=yes<br><br>[macro-RECORD_START]<br>exten => s,1,Playback(beep)<br>exten => s,2,AGI(${AGI_SERVER}${RECORD_AGI}?MODE=start)<br><br>[macro-RECORD_STOP]<br>exten => s,1,AGI(${AGI_SERVER}${RECORD_AGI}?MODE=stop)<br>
<br><br>-- <br>Regards, Shuma