<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2800.1458" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT color=#0000ff>
<P><SPAN class=370361201-28082004><FONT face=Arial size=2>Here is my 
extensions.conf....</FONT></SPAN></P>
<P><SPAN class=370361201-28082004><FONT face=Arial size=2>Thanks 
Don</FONT></SPAN></P>
<P><FONT face=Arial size=2></FONT>&nbsp;</P>
<P><FONT face=Arial size=2>;Don't forget to fetch the 'Asterisk Handbook' from 
</FONT><A href="http://www.asterisk.org"><FONT face=Arial 
size=2>www.asterisk.org</FONT></A><FONT face=Arial size=2>!</FONT></P>
<P><FONT face=Arial size=2>;Read through it at least once before editing this 
file.</FONT></P>
<P><FONT face=Arial size=2>;the general 'context' is used to define some global 
variables for asterisk.</FONT></P>
<P><FONT face=Arial size=2>[general]</FONT></P>
<P><FONT face=Arial size=2>;these lines prevent you from rewriting the 
extensions.conf from the CLI</FONT></P>
<P><FONT face=Arial size=2>;we don't really recommend you try to do so, it's 
safer to edit the</FONT></P>
<P><FONT face=Arial size=2>;extensions.conf and run 'reload' at the CLI (which 
will not drop calls)</FONT></P>
<P><FONT face=Arial size=2>static=yes</FONT></P>
<P><FONT face=Arial size=2>writeprotect=no</FONT></P>
<P><FONT face=Arial size=2>;the dialout context can be included in contexts 
which should have access</FONT></P>
<P><FONT face=Arial size=2>;to an outside line</FONT></P>
<P><FONT face=Arial size=2>;This extension match matches dialing '9' from the 
phone on the FXS to </FONT></P>
<P><FONT face=Arial size=2>;the outside line.</FONT></P>
<P><FONT face=Arial size=2>[dialout]</FONT></P>
<P><FONT face=Arial size=2>;first step is to strip the 9 from the call, and not 
send it to Ma Bell.</FONT></P>
<P><FONT face=Arial size=2>;in short, stripmsd will strip the number of digits 
specified from the </FONT></P>
<P><FONT face=Arial size=2>;beginning of the dialed string. It will move on to 
the next priority</FONT></P>
<P><FONT face=Arial size=2>;in the new extension (i.e. _9NXXXXXX became _NXXXXXX 
when we stripped</FONT></P>
<P><FONT face=Arial size=2>;the '9' For a bit more info do 'show application 
stripmsd' from the </FONT></P>
<P><FONT face=Arial size=2>;asterisk CLI</FONT></P>
<P><FONT face=Arial size=2>;extension matches are preceeded by an underscore. 
other chars are either </FONT></P>
<P><FONT face=Arial size=2>;absolute digits or 'N' (for any number greater than 
1) or 'X' (for any </FONT></P>
<P><FONT face=Arial size=2>;number</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; _9NXXXXXX,1,StripMSD,1</FONT></P>
<P><FONT face=Arial size=2>;Then send the call out the FXO card to our incoming 
POTS line.</FONT></P>
<P><FONT face=Arial size=2>;BYEXTENSION is a special target we can send 
extension matches to.</FONT></P>
<P><FONT face=Arial size=2>;It will send the whole matching string as 
dialed.</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; 
_NXXXXXX,2,Dial,Zap/4/BYEXTENSION</FONT></P>
<P><FONT face=Arial size=2>[home]</FONT></P>
<P><FONT face=Arial size=2>include =&gt; mailboxes</FONT></P>
<P><FONT face=Arial size=2>;set a music on hold class so we can play music for 
our callers when we park</FONT></P>
<P><FONT face=Arial size=2>;or transfer them.</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; s,1,setmusiconhold,default</FONT></P>
<P><FONT face=Arial size=2>;set a response timeout so we can terminate the call 
or recycle the caller</FONT></P>
<P><FONT face=Arial size=2>;through the menu if they don't answer our voice 
prompts</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; s,2,responsetimeout,20</FONT></P>
<P><FONT face=Arial size=2>;ring our zaptel channel 1 device for 20 seconds (the 
fxs interface, of course)</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; s,3,Dial,Zap/1|20</FONT></P>
<P><FONT face=Arial size=2>;if nobody answers tell them how to use the voicemail 
system.</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; s,4,Playback,thanks</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; i,1,hangup</FONT></P>
<P><FONT face=Arial size=2>[mailboxes]</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; 100,1,Voicemail,100</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; 100,2,Hangup</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; 101,1,Voicemail,101</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; 101,2,Voicemail,</FONT></P>
<P><FONT face=Arial size=2>[bell]</FONT></P>
<P><FONT face=Arial size=2>;ignorepat will recieve the digit, but continue the 
dialtone. Most useful</FONT></P>
<P><FONT face=Arial size=2>;here. It has to be in the starting context of the 
incoming channel</FONT></P>
<P><FONT face=Arial size=2>ignorepat =&gt; 9</FONT></P>
<P><FONT face=Arial size=2>;include makes available all of the extensions in the 
included</FONT></P>
<P><FONT face=Arial size=2>;context in the context the include statement is 
placed in. In this case we </FONT></P>
<P><FONT face=Arial size=2>;grant access to dial out over the POTS to internal 
callers. We could probably</FONT></P>
<P><FONT face=Arial size=2>;skip this (since we only have one extenal line an 
incoming calers are </FONT></P>
<P><FONT face=Arial size=2>;already tying it up and place the extensions in here 
in this case, but</FONT></P>
<P><FONT face=Arial size=2>;this is a good habit to be in.</FONT></P>
<P><FONT face=Arial size=2>include =&gt; dialout</FONT></P>
<P><FONT face=Arial size=2>;enable call parking and retrieval (see asterisk 
handbook&gt;application reference</FONT></P>
<P><FONT face=Arial size=2>;&gt;call parking, or 'show application parkedcalls' 
in the Asterisk CLI)</FONT></P>
<P><FONT face=Arial size=2>include =&gt; parkedcalls</FONT></P>
<P><FONT face=Arial size=2>;of course we need to be able to check our 
voicemail!</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; 6,1,Goto,home|s|1</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; 8,1,VoicemailMain</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; 8,2,Hangup</FONT></P>
<P><FONT face=Arial size=2>;and this little routine I add for recording the 
initial message. You should </FONT></P>
<P><FONT face=Arial size=2>;probably tell the user how to get to the voicemail 
boxes set up. No default</FONT></P>
<P><FONT face=Arial size=2>;audio file is supplied. You will have to use this to 
record a message </FONT></P>
<P><FONT face=Arial size=2>;or asterisk will hangup on the caller when it can't 
find the file.</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; 7,1,Record,thanks:gsm</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; 7,2,Wait,1</FONT></P>
<P><FONT face=Arial size=2>exten =&gt; 7,3,Playback,thanks</FONT></P>
<P><FONT face=Arial size=2></FONT>&nbsp;</P></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Don Moskaluk</FONT></DIV>
<DIV><FONT face=Arial size=2><A 
href="mailto:don@moskaluk.com">don@moskaluk.com</A></FONT></DIV>
<DIV><FONT face=Arial size=2><A 
href="http://www.moskaluk.com/">www.moskaluk.com</A></FONT></DIV>
<DIV><FONT face=Arial size=2>416 737-8230 Cell</FONT></DIV>
<DIV><FONT face=Arial size=2>416 614-8230 Home</FONT></DIV>
<BLOCKQUOTE dir=ltr 
style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #0000ff 2px solid; MARGIN-RIGHT: 0px">
  <DIV class=OutlookMessageHeader dir=ltr align=left><FONT face=Tahoma 
  size=2>-----Original Message-----<BR><B>From:</B> 
  asterisk-users-bounces@lists.digium.com 
  [mailto:asterisk-users-bounces@lists.digium.com]<B>On Behalf Of </B>Lyle 
  Giese<BR><B>Sent:</B> Friday, August 27, 2004 9:14 PM<BR><B>To:</B> Asterisk 
  Users Mailing List - Non-Commercial Discussion<BR><B>Subject:</B> Re: 
  [Asterisk-Users] "7" Dialing gives a busy signal<BR><BR></FONT></DIV>
  <DIV><FONT face=Arial size=2>Post your extensions.conf.&nbsp; You probably 
  have something goofed up in it.</FONT></DIV>
  <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial size=2>Lyle</FONT></DIV>
  <DIV>&nbsp;</DIV>
  <BLOCKQUOTE 
  style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
    <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
    <DIV 
    style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
    <A title=dmoskaluk@ica.net href="mailto:dmoskaluk@ica.net">Don Moskaluk</A> 
    </DIV>
    <DIV style="FONT: 10pt arial"><B>To:</B> <A 
    title=asterisk-users@lists.digium.com 
    href="mailto:asterisk-users@lists.digium.com">Asterisk Users Mailing List - 
    Non-Commercial Discussion</A> </DIV>
    <DIV style="FONT: 10pt arial"><B>Sent:</B> Friday, August 27, 2004 7:58 
    PM</DIV>
    <DIV style="FONT: 10pt arial"><B>Subject:</B> RE: [Asterisk-Users] "7" 
    Dialing gives a busy signal</DIV>
    <DIV><BR></DIV>
    <DIV><SPAN class=960565700-28082004><FONT face=Arial color=#0000ff 
    size=2>Oh' I'm any number other than 1 gives me a busy signal.&nbsp; I have 
    two extension set up 100 and 101.&nbsp; Is there something I 
    missed?</FONT></SPAN></DIV>
    <DIV>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>Don Moskaluk</FONT></DIV>
    <DIV><FONT face=Arial size=2><A 
    href="mailto:don@moskaluk.com">don@moskaluk.com</A></FONT></DIV>
    <DIV><FONT face=Arial size=2><A 
    href="http://www.moskaluk.com">www.moskaluk.com</A></FONT></DIV>
    <DIV><FONT face=Arial size=2>416 737-8230 Cell</FONT></DIV>
    <DIV><FONT face=Arial size=2>416 614-8230 Home</FONT></DIV>
    <BLOCKQUOTE dir=ltr 
    style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #0000ff 2px solid; MARGIN-RIGHT: 0px">
      <DIV class=OutlookMessageHeader dir=ltr align=left><FONT face=Tahoma 
      size=2>-----Original Message-----<BR><B>From:</B> <A 
      href="mailto:asterisk-users-bounces@lists.digium.com">asterisk-users-bounces@lists.digium.com</A> 
      [mailto:asterisk-users-bounces@lists.digium.com]<B>On Behalf Of </B>Don 
      Moskaluk<BR><B>Sent:</B> Friday, August 27, 2004 8:55 PM<BR><B>To:</B> 
      Asterisk Users Mailing List - Non-Commercial Discussion<BR><B>Subject:</B> 
      RE: [Asterisk-Users] "7" Dialing gives a busy signal<BR><BR></FONT></DIV>
      <DIV><SPAN class=680235400-28082004><FONT face=Arial color=#0000ff 
      size=2>sorry dialing "8" gives me a busy signal any other 
      ideas?</FONT></SPAN></DIV>
      <DIV>&nbsp;</DIV>
      <DIV><FONT face=Arial size=2>Don Moskaluk</FONT></DIV>
      <DIV><FONT face=Arial size=2><A 
      href="mailto:don@moskaluk.com">don@moskaluk.com</A></FONT></DIV>
      <DIV><FONT face=Arial size=2><A 
      href="http://www.moskaluk.com/">www.moskaluk.com</A></FONT></DIV>
      <DIV><FONT face=Arial size=2>416 737-8230 Cell</FONT></DIV>
      <DIV><FONT face=Arial size=2>416 614-8230 Home</FONT></DIV>
      <BLOCKQUOTE dir=ltr 
      style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #0000ff 2px solid; MARGIN-RIGHT: 0px">
        <DIV class=OutlookMessageHeader dir=ltr align=left><FONT face=Tahoma 
        size=2>-----Original Message-----<BR><B>From:</B> 
        asterisk-users-bounces@lists.digium.com 
        [mailto:asterisk-users-bounces@lists.digium.com]<B>On Behalf Of </B>Lyle 
        Giese<BR><B>Sent:</B> Friday, August 27, 2004 8:53 PM<BR><B>To:</B> 
        Asterisk Users Mailing List - Non-Commercial 
        Discussion<BR><B>Subject:</B> Re: [Asterisk-Users] "7" Dialing gives a 
        busy signal<BR><BR></FONT></DIV>
        <DIV><FONT face=Arial size=2>VoiceMail is at 8600 via the 
        demo.</FONT></DIV>
        <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
        <DIV><FONT face=Arial size=2>Lyle</FONT></DIV>
        <DIV>&nbsp;</DIV>
        <BLOCKQUOTE 
        style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
          <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
          <DIV 
          style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
          <A title=dmoskaluk@ica.net href="mailto:dmoskaluk@ica.net">Don 
          Moskaluk</A> </DIV>
          <DIV style="FONT: 10pt arial"><B>To:</B> <A 
          title=asterisk-users@lists.digium.com 
          href="mailto:asterisk-users@lists.digium.com">Asterisk</A> </DIV>
          <DIV style="FONT: 10pt arial"><B>Sent:</B> Friday, August 27, 2004 
          6:53 PM</DIV>
          <DIV style="FONT: 10pt arial"><B>Subject:</B> [Asterisk-Users] "7" 
          Dialing gives a busy signal</DIV>
          <DIV><BR></DIV>
          <DIV><SPAN class=830565123-27082004><FONT face=Arial size=2>Newbie so 
          please excuse if this question has been posted a billion times.&nbsp; 
          I have install asterisk and seems to compile and run with out errors; 
          however, when I try to dial "7" to configure the voice mail I get a 
          busy signal.&nbsp; </FONT></SPAN></DIV>
          <DIV><SPAN class=830565123-27082004><FONT face=Arial 
          size=2></FONT></SPAN>&nbsp;</DIV>
          <DIV><SPAN class=830565123-27082004><FONT face=Arial size=2>Can 
          someone help me please?</FONT></SPAN></DIV>
          <DIV><SPAN class=830565123-27082004></SPAN>&nbsp;</DIV>
          <DIV><FONT face=Arial size=2>Don Moskaluk</FONT></DIV>
          <DIV><FONT face=Arial size=2><A 
          href="mailto:don@moskaluk.com">don@moskaluk.com</A></FONT></DIV>
          <DIV><FONT face=Arial size=2><A 
          href="http://www.moskaluk.com">www.moskaluk.com</A></FONT></DIV>
          <DIV><FONT face=Arial size=2>416 737-8230 Cell</FONT></DIV>
          <DIV><FONT face=Arial size=2>416 614-8230 Home</FONT></DIV>
          <DIV>&nbsp;</DIV>
          <P>
          <HR>

          <P></P>_______________________________________________<BR>Asterisk-Users 
          mailing 
          list<BR>Asterisk-Users@lists.digium.com<BR>http://lists.digium.com/mailman/listinfo/asterisk-users<BR>To 
          UNSUBSCRIBE or update options visit:<BR>&nbsp;&nbsp; 
          http://lists.digium.com/mailman/listinfo/asterisk-users</BLOCKQUOTE></BLOCKQUOTE></BLOCKQUOTE>
    <P>
    <HR>

    <P></P>_______________________________________________<BR>Asterisk-Users 
    mailing 
    list<BR>Asterisk-Users@lists.digium.com<BR>http://lists.digium.com/mailman/listinfo/asterisk-users<BR>To 
    UNSUBSCRIBE or update options visit:<BR>&nbsp;&nbsp; 
    http://lists.digium.com/mailman/listinfo/asterisk-users</BLOCKQUOTE></BLOCKQUOTE></BODY></HTML>