home *** CD-ROM | disk | FTP | other *** search
- // This Script was Written by Claude Brown for public use.
- // It will require some editing for use on your BBS
-
- main()
- {
- // Please change the (1) to the comm port you are using on your BBS
- set_port (1);
- // This is your setting for your comm port on your BBS
- set_cparams (2400, 0, 8, 1);
- cputs_tr ("ATZ^M~~~~");
- cputs_tr (_mdm_init_str);
- // this command will preset Telix to the protocal of your choice
- set_defprot ('Z');
- set_terminal ("ANSI-BBS");
- // This command will dial entry #2 in your dialing Dir and call for 150 rings
- // if no answer after 150 rings then it will write a message to your Telix
- // usage log. In my setup i have named my telix usage log as my heysysop log
- if (dial("2",150) == 0)
- {
- usagelog ("C:\TELIX\TELIX.USE");
- ustamp ("The MAIL Transfer Event could NOT connect with the Host Node", 1 , 0);
- usagelog ("*CLOSE*");
- exittelix(1,1);
- }
- }
-