Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Verify the extension your calling from

Extension Verify

Verify the extension your calling from

by  Phoneman2  Posted    (Edited  )
This programming came to us and Tek-Tips from JBantz back on Aug 14 2002. I feel it has become one of the most requested tips of ALL time.

You will need to record Announcements for this to work.
If you look at line 12 in the vector below the ann. number is 76041 the ann says "ONE". You will need to record one ann for each digit 0-9.
You will also need one that states "This is Extension" this ann plays before the verify. As in the vector below ann 76063 on line 02.



CALL VECTOR

Number: 60 Name: Extension Verify
Meet-me Conf? n Lock? n
Basic? y EAS? y G3V4 Enhanced? y ANI/II-Digits? y ASAI Routing? y
Prompting? y LAI? n G3V4 Adv Route? y CINFO? n BSR? n Holidays? y

01 wait-time 0 secs hearing ringback
02 announcement 76063
03 goto step 12 if ani = 1+
04 goto step 14 if ani = 2+
05 goto step 16 if ani = 3+
06 goto step 18 if ani = 4+
07 goto step 20 if ani = 5+
08 goto step 22 if ani = 6+
09 goto step 24 if ani = 7+
10 goto step 26 if ani = 8+
11 stop
12 announcement 76041
13 goto vector 61 if unconditionally
14 announcement 76042
15 goto vector 61 if unconditionally
16 announcement 76043
17 goto vector 61 if unconditionally
18 announcement 76044
19 goto vector 61 if unconditionally
20 announcement 76045
21 goto vector 61 if unconditionally
22 announcement 76046
23 goto vector 61 if unconditionally
24 announcement 76047
25 goto vector 61 if unconditionally
26 announcement 76048
27 goto vector 61 if unconditionally
28 stop


CALL VECTOR

Number: 61 Name: Ext Verify 2#
Meet-me Conf? n Lock? n
Basic? y EAS? y G3V4 Enhanced? y ANI/II-Digits? y ASAI Routing? y
Prompting? y LAI? n G3V4 Adv Route? y CINFO? n BSR? n Holidays? y

01 wait-time 0 secs hearing silence
02 goto step 12 if ani = ?0+
03 goto step 14 if ani = ?1+
04 goto step 16 if ani = ?2+
05 goto step 18 if ani = ?3+
06 goto step 20 if ani = ?4+
07 goto step 22 if ani = ?5+
08 goto step 24 if ani = ?6+
09 goto step 26 if ani = ?7+
10 goto step 28 if ani = ?8+
11 goto step 30 if ani = ?9+
12 announcement 76040
13 goto vector 62 if unconditionally
14 announcement 76041
15 goto vector 62 if unconditionally
16 announcement 76042
17 goto vector 62 if unconditionally
18 announcement 76043
19 goto vector 62 if unconditionally
20 announcement 76044
21 goto vector 62 if unconditionally
22 announcement 76045
23 goto vector 62 if unconditionally
24 announcement 76046
25 goto vector 62 if unconditionally
26 announcement 76047
27 goto vector 62 if unconditionally
28 announcement 76048
29 goto vector 62 if unconditionally
30 announcement 76049
31 goto vector 62 if unconditionally
32 stop


CALL VECTOR

Number: 62 Name: Ext ver 3 digit
Meet-me Conf? n Lock? n
Basic? y EAS? y G3V4 Enhanced? y ANI/II-Digits? y ASAI Routing? y
Prompting? y LAI? n G3V4 Adv Route? y CINFO? n BSR? n Holidays? y

01 wait-time 0 secs hearing silence
02 goto step 12 if ani = ??0+
03 goto step 14 if ani = ??1+
04 goto step 16 if ani = ??2+
05 goto step 18 if ani = ??3+
06 goto step 20 if ani = ??4+
07 goto step 22 if ani = ??5+
08 goto step 24 if ani = ??6+
09 goto step 26 if ani = ??7+
10 goto step 28 if ani = ??8+
11 goto step 30 if ani = ??9+
12 announcement 76040
13 goto vector 63 if unconditionally
14 announcement 76041
15 goto vector 63 if unconditionally
16 announcement 76042
17 goto vector 63 if unconditionally
18 announcement 76043
19 goto vector 63 if unconditionally
20 announcement 76044
21 goto vector 63 if unconditionally
22 announcement 76045
23 goto vector 63 if unconditionally
24 announcement 76046
25 goto vector 63 if unconditionally
26 announcement 76047
27 goto vector 63 if unconditionally
28 announcement 76048
29 goto vector 63 if unconditionally
30 announcement 76049
31 goto vector 63 if unconditionally
32 stop


CALL VECTOR

Number: 63 Name: ext ver 4 digit
Meet-me Conf? n Lock? n
Basic? y EAS? y G3V4 Enhanced? y ANI/II-Digits? y ASAI Routing? y
Prompting? y LAI? n G3V4 Adv Route? y CINFO? n BSR? n Holidays? y

01 wait-time 0 secs hearing silence
02 goto step 12 if ani = ???0
03 goto step 13 if ani = ???1
04 goto step 14 if ani = ???2
05 goto step 15 if ani = ???3
06 goto step 16 if ani = ???4
07 goto step 17 if ani = ???5
08 goto step 18 if ani = ???6
09 goto step 19 if ani = ???7
10 goto step 20 if ani = ???8
11 goto step 21 if ani = ???9
12 disconnect after announcement 76040
13 disconnect after announcement 76041
14 disconnect after announcement 76042
15 disconnect after announcement 76043
16 disconnect after announcement 76044
17 disconnect after announcement 76045
18 disconnect after announcement 76046
19 disconnect after announcement 76047
20 disconnect after announcement 76048
21 disconnect after announcement 76049
22 stop
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top