Hello guys
I have the following entries in my extensions.conf
//A lot of entries for the times when someone calls directly to a user
exten => 55500000,1,Set(FILENAME=FB-${CALLERID(NUM)}-${EXTEN}-${STRFTIME(${EPOCH},%d.%m.%y-%H.%M.%S)})
exten => 55500000,2,MixMonitor(${FILENAME}.wav)
exten => 55500000,3,Dial(SIP/563)
exten => 55500000,4,Hangup()
This is working all fine.
Then I have this entry
exten => 555,1,Answer()
same => n,Wait(1)
same => n,GotoIfTime(08:00-17:00,mon-fri,,?open:closed)
same => n(closed),Playback(stengt)
same => n,Hangup()
same => n(open),Dial(SIP/554,20)
same => n,Dial(SIP/554&SIP/552&SIP/563&SIP/558&SIP/551&SIP/568&SIP/557,80)
same => n,Playback(alle-linjer-optatt)
This line same => n,Dial(SIP/554&SIP/552&SIP/563&SIP/558&SIP/551&SIP/568&SIP/557,80)
Here there will be no recording of the file like it would be if someone calls directly to one of this SIPs.
Can anyone advice me on the different solutions here?
One solution might be that there will be created no recording file when someone calls the 555 number but instead only a recording when someone picks up.?
Thanks you for any help.