Re: [Asterisk-Users] Asterisk 1.0.4 and more ... + rpm spec

2005-01-24 Thread marek cervenka
Will be good, if somebody could provide rpms for every release and
also rpm's with static compiled chan_oh323 and  Asterisk-oh323 modules
asterisk.spec for 1.0.5 is in attachment
put this file into /usr/src/redhat/SPECS
asterisk-1.0.5.tar.gz to the /usr/src/redhat/SOURCES
cd /usr/src/redhat/SPECS
rpmbuild -ba asterisk.spec
if this file will be contained  directly in the tarball (like openvpn
or other good software), then simply run
rpmbuild -ta asterisk-1.0.5.tar.gz
---
Marek Cervenka
Centrum Vypocetni Techniky
CVT - http://cvt.fpf.slu.cz
FPF SLU OPAVA   - http://www.fpf.slu.cz
LCNA- http://lcna.slu.cz
===
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Asterisk 1.0.4 and more ... + rpm spec

2005-01-24 Thread marek cervenka
Will be good, if somebody could provide rpms for every release and
also rpm's with static compiled chan_oh323 and  Asterisk-oh323 modules
asterisk.spec for 1.0.5 is in attachment
put this file into /usr/src/redhat/SPECS
asterisk-1.0.5.tar.gz to the /usr/src/redhat/SOURCES
cd /usr/src/redhat/SPECS
rpmbuild -ba asterisk.spec
if this file will be contained  directly in the tarball (like openvpn
or other good software), then simply run
rpmbuild -ta asterisk-1.0.5.tar.gz
sorry, file is in attachment now
---
Marek Cervenka
Centrum Vypocetni Techniky
CVT - http://cvt.fpf.slu.cz
FPF SLU OPAVA   - http://www.fpf.slu.cz
LCNA- http://lcna.slu.cz
===
%define version 1.0.5
%define nameasterisk
%define release 1
%define group   Applications/Internet
%define copyright   GPL
%define uname   %{name}
%define gname   %{name}

summary : A complete PBX in software
name: %{name}
version : %{version}
release : %{release}
group   : %{group}
copyright   : %{copyright}
url : http://www.asterisk.org/
vendor  : www.digium.com
provides: %{name}
buildroot   : /var/tmp/%{name}-%{version}

source0: %{name}-%{version}.tar.gz

%description
Asterisk is an Open Source PBX and telephony toolkit.  It is, in a
sense, middleware between Internet and telephony channels on the bottom,
and Internet and telephony applications at the top.  For more information
on the project itself, please visit the Asterisk home page at:

http://www.asterisk.org

%package devel
Summary : Development libraries and headers for Asterisk PBX package
Group   : %{group}
requires: %{name} = %{release}

%description devel
Development Libraries and headers for Asterisk PBX package


%package webvmail
summary : Asterisk Web Voicemail
group   : %{group}
requires: %{name} = %{release}

%description webvmail
SUID ROOT Perl cgi script for web based Voicemail retrieval.

%prep
%setup -q 


%build

## make asterisk
# Replace /var/run by /var/run/asterisk since we don't run as root
sed -i 
s/ASTVARRUNDIR=\$(INSTALL_PREFIX)\/var\/run/ASTVARRUNDIR=\$\(INSTALL_PREFIX\)\/var\/run\/%{name}/g
 Makefile
  make 

%install
rm -rf %{buildroot}
mkdir -p %{buildroot}/usr/include/linux
mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
mkdir -p %{buildroot}/var/www/{html,cgi-bin/astcc-admin}
mkdir -p %{buildroot}/var/run/asterisk

## install asterisk
  mkdir -p %{buildroot}/var/www/{cgi-bin,html/_asterisk}
  make INSTALL_PREFIX=%{buildroot} install 
  make INSTALL_PREFIX=%{buildroot} samples
  make DESTDIR=%{buildroot} webvmail
  install -D -m 0755 contrib/init.d/rc.redhat.asterisk 
