merge
[citadel.git] / citadel / modules / ctdlproto / serv_user.c
1 /* 
2  * Server functions which perform operations on user objects.
3  *
4  * Copyright (c) 1987-2015 by the citadel.org team
5  *
6  * This program is open source software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License, version 3.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include "support.h"
16 #include "control.h"
17 #include "ctdl_module.h"
18 #include "citserver.h"
19 #include "config.h"
20 #include "user_ops.h"
21 #include "internet_addressing.h"
22
23
24 /*
25  * USER cmd
26  */
27 void cmd_user(char *cmdbuf)
28 {
29         char username[256];
30         int a;
31
32         CON_syslog(LOG_DEBUG, "cmd_user(%s)\n", cmdbuf);
33         extract_token(username, cmdbuf, 0, '|', sizeof username);
34         CON_syslog(LOG_DEBUG, "username: %s\n", username);
35         striplt(username);
36         CON_syslog(LOG_DEBUG, "username: %s\n", username);
37
38         a = CtdlLoginExistingUser(NULL, username);
39         switch (a) {
40         case login_already_logged_in:
41                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
42                 return;
43         case login_too_many_users:
44                 cprintf("%d %s: "
45                         "Too many users are already online "
46                         "(maximum is %d)\n",
47                         ERROR + MAX_SESSIONS_EXCEEDED,
48                         CtdlGetConfigStr("c_nodename"), CtdlGetConfigInt("c_maxsessions"));
49                 return;
50         case login_ok:
51                 cprintf("%d Password required for %s\n",
52                         MORE_DATA, CC->curr_user);
53                 return;
54         case login_not_found:
55                 cprintf("%d %s not found.\n", ERROR + NO_SUCH_USER, username);
56                 return;
57         default:
58                 cprintf("%d Internal error\n", ERROR + INTERNAL_ERROR);
59         }
60 }
61
62
63 void cmd_pass(char *buf)
64 {
65         char password[SIZ];
66         int a;
67         long len;
68
69         memset(password, 0, sizeof(password));
70         len = extract_token(password, buf, 0, '|', sizeof password);
71         a = CtdlTryPassword(password, len);
72
73         switch (a) {
74         case pass_already_logged_in:
75                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
76                 return;
77         case pass_no_user:
78                 cprintf("%d You must send a name with USER first.\n",
79                         ERROR + USERNAME_REQUIRED);
80                 return;
81         case pass_wrong_password:
82                 cprintf("%d Wrong password.\n", ERROR + PASSWORD_REQUIRED);
83                 return;
84         case pass_ok:
85                 logged_in_response();
86                 return;
87         }
88 }
89
90
91 /*
92  * cmd_newu()  -  create a new user account and log in as that user
93  */
94 void cmd_newu(char *cmdbuf)
95 {
96         int a;
97         long len;
98         char username[SIZ];
99
100         if (CtdlGetConfigInt("c_auth_mode") != AUTHMODE_NATIVE) {
101                 cprintf("%d This system does not use native mode authentication.\n",
102                         ERROR + NOT_HERE);
103                 return;
104         }
105
106         if (CtdlGetConfigInt("c_disable_newu")) {
107                 cprintf("%d Self-service user account creation "
108                         "is disabled on this system.\n", ERROR + NOT_HERE);
109                 return;
110         }
111
112         if (CC->logged_in) {
113                 cprintf("%d Already logged in.\n", ERROR + ALREADY_LOGGED_IN);
114                 return;
115         }
116         if (CC->nologin) {
117                 cprintf("%d %s: Too many users are already online (maximum is %d)\n",
118                         ERROR + MAX_SESSIONS_EXCEEDED,
119                         CtdlGetConfigStr("c_nodename"), CtdlGetConfigInt("c_maxsessions"));
120                 return;
121         }
122         extract_token(username, cmdbuf, 0, '|', sizeof username);
123         strproc(username);
124         len = cutuserkey(username);
125
126         if (IsEmptyStr(username)) {
127                 cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
128                 return;
129         }
130
131         if ((!strcasecmp(username, "bbs")) ||
132             (!strcasecmp(username, "new")) ||
133             (!strcasecmp(username, "."))) {
134                 cprintf("%d '%s' is an invalid login name.\n", ERROR + ILLEGAL_VALUE, username);
135                 return;
136         }
137
138         a = create_user(username, len, 1);
139
140         if (a == 0) {
141                 logged_in_response();
142         } else if (a == ERROR + ALREADY_EXISTS) {
143                 cprintf("%d '%s' already exists.\n",
144                         ERROR + ALREADY_EXISTS, username);
145                 return;
146         } else if (a == ERROR + INTERNAL_ERROR) {
147                 cprintf("%d Internal error - user record disappeared?\n",
148                         ERROR + INTERNAL_ERROR);
149                 return;
150         } else {
151                 cprintf("%d unknown error\n", ERROR + INTERNAL_ERROR);
152         }
153 }
154
155 /*
156  * set password - citadel protocol implementation
157  */
158 void cmd_setp(char *new_pw)
159 {
160         if (CtdlAccessCheck(ac_logged_in)) {
161                 return;
162         }
163         if ( (CC->user.uid != CTDLUID) && (CC->user.uid != (-1)) ) {
164                 cprintf("%d Not allowed.  Use the 'passwd' command.\n", ERROR + NOT_HERE);
165                 return;
166         }
167         if (CC->is_master) {
168                 cprintf("%d The master prefix password cannot be changed with this command.\n",
169                         ERROR + NOT_HERE);
170                 return;
171         }
172
173         if (!strcasecmp(new_pw, "GENERATE_RANDOM_PASSWORD")) {
174                 char random_password[17];
175                 snprintf(random_password, sizeof random_password, "%08lx%08lx", random(), random());
176                 CtdlSetPassword(random_password);
177                 cprintf("%d %s\n", CIT_OK, random_password);
178         }
179         else {
180                 strproc(new_pw);
181                 if (IsEmptyStr(new_pw)) {
182                         cprintf("%d Password unchanged.\n", CIT_OK);
183                         return;
184                 }
185                 CtdlSetPassword(new_pw);
186                 cprintf("%d Password changed.\n", CIT_OK);
187         }
188 }
189
190
191 /*
192  * cmd_creu() - administratively create a new user account (do not log in to it)
193  */
194 void cmd_creu(char *cmdbuf)
195 {
196         int a;
197         long len;
198         char username[SIZ];
199         char password[SIZ];
200         struct ctdluser tmp;
201
202         if (CtdlAccessCheck(ac_aide)) {
203                 return;
204         }
205
206         extract_token(username, cmdbuf, 0, '|', sizeof username);
207         strproc(username);
208         strproc(password);
209         if (IsEmptyStr(username)) {
210                 cprintf("%d You must supply a user name.\n", ERROR + USERNAME_REQUIRED);
211                 return;
212         }
213         len = cutuserkey(username);
214
215
216         extract_token(password, cmdbuf, 1, '|', sizeof password);
217
218         a = create_user(username, len, 0);
219
220         if (a == 0) {
221                 if (!IsEmptyStr(password)) {
222                         CtdlGetUserLock(&tmp, username);
223                         safestrncpy(tmp.password, password, sizeof(tmp.password));
224                         CtdlPutUserLock(&tmp);
225                 }
226                 cprintf("%d User '%s' created %s.\n", CIT_OK, username,
227                                 (!IsEmptyStr(password)) ? "and password set" :
228                                 "with no password");
229                 return;
230         } else if (a == ERROR + ALREADY_EXISTS) {
231                 cprintf("%d '%s' already exists.\n", ERROR + ALREADY_EXISTS, username);
232                 return;
233         } else if ( (CtdlGetConfigInt("c_auth_mode") != AUTHMODE_NATIVE) && (a == ERROR + NO_SUCH_USER) ) {
234                 cprintf("%d User accounts are not created within Citadel in host authentication mode.\n",
235                         ERROR + NO_SUCH_USER);
236                 return;
237         } else {
238                 cprintf("%d An error occurred creating the user account.\n", ERROR + INTERNAL_ERROR);
239         }
240 }
241
242
243
244 /*
245  * get user parameters
246  */
247 void cmd_getu(char *cmdbuf)
248 {
249
250         if (CtdlAccessCheck(ac_logged_in))
251                 return;
252
253         CtdlGetUser(&CC->user, CC->curr_user);
254         cprintf("%d 80|24|%d|\n",
255                 CIT_OK,
256                 (CC->user.flags & US_USER_SET)
257         );
258 }
259
260 /*
261  * set user parameters
262  */
263 void cmd_setu(char *new_parms)
264 {
265         if (CtdlAccessCheck(ac_logged_in))
266                 return;
267
268         if (num_parms(new_parms) < 3) {
269                 cprintf("%d Usage error.\n", ERROR + ILLEGAL_VALUE);
270                 return;
271         }
272         CtdlLockGetCurrentUser();
273         CC->user.flags = CC->user.flags & (~US_USER_SET);
274         CC->user.flags = CC->user.flags | (extract_int(new_parms, 2) & US_USER_SET);
275         CtdlPutCurrentUserLock();
276         cprintf("%d Ok\n", CIT_OK);
277 }
278
279 /*
280  * set last read pointer
281  */
282 void cmd_slrp(char *new_ptr)
283 {
284         long newlr;
285         visit vbuf;
286         visit original_vbuf;
287
288         if (CtdlAccessCheck(ac_logged_in)) {
289                 return;
290         }
291
292         if (!strncasecmp(new_ptr, "highest", 7)) {
293                 newlr = CC->room.QRhighest;
294         } else {
295                 newlr = atol(new_ptr);
296         }
297
298         CtdlLockGetCurrentUser();
299
300         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
301         memcpy(&original_vbuf, &vbuf, sizeof(visit));
302         vbuf.v_lastseen = newlr;
303         snprintf(vbuf.v_seen, sizeof vbuf.v_seen, "*:%ld", newlr);
304
305         /* Only rewrite the record if it changed */
306         if ( (vbuf.v_lastseen != original_vbuf.v_lastseen)
307            || (strcmp(vbuf.v_seen, original_vbuf.v_seen)) ) {
308                 CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
309         }
310
311         CtdlPutCurrentUserLock();
312         cprintf("%d %ld\n", CIT_OK, newlr);
313 }
314
315
316 void cmd_seen(char *argbuf) {
317         long target_msgnum = 0L;
318         int target_setting = 0;
319
320         if (CtdlAccessCheck(ac_logged_in)) {
321                 return;
322         }
323
324         if (num_parms(argbuf) != 2) {
325                 cprintf("%d Invalid parameters\n", ERROR + ILLEGAL_VALUE);
326                 return;
327         }
328
329         target_msgnum = extract_long(argbuf, 0);
330         target_setting = extract_int(argbuf, 1);
331
332         CtdlSetSeen(&target_msgnum, 1, target_setting,
333                         ctdlsetseen_seen, NULL, NULL);
334         cprintf("%d OK\n", CIT_OK);
335 }
336
337
338 void cmd_gtsn(char *argbuf) {
339         visit vbuf;
340
341         if (CtdlAccessCheck(ac_logged_in)) {
342                 return;
343         }
344
345         /* Learn about the user and room in question */
346         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
347
348         cprintf("%d ", CIT_OK);
349         client_write(vbuf.v_seen, strlen(vbuf.v_seen));
350         client_write(HKEY("\n"));
351 }
352
353 /*
354  * INVT and KICK commands
355  */
356 void cmd_invt_kick(char *iuser, int op) {
357
358         /*
359          * These commands are only allowed by admins, room admins,
360          * and room namespace owners
361          */
362         if (is_room_aide()) {
363                 /* access granted */
364         } else if ( ((atol(CC->room.QRname) == CC->user.usernum) ) && (CC->user.usernum != 0) ) {
365                 /* access granted */
366         } else {
367                 /* access denied */
368                 cprintf("%d Higher access or room ownership required.\n",
369                         ERROR + HIGHER_ACCESS_REQUIRED);
370                 return;
371         }
372
373         if (!strncasecmp(CC->room.QRname, CtdlGetConfigStr("c_baseroom"),
374                          ROOMNAMELEN)) {
375                 cprintf("%d Can't add/remove users from this room.\n",
376                         ERROR + NOT_HERE);
377                 return;
378         }
379
380         if (CtdlInvtKick(iuser, op) != 0) {
381                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
382                 return;
383         }
384
385         cprintf("%d %s %s %s.\n",
386                 CIT_OK, iuser,
387                 ((op == 1) ? "invited to" : "kicked out of"),
388                 CC->room.QRname);
389         return;
390 }
391
392 void cmd_invt(char *iuser) {cmd_invt_kick(iuser, 1);}
393 void cmd_kick(char *iuser) {cmd_invt_kick(iuser, 0);}
394
395
396 /*
397  * forget (Zap) the current room
398  */
399 void cmd_forg(char *argbuf)
400 {
401
402         if (CtdlAccessCheck(ac_logged_in)) {
403                 return;
404         }
405
406         if (CtdlForgetThisRoom() == 0) {
407                 cprintf("%d Ok\n", CIT_OK);
408         }
409         else {
410                 cprintf("%d You may not forget this room.\n", ERROR + NOT_HERE);
411         }
412 }
413
414 /*
415  * Get Next Unregistered User
416  */
417 void cmd_gnur(char *argbuf)
418 {
419         struct cdbdata *cdbus;
420         struct ctdluser usbuf;
421
422         if (CtdlAccessCheck(ac_aide)) {
423                 return;
424         }
425
426         if ((CitControl.MMflags & MM_VALID) == 0) {
427                 cprintf("%d There are no unvalidated users.\n", CIT_OK);
428                 return;
429         }
430
431         /* There are unvalidated users.  Traverse the user database,
432          * and return the first user we find that needs validation.
433          */
434         cdb_rewind(CDB_USERS);
435         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
436                 memset(&usbuf, 0, sizeof(struct ctdluser));
437                 memcpy(&usbuf, cdbus->ptr,
438                        ((cdbus->len > sizeof(struct ctdluser)) ?
439                         sizeof(struct ctdluser) : cdbus->len));
440                 cdb_free(cdbus);
441                 if ((usbuf.flags & US_NEEDVALID)
442                     && (usbuf.axlevel > AxDeleted)) {
443                         cprintf("%d %s\n", MORE_DATA, usbuf.fullname);
444                         cdb_close_cursor(CDB_USERS);
445                         return;
446                 }
447         }
448
449         /* If we get to this point, there are no more unvalidated users.
450          * Therefore we clear the "users need validation" flag.
451          */
452
453         begin_critical_section(S_CONTROL);
454         get_control();
455         CitControl.MMflags = CitControl.MMflags & (~MM_VALID);
456         put_control();
457         end_critical_section(S_CONTROL);
458         cprintf("%d *** End of registration.\n", CIT_OK);
459
460
461 }
462
463
464 /*
465  * validate a user
466  */
467 void cmd_vali(char *v_args)
468 {
469         char user[128];
470         int newax;
471         struct ctdluser userbuf;
472
473         extract_token(user, v_args, 0, '|', sizeof user);
474         newax = extract_int(v_args, 1);
475
476         if (CtdlAccessCheck(ac_aide) || 
477             (newax > AxAideU) ||
478             (newax < AxDeleted)) {
479                 return;
480         }
481
482         if (CtdlGetUserLock(&userbuf, user) != 0) {
483                 cprintf("%d '%s' not found.\n", ERROR + NO_SUCH_USER, user);
484                 return;
485         }
486
487         userbuf.axlevel = newax;
488         userbuf.flags = (userbuf.flags & ~US_NEEDVALID);
489
490         CtdlPutUserLock(&userbuf);
491
492         /* If the access level was set to zero, delete the user */
493         if (newax == 0) {
494                 if (purge_user(user) == 0) {
495                         cprintf("%d %s Deleted.\n", CIT_OK, userbuf.fullname);
496                         return;
497                 }
498         }
499         cprintf("%d User '%s' validated.\n", CIT_OK, userbuf.fullname);
500 }
501
502 /* 
503  *  List users (searchstring may be empty to list all users)
504  */
505 void cmd_list(char *cmdbuf)
506 {
507         char searchstring[256];
508         extract_token(searchstring, cmdbuf, 0, '|', sizeof searchstring);
509         striplt(searchstring);
510         cprintf("%d \n", LISTING_FOLLOWS);
511         ForEachUser(ListThisUser, (void *)searchstring );
512         cprintf("000\n");
513 }
514
515
516
517
518 /*
519  * assorted info we need to check at login
520  */
521 void cmd_chek(char *argbuf)
522 {
523         int mail = 0;
524         int regis = 0;
525         int vali = 0;
526
527         if (CtdlAccessCheck(ac_logged_in)) {
528                 return;
529         }
530
531         CtdlGetUser(&CC->user, CC->curr_user);  /* no lock is needed here */
532         if ((REGISCALL != 0) && ((CC->user.flags & US_REGIS) == 0))
533                 regis = 1;
534
535         if (CC->user.axlevel >= AxAideU) {
536                 get_control();
537                 if (CitControl.MMflags & MM_VALID)
538                         vali = 1;
539         }
540
541         /* check for mail */
542         mail = InitialMailCheck();
543
544         cprintf("%d %d|%d|%d|%s|\n", CIT_OK, mail, regis, vali, CC->cs_inet_email);
545 }
546
547
548 /*
549  * check to see if a user exists
550  */
551 void cmd_qusr(char *who)
552 {
553         struct ctdluser usbuf;
554
555         if (CtdlGetUser(&usbuf, who) == 0) {
556                 cprintf("%d %s\n", CIT_OK, usbuf.fullname);
557         } else {
558                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
559         }
560 }
561
562
563 /*
564  * Administrative Get User Parameters
565  */
566 void cmd_agup(char *cmdbuf)
567 {
568         struct ctdluser usbuf;
569         char requested_user[128];
570
571         if (CtdlAccessCheck(ac_aide)) {
572                 return;
573         }
574
575         extract_token(requested_user, cmdbuf, 0, '|', sizeof requested_user);
576         if (CtdlGetUser(&usbuf, requested_user) != 0) {
577                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
578                 return;
579         }
580         cprintf("%d %s|%s|%u|%ld|%ld|%d|%ld|%ld|%d\n",
581                 CIT_OK,
582                 usbuf.fullname,
583                 usbuf.password,
584                 usbuf.flags,
585                 usbuf.timescalled,
586                 usbuf.posted,
587                 (int) usbuf.axlevel,
588                 usbuf.usernum,
589                 (long)usbuf.lastcall,
590                 usbuf.USuserpurge);
591 }
592
593
594
595 /*
596  * Administrative Set User Parameters
597  */
598 void cmd_asup(char *cmdbuf)
599 {
600         struct ctdluser usbuf;
601         char requested_user[128];
602         char notify[SIZ];
603         int np;
604         int newax;
605         int deleted = 0;
606
607         if (CtdlAccessCheck(ac_aide))
608                 return;
609
610         extract_token(requested_user, cmdbuf, 0, '|', sizeof requested_user);
611         if (CtdlGetUserLock(&usbuf, requested_user) != 0) {
612                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
613                 return;
614         }
615         np = num_parms(cmdbuf);
616         if (np > 1)
617                 extract_token(usbuf.password, cmdbuf, 1, '|', sizeof usbuf.password);
618         if (np > 2)
619                 usbuf.flags = extract_int(cmdbuf, 2);
620         if (np > 3)
621                 usbuf.timescalled = extract_int(cmdbuf, 3);
622         if (np > 4)
623                 usbuf.posted = extract_int(cmdbuf, 4);
624         if (np > 5) {
625                 newax = extract_int(cmdbuf, 5);
626                 if ((newax >= AxDeleted) && (newax <= AxAideU)) {
627                         usbuf.axlevel = newax;
628                 }
629         }
630         if (np > 7) {
631                 usbuf.lastcall = extract_long(cmdbuf, 7);
632         }
633         if (np > 8) {
634                 usbuf.USuserpurge = extract_int(cmdbuf, 8);
635         }
636         CtdlPutUserLock(&usbuf);
637         if (usbuf.axlevel == AxDeleted) {
638                 if (purge_user(requested_user) == 0) {
639                         deleted = 1;
640                 }
641         }
642
643         if (deleted) {
644                 snprintf(notify, SIZ, 
645                          "User \"%s\" has been deleted by %s.\n",
646                          usbuf.fullname,
647                         (CC->logged_in ? CC->user.fullname : "an administrator")
648                 );
649                 CtdlAideMessage(notify, "User Deletion Message");
650         }
651
652         cprintf("%d Ok", CIT_OK);
653         if (deleted)
654                 cprintf(" (%s deleted)", requested_user);
655         cprintf("\n");
656 }
657
658
659 /*
660  * Citadel protocol command to do the same
661  */
662 void cmd_isme(char *argbuf) {
663         char addr[256];
664
665         if (CtdlAccessCheck(ac_logged_in)) return;
666         extract_token(addr, argbuf, 0, '|', sizeof addr);
667
668         if (CtdlIsMe(addr, sizeof addr)) {
669                 cprintf("%d %s\n", CIT_OK, addr);
670         }
671         else {
672                 cprintf("%d Not you.\n", ERROR + ILLEGAL_VALUE);
673         }
674
675 }
676
677
678 /*
679  * Set the preferred view for the current user/room combination
680  */
681 void cmd_view(char *cmdbuf) {
682         int requested_view;
683         visit vbuf;
684
685         if (CtdlAccessCheck(ac_logged_in)) {
686                 return;
687         }
688
689         requested_view = extract_int(cmdbuf, 0);
690
691         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
692         vbuf.v_view = requested_view;
693         CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
694         
695         cprintf("%d ok\n", CIT_OK);
696 }
697
698
699 /*
700  * Rename a user
701  */
702 void cmd_renu(char *cmdbuf)
703 {
704         int retcode;
705         char oldname[USERNAME_SIZE];
706         char newname[USERNAME_SIZE];
707
708         if (CtdlAccessCheck(ac_aide)) {
709                 return;
710         }
711
712         extract_token(oldname, cmdbuf, 0, '|', sizeof oldname);
713         extract_token(newname, cmdbuf, 1, '|', sizeof newname);
714
715         retcode = rename_user(oldname, newname);
716         switch(retcode) {
717                 case RENAMEUSER_OK:
718                         cprintf("%d '%s' has been renamed to '%s'.\n", CIT_OK, oldname, newname);
719                         return;
720                 case RENAMEUSER_LOGGED_IN:
721                         cprintf("%d '%s' is currently logged in and cannot be renamed.\n",
722                                 ERROR + ALREADY_LOGGED_IN , oldname);
723                         return;
724                 case RENAMEUSER_NOT_FOUND:
725                         cprintf("%d '%s' does not exist.\n", ERROR + NO_SUCH_USER, oldname);
726                         return;
727                 case RENAMEUSER_ALREADY_EXISTS:
728                         cprintf("%d A user named '%s' already exists.\n", ERROR + ALREADY_EXISTS, newname);
729                         return;
730         }
731
732         cprintf("%d An unknown error occurred.\n", ERROR);
733 }
734
735
736
737 void cmd_quit(char *argbuf)
738 {
739         cprintf("%d Goodbye.\n", CIT_OK);
740         CC->kill_me = KILLME_CLIENT_LOGGED_OUT;
741 }
742
743
744 void cmd_lout(char *argbuf)
745 {
746         if (CC->logged_in) 
747                 CtdlUserLogout();
748         cprintf("%d logged out.\n", CIT_OK);
749 }
750
751
752 /*****************************************************************************/
753 /*                      MODULE INITIALIZATION STUFF                          */
754 /*****************************************************************************/
755
756
757 CTDL_MODULE_INIT(serv_user)
758 {
759         if (!threading) {
760                 CtdlRegisterProtoHook(cmd_user, "USER", "Submit username for login");
761                 CtdlRegisterProtoHook(cmd_pass, "PASS", "Complete login by submitting a password");
762                 CtdlRegisterProtoHook(cmd_quit, "QUIT", "log out and disconnect from server");
763                 CtdlRegisterProtoHook(cmd_lout, "LOUT", "log out but do not disconnect from server");
764                 CtdlRegisterProtoHook(cmd_creu, "CREU", "Create User");
765                 CtdlRegisterProtoHook(cmd_setp, "SETP", "Set the password for an account");
766                 CtdlRegisterProtoHook(cmd_getu, "GETU", "Get User parameters");
767                 CtdlRegisterProtoHook(cmd_setu, "SETU", "Set User parameters");
768                 CtdlRegisterProtoHook(cmd_slrp, "SLRP", "Set Last Read Pointer");
769                 CtdlRegisterProtoHook(cmd_invt, "INVT", "Invite a user to a room");
770                 CtdlRegisterProtoHook(cmd_kick, "KICK", "Kick a user out of a room");
771                 CtdlRegisterProtoHook(cmd_forg, "FORG", "Forget a room");
772                 CtdlRegisterProtoHook(cmd_gnur, "GNUR", "Get Next Unregistered User");
773                 CtdlRegisterProtoHook(cmd_vali, "VALI", "Validate new users");
774                 CtdlRegisterProtoHook(cmd_list, "LIST", "List users");
775                 CtdlRegisterProtoHook(cmd_chek, "CHEK", "assorted info we need to check at login");
776                 CtdlRegisterProtoHook(cmd_qusr, "QUSR", "check to see if a user exists");
777                 CtdlRegisterProtoHook(cmd_agup, "AGUP", "Administratively Get User Parameters");
778                 CtdlRegisterProtoHook(cmd_asup, "ASUP", "Administratively Set User Parameters");
779                 CtdlRegisterProtoHook(cmd_seen, "SEEN", "Manipulate seen/unread message flags");
780                 CtdlRegisterProtoHook(cmd_gtsn, "GTSN", "Fetch seen/unread message flags");
781                 CtdlRegisterProtoHook(cmd_view, "VIEW", "Set preferred view for user/room combination");
782                 CtdlRegisterProtoHook(cmd_renu, "RENU", "Rename a user");
783                 CtdlRegisterProtoHook(cmd_newu, "NEWU", "Log in as a new user");
784                 CtdlRegisterProtoHook(cmd_isme, "ISME", "Determine whether an email address belongs to a user");
785         }
786         /* return our Subversion id for the Log */
787         return "user";
788 }