-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathAUTOSIG.DOC
More file actions
4203 lines (2791 loc) · 141 KB
/
AUTOSIG.DOC
File metadata and controls
4203 lines (2791 loc) · 141 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
A U T O S I G
Version 5.2
April, 1987 Manual Revision
A Communications Program for
Accessing CompuServe
This manual describes the installation, features
and functions of the AUTOSIG program. This program
is being developed by a Project Group from the
CompuServe IBMNET. The group consists of, but is
not restricted to:
Vernon Buerg [70007,1212]
Don Watkins, SYSOP, [76703,750]
and others!
AUTOSIG Version 5.26 - April 26, 1987
(c) Copyright 1985,1986,1987 by Vernon D. Buerg
T A B L E O F C O N T E N T S
==========================================================================
I. Introduction ...................................................... 1
II. Installation ..................................................... 3
Getting started .................................................. 3
Check-off List ................................................... 3
Install Program Files ............................................ 3
Setting CIS Forum Options ........................................ 4
Setting CIS Terminal Options ..................................... 6
Change CIS Terminal Settings ..................................... 6
Set Modem Switches ............................................... 9
III. Operation ....................................................... 10
Overview ......................................................... 10
ATO File Names ................................................... 10
Starting the Program ............................................. 11
Start-up Switches ................................................ 12
Primary Menu ..................................................... 15
Primary Menu keys ............................................... 15
PC Options Menu .................................................. 17
Forum Options Menu ............................................... 19
Forum Selection ................................................. 19
Forum Information ............................................... 19
HOST Options Menu ................................................ 23
IV. Main Function Menu ............................................... 27
Function Menu .................................................... 27
Function Categories .............................................. 29
Online Download Functions ........................................ 30
Offline Message Processing ....................................... 32
D - Download messages online. .................................... 32
V - View SAVEd messages. ......................................... 32
P - Preview Leave/Reply file. .................................... 32
S - Send messages online. ........................................ 32
W - Write new messages off-line .................................. 32
R - Read and reply offline. ...................................... 34
Summary of R>ead responses ................................... 37
M - Mark messages offline ........................................ 38
O - Change forum Options ......................................... 40
C - Change to Primary Menu ....................................... 40
1 - AUTOmatic first pass ......................................... 40
2 - AUTOmatic second pass ........................................ 40
G - Go online, terminal mode. .................................... 40
N - Update DFN file. ............................................. 41
E - Shell (EXEC) to a new copy of COMMAND ........................ 41
K - Delete message file .......................................... 41
B - Beep on/off toggle ........................................... 41
L - List bulletins ............................................... 41
X - Return to SYSTEM. ............................................ 42
Z - Send OFF and disconnect ...................................... 42
AUTOSIG User's Manual Contents 1
T A B L E O F C O N T E N T S
==========================================================================
V. Special Processing ................................................ 43
CIS High Message Number .......................................... 43
Multiple SIG Sessions ............................................ 44
AUTO - Automatically Access Several SIGs ......................... 45
EASYPLEX (E-Mail) Operation ...................................... 48
ATO Address Book - ATOPPN ........................................ 50
Overview ........................................................ 50
Address Book Commands ........................................... 52
VI. Terminal Mode .................................................... 55
Introduction ..................................................... 55
Defining Function Keys ........................................... 56
Terminal Mode Special Keys ....................................... 58
Protocol File Transfer ........................................... 59
Downloading with "B" protocol ................................... 59
Uploading with "B" protocol ..................................... 60
File Transfer with DC2/DC4 and Prompting ......................... 61
PgDn - Log to disk .............................................. 61
PgUp - Upload from disk ......................................... 61
VII. Message Editor .................................................. 62
Description of use ............................................... 62
Editor Control Keys .............................................. 64
Editor Function Keys ............................................. 65
Editor Import Function ........................................... 66
Replying to messages ............................................. 67
VIII. Accounting Log - ACLS .......................................... 68
Log Files ........................................................ 68
Figure 11. ACLS Accounting ...................................... 69
Figure 12. ACLS Sample Output .................................... 69
IX. Errors and Problem Reporting ..................................... 70
Internal Errors .................................................. 70
Trouble Shooting ................................................. 71
AUTOSIG User's Manual Contents 2
T A B L E O F C O N T E N T S
==========================================================================
Appendices ........................................................... 75
Acknowlegements .................................................. 75
Disclaimer ....................................................... 75
Appendix A - Copying and sharing AUTOSIG. ........................ 76
Appendix Q - Quick Reference Words ............................... 77
Appendix M - Typical Displays and Messages ....................... 81
Appendix V - Using Virtual Disks ................................. 82
Figures
Figure 1. PRIMARY MENU .......................................... 16
Figure 2. PC OPTIONS MENU ....................................... 18
Figure 3. FORUM OPTIONS MENU .................................... 22
Figure 4. HOST OPTIONS MENU ..................................... 26
Figure 5. FUNCTION MENU ......................................... 28
Figure 6. AUTO BUILD LIST MENU .................................. 47
Figure 7. AUTO /1 and /2 Display ................................ 47
Figure 8. ATOPPN Menu ........................................... 51
Figure 9. TERMINAL FUNCTION KEYS ................................ 57
Figure 10. TERMINAL MODE ALT KEYS ............................... 57
Figure 11. ACLS Accounting Summary .............................. 69
Figure 12. ACLS Sample Output ................................... 69
AUTOSIG User's Manual Contents 3
AUTOSIG User's Manual Page 1
I. Introduction
AUTOSIG is a program written specifically for CompuServe Special
Interest Group access. It provides an automatic way of
processing SIG messages that is quick and economical.
AUTOSIG is a FREE communications program written with Quick
Basic and assembly language. It is provided as a executable
(.EXE) program for the IBM PC. It is fully compatible with
Compaq computers, the Tandy 1000 and 1200, and most other
clones. In addition to its main purpose of offloading messages,
it is a terminal program which can be used to access other areas
of CompuServe and download from the Data Libraries using "B"
protocol.
AUTOSIG was inspired by a program called SUPER.SIG in DL1 on the
TRS100 SIG which was written by Howard Benner [70235,1337]. The
first version of AUTOSIG was written entirely by Vernon Buerg
[70007,1212] as a way to cut down on his monthly bills.
This first version was further expanded and modified by Vernon
Buerg, Frank Lipschutz and others as part of the INF Project
Group established by Don Watkins, Sysop of IBMNET. A sister
program, ACLS was written by Tom Neff.
The major features of AUTOSIG (ATO) are:
- automatic dialing and access to CompuServe (CIS)
through local, Tymnet, or Telenet nodes
- automatic downloading of SIG messages and bulletins
- automatic retrieval and transmission of Email messages
and EasyPlex binary files
- file transfer, upload and download, using CIS "B"
error checking protocol
- user defined program Function keys
- full screen editor for composing messages offline
- automatic transmission of your messages using the SED or
EDIT editor options
- split screen mode for CB use and conferencing (CO)
- offline display, printing, and saving of SIG messages
AUTOSIG User's Manual Page 2
I. Introduction
A word or two about the Deeper meanings of ATO
----------------------------------------------
ATO - To go on-line (from the Hayes command set)
ATO is to my thinking a community hack in the true sense of the
word, that is, lots of people contributing time and effort just
for the sheer joy (?) of programming and 'bumming' code. For
instance I did the first version of the full screen editor, and
before I knew it, Vern had made the sucker *nice* as well as cut
the amount of code in half. Frank would come along and perform
a function in one instruction that had previously taken two.
Hacking at its best and perhaps the way it should be.
The latest version incorporates a total rewrite of ATO by Vern
Buerg but to additional features he has added the majority of
while are written in assembler. It is indeed a tribute to his
talents and contributions to the PC community. On a personal
note I must say that Vern is one of the best programmers I've
had the pleasure of knowing. He is truly an example of what the
computing fraternity is all about.
ATO is now over 3 years old so perhaps it's a good time to talk
about the original design goals:
- Make it reasonably easy to use (although with function
comes complexity)
- Don't compete with any commercial programs.
- ATO is free and is not to be shareware (not that I have
anything against shareware, but ATO belongs to the forum
community).
ATO is not meant to be 1) the best all purpose communications
program in the world, 2) the most flexible or 3) the fastest.
No doubt there will always be raging debates over the "best"
communications program. ATO makes no such claims. ATO DOES
represent a lot of work by a lot of people that expect nothing
in return other than the hope that you enjoy the fruit of their
efforts. Isn't that nice? Perhaps you feel that it's worth
paying for. If so send some money to a charity and feel good
about it.
If you feel a program that allows little flexibility for you to
change how things are done we encourage to try out the many
programs on the market that allow user written scripts. There
are some excellent user supported and commercial programs on the
market and you may find you enjoy "rolling your own".
AUTOSIG User's Manual Page 3
II. Installation
Getting started
Check-off List
Refer to this manual to perform the following steps:
_____ 1. Install the ATO files on your disk
_____ 2. Set your CIS Forum Options
_____ 3. Set your CIS Terminal Options
_____ 4. Set your modem's switches
_____ 5. Start ATO
----- 6. Enter your PC Options
_____ 7. Enter your HOST definitions
_____ 8. Enter your FORUM definitions
_____ 9. Go online with ATO
Install Program Files
The AUTOSIG program consists of the following supplied files:
AUTOSIG.EXE - The main program file, you may rename
it to ATO.EXE for convenience.
AUTOSIG.DOC - This manual
AUTOSIG.REQ - List of hardware and software
requirements for running ATO.
The actual file names may vary depending on the version in use.
================================================================
Installation is complete once the EXE file has been placed on
your disk.
AUTOSIG User's Manual Page 4
II. Installation
Getting started
Setting CIS Forum Options
Like any new program you'll (hopefully) be anxious to run ATO
right out of the box, but before running AUTOSIG, certain SIG
options must be in effect. ATO depends upon certain sequences
of events and control characters and if those aren't set you'll
run into problems.
Don't be put off by the size of this manual! Most parts of ATO
are fairly intutive and you'll not need to memorize the whole
thing. You will get some benefits by just scanning the manual
so if you should have a problem perhaps you'll recall that you
saw a mention of the condition in the manual and can then refer
back.
So first you'll want to figure out which forums you want to
visit and then log on with whatever program you used to obtain
AUTOSIG. Don't logon with AUTOSIG until these options have been
set as it'll just get more confusing than it needs to be.
So you're now logged on at your "normal" baud rate (normal being
what you'll be using with AUTOSIG) and go to the first forum on
your list. At the Function: prompt or top menu type OP to set
these options:
MENU - if currently in Menu mode, select Command mode
(Set Use menus to NO)
PC ^G - set prompt character to control-G (bell), you
may use other prompt characters, but will have
to change the ATO PC Options, or supply a
start-up command switch
TM - Type waiting messages [NO]
Hit enter to exit the OPtion area and make the changes
permanent.
Now go to the next forum in your list and set the same options
there.
AUTOSIG User's Manual Page 5
II. Installation
Getting started
The prompt character is ^G (control-G), the bell character. You
will not hear the bell while AUTOSIG is running, but will during
other sessions using other communications programs. You may
change the prompt characters during non-AUTOSIG sessions, but do
be sure and change it back before running ATOSIG again. G is
set by using Shift-6, and not CTRL, for the "^" character. Most
communications program have a "filter" or "strip and convert"
option so you may be able to convert a "7" (BELL) to a "0" (NUL)
when using other communications programs.
ATO doesn't care if you have your default editor defined as EDIT
or SED (EDIT doesn't have line numbers whereas SED does).
Uploading messages to EDIT is a bit faster, but if you use
interactive mode and feel comfortable with SED by all means keep
it as your default editor! ATO trys hard to let you have your
parameters set the way YOU want then and not the other way
around.
Other SIG options (non-stop messages, etc.) are set for you
temporarily by ATO each time you access a SIG.
AUTOSIG User's Manual Page 6
II. Installation
Getting started
Setting CIS Terminal Options
You MUST make the following change to your CompuServe Parameters
in order for ATO to work properly.
IMPORTANT: Any changes to CIS terminal options must be made at
the same baud rate at which you use AUTOSIG. CIS maintains two
sets of parameters for your user id -- one at 300 baud one for
1200 baud and yet another for 2400 baud.
The speed you're running with when you make changes determines
whether they become part of your 2400, 1200 or your 300 baud
options.
Change CIS Terminal Settings
So now your forum options have been set in the forums you'll be
visiting using AUTOSIG so now you need to set your global
options. From any ! prompt enter GO TERMINAL. This takes you
to the DEFALT area. You'll be presented with the following
menus (more or less, the DEFALT menus may change from time to
time):
CompuServe Terminal
1 Instructions
2 Setting Your Terminal Type
3 Setting Your Logon Actions
4 Setting Delays for Printers
5 View or Change Current
Terminal Parameters
6 Setting your Service Options
Last Menu Page. Key digit
or M for previous menu.
AUTOSIG User's Manual Page 7
II. Installation
Getting started
You'll get a listing of your current terminal settings which
will look something like this:
Your Terminal Type:
Other
Baud Rate: 1200
Current Terminal Parameters:
1 Terminal width 80 CHARACTERS
2 Page size is now 24 LINES
3 Form Feeds are SIMULATED
4 Horizontal Tabs are SIMULATED
5 Terminal Supports UPPER/LOWER
6 Caps Lock is OFF
7 Line Feeds are SENT
8 Parity is EVEN
9 Blank Lines are SENT
10 Inquire for VIDTEX is ON
Select item to be changed or
press <ENTER> for no change.
! 8 <--------------- Select item 8 then <enter>.
AUTOSIG User's Manual Page 8
II. Installation
Getting started
You should see the following list of possible choices:
1 Parity is Zero
2 Parity is Even
3 Parity is Odd
4 Parity is One
Current setting is 1
<ENTER> leaves it unchanged
You should get back the earlier menu with "Your terminal type".
Just press <Enter>, but first make note of your current terminal
type. If it is "Vidtex", you'll be fine. If want to change it
to "CRT" to avoid receiving Vidtex's code in AUTOSIG or any
other non-Vidtex communications program. If you elect to use
CRT or "Other" as your terminal type you'll need to make one
additional change. Select entry #10 ("Inquire for VIDTEX") and
set it to OFF. This is an important switch!! Once you set your
parameters and after you press <enter>, you'll get the main menu
back:
1 Instructions
2 Setting Your Terminal Type
3 Setting Your Logon Actions
4 Setting Delays for Printers
5 View or Change Current
Terminal Parameters
6 Set your Service Options
Last Menu Page. Key digit
or M for previous menu.
! 2 <----------------- Select item 2 then <enter>
If you selected 2, follow the menu to change your terminal type
to "CRT", press <enter>, and you'll be back at the menu above.
You'll be presented with two choices:
1 Make all changes effective
for future sessions
2 Changes effective for this
session only
<ENTER> makes changes effective
for this session only.
Key Choice: 1 <---------------- Select item 1 then <enter>.
Our experience is that setting parity to ZERO will not affect
the operation of any other communications programs you might be
running; if it does please let me know.
AUTOSIG User's Manual Page 9
II. Installation
Getting started
Set Modem Switches
ATO has the facility to accept any modem commands and, thus,
support for many modems has been added. If you're using a
non Hayes modem you'll need to study your manual very carefully
to determine the needed modem parameters.
The ATO crew has access to a limited number of modem types so
any tip or hints you have for using ATO on a certain modem is
very welcomed.
On Hayes modems the setting of the DTR (Data Terminal Ready)
switch will determine whether or not the modem is disconnected
when ATO is exited. With the switch ON (or UP), the modem is
disconnected.
The following modem switch settings (for a Hayes SmartModem) are
recommended (but not absolutely necessary):
1 - DOWN Modem remains connected after ATO is terminated.
UP Modem disconnects when ATO is exited.
2 - UP V1 Modem sends result codes in English.
3 - DOWN Q0 Result codes are sent to the terminal.
4 - UP E1 Modem echos characters while in command mode.
5 - DOWN Modem will not answer phone.
6 - UP Enables Carrier Detect sensing.
AUTOSIG User's Manual Page 10
III. Operation
Overview
ATO is a menu driven program. That is, ATO presents you you
with a series of menus from which you choose the action that you
want performed.
The first menu is the Primary Menu. From it, you proceed to the
main Function Menu and to the Forum, Host and PC options menus.
At any given time, ATO is in one of several possible "modes" of
operation. These are the Menu mode, Offline mode, Online mode,
and the Terminal mode.
ATO File Names
In addition to he program file, ATO requires that a definition
file be present. This definition file (AUTOSIG.DFN) contains
information about the host systems that you call, about the
forums that you visit, and about the computer that you use. If
there is no DFN file, ATO will create one for you.
Other files are created by ATO depending on the functions that
are performed. Some of these are temporary files, such as the
editor's work file; and others are meant to be kept, such as the
files containing downloaded messages. In most cases, empty
files are deleted at program termination. The PPN processor
uses a file name of the form "signame.PPN", or a file name that
you supply.
Each file has a name in this format: sigX.ATO - where "sig" is
the name of the DFN being used, X is a one letter file function
code, and the file extension is always .ATO. For example, file
IBMCOML.ATO is created for the (W) function with the IBMCOM SIG
configuration.
H - message headers, from functions Q and H.
M - downloaded messages, from functions F, T, R, U, I, A, and Y.
L - original messages, from function (W), or from the <R>eply
option while reading messages offline.
S - SAVEd messages, a permanent message file from the <S>ave
option while reading messages offline.
R - temporary file created for downloading messages
AUTOSIG User's Manual Page 11
III. Operation
Starting the Program
Once you have your Forum OPtions set up and your global
CompuServe TERMINAL defaults set, you are ready to go!
You start ATO by invoking it with a DOS command. A compiled
version of the program is supplied (AUTOSIG.EXE) for execution
by DOS. At the DOS prompt, enter the name of the AUTOSIG
program:
A>AUTOSIG
DOS now loads the program and begins its execution. You should
be presented with the ATO Primary Menu screen. If nothing is
displayed, your computer may not be compatible with the way the
your PC manages the monitor display. You should then press the
F10 key to tell ATO to terminate and return to the DOS. You then
restart ATO by adding the characters /T to the start command.
This tells ATO to use a different method of writing to your
monitor, for example:
A>AUTOSIG /T
AUTOSIG User's Manual Page 12
III. Operation
Start-up Switches
(These are advanced features that are not needed unless you have
compatibility problems with your computer, or you have ATO up
and running and want to explore additional features.)
Many ATO options can be specified before you load the
AUTOSIG.EXE program by adding a space, "/", and a letter to
specify the option, e.g.: AUTOSIG /T /B /C. The letters may be
in upper or lower case.
Some of these "switches" can fix incompatibility problems, while
others bypass menus or customize the program for you. Following
are the switches currently available:
/B locks the keyboard during auto functions. This allows you to
supply ATO console input through a batch file system or use a
utility such as KEYFAKE or KEYIN to control ATO.
/C clears the screen when full, preventing scrolling. Useful if
your color monitor flickers while lines roll on and off the
screen.
/F Eliminates most form feeds issued when P>rinting SIG
messages. This switch forces a continuous printout from the
time you enter ATO from DOS until the time you exit. Your
messages will be printed continuously with form feeds issued
only as the printer nears the perforation or end of the page.
If you issue a LF or FF directly to your printer, ATO's line
counter will get out of synch.
/G Allows you to re-specify the prompt character. The default
is ^G (GG on the command line), i.e. the BEL character.
/H Disables testing of the monitor's retrace. This results in
faster displays, but may cause flicker on some monitors.
This options does not apply to the use of monochrome
monitors.
/I Allows using a Mouse as an Input device at the Primary Menu.
/K Keep (SAVE) Easyplex messages instead of using DELETE to
DELETE them.
AUTOSIG User's Manual Page 13
III. Operation
Start-up Switches
/M Feature used for [R]ead [M]arked function. Used as follows:
/M and ^P=Y = RM always sent whenever entering a SIG.
/M and ^P=N = RM sent only if "You have... messages"
no /M, ^P=Y = RM sent after first "Function:" prompt for Q
only.
no /M, ^P=N = RM sent only if "You have ... messages"
/P Causes ATO to send a CTRL-P when logging on, and at the start
of each SIG. This overrides whatever you have set in your ATO
O>ption menu. It bypasses all CIS opening announcements, SIG
messages, announcements of waiting messages and waiting
Email. Much faster, but at the risk that you may miss
something important.
/Q selects Quiet mode; most of the beeps and bells are disabled
/S instructs ATO to automatically sort the QS headers whenever
the Mark command is used
/T eliminates an assembly language routine that ATO uses to
address the video memory directly. If you're using a clone
and your screen blanks unexpectedly, try this switch.
ATO is compatible with DesqView, Double DOS, and APX Core.
You need not use the /T unless you have problems, i.e. blank
or missing displays.
/V Debugging option to print errors. Printer must be on-line.
d: allows you to specify a drive, other than the drive where
AUTOSIG is stored, for your configuration and log files.
Adding, for example, "C:" (no "/"), makes ATO look to the C:
drive for DFN and LOG files. See the RAMDISK section for one
way to use this option (Appendix V).
Optionally, you may set an environment variable called ATO to
define the drive and path for all ATO files. For example,
SET ATO=C:\CISFILES
would instruct ATO to find its file on drive C, in the
directory called CISFILES. The individual Forum path names
over-ride this value. This variable is supplied to allow you
to tell ATO where to find its DFN and "log" files.
AUTOSIG User's Manual Page 14
III. Operation
Start-up Switches
/1 (slash one) is the equivalent of selecting "(Z) /1" from the
SIG menu to activate the first pass of the AUTO function
/2 is the equivalent of F2 Primary menu key to activate the
second pass of the AUTO function.
Don't worry about all of these switches!! They can be used to
modify the way ATO works, but you don't need to worry about any
of them until you really get your feet wet with ATO and then
perhaps not even then. Also, most of the options can be changed
by invoking the PC Options Menu. Just keep them in mind as you
get more comfortable with ATO and you might find a use for them.
These switches can be combined in any order that suits your way
of using ATO. For example, a command that might be used with a
RAMDISK is:
AUTOSIG /p /f C:
This tells ATO that, although AUTOSIG.EXE is on drive A:, the
DFN and LOG files are on drive C:; that opening CIS and SIG
bulletins should be bypassed, regardless of how the ^P option is
set; and that the printer should issue form feeds only when it
nears the end of a page -- not at the top of each SIG.
AUTOSIG User's Manual Page 15
III. Operation
Primary Menu
The Primary Menu is displayed when ATO is started. It consists
of the Host Selection menu, the Item Selection menu, and the
Forum Selection List. Refer to figure 1.
The Host menu offers a choice of CompuServe services to call.
The Forum menu offers a choice of Communications Forums (SIGs)
to access. The Item menu selects the operation to perform.
For the first use of ATO, you should:
- edit the PC Options entries to set the display colors and
other hardware related items; use the ESCape key.
- edit the Host entries to supply your userid, password, the
CIS phone number, and other service items; use the F4 key.
- edit the Forum entries to identify the forum(s) that you
wish to access; use the F3 key.
Primary Menu keys
- <enter> selects the Item that is highlighted (the Item bar)
- ESCape selects the PC Options Menu for viewing and editing
- F- function keys perform the operation described in the Item list
- Numbers select a Host
- Letters (A through X) select a Forum
- the letter Z highlights all forums which have "work", i.e. files
- TAB moves the Item bar to the next item
- shift+TAB moves the Item bar to the previous item
- PgDn or PgUp selects the next Forum and moves the mark
- the up or down arrow selects the next Host and moves the mark
AUTOSIG User's Manual Page 16
III. Operation
Figure 1. PRIMARY MENU
The Primary Menu for the first use of ATO:
------------------------------------------------------------------------------
+===================+ +----------------+ +===========================+
| Host Selection | | Item Selection | | Forum Selection List |
|-------------------| +----------------+ |---------------------------|
| 0) CIS300 | cr Select Marked | A) IbmCom M) *none* |
| 1) CIS1200 | Esc Reconfigure PC | B) Email N) *none* |
| 2) CIS2400 | F1 AUTOmatic pass 1 | C) IbmSw O) *none* |
| 3) Tymnet | F2 AUTOmatic pass 2 | D) *none* P) *none* |
| 4) CIS | F3 Edit FORUM options | E) *none* Q) *none* |
| 5) CIS | F4 Edit HOST options | F) *none* R) *none* |
| 6) CIS | F5 Add a new Forum | G) *none* S) *none* |
| 7) CIS | F6 Delete a Forum | H) *none* T) *none* |
| 8) CIS | F7 Modify AUTO list | I) *none* U) *none* |
| 9) CIS | F8 Sort forums by name | J) *none* V) *none* |
+-------------------+ F9 Run ACLS and exit | K) *none* W) *none* |
F10 Exit to DOS | L) *none* X) *none* |
+---------------------------+
(up arrow) prev host ENTER select marked PgUp prev forum
(dn arrow) next host TAB next item PgDn next forum
------------------------------------------------------------------------------
AUTOSIG User's Manual Page 17
III. Operation
PC Options Menu
Pressing the ESCape key, or positioning the Item bar to
"Reconfigure PC" selects the PC Options Menu for viewing and
editing. The middle section of the Primary Menu (the Item menu)
becomes the PC Options Menu. Refer to figure 2 for a sample
display of the menu.
"Normal COLOR f,b"
This allows you to set the colors to be used for the "f"
foreground and "b" background for non-highlighted areas. Refer
to the BASIC manual COLOR command for a list of valid numbers.
Note: 7,0 may provide a better display on a monochrome monitor.
---------------------------------------------------------------
"Hilite COLOR f,b"
This setting allows you to set the color to be used for
high-lighted messages and fields. Refer to the BASIC manual for
a list of valid codes.
Note: 15,0 may be better for a monochrome monitor.