-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpfile.txt
4096 lines (3191 loc) · 159 KB
/
helpfile.txt
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
============== abbreviations =============
If you are abbreviating commands, you must be prepared to change
your habitual abbreviations when new commands are introduced.
New commands may make old abbreviations ambiguous.
============== abort =============
To cancel a CIX command, enter <control>X. If, for instance, you have
disabled the More? prompt by setting your terminal pagelength to 0, you could
enter ^X to cancel a large volume of output; note that this will not take
effect immediately, due to the buffering between the CIX software and your
terminal.
To cancel your input at a prompt and start again, enter <control>U. This may
be more convenient than entering a number of Backspace characters.
============== about.netfind =============
==========
internet/discoveries #11, from steveh, 682 chars, Nov 15 18:35 92
----------
From: "Neil S. Briscoe" <[email protected]>
Date: Sun, 15 Nov 1992 18:05:42 GMT
--------------------------
Description: Netfind
Address: bruno.cs.colorado.edu
Interest: E-mail directory
Access:
telnet bruno.cs.colorado.edu
-OR-
telnet mudhoney.micro.umn.edu
login as netfind
Comments:
This will allow you to search the whole internet for addresses.
Netfind is very persistant but will fail on hosts that don't allow
finger access (such as most British Universities). The bruno site is
more verbose in it's search, but does have an options feature which
may allow you to turn this off. The mudhoney site is quiet and does
not allow you to select options.
============== absence =============
Command: ABSENCE -- Notify someone who wants to send you mail of your
absence.
Prompts: Main: Read: Mail:
Format: ABSENCE [FIRST <dd/mm/yy>] [LAST <dd/mm/yy>]
Example: absence last 25/8/91
Usage: If you have no existing ABSENCE record, specify FIRST and/or LAST
in either order. If you specify FIRST only, you are absent from
the specified date until further notice. If you specify LAST only,
you are absent from the current time till the end of the specified
date. If you specify both parameters, you are absent from the
FIRST date till the end of the LAST date.
To delete your ABSENCE record, specify a LAST date before the
current date, or any FIRST date.
To change your existing ABSENCE record, re-issue the ABSENCE
command. It is generally best to first delete your ABSENCE record,
but you may safely update your existing ABSENCE record by
specifying both FIRST and LAST.
To display your ABSENCE record, issue the ABSENCE command with no
parameters. This is a good candidate for your profile.
Notes: 1. Dates are inclusive (the time on the LAST date is 23:59); but
see note 4.
2. Anyone who attempts to mail you when you are absent receives one
of the following messages after issuing the TO command:
<username> is away from <date> to <date> - continue?
<username> is away from <date> until further notice - continue?
The default response is N (No).
However, if someone mails you by using a CIX script, the message
is not displayed and the memo is always sent.
3. Users who send you binary mail (by using the BINMAIL command)
are not notified of your absence.
4. Times are held in the ABSENCE record in GMT and adjusted to BST
(British Summer Time) if necessary. For example, if you enter:
ABSENCE FIRST 1/8/91 LAST 25/8/91
you are absent from 01:00 BST on the 1st of August (00:00 GMT)
to 00:59 BST on the 26th (23:59 GMT on the 25th).
============== add =============
Command: ADD -- join a new participant to a conference or add a new topic.
Prompt: Mod:
See also: REMOVE, NOTE
Format: ADD PARTICIPANT <username> [<username>...]
Format: ADD TOPIC
Usage: When you enter the ADD TOPIC command, CIX prompts you for the name
of the topic, asks if you want to keep files in the topic, and
prompts you for the description of the topic.
Note: Certain topic names are reserved for CIX and cannot be used.
============== addpart =============
COMMAND: ADD PARTICIPANT
PROMPT: Mod:
SYNTAX: ADD PARTICIPANT <username> [<userneme>...]
PURPOSE: Join new participants to a conference or topic?
When you moderate a conference it's useful to be able to add
particiapants yourself. This might be because the conference is
closed, and thus potential participants can't join themselves, or you
might simply want to to start a conference off with a few interested
people.
Some people don't like to be joined to conferences without their
permission, or might only wish to join certain types of conferences.
For this reason every user can compose a note to be displayed to the
moderator telling of their wishes. You should respect the contents of
this note.
See also: REMOVE, NOTE
============== addprompt =============
Add-actions
After typing in the text of your message, you have the following options:
Add.................Add the text as a message (or comment) and
clear your scratchpad.
CLear...............Clear your scratchpad and return to the Read: prompt.
COnt................Continue entering the message with the word wrapping
entry program, and append new text to the end of the
scratchpad.
Edit................Invoke the text editor to edit or append text.
Help................Display this message.
List................Display the contents of the scratchpad.
Quit................Return to the Read: prompt without adding a message.
Your scratchpad will be left intact.
============== all =============
read all
read all quick
The "all" option of "read" will display all unseen messages in all
conferences you are a member of. The "quick" option makes "read all" not
display the "Comments" lines of the headers
FILE READ ALL ; send all new messages to your scratchpad
Mail: FILE ALL ; send all new mail to scratchpad
============== allaboutme =============
Command: ALLABOUTME -- list your billing details.
Prompt: Main:
Format: ALLABOUTME
See also: BILLING
Usage: ALLABOUTME lists the billing details you supplied to CIX when you
registered, and a few other items, such as the total number of
calls you've made to CIX.
============== ambiguous =============
Ambiguous command.
An abbreviation is ambiguous if it is a prefix of two different
commands. If using verbose prompts you are told what the commands
are.
If you are abbreviating commands, you must be prepared to change
your habitual abbreviations, when new commands are introduced.
============== ameol =============
Ameol Help file
Ameol version 2 is the only officially supported OffLine Reader for CIX.
The minimum system requirements for Ameol2 are Windows 3.1 (running in
Enhanced Mode), Windows/NT 3.5/4, Windows 95, and at least 8Mb RAM and
10Mb hard disk space. There is a native 32-bit version of Ameol2 for NT
and Windows 95.
Ameol is free to CIX users and is supplied on CD to all new users.
Existing CIX users can also obtain the CD for free by mailing their name
and address to [email protected].
Technical support and general questions should be directed to the
'ameol.support' conference using the Report facility - select Send Support
Message from the Help menu.
You will always find the latest version of Ameol2 in
ameol.support/files.
Please join the 'ameol.support' conference for more details.
============== ansi =============
COMMAND: ANSI
PROMPT: Opt:
SYNTAX: ANSI N Q ;Don't use ANSI.
or ANSI Y Y Q ;Use ANSI default codes.
or ANSI Y N ;Use other ANSI codes,
<codes> ;follow the prompts,
Q :see below.
PURPOSE: Allows ANSI if your terminal supports it.
If your terminal can use ANSI or VT100 codes (for colour and other
attributes), you may use the CIX command OPTION ANSI Y Y Q. (Meaning
Yes, use ANSI codes and Yes, use the default codes.) This causes CIX
prompts and message headers to stand out from the rest of the text.
To switch off ANSI codes, use the command OPTION ANSI N Q.
Please note that the ANSI option affects only the output from CIX.
You can't put ANSI characters into messages.
To use ANSI codes other than the defaults, use the command OPTION
ANSI Y N. CIX then prompts you for the code it should send before
prompts and message headers:
PrePrompt code ESC[??m
You should enter only the ?? part, as explained below; CIX
automatically sends the parts of the code which surround your entry.
CIX then prompts you similarly for the code it should send after
prompts and message headers; this code controls the display of text.
Finally, come out of the OPTION command by entering QUIT.
The ANSI attribute codes are: The ANSI colour codes are:
Foreground Background
No attributes 0 or null Black 30 40
High intensity or bold 1 Red 31 41
Underline 4 Green 32 42
Blinking 5 Yellow 33 43
Reverse 7 Blue 34 44
Magenta 35 45
Cyan 36 46
White 37 47
Results depend on the capabilities of your terminal; for instance, it
may not support the "underline" code. Your terminal should ignore any
code it doesn't support.
To combine several values, separate them with a semicolon. For
instance:
;1;33;40 (PrePrompt) Bright yellow on black
;37 (PostPrompt) White on black
These are the default codes which CIX normally uses when OPTION ANSI Y
Y is in effect. Notice that the first code for each string is null
(the strings start with the semicolon separator). This means the
"bright" attribute is switched off after prompts and message headers,
so other text is displayed in normal intensity. (The null code is not
strictly necessary for the PrePrompt code in this instance.)
If you change the codes, these are saved as the default values for
your current CIX session: you cannot revert to the CIX defaults by using
OPTION ANSI Y Y QUIT. You may still, of course, switch off ANSI codes
altogether by using OPTION ANSI N QUIT.
To set ANSI codes from your profile, you must put them on separate lines,
just as if CIX were prompting you. For instance:
OPTION ANSI Y N
33
34
QUIT
/* ANSI help file updated 26/3/93 */
============== arcscratch =============
Command: ARCSCRATCH - Compresses your scratchpad
Usage: This command compresses the contents of your
scratchpad using the ARC compression system,
transfering the contents of your scratchpad to a
'scratchp.arc' file. You can then download and
unarc the file locally saving you download and
online time.
Example: From Main: prompt type arcscratch
you will receive the message
Arcing... (to abort ^X^X^X)
.....
Archived Scratchpad is **** characters
Your scratchpad has been deleted
Main:
Notes: Try this command with a small file first to
ensure it's compatible with your copy of ARC!
Arcing is extremely CPU intensive and will
affect other users negatively. If you have MNP5
(recommended), don't ARC, please!
Once you have downloaded your archived scratchpad
you will receive the message
OK to delete the downloaded scratchpad-file?
(y/n)?
Usage: If you already have an archived scratchpad file
and you attempt to create another archive
scratchpad then the old one will be deleted.
Example : Main:arcscratch
Removed old ARChive
Arcing... (to abort ^X^X^X)
.....
Archived Scratchpad is **** characters
Your scratchpad has been deleted
Main:
When you log off you will be given the
opportunity to delete your archived scratchpad
Example: Main:bye
OK to delete your scratchpad.arc? (y/n)? y
sthorn, you have been online 3:39 on ttya1
Goodbye from CIX !!!HANGUP NOW!!!
Notes: If you have downloaded your archived scratchpad,
then it's a good idea to delete it. No charges
are made for storage, so we do ask you delete
your archived scratchpad before you log off.
When you have downloaded your archived scratchpad
you will be asked if you wish to delete it, and
also again before you log off.
see also: FILE, KILLARC, KILLSCRATCH, SCRATCHSIZE,
DOWNLOAD, UPLOAD
============== author =============
Alastair Mayer was largely responsible for the original system architecture
and most of the original code.
Peter Jaspers-Fayer coded the 'help' routine, and Bob McQueen coded
the (original) verbose editor (with subsequent modifications by Greg
Blair and A. Mayer).
Overall system outline, and user interface design, was a collaboration
between A. Mayer, B. McQueen, P. Jaspers-Fayer and Carl Mohan, who
also wrote the users manual.
The suggestions and complaints of the early users are also acknowledged.
Subsequent devolpment (COSY 3) was also largely done by Alastair Mayer,
with additional coding by Tom Smith and Keith Winter. Tom Smith is
also responsible for automating several of the system manager functions,
and the 'verbose' interface for the new editor.
Again, the suggestions of users are acknowledged, as are the efforts of
Bob McQueen, who 'ran interference' for us software gnomes.
The current editor is based on one presented in Kernighan and Plauger's
book, "Software Tools in Pascal", but rewritten in 'C'. The KERMIT file
transfer utility was developed at Columbia University.
People who have worked on the code (in greater or smaller amount) at CIX:
Terry Thompson
DJ Walker Morgan
Frank Thornley
Anders Heerfordt
Giles Todd
Pete Bentley
Mike Rogers
Dave Johnson
Gordon Hundley
Matthew Sims
Paul Gardner
============== autorecent =============
COMMAND: AUTORECENT
PROMPT: Opt:
SYNTAX: AUTORECENT YES | ON
PURPOSE: Join a conf and skip to user defined date/message no.
In conjunction with the RECENT command you can arrange for only the
last x number of messages to be marked as new. This is particularly
useful when using an OLR (offline reader), when rejoining a busy
conference.
AUTORECENT should be set up in your profile - without it the RECENT
command won't work automatically.
/* AUTORECENT help file updated 26/3/93 */
============== backward =============
read backward [ <number> [ to <number> ]]
The "backward" option of "read" allows you to reverse the order in which
the messages are normally displayed.
To resume reading in the forward direction, use the "forward" command.
============== billing =============
Online billing
--------------
To avoid drowning you (and us) in itemised bills, we have an online billing
system. This allows you to get the previous 3 month's bills and a bill for
the present month up to 4:30am today.
The commands are: BILLING, FILEBILLING.
Getting an itemised bill
------------------------
At the Main: prompt, enter BILLING. CIX asks you if you want the bill in
ascii (continuous output, for logging to a disk file) or paged (for perusing
online). Once you have selected A or P, CIX then asks you for a month. Just
press the return key for the present month, or enter the month name, e.g., Jan
Feb Mar Apr May etc. CIX then asks you for a year; again, just press return
for the present year. The bill will then be displayed, itemised for every
login.
To write the bill to your scratchpad instead of to your terminal, enter
FILEBILLING. CIX then prompts you for the month and year.
============== binmail =============
COMMAND: BINMAIL
PROMPT: Mail:
SYNTAX: BINMAIL <username> <filename>
PURPOSE: Send a file from your directory to another user.
BINMAIL is one of the most useful commands on CIX. It allows you to
send files from your personal directory to that of any other user.
These files can be anything at all - text, source code, complete
programs etc. Files are stored in users binmail directories until their
timestamp (you can see this when you use the DIR command) is more than
30 days old.
BINMAIL is not for sending Binary files in mail message out of CIX,
across the internet. It is an internal to CIX thing only. Please see
HELP EXTERNALMAIL for information on how to send a binary file outside
CIX.
It is principally used in order to make downloading at the other end
simple, or when the text file involved is rather larger than can
comfortably be taken in at one reading.
You are not notified on receiving BINMAIL so it's a good idea to send
a MAIL message too, to let the recipient know the fact that they have
received something, and the name of the file sent.
From the Mail prompt:
BINMAIL <username> <filename> : send private file to user
DIR : show private files
FUL : upload private file(s)
FDL <filename> : download private file(s)
ERAse <filename> : erase private file(s)
REName <oldname> <newname> : rename private file
FAL <filename> : list contents of .ARC or .ZIP file
EXPORT <filename> : copy private file to conference topic
Sequence to send binary mail:
MAIL : to enter mail system
DIR : to check the filename
FUL : to upload private file(s)
BINMAIL <user> <filename> : to send the file
MAIL <user> : Tell the recipient what you've sent
Sequence for receiver:
MAIL : to enter mail system
DIR : to see received files
FDL <filename> : to download file(s)
ERAse <filename> : to delete file(s)
============== break =============
The "cancel command" or "interrupt character" is ^X.
Previously it has been ^\ or ^|.
Most actions can be aborted with ^X, but the utility
is not made fail-safe, which means that strange effects
may infrequently result.
Of course in the full screen editor ^X is used to
move the cursor down.
============== buddy =============
OPT BUDDY N Q ; turn off buddy help
============== bye =============
Command: BYE -- Terminate your CIX session.
Prompts: Main: Read: Mail:
Format: BYE
See also: LOGIN
Usage: When you have finished your CIX session, enter "bye". If there is
unread mail in your Inbasket, CIX asks you if you still want to log
off. If you have a scratchpad and/or an arc'd scratchpad, CIX asks
you if you want to delete it.
Note: If you want to retain your connection to CIX, so you may log in to
another account, use instead the LOGIN command at the Main: prompt.
============== cancel =============
The "cancel command" or "interrupt character" is ^X.
Previously it has been ^\ or ^|.
Most actions can be aborted with ^X, but the utility
is not made fail-safe, which means that strange effects
may infrequently result.
Of course in the full screen editor ^X is used to
move the cursor down.
============== chat =============
Command: CHAT - allows you to listen and talk to other
users without using mail messages or conferences
messages.
Usage: Lets you listen and talk to other users who are
online at the same time as you, without using
mail messages or conferences messages.
Example: From Main: prompt type chat on
Read: prompt type chat on
Mail: prompt type chat on
Option: prompt type chat on
This will turn 'chat on' for your current CIX
session only. If you always want to listen for
Chat, add 'chat on' to your profile.
CHAT ON will read your incoming chat, allowing
people to say they want to chat with you or pass
you a message. The system will always check what
messages are waiting before you are due to make
enter a command at a prompt. It will not
interrupt you if you are 'doing' something like
reading a message or typing a reply. Chat
'buts-in' like this
*CHAT*
.
. The messages you have received
.
*ENDCHAT*
If nothing is waiting, Chat will stay quiet.
Chat messages
There are two varieties of Chat messages
*username*: is paging you for a chat
*username*: is now only listening
These are 'system' messages. The first one
appears before a user can send you his first chat
message. It is usually followed by his first
message. The second message appears when a user
has been talking to you but has now stopped.
<username>: message
This is a message the user (username) has typed.
Talking to another user
To enter into conversation, type from the prompt,
CHAT. A list of users who are online (but who
may or may not be listening) appears on your
screen. You may type in the name of one of them
or press return, which redisplays an updated
version of the list. Once you have entered a
name, the system will try and put you through.
If they are not listening or not logged on, you
will be told that they are not available, and you
will be returned to the prompt where you entered
CHAT. If you are responding to a paging message,
you can just type CHAT username, which will put
you through, unless the user has disconnected.
In Chat mode the prompt is
>
(* There is no prompt in terse mode)
at which you may type any message. Once you
press RETURN, the message will be sent to the
user you are talking to.
Every 10 seconds or so, the system will check for
incoming messages and print them on your screen.
This may break up the line you are typing, but do
not worry, it is still complete in CIX's memory.
If you use a communications program which has a
CHAT mode, switch it on. These modes usually
split your terminal screen and make it easier to
type messages. See your programs documentation
for more details. (Procomm and Telix both have
chat modes).
You have a number of commands you may use in chat
mode. They are all preceded by the / character.
They can also be abbreviated to one charatcter eg
/help or /h.
/noecho
Will disable CIX from echoing back what you type.
(note that this mode is AUTOMATICALLY turned back
on when you quit chat)
/echo
Will reanable echoing.
/help
Displays a quick list of commands.
/quit
Allows you to leave chat. When you leave, it
sends a message to whoever you were talking to
that you are now only listening. BUT remember
that you will continue to recieve chat until you
either disconnect or type chat off.
/also username
Also sends any message you type to that username
as well as whoever you are already chatting to.
eg. You are chatting to fred, and bill pages you
for a chat. Type /also bill and your messages
will go to fred and bill, but note that unless
fred also type /also bill and bill types /also
fred, fred and bill won't be able to hear each
other...
/xclude username
Opposite of /also command, it stops sending
messages to that username.
/list
Show's the list of people to whom your messages
are going to.
/who
Shows you who is online
/resume username
Shows you username's resume.... eg:/resume fthorn
/msg username message
Sends a private message to username. This
message is ONLY sent to that user. When it
arrives, it is denoted as a private message,
because instead of the <name>: identifier, it
appears as >name<: .
If you just press return with a blank line,
nothing is sent BUT your incoming chat will be
checked.
After you /quit , you will continue listening
until you type CHAT OFF.
IMPORTANT : WHEN IN CHAT MODE AUTO DISCONNECT IS DISABLED!
==============================================
============== checkpoint =============
Command: CHECKPOINT -- Writes your current message pointers to disk
Prompts: Main: Read:
Format: CHECKPOINT
See also: STORE, RESTORE
Usage Basically, store doesn't store your CURRENT message pointers, it
backs up the message pointers that are stored on disk.
This is because, to increase speed, when you log in CIX loads your
pointers off disk into memory and as you read message or join and
resign conferences the pointers are changed in memory and NOT
written to disk. Therefore when you use a STORE command CIX backs
up your pointers stored on disk, not the changed ones in memory.
This is what the CHECKPOINT command is for, it writes your CURRENT
message pointers (stored in memory) to disk so when you do a STORE
the message pointers you expected were backed up.
============== cixtest =============
Command: CIXTEST -- test the communication path between your terminal and
CIX
Prompt: Main:
Format: CIXTEST
Usage: CIX presents you with the following menu:
M E N U
1) Loopback received characters
2) Redisplay results from 1)
3) Display one received character as hex and ASCII
4) Display many received characters as hex
5) Send XON
6) Send XOFF
7) Send received hex value as one character
8) Send all 256 possible characters
9) Quit
10) Send lots of text output (with XON/XOFF flow control)
11) Send received hex values as characters
Choice?
============== clear =============
COMMAND: CLEAR
PROMPT: Mail:
SYNTAX: CLEAR INBASKET [FROM number][TO number][QUICK]
CLEAR OUTBASKET [FROM number][TO number][QUICK]
PURPOSE: Tidy up your in or out mailbaskets.
If you have a lot of mail your mailbox soon becomes rather full. After
several days CIX automatically deletes old mail from your mailbox,
but it's a good idea to get rid of your unwanted correspondence
voluntarily.
Don't forget you can use the FILE command to copy mail messages to
your scratchpad for subsequent downloading if there's anything you
need to retain for the future.
The clear command allows you to quickly tidy up your mail baskets.It
will display all the "Read" messages and ask you whether you want to
delete them or not.The syntax is;
CLEAR INBASK Clear read messages in inbasket
CLEAR OUTBASK Clear read messages in outbasket
By appending the word QUICK to this command, it will automatically
delete ALL Read messages. ie CLEAR INBASK QUICK.
You can also specify a range of messages to be tidied and worked on
for example;
CLEAR INBASKET FROM 621000 TO 623000 QUICK
This would delete all read mail messages in the inbasket from mail
message 621000 to mail message 623000 and it would NOT confirm each
deletion
CLEAR OUTBASKET FROM 623000
This would delete all read mail messages from the outbasket from mail
message 623000 to the last mail message and would ask for confirmation
of each deletetion.
============== colour =============
OPT ANSI Y Y Q ; turns on colours in CIX.
You will have to set your terminal to accept ANSI codes.
TO set other colours than default do
OPT ANSI Y N
33
34
Q
It won't work if put on a single line, unfortunately.
This will result in ESC[33m being sent before the prompt,
and ESC[34m being sent after the prompt.
Default settings are ;1;33;40 and ;37, resulting in these codes being sent:
Before prompt ESC[;1;33;40m Bright Yellow on Black
After prompt ESC[;37 White on Black
The ANSI colour codes are something like this:
Foreground Background
Black 30 40
Red 31 41
Green 32 42
Yellow 33 43
Blue 34 44
Magenta 35 45
Cyan 36 46
White 37 47
To combine several values, separate with ';'
5;30;47 Blinking Black on White
4;33;44 Underlined Yellow on Blue
The ANSI attribute codes are something like this:
1 High intensity
4 Underline
5 Blinking
7 Reverse
============== commands =============
Command Sub-Commands
------- ------------------------------------------
bye
billing (online billing)
edit ... resume, scratchpad, profile, workfile
file ... <CoSy command>
help ... <item to get help on>
join ... <conference name>
mail ... to, read, status
moderate add <participant>, add <topic>, new <conf name>, terminate, ...
noecho
read ... all, backward, comment, first, forward, header, last,
quit,reference, say, skip, <number> to <number>, resign
show ... all, new, participant, resume <name>, who <name>, <conf name>
terse
time
verbose
See also 'help hfiles'.
============== comment =============
comment
If there is a message that you want to comment on, then, after you
have read the message, you can type "comment". CIX/CoSy will then put you
into the 'text gobbler' where you can type your comment (finish entry
of your comment with a full-stop, after which you will be at the
Add/Action: prompt where you may add, edit or discard your message).
The difference between saying and commenting is that when you
comment, a pointer to your new message is added to the message you
were commenting on. These pointers are automatically followed when you
are reading messages by "reference" mode (see 'read ref').
(Note, if you already have text in your scratchpad, then you will be
put straight into the editor)
============== comms =============
There have been recent questions about making your modem go as fast
as possible.
You need a number of things to ensure fast downloads.
1: Zmodem (or Ymodem-G but lets not confuse things) as a file
transfer protocol. If you have an error correcting modem (MNP1-5 or
V42 - bis) then ensure the data compression is turned on
2: RTS/CTS. Sometimes called hardware handshaking, or flow control,
whatever it is turn it on. You will often find this under the Terminal
Options section of your comms package setup. You should also check your
cable is capable of doing rts/cts. Pins 4 and 5 handle this but and
will either be crossed 4 to 5 and 5 to 4 or will be straight though.
How can you tell if yours need to be crossed or straight though, if
pins 2 and 3 are crossed then so should pins 4 and 5.
3: An Unclogged PC. It easy to clog up a PC, just run a program which
steals interrupts. If downloading within windows you may have problems,
watch out for running a mouse driver on the same serial port you use
the modem with. I've even heard of people having problems with the Keyb
program in Dos 5.
4: The rest. There are various other little things to do with the modem
many of which are diagnostic and will help you find where things are
going wrong, or at least cut out the complications.
a) Ensure you have the modem set to tell you what speed you have
connected at, as well as if you got error correction and data
compression.
b) Ensure you have the modem set to connect at its fastest speed (up to
v.32bis - 14,400).
c) If you have trouble connecting, tell the modem not to scan for a
speed, ie connect at the fastest speed possible and don't bother to try
any others. Usually ATN0 <- thats a zero BTW.
d) If you are having problems with connecting at fast rates, try
dialling from the terminal using ATDT<phone number>, instead of using the
dialling directory.
============== comod =============
Command: COMOD -- add another moderator to the current conference.
Prompts: Mod: Read:
Format: COMOD <username>
See also: EXMOD
============== conditions =============
The latest set of Terms and Conditions for everyone using CIX Conferencing
can be found in cix:cixnews/reference:26 or at
http://web.conferencing.co.uk/includes/terms-2.4.htm.
============== confstat =============
Command: GO CONFSTAT or RUN CONFSTAT
Prompt: Main:
Confstat is a conference statistic program, it provides the following
information:
* Creation Date
* Moderator Name(s)
* Number of Participants
* Number of Topics
* Number of Messages in Total
* Last Message Date
NOTE: If you are at the Main: or Mail: prompt, then you will be prompted for
a conference name to display the statistics on. If you are the Read:
prompt, then the program will assume you want statistics on the
conference you are currently in.
You will then be prompted to either press <CR> for statistics on topics,
or q will quit at this point.
Topc Statistics include:
* Topic Name
* Number of Messages
* Number of Files
* Last Msg Date
* Activity Rating (100 - Very active, 1 - Very quiet)
* Number of messages posted in the last 24 hours. (Max. 100)
* Number of messages posted in the last 7 days. (Max. 100)
The Busyness rating is calculated by getting the date of the last 100 messages,
for each message that is posted within the last ten days, the rating will
increase by a factor of 1.
============== cookie =============
COOKIE
from Main: will display a "word of wisdom" from the closed
conference "Epithets"
============== copy =============
copy <message number> TO <conference> <topic>
Message number = the number of the message to be copied,
Conference = The name of the conference where the message is
to be added
Topic = The topic name if the conference contains more
than one topic.
============== crash =============
If your conference list gets corrupted, type RESTORE at the main
prompt. This will restore your conference list to the way it was at the
start of the day.
Related command: STORE.
============== create =============
To create a new conference, use
MODerate New <conference name>
To create (send) a letter, use
MAil Send
============== date =============
COMMAND: DATE
PROMPT: Read:
SYNTAX: READ DATE <date> [ to DATE <date> ]
PURPOSE: Find and read messages by date.
DATE is an option of READ, used for accessing conference entries by
date of entry, or since a certain date. The date must be entered
without intervening spaces between the day, month, and year,
and with the month in alphabetic form.
The month may be abbreviated if the abbreviation is not ambiguous.
Valid date formats:
23jun94 = 23 June 1994
27f1999 = 27 Feb. 1999
Incorrect formats:
20/11/92 -- date contains slashes
12ju94 -- is month 'June' or 'July' ?
91Dec2 -- order should be day, month, year
Feb 5, 97 -- mustn't contain spaces
Example: READ DATE 23JUN99 TO DATE 25AUG99
/* DATE help file updated 16Feb1999 */
============== dejavu =============
If you read by reference, and quit from the topic without reading
all new messages, then you are likely to reread some of the messages
from that topic.
============== delete =============
At the Mail: prompt
DELETE will delete your last read message.
The "delete ####" command will delete all entries for message "####"
from your 'Out-Basket'. The message remains in the system, however,
until read and deleted by the recipient(s).
To delete a private file type ERA <filename>
To delete a topic file as a moderator type ERA <filename> from read prompt.
============== download =============
download
--------
Main/Read Subsystem:
In the 'main' or 'read' subsystem, "download" is used to transfer a file
from your COSY scratchpad to your micro (for local processing or whatever).
The COSY scratchpad can be filled using the FILE command.
If you have an archived scratchpad (see the ARCSCRATCH command), download
will ask you if you want to download that copy. Answer no and you can
download the ASCII version.
download <protocol>
-------------------
Option Subsystem:
In the 'option' subsystem, you can define the transfer protocol to use
when downloading files. Currently available are: