Hello All, Recently I added some Nokia N95 customers and it worked pretty good. Now the customers are complaining about the dialing rules... They are used to dialing +12486543210 and +4479XXXXXX for long distance calls. Is there anyway to create a "+" sign dial plan which will allow them to dial a number with "+" sign. Cheers, Nitesh
>>>>> "ND" == Nitesh Divecha <nitesh at vipernetworks.com> writes:ND> Hello All, Recently I added some Nokia N95 customers and it worked ND> pretty good. Now the customers are complaining about the dialing ND> rules... They are used to dialing +12486543210 and +4479XXXXXX for ND> long distance calls. ND> Is there anyway to create a "+" sign dial plan which will allow ND> them to dial a number with "+" sign. You have your standard dialplan, usually something like: exten => _X.,1,... You just put this in: exten => _+.,1,Goto(00${EXTEN:1},1) And poof, all numbers starting with + get it replaced with 00. You may need to do more munching of course, and 00 may not be right for you. /Benny
Thanks Benny... Let me give it a try... Cheers, Nitesh Benny Amorsen wrote:>>>>>> "ND" == Nitesh Divecha <nitesh at vipernetworks.com> writes: >>>>>> > > ND> Hello All, Recently I added some Nokia N95 customers and it worked > ND> pretty good. Now the customers are complaining about the dialing > ND> rules... They are used to dialing +12486543210 and +4479XXXXXX for > ND> long distance calls. > > ND> Is there anyway to create a "+" sign dial plan which will allow > ND> them to dial a number with "+" sign. > > You have your standard dialplan, usually something like: > > exten => _X.,1,... > > You just put this in: > > exten => _+.,1,Goto(00${EXTEN:1},1) > > And poof, all numbers starting with + get it replaced with 00. > > You may need to do more munching of course, and 00 may not be right > for you. > > > /Benny > > > > _______________________________________________ > --Bandwidth and Colocation Provided by http://www.api-digital.com-- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > >
I just had a similar problem and solved it with.. [from-internal-intldial] exten => _+61XXXXXXXXX,1,Goto(from-internal,0${EXTEN:-9},1) exten => _X.,1,Goto(from-internal,${EXTEN},1) And put the E65 into the new contect. The first line stops all +61 (my default country in australia) The second catches everything else (like local 1300, 1800 etc numbers that are in the phone without a +) I can't find anywhere that tells me that the + is a valid pattern in a dialplan but it works :-) Obviously you could add any country codes you wish. I couldn't think of something that would work for all codes as they are differing lengths. Regards Kevin -- Kevin Withnall http://kevin.withnall.com/ ILB Computing http://www.ilb.com.au PH: 02 4227 0001 Mobile: 0412 453 846 FAX: 02 4227 0081 Please consider the environment before printing this e-mail -----Original Message----- From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Nitesh Divecha Sent: Monday, 25 June 2007 1:56 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [asterisk-users] Nokia N95 + Dial Plan Hello All, Recently I added some Nokia N95 customers and it worked pretty good. Now the customers are complaining about the dialing rules... They are used to dialing +12486543210 and +4479XXXXXX for long distance calls. Is there anyway to create a "+" sign dial plan which will allow them to dial a number with "+" sign. Cheers, Nitesh _______________________________________________ --Bandwidth and Colocation Provided by http://www.api-digital.com-- asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users