Re: [Freeswitch-users] dialplan rule to send the caller to voice mail when same extension is called.

2009-11-26 Thread Michael Jerris
Of course.  Please read through the default configs and the getting started 
guide and xml dialplan information on the wiki.

Mike

On Nov 26, 2009, at 12:38 PM, Orien Love wrote:

 Is there any way to build a dial plan so that when an extension calls
 itself the call is automatically put to that users voice mail?
 
 Example, extension 1001 calling 1001 and is sent to voice mail (to
 receive messages).
 I know that there is a * code to get to voice mail, I cannot recall
 which one right now but my phones want to dial their extension to get to
 voice mail.I can modify the voice mail button but this works only for
 the first line registered at that phone.


___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] dialplan rule to send the caller to voice mail when same extension is called.

2009-11-26 Thread Joseph L. Casale
Of course.  Please read through the default configs and the getting started 
guide and xml dialplan information on the wiki.

Mike

This is of interest to me as well, would that be something like this:

   extension name=ext_100_vm
 condition field=caller_id_number expression=^100$/
 condition field=destination_number expression=^100$
 action application=answer/
 action application=voicemail data=check $${voicemail_profile} 
$${domain} 100/
 /condition
   /extension

Could anyone versed in xml and variables comment on this so it generically 
checked
if the extension dialed was of your extension length, like ^(\d{3})$ then if it 
matched
your caller_id_number go into the action so you could leave it as $1, not 100 
in my case?

That way you could only have one of these plans work for all extensions.

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] dialplan rule to send the caller to voice mail when same extension is called.

2009-11-26 Thread freeswitch list
 condition field=destination_number expression=^${caller_id_number}$

On Thu, Nov 26, 2009 at 4:36 PM, Joseph L. Casale jcas...@activenetwerx.com
 wrote:

 Of course.  Please read through the default configs and the getting
 started guide and xml dialplan information on the wiki.
 
 Mike

 This is of interest to me as well, would that be something like this:

   extension name=ext_100_vm
 condition field=caller_id_number expression=^100$/
 condition field=destination_number expression=^100$
 action application=answer/
 action application=voicemail data=check $${voicemail_profile}
 $${domain} 100/
 /condition
   /extension

 Could anyone versed in xml and variables comment on this so it generically
 checked
 if the extension dialed was of your extension length, like ^(\d{3})$ then
 if it matched
 your caller_id_number go into the action so you could leave it as $1, not
 100 in my case?

 That way you could only have one of these plans work for all extensions.

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] dialplan rule to send the caller to voice mail when same extension is called.

2009-11-26 Thread Joseph L. Casale
 condition field=destination_number expression=^${caller_id_number}$

Of course:) Thank you!
jlc

___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


Re: [Freeswitch-users] dialplan rule to send the caller to voice mail when same extension is called.(Working)

2009-11-26 Thread Orien Love
Thanks for all the help, here is what I put in the dialplan, I tested 
this and it is working for me.

!-- User calling Self Goes To voicemail --
   extension name=usertoselfvmain
   condition field=destination_number 
expression=^${caller_id_number}$
   action application=answer/
   action application=sleep data=1000/
   action application=voicemail data=check default 
${domain_name} ${sip_from_user}/
/condition
/extension

this was added just before the line extension name=Local_Extension


Orien Love.
Still learning, but getting there with help from all the great people on 
this list :)


Subject:
Re: [Freeswitch-users] dialplan rule to send the caller to voice mail 
when same extension is called.
From:
freeswitch list e...@chabotel.com
Date:
Thu, 26 Nov 2009 17:26:15 -0500

To:
freeswitch-users@lists.freeswitch.org


 condition field=destination_number expression=^${caller_id_number}$

 On Thu, Nov 26, 2009 at 4:36 PM, Joseph L. Casale 
 jcas...@activenetwerx.com mailto:jcas...@activenetwerx.com wrote:

 Of course.  Please read through the default configs and the
 getting started guide and xml dialplan information on the wiki.
 
 Mike

 This is of interest to me as well, would that be something like this:

   extension name=ext_100_vm
 condition field=caller_id_number expression=^100$/
 condition field=destination_number expression=^100$
 action application=answer/
 action application=voicemail data=check
 $${voicemail_profile} $${domain} 100/
 /condition
   /extension

 Could anyone versed in xml and variables comment on this so it
 generically checked
 if the extension dialed was of your extension length, like
 ^(\d{3})$ then if it matched
 your caller_id_number go into the action so you could leave it as
 $1, not 100 in my case?

 That way you could only have one of these plans work for all
 extensions.

 ___
 FreeSWITCH-users mailing list
 FreeSWITCH-users@lists.freeswitch.org
 mailto:FreeSWITCH-users@lists.freeswitch.org
 http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
 UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
 http://www.freeswitch.org



___
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org