<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>
	Comments on: It&#8217;s TeleYapper 5.0: The Ultimate RoboDialer for Asterisk	</title>
	<atom:link href="https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/feed/" rel="self" type="application/rss+xml" />
	<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/</link>
	<description>Ward Mundy&#039;s Technobabblelog</description>
	<lastBuildDate>Tue, 08 Dec 2015 15:46:23 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Graham Wright		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-96355</link>

		<dc:creator><![CDATA[Graham Wright]]></dc:creator>
		<pubDate>Mon, 13 Jan 2014 17:40:10 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-96355</guid>

					<description><![CDATA[Ward, what are the plans (if any) to replace Cepstral with GoogleTTS?

&lt;i&gt;[WM: No time at the moment.]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>Ward, what are the plans (if any) to replace Cepstral with GoogleTTS?</p>
<p><i>[WM: No time at the moment.]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alfred Harding		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-92103</link>

		<dc:creator><![CDATA[Alfred Harding]]></dc:creator>
		<pubDate>Sun, 23 Jun 2013 13:54:18 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-92103</guid>

					<description><![CDATA[Does this work with Incredible PBX 11?]]></description>
			<content:encoded><![CDATA[<p>Does this work with Incredible PBX 11?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Michael Babcock		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-90954</link>

		<dc:creator><![CDATA[Michael Babcock]]></dc:creator>
		<pubDate>Sat, 30 Mar 2013 01:52:07 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-90954</guid>

					<description><![CDATA[ward, what&#039;s the status on this project? Has any changes, for exampe the ability to record a message to be sent to the list been added yet? #pbxinaflash11 and #incrediblepbx11 on my end...

&lt;i&gt;[WM: No plans for an upgrade at this juncture.]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>ward, what&#8217;s the status on this project? Has any changes, for exampe the ability to record a message to be sent to the list been added yet? #pbxinaflash11 and #incrediblepbx11 on my end&#8230;</p>
<p><i>[WM: No plans for an upgrade at this juncture.]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ramzi		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-90559</link>

		<dc:creator><![CDATA[Ramzi]]></dc:creator>
		<pubDate>Mon, 18 Mar 2013 21:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-90559</guid>

					<description><![CDATA[Hi ward fantastic work 
so i have an ubuntu system with asterix 1.8 and freepbx-2.9.0 
plz advise if i can install it on my system 
thanks]]></description>
			<content:encoded><![CDATA[<p>Hi ward fantastic work<br />
so i have an ubuntu system with asterix 1.8 and freepbx-2.9.0<br />
plz advise if i can install it on my system<br />
thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brent Kennedy		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-86687</link>

		<dc:creator><![CDATA[Brent Kennedy]]></dc:creator>
		<pubDate>Wed, 17 Oct 2012 17:28:47 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-86687</guid>

					<description><![CDATA[We recently added a SIP trunk to our setup and removed the old T1 to  SIP device.  This fixed any limit we had previously( as i mentioned last year above ).  Must of been the device.  Our reports are not kicking off, so we created a script that runs via crontab every 10 minutes to detect if calls were recently run:  

#start
#Detect if any calls are running and create file called active
detect=`find /var/www/html/appt-reminders/calls/ -maxdepth 1 -type f -print&#124; wc -l`
if [ $detect != 1 ]
then
touch /var/www/html/appt-reminders/active
fi
#Make sure no calls are running and verify active file exists
#submit call report generation request and delete active file
if [ $detect = 1 -a -f /var/www/html/appt-reminders/active ]
then
sleep 300
/var/www/html/appt-reminders/report.php
rm /var/www/html/appt-reminders/active
fi
#end

Name it with a .sh extension and set it so its executable, then add a cronjob to kick it off.  No more manual report running.]]></description>
			<content:encoded><![CDATA[<p>We recently added a SIP trunk to our setup and removed the old T1 to  SIP device.  This fixed any limit we had previously( as i mentioned last year above ).  Must of been the device.  Our reports are not kicking off, so we created a script that runs via crontab every 10 minutes to detect if calls were recently run:  </p>
<p>#start<br />
#Detect if any calls are running and create file called active<br />
detect=`find /var/www/html/appt-reminders/calls/ -maxdepth 1 -type f -print| wc -l`<br />
if [ $detect != 1 ]<br />
then<br />
touch /var/www/html/appt-reminders/active<br />
fi<br />
#Make sure no calls are running and verify active file exists<br />
#submit call report generation request and delete active file<br />
if [ $detect = 1 -a -f /var/www/html/appt-reminders/active ]<br />
then<br />
sleep 300<br />
/var/www/html/appt-reminders/report.php<br />
rm /var/www/html/appt-reminders/active<br />
fi<br />
#end</p>
<p>Name it with a .sh extension and set it so its executable, then add a cronjob to kick it off.  No more manual report running.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: albanyeye		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-68506</link>

		<dc:creator><![CDATA[albanyeye]]></dc:creator>
		<pubDate>Tue, 17 Jul 2012 15:00:20 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-68506</guid>

					<description><![CDATA[We been using this for reminder for about a week.  The Cepstral voice is not that great.  Is there a way to append the appointment file to a pre-existing WAV file that can be played back. ?
Similar to what Jeff is asking I guess.]]></description>
			<content:encoded><![CDATA[<p>We been using this for reminder for about a week.  The Cepstral voice is not that great.  Is there a way to append the appointment file to a pre-existing WAV file that can be played back. ?<br />
Similar to what Jeff is asking I guess.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jeff Phillips		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-68155</link>

		<dc:creator><![CDATA[Jeff Phillips]]></dc:creator>
		<pubDate>Tue, 03 Jul 2012 18:24:08 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-68155</guid>

					<description><![CDATA[This is too complicated. Why don&#039;t you have a simple step-by-step how-to guide for people who don&#039;t want any text to speech, don&#039;t need to generate a separate sound file for every call, and just want to play the exact same pre-recorded message to everyone on their list?

&lt;i&gt;WM: That&#039;s the beauty of open source code. You can modify it to meet your own requirements. :wink: &lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>This is too complicated. Why don&#8217;t you have a simple step-by-step how-to guide for people who don&#8217;t want any text to speech, don&#8217;t need to generate a separate sound file for every call, and just want to play the exact same pre-recorded message to everyone on their list?</p>
<p><i>WM: That&#8217;s the beauty of open source code. You can modify it to meet your own requirements. 😉 </i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brent Kennedy		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-45295</link>

		<dc:creator><![CDATA[Brent Kennedy]]></dc:creator>
		<pubDate>Wed, 14 Sep 2011 19:35:19 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-45295</guid>

					<description><![CDATA[For those of you with an 127 limit issue, change the ID column type to INT in the reminders table.  This will allow for more than 127 entries.

Course the next issue is figuring out how to get the process to last more than 2 hours.  I did re-read the blog post though, seems we can run the gen-call.php script to restart the held calls though.]]></description>
			<content:encoded><![CDATA[<p>For those of you with an 127 limit issue, change the ID column type to INT in the reminders table.  This will allow for more than 127 entries.</p>
<p>Course the next issue is figuring out how to get the process to last more than 2 hours.  I did re-read the blog post though, seems we can run the gen-call.php script to restart the held calls though.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Phil		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-14047</link>

		<dc:creator><![CDATA[Phil]]></dc:creator>
		<pubDate>Tue, 19 Apr 2011 18:25:42 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-14047</guid>

					<description><![CDATA[Inspired by all the TeleYapper excellence, I wrote a few &lt;a href=&quot;http://blog.rosenberg-watt.com:8019/2011/04/12/phoneblast-for-asterisk-because-sharing-is-caring/&quot; rel=&quot;nofollow&quot;&gt;Perl scripts&lt;/a&gt; to do something similar, yet with a focus on self-managing lists through a double opt-in method. Just thought I&#039;d share.]]></description>
			<content:encoded><![CDATA[<p>Inspired by all the TeleYapper excellence, I wrote a few <a href="http://blog.rosenberg-watt.com:8019/2011/04/12/phoneblast-for-asterisk-because-sharing-is-caring/" rel="nofollow">Perl scripts</a> to do something similar, yet with a focus on self-managing lists through a double opt-in method. Just thought I&#8217;d share.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Steve		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-13840</link>

		<dc:creator><![CDATA[Steve]]></dc:creator>
		<pubDate>Fri, 18 Mar 2011 18:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-13840</guid>

					<description><![CDATA[Can you use a recording .WAV file instead of text to speech on the $msg variable?

&lt;i&gt;[WM: Not at this time. Sorry. But it&#039;s on the Wish List. :-) ]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>Can you use a recording .WAV file instead of text to speech on the $msg variable?</p>
<p><i>[WM: Not at this time. Sorry. But it&#8217;s on the Wish List. 🙂 ]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Scott		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-13745</link>

		<dc:creator><![CDATA[Scott]]></dc:creator>
		<pubDate>Fri, 04 Mar 2011 22:17:14 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-13745</guid>

					<description><![CDATA[Is there a limit of 127 records for a .csv file?  I&#039;ve tried twice to upload a csv file with more then 127 records and it fails.]]></description>
			<content:encoded><![CDATA[<p>Is there a limit of 127 records for a .csv file?  I&#8217;ve tried twice to upload a csv file with more then 127 records and it fails.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gary Flores		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-13664</link>

		<dc:creator><![CDATA[Gary Flores]]></dc:creator>
		<pubDate>Mon, 21 Feb 2011 18:31:37 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-13664</guid>

					<description><![CDATA[Quick question here: Is there a way to make the recording a mix of a previously recorded script with some swift/cepstral generated fields?
This way we can have a better quality recording with only the dynamic data being generated by the TTS engines.]]></description>
			<content:encoded><![CDATA[<p>Quick question here: Is there a way to make the recording a mix of a previously recorded script with some swift/cepstral generated fields?<br />
This way we can have a better quality recording with only the dynamic data being generated by the TTS engines.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ward		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-13520</link>

		<dc:creator><![CDATA[ward]]></dc:creator>
		<pubDate>Fri, 28 Jan 2011 12:14:59 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-13520</guid>

					<description><![CDATA[The Deacon&#039;s terrific &lt;a href=&quot;http://nerd.bz/fCv9Cp&quot; rel=&quot;nofollow&quot;&gt;TeleYapper Phonebook add-on&lt;/a&gt; is now available for TeleYapper 5.0.]]></description>
			<content:encoded><![CDATA[<p>The Deacon&#8217;s terrific <a href="http://nerd.bz/fCv9Cp" rel="nofollow">TeleYapper Phonebook add-on</a> is now available for TeleYapper 5.0.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: mits		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-13305</link>

		<dc:creator><![CDATA[mits]]></dc:creator>
		<pubDate>Thu, 16 Dec 2010 14:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-13305</guid>

					<description><![CDATA[hello
i want to install teleyapper 5 at elastix 2, is this posible?

thanks
mits]]></description>
			<content:encoded><![CDATA[<p>hello<br />
i want to install teleyapper 5 at elastix 2, is this posible?</p>
<p>thanks<br />
mits</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Joe		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-13069</link>

		<dc:creator><![CDATA[Joe]]></dc:creator>
		<pubDate>Mon, 29 Nov 2010 14:40:41 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-13069</guid>

					<description><![CDATA[Hi Ward, Great application!

For all those who are wondering whether TY 5.0 will work with Asterisk 1.8 the answer is yes! Or at least all seems to be working.....no problems yet! As long as you use the beta version of app_swift for Asterisk 1.8 (app_swift-2.0.1-ast1.8) which can be found here http://forge.asterisk.org/gf/project/app_swift/frs/ all should be fine.

A small question. I&#039;ve been playing around trying to see if I can create reminders directly through the mysql database using the appropriate sql command.....with no joy. I guess this is because this is created along with the .call file and *.wav file associated with the reminder. Is there anyway you can suggest going about this without using the uploadcsv/uploadxml routine?

Many Thanks!]]></description>
			<content:encoded><![CDATA[<p>Hi Ward, Great application!</p>
<p>For all those who are wondering whether TY 5.0 will work with Asterisk 1.8 the answer is yes! Or at least all seems to be working&#8230;..no problems yet! As long as you use the beta version of app_swift for Asterisk 1.8 (app_swift-2.0.1-ast1.8) which can be found here <a href="http://forge.asterisk.org/gf/project/app_swift/frs/" rel="nofollow ugc">http://forge.asterisk.org/gf/project/app_swift/frs/</a> all should be fine.</p>
<p>A small question. I&#8217;ve been playing around trying to see if I can create reminders directly through the mysql database using the appropriate sql command&#8230;..with no joy. I guess this is because this is created along with the .call file and *.wav file associated with the reminder. Is there anyway you can suggest going about this without using the uploadcsv/uploadxml routine?</p>
<p>Many Thanks!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ron		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-12601</link>

		<dc:creator><![CDATA[Ron]]></dc:creator>
		<pubDate>Fri, 29 Oct 2010 04:25:49 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-12601</guid>

					<description><![CDATA[Hello Ward,
Great job here... I installed and it works fine as described.
But I have another question that may not be related to this solution.
I have been using the Incredible Pbx now for a month and it works great. The problem is that I can&#039;t have a IAX extension registered with the Incredible Pbx.
I have looked over past articles and forums on how to solve the issue but nothing.
Can you pleas help me ?

&lt;i&gt;[WM: You&#039;ll need to add a line in the firewall with the IP address of the extension. See iptables in /etc/sysconfig and example below. Then restart firewall: service iptables restart.]&lt;/i&gt;

-A INPUT -p udp -m udp -s 66.54.140.47 --dport 4569 -j ACCEPT]]></description>
			<content:encoded><![CDATA[<p>Hello Ward,<br />
Great job here&#8230; I installed and it works fine as described.<br />
But I have another question that may not be related to this solution.<br />
I have been using the Incredible Pbx now for a month and it works great. The problem is that I can&#8217;t have a IAX extension registered with the Incredible Pbx.<br />
I have looked over past articles and forums on how to solve the issue but nothing.<br />
Can you pleas help me ?</p>
<p><i>[WM: You&#8217;ll need to add a line in the firewall with the IP address of the extension. See iptables in /etc/sysconfig and example below. Then restart firewall: service iptables restart.]</i></p>
<p>-A INPUT -p udp -m udp -s 66.54.140.47 &#8211;dport 4569 -j ACCEPT</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ward		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-12407</link>

		<dc:creator><![CDATA[ward]]></dc:creator>
		<pubDate>Tue, 12 Oct 2010 19:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-12407</guid>

					<description><![CDATA[There have been a few reported problems by users accessing TeleYapper 5.0 from Windows-based systems. Here&#039;s the fix for those that downloaded TeleYapper 5.0 before now. Log into your server as root and issue the following commands:

cd /tmp
mkdir teleyapper50
cd teleyapper50
wget http://bestof.nerdvittles.com/applications/teleyapper5/teleyapper50.tgz
tar zxvf teleyapper50.tgz
cd var/www/html/appt-reminders
cp config.* /var/www/html/appt-reminders/.
cp reminders.csv /var/www/html/appt-reminders/.
cp reminders.xml /var/www/html/appt-reminders/.
cp upload_* /var/www/html/appt-reminders/.]]></description>
			<content:encoded><![CDATA[<p>There have been a few reported problems by users accessing TeleYapper 5.0 from Windows-based systems. Here&#8217;s the fix for those that downloaded TeleYapper 5.0 before now. Log into your server as root and issue the following commands:</p>
<p>cd /tmp<br />
mkdir teleyapper50<br />
cd teleyapper50<br />
wget <a href="http://bestof.nerdvittles.com/applications/teleyapper5/teleyapper50.tgz" rel="nofollow ugc">http://bestof.nerdvittles.com/applications/teleyapper5/teleyapper50.tgz</a><br />
tar zxvf teleyapper50.tgz<br />
cd var/www/html/appt-reminders<br />
cp config.* /var/www/html/appt-reminders/.<br />
cp reminders.csv /var/www/html/appt-reminders/.<br />
cp reminders.xml /var/www/html/appt-reminders/.<br />
cp upload_* /var/www/html/appt-reminders/.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Joshua Welch		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-12404</link>

		<dc:creator><![CDATA[Joshua Welch]]></dc:creator>
		<pubDate>Tue, 12 Oct 2010 15:28:41 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-12404</guid>

					<description><![CDATA[Run ./gen-mysql.php to kick off TeleYapper 5.0

That file is not present on mine, is that correct for everyone, or is it just me?

&lt;i&gt;[WM: Some of the early pioneers may not have it. Follow the instructions in my comment below to extract and grab the file. Then copy it into /var/www/html/appt-reminders folder.]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>Run ./gen-mysql.php to kick off TeleYapper 5.0</p>
<p>That file is not present on mine, is that correct for everyone, or is it just me?</p>
<p><i>[WM: Some of the early pioneers may not have it. Follow the instructions in my comment below to extract and grab the file. Then copy it into /var/www/html/appt-reminders folder.]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Henry		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-12395</link>

		<dc:creator><![CDATA[Henry]]></dc:creator>
		<pubDate>Mon, 11 Oct 2010 14:56:31 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-12395</guid>

					<description><![CDATA[Thanks for the fast response!  How seedy would we have to get? :) Cost is always an issue in a .edu.

&lt;i&gt;[WM: Just see what the boss will approve. We have a soft spot for edu&#039;s. :wink: ]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>Thanks for the fast response!  How seedy would we have to get? 🙂 Cost is always an issue in a .edu.</p>
<p><i>[WM: Just see what the boss will approve. We have a soft spot for edu&#8217;s. 😉 ]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Henry		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-12394</link>

		<dc:creator><![CDATA[Henry]]></dc:creator>
		<pubDate>Mon, 11 Oct 2010 14:32:39 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-12394</guid>

					<description><![CDATA[Thanks for maintaining and sharing this app.  A quick (and no doubt stupid) question: Is it possible to use this to make connections to a conference bridge?  Ideally, we&#039;d have a scheduled event that would call all of our opt-in participants and automatically join them to the conference in progress - they wouldn&#039;t just get a reminder and have to call back in with a PIN.

Thanks again!

&lt;i&gt;[WM: Great suggestion. No reason it couldn&#039;t be integrated into the new platform. All it takes is a little seed money or some independent development at your institution. :-) ]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>Thanks for maintaining and sharing this app.  A quick (and no doubt stupid) question: Is it possible to use this to make connections to a conference bridge?  Ideally, we&#8217;d have a scheduled event that would call all of our opt-in participants and automatically join them to the conference in progress &#8211; they wouldn&#8217;t just get a reminder and have to call back in with a PIN.</p>
<p>Thanks again!</p>
<p><i>[WM: Great suggestion. No reason it couldn&#8217;t be integrated into the new platform. All it takes is a little seed money or some independent development at your institution. 🙂 ]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: James		</title>
		<link>https://nerdvittles.com/its-teleyapper-50-the-ultimate-robodialer-for-asterisk/comment-page-1/#comment-12386</link>

		<dc:creator><![CDATA[James]]></dc:creator>
		<pubDate>Sun, 10 Oct 2010 16:54:35 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=701#comment-12386</guid>

					<description><![CDATA[Ward - another great article.  In addition to the legal issues you highlighted, people need to be aware of the &lt;a href=&quot;http://en.wikipedia.org/wiki/Telephone_Consumer_Protection_Act_of_1991&quot; rel=&quot;nofollow&quot;&gt;Telephone Consumer Protection Act&lt;/a&gt; which has fairly severe per call penalties.]]></description>
			<content:encoded><![CDATA[<p>Ward &#8211; another great article.  In addition to the legal issues you highlighted, people need to be aware of the <a href="http://en.wikipedia.org/wiki/Telephone_Consumer_Protection_Act_of_1991" rel="nofollow">Telephone Consumer Protection Act</a> which has fairly severe per call penalties.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
