Recent content by Canillo

  1. C

    Reg.exp as Option?

    Solved. To put a regular expression in Option field on "IVR Menu" page, the expression must be enclosed in slashes, e.g. /^(\d{2,4})$/ Sometimes FusionPBX is not very user-friendly.
  2. C

    Reg.exp as Option?

    No, I don't think so. The dialplan FusionPBX generates for my IVR has the following lines: action set ivr_menu_uuid=493af24b-9364-4859-acea-fdb2c0a8ff2a action ivr 493af24b-9364-4859-acea-fdb2c0a8ff2a Thank you for your input.
  3. C

    Reg.exp as Option?

    Hello, folks, I'm wondering how I can put regular expression in Option field on "IVR Menu" page? Background: I'm creating an IVR and I have to use the same destination for any input from 2 to 4 digits: whatever user type should fire the same action. When I feed Option field with ^(\d{2,4})$...