* Create the My Citadel Config> room along with the user account
authorArt Cancro <ajc@citadel.org>
Sun, 21 Apr 2002 21:28:06 +0000 (21:28 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 21 Apr 2002 21:28:06 +0000 (21:28 +0000)
citadel/ChangeLog
citadel/user_ops.c

index d409a3645ff7d294379d62fb8a1d529494ded88d..5fa85529923e11cd744e8759adf4318c0f9ba4a4 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 591.14  2002/04/21 21:28:06  ajc
+ * Create the My Citadel Config> room along with the user account
+
  Revision 591.13  2002/04/20 03:00:01  ajc
  * One more fix for the RENAME command wrt namespaces.
 
@@ -3617,3 +3620,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import 
+
index 0f05ceb6fd902c44a7c73419c3381bdc5bdbc5bd..9c1ade6fb32d382863c15f4a208ad8483450f895 100644 (file)
@@ -729,13 +729,15 @@ int create_user(char *newusername, int become_user)
        /* add user to userlog */
        putuser(&usbuf);
 
-       /* give the user a private mailbox */
+       /* give the user a private mailbox and a configuration room */
        MailboxName(mailboxname, sizeof mailboxname, &usbuf, MAILROOM);
        create_room(mailboxname, 5, "", 0, 1);
+       MailboxName(mailboxname, sizeof mailboxname, &usbuf, USERCONFIGROOM);
+       create_room(mailboxname, 5, "", 0, 1);
 
-       /*** Everything below this line can be bypassed if we are administratively
-            creating a user, instead of doing self-service account creation
-        ***/
+       /* Everything below this line can be bypassed if administratively
+          creating a user, instead of doing self-service account creation
+        */
 
        if (become_user) {
                /* Now become the user we just created */