You can put a comma sep list of dialplans in the sofia profile or as the arg to transfer if you wish and they are checked in order until one returns an extension.<br><br><br><div class="gmail_quote">On Sat, May 31, 2008 at 10:18 PM, Arnaldo de Moraes Pereira &lt;<a href="mailto:ap@arnaldopereira.com">ap@arnaldopereira.com</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d">On Sun, Jun 1, 2008 at 12:04 AM, Michael S Collins<br>
&lt;<a href="mailto:mercutio.viz@gmail.com">mercutio.viz@gmail.com</a>&gt; wrote:<br>
&gt; Just to confirm: you can run both dialplans simultaneously, no? &nbsp;I&#39;m<br>
&gt; thinking that it might be helpful to have a few sample extensions in each dp<br>
&gt; type that are functionally identical. I&#39;ll see if I can come up with some<br>
&gt; practical examples.<br>
<br>
</div>I could do some tests and write them on the wiki page. I&#39;ve used<br>
asterisk&#39;s dialplan in many ways, so hopefully I can document most<br>
used cases. I can come up with some results within the next two days.<br>
<br>
After that, if anyone has some issue related to that, I&#39;ll be willing<br>
to fulfill it the freeswitch way.<br>
<div><div></div><div class="Wj3C7c"><br>
&gt; -MC<br>
&gt;<br>
&gt; Sent from my iPhone<br>
&gt; On May 31, 2008, at 8:55 AM, &quot;Anthony Minessale&quot;<br>
&gt; &lt;<a href="mailto:anthony.minessale@gmail.com">anthony.minessale@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Another good transition tool to play with may be mod_dialplan_asterisk which<br>
&gt; is in tree.<br>
&gt;<br>
&gt; Once loaded in modules.conf.xml it can be used in your sofia profile by<br>
&gt; adding &quot;asterisk&quot; as the dialplan parameter.<br>
&gt; You can also transfer calls to it by specifying it as the dialplan param in<br>
&gt; the transfer or execute_extension apps.<br>
&gt;<br>
&gt; it&#39;s not entirely like the real asterisk dialplan but it is at least a close<br>
&gt; familiarity.<br>
&gt; You cannot include contexts in each other in ours because we do all our<br>
&gt; dialplan logic before the call.<br>
&gt;<br>
&gt; It&#39;s structured in the same way so you can create context default<br>
&gt;<br>
&gt; [default]<br>
&gt; ; and you can use comments the same way<br>
&gt; ; here is a demo that is close to the extensions.conf in tree that installs<br>
&gt; by default<br>
&gt;<br>
&gt; ------------------<br>
&gt; [default]<br>
&gt;<br>
&gt; ; Things you&#39;re used to....<br>
&gt; exten =&gt; music,n,Dial(SIP/<a href="mailto:1234@conference.freeswitch.org">1234@conference.freeswitch.org</a>|120)<br>
&gt;<br>
&gt; ; similar pattern matching and caller-id match.<br>
&gt; exten =&gt; _1XXXXX,n,set(cool=${EXTEN})<br>
&gt; exten =&gt; _1XXXXX,n,set(myvar=true)<br>
&gt; exten =&gt; _1XXXXX,n,Goto(default|music)<br>
&gt; exten =&gt; 2137991400/1000,n,Goto(default|music)<br>
&gt;<br>
&gt; ; we also embellished things a bit and added some of our own goodies<br>
&gt; ; Some new magic you can do.... if you start the exten string with a ~ it<br>
&gt; implies PCRE regex<br>
&gt; ; *NOTE* the ,n, is there for familiarity purposes we do not parse it anyway<br>
&gt; nor will we honor line numbers.<br>
&gt;<br>
&gt; exten =&gt; ~^(18(0{2}|8{2}|7{2}|6{2})\d{7})$,n,enum($1)<br>
&gt; exten =&gt; ~^(18(0{2}|8{2}|7{2}|6{2})\d{7})$,n,bridge(${enum_auto_route})<br>
&gt;<br>
&gt; ; instead of exten, put anyting about the call you would rather match on.<br>
&gt; ; either the names of a field in caller_profile or a string of variables to<br>
&gt; expand.<br>
&gt; caller_id_number =&gt; 2137991400,n,Goto(default|music)<br>
&gt; ${sip_from_user} =&gt; bill,n,Goto(default|music)<br>
&gt;<br>
&gt;<br>
&gt; Anyway you will find the XML dialplan more flexible but this may serve as a<br>
&gt; stepping stone for beginners.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Fri, May 30, 2008 at 7:07 PM, Michael Collins &lt;<a href="mailto:mcollins@fcnetwork.com">mcollins@fcnetwork.com</a>&gt;<br>
&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; FYI,<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; I create a new wiki page:<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://wiki.freeswitch.org/wiki/Rosetta_stone" target="_blank">http://wiki.freeswitch.org/wiki/Rosetta_stone</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; I thought maybe those who know about Asterisk and FreeSWITCH both could<br>
&gt;&gt; start dropping stuff in there. &nbsp;I think that people coming from Asterisk<br>
&gt;&gt; might have an easier time if they had some sort of frame of reference. &nbsp;Note<br>
&gt;&gt; that I put a disclaimer at the top – there isn&#39;t really a one-to-one<br>
&gt;&gt; Ast-to-FS translation for most of the stuff, but if you said to an<br>
&gt;&gt; experienced Asterisk user that &quot;conf/dialplan/default.xml&quot; is analogous to<br>
&gt;&gt; &quot;/etc/asterisk/extensions.conf&quot; then he/she would at least have a starting<br>
&gt;&gt; point. &nbsp;I&#39;m hoping to add more stuff like the fact that there aren&#39;t really<br>
&gt;&gt; &quot;priorities&quot; in FS but that you can use scripting langs, ivr menus, etc. to<br>
&gt;&gt; mimic a lot of that kind of functionality.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Anyway, your thoughts and suggestions are welcomed. &nbsp;I will do my best to<br>
&gt;&gt; add stuff as I am able…<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; -MC<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Freeswitch-users mailing list<br>
&gt;&gt; <a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>
&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Anthony Minessale II<br>
&gt;<br>
&gt; FreeSWITCH <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org/</a><br>
&gt; ClueCon <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>
&gt;<br>
&gt; AIM: anthm<br>
&gt; <a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>
&gt; GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
&gt; IRC: <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>
&gt;<br>
&gt; FreeSWITCH Developer Conference<br>
&gt; <a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br>
&gt; <a href="http://iax:guest@conference.freeswitch.org/888" target="_blank">iax:guest@conference.freeswitch.org/888</a><br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Freeswitch-users mailing list<br>
&gt; <a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Freeswitch-users mailing list<br>
&gt; <a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt;<br>
<br>
<br>
<br>
--<br>
</div></div>Arnaldo M Pereira<br>
<a href="mailto:ap@arnaldopereira.com">ap@arnaldopereira.com</a><br>
<a href="http://www.arnaldopereira.com" target="_blank">http://www.arnaldopereira.com</a><br>
<div><div></div><div class="Wj3C7c"><br>
_______________________________________________<br>
Freeswitch-users mailing list<br>
<a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Anthony Minessale II<br><br>FreeSWITCH <a href="http://www.freeswitch.org/">http://www.freeswitch.org/</a><br>ClueCon <a href="http://www.cluecon.com/">http://www.cluecon.com/</a><br>
<br>AIM: anthm<br><a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
IRC: <a href="http://irc.freenode.net">irc.freenode.net</a> #freeswitch<br><br>FreeSWITCH Developer Conference<br><a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br><a href="http://iax:guest@conference.freeswitch.org/888">iax:guest@conference.freeswitch.org/888</a><br>
<a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>pstn:213-799-1400