config_test.conf.sample 812 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ; Config to test config parsing
  2. ; global and item have values that differ from defaults
  3. ; global_defaults and item_defualts are to show all defaults are set
  4. ; there should be an option for every default type, and a custom type
  5. [global]
  6. intopt=-1
  7. uintopt=1
  8. timelenopt1=1ms
  9. timelenopt2=1s
  10. timelenopt3=1m
  11. timelenopt4=1h
  12. doubleopt=0.1
  13. sockaddropt=1.2.3.4:1234
  14. boolopt=true
  15. boolflag1=true
  16. boolflag2=false
  17. boolflag3=true
  18. deny=0.0.0.0/0
  19. permit=1.2.3.4/32
  20. codecopt=!all,ulaw,g729
  21. stropt=test
  22. customopt=yes
  23. [global_defaults]
  24. [item]
  25. intopt=-1
  26. uintopt=1
  27. timelenopt1=1
  28. timelenopt2=1
  29. timelenopt3=1
  30. timelenopt4=1
  31. doubleopt=0.1
  32. sockaddropt=1.2.3.4:1234
  33. boolopt=true
  34. boolflag1=true
  35. boolflag2=false
  36. boolflag3=true
  37. acldenyopt=0.0.0.0/0
  38. aclpermitopt=1.2.3.4/32
  39. codecopt=!all,ulaw,g729
  40. stropt=test
  41. customopt=yes
  42. [item_defaults]