%{buildroot}%{_initrddir}/%{name}
  install -m 755 contrib/scripts/addmailbox %{buildroot}/%{_sbindir}


# Override wrong absolute links
rm -f %{buildroot}%{_localstatedir}/lib/%{name}/sounds/vm  \
ln -sf ../../../spool/%{name}/vm \
   %{buildroot}%{_localstatedir}/lib/%{name}/sounds/vm
rm -f %{buildroot}%{_localstatedir}/lib/%{name}/sounds/voicemail  \
ln -sf ../../../spool/%{name}/voicemail \
   %{buildroot}%{_localstatedir}/lib/%{name}/sounds/voicemail
rm -f %{buildroot}%{_localstatedir}/spool/%{name}/vm  \
ln -sf voicemail/default \
   %{buildroot}%{_localstatedir}/spool/%{name}/vm

# fix samples installation
pushd %{buildroot}/%{_sysconfdir}/%{name}
for i in `find . -type f`; do
  sed s,%{buildroot},,g  $i  $i.fix
  mv -f $i.fix $i
done
popd

%clean
rm -rf %{buildroot}

%pre
# Add the %{name} user
/usr/sbin/useradd -c Asterisk PBX -G tty -s /sbin/nologin -r \
-d %{_localstatedir}/lib/%{name} %{uname} 2/dev/null || :

%post
# Register the %{name} service
/sbin/chkconfig %{name} --add 
/sbin/chkconfig %{name} on

%preun
if [ $1 -eq 0 ]; then
/sbin/service %{name} stop /dev/null 21
/sbin/chkconfig %{name} --del 
fi

