aboutsummaryrefslogtreecommitdiffstats
path: root/configs
AgeCommit message (Collapse)AuthorFilesLines
2008-01-30Change default config to use descending channel order of groups, rather than ↵qwell1-4/+4
ascending. Fixes a potential source of confusion in glare-type situations. Issue 11875, reported by JimVanM. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@101219 f38db490-d61c-443f-a65b-d21fe96a405b
2008-01-21Permit the user to specify number of seconds that a connection may remain idle,tilghman1-0/+5
which fixes a crash on reconnect with the MyODBC driver. (closes issue #11798) Reported by: Corydon76 Patches: 20080119__res_odbc__idlecheck.diff.txt uploaded by Corydon76 (license 14) Tested by: mvanbaak git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@99341 f38db490-d61c-443f-a65b-d21fe96a405b
2008-01-17doh! revert a revert of a revert (changed by mistake in 99010)pari1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@99014 f38db490-d61c-443f-a65b-d21fe96a405b
2008-01-17missed that one while revertingpari1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@99010 f38db490-d61c-443f-a65b-d21fe96a405b
2008-01-17Add a clarification about the immediate= option of zapata.confqwell1-0/+2
Issue 11784, patch by klaus3000. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@98991 f38db490-d61c-443f-a65b-d21fe96a405b
2008-01-10Remove other remnants of pbx_kdeconsolerussell1-3/+0
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@97753 f38db490-d61c-443f-a65b-d21fe96a405b
2008-01-07Merged revisions 96931 via svnmerge from russell1-1/+1
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r96931 | russell | 2008-01-07 14:46:22 -0600 (Mon, 07 Jan 2008) | 2 lines Change misery.digium.com to pbx.digium.com ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@96932 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-28it is impossible to set permissions for manager accounts created by ↵kpfleming1-0/+5
users.conf (reported internally, patched by me) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@90098 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-27Add a note to the sample voicemail config noting that when using IMAP storage,russell1-1/+2
only the first format specified will be attached to the message. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89634 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-27Clarify limitonpeers=yesoej1-0/+3
(closes issue #11304) Reported by: pj git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89624 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-27closes issue #11379; OK, this is an attempt to make both sides happy. To the ↵murf1-0/+10
cdr.conf file, I added the option 'unanswered', which defaults to 'no'. In this mode, you will see a cdr for a call, whether it was answered or not. The disposition will be NO ANSWER or ANSWERED, as appropriate. The src is as you'd expect, the destination channel will be one of the channels from the Dial() call, usually the last in the list if more than one chan was specified. With unanswered set to 'yes', you will still see this cdr entry in both cases. But in the case where the dial timed out, you will also see a cdr for each line attempted, marked NO ANSWER, with no destination channel name. The new option defaults to 'no', so you don't see the pesky extra cdr's by default, and you will not see the irritating 'not posted' messages. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89622 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-25We previously attempted to use the ESCAPE clause to set the escape delimiter totilghman1-0/+3
a backslash. Unfortunately, this does not universally work on all databases, since on databases which natively use the backslash as a delimiter, the backslash itself needs to be delimited, but on other databases that have no delimiter, backslashing the backslash causes an error. So the only solution that I can come up with is to create an option in res_odbc that explicitly specifies whether or not backslash is a native delimiter. If it is, we use it natively; if not, we use the ESCAPE clause to make it one. Reported by: elguero Patch by: tilghman (Closes issue #11364) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89559 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-22mvanbaak pointed out a spelling error in this sample configuration file. Whilerussell1-2/+2
I was at it, I went ahead and tweaked it a little bit more. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89527 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-12if we're NT and no number was dialed and overlapdial is set, we wait for the ↵crichter1-0/+7
ISDN timeout instead of starting our own timer. added a comment for the misdn.conf.sample for the overlapdial config option. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89173 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-12aded ntkeepcalls option, to avoid droÃpping calls when the L2 goes down on ↵crichter1-0/+6
a PTP link. There are some pbx which do turn off the L1 for a very short while and restart it immediately. normally T310 should be started and after 10 seconds or so the calls should be dropped, this is a simple fix wihtout this timer. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89169 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-08Avoid warnings on load when using sample configuration files.qwell1-1/+1
Issue 11195, patch by eliel. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89115 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-07Suppress AEL warnings on load.tilghman1-1/+2
Reported by: eliel Patch by: eliel Closes issue #11178 git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89079 f38db490-d61c-443f-a65b-d21fe96a405b
2007-10-18Revert erroneous commit.russell1-9/+0
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@86372 f38db490-d61c-443f-a65b-d21fe96a405b
2007-10-18Add support for setting the maximum trunk size for IAX2 trunkingrussell1-0/+9
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@86371 f38db490-d61c-443f-a65b-d21fe96a405b
2007-10-16Since monitor-join is deprecated now, remove the example from the sample ↵mmichelson1-7/+0
queues.conf file git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@86032 f38db490-d61c-443f-a65b-d21fe96a405b
2007-10-15Document that DTMF based features only work when two channels are bridged ↵file1-0/+4
together. (closes issue #10773) Reported by: pbayley git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@85571 f38db490-d61c-443f-a65b-d21fe96a405b
2007-10-13Remove deprecated syntax from sample ael filetilghman1-4/+4
Reported and patched by: dimas Closes issue #10967 git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@85536 f38db490-d61c-443f-a65b-d21fe96a405b
2007-10-01Remove chan_usbradio config file from tree, it is not present in here.file1-54/+0
(closes issue #10839) Reported by: casper git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@84163 f38db490-d61c-443f-a65b-d21fe96a405b
2007-09-18Correct the allowexternaldomains option in SIP sample config.qwell1-1/+1
Issue 10753 git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@82751 f38db490-d61c-443f-a65b-d21fe96a405b
2007-09-14Add a note to help clarify the value set with the echocancel option.russell1-0/+3
(inspired by Malcolm's blog post on blogs.digium.com about HPEC) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@82435 f38db490-d61c-443f-a65b-d21fe96a405b
2007-09-14Added channel driver for USB Radio device andjdixon1-0/+54
support thereof. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@82366 f38db490-d61c-443f-a65b-d21fe96a405b
2007-09-10Removing non-existent options from misdn configuration sample.mmichelson1-10/+0
(closes issue #10678, reported and patched by IgorG) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@82091 f38db490-d61c-443f-a65b-d21fe96a405b
2007-09-07Moving the explanation for joinempty to a more appropriate placemmichelson1-10/+7
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@81886 f38db490-d61c-443f-a65b-d21fe96a405b
2007-09-04Change default followme config file to point to the correct files.qwell1-3/+3
Issue 10644, patch by pabelanger git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@81453 f38db490-d61c-443f-a65b-d21fe96a405b
2007-08-30Fix a typo, update a reload command, and remove an unused configuration file.russell3-95/+3
(closes issue #10606, casper) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@81379 f38db490-d61c-443f-a65b-d21fe96a405b
2007-08-28Add Russian tones. (closes issue #7953, hanabana)russell1-7/+12
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@81226 f38db490-d61c-443f-a65b-d21fe96a405b
2007-08-21(issue #10510)qwell1-17/+15
Reported by: casper Patches: cdr.conf.diff uploaded by casper (license 55) Fix a few errors in sample cdr config file. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@80130 f38db490-d61c-443f-a65b-d21fe96a405b
2007-08-20(issue #10499)qwell1-8/+8
Reported by: casper Patches: extensions.conf.sample.diff uploaded by casper (license 55) Update CLI examples in extensions.conf.sample to reflect command changes. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@80047 f38db490-d61c-443f-a65b-d21fe96a405b
2007-08-10(closes issue #10422)file1-0/+4
Reported by: bhowell Add note to sample configuration about module load order and how it can cause perfectly good queue members to be marked as invalid. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@78951 f38db490-d61c-443f-a65b-d21fe96a405b
2007-08-08(closes issue #10335)file1-1/+2
Reported by: adamgundy Update sip.conf to include another scenario where directrtpsetup will fail. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@78569 f38db490-d61c-443f-a65b-d21fe96a405b
2007-08-02Make sure we actually allow 6 chars to be sent.qwell1-1/+3
Also make note of the "A" option of date format. Issue 9779, modifications by DEA, wedhorn, and myself. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@77996 f38db490-d61c-443f-a65b-d21fe96a405b
2007-05-07Add a sample configuration file and example tables for use with ↵russell2-1/+20
res_config_pgsql. (issue #9676, suretec) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@63329 f38db490-d61c-443f-a65b-d21fe96a405b
2007-05-04explanation for httptimeout in manager.confpari1-0/+7
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@63047 f38db490-d61c-443f-a65b-d21fe96a405b
2007-05-02a)In chan_zap, set the clid, src fields in channel_alloc call. b)in the ↵murf1-4/+37
channel_alloc func, set the cid_num and name fields from the arglist[blush]. c) don't update the channel app & app data fields if you are in the 'h' extension. d)the load_module func in cdr_radius needs to return DECLINE, SUCCESS. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@62689 f38db490-d61c-443f-a65b-d21fe96a405b
2007-05-01Merged revisions 62496 via svnmerge from russell1-0/+21
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r62496 | russell | 2007-05-01 11:26:23 -0500 (Tue, 01 May 2007) | 3 lines Add indications.conf information for the Philippines. (issue #9525, reported and patched by loloski) ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@62497 f38db490-d61c-443f-a65b-d21fe96a405b
2007-04-30Remove unused (and potentially confusing) jitterbuffer options from sample ↵qwell1-5/+1
config. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@62371 f38db490-d61c-443f-a65b-d21fe96a405b
2007-04-06To be able to achieve the things that we would like to achieve with therussell1-0/+12
Asterisk GUI project, we need a fully functional HTTP interface with access to the Asterisk manager interface. One of the things that was intended to be a part of this system, but was never actually implemented, was the ability for the GUI to be able to upload files to Asterisk. So, this commit adds this in the most minimally invasive way that we could come up with. A lot of work on minimime was done by Steve Murphy. He fixed a lot of bugs in the parser, and updated it to be thread-safe. The ability to check permissions of active manager sessions was added by Dwayne Hubbard. Then, hacking this all together and do doing the modifications necessary to the HTTP interface was done by me. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@60603 f38db490-d61c-443f-a65b-d21fe96a405b
2007-04-05Added some clarification to the example configs for CDRs, on how to select a ↵murf2-6/+79
backend. Also, made cdr-csv the default if you 'make samples', and no other changes. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@60323 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-30A small clarification to keep bugs from being filed, and confusion from ↵murf1-0/+10
rising, if clearglobalvars is set, and globals are set in the AEL file. (9419) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@59452 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-19Fix unescaped semicolon (reported via -dev list)tilghman1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@59040 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-16fix a couple SLA documentation referencesrussell1-2/+2
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58957 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-14By default, don't attempt to do any CallerID handling at all with SLA becauserussell1-1/+5
it is known to not work properly in some situations. However, add an option to enable it for those that would like to use it anyway. The short story behind this is that to properly handle CallerID with SLA, we need the ability to change the CallerID on an existing call, and we are not ready to handle that. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58894 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-13fix the reference to the SLA documentationrussell1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58870 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-12Add matchexterniplocally setting which only substitutes your ↵file1-0/+4
externip/externhost setting if it matches the localnet setting. I know of at least two people who need opposite settings, so I made it an option! (issue #8821 reported by kokoskarokoska) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58779 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-06Clarify the documentation of the dialout and sendvoicemail options.russell1-5/+6
(issue #9000, caio1982 and serge-v) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58119 f38db490-d61c-443f-a65b-d21fe96a405b