Guide to using custom config files?

Is there any guides to using custom config files for Freepbx? I am trying to add T.38 entries to pjsip.endpoint.post.custom using the following syntax and nothing get added. As this a know bug?

    [281](+)
    faxdetect=true
    etc etc

This is straight 100% Asterisk, so if there is a guide it would be in the Asterisk wiki. Similarly bugs would be in the Asterisk issue tracker.

That said, your lines work for me, adding the following to pjsip.endpoint_custom_post.conf:

[2009](+)
fax_detect_timeout=15
fax_detect=true

After doing a core reload and param is set:

[root@lgaetzdev2 ~]# asterisk -x "pjsip show endpoint 2009" | grep fax_detect
 fax_detect                         : true
 fax_detect_timeout                 : 15

Got it! Worked finally. And my extensions now negotiate T.38 properly!

1 Like