<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Voip Phreak&#187; Asterisk-Addons 1.4.8 Now Available</title>
	<atom:link href="http://www.voipphreak.ca/category/asterisk-14/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.voipphreak.ca</link>
	<description>Cool sh!t about Asterisk, VOIP, XMPP 'n stuff</description>
	<lastBuildDate>Tue, 08 Jun 2010 04:50:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Asterisk-Addons 1.4.8 Now Available</title>
		<link>http://www.voipphreak.ca/2009/04/29/asterisk-addons-148-now-available/</link>
		<comments>http://www.voipphreak.ca/2009/04/29/asterisk-addons-148-now-available/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 05:42:16 +0000</pubDate>
		<dc:creator>Voip Phreak</dc:creator>
				<category><![CDATA[Asterisk 1.4]]></category>
		<category><![CDATA[Asterisk Addons]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.voipphreak.ca/?p=1256</guid>
		<description><![CDATA[The Asterisk Development Team is pleased to announce the release of Asterisk-Addons 1.4.8. Asterisk-Addons 1.4.8 is available for immediate download at http://downloads.digium.com/pub/asterisk/ This is a minor release with a single fix for chan_ooh323c from issue #14116, which could cause a crash within the channel driver. If you are not using chan_ooh323c, there is no need [...]]]></description>
			<content:encoded><![CDATA[<p>The Asterisk Development Team is pleased to announce the release of Asterisk-Addons 1.4.8. Asterisk-Addons 1.4.8 is available for immediate download at <a href="http://downloads.digium.com/pub/asterisk/">http://downloads.digium.com/pub/asterisk/</a></p>
<p>This is a minor release with a single fix for chan_ooh323c from issue #14116, which could cause a crash within the channel driver. If you are not using chan_ooh323c, there is no need to upgrade.</p>
<p>For a full list of changes in this release, please see the ChangeLog:</p>
<p><a href="http://svn.digium.com/svn/asterisk-addons/tags/1.4.8/ChangeLog">http://svn.digium.com/svn/asterisk-addons/tags/1.4.8/ChangeLog</a></p>
<p>Thank you for your continued support of Asterisk!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voipphreak.ca/2009/04/29/asterisk-addons-148-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Randomizing your voicemail greetings with Asterisk to annoy friends and family!</title>
		<link>http://www.voipphreak.ca/2009/04/20/randomizing-your-voicemail-greetings-with-asterisk-to-annoy-friends-and-family/</link>
		<comments>http://www.voipphreak.ca/2009/04/20/randomizing-your-voicemail-greetings-with-asterisk-to-annoy-friends-and-family/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 04:29:14 +0000</pubDate>
		<dc:creator>Voip Phreak</dc:creator>
				<category><![CDATA[Asterisk 1.2]]></category>
		<category><![CDATA[Asterisk 1.4]]></category>
		<category><![CDATA[Asterisk 1.6]]></category>

		<guid isPermaLink="false">http://www.voipphreak.ca/?p=1246</guid>
		<description><![CDATA[Do you run Asterisk for your house as well as for your business? Have you ever wanted to play a random voicemail greeting to the house callers? Just so they aren't always hearing the same thing every time they call? Well, with this little trick you can do it very easily. First, find yourself some [...]]]></description>
			<content:encoded><![CDATA[<p>Do you run Asterisk for your house as well as for your business? Have you ever wanted to play a random voicemail greeting to the house callers? Just so they aren't always hearing the same thing every time they call? Well, with this little trick you can do it very easily.</p>
<p>First, find yourself some <a href="http://www.ilovewavs.com/comedy/AnsMach/AnsMach.htm" target="_blank">Funny Answering Machine messages</a> or other such thing that you want to rotate around. These will usually come in .wav or .mp3 format, which you'll have to convert, using information from voip-info on <a href="/var/spool/asterisk/random-vm/vmscript.sh" target="_blank">converting from wav to gsm for use with asterisk</a>.</p>
<p>After you've converted your files, you can follow these simple steps to get some random voicemail.</p>
<p>First, make a directory for your random voicemail gsm files</p>
<blockquote><p># mkdir /var/spool/asterisk/random-vm</p></blockquote>
<p>Now, copy all your gsm files to this directory</p>
<blockquote><p># mv /home/admin/*.gsm /var/spool/asterisk/random-vm</p></blockquote>
<p>Now, delete your old unavailable messages from your voicemail directory. In this case it's extension 7000, yours might differ.</p>
<blockquote><p># cd /var/spool/asterisk/voicemail/device/7000/<br />
# rm unavail.gsm unavail.wav unavail.WAV busy.gsm busy.wav busy.WAV</p></blockquote>
<p>Now, create a symlink from busy.gsm to unavail.gsm</p>
<blockquote><p># ln -s unavail.gsm busy.gsm</p></blockquote>
<p>Now you just need to setup a little script to randomize the voicemail greetings.</p>
<blockquote><p># cd /var/spool/asterisk/random-vm<br />
# nano vmscript.sh</p></blockquote>
<p>And using your favourite editor (nano for us.. yes, we're not that nerdy) paste the following in.</p>
<blockquote><p>#!/bin/sh</p>
<p># number of voicemails to rotate is 6 (0-5). Change to match yours.<br />
number=`expr $(date +%S) % 6`</p>
<p># remove the old voicemail message<br />
rm /var/spool/asterisk/voicemail/device/7000/unavail.gsm</p>
<p># link the unavailable message to one of the random ones, yo!<br />
ln -s /var/spool/asterisk/random-vm/unavail-$number.gsm /var/spool/asterisk/voicemail/device/7000/unavail.gsm</p>
<p># done!</p></blockquote>
<p>Now, exit and save the file. Remember to change the paths, and amount of voicemail greetings as required.</p>
<p>All you should have to do now, is change the permissions, and then add it to cron and you'll be set.</p>
<p>Change permissions like this</p>
<blockquote><p># chown -R asterisk:asterisk /var/spool/asterisk/random-vm<br />
# chmod +x /var/spool/asterisk/random-vm/vmscript.sh</p></blockquote>
<p>Add it to cron like this</p>
<blockquote><p># crontab -e</p></blockquote>
<p>then add the following line</p>
<blockquote><p># to rotate voicemail messages<br />
*/1 * * * * /var/spool/asterisk/random-vm/vmscript.sh</p></blockquote>
<p>Exit and save your crontab. Which will rotate them every minute. Obviously, if you get like 30 calls a minute you may run into trouble, but for a simple house line, this works great, and always keeps callers guessing!</p>
<p><strong>UPDATE</strong></p>
<p>turns out it wasn't fully randomizing the messages as I intended. To get this to work, simply change the script above from</p>
<blockquote><p>#!/bin/sh</p></blockquote>
<p>to</p>
<blockquote><p>#!/bin/bash</p></blockquote>
<p>and then change</p>
<blockquote><p>number=`expr $(date +%S) % 6`</p></blockquote>
<p>to</p>
<blockquote><p>number=$(($RANDOM % 6))</p></blockquote>
<p>Now it'll rotate as expected.</p>
<p><strong>UPDATE</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.voipphreak.ca/2009/04/20/randomizing-your-voicemail-greetings-with-asterisk-to-annoy-friends-and-family/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Asterisk 1.2.31.1, 1.4.22.2, 1.4.23.1,	and 1.6.0.5 released</title>
		<link>http://www.voipphreak.ca/2009/01/24/asterisk-12311-14222-14231and-1605-released/</link>
		<comments>http://www.voipphreak.ca/2009/01/24/asterisk-12311-14222-14231and-1605-released/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 05:38:41 +0000</pubDate>
		<dc:creator>Voip Phreak</dc:creator>
				<category><![CDATA[Asterisk 1.2]]></category>
		<category><![CDATA[Asterisk 1.4]]></category>
		<category><![CDATA[Asterisk 1.6]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.voipphreak.ca/?p=1055</guid>
		<description><![CDATA[The Asterisk.org development team has announced the release of Asterisk 1.2.31.1, 1.4.22.2, 1.4.23.1, and 1.6.0.5. These releases are available for immediate download from http://downloads.digium.com/. This update for Asterisk includes a security fix for chan_iax2. Please see the associated security adivisory for more details: http://downloads.digium.com/pub/security/AST-2009-001.html These updates are a fix to a previous security release (released [...]]]></description>
			<content:encoded><![CDATA[<p>The Asterisk.org development team has announced the release of Asterisk 1.2.31.1, 1.4.22.2, 1.4.23.1, and 1.6.0.5. These releases are available for immediate download from <a href="http://downloads.digium.com/">http://downloads.digium.com/</a>.</p>
<p>This update for Asterisk includes a security fix for chan_iax2. Please see the associated security adivisory for more details:</p>
<p><a href="http://downloads.digium.com/pub/security/AST-2009-001.html">http://downloads.digium.com/pub/security/AST-2009-001.html</a></p>
<p>These updates are a fix to a previous security release (released as versions 1.2.31, 1.4.22.1, and 1.6.0.3).</p>
<p>The new versions are being released after additional testing revealed some issues with the way that scanning for users was blocked. Those issues have been corrected in this release.</p>
<p>This security issue affects the 1.2, 1.4, and 1.6 series of Asterisk.</p>
<p>Also note, that Asterisk 1.6.0.4-rc1 was released yesterday prior to the security update. That release has been removed as there will be no 1.6.0.4 release, but rather will be reincarnated as 1.6.0.6-rc1. The reason for the dead release is to avoid 5 digit release numbers.</p>
<p>ChangeLogs for the various releases are available at:</p>
<p><a href="http://downloads.digium.com/pub/asterisk/ChangeLog-1.2.31.1">http://downloads.digium.com/pub/asterisk/ChangeLog-1.2.31.1</a></p>
<p><a href="http://downloads.digium.com/pub/asterisk/ChangeLog-1.4.22.2">http://downloads.digium.com/pub/asterisk/ChangeLog-1.4.22.2</a></p>
<p><a href="http://downloads.digium.com/pub/asterisk/ChangeLog-1.4.23.1">http://downloads.digium.com/pub/asterisk/ChangeLog-1.4.23.1</a></p>
<p><a href="http://downloads.digium.com/pub/asterisk/ChangeLog-1.6.0.5">http://downloads.digium.com/pub/asterisk/ChangeLog-1.6.0.5</a></p>
<p>Thank you for your continued support of Asterisk!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voipphreak.ca/2009/01/24/asterisk-12311-14222-14231and-1605-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asterisk 1.4.23 Now Available!</title>
		<link>http://www.voipphreak.ca/2009/01/21/asterisk-1423-now-available/</link>
		<comments>http://www.voipphreak.ca/2009/01/21/asterisk-1423-now-available/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 20:32:15 +0000</pubDate>
		<dc:creator>Voip Phreak</dc:creator>
				<category><![CDATA[Asterisk 1.4]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.voipphreak.ca/?p=1039</guid>
		<description><![CDATA[This release is a significant bug fix update for the 1.4 release series. The following list of bugs were resolved with the participation of the community, and this release would not have been possible without your help! * Fixed datastore handling crashes in app_queue.c. - Closes issues 14086. Reported by ZX81. Tested by: ZX81, festr. [...]]]></description>
			<content:encoded><![CDATA[<p>This release is a significant bug fix update for the 1.4 release series.</p>
<p>The following list of bugs were resolved with the participation of the community, and this release would not have been possible without your help!</p>
<p>* Fixed datastore handling crashes in app_queue.c.</p>
<p>- Closes issues 14086. Reported by ZX81. Tested by: ZX81, festr.</p>
<p>* Update autosupport script to supply info for both Zaptel and DAHDI</p>
<p>in 1.4 and be sure to run dahdi_test in 1.6.x and trunk instead of</p>
<p>zttest.</p>
<p>- Closes issue 14132. Reported by and patch contributed by: dsedivec</p>
<p>* Don't overflow when paging more than 128 extensions. The number of available</p>
<p>slots for calls in app_page was hardcoded to 128. Proper bounds checking</p>
<p>was not in place to enforce this limit, so if more than 128 extensions were</p>
<p>passed to the Page() app, Asterisk would crash. This patch instead</p>
<p>dynamically allocates memory for the ast_dial structures and removes the</p>
<p>(non-functional) arbitrary limit. This issue would have special importance</p>
<p>to anyone who is dynamically creating the argument passed to the Page</p>
<p>application and allowing more than 128 extensions to be added by an outside</p>
<p>user via some external interface.</p>
<p>- Closes issue 14217. Reported by and patch contributed by: a_villacis</p>
<p>* Do not crash if we are not passed a followme ID.</p>
<p>- Closes issue 14106. Reported by and patch contributed by: ys</p>
<p>* Change the way the T.38 SDP attribute handling to make it more liberal in</p>
<p>what it accepts, and more strict in what it sends.</p>
<p>- Closes issue 13967. Reported by: linulin. Patches contributed by:</p>
<p>arcivanov</p>
<p>In addition to the issues cited above, several issues related to call parking have been resolved, thereby making Asterisk call parking more robust.</p>
<p>See issues 13820, 13747, 14066, 14228, 13854, 12854, and 13139 for more information. Special thanks to otherwiseguy, davidw, bluefox, waverly360, kobaz, Adam Lee, krisk84, and murf.</p>
<p>For a full list of changes, see the ChangeLog:</p>
<p><a href="http://svn.digium.com/svn-view/asterisk/tags/1.4.23/ChangeLog?view=markup">http://svn.digium.com/svn-view/asterisk/tags/1.4.23/ChangeLog?view=markup</a></p>
<p>Thank you for your support of Asterisk!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voipphreak.ca/2009/01/21/asterisk-1423-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asterisk 1.4.23-rc4 Now Available</title>
		<link>http://www.voipphreak.ca/2009/01/16/asterisk-1423-rc4-now-available/</link>
		<comments>http://www.voipphreak.ca/2009/01/16/asterisk-1423-rc4-now-available/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 00:49:25 +0000</pubDate>
		<dc:creator>Voip Phreak</dc:creator>
				<category><![CDATA[Asterisk 1.4]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.voipphreak.ca/?p=1017</guid>
		<description><![CDATA[The Asterisk.org development team has published Asterisk 1.4.23-rc4. This release candidate is available for download from http://downloads.digium.com/. A number of critical issues have been resolved since the last release candidate for 1.4.23.  We hope to have this be the final release candidate.  If all goes well, 1.4.23 will be released early next week. For a [...]]]></description>
			<content:encoded><![CDATA[<p>The Asterisk.org development team has published Asterisk 1.4.23-rc4.</p>
<p>This release candidate is available for download from <a href="http://downloads.digium.com/">http://downloads.digium.com/</a>.</p>
<p>A number of critical issues have been resolved since the last release candidate for 1.4.23.  We hope to have this be the final release candidate.  If all goes well, 1.4.23 will be released early next week.</p>
<p>For a full list of changes, see the ChangeLog:</p>
<p><a href="http://svn.digium.com/svn-view/asterisk/tags/1.4.23-rc4/ChangeLog?view=markup">http://svn.digium.com/svn-view/asterisk/tags/1.4.23-rc4/ChangeLog?view=markup</a></p>
<p>Testing of this release candidate would be very much appreciated.  One area that has received a lot of changes is the handling of call parking, so that is an area that could use some special attention in testing.</p>
<p>Please report any issues found in testing to <a href="http://bugs.digium.com/">http://bugs.digium.com/</a>.</p>
<p>Thank you for your support of Asterisk!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voipphreak.ca/2009/01/16/asterisk-1423-rc4-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreePBX Multi-Language Directory keeps playing &#8220;dir_intro&#8221; in English instead of your chosen language? Quick Hack to fix it!</title>
		<link>http://www.voipphreak.ca/2009/01/13/freepbx-multi-language-directory-keeps-playing-dir_intro-in-english-instead-of-your-chosen-language-quick-hack-to-fix-it/</link>
		<comments>http://www.voipphreak.ca/2009/01/13/freepbx-multi-language-directory-keeps-playing-dir_intro-in-english-instead-of-your-chosen-language-quick-hack-to-fix-it/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 06:26:35 +0000</pubDate>
		<dc:creator>Voip Phreak</dc:creator>
				<category><![CDATA[Asterisk 1.4]]></category>
		<category><![CDATA[FreePBX]]></category>
		<category><![CDATA[Howtos]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Directory]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Instructions]]></category>
		<category><![CDATA[Multi-Language]]></category>

		<guid isPermaLink="false">http://www.voipphreak.ca/?p=992</guid>
		<description><![CDATA[Tonight we were debugging a customers PBX system for them because of what seemed like a really simple issue with their company directory. As they are located in a bi-lingual area they wanted to have english and french menus available to them. They use a combination of Asterisk 1.4 and FreePBX 2.5.

With this software they already had the Languages module available to them, so they were able to create one main IVR, and then several branching IVR's dependant on the language that was selected.

In this case, English and French. So, that's all well and good, then we noticed that when you dial the company directory from the French menu, the prompt for the instructions (and only that prompt) is always played in english, instead of our desired language of french. This is really weird. So, we debugged it a little bit and found this in the logs:]]></description>
			<content:encoded><![CDATA[<p>Tonight we were debugging a customers PBX system for them because of what seemed like a really simple issue with their company directory. As they are located in a bi-lingual area they wanted to have english and french menus available to them. They use a combination of Asterisk 1.4 and FreePBX 2.5.</p>
<p>With this software they already had the Languages module available to them, so they were able to create one main IVR, and then several branching IVR's dependant on the language that was selected.</p>
<p>In this case, English and French. So, that's all well and good, then we noticed that when you dial the company directory from the French menu, the prompt for the instructions (and only that prompt) is always played in english, instead of our desired language of french. This is really weird. So, we debugged it a little bit and found this in the logs:</p>
<blockquote><p><span style="color: #888888;">-- Executing [3@app-languages:2] Set("DAHDI/1-1", "CHANNEL(language)=fr") in new stack<br />
-- &lt;DAHDI/1-1&gt; Playing 'dir-intro-oper' (language 'fr')<br />
directory|default|from-did-direct|lo: -- Playing 'dir-instr' (language 'en')</span></p></blockquote>
<p>Hmm, that's weird - it says it's playing it in french, but it's playing it in english that first time. Then it goes on to correctly say that it's playing the english soundfile, not the french one. Hm, even weirder. So, maybe it's permissions.</p>
<p>We checked the permissions in /var/lib/asterisk/sounds and /var/lib/asterisk/sounds/fr and everything was correct. They were owned by the asterisk user and asterisk group, we don't run as root and neither should you. The permissions were rw-r-r so that was fine too. Hmmmf. So, now we began to search google. We found one post on the subject from the <a href="http://freepbx.org/trac/ticket/3286">freepbx bug tracker</a> where the user was basically told it was his problem, so, we thought it was our problem too and continued searching for another hour or two trying everything possible:</p>
<ul>
<li>Replaced the sound files a couple times, deleting in between</li>
<li>Re-did the permissions</li>
<li>Symlinked them to various directories</li>
<li>Added a hard coding of "fr/" to all soundfiles in the FreePBX AGI - Directory</li>
<li>Ensured we have support for en and fr enabled</li>
<li>Manually created the Directory with another Language and Misc Destination in FreePBX (complex!)</li>
<li>Asked on IRC</li>
</ul>
<p>Well, if you're reading this, none of that probably worked for you either. So, this is what we did - not sure how "right" it is, but it avoids this issue if you're trying to run your IVR with a company directory in english and french. It's pretty simple too.</p>
<p>First, login to your FreePBX interface.</p>
<p>Then click over to the Tools tab on the left.</p>
<p>Go to Custom Destinations, and Create a new one</p>
<blockquote><p>Custom Destination: <strong>from-internal-custom,s,1<br />
</strong>Name:<strong> French-Directory</strong></p></blockquote>
<p>Now press the submit button.</p>
<p>Now Flip over to the Setup Tab of FreePBX and go to your French IVR menu with the Directory in it.</p>
<p>Change the destination to go from the default (#) or whatever you have it set to, to instead go to your new Custom Destination (French-Directory)</p>
<p>Now you're done the setup in FreePBX.</p>
<p>SSH to your PBX system, and then edit the custom extensions file</p>
<blockquote><p># sudo nano /etc/asterisk/extensions_custom.conf</p></blockquote>
<p>Now Paste the following in there</p>
<blockquote><p>[from-internal-custom]<br />
exten =&gt; s,1,Answer<br />
exten =&gt; s,n,Wait(1)<br />
exten =&gt; s,n,Set(LANGUAGE()=fr)<br />
;exten =&gt; s,n,AGI(directory,${DIR-CONTEXT},from-did-direct,${DIRECTORY:0:1}${DIRECTORY_OPTS}o)<br />
exten =&gt; s,n,Directory(default|from-did-direct|lo)<br />
exten =&gt; s,n,Playback(vm-goodbye)<br />
exten =&gt; s,n,Hangup()<br />
exten =&gt; o,1,Goto(from-internal,${OPERATOR_XTN},1)</p></blockquote>
<p>Exit and save the file then reload asterisk.</p>
<blockquote><p># sudo asterisk -rx "reload"</p></blockquote>
<p>Now, you should test the calling into your menu to make sure the proper directory is working. Does for us. Comments are open if anyone has better suggestions, or a way to fix the directory agi that comes with FreePBX to properly support the instructions/intro being played in french (or any other language) instead of only english.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voipphreak.ca/2009/01/13/freepbx-multi-language-directory-keeps-playing-dir_intro-in-english-instead-of-your-chosen-language-quick-hack-to-fix-it/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Asterisk 1.2.31, 1.4.22.1, and 1.6.0.3 released</title>
		<link>http://www.voipphreak.ca/2009/01/08/asterisk-1231-14221-and-1603-released/</link>
		<comments>http://www.voipphreak.ca/2009/01/08/asterisk-1231-14221-and-1603-released/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 21:30:07 +0000</pubDate>
		<dc:creator>Voip Phreak</dc:creator>
				<category><![CDATA[Asterisk 1.2]]></category>
		<category><![CDATA[Asterisk 1.4]]></category>
		<category><![CDATA[Asterisk 1.6]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.voipphreak.ca/?p=982</guid>
		<description><![CDATA[The Asterisk.org development team has announced the release of Asterisk 1.2.31, 1.4.22.1, and 1.6.0.3. These releases are available for immediate download from http://downloads.digium.com/. This update for Asterisk includes a security fix for chan_iax2. Please see the associated security adivisory for more details: http://downloads.digium.com/pub/security/AST-2009-001.html This security issue affects the 1.2, 1.4, and 1.6 series of Asterisk. [...]]]></description>
			<content:encoded><![CDATA[<p>The Asterisk.org development team has announced the release of Asterisk 1.2.31, 1.4.22.1, and 1.6.0.3. These releases are available for immediate download from <a href="http://downloads.digium.com/">http://downloads.digium.com/</a>.</p>
<p>This update for Asterisk includes a security fix for chan_iax2. Please see the associated security adivisory for more details:</p>
<p><a href="http://downloads.digium.com/pub/security/AST-2009-001.html">http://downloads.digium.com/pub/security/AST-2009-001.html</a></p>
<p>This security issue affects the 1.2, 1.4, and 1.6 series of Asterisk. Asterisk releases 1.2.31, and 1.4.22.1 only contain the security fix.</p>
<p>Asterisk release 1.6.0.3 has additional changes from 1.6.0.2, including a fix to the Makefile that caused menuselect to break in certain cases.</p>
<p>Also, some issues related to memory leaks and more appropriate SIP dialog responses when receiving 4XX messages have been fixed.</p>
<p>ChangeLogs for the various releases are available at:<a href="http://downloads.digium.com/pub/asterisk/ChangeLog-1.2.31"></p>
<p>http://downloads.digium.com/pub/asterisk/ChangeLog-1.2.31</a></p>
<p><a href="http://downloads.digium.com/pub/asterisk/ChangeLog-1.4.22.1">http://downloads.digium.com/pub/asterisk/ChangeLog-1.4.22.1</a></p>
<p><a href="http://downloads.digium.com/pub/asterisk/ChangeLog-1.6.0.3">http://downloads.digium.com/pub/asterisk/ChangeLog-1.6.0.3</a></p>
<p>Thank you for your continued support of Asterisk!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voipphreak.ca/2009/01/08/asterisk-1231-14221-and-1603-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Asterisk 1.4.23-rc3 Released</title>
		<link>http://www.voipphreak.ca/2008/12/18/asterisk-1423-rc3-released/</link>
		<comments>http://www.voipphreak.ca/2008/12/18/asterisk-1423-rc3-released/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 18:17:31 +0000</pubDate>
		<dc:creator>Voip Phreak</dc:creator>
				<category><![CDATA[Asterisk 1.4]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.voipphreak.ca/?p=953</guid>
		<description><![CDATA[The Asterisk.org development team has created the third release candidate for Asterisk 1.4.23. 1.4.23-rc3 is available for immediate download from http://downloads.digium.com/. This release candidate contains multiple fixes since 1.4.23-rc2 including issues with transfers and DTMF. For a full list of the changes in this release, please see the ChangeLog: http://svn.digium.com/view/asterisk/tags/1.4.23-rc3/ChangeLog?view=markup Thank you for your continued [...]]]></description>
			<content:encoded><![CDATA[<p>The Asterisk.org development team has created the third release candidate for Asterisk 1.4.23. 1.4.23-rc3 is available for immediate download from <a href="http://downloads.digium.com/">http://downloads.digium.com/</a>.</p>
<p>This release candidate contains multiple fixes since 1.4.23-rc2 including issues with transfers and DTMF. For a full list of the changes in this release, please see the ChangeLog:</p>
<p><a href="http://svn.digium.com/view/asterisk/tags/1.4.23-rc3/ChangeLog?view=markup">http://svn.digium.com/view/asterisk/tags/1.4.23-rc3/ChangeLog?view=markup</a></p>
<p>Thank you for your continued support of Asterisk!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voipphreak.ca/2008/12/18/asterisk-1423-rc3-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Birthday Asterisk, You&#8217;re turning 9 on Friday!</title>
		<link>http://www.voipphreak.ca/2008/12/04/happy-birthday-asterisk-youre-turning-9-on-friday/</link>
		<comments>http://www.voipphreak.ca/2008/12/04/happy-birthday-asterisk-youre-turning-9-on-friday/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 19:40:00 +0000</pubDate>
		<dc:creator>Voip Phreak</dc:creator>
				<category><![CDATA[Asterisk 1.4]]></category>
		<category><![CDATA[Asterisk 1.6]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.voipphreak.ca/2008/12/04/happy-birthday-asterisk-youre-turning-9-on-friday/</guid>
		<description><![CDATA[Hi, December 5th, 1999 was the initial release of Asterisk by Mark Spencer. We'll be celebrating this by gathering as usual at 12 Noon Eastern (9AM Pacific, 10 MST, 11 Central, 5PM UK and Western EU) for the VoIP Users Conference. You can get all the dial in information at http://VoipUsersConference.org including info on a [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>December 5th, 1999 was the initial release of Asterisk by Mark Spencer. We'll be celebrating this by gathering as usual at 12 Noon Eastern (9AM Pacific, 10 MST, 11 Central, 5PM UK and Western EU) for the VoIP Users Conference.</p>
<p>You can get all the dial in information at <a href="http://VoipUsersConference.org">http://VoipUsersConference.org</a> including info on a SipAddHeader() kludge to avoid DTMF problems.</p>
<p>IRC is Freenode.net #voip-users-conference join this even if you can't call in.</p>
<p>Call via SIP: <a href="mailto:talkshoe@vuc.onsip.com">talkshoe@vuc.onsip.com</a>  (thanks to OnSip.com) Call via PSTN (724) 444-7444 DTMF 22622# 1#</p>
<p>or try this: <a href="mailto:7463#22622#1@proxy.ideasip.com">7463#22622#1@proxy.ideasip.com</a> (thanks to IdeaSIP.com)</p>
<p>or to just look up talkshoe server IP: ts.x2z.eu (thanks top me for the DNS record)</p>
<p>We start about 15 minutes to the hour with an informal chat.</p>
<p>Join us anytime, but especially, grab a virtual beer and join us Friday the 5th.</p>
<p>/r</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voipphreak.ca/2008/12/04/happy-birthday-asterisk-youre-turning-9-on-friday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asterisk 1.2.30.3, 1.4.23-rc2, 1.6.0.2, 1.6.1-beta3,	and Asterisk-Addons 1.6.0.1, 1.6.1-rc2 released</title>
		<link>http://www.voipphreak.ca/2008/12/02/asterisk-12303-1423-rc2-1602-161-beta3and-asterisk-addons-1601-161-rc2-released/</link>
		<comments>http://www.voipphreak.ca/2008/12/02/asterisk-12303-1423-rc2-1602-161-beta3and-asterisk-addons-1601-161-rc2-released/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 07:04:25 +0000</pubDate>
		<dc:creator>Voip Phreak</dc:creator>
				<category><![CDATA[Asterisk 1.4]]></category>
		<category><![CDATA[Asterisk 1.6]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.voipphreak.ca/2008/12/02/asterisk-12303-1423-rc2-1602-161-beta3and-asterisk-addons-1601-161-rc2-released/</guid>
		<description><![CDATA[The Asterisk.org development team has released Asterisk versions 1.2.30.3, 1.4.23-rc2, 1.6.0.2, 1.6.1-beta3, as well as Asterisk-Addons versions 1.6.0.1 and 1.6.1-rc2. These releases are available for immediate download from http://downloads.digium.com/. This update for Asterisk includes a fix for a regression introduced in Asterisk 1.2.30 and Asterisk 1.4.21.2 and has existed in the Asterisk 1.6 branch since [...]]]></description>
			<content:encoded><![CDATA[<p>The Asterisk.org development team has released Asterisk versions 1.2.30.3, 1.4.23-rc2, 1.6.0.2, 1.6.1-beta3, as well as Asterisk-Addons versions 1.6.0.1 and 1.6.1-rc2.  These releases are available for immediate download from <a href="http://downloads.digium.com/">http://downloads.digium.com/</a>.</p>
<p>This update for Asterisk includes a fix for a regression introduced in Asterisk 1.2.30 and Asterisk 1.4.21.2 and has existed in the Asterisk 1.6 branch since release.  All releases with the exception of Asterisk 1.2.30.3 also contain a vast assortment of bugfixes in these releases.  For a full list of changes, see the ChangeLogs:</p>
<p><a href="http://svn.digium.com/view/asterisk/tags/1.2.30.3/ChangeLog?view=markup">http://svn.digium.com/view/asterisk/tags/1.2.30.3/ChangeLog?view=markup</a><br />
<a href="http://svn.digium.com/view/asterisk/tags/1.4.23-rc2/ChangeLog?view=markup">http://svn.digium.com/view/asterisk/tags/1.4.23-rc2/ChangeLog?view=markup</a><br />
<a href="http://svn.digium.com/view/asterisk/tags/1.6.0.2/ChangeLog?view=markup">http://svn.digium.com/view/asterisk/tags/1.6.0.2/ChangeLog?view=markup</a><br />
<a href="http://svn.digium.com/view/asterisk/tags/1.6.1-beta3/ChangeLog?view=markup">http://svn.digium.com/view/asterisk/tags/1.6.1-beta3/ChangeLog?view=markup</a><br />
<a href="http://svn.digium.com/view/asterisk-addons/tags/1.6.0.1/ChangeLog?view=markup">http://svn.digium.com/view/asterisk-addons/tags/1.6.0.1/ChangeLog?view=markup</a><br />
<a href="http://svn.digium.com/view/asterisk-addons/tags/1.6.1-rc2/ChangeLog?view=markup">http://svn.digium.com/view/asterisk-addons/tags/1.6.1-rc2/ChangeLog?view=markup</a></p>
<p>Thank you for your continued support of Asterisk!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.voipphreak.ca/2008/12/02/asterisk-12303-1423-rc2-1602-161-beta3and-asterisk-addons-1601-161-rc2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)

Served from: www.voipphreak.ca @ 2010-09-08 04:42:59 -->