Search results

  1. M

    Daylight savings Time (US)

    Also, what do you have in default settings for: http_auth_disable http_auth_password http_auth_type http_auth_username
  2. M

    Daylight savings Time (US)

    You have a W52p? And when you go to http://yourdomain/app/provision/{ThePhonesMacAddress}.cfg, it shows both the contents of y000000000025.cfg and {$mac}.cfg?
  3. M

    Daylight savings Time (US)

    That looks like the default y000000000025.cfg file...which is what I have. But my phone W52p, won't pick it up, or it's not getting pushed.
  4. M

    Daylight savings Time (US)

    I think that's part of the problem. When I go to http://yourdomain/app/provision/{ThePhonesMacAddress}.cfg, it appears that only the contents of {$mac}.cfg are pushed. The contents of the y000000000025.cfg file don't appear to be part of what is pushed.
  5. M

    Daylight savings Time (US)

    That's exactly what I have and it doesn't work.
  6. M

    Daylight savings Time (US)

    This didn't work for me on my W52P. None of these variables were pushed to the configuration file. These yealink phones are incredibly frustrating to get provisioned correctly.
  7. M

    Daylight savings Time (US)

    That’s what I have and it doesn’t work.
  8. M

    Daylight savings Time (US)

    Yeah, I can confirm that it fixes my Polycoms, but my yealink is still wrong. Additionally, it shows time in 24 hour format. Any ideas how I can get the DST issue (and hopefully the time format) issue fixed on Yealink?
  9. M

    Daylight savings Time (US)

    So is does this fix it or not?
  10. M

    Daylight savings Time (US)

    I am. I also have polycom_gmt_offset set which may be part of the issue. Although my yealink phones are also not respecting daylight savings time either. Any ideas would be great.
  11. M

    Daylight savings Time (US)

    Here in the US we've just ended DST. But, none of my phones have had the correct time pushed to them. I run NTP on the Debian server on which FreeSWITCH and Fusion are running and that has updated its time correctly, but my phones (polycom and yealink) have not pushed the clock ahead by an...
  12. M

    Outbound route base on Extensions

    But how do you set: <variable name="register-gateway" value="user1out"/> from within the GUI? Fusion doesn't have any way to add this, as far as I can tell.
  13. M

    Outbound route base on Extensions

    Sounds right to me, but how do you get it to route in the dialplan?
  14. M

    Outbound route base on Extensions

    Interesting point. So then how does it get used? What’s the point if it?
  15. M

    Outbound route base on Extensions

    This looks great. How can it be implemented without compromising integrity of FusionPBX sand future upgradability?
  16. M

    Outbound Route with an OR condition

    Right ^94(.*)$ would be the prefix to match. 203 is the extension that I want to route. The fields would be different.
  17. M

    Outbound Route with an OR condition

    There's that, and then I think I need to do a condition set destinatio_number=$1. Fixing these SHOULD allow the 94 prefix, but how would I ALSO do a condition username = 203?
  18. M

    Outbound Route with an OR condition

    That didn't work... FreeSWITCH says: Dialplan: sofia/internal/100@$DOMAIN.net Regex (FAIL) [$PROVIDER] regex() =~ /any/ break=on-false
  19. M

    Outbound Route with an OR condition

    Of course. But this must be over engineered... :) This is the way you would do it with regular FreeSWITCH: <condition regex="any"> <!-- If either of these is true then the subsequent actions are added to execute list --> <regex field="caller_id_name" expression="Some User"/>...
  20. M

    Outbound Route with an OR condition

    I'm trying to do an outbound route with an "OR". I want the route to apply if one of two conditions is applicable: 1. Destination Number is true for REGEX ^94(.*)$ 2. Extension initiating call is 203 Seems like I could do this with a regex tag in the outbound route, but I can't figure out...