Terence Parker
2004-Jan-17 03:18 UTC
[Asterisk-Users] Voicetronix OpenLine4: disable answering on a particular channel & delay before dial
<HTML> <HEAD> <META content="text/html; charset=iso-8859-1" http-equiv=Content-Type> <META content="Open WebMail 2.20 20031102" name=GENERATOR> </HEAD> <BODY bgColor=#ffffff> <p>Hi there,</p> <p>After a lot of valuable insights from the list, incoming and outgoing calls finally work through OpenLine4! Thanks for all the input!</p> <p>Now I have 2 minor issues:</p> <p>Sometimes Voicetronix dials too quickly before an actual dial tone is obtained from the phone company. E.g. Voicetronix picks up a line and then dials immediately, whereas actually it took the phone company may be half a second to actually make the line available to gave a dialtone. As a result? 90% of the time, the first digit dialed was not received by the phone company. Is it possible to tell voicetronix to wait a second or two before dialing?</p> <p>Secondly, I have a phone line plugged into channel 2 that I don't want Asterisk to answer. I only want ASterisk to use it to dialout. So I need to configure Asterisk somehow to ignore incoming calls on channel 2. Is this possible?</p> <p>Thanks!</p> <p>Terence</p> </BODY> </HTML>
Daniel Bichara
2004-Jan-19 05:45 UTC
[Asterisk-Users] Voicetronix OpenLine4: disable answering on a particular channel & delay before dial
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"> <title></title> </head> <body text="#000000" bgcolor="#ffffff"> Hi Terence,<br> <br> Terence Parker wrote:<br> <blockquote type="cite" cite="mid20040117094557.M48123@deltapath.com"> <meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type"> <meta content="Open WebMail 2.20 20031102" name="GENERATOR"> <p>Hi there,</p> <p>After a lot of valuable insights from the list, incoming and outgoing calls finally work through OpenLine4! Thanks for all the input!</p> <p>Now I have 2 minor issues:</p> <p>Sometimes Voicetronix dials too quickly before an actual dial tone is obtained from the phone company. E.g. Voicetronix picks up a line and then dials immediately, whereas actually it took the phone company may be half a second to actually make the line available to gave a dialtone. As a result? 90% of the time, the first digit dialed was not received by the<br> phone company. Is it possible to tell voicetronix to wait a second or two before dialing?</p> </blockquote> Try to insert a comma "," before the number you dial.<br> <blockquote type="cite" cite="mid20040117094557.M48123@deltapath.com"> <p>Secondly, I have a phone line plugged into channel 2 that I don't want Asterisk to answer. I only want ASterisk to use it to dialout. So I need to configure Asterisk somehow to ignore incoming calls on channel 2. Is this possible?</p> </blockquote> in /etc/asterisk/vpb.conf , before "channel = 2" insert a new context definition and config extensions.conf to ignore dial in:<br> <br> vpb.conf:<br> <br> context = default<br> channel = 1<br> context = nodialin<br> channel = 2<br> <br> in extensions.conf, insert:<br> <br> [nodialin]<br> exten => s,1,Congestion<br> <br> <br> Daniel<br> <br> <br> <br> <br> <blockquote type="cite" cite="mid20040117094557.M48123@deltapath.com"> <p>Thanks!</p> <p>Terence</p> _______________________________________________ Asterisk-Users mailing list <a class="moz-txt-link-abbreviated" href="mailto:Asterisk-Users@lists.digium.com">Asterisk-Users@lists.digium.com</a> <a class="moz-txt-link-freetext" href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</a> To UNSUBSCRIBE or update options visit: <a class="moz-txt-link-freetext" href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</a> </blockquote> </body> </html>