~ubuntu-branches/ubuntu/karmic/asterisk/karmic

« back to all changes in this revision

Viewing changes to debian/patches/bristuff/ast-send-message-users

  • Committer: Bazaar Package Importer
  • Author(s): Faidon Liambotis, Tzafrir Cohen, Faidon Liambotis
  • Date: 2007-12-06 17:20:21 UTC
  • mfrom: (1.1.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20071206172021-pd0wrjirz3os7hia
Tags: 1:1.4.15~dfsg-1
* New upstream release (Closes: #452054)
  - Fix a potential corrupt of voicemail.conf on simultaneous PIN updates
    (Closes: #353227)

[ Tzafrir Cohen ]
* Add some sample/reference config files as documentation.
* Provide asterisk-bristuff for upgrading from Etch.
* Move libc-client to not be last, so debian/backports/xorcom.etch would
  still work.

[ Faidon Liambotis ]
* Really enable the libcap/ToS functionality; the previous patch didn't
  enable the functionality, even though the code and the libcap.so
  dependency were there. (Closes: #454342)
* Fix a minor issue with init script's stop target when running with
  safe_asterisk.
* Add chan_vpb, adding support for VoiceTronix OpenSwitch and OpenLine
  cards. (Closes: #396499)
* Fix debian/watch by using a pkg-voip wrapper to avoid upstream's silly
  redirections. (Closes: #449706)
* Use DEBVERSION as asterisk's version string.
* Disable the MD5 build sum that breaks all out-of-tree plugins (duh!).
* Create /usr/local/share/asterisk/sounds to put all site-specific
  non-modifiable sounds.
* Add a note about bugs.debian.org to the banner.
* Add noload for res_config_* since loading them results in errors and
  doesn't provide any functionality.
* News entries were added but we never shipped the file; ship NEWS.Debian.
* Add an entry to NEWS.Debian warning users about app_voicemail_*.so
  (Closes: #452596)
* Provide options in /etc/default/asterisk for configuring safe_asterisk.
  (Closes: #381786)

[ Tzafrir Cohen ]
* Provide a custom sounds directory under /var/lib - user-modifieble at
  runtime and hence not under /usr. (Closes: #337209)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--- asterisk-1.4.8~dfsg.orig/main/manager.c
2
 
+++ asterisk-1.4.8~dfsg/main/manager.c
 
1
--- a/main/manager.c
 
2
+++ b/main/manager.c
3
3
@@ -11,6 +11,9 @@
4
4
  * the project provides a web site, mailing lists and IRC
5
5
  * channels for your use.
10
10
  * This program is free software, distributed under the terms of
11
11
  * the GNU General Public License Version 2. See the LICENSE file
12
12
  * at the top of the source tree.
13
 
@@ -1354,6 +1357,49 @@ static int action_hangup(struct mansessi
 
13
@@ -1428,6 +1431,49 @@ static int action_hangup(struct mansessi
14
14
        return 0;
15
15
 }
16
16
 
60
60
 static char mandescr_setvar[] = 
61
61
 "Description: Set a global or local channel variable.\n"
62
62
 "Variables: (Names marked with * are required)\n"
63
 
@@ -2748,6 +2794,7 @@ int init_manager(void)
 
63
@@ -2823,6 +2869,7 @@ int init_manager(void)
64
64
                ast_manager_register2("Events", 0, action_events, "Control Event Flow", mandescr_events);
65
65
                ast_manager_register2("Logoff", 0, action_logoff, "Logoff Manager", mandescr_logoff);
66
66
                ast_manager_register2("Hangup", EVENT_FLAG_CALL, action_hangup, "Hangup Channel", mandescr_hangup);
68
68
                ast_manager_register("Status", EVENT_FLAG_CALL, action_status, "Lists channel status" );
69
69
                ast_manager_register2("Setvar", EVENT_FLAG_CALL, action_setvar, "Set Channel Variable", mandescr_setvar );
70
70
                ast_manager_register2("Getvar", EVENT_FLAG_CALL, action_getvar, "Gets a Channel Variable", mandescr_getvar );
71
 
--- asterisk-1.4.8~dfsg.orig/pbx/pbx_spool.c
72
 
+++ asterisk-1.4.8~dfsg/pbx/pbx_spool.c
 
71
--- a/pbx/pbx_spool.c
 
72
+++ b/pbx/pbx_spool.c
73
73
@@ -87,6 +87,10 @@ struct outgoing {
74
74
        char app[256];
75
75
        char data[256];