Search results

  1. ewdpb

    SOLVED 'say' in Spanish not working

    Hi all, I am trying to simply have say reading back input digits in Spanish to a single domain (I do not want to change the defaults). Based on the documentation, I am simply doing: caller_input = 785412 session:execute('say', 'es number iterated '..caller_input) However I keep getting a...
  2. ewdpb

    Play ringtone before IVR prompt

    You can playback a tone stream For instance: <action application="playback" data="tone_stream://%(1850,4150,475,425);loops=-1" /> Or in LUA session:execute( "playback", "tone_stream://%(1850,4150,475,425)") Some further info here.
  3. ewdpb

    gateway with colon in password

    I had the very same issue. I ended up escaping the colon \:
  4. ewdpb

    Using voicemail app via LUA

    I figured there was something like that going on. Thanks for confirming.
  5. ewdpb

    SOLVED Where to find transcription log

    Holy smokes, that is the less intuitive thing in the world! Thanks @JamesBorne !
  6. ewdpb

    Using voicemail app via LUA

    Hi all, According to freeswitch documentation, there should be a voicemail application. However when I try something like: <action application="voicemail" data="default multitenant_domain 1021" /> or session:execute('lua','app.lua voicemail'); freeswitch complains that there is no such an...
  7. ewdpb

    SOLVED Where to find transcription log

    Sorry for the dummy question but, where on earth I mark this question as solved?
  8. ewdpb

    SOLVED Where to find transcription log

    Thanks @KonradSC and @JamesBorne for your replies. They are very much appreciated. Testing it now!
  9. ewdpb

    SOLVED Where to find transcription log

    ahh really? Directly in the script? So I can simply change if (debug["info"]) then freeswitch.consoleLog("notice", "[voicemail] CMD: " .. transcribe_cmd .. "\n"); freeswitch.consoleLog("notice", "[voicemail] RESULT: " .. transcribe_result .. "\n"); end into if (true) then...
  10. ewdpb

    SOLVED Where to find transcription log

    Hi all, I am testing voicemail transcription with IBM watson. I already followed all the steps in the instructions but while I do not get any error, warning or, in fact, any mention whatsoever on the subject, I do not get a transcription either. The email comes with a lines saying transcription...
  11. ewdpb

    SOLVED Check bridge transfer result

    lol.... ha, ha... I am fixing it. Good eye.
  12. ewdpb

    SOLVED Check bridge transfer result

    I actually found something that works for me ten minutes after I posted this. I just needed to capture the value of originate_disposition, after the bridge attempt. I tried with several failure causes and it seems to work well. Still I would be interested to know if there is a set of good...
  13. ewdpb

    SOLVED Check bridge transfer result

    Hi all, I am bridging some calls in my application. It all works well but I am strugling to find a way to properly deal with expected errors (e.g. non registered extensions, no answer, rejected, etc.) This is an extract of my code...
  14. ewdpb

    SOLVED IVR without transfert prompt

    I am not sure how you are doing your transfer. You can simply bridge the call to the intended extension or queue https://freeswitch.org/confluence/display/FREESWITCH/mod_dptools:+bridge
  15. ewdpb

    softphone recommendations

    What about paid softphones? Which ones would you recommend?
  16. ewdpb

    Email to Fax Configuration

    @rjunaid , while I do not have an explanation for why it is not working for you, in general, I have found gmail to be cumbersome to use for this type of purposes. You may want to look into services such as mailjet, mailchimp, sendinblue, etc. Their purpose is to be used by third party...
  17. ewdpb

    Disable logging for section of LUA script

    Interesting. I think you are right. I tested it out and it sort of works. I need to play a bit more with it. I think I can make it work. Thanks very much again for your help!
  18. ewdpb

    Disable logging for section of LUA script

    Hi @Adrian Fretwell. Well, if I just run the command on the console it works as intended. However, I do not really see it doing anything when I call it from the app. I just run a quick test calling the github API. What I do is: console_log('NOTICE', 'Session log changed to ERR (Before)')...
  19. ewdpb

    using LUAROCKS in FusionPBX box

    Thanks very much @JamesBorne for taking the time. To be honest I did not want to mess around too much with different packages for I have found that fusionpbx is quite moody. I did not want to break anything. I am about to test on a clean box, It should all go well. Thanks again!
  20. ewdpb

    Disable logging for section of LUA script

    Hi @Adrian Fretwell , thanks very much for the suggestion. It didn't work though :) It does not throw an error, it just does not seem to do anything. On the PCI side, you are right, the problem is that even if they do not know, they can block an application from going live, so the less reasons...