]> code.citadel.org Git - citadel.git/blob - citadel/techdoc/session.txt
* Changed the format of RWHO output to provide non-masqueraded user/room/host
[citadel.git] / citadel / techdoc / session.txt
1                   SESSION LAYER PROTOCOL FOR CITADEL/UX
2          (c) 1995-2000 by Art Cancro et. al.    All Rights Reserved
3    
4   
5  INTRODUCTION
6  ------------        
7
8  This is an attempt to document the session layer protocol used by the
9 Citadel/UX system, beginning with version 4.00, which is the first version
10 to implement a client/server paradigm.  It is intended as a resource for
11 programmers who intend to develop their own Citadel clients, but it may have
12 other uses as well.
13  
14  
15  IMPORTANT NOTE TO DEVELOPERS!
16  -----------------------------
17  
18  Anyone who wants to add commands or other functionality to this protocol,
19 *please* get in touch so that these efforts can be coordinated.  New
20 commands added by other developers can be added to this document, so we
21 don't end up with new server commands from multiple developers which have
22 the same name but perform different functions.  If you don't coordinate new
23 developments ahead of time, please at least send in an e-mail documenting
24 what you did, so that your new commands can be added to this document.
25  
26  The coordinator of the Citadel/UX project is Art Cancro
27 <ajc@uncnsrd.mt-kisco.ny.us>.
28     
29   
30  CONNECTING TO A SERVER
31  ----------------------
32   
33  The protocols used below the session layer are beyond the scope of this
34 document, but we will briefly cover the methodology employed by Citadel/UX.
35  
36  Citadel/UX offers Citadel BBS service using TCP/IP.  It does so via a
37 multithreaded server listening on a TCP port.  Older (4.xx) versions employed
38 an inetd-based server.
39  
40  The port number officially assigned to Citadel by the IANA is TCP/504.  Since
41 our session layer assumes a clean, reliable, sequenced connection, the use
42 of UDP would render the server unstable and unusable, so we stick with TCP.
43    
44    
45  GENERAL INFORMATION ABOUT THE SERVER
46  ------------------------------------
47   
48  The server is connection-oriented and stateful: each client requires its own
49 connection to a server process, and when a command is sent, the client must
50 read the response, and then transfer data or change modes if necessary.
51  
52  The session layer is very much like other Internet protocols such as SMTP
53 or NNTP.  A client program sends one-line commands to the server, and the
54 server responds with a three-digit numeric result code followed by a message
55 describing what happened.  This cycle continues until the end of the
56 session.
57  
58  Unlike protocols such as FTP, all data transfers occur in-band.  This means
59 that the same connection that is used for exchange of client/server
60 messages, will also be used to transfer data back and forth.  (FTP opens a
61 separate connection for data transfers.)  We do this to allow the server to
62 function over transports which can only handle one session at a time (such
63 as a dialup connection).
64  
65    
66  RESULT CODES
67  ------------
68  
69  The server will respond to all commands with a 3-digit result code, which
70 will be the first three characters on the line.  The rest of the line may
71 contain a human-readable string explaining what happened.  (Some client
72 software will display some of these strings to the user.)
73  
74  The first digit is the most important.  The following codes are defined for
75 this position: ERROR, OK, MORE_DATA, LISTING_FOLLOWS, and SEND_LISTING.
76  
77  The second and third digits may provide a reason as to why a command
78 succeeded or failed.  See ipcdef.h for the available codes.
79  
80  ERROR means the command did not complete.
81  OK means the command executed successfully.
82  MORE_DATA means the command executed partially.  Usually this means that
83 another command needs to be executed to complete the operation.  For example,
84 sending the USER command to log in a user usually results in a MORE_DATA
85 result code, because the client needs to execute a PASS command to send the
86 password and complete the login.
87  LISTING_FOLLOWS means that after the server response, the server will
88 output a listing of some sort.  The client *must* read the listing, whether
89 it wants to or not.  The end of the listing is signified by the string
90 "000" on a line by itself.
91  SEND_LISTING is the opposite of LISTING_FOLLOWS.  It means that the client
92 should begin sending a listing of some sort.  The client *must* send something,
93 even if it is an empty listing.  Again, the listing ends with "000" on a line
94 by itself.
95   
96   
97  PARAMETERIZATION
98  ----------------
99  
100  Zero or more parameters may be passed to a command.  When more than one
101 parameter is passed to a command, they should be separated by the "|"
102 symbol like this:
103   SETU 80|24|260
104  In this example, we're using the "SETU" command and passing three
105 parameters: 80, 24, and 260.
106  
107  When the server spits out data that has parameters, if more than one
108 parameter is returned, they will be separated by the "|" symbol like
109 this:
110   200 80|24|260
111  In this example, we just executed the "GETU" command, and it returned us
112 an OK result code (the '2' in the 200) and three parameters: 80, 24, and
113 260.
114  
115  
116  COMMANDS
117  --------
118  
119  This is a listing of all the commands that a Citadel/UX server can execute.
120  
121    
122  NOOP   (NO OPeration)
123  
124  This command does nothing.  It takes no arguments and always returns
125 OK.  It is intended primarily for testing and development, but it might also
126 be used as a "keep alive" command to prevent the server from timing out, if
127 it's running over a transport that needs this type of thing.
128  
129    
130  ECHO   (ECHO something)
131  
132  This command also does nothing.  It simply returns OK followed by whatever
133 its arguments are.
134  
135   
136  QUIT   (QUIT)
137   
138  Terminate the server connection.  This command takes no arguments.  It
139 returns OK and closes the connection immediately.
140  
141  
142  LOUT   (LogOUT)
143  
144  Log out the user without closing the server connection.  It always returns
145 OK even if no user is logged in.
146  
147   
148  USER   (send USER name)
149  
150  The first step in logging in a user.  This command takes one argument: the
151 name of the user to be logged in.  If the user exists, a MORE_DATA return
152 code will be sent, which means the client should execute PASS as the next
153 command.  If the user does not exist, ERROR is returned.
154  
155  
156  PASS   (send PASSword)
157  
158  The second step in logging in a user.  This command takes one argument: the
159 password for the user we are attempting to log in.  If the password doesn't
160 match the correct password for the user we specified for the USER command,
161 or if a USER command has not been executed yet, ERROR is returned.  If the
162 password is correct, OK is returned and the user is now logged in... and
163 most of the other server commands can now be executed.  Along with OK, the
164 following parameters are returned:
165  
166  0 - The user's name (in case the client wants the right upper/lower casing)
167  1 - The user's current access level
168  2 - Times called
169  3 - Messages posted
170  4 - Various flags (see citadel.h)
171  5 - User number
172  
173  
174  NEWU   (create NEW User account)
175  
176  This command creates a new user account and logs it in.  The argument to
177 this command will be the name of the account.  No case conversion is done
178 on the name.  Note that the new account is installed with a default
179 configuration, and no password, so the client should immediately prompt the
180 user for a password and install it with the SETP command as soon as this
181 command completes.  This command returns OK if the account was created and
182 logged in, or ERROR if another user already exists with this name.  If OK,
183 it will also return the same parameters that PASS returns.
184  
185   
186  SETP   (SET new Password)
187  
188  This command sets a new password for the currently logged in user.  The
189 argument to this command will be the new password.  The command always
190 returns OK, unless the client is not logged in, in which case it will return
191 ERROR.
192  
193    
194  LKRN   (List Known Rooms with New messages)
195  
196  List known rooms with new messages.  If the client is not logged in, ERROR
197 is returned.  Otherwise, LISTING_FOLLOWS is returned, followed by the room
198 listing.  Each line in the listing contains the full name of a room, followed
199 by the '|' symbol, and then a number that may contain the following bits:
200
201
202 #define QR_PERMANENT    1               /* Room does not purge              */
203 #define QR_PRIVATE      4               /* Set for any type of private room */
204 #define QR_PASSWORDED   8               /* Set if there's a password too    */
205 #define QR_GUESSNAME    16              /* Set if it's a guessname room     */
206 #define QR_DIRECTORY    32              /* Directory room                   */
207 #define QR_UPLOAD       64              /* Allowed to upload                */
208 #define QR_DOWNLOAD     128             /* Allowed to download              */
209 #define QR_VISDIR       256             /* Visible directory                */
210 #define QR_ANONONLY     512             /* Anonymous-Only room              */
211 #define QR_ANON2        1024            /* Anonymous-Option room            */
212 #define QR_NETWORK      2048            /* Shared network room              */
213 #define QR_PREFONLY     4096            /* Preferred status needed to enter */
214 #define QR_READONLY     8192            /* Aide status required to post     */
215
216
217  Other bits may be defined in the future.  The listing terminates, as with
218 all listings, with "000" on a line by itself.
219  
220  Starting with version 4.01 and above, floors are supported.  The first 
221 argument to LKRN should be the number of the floor to list rooms from.  Only
222 rooms from this floor will be listed.  If no arguments are passed to LKRN, or
223 if the floor number requested is (-1), rooms on all floors will be listed.
224  
225  The third field displayed on each line is the number of the floor the room
226 is on.  The LFLR command should be used to associate floor numbers with
227 floor names.
228  
229  The fourth field displayed on each line is a "room listing order."  Unless
230 there is a compelling reason not to, clients should sort any received room
231 listings by this value.
232
233  
234  
235  LKRO   (List Known Rooms with Old [no new] messages)
236  
237  This follows the same usage and format as LKRN.
238  
239  
240  LZRM   (List Zapped RooMs)
241  
242  This follows the same usage and format as LKRN and LKRO.
243   
244   
245  LKRA   (List All Known Rooms)
246  
247  Same format.  Lists all known rooms, with or without new messages.
248  
249  
250  LRMS   (List all accessible RooMS)
251  
252  Again, same format.  This command lists all accessible rooms, known and
253 forgotten, with and without new messages.  It does not, however, list
254 inaccessible private rooms.
255   
256  
257  GETU   (GET User configuration)
258  
259  This command retrieves the screen dimensions and user options for the
260 currently logged in account.  ERROR will be returned if no user is logged
261 in, of course.  Otherwise, OK will be returned, followed by four parameters.
262 The first parameter is the user's screen width, the second parameter is the
263 user's screen height, and the third parameter is a bag of bits with the
264 following meanings:
265   
266  #define US_LASTOLD     16              /* Print last old message with new  */
267  #define US_EXPERT      32              /* Experienced user                 */
268  #define US_UNLISTED    64              /* Unlisted userlog entry           */
269  #define US_NOPROMPT    128             /* Don't prompt after each message  */
270  #define US_DISAPPEAR   512             /* Use "disappearing msg prompts"   */
271  #define US_PAGINATOR   2048            /* Pause after each screen of text  */
272  
273  There are other bits, too, but they can't be changed by the user (see below).
274  
275  The fourth parameter, if present, is the moderation level this user is
276 filtering at.
277  
278  
279  SETU   (SET User configuration)
280  
281  This command does the opposite of SETU: it takes the screen dimensions and
282 user options (which were probably obtained with a GETU command, and perhaps
283 modified by the user) and writes them to the user account.  This command
284 should be passed four parameters: the screen width, the screen height,
285 the option bits (see above), and the desired moderation level to filter at.
286  
287  Note that there exist bits here which are not listed in this document.  Some
288 are flags that can only be set by Aides or the system administrator.  SETU
289 will ignore attempts to toggle these bits.  There also may be more user 
290 settable bits added at a later date.  To maintain later downward compatibility,
291 the following procedure is suggested:
292  
293  1. Execute GETU to read the current flags
294  2. Toggle the bits that we know we can toggle
295  3. Execute SETU to write the flags
296  
297  If we are passed a bit whose meaning we don't know, it's best to leave it
298 alone, and pass it right back to the server.  That way we can use an old
299 client on a server that uses an unknown bit without accidentally clearing
300 it every time we set the user's configuration.
301  
302  
303  GOTO   (GOTO a room)
304  
305  This command is used to goto a new room.  When the user first logs in (login
306 is completed after execution of the PASS command) this command is
307 automatically and silently executed to take the user to the first room in the
308 system (usually called the Lobby).
309  
310  This command can be passed one or two parameters.  The first parameter is,
311 of course, the name of the room.  Although it is not case sensitive, the
312 full name of the room must be used.  Wildcard matching or unique string
313 matching of room names should be the responsibility of the client.
314  
315  Note that the reserved room name "_BASEROOM_" can be passed to the server
316 to cause the goto command to take the user to the first room in the system,
317 traditionally known as the Lobby>.   As long as a user is logged in, a
318 GOTO command to _BASEROOM_ is guaranteed to succeed.  This is useful to
319 allow client software to return to the base room when it doesn't know
320 where else to go.
321  
322  There are also two additional reserved room names:
323  "_MAIL_" translates to the system's designated room for e-mail messages.
324  "_BITBUCKET_" goes to whatever room has been chosen for messages
325 without a home.
326
327  The second (and optional) parameter is a password, if one is required for
328 access to the room.  This allows for all types of rooms to be accessed via
329 this command: for public rooms, invitation-only rooms to which the user
330 has access, and preferred users only rooms to which the user has access, the
331 room will appear in a room listing.  For guess-name rooms, this command
332 will work transparently, adding the room to the user's known room list when
333 it completes.  For passworded rooms, access will be denied if the password
334 is not supplied or is incorrect, or the command will complete successfully
335 if the password is correct.
336  
337  The possible result codes are:
338   
339  OK    - The command completed successfully.  User is now in the room.
340          (See the list of returned parameters below)
341  
342  ERROR - The command did not complete successfully.  Check the second and
343 third positions of the result code to find out what happened:
344  
345    NOT_LOGGED_IN     -  Of course you can't go there.  You didn't log in.
346    PASSWORD_REQUIRED -  Either a password was not supplied, or the supplied
347 password was incorrect.
348    NO_SUCH_ROOM      -  The requested room does not exist.
349  
350  The typical procedure for entering a passworded room would be:
351  
352  1. Execute a GOTO command without supplying any password.
353  2. ERROR+PASSWORD_REQUIRED will be returned.  The client now knows that
354 the room is passworded, and prompts the user for a password.
355  3. Execute a GOTO command, supplying both the room name and the password.
356  4. If OK is returned, the command is complete.  If, however,
357 ERROR+PASSWORD_REQUIRED is still returned, tell the user that the supplied
358 password was incorrect.  The user remains in the room he/she was previously
359 in.
360  
361  When the command succeeds, these parameters are returned:
362    0. The name of the room
363    1. Number of unread messages in this room
364    2. Total number of messages in this room
365    3. Info flag: set to nonzero if the user needs to read this room's info
366       file (see RINF command below)
367    4. Various flags associated with this room.  (See LKRN cmd above)
368    5. The highest message number present in this room
369    6. The highest message number the user has read in this room
370    7. Boolean flag: 1 if this is a Mail> room, 0 otherwise.
371    8. Aide flag: 1 if the user is either the Room Aide for this room, *or* is
372 a regular Aide (this makes access checks easy).
373    9. The number of new Mail messages the user has (useful for alerting the
374 user to the arrival of new mail during a session)
375   10. The floor number this room resides on
376   
377   
378  MSGS   (get pointers to MeSsaGeS in this room)
379  
380  This command obtains a listing of all the messages in the current room
381 which the client may request.  This command may be passed a single parameter:
382 either "all", "old", or "new" to request all messages, only old messages, or
383 new messages.  Or it may be passed two parameters: "last" plus a number, in
384 which case that many message pointers will be returned, or "first" plus a
385 number, for the corresponding effect.  If no parameters are specified, "all"
386 is assumed.
387  
388  In Citadel/UX 5.00 and above, the client may also specify "gt" plus a number,
389 to list all messages in the current room with a message number greater than
390 the one specified.
391   
392  The third argument, valid only in Citadel/UX 5.60 and above, may be either
393 0 or 1.  If it is 1, this command behaves differently: before a listing is
394 returned, the client must transmit a list of fields to search for.  The field
395 headers are listed below in the writeup for the "MSG0" command.
396  
397  This command can return three possible results.  An ERROR code may be returned
398 if no user is currently logged in or if something else went wrong.  Otherwise,
399 LISTING_FOLLOWS will be returned, and the listing will consist of zero or
400 more message numbers, one per line.  The listing ends, as always, with the
401 string "000" alone on a line by itself.  The listed message numbers can be used
402 to request messages from the system.  If "search mode" is being used, the
403 server will return START_CHAT_MODE, and the client is expected to transmit
404 the search criteria, and then read the message list.
405  
406  Since this is somewhat complex, here are some examples:
407  
408  Example 1: Read all new messages
409  
410  Client:   MSGS NEW
411  Server:   100 Message list...
412            523218
413            523293
414            523295
415            000
416  
417  Example 2: Read the last five messages
418  
419  Client:   MSGS LAST|5
420  Server:   100 Message list...
421            523190
422            523211
423            523218
424            523293
425            523295
426            000
427  
428  Example 3: Read all messages written by "IGnatius T Foobar"
429  
430  Client:   MSGS ALL|0|1
431  Server:   800 Send template then receive message list
432  Client:   from|IGnatius T Foobar
433            000
434  Server:   518604
435            519366
436            519801
437            520201
438            520268
439            520805
440            520852
441            521579
442            521720
443            522571
444            000
445  
446  Note that in "search mode" the client may specify any number of search
447 criteria.  These criteria are applied with an AND logic.
448  
449  
450   
451  MSG0   (read MeSsaGe, mode 0)
452    
453  This is a command used to read the text of a message.  "Mode 0" implies that
454 other MSG commands (MSG1, MSG2, etc.) will probably be added later on to read
455 messages in more robust formats.  This command should be passed two arguments.
456 The first is the message number of the message being requested.  In server 
457 version 4.04 and above, the second argument may be set to either 0 to read the
458 entire message, or 1 to read the headers only.
459  
460  The server should, of course, make sure that the client actually has access
461 to the message being requested before honoring this request.  Citadel/UX does
462 so by checking the message number against the contents of the current room.  If
463 it's not there, the request is denied.
464  
465  If the request is denied, an ERROR code will be returned.  Otherwise, the
466 LISTING_FOLLOWS code will be returned, followed by the contents of the message.
467 The following fields may be sent:
468   
469  type=   Formatting type.  The currently defined types are:
470   0 = "traditional" Citadel formatting.  This means that newlines should be
471 treated as spaces UNLESS the first character on the next line is a space.  In
472 other words, only indented lines should generate a newline on the user's screen 
473 when the message is being displayed.  This allows a message to be formatted to
474 the reader's screen width.  It also allows the use of proportional fonts.
475   1 = a simple fixed-format message.  The message should be displayed to
476 the user's screen as is, preferably in a fixed-width font that will fit 80
477 columns on a screen.
478   4 = MIME format message.  The message text is expected to contain a header
479 with the "Content-type:" directive (and possibly others).
480   
481  msgn=   The message ID of this message on the system it originated on.
482  path=   An e-mailable path back to the user who wrote the message.
483
484  time=   The date and time of the message, in Unix format (the number of
485 seconds since midnight on January 1, 1970, GMT).
486
487  from=   The name of the author of the message.
488  rcpt=   If the message is a private e-mail, this is the recipient.
489  room=   The name of the room the message originated in.
490  node=   The short node name of the system this message originated on.
491  hnod=   The long node name of the system this message originated on.
492  zaps=   The id/node of a message which this one zaps (supersedes).
493  
494  text    Note that there is no "=" after the word "text".  This string
495 signifies that the message text begins on the next line.
496   
497    
498  WHOK   (WHO Knows room)
499  
500  This command is available only to Aides.  ERROR+HIGHER_ACCESS_REQUIRED will
501 be returned if the user is not an Aide.  Otherwise, it returns
502 LISTING_FOLLOWS and then lists, one user per line, every user who has
503 access to the current room.
504  
505  
506  INFO   (get server INFO)
507  
508  This command will *always* return LISTING_FOLLOWS and then print out a
509 listing of zero or more strings.  Client software should be written to expect
510 anywhere from a null listing to an infinite number of lines, to allow later
511 backward compatibility.  The current implementation defines the following
512 parts of the listing:
513  
514  Line 1  - Your unique session ID on the server
515  Line 2  - The node name of the server BBS
516  Line 3  - Human-readable node name of the server BBS
517  Line 4  - The fully-qualified domain name (FQDN) of the server
518  Line 5  - The name of the server software, i.e. "Citadel/UX 4.00"
519  Line 6  - (The revision level of the server code) * 100
520  Line 7  - The geographical location of the BBS (city and state if in the US)
521  Line 8  - The name of the system administrator
522  Line 9  - A number identifying the server type (see below)
523  Line 10 - The text of the system's paginator prompt
524  Line 11 - Floor Flag.  1 if the system supports floors, 0 otherwise.
525  Line 12 - Paging level.  0 if the system only supports inline paging,
526            1 if the system supports "extended" paging (check-only and
527            multiline modes).  See the SEXP command for further information.
528  
529  *** NOTE! ***   The "server type" code is intended to promote global
530 compatibility in a scenario in which developers have added proprietary
531 features to their servers or clients.  We are attempting to avoid a future
532 situation in which users need to keep different client software around for
533 each BBS they use.  *Please*, if you are a developer and plan to add
534 proprietary features:
535  
536  -> Your client programs should still be able to utilize servers other than
537 your own.
538  -> Clients other than your own should still be able to utilize your server,
539 even if your proprietary extensions aren't supported.
540  -> Please contact Art Cancro <ajc@uncnsrd.mt-kisco.ny.us> and obtain a unique
541 server type code, which can be assigned to your server program.
542  -> If you document what you did in detail, perhaps it can be added to a
543 future release of the Citadel/UX program, so everyone can enjoy it.  Better
544 yet, just work with the Citadel development team on the main source tree.
545  
546  If everyone follows this scheme, we can avoid a chaotic situation with lots
547 of confusion about which client program works with which server, etc.  Client
548 software can simply check the server type (and perhaps the revision level)
549 to determine ahead of time what commands may be utilized. 
550  
551  Please refer to "developers.txt" for information on what codes belong to whom.
552
553   
554    
555  RDIR   (Read room DIRectory)
556  
557  Use this command to read the directory of a directory room.  ERROR+NOT_HERE
558 will be returned if the room has no directory, or some other error; ERROR +
559 HIGHER_ACCESS_REQUIRED will be returned if the room's directory is not
560 visible and the user does not have Aide or Room Aide privileges; otherwise
561 LISTING_FOLLOWS will be returned, followed by the room's directory.  Each
562 line of the directory listing will contain three fields: a filename, the
563 length of the file, and a description.
564  
565  The server message contained on the same line with LISTING_FOLLOWS will
566 contain the name of the system and the name of the directory, such as:
567   uncnsrd.mt-kisco.ny.us|/usr/bbs/files/my_room_directory
568  
569  
570  SLRP   (Set Last-message-Read Pointer)
571  
572  This command is used to mark messages as having been read.  Its sole parameter
573 is the number of the last message that has been read.  This allows the pointer
574 to be set at any arbitrary point in the room.  Optionally, the parameter
575 "highest" may be used instead of a message number, to set the pointer to the
576 number of the highest message in the room, effectively marking all messages
577 in the room as having been read (ala the Citadel <G>oto command).
578
579  The command will return OK if the pointer was set, or ERROR if something
580 went wrong.  If OK is returned, it will be followed by a single argument
581 containing the message number the last-read-pointer was set to.
582  
583  
584  INVT   (INViTe a user to a room)
585  
586  This command may only be executed by Aides, or by the room aide for the
587 current room.  It is used primarily to add users to invitation-only rooms,
588 but it may also be used in other types of private rooms as well.  Its sole
589 parameter is the name of the user to invite.
590  
591  The command will return OK if the operation succeeded, or ERROR if it did
592 not.  ERROR+HIGHER_ACCESS_REQUIRED may also be returned if the operation
593 would have been possible if the user had higher access, and ERROR+NOT_HERE
594 may be returned if the room is not a private room.
595  
596  
597  KICK   (KICK a user out of a room)
598  
599  This is the opposite of INVT: it is used to kick a user out of a private
600 room.  It can also be used to kick a user out of a public room, but the
601 effect will only be the same as if the user <Z>apped the room - a non-stupid
602 user can simply un-zap the room to get back in.
603  
604  
605  GETR   (GET Room attributes)
606  
607  This command is used for editing the various attributes associated with a
608 room.  A typical "edit room" command would work like this:
609  1. Use the GETR command to get the current attributes
610  2. Change some of them around
611  3. Use SETR (see below) to save the changes
612  4. Possibly also change the room aide using the GETA and SETA commands
613  
614  GETR takes no arguments.  It will only return OK if the SETR command will
615 also return OK.  This allows client software to tell the user that he/she
616 can't edit the room *before* going through the trouble of actually doing the
617 editing.  Possible return codes are:
618  
619  ERROR+NOT_LOGGED_IN          - No user is logged in.
620  ERROR+HIGHER_ACCESS_REQUIRED - Not enough access.  Typically, only aides
621 and the room aide associated with the current room, can access this command.
622  ERROR+NOT_HERE               - Lobby>, Mail>, and Aide> cannot be edited.
623  OK                           - Command succeeded.  Parameters are returned.
624  
625  If OK is returned, the following parameters will be returned as well:
626  
627  0. The name of the room
628  1. The room's password (if it's a passworded room)
629  2. The name of the room's directory (if it's a directory room)
630  3. Various flags (bits) associated with the room (see LKRN cmd above)
631  4. The floor number on which the room resides
632  5. The room listing order
633   
634   
635  SETR   (SET Room attributes)
636  
637  This command sets various attributes associated with the current room.  It
638 should be passed the following arguments:
639  
640  0. The name of the room
641  1. The room's password (if it's a passworded room)
642  2. The name of the room's directory (if it's a directory room)
643  3. Various flags (bits) associated with the room (see LKRN cmd above)
644  4. "Bump" flag (see below)
645  5. The floor number on which the room should reside
646  6. The room listing order
647  
648  *Important: You should always use GETR to retrieve the current attributes of
649 the room, then change what you want to change, and then use SETR to write it
650 all back.  This is particularly important with respect to the flags: if a
651 particular bit is set, and you don't know what it means, LEAVE IT ALONE and
652 only toggle the bits you want to toggle.  This will allow for upward
653 compatibility.
654  
655  If the room is a private room, you have the option of causing all users who
656 currently have access, to forget the room.  If you want to do this, set the
657 "bump" flag to 1, otherwise set it to 0.
658  
659  
660  GETA
661  
662  This command is used to get the name of the Room Aide for the current room.
663 It will return ERROR+NOT_LOGGED_IN if no user is logged in, ERROR if there
664 is no current room, or OK if the command succeeded.  Along with OK there will
665 be returned one parameter: the name of the Room Aide.
666    
667   
668  SETA
669  
670  The opposite of GETA, used to set the Room Aide for the current room.  One
671 parameter should be passed, which is the name of the user who is to be the
672 new Room Aide.  Under Citadel/UX, this command may only be executed by Aides
673 and by the *current* Room Aide for the room.  Return codes possible are:
674  ERROR+NOT_LOGGED_IN            (Not logged in.)
675  ERROR+HIGHER_ACCESS_REQUIRED   (Higher access required.)
676  ERROR+NOT_HERE                 (No current room, or room cannot be edited.
677 Under Citadel/UX, the Lobby> Mail> and Aide> rooms are non-editable.)
678  OK                             (Command succeeded.)
679   
680  
681  ENT0   (ENTer message, mode 0)
682   
683  This command is used to enter messages into the system.  It accepts four
684 arguments:
685  
686   0  -  Post flag.  This should be set to 1 to post a message.  If it is
687 set to 0, the server only returns OK or ERROR (plus any flags describing
688 the error) without reading in a message.  Client software should, in fact,
689 perform this operation at the beginning of an "enter message" command
690 *before* starting up its editor, so the user does not end up typing a message
691 in vain that will not be permitted to be saved.  If it is set to 2, the
692 server will accept an "apparent" post name if the user is privileged enough. 
693 This post name is arg 4.
694   1  -  Recipient.  This argument is utilized only for private mail messages.
695 It is ignored for public messages.  It contains, of course, the name of the
696 recipient of the message.
697   2  -  Anonymous flag.  This argument is ignored unless the room allows
698 anonymous messages.  In such rooms, this flag may be set to 1 to flag a
699 message as anonymous, otherwise 0 for a normal message.
700   3  -  Format type.  Any valid Citadel/UX format type may be used (this will
701 typically be 0; see the MSG0 command above).
702   4  -  Post name.  When postflag is 2, this is the name you are posting as.
703 This is an Aide only command.
704
705  Possible result codes:
706   OK  -  The request is valid.  (Client did not set the "post" flag, so the
707 server will not read in message text.)   If the message is an e-mail with
708 a recipient, the text that follows the OK code will contain the exact name
709 to which mail is being sent.  The client can display this to the user.  The
710 implication here is that the name that the server returns will contain the
711 correct upper and lower case characters.  In addition, if the recipient is
712 having his/her mail forwarded, the forwarding address will be returned.
713   SEND_LISTING  -  The request is valid.  The client should now transmit
714 the text of the message (ending with a 000 on a line by itself, as usual).
715   ERROR  -  Miscellaneous error.  (Explanation probably follows.)
716   ERROR + NOT_LOGGED_IN  -  Not logged in.
717   ERROR + HIGHER_ACCESS_REQUIRED  -  Higher access is required.  An
718 explanation follows, worded in a form that can be displayed to the user.
719   ERROR + NO_SUCH_USER  -  The specified recipient does not exist.
720  
721  
722  RINF   (read Room INFormation file)
723  
724  Each room has associated with it a text file containing a description of
725 the room, perhaps containing its intended purpose or other important
726 information.  The info file for the Lobby> (the system's base room) is
727 often used as a repository for system bulletins and the like.
728  
729  This command, which accepts no arguments, is simply used to read the info
730 file for the current room.  It will return LISTING_FOLLOWS followed by
731 the text of the message (always in format type 0) if the request can be
732 honored, or ERROR if no info file exists for the current room (which is
733 often the case).  Other error description codes may accompany this result.
734  
735  When should this command be used?  This is, of course, up to the discretion
736 of client software authors, but in Citadel it is executed in two situations:
737 the first time the user ever enters a room; and whenever the contents of the
738 file change.  The latter can be determined from the result of a GOTO command,
739 which will tell the client whether the file needs to be read (see GOTO above).
740   
741   
742  DELE   (DELEte a message)
743  
744  Delete a message from the current room.  The one argument that should be
745 passed to this command is the message number of the message to be deleted.
746 The return value will be OK if the message was deleted, or an ERROR code.
747 If the delete is successful, the message's reference count is decremented, and
748 if the reference count reaches zero, the message is removed from the message
749 base.
750
751
752  MOVE   (MOVE or copy a message to a different room)
753  
754  Move a message to a different room.  The two arguments that should be passed
755 to this command are the message number of the message to be deleted, and the
756 name of the target room.  If the operation succeeds, the message will be
757 deleted from the current room and moved to the target room.  An ERROR code
758 usually means that either the user does not have permission to perform this
759 operation, or that the target room does not exist.
760  
761  In Citadel/UX 5.55 and above, a third argument may be specified: 0 or 1 to
762 designate whether the message should be moved (0) or copied (1) to the target
763 room.  In the case of a "copy" operation, the message's reference count is
764 incremented, and a pointer to the message will exist in both the source *and*
765 target rooms.  In the case of a "move" operation, the message pointer is
766 deleted from the source room and the reference count remains the same.
767  
768
769  KILL   (KILL current room)
770  
771  This command deletes the current room.  It accepts a single argument, which
772 should be nonzero to actually delete the room, or zero to merely check
773 whether the room can be deleted.
774  
775  Once the room is deleted, the current room is undefined.  It is suggested
776 that client software immediately GOTO another room (usually _BASEROOM_)
777 after this command completes.
778  
779  Possible return codes:
780  
781  OK  -  room has been deleted (or, if checking only, request is valid).
782  ERROR+NOT_LOGGED_IN  -  no user is logged in.
783  ERROR+HIGHER_ACCESS_REQUIRED  -  not enough access to delete rooms.
784  ERROR+NOT_HERE  -  this room can not be deleted.
785  
786  
787  CRE8   (CRE[ate] a new room)
788  
789  This command is used to create a new room.  Like some of the other
790 commands, it provides a mechanism to first check to see if a room can be
791 created before actually executing the command.  CRE8 accepts the following
792 arguments:
793  
794  0  -  Create flag.  Set this to 1 to actually create the room.  If it is
795 set to 0, the server merely checks that there is a free slot in which to
796 create a new room, and that the user has enough access to create a room.  It
797 returns OK if the client should go ahead and prompt the user for more info,
798 or ERROR or ERROR+HIGHER_ACCESS_REQUIRED if the command will not succeed.
799  1  -  Name for new room.
800  2  -  Access type for new room:
801        0  -  Public
802        1  -  Private; can be entered by guessing the room's name
803        2  -  Private; can be entered by knowing the name *and* password
804        3  -  Private; invitation only (sometimes called "exclusive")
805  3  -  Password for new room (if it is a type 2 room)
806  4  -  Floor number on which the room should reside (optional)
807  
808  If the create flag is set to 1, the room is created (unless something
809 went wrong and an ERROR return is sent), and the server returns OK, but
810 the session is **not** automatically sent to that room.  The client still
811 must perform a GOTO command to go to the new room.
812  
813  
814  FORG   (FORGet the current room)
815  
816  This command is used to forget (zap) the current room.  For those not
817 familiar with Citadel, this terminology refers to removing the room from
818 a user's own known rooms list, *not* removing the room itself.  After a
819 room is forgotten, it no longer shows up in the user's known room list,
820 but it will exist in the user's forgotten room list, and will return to the
821 known room list if the user goes to the room (in Citadel, this is
822 accomplished by explicitly typing the room's name in a <.G>oto command).
823  
824  The command takes no arguments.  If the command cannot execute for any
825 reason, ERROR will be returned.  ERROR+NOT_LOGGED_IN or ERROR+NOT_HERE may
826 be returned as they apply.
827  
828  If the command succeeds, OK will be returned.  At this point, the current
829 room is **undefined**, and the client software is responsible for taking
830 the user to another room before executing any other room commands (usually
831 this will be _BASEROOM_ since it is always there).
832   
833   
834  MESG    (read system MESsaGe)
835   
836  This command is used to display system messages and/or help files.  The
837 single argument it accepts is the name of the file to display.  IT IS CASE
838 SENSITIVE.  Citadel/UX looks for these files first in the "messages"
839 subdirectory and then in the "help" subdirectory.
840   
841  If the file is found, LISTING_FOLLOWS is returned, followed by a pathname
842 to the file being displayed.  Then the message is printed, in format type 0
843 (see MSG0 command for more information on this).  If the file is not found,
844 ERROR is returned.
845   
846  There are some "well known" names of system messages which client software
847 may expect most servers to carry:
848   
849  hello        -  Welcome message, to be displayed before the user logs in.
850  changepw     -  To be displayed whenever the user is prompted for a new
851                  password.  Warns about picking guessable passwords and such.
852  register     -  Should be displayed prior to the user entering registration.
853                  Warnings about not getting access if not registered, etc.
854  help         -  Main system help file.
855  goodbye      -  System logoff banner; display when user logs off.
856  roomaccess   -  Information about how public rooms and different types of
857                  private rooms function with regards to access.
858  unlisted     -  Tells users not to choose to be unlisted unless they're
859                  really paranoid, and warns that aides can still see
860                  unlisted userlog entries.
861   
862  Citadel/UX provides these for the Citadel/UX Unix text client.  They are
863 probably not very useful for other clients:
864  
865  mainmenu     -  Main menu (when in idiot mode).
866  aideopt      -  .A?
867  readopt      -  .R?
868  entopt       -  .E?
869  dotopt       -  .?
870  saveopt      -  Options to save a message, abort, etc.
871  entermsg     -  Displayed just before a message is entered, when in
872                  idiot mode.
873   
874   
875  GNUR   (Get Next Unvalidated User)
876  
877  This command shows the name of a user that needs to be validated.  If there
878 are no unvalidated users, OK is returned.  Otherwise, MORE_DATA is returned
879 along with the name of the first unvalidated user the server finds.  All of
880 the usual ERROR codes may be returned as well (for example, if the user is
881 not an Aide and cannot validate users).
882  
883  A typical "Validate New Users" command would keep executing this command,
884 and then validating each user it returns, until it returns OK when all new
885 users have been validated.
886  
887  
888  GREG   (Get REGistration for user)
889  
890  This command retrieves the registration info for a user, whose name is the
891 command's sole argument.  All the usual error messages can be returned.  If
892 the command succeeds, LISTING_FOLLOWS is returned, followed by the user's name
893 (retrieved from the userlog, with the right upper and lower case etc.)  The
894 contents of the listing contains one field per line, followed by the usual
895 000 on the last line.  
896  
897  The following lines are defined.  Others WILL be added in the futre, so all
898 software should be written to read the lines it knows about and then ignore
899 all remaining lines: 
900  
901  Line 1:  User number
902  Line 2:  Password
903  Line 3:  Real name
904  Line 4:  Street address or PO Box
905  Line 5:  City/town/village/etc.
906  Line 6:  State/province/etc.
907  Line 7:  ZIP Code
908  Line 8:  Telephone number
909  Line 9:  Access level
910  Line 10: Internet e-mail address
911  
912  Users without Aide privileges may retrieve their own registration using
913 this command.  This can be accomplished either by passing the user's own
914 name as the argument, or the string "_SELF_".  The command will always
915 succeed when used in this manner, unless no user is logged in.
916  
917   
918  VALI   (VALIdate user)
919  
920  This command is used to validate users.  Obviously, it can only be executed
921 by users with Aide level access.  It should be passed two parameters: the
922 name of the user to validate, and the desired access level
923  
924  If the command succeeds, OK is returned.  The user's access level is changed
925 and the "need validation" bit is cleared.  If the command fails for any 
926 reason, ERROR, ERROR+NO_SUCH_USER, or ERROR+HIGHER_ACCESS_REQUIRED will be
927 returned.
928    
929
930  EINF   (Enter INFo file for room)
931   
932  Transmit the info file for the current room with this command.  EINF uses
933 a boolean flag (1 or 0 as the first and only argument to the command) to
934 determine whether the client actually wishes to transmit a new info file, or
935 is merely checking to see if it has permission to do so.
936  
937  If the command cannot succeed, it returns ERROR.
938  If the client is only checking for permission, and permission will be
939 granted, OK is returned.
940  If the client wishes to transmit the new info file, SEND_LISTING is
941 returned, and the client should transmit the text of the info file, ended
942 by the usual 000 on a line by itself.
943    
944    
945  LIST   (user LISTing)
946   
947  This is a simple user listing.  It always succeeds, returning
948 LISTING_FOLLOWS followed by zero or more user records, 000 terminated.  The
949 fields on each line are as follows:
950   
951  1. User name
952  2. Access level
953  3. User number
954  4. Date/time of last login (Unix format)
955  5. Times called
956  6. Messages posted
957  7. Password (listed only if the user requesting the list is an Aide)
958  
959  Unlisted entries will also be listed to Aides logged into the server, but
960 not to ordinary users.
961   
962   
963  REGI   (send REGIstration)
964  
965  Clients will use this command to transmit a user's registration info.  If
966 no user is logged in, ERROR+NOT_LOGGED_IN is returned.  Otherwise,
967 SEND_LISTING is returned, and the server will expect the following information
968 (terminated by 000 on a line by itself):
969  
970  Line 1:  Real name
971  Line 2:  Street address or PO Box
972  Line 3:  City/town/village/etc.
973  Line 4:  State/province/etc.
974  Line 5:  ZIP Code
975  Line 6:  Telephone number
976  Line 7:  e-mail address
977  
978  
979  CHEK   (CHEcK various things)
980  
981  When logging in, there are various things that need to be checked.   This
982 command will return ERROR+NOT_LOGGED_IN if no user is logged in.  Otherwise
983 it returns OK and the following parameters:
984  
985  0: Number of new private messages in Mail>
986  1: Nonzero if the user needs to register
987  2: (Relevant to Aides only) Nonzero if new users require validation
988  
989  
990  DELF   (DELete a File)
991  
992  This command deletes a file from the room's directory, if there is one.  The
993 name of the file to delete is the only parameter to be supplied.  Wildcards
994 are not acceptable, and any slashes in the filename will be converted to
995 underscores, to prevent unauthorized access to neighboring directories.  The
996 possible return codes are:
997  
998  OK                            -  Command succeeded.  The file was deleted.
999  ERROR+NOT_LOGGED_IN           -  Not logged in.
1000  ERROR+HIGHER_ACCESS_REQUIRED  -  Not an Aide or Room Aide.
1001  ERROR+NOT_HERE                -  There is no directory in this room.
1002  ERROR+FILE_NOT_FOUND          -  Requested file was not found.
1003  
1004  
1005  MOVF   (MOVe a File)
1006  
1007  This command is similar to DELF, except that it moves a file (and its
1008 associated file description) to another room.  It should be passed two
1009 parameters: the name of the file to move, and the name of the room to move
1010 the file to.  All of the same return codes as DELF may be returned, and also
1011 one additional one: ERROR+NO_SUCH_ROOM, which means that the target room
1012 does not exist.  ERROR+NOT_HERE could also mean that the target room does
1013 not have a directory.
1014  
1015  
1016  NETF   (NETwork send a File)
1017  
1018  This command is similar to MOVF, except that it attempts to send a file over
1019 the network to another system.  It should be passed two parameters: the name
1020 of the file to send, and the node name of the system to send it to.  All of
1021 the same return codes as MOVF may be returned, except for ERROR+NO_SUCH_ROOM.
1022 Instead, ERROR+NO_SUCH_SYSTEM may be returned if the name of the target
1023 system is invalid.
1024  
1025  The name of the originating room will be sent along with the file.  Most
1026 implementations will look for a room with the same name at the receiving end
1027 and attempt to place the file there, otherwise it goes into a bit bucket room
1028 for miscellaneous files.  This is, however, beyond the scope of this document;
1029 see elsewhere for more details.
1030  
1031  
1032  RWHO   (Read WHO's online)
1033  
1034  Displays a list of all users connected to the server.  No error codes are
1035 ever returned.  LISTING_FOLLOWS will be returned, followed by zero or more
1036 lines containing the following three fields:
1037  
1038  0 - Session ID.  Citadel/UX fills this with the pid of a server program.
1039  1 - User name.
1040  2 - The name of the room the user is currently in.  This field might not
1041 be displayed (for example, if the user is in a private room) or it might
1042 contain other information (such as the name of a file the user is
1043 downloading).
1044  3 - (server v4.03 and above) The name of the host the client is connecting
1045 from, or "localhost" if the client is local.
1046  4 - (server v4.04 and above) Description of the client software being used
1047  5 - The last time, locally to the server, that a command was received from
1048      this client (Note: NOOP's don't count)
1049  6 - The last command received from a client. (NOOP's don't count)
1050  7 - Session flags.  These are: + (spoofed address), - (STEALTH mode), *
1051      (posting) and . (idle).
1052  8 - Actual user name, if user name is masqueraded and viewer is an Aide.
1053  9 - Actual room name, if room name is masqueraded and viewer is an Aide.
1054  10 - Actual host name, if host name is masqueraded and viewer is an Aide.
1055  
1056  The listing is terminated, as always, with the string "000" on a line by
1057 itself.
1058  
1059   
1060  OPEN   (OPEN a file for download)
1061  
1062  This command is used to open a file for downloading.  Only one download
1063 file may be open at a time.  The only argument to this command is the name
1064 of the file to be opened.  The user should already be in the room where the
1065 file resides.  Possible return codes are:
1066  
1067  ERROR+NOT_LOGGED_IN
1068  ERROR+NOT_HERE                (no directory in this room)
1069  ERROR+FILE_NOT_FOUND          (could not open the file)
1070  ERROR                         (misc errors)
1071  OK                            (file is open)
1072  
1073  If the file is successfully opened, OK will be returned, along with the
1074 size (in bytes) of the file, the time of last modification (if applicable),
1075 the filename (if known), and the MIME type of the file (if known).
1076  
1077  
1078  CLOS   (CLOSe the download file)
1079  
1080  This command is used to close the download file.  It returns OK if the
1081 file was successfully closed, or ERROR if there wasn't any file open in the
1082 first place.
1083  
1084  
1085  READ   (READ from the download file)
1086
1087  Two arguments are passed to this command.  The first is the starting position
1088 in the download file, and the second is the total number of bytes to be 
1089 read.  If the operation can be performed, BINARY_FOLLOWS will be returned,
1090 along with the number of bytes to follow.  Then, immediately following the
1091 newline, will be that many bytes of binary data.  The client *must* read 
1092 exactly that number of bytes, otherwise the client and server will get out
1093 of sync.
1094  
1095  If the operation cannot be performed, any of the usual error codes will be
1096 returned.
1097   
1098  
1099  UOPN   (OPeN a file for Uploading)
1100   
1101  This command is similar to OPEN, except that this one is used when the 
1102 client wishes to upload a file to the server.  The first argument is the name
1103 of the file to create, and the second argument is a one-line comment
1104 describing the contents of the file.  Only one upload file may be open at a
1105 time.  Possible return codes are:
1106  
1107  ERROR+NOT_LOGGED_IN
1108  ERROR+NOT_HERE               (no directory in this room)
1109  ERROR+FILE_NOT_FOUND         (a name must be specified)
1110  ERROR                        (miscellaneous errors)
1111  ERROR+ALREADY_EXISTS         (a file with the same name already exists)
1112  OK 
1113  
1114  If OK is returned, the command has succeeded and writes may be performed.
1115  
1116  
1117  UCLS   (CLoSe the Upload file)
1118  
1119  Close the file opened with UOPN.  An argument of "1" should be passed to
1120 this command to close and save the file; otherwise, the transfer will be
1121 considered aborted and the file will be deleted.  This command returns OK
1122 if the operation succeeded or ERROR if it did not.
1123  
1124  
1125  WRIT   (WRITe to the upload file)
1126  
1127  If an upload file is open, this command may be used to write to it.  The
1128 argument passed to this command is the number of bytes the client wishes to
1129 transmit.  An ERROR code will be returned if the operation cannot be
1130 performed.
1131  
1132  If the operation can be performed, SEND_BINARY will be returned, followed
1133 by the number of bytes the server is expecting.  The client must then transmit
1134 exactly that number of bytes.  Note that in the current implementation, the
1135 number of bytes the server is expecting will always be the number of bytes
1136 the client requested to transmit, but the client software should never assume
1137 that this will always happen, in case changes are made later.
1138    
1139   
1140  QUSR   (Query for a USeR)
1141  
1142  This command is used to check to see if a particular user exists.  The only
1143 argument to this command is the name of the user being searched for.  If
1144 the user exists, OK is returned, along with the name of the user in the userlog
1145 (so the client software can learn the correct upper/lower casing of the name
1146 if necessary).  If the user does not exist, ERROR+NO_SUCH_USER is returned.
1147 No login or current room is required to utilize this command.
1148  
1149  
1150  OIMG   (Open an IMaGe file)
1151  
1152  Open an image (graphics) file for downloading.  Once opened, the file can be
1153 read as if it were a download file.  This implies that an image and a download
1154 cannot be opened at the same time.  OIMG returns the same result codes as OPEN.
1155  
1156  All images will be in GIF (Graphics Interchange Format).  In the case of 
1157 Citadel/UX, the server will convert the supplied filename to all lower case,
1158 append the characters ".gif" to the filename, and look for it in the "images"
1159 subdirectory.  As with the MESG command, there are several "well known"
1160 images which are likely to exist on most servers:
1161  
1162  hello        - "Welcome" graphics to be displayed alongside MESG "hello"
1163  goodbye      - Logoff banner graphics to be displayed alongside MESG "goodbye"
1164  background   - Background image (usually tiled) for graphical clients
1165  
1166  The following "special" image names are defined in Citadel/UX server version
1167 5.00 and above:
1168  
1169  _userpic_    - Picture of a user (send the username as the second argument)
1170  _floorpic_   - A graphical floor label (send the floor number as the second
1171                 argument).  Clients which request a floor picture will display
1172                 the picture *instead* of the floor name.
1173  _roompic_    - A graphic associated with the *current* room.  Clients which
1174                 request a room picture will display the picture in *addition*
1175                 to the room name (i.e. it's used for a room banner, as
1176                 opposed to the floor picture's use in a floor listing).
1177  
1178    
1179  NETP   (authenticate as network session with system NET Password) 
1180  
1181  This command is used by client software to identify itself as a transport
1182 session for IGnet/Open BBS to BBS networking.  It should be called with
1183 two arguments: the node name of the calling system, and the system net 
1184 password for the server.  If the authentication succeeds, NETP will return
1185 OK, otherwise, it returns ERROR.
1186    
1187   
1188  NUOP   (Network Upload OPen file)
1189   
1190  Open a network spool file for uploading.  The client must have already
1191 identified itself as a network session using the NETP command.  If the command
1192 returns OK, the client may begin transmitting IGnet/Open spool data using
1193 a series of WRIT commands.  When a UCLS command is issued, the spooled data
1194 is entered into the BBS if the argument to UCLS is 1 or discarded if the
1195 argument to UCLS is 0.  If the client has not authenticated itself with a
1196 NETP command, ERROR+HIGHER_ACCESS_REQUIRED will be returned.
1197  
1198   
1199  NDOP   (Network Download OPen file)
1200  
1201  Open a network spool file for downloading.  The client must have already
1202 identified itself as a network session using the NETP command.  If the command
1203 returns OK, the client may begin receiving IGnet/Open spool data using
1204 a series of READ commands.  When a CLOS command is issued, the spooled data
1205 is deleted from the server and may not be read again.  If the client has not
1206 authenticated itself with a NETP command, ERROR+HIGHER_ACCESS_REQUIRED will
1207 be returned.
1208  
1209  
1210  LFLR   (List all known FLooRs)
1211  
1212  On systems supporting floors, this command lists all known floors.  The
1213 command accepts no parameters.  It will return ERROR+NOT_LOGGED_IN if no
1214 user is logged in.  Otherwise it returns LISTING_FOLLOWS and a list of 
1215 the available floors, each line consisting of three fields:
1216  
1217  1. The floor number associated with the floor
1218  2. The name of the floor
1219  3. Reference count (number of rooms on this floor)
1220  
1221  
1222  CFLR   (Create a new FLooR)
1223  
1224  This command is used to create a new floor.  It should be passed two
1225 arguments: the name of the new floor to be created, and a 1 or 0 depending
1226 on whether the client is actually creating a floor or merely checking to
1227 see if it has permission to create the floor.   The user must be logged in
1228 and have Aide privileges to create a floor.
1229  
1230  If the command succeeds, it will return OK followed by the floor number
1231 associated with the new floor.  Otherwise, it will return ERROR (plus perhaps
1232 HIGHER_ACCESS_REQUIRED, ALREADY_EXISTS, or INVALID_FLOOR_OPERATION)
1233 followed by a description of why the command failed.
1234  
1235  
1236  KFLR   (Kill a FLooR)
1237  
1238  This command is used to delete a floor.  It should be passed two
1239 argument: the *number* of the floor to be deleted, and a 1 or 0 depending
1240 on whether the client is actually deleting the floor or merely checking to
1241 see if it has permission to delete the floor.  The user must be logged in
1242 and have Aide privileges to delete a floor.
1243  
1244  Floors that contain rooms may not be deleted.  If there are rooms on a floor,
1245 they must be either deleted or moved to different floors first.  This implies
1246 that the Main Floor (floor 0) can never be deleted, since Lobby>, Mail>, and
1247 Aide> all reside on the Main Floor and cannot be deleted.
1248  
1249  If the command succeeds, it will return OK.  Otherwise it will return
1250 ERROR (plus perhaps HIGHER_ACCESS_REQUIRED or INVALID_FLOOR_OPERATION)
1251 followed by a description of why the command failed.
1252  
1253  
1254  EFLR   (Edit a FLooR)
1255  
1256  Edit the parameters of a floor.  The client may pass one or more parameters
1257 to this command:
1258  
1259  1. The number of the floor to be edited
1260  2. The desired new name 
1261  
1262  More parameters may be added in the future.  Any parameters not passed to
1263 the server will remain unchanged.  A minimal command would be EFLR and a
1264 floor number -- which would do nothing.  EFLR plus the floor number plus a
1265 floor name would change the floor's name.
1266  
1267  If the command succeeds, it will return OK.  Otherwise it will return
1268 ERROR (plus perhaps HIGHER_ACCESS_REQUIRED or INVALID_FLOOR_OPERATION)
1269   
1270
1271 IDEN (IDENtify the client software)
1272
1273  The client software has the option to identify itself to the server.
1274 Currently, the server does nothing with this information except to write
1275 it to the syslog to satisfy the system administrator's curiosity.  Other
1276 uses might become apparent in the future. 
1277  
1278  The IDEN command should contain five fields: a developer ID number (same as
1279 the server developer ID numbers in the INFO command -- please obtain one if
1280 you are a new developer), a client ID number (which does not have to be
1281 globally unique - only unique within the domain of the developer number),
1282 a version number, a free-form text string describing the client, and the name
1283 of the host the user is located at.
1284  
1285  It is up to the server to determine whether to accept the host name or to
1286 use the host name it has detected itself.  Generally, if the client is
1287 running on a trusted host (either localhost or a well-known publically
1288 accessible client) it should use the host name transmitted by IDEN,
1289 otherwise it should use the host name it has detected itself.
1290  
1291  IDEN always returns OK, but since that's the only way it ever returns
1292 there's no point in checking the result code.
1293   
1294
1295 IPGM (identify as an Internal ProGraM)
1296  
1297  IPGM is a low-level command that should not be used by normal user clients. 
1298 It is used for various utilities to communicate with the server on the same
1299 host.  For example, the networker (netproc.c) logs onto the server as an
1300 internal program in order to fetch and store messages.  Since user clients
1301 do not utilize this command (or any of its companion commands), developers
1302 writing Citadel-compatible servers need not implement it.
1303  
1304  The sole argument to IPGM is the system's internal program password.  This
1305 password is generated by the setup program and stored in the config file.
1306 Since internal programs have access to the config file, they know the correct
1307 password to use.
1308  
1309  IPGM returns OK for a correct authentication or ERROR otherwise.
1310  
1311  
1312 CHAT (enter CHAT mode)
1313  
1314  This command functions differently from every other command in the system.  It
1315 is used to implement multi-user chat.  For this to function, a new transfer
1316 mode, called START_CHAT_MODE, is implemented.  If a client does not support
1317 chat mode, it should never send a CHAT command!
1318  
1319  In chat mode, messages may arrive asynchronously from the server at any
1320 time.  The client may send messages at any time.  This allows the arrival of
1321 messages without the client having to poll for them.  Arriving messages will
1322 be of the form  "user|message", where the "user" portion is, of course, the
1323 name of the user sending the message, and "message" is the message text.
1324   
1325  Chat mode ends when the server says it ends.  The server will signal the end
1326 of chat mode by transmitting "000" on a line by itself.  When the client reads
1327 this line, it must immediately exit from chat mode without sending any
1328 further traffic to the server.  The next transmission sent to the server
1329 will be a regular server command.
1330  
1331  The Citadel/UX server understands the following commands:
1332  /quit   -   Exit from chat mode (causes the server to do an 000 end)
1333  /who    -   List users currently in chat
1334  /whobbs -   List users currently in chat and on the bbs
1335  /me     -   Do an irc-style action.
1336  /join   -   Join a new "room" in which all messages are only heard by
1337              people in that room.
1338  /msg    -   /msg <user> <msg> will send the msg to <user> only.
1339  /help   -   Print help information
1340  NOOP    -   Do nothing (silently)
1341  
1342  Any other non-empty string is treated as message text and will be broadcast
1343 to other users currently in chat.
1344  
1345   
1346  SEXP   (Send EXPress messages)
1347  
1348  This is one of two commands which implement "express messages" (also known
1349 as "paging").  An express message is a near-real-time message sent from one
1350 logged in user to another.  When an express message is sent, it will be
1351 displayed the next time the target user executes a PEXP or GEXP command.
1352  
1353  The SEXP command accepts two arguments: the name of the user to send the
1354 message to, and the text of the message.  If the message is successfully
1355 transmitted, OK is returned.  If the target user is not logged in or if
1356 anything else goes wrong, ERROR is returned.
1357   
1358  If the server supports extended paging, sending a zero-length message
1359 merely checks for the presence of the requested user without actually sending
1360 a message.  Sending a message consisting solely of a "-" (hyphen) will cause
1361 the server to return SEND_LISTING if the requested user is logged in, and the
1362 client can then transmit a multi-line page.
1363  
1364  The reserved name "broadcast" may be used instead of a user name, to
1365 broadcast an express message to all users currently connected to the server.
1366  
1367  Do be aware that if an express message is transmitted to a user who is logged
1368 in using a client that does not check for express messages, the message will
1369 never be received.
1370  
1371  
1372  PEXP   (Print EXPress messages)   ***DEPRECATED***
1373  
1374  This command is deprecated; it will eventually disappear from the protocol and
1375 its use is not recommended.  Please use the GEXP command instead.
1376  
1377  Called without any arguments, PEXP simply dumps out the contents
1378 of any waiting express messages.  It returns ERROR if there is a problem,
1379 otherwise it returns LISTING_FOLLOWS followed by all messages.
1380  
1381  So how does the client know there are express messages waiting?  It could
1382 execute a random PEXP every now and then.  Or, it can check the byte in
1383 server return code messages, between the return code and the parameters.  In
1384 much the same way as FTP uses "-" to signify a continuation, Citadel uses
1385 an "*" in this position to signify the presence of waiting express messages.
1386   
1387  
1388  EBIO   (Enter BIOgraphy)
1389  
1390  Transmit to the server a free-form text file containing a little bit of
1391 information about the user for other users to browse.  This is typically
1392 referred to as a 'bio' online.  EBIO returns SEND_LISTING if it succeeds,
1393 after which the client is expected to transmit the file, or any of the usual
1394 ERROR codes if it fails.
1395  
1396  
1397  RBIO   (Read BIOgraphy)
1398  
1399  Receive from the server a named user's bio.  This command should be passed
1400 a single argument - the name of the user whose bio is requested.  RBIO returns
1401 LISTING_FOLLOWS plus the bio file if the user exists and has a bio on file,
1402 ERROR+NO_SUCH_USER if the named user does not exist, or ERROR+FILE_NOT_FOUND
1403 if the user exists but has no bio on file.
1404   
1405   
1406  STEL   (enter STEaLth mode)
1407  
1408  When in "stealth mode," a user will not show up in the "Who is online"
1409 listing (the RWHO server command).  Only Aides may use stealth mode.  The
1410 STEL command accepts one argument: a 1 indicating that the user wishes to
1411 enter stealth mode, or a 0 indicating that the user wishes to exit stealth
1412 mode.  STEL returns OK if the command succeeded, ERROR+NOT_LOGGED_IN if no
1413 user is logged in, or ERROR+HIGHER_ACCESS_REQUIRED if the user is not an Aide.
1414
1415 The STEL command also makes it so a user does not show up in the chat room
1416 /who.  
1417  
1418  
1419  LBIO   (List users who have BIOs on file)
1420  
1421  This command is self-explanatory.  Any user who has used EBIO to place a bio
1422 on file is listed.  LBIO almost always returns LISTING_FOLLOWS followed by
1423 this listing, unless it experiences an internal error in which case ERROR
1424 is returned.
1425  
1426  
1427  MSG2   (read MeSsaGe, mode 2)
1428  
1429  MSG2 follows the same calling convention as MSG0.  The difference between
1430 the two commands is that MSG2 outputs messages in standard RFC822 format
1431 rather than in Citadel/UX proprietary format.
1432  
1433  This command was implemented in order to make various gateway programs
1434 easier to implement, and to provide some sort of multimedia support in the
1435 future.  Keep in mind that when this command is used, all messages will be
1436 output in fixed 80-column format.
1437   
1438    
1439  MSG3   (read MeSsaGe, mode 3 -- internal command)
1440  
1441  MSG3 is for use by internal programs only and should not be utilized by
1442 user-mode clients.  It does require IPGM authentication.  MSG3 follows the
1443 same calling convention as the other MSG commands, but upon success returns
1444 BINARY_FOLLOWS followed by a data block containing the _raw_ message format
1445 on disk.
1446   
1447    
1448  ENT3   (ENTer message, mode 3 -- internal command)
1449  
1450  ENT3 is for use by internal programs only and should not be utilized by
1451 user-mode clients.  It does require IPGM authentication.  This command posts
1452 a raw message straight into the message base without modification or performing
1453 any checks.   It accepts the following arguments:
1454  
1455   0  -  Post flag.  This should be set to 1 to post a message.  If it is
1456 set to 0, the server only returns OK or ERROR (plus any flags describing
1457 the error) without reading in a message.  This is used to verify the operation
1458 before actually transmitting a message.
1459   1  -  Recipient.  This argument is utilized only for private mail messages.
1460 It is ignored for public messages.  It contains, of course, the name of the
1461 recipient of the message.
1462   2  -  The size (in bytes) of the message to be transmitted.
1463
1464  ENT3 returns OK to tell the client that a message can be posted, ERROR if
1465 there would be a problem with the operation, or SEND_BINARY followed by a byte
1466 count if it is expecting the message to be transmitted.
1467   
1468   
1469  TERM   (TERMinate another session)
1470  
1471  In a multithreaded environment, it sometimes becomes necessary to terminate
1472 a session that is unusable for whatever reason.  The TERM command performs
1473 this task.  Naturally, only Aides can execute TERM.  The command should be
1474 called with a single argument: the session ID (obtained from an RWHO command)
1475 of the session to be terminated.
1476  
1477  TERM returns OK if the session was terminated, or ERROR otherwise.  Note that
1478 a client program is prohibited from terminating the session it is currently
1479 running on.
1480  
1481  
1482  NSET   (Network SETup commands)
1483  
1484  Aides may use this command to configure the networker.  This command's
1485 parameters are passed directly to the 'netsetup' command line utility.   If
1486 netsetup returns a non-zero exit code, ERROR is returned, along with the
1487 error message (if any).  If netsetup returns a zero (success) exit code,
1488 LISTING_FOLLOWS is returned, followed by zero or more lines of output (since
1489 netsetup may have information to display, such as a room or node list) and
1490 the usual '000' listing terminator.
1491  
1492  
1493  DOWN   (shut DOWN the server)
1494  
1495  This command, which may only be executed by an Aide, immediately shuts down
1496 the server.  It is only implemented on servers on which such an operation is
1497 possible, such as a multithreaded Citadel engine.  The server does not restart.
1498 DOWN returns OK if the user is allowed to shut down the server, in which case
1499 the client program should expect the connection to be immediately broken.
1500  
1501  
1502  SCDN   (Schedule or Cancel a shutDowN)
1503  
1504  SCDN sets or clears the "scheduled shutdown" flag.  Pass this command a 1 or
1505 0 to respectively set or clear the flag.  When the "scheduled shutdown" flag is
1506 set, the server will be shut down when there are no longer any users logged in.
1507 Any value other than 0 or 1 will not change the flag, only report its state.
1508 No users will be kicked off the system, and in fact the server is still
1509 available for new connections.  The command returns ERROR if it fails;
1510 otherwise, it returns OK followed by a number representing the current state
1511 of the flag.
1512  
1513  
1514  EMSG   (Enter a system MeSsaGe)
1515  
1516  This is the opposite of the MESG command - it allows the creation and editing
1517 of system messages.  The only argument passed to EMSG is the name of the
1518 file being transmitted.  If the file exists in any system message directory
1519 on the server it will be overwritten, otherwise a new file is created.  EMSG
1520 returns SEND_LISTING on success or ERROR+HIGHER_ACCESS_REQUIRED if the user
1521 is not an Aide.
1522  
1523  Typical client software would use MESG to retrieve any existing message into
1524 an edit buffer, then present an editor to the user and run EMSG if the changes
1525 are to be saved.
1526  
1527  
1528  UIMG   (Upload an IMaGe file)
1529  
1530  UIMG is complemenary to OIMG; it is used to upload an image to the server.
1531 The first parameter supplied to UIMG should be 0 if the client is only checking
1532 for permission to upload, or 1 if the client is actually attempting to begin
1533 the upload operation.  The second argument is the name of the file to be
1534 transmitted.  In Citadel/UX, the filename is converted to all lower case,
1535 appended with the characters ".gif", and stored in the "images" directory.
1536   
1537  UIMG returns OK if the client has permission to perform the requested upload,
1538 or ERROR+HIGHER_ACCESS_REQUIRED otherwise.  If the client requested to begin
1539 the operation (first parameter set to 1), an upload file is opened, and the
1540 client should begin writing to it with WRIT commands, then close it with a
1541 UCLS command.
1542  
1543  The supplied filename should be one of:
1544  
1545  ->  _userpic_   (Server will attempt to write to the user's online photo)
1546  ->  Any of the "well known" filenames described in the writeup for the 
1547      OIMG command.
1548    
1549   
1550  HCHG   (Hostname CHanGe)
1551
1552  HCHG is a command, usable by any user, that allows a user to change their RWHO
1553 host value.  This will mask a client's originating hostname from normal
1554 users; access level 6 and higher see an entry right underneath the spoofed
1555 entry listing the actual hostname the user originates from.
1556
1557  The format of an HCHG command is:
1558
1559  HCHG <name>
1560
1561  If a HCHG command is successful, the value OK (200) is returned.
1562
1563
1564  RCHG   (Roomname CHanGe)
1565
1566  RCHG is a command, usable by any user, that allows a user to change their RWHO
1567 room value.  This will mask a client's roomname from normal users; access
1568 level 6 and higher see an entry right underneath the spoofed entry listing
1569 the actual room the user is in.
1570
1571  The format of an RCHG command is:
1572
1573  RCHG <name>
1574
1575  If a RCHG command is successful, the value OK (200) is returned.
1576
1577
1578  UCHG   (Username CHanGe)
1579
1580  UCHG is an aide-level command which allows an aide to effectively change their
1581 username.  If this value is blank, the user goes into stealth mode (see
1582 STEL).  Posts
1583 will show up as being from the real username in this mode, however.  In
1584 addition, the RWHO listing will include both the spoofed and real usernames.
1585
1586  The format of an UCHG command is:
1587  
1588  UCHG <name>
1589
1590  If a UCHG command is successful, the value OK (200) is returned.
1591
1592
1593  TIME   (get server local TIME)
1594
1595  TIME returns OK followed by the current time measured in seconds since
1596 00:00:00 GMT, Jan 1, 1970 (standard Unix format).
1597
1598  This is used in allowing a client to calculate idle times.
1599
1600
1601  AGUP   (Administrative Get User Parameters)
1602  ASUP   (Administrative Set User Parameters)
1603   
1604  These commands are only executable by Aides and by server extensions running
1605 at system-level.  They are used to get/set any and all parameters relating to
1606 a user account.  AGUP requires only one argument: the name of the user in
1607 question.  SGUP requires all of the parameters to be set.  The parameters are
1608 as follows, and are common to both commands:
1609  
1610  0 - User name
1611  1 - Password
1612  2 - Flags (see citadel.h)
1613  3 - Times called
1614  4 - Messages posted
1615  5 - Access level
1616  6 - User number
1617  7 - Timestamp of last call
1618  8 - Purge time (in days) for this user (or 0 to use system default)
1619
1620  Upon success, AGUP returns OK followed by all these parameters, and ASUP
1621 simply returns OK.  If the client has insufficient access to perform the
1622 requested operation, ERROR+HIGHER_ACCESS_REQUIRED is returned.  If the
1623 requested user does not exist, ERROR+NO_SUCH_USER is returned.
1624  
1625  
1626  
1627  GPEX   (Get Policy for message EXpiration)
1628  
1629  Returns the policy of the current room, floor, or site regarding the automatic
1630 purging (expiration) of messages.  The following policies are available:
1631    0  -  Fall back to the policy of the next higher level.  If this is a room,
1632          use the floor's default policy.  If this is a floor, use the system
1633          default policy.  This is an invalid value for the system policy.
1634    1  -  Do not purge messages automatically.
1635    2  -  Purge by message count.  (Requires a value: number of messages)
1636    3  -  Purge by message age.  (Requires a value: number of days)
1637  
1638  The format of this command is:  GPEX <which>
1639  The value of <which> must be one of: "room" "floor" "site"
1640  
1641  If successful, GPEX returns OK followed by <policy>|<value>.
1642
1643
1644
1645  SPEX   (Set Polict for message EXpiration)
1646  
1647  Sets the policy of the current room, floor, or site regarding the automatic
1648 purging (expiration) of messages.  See the writeup for the GPEX command for
1649 the list of available policies.
1650  
1651  The format of this command is:  SPEX <which>|<policy>|<value>
1652  The value of <which> must be one of: "room" "floor" "site"
1653  
1654  If successful, GPEX returns OK; otherwise, an ERROR code is returned.
1655  
1656  
1657  
1658  CONF   (get or set global CONFiguration options)
1659  
1660  Retrieves or sets various system-wide configuration and policy options.  This
1661 command is only available to Aides.  The sole parameter accepted is a command,
1662 which should be either GET or SET.  If the GET command succeeds, CONF will
1663 return LISTING_FOLLOWS followed by the fields described below, one line at a
1664 time.  If the SET command succeeds, CONF will return SEND_LISTING and expect
1665 the fields described below, one line at a time (don't worry about other fields
1666 being added in the future; if a 'short' configuration list is sent, the missing
1667 values at the end will be left unchanged on the system).  If either command
1668 fails for any reason, ERROR is returned.
1669  
1670  The configuration lines are as follows:
1671  
1672  1. Node name
1673  2. Fully qualified domain name
1674  3. Human-readable node name
1675  4. Landline telephone number of this system
1676  5. Flag (0 or 1) - creator of private room automatically becomes room aide
1677  6. Server connection idle timeout (in seconds)
1678  7. Initial access level for new users
1679  8. Flag (0 or 1) - require registration for new users
1680  9. Flag (0 or 1) - automatically move Problem User messages to twit room
1681  10. Name of twit room
1682  11. Text of <more> prompt
1683  12. Flag (0 or 1) - restrict access to Internet mail
1684  13. Geographic location of this system
1685  14. Name of the system administrator
1686  15. Number of maximum concurrent sessions allowed on the server
1687  16. Password for server-to-server networking
1688  17. Default purge time (in days) for users
1689  18. Default purge time (in days) for rooms
1690  19. Name of room to log express messages to (or a zero-length name for none)
1691  20. Access level required to create rooms
1692  21. Maximum message length which may be entered into the system
1693  22. Default moderation filter level for new users (-63 to +63)
1694  
1695   
1696  
1697  EXPI   (EXPIre system objects)
1698  
1699  Begins purge operations for objects which, according to site policy, are
1700 "old" and should be removed.  EXPI should be called with one argument, one of:
1701  
1702     "messages"     (purge old messages out of each room)
1703     "users"        (purge old users from the userlog)
1704     "rooms"        (remove rooms which have not been posted in for some time)
1705     "visits"       (purge dereferenced user/room relationship records)
1706   
1707  EXPI returns OK (probably after a long delay while it does its work) if it
1708 succeeds; otherwise it returns an ERROR code.
1709  
1710  This command is probably temporary, until we can work some sort of scheduler
1711 into the system.  It is implemented in the serv_expire module.
1712  
1713   
1714  
1715  MSG4   (read MeSsaGe, mode 4 -- enumerate MIME parts)
1716  
1717      FIX ... do the writeup for this once it's done.
1718  
1719
1720   
1721  OPNA   (OPeN Attachment)
1722  
1723  Opens, as a download file, a component of a MIME-encoded message.  The two
1724 parameters which must be passed to this command are the message number and the
1725 name of the desired section.  If the message or section does not exist, an
1726 appropriate ERROR code will be returned; otherwise, if the open is successful,
1727 this command will succeed returning the same information as an OPEN command.
1728  
1729  
1730  GEXP   (Get EXPress messages)
1731  
1732  This is a more sophisticated way of retrieving express messages than the old
1733 PEXP method.  If there are no express messages waiting, PEXP returns ERROR;
1734 otherwise, it returns LISTING_FOLLOWS and the following arguments:
1735    
1736  0 - a boolean value telling the client whether there are any additional
1737      express messages waiting following this one
1738  1 - a Unix-style timestamp
1739  2 - flags (see server.h for more info)
1740  3 - the name of the sender
1741  4 - the node this message originated on (for future support of PIP, ICQ, etc.)
1742   
1743  The text sent to the client will be the body of the express message.
1744       
1745  So how does the client know there are express messages waiting?  It could
1746 execute a random GEXP every now and then.  Or, it can check the byte in
1747 server return code messages, between the return code and the parameters.  In
1748 much the same way as FTP uses "-" to signify a continuation, Citadel uses
1749 an "*" in this position to signify the presence of waiting express messages.
1750  
1751   
1752  
1753  CICQ   (Citadel ICQ metaclient setup)
1754  
1755  ** WARNING **
1756  This command is most likely a temporary one.  Citadel will eventually have
1757 more robust functionality for abstract configuration screens, and when that
1758 happens, this command will certainly be migrated there.  If you're developing
1759 a client, don't spend a lot of time working on ICQ screens.
1760  
1761  If a Citadel server has the ICQ Metaclient installed, this command is used
1762 to configure it.  It has several usages:
1763  
1764  CICQ login|uin|pass
1765  
1766   This tells Citadel the user's ICQ uin (second argument) and password (third
1767 argument).  When called in this fashion, CICQ will return either OK or ERROR.
1768 It should be noted, however, that the only way an ERROR code can be returned
1769 is if the uin and/or password is not supplied.  Authentication failures cannot
1770 be immediately detected, because the ICQ protocol is asynchronous.
1771  
1772  CICQ getcl
1773  
1774  Request the current contact list.  If successful, CICQ will return
1775 LISTING_FOLLOWS followed by zero or more contacts in the format 
1776    
1777    uin|nickname|status
1778  
1779  CICQ putcl
1780  
1781  Upload a new contact list.  If successful, CICQ will return SEND_LISTING
1782 after which the client should transmit zero or more uin's, one per line.  The
1783 server will then attempt to contact the ICQ server to determine nicknames
1784 and statuses.
1785  
1786  CICQ status
1787  
1788  Always returns OK followed by a 1 (connected to ICQ) or 0 (not connected).
1789  
1790  
1791    
1792   
1793  FSCK   (check message base reference counts)
1794  
1795  Verify, via the long way, that all message referenmce counts are correct.  If
1796 the user has permission to do this then LISTING_FOLLOWS is returned, followed
1797 by a transcript of the run.  Otherwise ERROR is returned.
1798    
1799  
1800  DEXP   (Disable EXPress messages)
1801   
1802  DEXP sets or clears the "disable express messages" flag.  Pass this command a
1803 1 or 0 to respectively set or clear the flag.  When the "disable express
1804 messages" flag is set, no one except Aides may send the user express messages.
1805 Any value other than 0 or 1 will not change the flag, only report its state.
1806 The command returns ERROR if it fails; otherwise, it returns OK followed by a
1807 number representing the current state of the flag.
1808  
1809   
1810  MMOD   (MODerate a Message)
1811   
1812  Set or change the moderation level of a message.  The two parameters passed
1813 to this command should be the message number and the desired moderation level.
1814 Please refer to the "moderation.txt" document for a description of some
1815 commonly used moderation levels.
1816  
1817  If the command succeeds, OK is returned.  If the specified message does not
1818 exist in the current room, or if the specified moderation level is not within
1819 acceptable limits, ERROR+ILLEGAL_VALUE is returned.  This command requires at
1820 least Room Aide access; if the calling user is not an Aide, or a Room Aide for
1821 the current room, ERROR+HIGHER_ACCESS_REQUIRED is returned.