thanks for your quick replies!
very close, but i'd use a VM message recorded prior. those allow dialing an extension to play a specific recording.
@william: why are VM messages more suited than a recording linked to a specific extension? wouldn't it be sufficient to put something like this in the extensions.conf:
exten => 123,1,Answer()
exten => 123,n,Playback(myrecording)
exten => 123,n,Hangup()
@matt:
activate the options.php option($PreseT_DiaL_LinKs) to show D1_DIAL links in the transfer conf frame
since we are not using the web-gui (except for admin purposes), I think this wouldn't help us a lot. We are triggering action with http-request, so this maybe helpful, but only if it eases the task of playing a file during a live call.
recommend using the 8168-recorded audio
8168/7 those extensions are used for recording gsm/wave files. There is an AGI script triggered in extensions-vicidial.conf:
- Code: Select all
; Prompt Extensions:
exten => 8167,1,Answer
exten => 8167,2,AGI(agi-record_prompts.agi,wav-----720000)
exten => 8167,3,Hangup
exten => 8168,1,Answer
exten => 8168,2,AGI(agi-record_prompts.agi,gsm-----720000)
exten => 8168,3,Hangup
further extensions defined in extensions.conf are used for playback:
- Code: Select all
; playback of recorded prompts
exten => _851XXXXX,1,Answer
exten => _851XXXXX,2,Playback(${EXTEN})
exten => _851XXXXX,3,Hangup
We won't use the phones to record messages. How can the _851XXXXX extension distinguish between several recordings? I guess the "XXXXX" would be used to define further extensions which are linked to an audio recording(?)
anything wrong or suboptimal with the minimal solution mentioned above?
exten => 123,1,Answer()
exten => 123,n,Playback(myrecording)
exten => 123,n,Hangup()
EDIT:
I just tried to record a wav file by dialing 8167. The following message is played:
"enter your PIN number followed by pound key"
which PIN number? got it, manager manual page 171 "generating audio prompts through a phone". The Pin is "4321".
Regretfully it won't work. The steps which should follow (instructions + beep) etc. don't come up...
Just found out that I don't got
-Audio Store
-Music On Hold
-Text To Speech
under the vicidial admin section, which are described in the admin manual for version 2.2.0.
the webpage says
VERSION: 2.4-256
BUILD: 100523-0840
but since I installed vicibox 2.0.0 does it mean I got vicidial version 2.0.0 which would explain the difference?
Thanks again for your help, it is really appreciated.