%files
%defattr(-  ,%{uname},%{gname})
/etc/rc.d/init.d/asterisk
/usr/lib/asterisk/modules/*
/usr/sbin/addmailbox
/usr/sbin/asterisk
/usr/sbin/astgenkey
/usr/sbin/astman
/usr/sbin/safe_asterisk
/usr/share/man/man8/asterisk.8.gz
%dir %{_sysconfdir}/%{name}
%attr(-  ,%{uname},%{gname}) %{_localstatedir}/lib/%{name}
%attr(750,%{uname},%{gname}) %{_localstatedir}/run/%{name}
%attr(750,%{uname},%{gname}) %dir %{_localstatedir}/log/%{name}
%attr(750,%{uname},%{gname}) %dir %{_localstatedir}/log/%{name}/cdr-csv
%attr(750,%{uname},%{gname}) %dir %{_localstatedir}/spool/%{name}
%attr(750,%{uname},%{gname}) %dir %{_localstatedir}/spool/%{name}/vm
%attr(750,%{uname},%{gname}) %dir %{_localstatedir}/spool/%{name}/voicemail
%attr(750,%{uname},%{gname}) %dir 
%{_localstatedir}/spool/%{name}/voicemail/default
%attr(640,%{uname},%{gname}) 
%{_localstatedir}/spool/%{name}/voicemail/default/1234/*
%attr(640,%{uname},%{gname}) %config(noreplace) %{_sysconfdir}/%{name}/*.conf

Re: [Asterisk-Users] Asterisk 1.0.4 and more ...

2005-01-24 Thread Erick Perez
Who are these guys? do they maintain de * docs?



On Fri, 21 Jan 2005 10:44:29 -0400, [=Jorge Boscan Etura=]
[EMAIL PROTECTED] wrote:
 I second that, we should write to Dag and Thias, they compile so much stuff.
 
 
 On Fri, 21 Jan 2005 13:23:37 +0400, VX Lists [EMAIL PROTECTED] wrote:
  Will be good, if somebody could provide rpms for every release and
  also rpm's with static compiled chan_oh323 and  Asterisk-oh323 modules
  ___
  Asterisk-Users mailing list
  Asterisk-Users@lists.digium.com
  http://lists.digium.com/mailman/listinfo/asterisk-users
  To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users
 
 
 
 --
 [Jorge J. Boscán Etura]
 quando omni flunkus moritati
 Universidad Fermín Toro http://www.uft.edu.ve
 Linux 2.6.9 i686 running fc2, lu #137000
 cell:584185150239 tel:582512569171
 asterisk:
 ___
 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
 


-- 

---
Erick Perez
Linux User 376588
http://counter.li.org/  (Get counted!!!)
Panama, Republic of Panama
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Asterisk 1.0.4 and more ...

2005-01-21 Thread VX Lists
Will be good, if somebody could provide rpms for every release and
also rpm's with static compiled chan_oh323 and  Asterisk-oh323 modules
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Asterisk 1.0.4 and more ...

2005-01-21 Thread Chris Hills
Matt Riddell wrote:
The easiest way to see that changes is to download one of the packages 
from the Digium FTP site and read the CHANGELOG.
Or carry on reading!
ChangeLog:
Asterisk 1.0.4
 -- general
-- fix memory leak evident with extensive use of variables
-- update IAXy firmware to version 22
   -- enable some special write protection
   -- enable outbound DTMF
-- fix seg fault with incorrect usage of SetVar
-- other minor fixes including typos and doc updates
 -- chan_sip
   -- fix codecs to not be case sensitive
   -- Re-use auth credentials
   -- fix MWI when using type=friend
   -- fix global NAT option
 -- chan_agent / chan_local
   -- fix incorrect use count
 -- chan_zap
   -- Allow CID rings to be configured in zapata.conf
  -- no more patching needed for UK CID
 -- app_macro
-- allow Macros to exit with '*' or '#' like regular extension 
processing
 -- app_voicemail
   -- don't allow '#' as a password
   -- add option to save voicemail before going to the operator
   -- fix global operator=yes
 -- app_read
   -- return 0 instead of -1 if user enters nothing
 -- res_agi
-- don't exit AGI when file not found to stream
-- send script parameter when using FastAGI

--
Chris Hills
IT Services
North East Worcestershire College
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Asterisk 1.0.4 and more ...

2005-01-21 Thread Erick Perez
Please, development is important (of course) but updated documentation
is important too!

is there any special guide followed by * developers about how to
document funcionality? I can take care (and will do so happily) of
trying to update the documentation at asterskdocs but i must obtain
the how it works from somewhere. And I am not a full time programmer
so reading code to build documentation is not an option.

i've seen the use of parameters or config (in the forums) that are
nowhere documented in the wiki or the asterskdocs project.

Once again i will be happy to contribute by creating/updating docs.

Comments?

Thanks in Advance,

Erick

On Fri, 21 Jan 2005 10:14:56 +, Chris Hills [EMAIL PROTECTED] wrote:
 Matt Riddell wrote:
  The easiest way to see that changes is to download one of the packages
  from the Digium FTP site and read the CHANGELOG.
 
 Or carry on reading!
 
 ChangeLog:
 
 Asterisk 1.0.4
  -- general
 -- fix memory leak evident with extensive use of variables
 -- update IAXy firmware to version 22
-- enable some special write protection
-- enable outbound DTMF
 -- fix seg fault with incorrect usage of SetVar
 -- other minor fixes including typos and doc updates
  -- chan_sip
-- fix codecs to not be case sensitive
-- Re-use auth credentials
-- fix MWI when using type=friend
-- fix global NAT option
  -- chan_agent / chan_local
-- fix incorrect use count
  -- chan_zap
-- Allow CID rings to be configured in zapata.conf
   -- no more patching needed for UK CID
  -- app_macro
 -- allow Macros to exit with '*' or '#' like regular extension
 processing
  -- app_voicemail
-- don't allow '#' as a password
-- add option to save voicemail before going to the operator
-- fix global operator=yes
  -- app_read
-- return 0 instead of -1 if user enters nothing
  -- res_agi
 -- don't exit AGI when file not found to stream
 -- send script parameter when using FastAGI
 
 --
 Chris Hills
 IT Services
 North East Worcestershire College
 ___
 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
 


-- 

---
Erick Perez
Linux User 376588
http://counter.li.org/  (Get counted!!!)
Panama, Republic of Panama
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Asterisk 1.0.4 and more ...

2005-01-21 Thread [=Jorge Boscan Etura=]
I second that, we should write to Dag and Thias, they compile so much stuff.


On Fri, 21 Jan 2005 13:23:37 +0400, VX Lists [EMAIL PROTECTED] wrote:
 Will be good, if somebody could provide rpms for every release and
 also rpm's with static compiled chan_oh323 and  Asterisk-oh323 modules
 ___
 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
 


-- 
[Jorge J. Boscán Etura]
quando omni flunkus moritati
Universidad Fermín Toro http://www.uft.edu.ve
Linux 2.6.9 i686 running fc2, lu #137000
cell:584185150239 tel:582512569171
asterisk:
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Asterisk 1.0.4 and more ...

2005-01-21 Thread Matthew Boehm
No offense to the person who maintains the changelog, but it rarely contains
the information I want to know. This is what I use to find out the changes:

cd /tmp/
cvs co -r v1-0-4 asterisk
diff -ur /usr/src/asterisk /tmp/asterisk

This shows code level differences between what I am using in prod
(/usr/src/asterisk) vs what is in 1.0.4 (/tmp/asterisk)

PHP maintains a changelog I'd like to see with asterisk:

http://www.php.net/ChangeLog-4.php


-Matthew

- Original Message - 
From: Matt Riddell [EMAIL PROTECTED]
To: Asterisk Users Mailing List - Non-Commercial Discussion
asterisk-users@lists.digium.com
Sent: Thursday, January 20, 2005 7:02 PM
Subject: Re: [Asterisk-Users] Asterisk 1.0.4 and more ...


 Gabriel Afana wrote:
  I second this :-)
 
  1.0.3 is working perfect for me...except for slight sound quality
  problems (jittery) using SIP.  Any new features for me there in 1.0.4?

 It's basically all the bugfixes that have appeared in the STABLE version
 of CVS since 1.0.3 was released.  So, if you were downloading the V1-0
 version from CVS regularly, chances are you kinda already have 1.0.4.

 If however you downloaded a 1.0.3 package, there will be numerous small
 bugfixes.

 The easiest way to see that changes is to download one of the packages
 from the Digium FTP site and read the CHANGELOG.

 -- 
 Cheers,

 Matt Riddell
 ___

 http://www.sineapps.com/news.php (Daily Asterisk News - html)
 http://www.sineapps.com/rssfeed.php (Daily Asterisk News - rss)
 ___
 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] Asterisk 1.0.4 and more ...

2005-01-21 Thread Adam Robins
I just installed 1.0.4. When I do a show version, it still says:

Asterisk CVS-v1-0-12/21/04-14:14:46 built by [EMAIL PROTECTED] on a i686
running Linux

Which is exactly what is said before the upgrade.  Is this right?

-Adam

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matthew
Boehm
Sent: Friday, January 21, 2005 10:21 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [Asterisk-Users] Asterisk 1.0.4 and more ...

No offense to the person who maintains the changelog, but it rarely
contains the information I want to know. This is what I use to find out
the changes:

cd /tmp/
cvs co -r v1-0-4 asterisk
diff -ur /usr/src/asterisk /tmp/asterisk

This shows code level differences between what I am using in prod
(/usr/src/asterisk) vs what is in 1.0.4 (/tmp/asterisk)

PHP maintains a changelog I'd like to see with asterisk:

http://www.php.net/ChangeLog-4.php


-Matthew

- Original Message -
From: Matt Riddell [EMAIL PROTECTED]
To: Asterisk Users Mailing List - Non-Commercial Discussion
asterisk-users@lists.digium.com
Sent: Thursday, January 20, 2005 7:02 PM
Subject: Re: [Asterisk-Users] Asterisk 1.0.4 and more ...


 Gabriel Afana wrote:
  I second this :-)
 
  1.0.3 is working perfect for me...except for slight sound quality
  problems (jittery) using SIP.  Any new features for me there in
1.0.4?

 It's basically all the bugfixes that have appeared in the STABLE
version
 of CVS since 1.0.3 was released.  So, if you were downloading the V1-0
 version from CVS regularly, chances are you kinda already have 1.0.4.

 If however you downloaded a 1.0.3 package, there will be numerous
small
 bugfixes.

 The easiest way to see that changes is to download one of the packages
 from the Digium FTP site and read the CHANGELOG.

 -- 
 Cheers,

 Matt Riddell
 ___

 http://www.sineapps.com/news.php (Daily Asterisk News - html)
 http://www.sineapps.com/rssfeed.php (Daily Asterisk News - rss)
 ___
 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

The contents of this email message and any attachments are confidential and are 
intended solely for addressee. The information may also be legally privileged. 
This transmission is sent in trust, for the sole purpose of delivery to the 
intended recipient. If you have received this transmission in error, any use, 
reproduction or dissemination of this transmission is strictly prohibited. If 
you are not the intended recipient, please immediately notify the sender by 
reply email and delete this message and its attachments, if any.


___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] Asterisk 1.0.4 and more ...

2005-01-20 Thread Russell Bryant
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Greetings!
Version 1.0.4 of Asterisk, Asterisk-addons, zaptel, and libpri has been
released.  The releases are available on the Digium ftp site.
I have also started a web site called The Asterisk Development Proxy
where I would like to start centralizing Asterisk development resources.
~ I am hoping that this will become valuable for those getting into
Asterisk development.
http://dev.asteriskdocs.org/
As a part of this effort, I have started a development team called The
Asterisk Maintenance Crew to encourage amateur programmers to get
involved in development.  The number one job of this team is to help
with the maintenance of the stable branch.  We will also help to
identify and complete some easier development tasks that can be
completed for CVS head.  There is plenty of work to be done, and
programmers of any skill level can help.  If you have any desire to get
involved in Asterisk development, but aren't sure how to get started,
please consider getting involved.
I would like to send a special thanks to Andrew Thompson for providing
the web hosting, and to Leif Madsen (blitzrage) for his early
contributions to the web site and the maintenance crew.  Josh Colp
(file) has volunteered to help with the ChangeLog, which is going to be
quite a task for Asterisk 1.2, so someone please send him a muffin.
That's all for now.  Feel free to contact me with any questions or comments.
Russell Bryant
drumkilla
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFB8EH9rwroOS5t/FoRAj8bAJ9JmjWFN8LeZUqSl8kC2VZdG4AiYgCdE88v
dG13ONgdu/HqBLy6gEu3THs=
=t7j1
-END PGP SIGNATURE-
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Asterisk 1.0.4 and more ...

2005-01-20 Thread Jon Bebeau
Hi, Do you have a suggestion on how to determine fixes, features and changes 
between 1.0.3 and 1.0.4 ?

- Original Message - 
From: Russell Bryant [EMAIL PROTECTED]
To: asterisk-users@lists.digium.com; [EMAIL PROTECTED]
Sent: Thursday, January 20, 2005 6:42 PM
Subject: [Asterisk-Users] Asterisk 1.0.4 and more ...


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Greetings!
Version 1.0.4 of Asterisk, Asterisk-addons, zaptel, and libpri has been
released.  The releases are available on the Digium ftp site.
I have also started a web site called The Asterisk Development Proxy
where I would like to start centralizing Asterisk development resources.
~ I am hoping that this will become valuable for those getting into
Asterisk development.
http://dev.asteriskdocs.org/
As a part of this effort, I have started a development team called The
Asterisk Maintenance Crew to encourage amateur programmers to get
involved in development.  The number one job of this team is to help
with the maintenance of the stable branch.  We will also help to
identify and complete some easier development tasks that can be
completed for CVS head.  There is plenty of work to be done, and
programmers of any skill level can help.  If you have any desire to get
involved in Asterisk development, but aren't sure how to get started,
please consider getting involved.
I would like to send a special thanks to Andrew Thompson for providing
the web hosting, and to Leif Madsen (blitzrage) for his early
contributions to the web site and the maintenance crew.  Josh Colp
(file) has volunteered to help with the ChangeLog, which is going to be
quite a task for Asterisk 1.2, so someone please send him a muffin.
That's all for now.  Feel free to contact me with any questions or 
comments.

Russell Bryant
drumkilla
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFB8EH9rwroOS5t/FoRAj8bAJ9JmjWFN8LeZUqSl8kC2VZdG4AiYgCdE88v
dG13ONgdu/HqBLy6gEu3THs=
=t7j1
-END PGP SIGNATURE-
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Asterisk 1.0.4 and more ...

2005-01-20 Thread Gabriel Afana
I second this :-)
1.0.3 is working perfect for me...except for slight sound quality problems 
(jittery) using SIP.  Any new features for me there in 1.0.4?

Gabe
- Original Message - 
From: Jon Bebeau [EMAIL PROTECTED]
To: Asterisk Users Mailing List - Non-Commercial Discussion 
asterisk-users@lists.digium.com
Sent: Thursday, January 20, 2005 3:58 PM
Subject: Re: [Asterisk-Users] Asterisk 1.0.4 and more ...


Hi, Do you have a suggestion on how to determine fixes, features and 
changes between 1.0.3 and 1.0.4 ?

- Original Message - 
From: Russell Bryant [EMAIL PROTECTED]
To: asterisk-users@lists.digium.com; 
[EMAIL PROTECTED]
Sent: Thursday, January 20, 2005 6:42 PM
Subject: [Asterisk-Users] Asterisk 1.0.4 and more ...


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Greetings!
Version 1.0.4 of Asterisk, Asterisk-addons, zaptel, and libpri has been
released.  The releases are available on the Digium ftp site.
I have also started a web site called The Asterisk Development Proxy
where I would like to start centralizing Asterisk development resources.
~ I am hoping that this will become valuable for those getting into
Asterisk development.
http://dev.asteriskdocs.org/
As a part of this effort, I have started a development team called The
Asterisk Maintenance Crew to encourage amateur programmers to get
involved in development.  The number one job of this team is to help
with the maintenance of the stable branch.  We will also help to
identify and complete some easier development tasks that can be
completed for CVS head.  There is plenty of work to be done, and
programmers of any skill level can help.  If you have any desire to get
involved in Asterisk development, but aren't sure how to get started,
please consider getting involved.
I would like to send a special thanks to Andrew Thompson for providing
the web hosting, and to Leif Madsen (blitzrage) for his early
contributions to the web site and the maintenance crew.  Josh Colp
(file) has volunteered to help with the ChangeLog, which is going to be
quite a task for Asterisk 1.2, so someone please send him a muffin.
That's all for now.  Feel free to contact me with any questions or 
comments.

Russell Bryant
drumkilla
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFB8EH9rwroOS5t/FoRAj8bAJ9JmjWFN8LeZUqSl8kC2VZdG4AiYgCdE88v
dG13ONgdu/HqBLy6gEu3THs=
=t7j1
-END PGP SIGNATURE-
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] Asterisk 1.0.4 and more ...

2005-01-20 Thread Matt Riddell
Gabriel Afana wrote:
I second this :-)
1.0.3 is working perfect for me...except for slight sound quality 
problems (jittery) using SIP.  Any new features for me there in 1.0.4?
It's basically all the bugfixes that have appeared in the STABLE version 
of CVS since 1.0.3 was released.  So, if you were downloading the V1-0 
version from CVS regularly, chances are you kinda already have 1.0.4.

If however you downloaded a 1.0.3 package, there will be numerous small 
bugfixes.

The easiest way to see that changes is to download one of the packages 
from the Digium FTP site and read the CHANGELOG.

--
Cheers,
Matt Riddell
___
http://www.sineapps.com/news.php (Daily Asterisk News - html)
http://www.sineapps.com/rssfeed.php (Daily Asterisk News - rss)
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users