Commit Graph

16415 Commits

Author SHA1 Message Date
Tilghman Lesher
450658f10a Merged revisions 148010 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
  r148010 | tilghman | 2008-10-09 15:00:46 -0500 (Thu, 09 Oct 2008) | 1 line
  
  Publish MOH files in sln16 format
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@148011 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-09 20:01:38 +00:00
Tilghman Lesher
4fba97612a Merged revisions 148000 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

................
  r148000 | tilghman | 2008-10-09 14:39:34 -0500 (Thu, 09 Oct 2008) | 11 lines
  
  Merged revisions 147997 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r147997 | tilghman | 2008-10-09 14:38:33 -0500 (Thu, 09 Oct 2008) | 4 lines
    
    When blank, callerid name and number should display "unknown caller" in voicemail
    emails.
    (Closes issue #13643)
  ........
................


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@148006 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-09 19:40:43 +00:00
Jeff Peeler
7bb1b2746b Merged revisions 147952 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r147952 | jpeeler | 2008-10-09 14:27:32 -0500 (Thu, 09 Oct 2008) | 6 lines

(closes issue #13139)
Reported by: krisk84
Tested by: krisk84

This change prevents a call that is placed in the parkinglot to be picked up before the PBX is finished. If another extension dials the parking extension before the PBX thread has completed at minimum warnings will occur about the PBX not properly being terminated. At worst, a crash could occur.

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@147957 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-09 19:28:31 +00:00
Michiel van Baak
df779dd50c Merged revisions 147899 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
  r147899 | mvanbaak | 2008-10-09 19:48:53 +0200 (Thu, 09 Oct 2008) | 5 lines
  
  only include this for OpenBSD. At least FreeBSD is borked when including it
  
  (closes issue #13649)
  Reported by: ys
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@147901 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-09 17:54:05 +00:00
Tilghman Lesher
9dcca39b83 Merged revisions 147896 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
  r147896 | tilghman | 2008-10-09 12:46:15 -0500 (Thu, 09 Oct 2008) | 4 lines
  
  Remove "second form" of extensions, as it no longer applies.  Also, cleanup
  the grammar, formatting, and introduce several clarifications to the text.
  (Closes issue #13654)
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@147898 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-09 17:47:57 +00:00
Steve Murphy
2c1bfe7643 Merged revisions 147807 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r147807 | murf | 2008-10-09 08:17:33 -0600 (Thu, 09 Oct 2008) | 15 lines

(closes issue #13557)
Reported by: nickpeirson
Patches:
      pbx.c.patch uploaded by nickpeirson (license 579)
      replace_bzero+bcopy.patch uploaded by nickpeirson (license 579)
Tested by: nickpeirson, murf

1. replaced all refs to bzero and bcopy to memset and memmove instead.
2. added a note to the CODING-GUIDELINES
3. add two macros to asterisk.h to prevent bzero, bcopy from creeping
   back into the source
4. removed bzero from configure, configure.ac, autoconfig.h.in



........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@147811 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-09 15:06:21 +00:00
Mark Michelson
97766e8a6d Merged revisions 147714 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r147714 | mmichelson | 2008-10-08 17:32:37 -0500 (Wed, 08 Oct 2008) | 8 lines

Some small tweaks regarding realtime conference announcements.

(closes issue #13522)
Reported by: DEA
Patches:
      meetme-rt-fixes.txt uploaded by DEA (license 3)


........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@147719 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-08 22:33:43 +00:00
Kevin P. Fleming
540aa6e4ed Merged revisions 147689 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

................
  r147689 | kpfleming | 2008-10-08 17:26:55 -0500 (Wed, 08 Oct 2008) | 9 lines
  
  Merged revisions 147681 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r147681 | kpfleming | 2008-10-08 17:22:09 -0500 (Wed, 08 Oct 2008) | 3 lines
    
    when parsing a text configuration option, ensure that the buffer on the stack is actually large enough to hold the legal values of that option, and also ensure that sscanf() knows to stop parsing if it would overrun the buffer (without these changes, specifying "buffers=...,immediate" would overflow the buffer on the stack, and could not have worked as expected)
  ........
................


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@147692 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-08 22:27:26 +00:00
Tilghman Lesher
63f2ef93b7 Merged revisions 147592 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
  r147592 | tilghman | 2008-10-08 14:08:32 -0500 (Wed, 08 Oct 2008) | 8 lines
  
  Correct a typo in the help; also, ensure that the date and time are correctly
  set, if not specified in the message.
  (Closes issue #13594, closes issue #13595)
  Reported by: alecdavis
   Patches: 
         20081001__bug13595.diff.txt uploaded by Corydon76 (license 14)
   Tested by: alecdavis
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@147593 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-08 19:09:25 +00:00
Mark Michelson
cade4d842b Merged revisions 147518 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

................
r147518 | file | 2008-10-08 09:53:51 -0500 (Wed, 08 Oct 2008) | 9 lines

Merged revisions 147517 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r147517 | file | 2008-10-08 11:51:42 -0300 (Wed, 08 Oct 2008) | 2 lines
  
  If we receive DTMF make sure that the state of the speech structure goes back to being not ready. (issue #LUMENVOX-8)
........

................


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@147519 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-08 15:10:08 +00:00
Tilghman Lesher
c31a6b5d92 Blocked revisions 147262 via svnmerge
........
  r147262 | tilghman | 2008-10-07 12:44:32 -0500 (Tue, 07 Oct 2008) | 3 lines
  
  Allow people to select the old console behavior of white text on a black
  background, by using the startup flag '-B'.
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@147263 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-07 17:46:08 +00:00
Sean Bright
ec036b2990 Merged revisions 147194 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

................
r147194 | seanbright | 2008-10-07 12:52:02 -0400 (Tue, 07 Oct 2008) | 10 lines

Merged revisions 147193 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r147193 | seanbright | 2008-10-07 12:48:30 -0400 (Tue, 07 Oct 2008) | 2 lines

Make 'imapsecret' an alias to 'imappassword' in voicemail.conf.

........

................


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@147196 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-07 16:54:35 +00:00
Jeff Peeler
550b71bbd8 Merged revisions 147146 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r147146 | jpeeler | 2008-10-07 11:04:45 -0500 (Tue, 07 Oct 2008) | 3 lines

Explicitly setting these fields to NULL was done because I wasn't sure if they would be NULL otherwise. Since they will be set automatically, removing.


........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@147147 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-07 16:05:07 +00:00
Richard Mudgett
5ae260b720 Merged revisions 147011 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
  r147011 | rmudgett | 2008-10-06 21:02:39 -0500 (Mon, 06 Oct 2008) | 1 line
  
  Independent change from branch issue8824 that is not part of COLP. (-r142574 rmudgett)
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@147100 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-07 15:06:25 +00:00
Sean Bright
b0d673495e Merged revisions 147050 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r147050 | seanbright | 2008-10-07 08:01:36 -0400 (Tue, 07 Oct 2008) | 8 lines

Make sure to compare the correct number of characters when special-casing
our DAHDI operator mode stuff.  Technically, it would work fine, as 'DAH'
is currently unique amongst our channel technologies, but as Jared points
out:

  <@jsmith> Sure... as long as the technology starts whith DAH.... but
            it could be DAHDOO!

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@147052 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-07 12:03:57 +00:00
Terry Wilson
a7b8580d0c Merged revisions 146970 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
  r146970 | twilson | 2008-10-06 19:02:19 -0500 (Mon, 06 Oct 2008) | 2 lines
  
  A blind transfer to the parking thread would cause a segfault because copy_request accesses dst->data w/o being able to tell whether it is proerly initialized
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146972 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-07 00:13:06 +00:00
Tilghman Lesher
69eb9d08ac Merged revisions 146928 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
  r146928 | tilghman | 2008-10-06 18:21:02 -0500 (Mon, 06 Oct 2008) | 3 lines
  
  Update documentation; AST_THREADSTORAGE() in trunk only takes a single
  argument.
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146930 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 23:22:55 +00:00
Michiel van Baak
e82a0fc799 Blocked revisions 146925 via svnmerge
........
  r146925 | mvanbaak | 2008-10-07 01:14:33 +0200 (Tue, 07 Oct 2008) | 8 lines
  
  All ODBC parts can now use either unixodbc or iodbc.
  This allows for the ODBC parts to work on OpenBSD as well.
  
  99.99% of the work is done by seanbright (bow, bow) and I actually
  did nothing but test and yell at him that it still didn't work :)
  
  Thanks for helping out !
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146927 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 23:20:10 +00:00
Jeff Peeler
595d37e746 Merged revisions 146923 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r146923 | jpeeler | 2008-10-06 18:08:21 -0500 (Mon, 06 Oct 2008) | 3 lines

Similar to r143204, masquerade the channel in the case of Park being called from AGI.


........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146924 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 23:08:51 +00:00
Jeff Peeler
54fda83a25 Merged revisions 146920 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r146920 | jpeeler | 2008-10-06 17:59:58 -0500 (Mon, 06 Oct 2008) | 2 lines

Mvanbaak said this was needed to compile on OpenBSD, so put it in the OpenBSD section.

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146921 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 23:03:05 +00:00
Jeff Peeler
cd1a30c6c7 Merged revisions 146883 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r146883 | jpeeler | 2008-10-06 17:26:25 -0500 (Mon, 06 Oct 2008) | 12 lines

This commit squashes together three commits because the wrong approach was originally used. (One of the commits was only one line.)

1) r143204:
The main change here was to masquerade the channel if the channel that was to be parked was running a PBX on it. The PBX thread can then maintain full control of the channel (the zombie) as it expects to while allowing the parking thread full control of the real (parked) channel.

2) r143270:
Changed park_call_full to hold the parkinglot lock a little longer, which protects the parkeduser struct from being freed out from underneath. Made sure that the parking extension is added to the parking context while holding the lock thereby ensuring that there are no spurious warnings from removal attempts when a hangup occurs while the parking lot is being announced.

3) r143475: (the one liner)
compare peer and chan instead of looking at the parked user (pu), which could have possibly already have been freed by the parking thread


........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146886 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 22:26:47 +00:00
Jeff Peeler
2fb8519c52 Merged revisions 146877 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r146877 | jpeeler | 2008-10-06 17:08:40 -0500 (Mon, 06 Oct 2008) | 1 line

fix some comment placement
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146878 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 22:09:06 +00:00
Jeff Peeler
2917e91db4 Merged revisions 146875 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r146875 | jpeeler | 2008-10-06 17:03:01 -0500 (Mon, 06 Oct 2008) | 5 lines

Explicitly set args in park_call_exec NULL so in the case of no options being passed in, there
 is no garbage attempted to be used. Also, do not set args to unknown value again if there are
 no options passed in.


........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146876 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 22:04:23 +00:00
Michiel van Baak
a22f5b3bf0 Merged revisions 146807 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
  r146807 | mvanbaak | 2008-10-06 23:18:13 +0200 (Mon, 06 Oct 2008) | 2 lines
  
  make aescrypt.c compile on OpenBSD again
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146874 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 21:53:31 +00:00
Tilghman Lesher
deb3c05634 Merged revisions 146802 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

................
  r146802 | tilghman | 2008-10-06 16:09:05 -0500 (Mon, 06 Oct 2008) | 15 lines
  
  Merged revisions 146799 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r146799 | tilghman | 2008-10-06 15:52:04 -0500 (Mon, 06 Oct 2008) | 8 lines
    
    Dialplan functions should not actually return 0, unless they have modified the
    workspace.  To signal an error (and no change to the workspace), -1 should be
    returned instead.
    (closes issue #13340)
     Reported by: kryptolus
     Patches: 
           20080827__bug13340__2.diff.txt uploaded by Corydon76 (license 14)
  ........
................


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146838 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 21:32:42 +00:00
Sean Bright
4da4c9cbcd Blocked revisions 146738 via svnmerge
........
r146738 | seanbright | 2008-10-06 13:32:02 -0400 (Mon, 06 Oct 2008) | 1 line

Pretty-print a couple configure options
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146745 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 17:33:22 +00:00
Tilghman Lesher
0fd7610e67 Merged revisions 146713 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

................
  r146713 | tilghman | 2008-10-06 11:52:14 -0500 (Mon, 06 Oct 2008) | 16 lines
  
  Merged revisions 146711 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r146711 | tilghman | 2008-10-06 11:51:21 -0500 (Mon, 06 Oct 2008) | 9 lines
    
    Check whether an extension exists in the _call method, rather than the _alloc
    method, because we need to evaluate the callerid (since that data affects
    whether an extension exists).
    (closes issue #13343)
     Reported by: efutch
     Patches: 
           20080915__bug13343.diff.txt uploaded by Corydon76 (license 14)
     Tested by: efutch
  ........
................


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146715 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 16:54:45 +00:00
Kevin P. Fleming
f100e6c659 Merged revisions 146644 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

................
  r146644 | kpfleming | 2008-10-06 11:03:37 -0500 (Mon, 06 Oct 2008) | 15 lines
  
  Merged revisions 146643 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r146643 | kpfleming | 2008-10-06 10:57:49 -0500 (Mon, 06 Oct 2008) | 8 lines
    
    ensure that the private structure for pseudo channels is created without 'leaking' configuration data from other configured channels
    
    (closes issue #13555)
    Reported by: jeffg
    Patches:
          issue_13555.patch uploaded by kpfleming (license 421)
    Tested by: jeffg
  ........
................


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146698 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 16:39:25 +00:00
Mark Michelson
6f39424e5f Blocked revisions 146640 via svnmerge
........
r146640 | mmichelson | 2008-10-06 10:29:56 -0500 (Mon, 06 Oct 2008) | 15 lines

This commit introduces a change to how the "joinempty"
and "leavewhenempty" options are configured in queues.conf.

Instead of using vague terms like "yes," "no," "loose," and
"strict," we now accept a comma-separated list of values
to determine when to consider a member available.

Extended details can be found in the queues.conf.sample
file. Note also that the above four referenced values are
still accepted for backwards-compatibility, but are mapped
internally to the new method of representing the option.

AST-105


........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146642 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 15:40:27 +00:00
Sean Bright
01d775c345 Blocked revisions 146597 via svnmerge
........
r146597 | seanbright | 2008-10-05 20:36:37 -0400 (Sun, 05 Oct 2008) | 2 lines

Make NOISY_BUILD work for the calls to cp in utils/Makefile

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146599 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 00:37:44 +00:00
Sean Bright
bbeaa1089c Merged revisions 146555 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r146555 | seanbright | 2008-10-05 20:21:49 -0400 (Sun, 05 Oct 2008) | 1 line

Quote arguments to cp so we can handle spaces in our paths.
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146557 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-06 00:23:55 +00:00
Jason Parker
7eb106201a Merged revisions 146449 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

................
  r146449 | qwell | 2008-10-05 16:21:03 -0500 (Sun, 05 Oct 2008) | 9 lines
  
  Recorded merge of revisions 146448 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r146448 | qwell | 2008-10-05 16:17:44 -0500 (Sun, 05 Oct 2008) | 1 line
    
    Fix silly formatting.
  ........
................


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146451 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-05 21:24:20 +00:00
Sean Bright
0b48542e62 Blocked revisions 146359 via svnmerge
........
r146359 | seanbright | 2008-10-04 12:20:31 -0400 (Sat, 04 Oct 2008) | 10 lines

Fix a bug with the last item in CLI history getting duplicated when
read from the .asterisk_history file (and subsequently being duplicated
when written).  We weren't checking the result of fgets() which meant
that we read the same line twice before feof() actually returned non-
zero.

Also, stop writing out an extra blank line between each item in the
history file, fix a minor off-by-one error, and use symbolic constants
rather than a hardcoded integer.

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146361 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-04 16:21:51 +00:00
Sean Bright
97331b1830 Merged revisions 146312 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r146312 | seanbright | 2008-10-03 21:54:44 -0400 (Fri, 03 Oct 2008) | 8 lines

Add ability to remotely reboot snom phones.  Also cleaned up and
reorganized sip_notify.conf.sample a bit as well.  Tested snom
reboot on snom 360 and verified snom-check-cfg worked as well.

(closes issue #13601)
Reported by: mjc
Tested by: seanbright

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146314 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-04 01:57:45 +00:00
Sean Bright
af972feac8 Blocked revisions 146245 via svnmerge
................
r146245 | seanbright | 2008-10-03 18:54:57 -0400 (Fri, 03 Oct 2008) | 13 lines

Blocked revisions 146244 via svnmerge

........
r146244 | seanbright | 2008-10-03 18:51:22 -0400 (Fri, 03 Oct 2008) | 6 lines

Change some preprocessor macros to struct definitions so that we get
app_rpt to build with DAHDI.

(closes issue #13576)
Reported by: blitzrage

........

................


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146247 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-03 22:56:28 +00:00
Jeff Peeler
2e5cc80ba4 Merged revisions 146242 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r146242 | jpeeler | 2008-10-03 17:40:59 -0500 (Fri, 03 Oct 2008) | 1 line

remove superfluous reference counting operations in manage_parkinglot since ao2_interator_next increments the ref count automatically
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146243 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-03 22:42:10 +00:00
Sean Bright
c48c50a814 Merged revisions 146198 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r146198 | seanbright | 2008-10-03 18:10:18 -0400 (Fri, 03 Oct 2008) | 7 lines

Resolve a subtle bug where we would never successfully be able to get
the first item in the CLI entry list.  This was preventing '!' from
showing up in either 'help' or in tab completion.

(closes issue #13578)
Reported by: mvanbaak

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146200 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-03 22:13:01 +00:00
Tilghman Lesher
993ab21ce3 Blocked revisions 146081 via svnmerge
........
  r146081 | tilghman | 2008-10-03 13:30:39 -0500 (Fri, 03 Oct 2008) | 2 lines
  
  document meetme schedule changes (related to issue #11040)
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@146090 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-03 18:32:13 +00:00
Russell Bryant
f51e584f73 Merged revisions 145962 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r145962 | russell | 2008-10-02 14:30:45 -0500 (Thu, 02 Oct 2008) | 2 lines

The 'P' command for ExternalIVR was also added in 1.6.0

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@145964 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-02 19:31:16 +00:00
Russell Bryant
b8d59df972 Merged revisions 145959 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r145959 | russell | 2008-10-02 14:27:37 -0500 (Thu, 02 Oct 2008) | 2 lines

TCP support for ExternalIVR went in to 1.6.1, not 1.6.0

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@145960 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-02 19:28:07 +00:00
Michiel van Baak
dd34f57c7c Blocked revisions 145915 via svnmerge
........
r145915 | mvanbaak | 2008-10-02 20:02:26 +0200 (Thu, 02 Oct 2008) | 6 lines

fix the 'meetme list', 'meetme list concise', 'meetme list $confno' and 'meetme list $confno concise' CLI commands

(closes issue #13586)
Reported by: john8675309
Help and feedback from eliel, thanks!

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@145917 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-02 18:04:13 +00:00
Tilghman Lesher
c6473938f4 Blocked revisions 145846 via svnmerge
........
  r145846 | tilghman | 2008-10-02 12:16:54 -0500 (Thu, 02 Oct 2008) | 2 lines
  
  Permit the syntax and synopsis fields to be set (for func_odbc).
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@145848 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-02 17:18:01 +00:00
Michiel van Baak
bddab282c4 Blocked revisions 145842 via svnmerge
........
r145842 | mvanbaak | 2008-10-02 18:42:30 +0200 (Thu, 02 Oct 2008) | 2 lines

make this compile under devmode again

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@145844 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-02 16:46:20 +00:00
Sean Bright
a67ba50f17 Merged revisions 145771 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r145771 | seanbright | 2008-10-02 11:28:48 -0400 (Thu, 02 Oct 2008) | 1 line

This is much cleaner, methinks.
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@145781 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-02 15:30:52 +00:00
Tilghman Lesher
aa13afaee2 Merged revisions 145752 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

................
  r145752 | tilghman | 2008-10-02 10:17:16 -0500 (Thu, 02 Oct 2008) | 10 lines
  
  Merged revisions 145751 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r145751 | tilghman | 2008-10-02 10:13:21 -0500 (Thu, 02 Oct 2008) | 3 lines
    
    Some sanity checks that may have led to prior crashes, found by codefreeze-lap
    (murf) on IRC.  Also some cleanup of incorrectly-used constants.
  ........
................


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@145754 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-02 15:19:58 +00:00
Sean Bright
65fca2aa54 Merged revisions 145692 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r145692 | seanbright | 2008-10-01 19:48:16 -0400 (Wed, 01 Oct 2008) | 7 lines

Try a test compile using the GMime library.  Some distros install gmime-config
in the base package instead of the -devel package.  Now we print a notice and
disable GMime support instead of bombing during the main compilation.

(closes issue #13583)
Reported by: arkadia

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@145694 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-01 23:54:44 +00:00
Tilghman Lesher
fe23c611b6 Blocked revisions 145649 via svnmerge
........
  r145649 | tilghman | 2008-10-01 18:02:25 -0500 (Wed, 01 Oct 2008) | 8 lines
  
  Add schedule extensions to app_meetme.  In addition, the reporter found a
  problem within strptime(3), which we are correcting here with ast_strptime().
  (closes issue #11040)
   Reported by: DEA
   Patches: 
         20080910__bug11040.diff.txt uploaded by Corydon76 (license 14)
   Tested by: DEA
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@145651 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-01 23:03:41 +00:00
Mark Michelson
10258dd023 Merged revisions 145606 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r145606 | mmichelson | 2008-10-01 17:23:50 -0500 (Wed, 01 Oct 2008) | 11 lines

Okay, this should really do it now. While I did manage
to fix blind transfers with my last commit here, I also
caused an unwanted side-effect. That is, only the first
priority of the 'h' extension would be executed when
a blind transfer occurred instead of all priorities.

Essentially, my last commit corrected the return value
of ast_bridge_call. However, the implementation still
was not 100% correct. Now it is.


........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@145609 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-01 22:24:52 +00:00
Mark Michelson
52b6762417 Merged revisions 145579 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r145579 | mmichelson | 2008-10-01 16:33:11 -0500 (Wed, 01 Oct 2008) | 4 lines

if (!(x) == 0) is the same as
if (x).


........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@145584 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-01 21:34:52 +00:00
Mark Michelson
a7da5b2e76 Merged revisions 145553 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk

........
r145553 | mmichelson | 2008-10-01 16:06:26 -0500 (Wed, 01 Oct 2008) | 13 lines

The logic surrounding the return value of ast_spawn_extension
within ast_bridge_call was reversed.

This problem was observed when a blind transfer placed from
the callee channel of a test call failed.

While the problem I am solving here is exactly the same
as what was reported in issue #13584, the difference is
that this fix I am applying is trunk-only. Issue #13584
was reported against the 1.4 branch, and my tests
of 1.4's blind transfers appear to work fine.


........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@145557 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-10-01 21:20:20 +00:00