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