1 / 128

; *****************************************************************

; *****************************************************************. ; * *. ; * CALLERID V 1 . 0 *. ; * *.

nyoko
Download Presentation

; *****************************************************************

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ; *****************************************************************

  2. ; * *

  3. ; * CALLERID V 1 . 0 *

  4. ; * *

  5. ; * Written in PPL for PCBoard *

  6. ; * *

  7. ; * Designed By: Gary Meeker *

  8. ; * *

  9. ; * Began development: 04-06-93 *

  10. ; * *

  11. ; *****************************************************************

  12. ;

  13. ; This .PPE checks the secrity level of a user and if within the specified

  14. ; range, checks the Caller ID info for the phone number. If a number is

  15. ; found, then it writes it to the file specified.

  16. ;

  17. ; Usage:

  18. ;

  19. ; !Verify.PPE SecLow;SecHigh;IDType;CIDFile;PrivateFile;OutsideFile;NoMatchFile

  20. ;

  21. ; Where:

  22. ; SecLow is the lowest level to display the file to

  23. ; SecHigh is the highest level to display the file to

  24. ; IDType is the type of Caller ID info or Position of the PhoneNumber+11

  25. ; Predefined formats are 1-10

  26. ; 1 = Supra - scan for "NMBR = " 6

  27. ; 2 7

  28. ; 3 8

  29. ; 4 9

  30. ; 5 10

  31. ; CIDFile is the caller ID file to create

  32. ; PrivateFile is the file to be displayed if the ID indicates Private

  33. ; OutsideFile is the file to be displayed if the ID indicates Outside Area

  34. ; NoMatchFile is the file to be displayed if the ID does not match Users Record

  35. ;

  36. STRING CID, CIDFile, PrivateFile, NoMatchFile, OutSideFile

  37. STRING Private, Outside, Digits

  38. STRING HVPHONE, BDPHONE, PhoneNumber, Filter

  39. INTEGER SecLow, SecHigh, IDType, Pos, OffSet, X

  40. ;Assume a "P" indicates a PRIVATE number and "O" indicates a OUTSIDE AREA number

  41. Private = "P"

  42. Outside = "O"

  43. ;Characters to Filter out of Users Record Phone Numbers

  44. Filter = " -()+"

  45. ;Parse the command line

  46. GETTOKEN SecLow

  47. GETTOKEN SecHigh

  48. GETTOKEN IDType

  49. GETTOKEN CIDFile

  50. GETTOKEN PrivateFile

More Related