<?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 for The World of VoIP, Asterisk and Linux</title>
	<atom:link href="http://ilovetovoip.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://ilovetovoip.com</link>
	<description>Sharing my knowledge with those who can benefit from it</description>
	<lastBuildDate>Thu, 16 Feb 2012 11:35:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Calling Multiple Extensions and Let Them All Answer Using Standard Dialplan by emma</title>
		<link>http://ilovetovoip.com/2010/03/calling-multiple-extensions-and-let-them-all-answer/comment-page-1/#comment-1661</link>
		<dc:creator>emma</dc:creator>
		<pubDate>Thu, 16 Feb 2012 11:35:03 +0000</pubDate>
		<guid isPermaLink="false">http://ilovetovoip.com/?p=322#comment-1661</guid>
		<description>Thanks, this is what i needed, I am looking for a production solution so a lot of enhancements will be done but this gives a good starting point, primarily am trying to do a VoIP to GSM calls with multiple numbers and this is perfect. Has anyone done anything like this before?

regards</description>
		<content:encoded><![CDATA[<p>Thanks, this is what i needed, I am looking for a production solution so a lot of enhancements will be done but this gives a good starting point, primarily am trying to do a VoIP to GSM calls with multiple numbers and this is perfect. Has anyone done anything like this before?</p>
<p>regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling Multiple Extensions and Let Them All Answer Using Standard Dialplan by Zeeshan A Zakaria</title>
		<link>http://ilovetovoip.com/2010/03/calling-multiple-extensions-and-let-them-all-answer/comment-page-1/#comment-1657</link>
		<dc:creator>Zeeshan A Zakaria</dc:creator>
		<pubDate>Fri, 10 Feb 2012 15:12:29 +0000</pubDate>
		<guid isPermaLink="false">http://ilovetovoip.com/?p=322#comment-1657</guid>
		<description>Hi Emma,

Thanks for reading my blog post.

The method described in this post is very basic, not applicable for a large scale or any serious production system. I did something similar to what you are looking for using an AGI script written in PHP which called a list of dynamically added phone numbers, and as the callees picked up their phones, they were added into a conference room. That included web interface and MySQL, so it was pretty comlicated.

However using the same technique as above, what you can do is define all the numbers you want to call in variables, e.g. if you have same 3 numbers to call, do this

[callnumbers]
exten =&gt; 100,1,Set(number1=&quot;7778884457&quot;)
exten =&gt; 100,n,Set(number2=&quot;7784445544&quot;)
exten =&gt; 100,n,Set(number3=&quot;7775544887&quot;)
exten =&gt; 100,n,Set(count=1)
exten =&gt; 100,n,GotoIf($[ ${count} &lt; 4]?6:9)
exten =&gt; 100,n,System(asterisk -rx &quot;originate SIP/number${count} extension s@mycode&quot;)
exten =&gt; 100,n,Set(count=$[${count} + 1])
exten =&gt; 100,n,Goto(5)
exten =&gt; 100,n,NoOp(end of loop)

As I mentioned earlier, for dynamically entered numbers the dialplan would be much more complicated and would require AGI scripting. I don&#039;t remember where are my old scripts at this moment, and because they were specific to that client&#039;s need, so they won&#039;t work in a general scenario.</description>
		<content:encoded><![CDATA[<p>Hi Emma,</p>
<p>Thanks for reading my blog post.</p>
<p>The method described in this post is very basic, not applicable for a large scale or any serious production system. I did something similar to what you are looking for using an AGI script written in PHP which called a list of dynamically added phone numbers, and as the callees picked up their phones, they were added into a conference room. That included web interface and MySQL, so it was pretty comlicated.</p>
<p>However using the same technique as above, what you can do is define all the numbers you want to call in variables, e.g. if you have same 3 numbers to call, do this</p>
<p>[callnumbers]<br />
exten => 100,1,Set(number1=&#8221;7778884457&#8243;)<br />
exten => 100,n,Set(number2=&#8221;7784445544&#8243;)<br />
exten => 100,n,Set(number3=&#8221;7775544887&#8243;)<br />
exten => 100,n,Set(count=1)<br />
exten => 100,n,GotoIf($[ ${count} < 4]?6:9)<br />
exten => 100,n,System(asterisk -rx &#8220;originate SIP/number${count} extension s@mycode&#8221;)<br />
exten => 100,n,Set(count=$[${count} + 1])<br />
exten => 100,n,Goto(5)<br />
exten => 100,n,NoOp(end of loop)</p>
<p>As I mentioned earlier, for dynamically entered numbers the dialplan would be much more complicated and would require AGI scripting. I don&#8217;t remember where are my old scripts at this moment, and because they were specific to that client&#8217;s need, so they won&#8217;t work in a general scenario.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling Multiple Extensions and Let Them All Answer Using Standard Dialplan by emma</title>
		<link>http://ilovetovoip.com/2010/03/calling-multiple-extensions-and-let-them-all-answer/comment-page-1/#comment-1656</link>
		<dc:creator>emma</dc:creator>
		<pubDate>Fri, 10 Feb 2012 11:56:35 +0000</pubDate>
		<guid isPermaLink="false">http://ilovetovoip.com/?p=322#comment-1656</guid>
		<description>hello Will
Did you get this working, i have also been trying to achieve the same but using multiple numbers i.e. dial multiple numbers at the same time and whoever answers is added to a conference automatically. Do you have a sample of the configs?

regards</description>
		<content:encoded><![CDATA[<p>hello Will<br />
Did you get this working, i have also been trying to achieve the same but using multiple numbers i.e. dial multiple numbers at the same time and whoever answers is added to a conference automatically. Do you have a sample of the configs?</p>
<p>regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with AEL by Zeeshan A Zakaria</title>
		<link>http://ilovetovoip.com/2010/08/getting-started-with-ael/comment-page-1/#comment-1633</link>
		<dc:creator>Zeeshan A Zakaria</dc:creator>
		<pubDate>Mon, 30 Jan 2012 17:59:44 +0000</pubDate>
		<guid isPermaLink="false">http://ilovetovoip.com/?p=632#comment-1633</guid>
		<description>You are welcome Rajeev.

Unfortunately there is no detailed documentation on AEL. The only one page into to AEL on voip-info is all where I learnt it from, and later gained experience by practice. Actually its not that hard. All I can suggest is start writing small dialplans and soon you&#039;ll be good at it. If you have an existing dialplan, start converting it into AEL. All you have to do is delete extensions.conf and Asterisk will automatically look for extensions.ael (unless your version of Asterisk requires some other configuration, I never moved beyond Asterisk 1.4).</description>
		<content:encoded><![CDATA[<p>You are welcome Rajeev.</p>
<p>Unfortunately there is no detailed documentation on AEL. The only one page into to AEL on voip-info is all where I learnt it from, and later gained experience by practice. Actually its not that hard. All I can suggest is start writing small dialplans and soon you&#8217;ll be good at it. If you have an existing dialplan, start converting it into AEL. All you have to do is delete extensions.conf and Asterisk will automatically look for extensions.ael (unless your version of Asterisk requires some other configuration, I never moved beyond Asterisk 1.4).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with AEL by RT</title>
		<link>http://ilovetovoip.com/2010/08/getting-started-with-ael/comment-page-1/#comment-1632</link>
		<dc:creator>RT</dc:creator>
		<pubDate>Mon, 30 Jan 2012 17:51:05 +0000</pubDate>
		<guid isPermaLink="false">http://ilovetovoip.com/?p=632#comment-1632</guid>
		<description>Zeeshan, Thanks for such a benign intro. I too was apprehensive about dialplan and syntax. AEL is a good thing, but I do not see any conceptual documentation of AEL (the way it works - or how does it co exist with extensions.conf) The vioi-info is a good place but I wanted to know if any officially supported document was there? The Asterisk site does have it. The way you have mentioned looks better to me but would prefer more elaborated details, if possible. 

Can both co-exist?</description>
		<content:encoded><![CDATA[<p>Zeeshan, Thanks for such a benign intro. I too was apprehensive about dialplan and syntax. AEL is a good thing, but I do not see any conceptual documentation of AEL (the way it works &#8211; or how does it co exist with extensions.conf) The vioi-info is a good place but I wanted to know if any officially supported document was there? The Asterisk site does have it. The way you have mentioned looks better to me but would prefer more elaborated details, if possible. </p>
<p>Can both co-exist?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to setup a VoIP Server by Roo</title>
		<link>http://ilovetovoip.com/2010/06/how-to-setup-a-voip-server/comment-page-1/#comment-1628</link>
		<dc:creator>Roo</dc:creator>
		<pubDate>Fri, 20 Jan 2012 22:16:12 +0000</pubDate>
		<guid isPermaLink="false">http://ilovetovoip.com/?p=422#comment-1628</guid>
		<description>As the last comment I too would like to use a VoIP server while I&#039;m abroad.
I&#039;m assuming if I setup a server as suggested above, I could setup extensions for mobile phones (which have sip software) and access my server via internet access abroad.

This would then go from my phone - to my server at home - and then to (for instance) my wife who is in the same country as me?

Very helpfull info thank you.</description>
		<content:encoded><![CDATA[<p>As the last comment I too would like to use a VoIP server while I&#8217;m abroad.<br />
I&#8217;m assuming if I setup a server as suggested above, I could setup extensions for mobile phones (which have sip software) and access my server via internet access abroad.</p>
<p>This would then go from my phone &#8211; to my server at home &#8211; and then to (for instance) my wife who is in the same country as me?</p>
<p>Very helpfull info thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Install OpenSIPS on CentOS 5.2 with MySQL by Sam</title>
		<link>http://ilovetovoip.com/2011/04/install-opensips-on-centos-5-2-with-mysql/comment-page-1/#comment-1546</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Fri, 21 Oct 2011 04:56:18 +0000</pubDate>
		<guid isPermaLink="false">http://ilovetovoip.com/?p=709#comment-1546</guid>
		<description>Zeeshan,
Do you have any experience working with Kamailio?</description>
		<content:encoded><![CDATA[<p>Zeeshan,<br />
Do you have any experience working with Kamailio?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on From Scratch to Finish: Setting up and Configure Asterisk for Production by Sam</title>
		<link>http://ilovetovoip.com/2010/08/from-scratch-to-finish-setting-up-and-configure-asterisk-for-production/comment-page-1/#comment-1545</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Fri, 21 Oct 2011 04:52:28 +0000</pubDate>
		<guid isPermaLink="false">http://ilovetovoip.com/?p=689#comment-1545</guid>
		<description>Yes, but it was only for Realtime Queue. 
I asked for hardware configuration only because being not so good at asterisk dimensioning I have/had no idea what it would take  to have around 200 Agents, 200 simultaneous calls(Dahdi 2 SIP), every call getting recorded, around 200 queues in an asterisk system.</description>
		<content:encoded><![CDATA[<p>Yes, but it was only for Realtime Queue.<br />
I asked for hardware configuration only because being not so good at asterisk dimensioning I have/had no idea what it would take  to have around 200 Agents, 200 simultaneous calls(Dahdi 2 SIP), every call getting recorded, around 200 queues in an asterisk system.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on From Scratch to Finish: Setting up and Configure Asterisk for Production by Zeeshan A Zakaria</title>
		<link>http://ilovetovoip.com/2010/08/from-scratch-to-finish-setting-up-and-configure-asterisk-for-production/comment-page-1/#comment-1544</link>
		<dc:creator>Zeeshan A Zakaria</dc:creator>
		<pubDate>Fri, 21 Oct 2011 03:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://ilovetovoip.com/?p=689#comment-1544</guid>
		<description>So many different configurations, I don&#039;t even remember.

Have you also used the real-time architecture?</description>
		<content:encoded><![CDATA[<p>So many different configurations, I don&#8217;t even remember.</p>
<p>Have you also used the real-time architecture?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on From Scratch to Finish: Setting up and Configure Asterisk for Production by Sam</title>
		<link>http://ilovetovoip.com/2010/08/from-scratch-to-finish-setting-up-and-configure-asterisk-for-production/comment-page-1/#comment-1542</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 19 Oct 2011 12:23:28 +0000</pubDate>
		<guid isPermaLink="false">http://ilovetovoip.com/?p=689#comment-1542</guid>
		<description>BTW, let me tell you, you have been doing great job on your site as well as on Asterisk-users group.</description>
		<content:encoded><![CDATA[<p>BTW, let me tell you, you have been doing great job on your site as well as on Asterisk-users group.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

