Hi,<br><br>To a large extend, Asterisk&#39;s /etc/asterisk/*.conf configuration files conform to a format such as:<br><br>[section1]<br>key1=value1<br>key2=value2<br><br>[section2]<br>
key1=value1<br>
key2=value2<br>...<br><br>To increase coherence when running custom-made application in Perl, Java, PHP, ...) and Asterisk on the same platform, I&#39;m wondering if could extend a bit Asterisk&#39;s config files instead of duplicating data in an independant config file.<br>
<br>For instance, an app that uses Manager interface needs to be configured with :<br>- the Asterisk manager interface IP address,<br>- a username and secret.<br><br>The later 2 parameters are included /etc/asterisk/manager.conf but the first one is not.<br>
So instead of writing an independant myapp.conf holding all 3 parameters, should I only add the first parameter to existing manager.conf file ?<br><br>Doing this, I would have to make sure that when Asterisk is parsing its config file, it doesn&#39;t stop when it reads unkown supplementary parameters (those added for custom app).<br>
It seems to be the case now with 1.6.1 : a NOTICE warning is sent but it doesn&#39;t really hurt.<br>[May 22 09:15:32] NOTICE[15917]: manager.c:3903 __init_manager: Invalid keyword &lt;foo&gt; = &lt;bar&gt; in manager.conf [general]<br>
<br>Maybe, adding a keyword that would tell Asterisk to skip reading this config file line would be a plus (avoiding warnings and collision with new keywords).<br>What do you think ?<br><br>Then, my next question, is there widely available librairies to parse  Asterisk&#39;s config files-like files ?<br>
<br>Regards<br><br>