<?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/"
	>

<channel>
	<title>Team Forrest</title>
	<atom:link href="http://www.teamforrest.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.teamforrest.com</link>
	<description>Asterisk, VoIP, Content, and Internet Consulting</description>
	<pubDate>Tue, 06 Jan 2009 16:55:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Weather on your Polycom</title>
		<link>http://www.teamforrest.com/voip/96/weather-on-your-polycom/</link>
		<comments>http://www.teamforrest.com/voip/96/weather-on-your-polycom/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 16:55:52 +0000</pubDate>
		<dc:creator>Team Forrest</dc:creator>
		
		<category><![CDATA[VoIP]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Perl]]></category>

		<category><![CDATA[polycom]]></category>

		<guid isPermaLink="false">http://www.teamforrest.com/?p=96</guid>
		<description><![CDATA[VoIP Tech Chat posted a nice little script for putting a quick, no frills weather report directly onto your Polycom Microbrowser.
To view the code, download the files, or just see the script, go to VoIP Tech Chat (dot com).
]]></description>
			<content:encoded><![CDATA[<p>VoIP Tech Chat <strong><a href="http://www.voiptechchat.com/voip/208/perl-script-to-put-weather-on-your-polycom-microbrowser/">posted a nice little script</a> </strong>for putting a quick, no frills weather report directly onto your Polycom Microbrowser.</p>
<p>To view the code, download the files, or just see the script, go to <a href="http://www.voiptechchat.com/">VoIP Tech Chat</a> (dot com).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teamforrest.com/voip/96/weather-on-your-polycom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using AGI to get Caller ID Name CNAM</title>
		<link>http://www.teamforrest.com/voip/89/using-agi-to-get-caller-id-name-cnam/</link>
		<comments>http://www.teamforrest.com/voip/89/using-agi-to-get-caller-id-name-cnam/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 19:13:53 +0000</pubDate>
		<dc:creator>Team Forrest</dc:creator>
		
		<category><![CDATA[VoIP]]></category>

		<category><![CDATA[AGI]]></category>

		<category><![CDATA[asterisk]]></category>

		<category><![CDATA[CNAM]]></category>

		<category><![CDATA[communication]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Perl]]></category>

		<category><![CDATA[SIP]]></category>

		<guid isPermaLink="false">http://www.teamforrest.com/?p=89</guid>
		<description><![CDATA[Everyone has them — and here&#8217;s Team Forrest&#8217;s version of a Caller ID to Name (CNAM, CIDNAME, etc.) lookup using AnyWho, Google, and 411.com. The first file is the calleridname.pl: 
#!/usr/bin/perl -w
use strict;
use LWP::UserAgent;
$&#124;=1;
sub trim($);

my %AGI; my $tests = 0; my $fail = 0; my $pass = 0; my $result = ""; my $cidnum = [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone has them — and here&#8217;s Team Forrest&#8217;s version of a Caller ID to Name (CNAM, CIDNAME, etc.) lookup using AnyWho, Google, and 411.com. The first file is the <a title="Download CallerIDName.zip" href="http://www.teamforrest.com/tf-downloads/calleridname.zip">calleridname.pl</a>: <span id="more-89"></span></p>
<pre>#!/usr/bin/perl -w
use strict;
use LWP::UserAgent;
$|=1;
sub trim($);

my %AGI; my $tests = 0; my $fail = 0; my $pass = 0; my $result = ""; my $cidnum = ""; my $cidname = "";
my $npa = ""; my $nxx = ""; my $station = ""; my $name = "";

$cidnum = $ARGV[0];

while(&lt;STDIN&gt;) {
	chomp;
	last unless length($_);
	if (/^agi_(\w+)\:\s+(.*)$/) {
		$AGI{$1} = $2;
	}
}

my $AnyWho = '1' ;
my $Google = '1' ;
my $www411 = '1' ;

if(substr($cidnum,0,1) eq '1'){
$cidnum=substr($cidnum,1);
}

if(substr($cidnum,0,2) eq '+1'){
$cidnum=substr($cidnum,2);
}

if ($cidnum =~ /^(\d{3})(\d{3})(\d{4})$/) {
	$npa = $1;
	$nxx = $2;
	$station = $3;
	}
elsif($cidnum =~/\&lt;(\d{3})(\d{3})(\d{4})\&gt;/){
	$npa = $1;
	$nxx = $2;
	$station = $3;
	}
else {
	print qq(VERBOSE "ERROR: unable to parse caller id" 2\n);
	exit(0);
} 

if ($AnyWho &gt; '0') {
	print qq(VERBOSE "STATUS: checking AnyWho for name lookup" 2\n);
	if ($name = &amp;anywho_lookup ($npa, $nxx, $station)) {
		$cidname = $name;
		print qq(SET VARIABLE CALLERID\(name\) "$cidname"\n);
		print qq(VERBOSE "STATUS: AnyWho said name was $cidname " 2\n);
		exit(0);
		}
	else {
		print qq(VERBOSE "STATUS: unable to find name with AnyWho" 2\n);
		}
	}
else {
	print qq(VERBOSE "STATUS: AnyWho lookup disabled" 2\n);
}

if ($Google &gt; '0') {
	print qq(VERBOSE "STATUS: checking Google for name lookup" 2\n);
	if ($name = &amp;google_lookup ($npa, $nxx, $station)) {
		$cidname = $name;
		print qq(SET VARIABLE CALLERID\(name\) "$cidname"\n);
		print qq(VERBOSE "STATUS: Google said name was $cidname " 2\n);
		exit(0);
		}
	else {
		print qq(VERBOSE "STATUS: unable to find name with Google" 2\n);
		}
	}
else {
	print qq(VERBOSE "STATUS: Google lookup disabled" 2\n);
}

if ($www411 &gt; '0') {
	print qq(VERBOSE "STATUS: checking www411 for name lookup" 2\n);
	if ($name = &amp;www411_lookup ($npa, $nxx, $station)) {
		$cidname = $name;
		print qq(SET VARIABLE CALLERID\(name\) "$cidname"\n);
		print qq(VERBOSE "STATUS: www411 said name was $cidname " 2\n);
		exit(0);
		}
	else {
		print qq(VERBOSE "STATUS: unable to find name with www411" 2\n);
		}
	}
else {
	print qq(VERBOSE "STATUS: www411 lookup disabled" 2\n);
}

print qq(SET VARIABLE CALLERID\(name\) "$cidnum"\n);
print qq(VERBOSE "STATUS: Unknown name for $cidnum " 2\n);
exit(0); 

sub anywho_lookup {
	my ($npa, $nxx, $station) = @_;
	my $ua = LWP::UserAgent-&gt;new( timeout =&gt; 45);
	my $URL = 'http://www.anywho.com/qry/wp_rl';
	$URL .= '?npa=' . $npa . '&amp;telephone=' . $nxx . $station;
	$ua-&gt;agent('AsteriskAGIQuery/1');
	my $req = new HTTP::Request GET =&gt; $URL;
	my $res = $ua-&gt;request($req);
	if ($res-&gt;is_success()) {
		if ($res-&gt;content =~ /&lt;!-- listing --&gt;(.*)&lt;!-- \/listing --&gt;/s) {
			my $listing = $1;
			if ($listing =~ /&lt;B&gt;(.*)&lt;\/B&gt;/) {
				my $clidname = $1;
				return $clidname;
			}
		}
	}
	return "";
}

sub google_lookup {
  my ($npa, $nxx, $station) = @_;
  my $ua = LWP::UserAgent-&gt;new( timeout =&gt; 45);
  my $URL = 'http://www.google.com/search?rls=en&amp;q=phonebook:' .  $npa . $nxx . $station . '&amp;ie=UTF-8&amp;oe=UTF-8';
  $ua-&gt;agent('AsteriskAGIQuery/1');
  my $req = new HTTP::Request GET =&gt; $URL;
  my $res = $ua-&gt;request($req);
  if ($res-&gt;is_success()) {
    if ($res-&gt;content =~ /&lt;font size=-2&gt;&lt;br&gt;&lt;\/font&gt;&lt;font size=-1&gt;(.+)&lt;font color=green&gt;/) {
      my $temp = $1;
      my $clidname = "";
      if ( $temp =~ /(.+)&lt;font color=green&gt;/o ) {
        $clidname = substr($1, 0, -3);
      } else {
        $clidname = substr($temp, 0, -3);
      }
      if ($clidname =~ /&lt;a href(.+)\//) {
        $clidname = $1 ;
        if ($clidname =~ /&gt;(.+)&lt;/) {
          $clidname = $1 ;
        }
      }
      return $clidname;
    }
  }
  return "";
} 

sub www411_lookup {
  my ($npa, $nxx, $station) = @_;
  my $ua = LWP::UserAgent-&gt;new( timeout =&gt; 45);
  my $URL = 'http://www.411.com/search/Reverse_Phone?phone=' .  $npa . $nxx . $station;
  $ua-&gt;agent('AsteriskAGIQuery/1');
  my $req = new HTTP::Request GET =&gt; $URL;
  my $res = $ua-&gt;request($req);
  if ($res-&gt;is_success()) {
    if ($res-&gt;content =~ /Location: &lt;strong&gt;(.*)&lt;\/strong&gt;/s) {
      my $temp = $1;
      my $clidname = "";
      $temp =~ s/&amp;amp\;/&amp;/g;
      $temp =~ s/%20/ /g;
      $clidname = $temp;
      return $clidname;
     }
  }
  return "";
}</pre>
<p>This perl script will work well as an AGI script — checking AnyWho, Google, and then 411 for a caller&#8217;s name or location. If all else fails, the callerid name is set as the callerid number.</p>
<p>The perl script was designed to only use the Internet with minimal installation; so it will work without a database, Perl Asterisk module, or locally hosted NPA / NXX (phone number to region) file.</p>
<p>Team Forrest recommends using a subroutine context to get the callerid when needed; calling the script with either a <strong>GoSub</strong> or <strong>GosubIf</strong> command, such as:</p>
<pre>exten =&gt; s,n,Gosub(cidname-lookup,s,1)
exten =&gt; s,n,dial(${PHONE},30,t)
...

...
[cidname-lookup]
exten =&gt; s,1,NoOp(looking up callerid name)
exten =&gt; s,n,GotoIf($["foo${CALLERID(NAME)}" = "foo" ]?getname)
exten =&gt; s,n,GotoIf($["${CALLERID(NAME)}" = "${CALLERID(NUM)}" ]?getname)
exten =&gt; s,n,NoOp(caller id name exists as ${CALLERID(NAME)})
exten =&gt; s,n,Return
exten =&gt; s,n(getname),AGI(calleridname.pl,${CALLERID(NUM)})
exten =&gt; s,n,NoOp(Caller ID Name is now ${CALLERID(NAME)})
exten =&gt; s,n,Return</pre>
<p>Enjoy the file (<a title="Download the script" href="http://www.teamforrest.com/tf-downloads/calleridname.zip">download here</a>) and remember, Team Forrest is here to assist you will all of your Asterisk, VoIP, or technical needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teamforrest.com/voip/89/using-agi-to-get-caller-id-name-cnam/feed/</wfw:commentRss>
		</item>
		<item>
		<title>VoIP Tech Chat discusses Level 3 Outage</title>
		<link>http://www.teamforrest.com/voip/85/voip-tech-chat-discusses-level-3-outage/</link>
		<comments>http://www.teamforrest.com/voip/85/voip-tech-chat-discusses-level-3-outage/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 19:22:01 +0000</pubDate>
		<dc:creator>Team Forrest</dc:creator>
		
		<category><![CDATA[VoIP]]></category>

		<category><![CDATA[communication]]></category>

		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.teamforrest.com/?p=85</guid>
		<description><![CDATA[On Sunday December 29th, 2008, Level 3 (one of the nation&#8217;s largest Internet backbone providers) suffered a slight disruption — causing issues to sites such as Amazon, ESPN, and CNN.
VoIP Tech Chat posted an opinion piece regarding Level 3&#8217;s handling of the outage. And, as with most opinion pieces from VoIP Tech Chat, we like [...]]]></description>
			<content:encoded><![CDATA[<p>On Sunday December 29th, 2008, <a href="http://www.level3.com">Level 3</a> (one of the nation&#8217;s largest Internet backbone providers) suffered a slight disruption — causing issues to sites such as Amazon, ESPN, and CNN.</p>
<p><a href="http://www.voiptechchat.com">VoIP Tech Chat</a> posted an opinion piece regarding Level 3&#8217;s handling of the outage. And, as with most opinion pieces from VoIP Tech Chat, <a href="http://www.voiptechchat.com/voip/189/level3-outage-leaves-room-for-speculation/">we like to pass it on</a>.</p>
<p>Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teamforrest.com/voip/85/voip-tech-chat-discusses-level-3-outage/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Are you following us on Twitter?</title>
		<link>http://www.teamforrest.com/voip/59/are-you-following-us-on-twitter/</link>
		<comments>http://www.teamforrest.com/voip/59/are-you-following-us-on-twitter/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 19:19:36 +0000</pubDate>
		<dc:creator>Team Forrest</dc:creator>
		
		<category><![CDATA[VoIP]]></category>

		<category><![CDATA[communication]]></category>

		<category><![CDATA[news]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.teamforrest.com/?p=59</guid>
		<description><![CDATA[
TEAM FORREST constantly works to provide the best service possible. And with 2009, we look forward to launching some new products, new services, as well as continuing to work with our clients to exceed expectations.
To help communicate new services to our clients, potential clients, friends, and team, we provide several methods of contact, such as:

RSS [...]]]></description>
			<content:encoded><![CDATA[<p><strong></p>
<div id="attachment_56" class="wp-caption alignright" style="width: 138px"><a href="http://twitter.com/teamforrest"><img class="size-full wp-image-56" title="twittersm" src="http://www.teamforrest.com/wp-content/uploads/2008/08/twittersm.png" alt="Follow us on Twitter" width="128" height="128" /></a><p class="wp-caption-text">Follow us on Twitter</p></div>
<p>TEAM FORREST</strong> constantly works to provide the best service possible. And with 2009, we look forward to launching some new products, new services, as well as continuing to work with our clients to exceed expectations.</p>
<p>To help communicate new services to our clients, potential clients, friends, and team, we provide several methods of contact, such as:</p>
<ul>
<li><strong><a href="http://www.teamforrest.com/feed/">RSS Feed</a></strong> for news / notices</li>
<li><strong><a href="http://twitter.com/teamforrest">Twitter</a></strong> account for updates</li>
<li>The Team Forrest <strong><a href="http://www.teamforrest.com">Website</a></strong></li>
<li>e-mail newsletters</li>
<li>not to mention&#8230; the telephone</li>
</ul>
<p>So, if you&#8217;re not on <a href="http://twitter.com/teamforrest">Twitter</a>, please consider getting an account and following us. It&#8217;s a great method to keep up to date on the latest events and happenings.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teamforrest.com/voip/59/are-you-following-us-on-twitter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Have you downloaded Asterisk? (Your competitor probably has)</title>
		<link>http://www.teamforrest.com/voip/41/have-you-downloaded-asterisk-your-competitor-probably-has/</link>
		<comments>http://www.teamforrest.com/voip/41/have-you-downloaded-asterisk-your-competitor-probably-has/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 16:36:25 +0000</pubDate>
		<dc:creator>Team Forrest</dc:creator>
		
		<category><![CDATA[VoIP]]></category>

		<category><![CDATA[asterisk]]></category>

		<category><![CDATA[home office]]></category>

		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.teamforrest.com/?p=41</guid>
		<description><![CDATA[ 
Asterisk® (a registered trademark of Digium, Inc.) simply makes sense. Take one part open source software, one part VoIP, one part PBX, and combine. What do you have? A software so popular, more than 1.5 million downloads occurred in 2008 alone.
Team Forrest can help you implement an Asterisk solution to fit your exact needs. Popular [...]]]></description>
			<content:encoded><![CDATA[<p> <br />
<div id="attachment_42" class="wp-caption alignright" style="width: 160px"><img class="size-thumbnail wp-image-42" title="asterisk-by-digium" src="http://www.teamforrest.com/wp-content/uploads/2008/12/asterisk-by-digium-150x150.gif" alt="Asterisk is a registered trademark of Digium" width="150" height="150" /><p class="wp-caption-text">Asterisk is a registered trademark of Digium</p></div></p>
<p>Asterisk® (a registered trademark of Digium, Inc.) simply makes sense. Take one part open source software, one part VoIP, one part PBX, and combine. What do you have? A software so popular, more than 1.5 million downloads occurred in 2008 alone.</p>
<p><strong>Team Forrest</strong> can help you implement an Asterisk solution to fit your exact needs. Popular implementations include:</p>
<ul>
<li>Integrating VoIP to save money on Telephone Services</li>
<li>Using Asterisk to power Call Centers (both inbound and outbound)</li>
<li>Easily integrating telecommuting / presence</li>
<li>Creating a powerful, yet affordable, business class phone system</li>
</ul>
<p>For more information on how <strong>Team Forrest</strong> can help you, <a href="http://www.teamforrest.com/contact/"><strong>contact us today</strong></a> for a <strong>free</strong> consultation.</p>
<p>Additional readings:</p>
<ul>
<li><a href="http://blog.voipsupply.com/asterisk-news/asterisk-popularity-grows">VoIP Insider — Asterisk&#8217;s Popularity Continues to Grow</a></li>
<li><a href="http://www.voiptechchat.com/voip/157/asterisk-over-15-million-served/">VoIP Tech Chat — Asterisk, Over 1.5 million served</a></li>
<li><a href="http://www.digium.com/en/mediacenter/viewpress/Digium-Announces-Sharp-Rise-in-Asterisk-Downloads-in-2008">Digium Press Release Announcing Asterisk Popularity</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.teamforrest.com/voip/41/have-you-downloaded-asterisk-your-competitor-probably-has/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FBI and Asterisk Security? Relax, Breathe, and Read</title>
		<link>http://www.teamforrest.com/voip/39/fbi-and-asterisk-security-relax-breathe-and-read/</link>
		<comments>http://www.teamforrest.com/voip/39/fbi-and-asterisk-security-relax-breathe-and-read/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 20:03:27 +0000</pubDate>
		<dc:creator>Team Forrest</dc:creator>
		
		<category><![CDATA[VoIP]]></category>

		<category><![CDATA[asterisk]]></category>

		<category><![CDATA[government]]></category>

		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.teamforrest.com/?p=39</guid>
		<description><![CDATA[Recently, the FBI issued an advisory warning users that Asterisk (the open source VoIP / PBX software) could be compromised and then used in vishing attacks. First, If you are running an old verison of Asterisk, you should upgrade to the newer one. Any Team Forrest client that is concerned should contact helpme@teamforrest.com for a [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, the FBI issued an advisory warning users that Asterisk (the open source VoIP / PBX software) could be compromised and then used in vishing attacks. First, If you are running an old verison of Asterisk, you should upgrade to the newer one. Any Team Forrest client that is concerned should contact <a href="http://www.teamforrest.com/contact/"><strong>helpme@teamforrest.com</strong></a> for a <strong>free</strong> evaluation. If you&#8217;re not a Team Forrest client, email, call, or <a href="http://www.teamforrest.com/contact/">contact</a> us to check your platform for you— <strong>free of charge</strong>.</p>
<p>Secondly, don&#8217;t worry. From what we can tell, this is an old bug fixed in March of 2008. But, as always, you should run the most recent stable version of Asterisk. Not for the FBI warning; but mostly because it resolves other issues discovered. The nature of software is to find, fix, and update. Not a big deal. Again, if you&#8217;re concerned, <a href="http://www.teamforrest.com/contact/">contact Team Forrest today</a> for a <strong>free evaluation</strong>.</p>
<p>For more info, please check out:</p>
<ul>
<li><a href="http://www.voiptechchat.com/voip/146/fbi-security-warnings-and-voip/">VoIP Tech Chat discusses the Recent FBI Warning</a></li>
<li><a href="http://blog.voipsupply.com/uncategorized/asterisk-unsafe-what-a-bunch-of-crap">Garrett Smith discusses the Recent FBI Warning</a></li>
<li><a href="http://www.mgraves.org/voip/2008/12/asterisk-implicated-in-fbi-security-warning/">Michael Graves discusses the Recent FBI Warning</a></li>
</ul>
<p><a href="http://www.asterisk.org/">Asterisk</a> (created and maintained by <a href="http://www.digium.com">Digium</a>) is free, open source software provided under the GNU General Public License (GPL). Asterisk is the most popular open source VoIP software available, with the Asterisk Community being the top influencer in VoIP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teamforrest.com/voip/39/fbi-and-asterisk-security-relax-breathe-and-read/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Univeristy of Florida Security Breach</title>
		<link>http://www.teamforrest.com/voip/35/univeristy-of-florida-security-breach/</link>
		<comments>http://www.teamforrest.com/voip/35/univeristy-of-florida-security-breach/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 16:37:57 +0000</pubDate>
		<dc:creator>Team Forrest</dc:creator>
		
		<category><![CDATA[VoIP]]></category>

		<category><![CDATA[government]]></category>

		<category><![CDATA[news]]></category>

		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.teamforrest.com/?p=35</guid>
		<description><![CDATA[A compromised University of Florida server allowed access to more than 300,000 patient records. The records contained information such as birth dates, names, addresses, and social security numbers. Not a great example for corporate America. Let&#8217;s learn from their mistake.

VoIP Tech Chat: University of Florida Fails to Protect Personal Information, Again

]]></description>
			<content:encoded><![CDATA[<p>A compromised University of Florida server allowed access to more than 300,000 patient records. The records contained information such as birth dates, names, addresses, and social security numbers. Not a great example for corporate America. Let&#8217;s learn from their mistake.</p>
<ul>
<li><a href="http://www.voiptechchat.com/tech/112/university-of-florida-fails-to-protect-personal-information-again/">VoIP Tech Chat: University of Florida Fails to Protect Personal Information, Again</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.teamforrest.com/voip/35/univeristy-of-florida-security-breach/feed/</wfw:commentRss>
		</item>
		<item>
		<title>VoIP Users Conference via SIP</title>
		<link>http://www.teamforrest.com/voip/33/voip-users-conference-via-sip/</link>
		<comments>http://www.teamforrest.com/voip/33/voip-users-conference-via-sip/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 19:29:49 +0000</pubDate>
		<dc:creator>Team Forrest</dc:creator>
		
		<category><![CDATA[VoIP]]></category>

		<category><![CDATA[asterisk]]></category>

		<category><![CDATA[SIP]]></category>

		<guid isPermaLink="false">http://www.teamforrest.com/?p=33</guid>
		<description><![CDATA[The VoIP Users Conference gathers weekly on Fridays to discuss all things VoIP. Free, and open to the public, participants can listen live or download archived recordings.
There are three main ways to access the live conference:

via SIP directly
via PSTN (see below for the number)
via the Talkshoe client

Recently, several participants experienced difficulties in connecting to the [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_69" class="wp-caption alignright" style="width: 160px"> </p>
<div style="text-align: auto;"><a href="http://www.voipusersconference.org"><img class="size-thumbnail wp-image-69" title="vuc" src="http://www.teamforrest.com/wp-content/uploads/2008/11/vuc-150x150.png" alt="VoIP Users Conference" width="150" height="150" /></a></div>
<p> </p>
<p><p class="wp-caption-text">VoIP Users Conference</p></div>
<p>The VoIP Users Conference gathers weekly on Fridays to discuss all things VoIP. Free, and open to the public, participants can listen live or download archived recordings.</p>
<p>There are three main ways to access the live conference:</p>
<ol>
<li>via SIP directly</li>
<li>via PSTN (<em><strong>see below for the number</strong></em>)</li>
<li>via the <a href="http://www.talkshoe.com/talkshoe/web/userCreate1.jsp?pushNav=1">Talkshoe</a> client</li>
</ol>
<p>Recently, several participants experienced difficulties in connecting to the conference using SIP. The issue dealt with DTMF recognition and prevented the participant from entering the conference number and pin.</p>
<p>Thanks to the power of SIP, this problem can be circumvented using a SIP Header. Adding the SIP Header of <em>Subject: &lt;passcode&gt;22622&lt;/passcode&gt;&lt;pin&gt;YOURPIN&lt;/pin&gt;</em> will bypass the DTMF needs and enter you into the conference automatically.</p>
<p>Using <a href="http://www.asterisk.org">Asterisk</a>, a SIP Header can easily be added to your dialplan. For example, if you wanted to dial *10 to reach the VoIP Users Conference, you would modify your extensions.conf to contain something like:</p>
<pre>exten =&gt; *10,1,NoOp(VoIP Users Conference Fridays at 12pm EST. Replace YOURPIN with your talkshoe pin)
exten =&gt; *10,n,SIPAddHeader(Subject: &lt;passcode&gt;22622&lt;/passcode&gt;&lt;pin&gt;YOURPIN&lt;/pin&gt;)
exten =&gt; *10,n,Dial(<strong>SIP/talkshoe@vuc.onsip.com</strong>)</pre>
<p>The VoIP Users Conference meets every Friday at 12pm Eastern Standard Time. More information can be found by following these links:</p>
<ul>
<li><a href="http://voipusersconference.org/">VoIP Users Conference</a></li>
<li><a href="http://food4wine.ning.com/">VoIP Users Conference Ning Group</a></li>
<li><a href="http://www.talkshoe.com/talkshoe/web/talkCast.jsp?masterId=22622">Talkshoe</a></li>
<li>PSTN &#8211;&gt; Dial (724) 444-7444 and enter 22622# 1#</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.teamforrest.com/voip/33/voip-users-conference-via-sip/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Residential VoIP expecting Large Growth</title>
		<link>http://www.teamforrest.com/voip/31/residential-voip-expecting-large-growth/</link>
		<comments>http://www.teamforrest.com/voip/31/residential-voip-expecting-large-growth/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 15:07:20 +0000</pubDate>
		<dc:creator>Team Forrest</dc:creator>
		
		<category><![CDATA[VoIP]]></category>

		<category><![CDATA[asterisk]]></category>

		<category><![CDATA[home office]]></category>

		<category><![CDATA[news]]></category>

		<category><![CDATA[residential]]></category>

		<guid isPermaLink="false">http://www.teamforrest.com/?p=31</guid>
		<description><![CDATA[VoIP Tech Chat posted an interesting article regarding the expected increase of VoIP in the residential market. The article discusses the switch of residential users from such providers as Verizon and at&#38;t to cable companies, VoIP providers, and cellular services.
While many Residential users may want to use a simple service such as those provided by [...]]]></description>
			<content:encoded><![CDATA[<p><strong>VoIP Tech Chat</strong> posted an <a href="http://www.voiptechchat.com/voip/93/us-voip-market-grows-like-weeds/">interesting article</a> regarding the expected increase of VoIP in the residential market. The article discusses the switch of residential users from such providers as Verizon and at&amp;t to cable companies, VoIP providers, and cellular services.</p>
<p>While many Residential users may want to use a simple service such as those provided by cable companies, we also believe some households can greatly benefit from their own networked VoIP system — such as Asterisk or Trixbox.</p>
<p>With telecomuting becoming a more accepted method of work, a local Asterisk solution can separate work calls from home, provide a powerful business presence, as well as saving money on regular household calls.</p>
<p>Plus, the use of a dedicated computer for your phone system can also provide your home with a centralized server for storage, media, and data back-up. Talk about a win / win.</p>
<p>For more information on how Team Forrest can help, please call +1 (212) 937-7844 today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teamforrest.com/voip/31/residential-voip-expecting-large-growth/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AstriCon 2008</title>
		<link>http://www.teamforrest.com/voip/29/astricon-2008/</link>
		<comments>http://www.teamforrest.com/voip/29/astricon-2008/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 01:12:07 +0000</pubDate>
		<dc:creator>Team Forrest</dc:creator>
		
		<category><![CDATA[VoIP]]></category>

		<category><![CDATA[asterisk]]></category>

		<guid isPermaLink="false">http://www.teamforrest.com/?p=29</guid>
		<description><![CDATA[AstriCon, the official conference for the Asterisk PBX system, starts Tuesday, September 23rd, 2008. Fred Posner will be attending AstriCon this year and looks forward to meeting fellow users, developers, and fans of the Asterisk software.
If you are attending AstriCon, please give Fred a call at 212-937-7844 x501.
AstriCon is sponsored by many big names in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.astricon.net">AstriCon</a>, the official conference for the Asterisk PBX system, starts Tuesday, September 23rd, 2008. Fred Posner will be attending AstriCon this year and looks forward to meeting fellow users, developers, and fans of the Asterisk software.</p>
<p>If you are attending AstriCon, please give Fred a call at 212-937-7844 x501.</p>
<p>AstriCon is sponsored by many big names in the VoIP industry, including <a href="http://www.digium.com">Digium</a> (the premier sponsor and creator of Asterisk). <a href="http://www.asterisk.org">Asterisk</a> is free, open source software provided under the GNU General Public License (GPL). Asterisk is the most popular open source VoIP software available, with the Asterisk Community being the top influencer in VoIP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teamforrest.com/voip/29/astricon-2008/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
