aboutsummaryrefslogtreecommitdiffstats
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2009-08-18git-svn-id: http://svn.digium.com/svn/asterisk/tags/1.4.19-rc3@212958 ↵v1.4.19-rc3kpfleming3-9/+8
f38db490-d61c-443f-a65b-d21fe96a405b
2008-03-11Update documentation for pgsql ODBC voicemail.qwell1-24/+50
(closes issue #12186) Reported by: jsmith Patches: vm_pgsql_doc_update.patch uploaded by jsmith (license 15) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@107826 f38db490-d61c-443f-a65b-d21fe96a405b
2008-03-05document var_metric so no bugreports will come in when it's actually a ↵mvanbaak1-0/+14
configuration issue. (issue #12151) Reported and patched by: caio1982 1.4 patch by me git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@106178 f38db490-d61c-443f-a65b-d21fe96a405b
2008-02-15Final round of changes for configure script logic for IMAPmmichelson1-1/+4
Now if a directory is specified, then we will search that directory for a source installation of the IMAP toolkit. If none is found, then we will use that directory as the basis for detecting a package installation of the IMAP c-client. If that check fails, then configure will fail. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@103722 f38db490-d61c-443f-a65b-d21fe96a405b
2008-02-15I apparently misunderstood one of the requirements of this configure change.mmichelson1-4/+2
Now, if a source directory is specified with the --with-imap option, and a valid source installation is not detected there, then configure will fail and will not check for a package installation. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@103709 f38db490-d61c-443f-a65b-d21fe96a405b
2008-02-14Make a small clarification in the documentationmmichelson1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@103703 f38db490-d61c-443f-a65b-d21fe96a405b
2008-02-14Update documentation regarding configuration of IMAPmmichelson1-8/+18
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@103701 f38db490-d61c-443f-a65b-d21fe96a405b
2008-01-11Backport the ability to set the ToS bits on Linux when not running as root.russell1-0/+7
Normally, we would not backport features into 1.4, but, I was convinced by the justification supplied by the supplier of this patch. He pointed out that this patch removes a requirement for running as root, thus reducing the potential impacts of security issues. (closes issue #11742) Reported by: paravoid Patches: libcap.diff uploaded by paravoid (license 200) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@98265 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-20closes issue #11324; break statements missing in switch cases.murf1-10/+7
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89450 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-19Clarify documentation a bit, include that a frame has to pass through the ↵file1-1/+1
core in order for the Local channel optimization to happen. (closes issue #11246) Reported by: jon git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89416 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-08Typotilghman1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@89103 f38db490-d61c-443f-a65b-d21fe96a405b
2007-11-01Add some notes on using valgrindtilghman1-0/+19
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@88116 f38db490-d61c-443f-a65b-d21fe96a405b
2007-10-12Change Digium addresstilghman2-2/+2
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@85523 f38db490-d61c-443f-a65b-d21fe96a405b
2007-09-24Oops. Removed the unworkable workaround. This note should never have been ↵tilghman1-3/+1
in the release. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@83653 f38db490-d61c-443f-a65b-d21fe96a405b
2007-09-14Fixing a typo in the coding guidelinesmmichelson1-1/+1
(closes issue #10717, reported and patched by leedm777) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@82376 f38db490-d61c-443f-a65b-d21fe96a405b
2007-08-22Merge changes from team/russell/iax_refcount.russell1-1/+1
This set of changes fixes problems with the handling of iax2_user and iax2_peer objects. It was very possible for a thread to still hold a reference to one of these objects while a reload operation tries to delete them. The fix here is to ensure that all references to these objects are tracked so that they can't go away while still in use. To accomplish this, I used the astobj2 reference counted object model. This code has been in one of Luigi Rizzo's branches for a long time and was primarily developed by one of his students, Marta Carbone. I wanted to go ahead and bring this in to 1.4 because there are other problems similar to the ones fixed by these changes, so we might as well go ahead and use the new astobj if we're going to go through all of the work necessary to fix the problems. As a nice side benefit of these changes, peer and user handling got more efficient. Using astobj2 lets us not hold the container lock for peers or users nearly as long while iterating. Also, by changing a define at the top of chan_iax2.c, the objects will be distributed in a hash table, drastically increasing lookup speed in these containers, which will have a very big impact on systems that have a large number of users or peers. The use of the hash table will be made the default in trunk. It is not the default in 1.4 because it changes the behavior slightly. Previously, since peers and users were stored in memory in the same order they were specified in the configuration file, you could influence peer and user matching order based on the order they are specified in the configuration. The hash table does not guarantee any order in the container, so this behavior will be going away. It just means that you have to be a little more careful ensuring that peers and users are matched explicitly and not forcing chan_iax2 to have to guess which user is the right one based on secret, host, and access list settings, instead of simply using the username. If you have any questions, feel free to ask on the asterisk-dev list. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@80362 f38db490-d61c-443f-a65b-d21fe96a405b
2007-08-08Fix mogs email address.qwell1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@78646 f38db490-d61c-443f-a65b-d21fe96a405b
2007-07-26change protocol for downloads as wellkpfleming1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@77429 f38db490-d61c-443f-a65b-d21fe96a405b
2007-07-26use new canonical name for download serverkpfleming1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@77424 f38db490-d61c-443f-a65b-d21fe96a405b
2007-07-11further reversion of previously applied floating point stuff for expr2murf1-14/+7
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@74628 f38db490-d61c-443f-a65b-d21fe96a405b
2007-07-02support for floating point numbers added to ast_expr2 $\[...\] exprs. Fixes ↵murf1-7/+14
bug 9508, where the expr code fails with fp numbers. The MATH function returns fp numbers by default, so this fix is considered necessary. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@72933 f38db490-d61c-443f-a65b-d21fe96a405b
2007-06-25Fix a typo in the Asterisk mib. (issue #10048, Matti)russell1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@71519 f38db490-d61c-443f-a65b-d21fe96a405b
2007-05-31Issue 9850 - update preferred command line syntaxtilghman1-4/+6
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@66821 f38db490-d61c-443f-a65b-d21fe96a405b
2007-05-29Update datastores documentation. (issue #9801 reported by mnicholson)file1-9/+4
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@66398 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-16Making these documentation changes in the 1.4 branch upset various people, sorussell53-5284/+2732
these chanes will only be done in the trunk. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58955 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-15Refashion dump command to match common syntax and update the resulting ↵tilghman1-0/+87
appdocs TeX file git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58946 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-15add a link to the rubber homepagerussell1-0/+2
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58941 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-15Add Asterisk version information to the generated PDFrussell1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58937 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-15Merge changes from svn/asterisk/team/russell/LaTeX_docs.russell53-2732/+5195
* Convert most of the doc directory into a single LaTeX formatted document so that we can generate a PDF, HTML, or other formats from this information. * Add a CLI command to dump the application documentation into LaTeX format which will only be include if the configure script is run with --enable-dev-mode. * The PDF turned out to be close to 1 MB, so it is not included. However, you can simply run "make asterisk.pdf" to generate it yourself. We may include it in release tarballs or have automatically generated ones on the web site, but that has yet to be decided. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58931 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-14Add a more basic example setup to the examples sectionrussell2-30/+69
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58902 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-14Merged revisions 58896 via svnmerge from russell1-0/+6
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r58896 | russell | 2007-03-14 11:38:48 -0500 (Wed, 14 Mar 2007) | 3 lines Add a note to the security file that the Asterisk CLI and log files may contain sensitive information, and that people should keep this in mind. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58897 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-09Merge some updates to the SLA documentation. I plan to keep working on thisrussell3-225/+339
to explain all of the expected behavior with call handling, configuration details for specific phones, and other things. However, I got tired of doing it in plain text, so I switched to using LaTeX. I have included the PDF version. I haven't been able to get a nice looking plain text version out of it yet, but I'm not terribly concerned since this is supposed to be more of the manual, while the plain text sample configuration file is the reference. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58638 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-01Merge changes from svn/asterisk/team/russell/sla_updatesrussell1-5/+137
* Originally, I put in the documentation that only Zap interfaces would be supported on the trunk side. However, after a discussion with Qwell, we came up with a way to make IP trunks work as well, using some things already in Asterisk. So, here it is, this now officially supports IP trunks. * Update the SLA documentation to reflect how to setup IP trunks. * Add a section in sla.txt that describes how to set up an SLA system with voicemail. * Simplify the way DTMF passthrough is handled in MeetMe. * Fix a bug that exposed itself when using a Local channel on the trunk side in SLA. The station's channel needs to be passed to the dial API when dialing the trunk. * Change a WARNING message to DEBUG in channel.h. This message is of no use to users. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@57364 f38db490-d61c-443f-a65b-d21fe96a405b
2007-03-011. Corrected a typo for www.etsi.org. Thank Patrick.transnexus1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@57263 f38db490-d61c-443f-a65b-d21fe96a405b
2007-02-28minor tweaks to the sla docsrussell1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@57207 f38db490-d61c-443f-a65b-d21fe96a405b
2007-02-22Merge changes from team/russell/sla_updates.russell1-11/+11
This batch of changes to the SLA code does a few different things. * I made the SLA code event driven instead of having to act in a lot of busy loops while dialing things to wait for state changes. This makes the code more efficient and readable at the same time. * I have implemented a couple of new features. The first is inbound trunk ringing timeouts. This is an option that defines how long to let an incoming call on a trunk to ring. * I have also implemented ring timeouts for stations. They may be specified for the entire station, meaning it is how long to let the station ring before giving up. You can also specify a ring timeout for a specific trunk on a station. So, you can say that you only want a specific station to ring 5 seconds if it is line1 ringing, but otherwise, there is no timeout. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@56277 f38db490-d61c-443f-a65b-d21fe96a405b
2007-02-22Update OSP documentation for v1.4.transnexus1-418/+376
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@56169 f38db490-d61c-443f-a65b-d21fe96a405b
2007-02-10Merge team/russell/sla_rewriterussell1-0/+93
This is a completely new implementation of the SLA functionality introduced in Asterisk 1.4. It is now functional and ready for testing. However, I will be adding some additional features over the next week, as well. For information on how to set this up, see configs/sla.conf.sample and doc/sla.txt. In addition to the changes in app_meetme.c for the SLA implementation itself, this merge brings in various other changes: chan_sip: - Add the ability to indicate HOLD state in NOTIFY messages. - Queue HOLD and UNHOLD control frames even if the channel is not bridged to another channel. linkedlists.h: - Add support for rwlock based linked lists. dial.c: - Add the ability to run ast_dial_start() without a reference channel to inherit information from. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@53810 f38db490-d61c-443f-a65b-d21fe96a405b
2007-02-09clarify the fact that voicemail IMAP storage cannot be built against a ↵kpfleming1-0/+6
distro's binary c-client library package (at least not at this time) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@53715 f38db490-d61c-443f-a65b-d21fe96a405b
2007-01-30Add documentation for using cdr_pgsql. (issue #8942, lters)russell1-0/+46
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@52999 f38db490-d61c-443f-a65b-d21fe96a405b
2007-01-16change documentation to reflect new procedure in 1.4/trunkqwell1-11/+2
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@51165 f38db490-d61c-443f-a65b-d21fe96a405b
2007-01-16Merged revisions 51161 via svnmerge from tilghman1-0/+436
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r51161 | tilghman | 2007-01-16 15:50:04 -0600 (Tue, 16 Jan 2007) | 2 lines Add documentation walkthrough on getting Postgres to work with voicemail (from Issue 8513) ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@51162 f38db490-d61c-443f-a65b-d21fe96a405b
2007-01-03Merged revisions 48319,48321,48467,48552,48576,49135,49303 via svnmerge from crichter1-0/+10
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r48319 | crichter | 2006-12-06 15:35:25 +0100 (Mi, 06 Dez 2006) | 1 line changed a few debugs to higher debug levels ........ r48321 | crichter | 2006-12-06 16:48:45 +0100 (Mi, 06 Dez 2006) | 1 line added the export and import of the MISDN_ADDRESS_COMPLETE Variable to inidcate wether the extension is already completely dialed or if there might come additional digits by information elements. also added some docs for that. ........ r48467 | crichter | 2006-12-14 14:03:49 +0100 (Do, 14 Dez 2006) | 1 line removed FIXUP state. added check for channel allocation conflict when we create a setup while the other site creates a setup on the same channel, besides the check we resolve this conflict. ........ r48552 | crichter | 2006-12-18 11:19:39 +0100 (Mo, 18 Dez 2006) | 1 line when our PTP Partner sends us a SETUP with a preselected channel we just accept it, even when we're NT. added some checks for segfaults. ........ r48576 | crichter | 2006-12-19 14:08:51 +0100 (Di, 19 Dez 2006) | 1 line when we reject a channel, because it's in use already, we shouldn't process the setup anymore. made the channel allocation a bit easier and more understandable, removed a few unused lines ........ r49135 | crichter | 2007-01-02 11:07:22 +0100 (Di, 02 Jan 2007) | 1 line added check for channel ranges in the set/empty channel functions. set pmp_l1_check default to no. added misdn restart pid cli command. added cleaning of channel when we send a RELEASE_COMPLETE. ........ r49303 | crichter | 2007-01-03 09:24:00 +0100 (Mi, 03 Jan 2007) | 9 lines * Added check for bridging in misdn_call to avoid setting echocancellation when 2 mISDN channels are involved and when bridging is set. That lead to a kernel panic before under different situations, because we switched about 2 times between hardware bridging and echocancelation * readded MISDN_URATE variable which got lost before, this should make app_v110 work again * fixed typo ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@49313 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-19find is not the same as bind when it comes to documentation. (issue #8626 ↵file1-1/+1
reported by johann8384) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@48592 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-04Attempt to document some of the dependencies that are needed for net-snmpqwell1-2/+5
Issue 8499 - initial patch by blitzrage. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@48228 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-30Explain status reports andoej1-0/+9
make codefreeze more happy :-) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@48135 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-16update documentation regarding IAX2 transfers and CDRskpfleming1-25/+10
Merged revisions 47776 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r47776 | kpfleming | 2006-11-16 16:57:31 -0600 (Thu, 16 Nov 2006) | 2 lines update clearly wrong documentation regarding cdr_custom ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@47777 f38db490-d61c-443f-a65b-d21fe96a405b
2006-10-26update backtrace documentation to reflect changes in 1.4 (issue #8230, kshumard)russell1-16/+20
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@46298 f38db490-d61c-443f-a65b-d21fe96a405b
2006-10-24simplify and correct voicemail IMAP storage build instructionskpfleming1-20/+26
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@46080 f38db490-d61c-443f-a65b-d21fe96a405b
2006-10-03updated res_jabber for even better component support, soon will be jep-0100 ↵mogorman1-1/+2
compliant. also removed chan_jingle and infromed info from jingle.txt, chan_gtalk still works and should be used in this version. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@44240 f38db490-d61c-443f-a65b-d21fe96a405b