From: <abe...@us...> - 2012-02-08 18:14:19
|
Revision: 5448 http://astlinux.svn.sourceforge.net/astlinux/?rev=5448&view=rev Author: abelbeck Date: 2012-02-08 18:14:13 +0000 (Wed, 08 Feb 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-02-08 18:02:32 UTC (rev 5447) +++ branches/1.0/docs/ChangeLog.txt 2012-02-08 18:14:13 UTC (rev 5448) @@ -75,6 +75,8 @@ -- tcpdump, version bump to 4.2.1 +-- nc, enable netcat 1.10 compatibility, see Asterisk app_notify below for more info. + -- dnsmasq, added rc.conf variable LOCALDNS_LOCAL_DOMAIN to enable/disable local-only lookups for DOMAIN. See /stat/etc/rc.conf for more details. @@ -100,6 +102,15 @@ -- rhino, version bump to 0.99.5b1, DAHDI 2.5.x support +-- app_notify, mark as deprecated, offer replacement code, to be removed in AstLinux 1.1.x or so + + Example Dialplan Code to replace Notify() application: (AstLinux 1.0.2 and later) + + [macro-notify] + exten => s,1,System(/bin/echo -ne "${ARG1}|${ARG2}|${ARG3}\\x00" | /usr/bin/nc -u -w1 ${ARG4} 40000 &) + ... + exten => 3,1,Macro(notify,${CALLERID(name)},${CALLERID(num)},${EXTEN},192.168.101.13) + ** Web Interface -- Prefs tab and System tab, if the "Repository URL:" has not been defined (ex. initial This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-02-08 18:41:42
|
Revision: 5450 http://astlinux.svn.sourceforge.net/astlinux/?rev=5450&view=rev Author: abelbeck Date: 2012-02-08 18:41:32 +0000 (Wed, 08 Feb 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-02-08 18:40:03 UTC (rev 5449) +++ branches/1.0/docs/ChangeLog.txt 2012-02-08 18:41:32 UTC (rev 5450) @@ -89,7 +89,7 @@ ** Asterisk --- Asterisk 1.4.43 and 1.8.9.0 +-- Asterisk 1.4.43 and 1.8.9.1 -- DAHDI, dahdi-linux 2.5.0.2 and dahdi-tools 2.5.0.2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-02-08 23:40:52
|
Revision: 5452 http://astlinux.svn.sourceforge.net/astlinux/?rev=5452&view=rev Author: abelbeck Date: 2012-02-08 23:40:46 +0000 (Wed, 08 Feb 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-02-08 23:36:21 UTC (rev 5451) +++ branches/1.0/docs/ChangeLog.txt 2012-02-08 23:40:46 UTC (rev 5452) @@ -107,10 +107,14 @@ Example Dialplan Code to replace Notify() application: (AstLinux 1.0.2 and later) [macro-notify] - exten => s,1,System(/bin/echo -ne "${ARG1}|${ARG2}|${ARG3}\\x00" | /usr/bin/nc -u -w1 ${ARG4} 40000 &) - ... + exten => s,1,System(/bin/echo -ne '${ARG1}|${ARG2}|${ARG3}\\x00' | /usr/bin/nc -u -w1 ${ARG4} 40000 &) + ; + ;Note: Asterisk 1.4 will require the above ' characters to be escaped as \' + ; It is important to use single quotes so no shell expansion takes place. + ;... exten => 3,1,Macro(notify,${CALLERID(name)},${CALLERID(num)},${EXTEN},192.168.101.13) + ** Web Interface -- Prefs tab and System tab, if the "Repository URL:" has not been defined (ex. initial This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-02-09 22:45:27
|
Revision: 5454 http://astlinux.svn.sourceforge.net/astlinux/?rev=5454&view=rev Author: abelbeck Date: 2012-02-09 22:45:16 +0000 (Thu, 09 Feb 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-02-09 22:40:48 UTC (rev 5453) +++ branches/1.0/docs/ChangeLog.txt 2012-02-09 22:45:16 UTC (rev 5454) @@ -107,12 +107,17 @@ Example Dialplan Code to replace Notify() application: (AstLinux 1.0.2 and later) [macro-notify] - exten => s,1,System(/bin/echo -ne '${ARG1}|${ARG2}|${ARG3}\\x00' | /usr/bin/nc -u -w1 ${ARG4} 40000 &) - ; - ;Note: Asterisk 1.4 will require the above ' characters to be escaped as \' - ; It is important to use single quotes so no shell expansion takes place. + ; + ; For Asterisk 1.8 + exten => s,1,Set(OK=0-9a-zA-Z!#%&*+./?@_~\x20\x2c\x2d\x7c) + exten => s,n,System(/bin/echo -ne '${FILTER(${OK},${CALLERID(name)}|${CALLERID(num)}|${ARG1})}\\x00' | /usr/bin/nc -u -w1 ${ARG2} 40000 &) + ; + ; For Asterisk 1.4 + ;exten => s,1,Set(OK="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!#%&*+./?@_~ \,-\|" + ;exten => s,n,System(/bin/echo -ne \'${FILTER("${OK}","${CALLERID(name)}|${CALLERID(num)}|${ARG1}")}\\x00\' | /usr/bin/nc -u -w1 ${ARG2} 40000 &) + ; ;... - exten => 3,1,Macro(notify,${CALLERID(name)},${CALLERID(num)},${EXTEN},192.168.101.13) + exten => 1234,n,Macro(notify,${EXTEN},192.168.101.13) ** Web Interface This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-02-10 17:02:07
|
Revision: 5456 http://astlinux.svn.sourceforge.net/astlinux/?rev=5456&view=rev Author: abelbeck Date: 2012-02-10 17:02:00 +0000 (Fri, 10 Feb 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-02-10 17:00:09 UTC (rev 5455) +++ branches/1.0/docs/ChangeLog.txt 2012-02-10 17:02:00 UTC (rev 5456) @@ -105,21 +105,8 @@ -- app_notify, mark as deprecated, offer replacement code, to be removed in AstLinux 1.1.x or so Example Dialplan Code to replace Notify() application: (AstLinux 1.0.2 and later) + http://doc.astlinux.org/userdoc:tt_asterisk_call_notify - [macro-notify] - ; - ; For Asterisk 1.8 - exten => s,1,Set(OK=0-9a-zA-Z!#%&*+./?@_~\x20\x2c\x2d\x7c) - exten => s,n,System(/bin/echo -ne '${FILTER(${OK},${CALLERID(name)}|${CALLERID(num)}|${ARG1})}\\x00' | /usr/bin/nc -u -w1 ${ARG2} 40000 &) - ; - ; For Asterisk 1.4 - ;exten => s,1,Set(OK="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!#%&*+./?@_~ \,-\|" - ;exten => s,n,System(/bin/echo -ne \'${FILTER("${OK}","${CALLERID(name)}|${CALLERID(num)}|${ARG1}")}\\x00\' | /usr/bin/nc -u -w1 ${ARG2} 40000 &) - ; - ;... - exten => 1234,n,Macro(notify,${EXTEN},192.168.101.13) - - ** Web Interface -- Prefs tab and System tab, if the "Repository URL:" has not been defined (ex. initial This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-02-10 17:32:45
|
Revision: 5458 http://astlinux.svn.sourceforge.net/astlinux/?rev=5458&view=rev Author: abelbeck Date: 2012-02-10 17:32:39 +0000 (Fri, 10 Feb 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-02-10 17:31:45 UTC (rev 5457) +++ branches/1.0/docs/ChangeLog.txt 2012-02-10 17:32:39 UTC (rev 5458) @@ -89,7 +89,7 @@ ** Asterisk --- Asterisk 1.4.43 and 1.8.9.1 +-- Asterisk 1.4.43 and 1.8.9.2 -- DAHDI, dahdi-linux 2.5.0.2 and dahdi-tools 2.5.0.2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-02-28 15:41:39
|
Revision: 5470 http://astlinux.svn.sourceforge.net/astlinux/?rev=5470&view=rev Author: abelbeck Date: 2012-02-28 15:41:32 +0000 (Tue, 28 Feb 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-02-25 02:24:40 UTC (rev 5469) +++ branches/1.0/docs/ChangeLog.txt 2012-02-28 15:41:32 UTC (rev 5470) @@ -5,13 +5,44 @@ === docs/ChangeLog.txt ========================================================= -Additions for AstLinux 1.0.2: +Additions for AstLinux 1.0.3: ============================= Released **TBD** ** System +-- No changes + +** Networking + +-- No changes + +** Asterisk + +-- Asterisk 1.4.43 and 1.8.9.2 + +-- DAHDI, dahdi-linux 2.5.0.2 and dahdi-tools 2.5.0.2 + + Note: zaphfc is not supported in this release since zaphfc does not support DAHDI 2.5.x + an upcoming release will support dahdi_hfcs using DAHDI 2.6.x + +-- wanpipe, version bump to 3.5.25, DAHDI 2.6.x support + +** Web Interface + +-- Prefs tab and CDR Log tab, add support for Display 'uniqueid' CDR value + +-- Prefs tab and Speed Dial tab, add support for Digits: '00 to 999' + + +Additions for AstLinux 1.0.2: +============================= + +Released 2012-02-27 + +** System + -- php, version bump to 5.3.10 (security fixes: CVE-2011-4885, CVE-2011-4566, CVE-2012-0830) -- e1000e version bump to 1.9.5 Intel PCI-Express PRO/1000 Ethernet Linux driver This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-02-28 16:06:19
|
Revision: 5471 http://astlinux.svn.sourceforge.net/astlinux/?rev=5471&view=rev Author: abelbeck Date: 2012-02-28 16:06:08 +0000 (Tue, 28 Feb 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-02-28 15:41:32 UTC (rev 5470) +++ branches/1.0/docs/ChangeLog.txt 2012-02-28 16:06:08 UTC (rev 5471) @@ -29,11 +29,17 @@ -- wanpipe, version bump to 3.5.25, DAHDI 2.6.x support +-- (Custom Build Only) added support for mysql modules: cdr_mysql, app_mysql and res_config_mysql + Enable by setting: BR2_PACKAGE_MYSQL_CLIENT=y + +-- (Custom Build Only) added support for app_voicemail module with IMAP_STORAGE + Enable by setting: BR2_PACKAGE_UW_IMAP=y + ** Web Interface --- Prefs tab and CDR Log tab, add support for Display 'uniqueid' CDR value +-- Prefs tab and CDR Log tab, added support for Display 'uniqueid' CDR value --- Prefs tab and Speed Dial tab, add support for Digits: '00 to 999' +-- Prefs tab and Speed Dial tab, added support for Digits: '00 to 999' Additions for AstLinux 1.0.2: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-03-01 14:58:22
|
Revision: 5473 http://astlinux.svn.sourceforge.net/astlinux/?rev=5473&view=rev Author: abelbeck Date: 2012-03-01 14:58:13 +0000 (Thu, 01 Mar 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-03-01 00:49:09 UTC (rev 5472) +++ branches/1.0/docs/ChangeLog.txt 2012-03-01 14:58:13 UTC (rev 5473) @@ -16,8 +16,13 @@ ** Networking --- No changes +-- lighttpd (configuration), added a new feature when the directory "/mnt/kd/phoneprov/" exists. + After a reboot, both HTTP and HTTPS will be served from that directory provided the URL + directory path begins with /phoneprov/ . Independent from the general HTTP/HTTPS root directory(s). + Example IP Phone provisioning: (AstLinux 1.0.3 and later) + http://doc.astlinux.org/userdoc:tt_ip_phone_provisioning + ** Asterisk -- Asterisk 1.4.43 and 1.8.9.2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-03-16 18:46:49
|
Revision: 5482 http://astlinux.svn.sourceforge.net/astlinux/?rev=5482&view=rev Author: abelbeck Date: 2012-03-16 18:46:42 +0000 (Fri, 16 Mar 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-03-16 18:44:34 UTC (rev 5481) +++ branches/1.0/docs/ChangeLog.txt 2012-03-16 18:46:42 UTC (rev 5482) @@ -25,7 +25,7 @@ ** Asterisk --- Asterisk 1.4.43 and 1.8.9.2 +-- Asterisk 1.4.44 and 1.8.10.1 -- DAHDI, dahdi-linux 2.5.0.2 and dahdi-tools 2.5.0.2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-03-16 19:01:24
|
Revision: 5484 http://astlinux.svn.sourceforge.net/astlinux/?rev=5484&view=rev Author: abelbeck Date: 2012-03-16 19:01:18 +0000 (Fri, 16 Mar 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-03-16 18:59:24 UTC (rev 5483) +++ branches/1.0/docs/ChangeLog.txt 2012-03-16 19:01:18 UTC (rev 5484) @@ -16,6 +16,8 @@ ** Networking +-- OpenSSL, version bump to 0.9.8u (security fixes: CVE-2012-0884 and CVE-2011-4619) + -- lighttpd (configuration), added a new feature when the directory "/mnt/kd/phoneprov/" exists. After a reboot, both HTTP and HTTPS will be served from that directory provided the URL directory path begins with /phoneprov/ . Independent from the general HTTP/HTTPS root directory(s). This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-03-21 18:24:58
|
Revision: 5494 http://astlinux.svn.sourceforge.net/astlinux/?rev=5494&view=rev Author: abelbeck Date: 2012-03-21 18:24:52 +0000 (Wed, 21 Mar 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-03-21 18:11:17 UTC (rev 5493) +++ branches/1.0/docs/ChangeLog.txt 2012-03-21 18:24:52 UTC (rev 5494) @@ -25,6 +25,13 @@ Example IP Phone provisioning: (AstLinux 1.0.3 and later) http://doc.astlinux.org/userdoc:tt_ip_phone_provisioning +-- AIF, version bump to 2.0.1b + +-- inadyn (Dynamic DNS), ZoneEdit, allow an error code of 702 'Too many updates' as a valid response, + essentially the same as a 707 response. Otherwise it will fail to run if it was recently updated. + +-- iproute2 (ip, tc) change to version 2.6.35 to match our kernel, previously iproute2 2.6.39. + ** Asterisk -- Asterisk 1.4.44 and 1.8.10.1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-03-31 17:45:52
|
Revision: 5499 http://astlinux.svn.sourceforge.net/astlinux/?rev=5499&view=rev Author: abelbeck Date: 2012-03-31 17:45:46 +0000 (Sat, 31 Mar 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-03-31 17:40:19 UTC (rev 5498) +++ branches/1.0/docs/ChangeLog.txt 2012-03-31 17:45:46 UTC (rev 5499) @@ -34,7 +34,7 @@ ** Asterisk --- Asterisk 1.4.44 and 1.8.10.1 +-- Asterisk 1.4.44 and 1.8.11.0 -- DAHDI, dahdi-linux 2.5.0.2 and dahdi-tools 2.5.0.2 @@ -55,7 +55,24 @@ -- Prefs tab and Speed Dial tab, added support for Digits: '00 to 999' +-- Firewall sub-tab, for [ NAT EXT->LAN ] and [ NAT EXT->DMZ ] actions, allow to restrict the + NAT to a single IPv4 external address. When an IPv4 address is defined, + NAT EXT: |_________| + + in the NAT EXT: text field, only packets arriving on the external interface with that destination + IPv4 address will be NAT'ed by the rule. + + This feature allows multiple public IPv4 addresses to be individually NAT'ed to private internal + addresses by port or range of ports. + + The default value, 0/0 (or empty), remains as previous, any packet arriving on the external + interface will be NAT'ed by the rule. + +-- Firewall sub-tab, the Protocol menu now includes an ICMP entry, useful when NAT'ing. Note + that all ICMP types will be allowed. + + Additions for AstLinux 1.0.2: ============================= This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-04-07 19:51:35
|
Revision: 5508 http://astlinux.svn.sourceforge.net/astlinux/?rev=5508&view=rev Author: abelbeck Date: 2012-04-07 19:51:29 +0000 (Sat, 07 Apr 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-04-07 19:42:44 UTC (rev 5507) +++ branches/1.0/docs/ChangeLog.txt 2012-04-07 19:51:29 UTC (rev 5508) @@ -12,8 +12,14 @@ ** System --- No changes +-- e1000e version bump to 1.10.6 Intel PCI-Express PRO/1000 Ethernet Linux driver +-- r8168 version bump to 8.029.00 RealTek PCI-Express Gigabit Ethernet Linux driver + +-- lm-sensors, version bump to 3.3.2 + +-- sqlite, version bump to 3.7.11 + ** Networking -- OpenSSL, version bump to 0.9.8u (security fixes: CVE-2012-0884 and CVE-2011-4619) @@ -32,6 +38,8 @@ -- iproute2 (ip, tc) change to version 2.6.35 to match our kernel, previously iproute2 2.6.39. +-- iptables, version bump to 1.4.13 + ** Asterisk -- Asterisk 1.4.44 and 1.8.11.0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-04-12 14:45:05
|
Revision: 5512 http://astlinux.svn.sourceforge.net/astlinux/?rev=5512&view=rev Author: abelbeck Date: 2012-04-12 14:44:59 +0000 (Thu, 12 Apr 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-04-12 14:30:28 UTC (rev 5511) +++ branches/1.0/docs/ChangeLog.txt 2012-04-12 14:44:59 UTC (rev 5512) @@ -24,6 +24,9 @@ -- OpenSSL, version bump to 0.9.8u (security fixes: CVE-2012-0884 and CVE-2011-4619) +-- Added rc.conf variables EXTIP_ALIAS and EXT2IP_ALIAS to support alias (virtual) external interfaces + for static addressing. See /stat/etc/rc.conf for more details. + -- lighttpd (configuration), added a new feature when the directory "/mnt/kd/phoneprov/" exists. After a reboot, both HTTP and HTTPS will be served from that directory provided the URL directory path begins with /phoneprov/ . Independent from the general HTTP/HTTPS root directory(s). This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-04-24 12:02:59
|
Revision: 5519 http://astlinux.svn.sourceforge.net/astlinux/?rev=5519&view=rev Author: abelbeck Date: 2012-04-24 12:02:49 +0000 (Tue, 24 Apr 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-04-23 20:58:47 UTC (rev 5518) +++ branches/1.0/docs/ChangeLog.txt 2012-04-24 12:02:49 UTC (rev 5519) @@ -27,6 +27,12 @@ -- Added rc.conf variables EXTIP_ALIAS and EXT2IP_ALIAS to support alias (virtual) external interfaces for static addressing. See /stat/etc/rc.conf for more details. +-- IPsec Mobile, added support for XAuth, specifically support for Apple iOS IPsec VPN client. + Special thanks to Ingmar Schraub for demonstrating how this could be done. + + Example IPsec VPN for Apple iOS: (AstLinux 1.0.3 and later) + http://doc.astlinux.org/userdoc:tt_ipsec_vpn_apple_ios + -- lighttpd (configuration), added a new feature when the directory "/mnt/kd/phoneprov/" exists. After a reboot, both HTTP and HTTPS will be served from that directory provided the URL directory path begins with /phoneprov/ . Independent from the general HTTP/HTTPS root directory(s). @@ -62,6 +68,8 @@ ** Web Interface +-- Network tab, added IPsec Mobile XAuth support, which adds improved VPN client interoperability. + -- Prefs tab and CDR Log tab, added support for Display 'uniqueid' CDR value -- Prefs tab and Speed Dial tab, added support for Digits: '00 to 999' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-04-30 22:20:35
|
Revision: 5524 http://astlinux.svn.sourceforge.net/astlinux/?rev=5524&view=rev Author: abelbeck Date: 2012-04-30 22:20:28 +0000 (Mon, 30 Apr 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-04-30 21:14:41 UTC (rev 5523) +++ branches/1.0/docs/ChangeLog.txt 2012-04-30 22:20:28 UTC (rev 5524) @@ -42,6 +42,8 @@ -- AIF, version bump to 2.0.1b +-- inadyn (Dynamic DNS), add support for pairNIC, use DDSERVICE="de...@pa..." + -- inadyn (Dynamic DNS), ZoneEdit, allow an error code of 702 'Too many updates' as a valid response, essentially the same as a 707 response. Otherwise it will fail to run if it was recently updated. @@ -70,6 +72,8 @@ -- Network tab, added IPsec Mobile XAuth support, which adds improved VPN client interoperability. +-- Network tab, added dynamic DNS Service Type: pairNIC + -- Prefs tab and CDR Log tab, added support for Display 'uniqueid' CDR value -- Prefs tab and Speed Dial tab, added support for Digits: '00 to 999' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-05-02 15:43:37
|
Revision: 5527 http://astlinux.svn.sourceforge.net/astlinux/?rev=5527&view=rev Author: abelbeck Date: 2012-05-02 15:43:27 +0000 (Wed, 02 May 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-05-02 15:35:23 UTC (rev 5526) +++ branches/1.0/docs/ChangeLog.txt 2012-05-02 15:43:27 UTC (rev 5527) @@ -55,10 +55,9 @@ -- Asterisk 1.4.44 and 1.8.11.0 --- DAHDI, dahdi-linux 2.5.0.2 and dahdi-tools 2.5.0.2 +-- DAHDI, dahdi-linux 2.6.0 and dahdi-tools 2.6.0 - Note: zaphfc is not supported in this release since zaphfc does not support DAHDI 2.5.x - an upcoming release will support dahdi_hfcs using DAHDI 2.6.x + Note: dahdi_hfcs is now supported in this release for Asterisk 1.8 builds -- wanpipe, version bump to 3.5.25, DAHDI 2.6.x support This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-05-02 15:49:02
|
Revision: 5528 http://astlinux.svn.sourceforge.net/astlinux/?rev=5528&view=rev Author: abelbeck Date: 2012-05-02 15:48:53 +0000 (Wed, 02 May 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-05-02 15:43:27 UTC (rev 5527) +++ branches/1.0/docs/ChangeLog.txt 2012-05-02 15:48:53 UTC (rev 5528) @@ -57,8 +57,11 @@ -- DAHDI, dahdi-linux 2.6.0 and dahdi-tools 2.6.0 - Note: dahdi_hfcs is now supported in this release for Asterisk 1.8 builds + Note: dahdi_hfcs is now supported in this release for Asterisk 1.8 builds. + Note: Rhino PCI card support is no longer enabled in the standard, default builds. + Rhino support may be enabled via a custom build, automatically forcing DAHDI 2.5.x + -- wanpipe, version bump to 3.5.25, DAHDI 2.6.x support -- (Custom Build Only) added support for mysql modules: cdr_mysql, app_mysql and res_config_mysql This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-05-02 16:13:03
|
Revision: 5531 http://astlinux.svn.sourceforge.net/astlinux/?rev=5531&view=rev Author: abelbeck Date: 2012-05-02 16:12:57 +0000 (Wed, 02 May 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-05-02 16:11:13 UTC (rev 5530) +++ branches/1.0/docs/ChangeLog.txt 2012-05-02 16:12:57 UTC (rev 5531) @@ -22,7 +22,7 @@ ** Networking --- OpenSSL, version bump to 0.9.8u (security fixes: CVE-2012-0884 and CVE-2011-4619) +-- OpenSSL, version bump to 0.9.8w (security fixes: CVE-2012-0884, CVE-2011-4619, CVE-2012-2110 and CVE-2012-2131) -- Added rc.conf variables EXTIP_ALIAS and EXT2IP_ALIAS to support alias (virtual) external interfaces for static addressing. See /stat/etc/rc.conf for more details. @@ -53,7 +53,7 @@ ** Asterisk --- Asterisk 1.4.44 and 1.8.11.0 +-- Asterisk 1.4.44 and 1.8.11.1 -- DAHDI, dahdi-linux 2.6.0 and dahdi-tools 2.6.0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-05-07 00:53:22
|
Revision: 5537 http://astlinux.svn.sourceforge.net/astlinux/?rev=5537&view=rev Author: abelbeck Date: 2012-05-07 00:53:16 +0000 (Mon, 07 May 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-05-07 00:46:01 UTC (rev 5536) +++ branches/1.0/docs/ChangeLog.txt 2012-05-07 00:53:16 UTC (rev 5537) @@ -33,6 +33,8 @@ Example IPsec VPN for Apple iOS: (AstLinux 1.0.3 and later) http://doc.astlinux.org/userdoc:tt_ipsec_vpn_apple_ios +-- OpenVPN Server, added optional support for User/Pass authentication in addition to the certificate. + -- lighttpd (configuration), added a new feature when the directory "/mnt/kd/phoneprov/" exists. After a reboot, both HTTP and HTTPS will be served from that directory provided the URL directory path begins with /phoneprov/ . Independent from the general HTTP/HTTPS root directory(s). @@ -74,6 +76,8 @@ -- Network tab, added IPsec Mobile XAuth support, which adds improved VPN client interoperability. +-- Network tab, added OpenVPN Server User/Pass support, which adds an optional layer of authentication. + -- Network tab, added dynamic DNS Service Type: pairNIC -- Prefs tab and CDR Log tab, added support for Display 'uniqueid' CDR value This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-05-29 17:47:08
|
Revision: 5552 http://astlinux.svn.sourceforge.net/astlinux/?rev=5552&view=rev Author: abelbeck Date: 2012-05-29 17:46:58 +0000 (Tue, 29 May 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-05-29 17:18:11 UTC (rev 5551) +++ branches/1.0/docs/ChangeLog.txt 2012-05-29 17:46:58 UTC (rev 5552) @@ -5,13 +5,49 @@ === docs/ChangeLog.txt ========================================================= -Additions for AstLinux 1.0.3: +Additions for AstLinux 1.0.4: ============================= Released **TBD** ** System +-- php, version bump to 5.3.13 (security fixes: CVE-2012-1823 and CVE-2012-2311) + +-- sqlite, version bump to 3.7.12.1 + +** Networking + +-- OpenSSL, version bump to 0.9.8x (security fixes: CVE-2012-2333) + +-- IPsec XAuth, new rc.conf variable IPSECM_XAUTH_LOCAL_GW which defines a client local gateway for + IPsec XAuth clients, defaults to INTIP. Remote IPsec XAuth clients then use INTIP (or IPSECM_XAUTH_LOCAL_GW) + as the Asterisk server, any AstLinux-local server for that matter. + +** Asterisk + +-- Asterisk 1.4.44 and 1.8.12.0 + +-- DAHDI, dahdi-linux 2.6.1 and dahdi-tools 2.6.1 + +-- wanpipe, version bump to 3.5.27 + +-- safe_asterisk script, add restart limits so endless restarts/emails won't be generated + +** Web Interface + +-- MeetMe tab, added a new MeetMe tab to manage Conferences. + The Prefs tab allows the MeetMe tab to be shown, as well as supporting MeetMe Tab Options. + Special thanks to James Babiak for the blueprint. + + +Additions for AstLinux 1.0.3: +============================= + +Released 2012-05-25 + +** System + -- e1000e version bump to 1.10.6 Intel PCI-Express PRO/1000 Ethernet Linux driver -- r8168 version bump to 8.029.00 RealTek PCI-Express Gigabit Ethernet Linux driver This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-06-01 17:08:31
|
Revision: 5556 http://astlinux.svn.sourceforge.net/astlinux/?rev=5556&view=rev Author: abelbeck Date: 2012-06-01 17:08:25 +0000 (Fri, 01 Jun 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-06-01 16:59:25 UTC (rev 5555) +++ branches/1.0/docs/ChangeLog.txt 2012-06-01 17:08:25 UTC (rev 5556) @@ -24,6 +24,10 @@ IPsec XAuth clients, defaults to INTIP. Remote IPsec XAuth clients then use INTIP (or IPSECM_XAUTH_LOCAL_GW) as the Asterisk server, any AstLinux-local server for that matter. +-- dhcpdump, new command to help debug DHCP packets, useful for IP phones and provisioning. + Example: dhcpdump -i eth1 -h '^00:15:65' + Monitor DHCP packets on interface 'eth1' for MAC addresses starting with 00:15:65 (Yealink phones) + ** Asterisk -- Asterisk 1.4.44 and 1.8.12.0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-06-05 01:28:34
|
Revision: 5560 http://astlinux.svn.sourceforge.net/astlinux/?rev=5560&view=rev Author: abelbeck Date: 2012-06-05 01:28:27 +0000 (Tue, 05 Jun 2012) Log Message: ----------- upgrade ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-06-05 00:57:39 UTC (rev 5559) +++ branches/1.0/docs/ChangeLog.txt 2012-06-05 01:28:27 UTC (rev 5560) @@ -16,10 +16,18 @@ -- sqlite, version bump to 3.7.12.1 +-- setconsole-speed-tty, new command to change the serial console speed/tty, not only currently but also + automatically after upgrades. + Usage: setconsole-speed-tty [ show|reset|help ] 9600|19200|38400|57600|115200 [ ttySn ] + + More info: http://doc.astlinux.org/userdoc:tt_serial_console_speed_tty + ** Networking -- OpenSSL, version bump to 0.9.8x (security fixes: CVE-2012-2333) +-- lighttpd, version bump to 1.4.31 + -- IPsec XAuth, new rc.conf variable IPSECM_XAUTH_LOCAL_GW which defines a client local gateway for IPsec XAuth clients, defaults to INTIP. Remote IPsec XAuth clients then use INTIP (or IPSECM_XAUTH_LOCAL_GW) as the Asterisk server, any AstLinux-local server for that matter. @@ -30,7 +38,7 @@ ** Asterisk --- Asterisk 1.4.44 and 1.8.12.0 +-- Asterisk 1.4.44 and 1.8.13.0 -- DAHDI, dahdi-linux 2.6.1 and dahdi-tools 2.6.1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-06-05 17:30:42
|
Revision: 5562 http://astlinux.svn.sourceforge.net/astlinux/?rev=5562&view=rev Author: abelbeck Date: 2012-06-05 17:30:31 +0000 (Tue, 05 Jun 2012) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2012-06-05 17:27:20 UTC (rev 5561) +++ branches/1.0/docs/ChangeLog.txt 2012-06-05 17:30:31 UTC (rev 5562) @@ -14,6 +14,8 @@ -- php, version bump to 5.3.13 (security fixes: CVE-2012-1823 and CVE-2012-2311) +-- mysql_client, version bump to 5.1.63, security fixes. + -- sqlite, version bump to 3.7.12.1 -- setconsole-speed-tty, new command to change the serial console speed/tty, not only currently but also This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |