* Bugfixes
authorArt Cancro <ajc@citadel.org>
Sat, 24 Aug 2002 05:05:34 +0000 (05:05 +0000)
committerArt Cancro <ajc@citadel.org>
Sat, 24 Aug 2002 05:05:34 +0000 (05:05 +0000)
citadel/file_ops.c
citadel/msgbase.c
citadel/msgbase.h
citadel/serv_listsub.c
citadel/sysdep.c
citadel/tools.c

index 911138168b57dff34c5fcbcbf634c9adfb6b11f3..ca089bac18224577b25db8132f1f844810f38611 100644 (file)
@@ -665,7 +665,7 @@ void cmd_ucls(char *cmd)
                        "NEW UPLOAD: '%s'\n %s\n",
                        CC->upl_file, CC->upl_comment);
                quickie_message(CC->curr_user, NULL, CC->quickroom.QRname,
-                               upload_notice, 0);
+                               upload_notice, 0, NULL);
        } else {
                abort_upl(CC);
                cprintf("%d File '%s' aborted.\n", CIT_OK, CC->upl_path);
index 0123fd39cae032aa2f94e4aea69e15ae4a53c91f..94405b53fc5465d02a5a869fdb6d75bca9eb4cc2 100644 (file)
@@ -1066,7 +1066,7 @@ int CtdlOutputMsg(long msg_num,           /* message number (local) to fetch */
        else {
                TheMessage = CtdlFetchMessage(msg_num);
                if (CC->cached_msg != NULL) {
-                       phree(CC->cached_msg);
+                       phree(CC->cached_msg); /* FIXME efence? */
                }
                CC->cached_msg = TheMessage;
                CC->cached_msgnum = msg_num;
@@ -2142,7 +2142,7 @@ long CtdlSubmitMsg(struct CtdlMessage *msg,       /* message to save */
  * Convenience function for generating small administrative messages.
  */
 void quickie_message(char *from, char *to, char *room, char *text, 
-                       int format_type)
+                       int format_type, char *subject)
 {
        struct CtdlMessage *msg;
        struct recptypes *recp = NULL;
@@ -2159,6 +2159,9 @@ void quickie_message(char *from, char *to, char *room, char *text,
                msg->cm_fields['R'] = strdoop(to);
                recp = validate_recipients(to);
        }
+       if (subject != NULL) {
+               msg->cm_fields['U'] = strdoop(subject);
+       }
        msg->cm_fields['M'] = strdoop(text);
 
        CtdlSubmitMsg(msg, recp, room);
index 27860c322fb34ab96a4941760580f814b054c305..cfa6aa7f5b1d768c871afe9ef6415bd912d13a81 100644 (file)
@@ -1,6 +1,6 @@
 /* $Id$ */
 
-#define aide_message(text)      quickie_message("Citadel",NULL,AIDEROOM,text,0);
+#define aide_message(text)      quickie_message("Citadel",NULL,AIDEROOM,text,0,NULL)
 
 #define MSGS_ALL        0
 #define MSGS_OLD        1
@@ -83,7 +83,7 @@ void cmd_opna (char *cmdbuf);
 long send_message (struct CtdlMessage *, FILE *);
 void loadtroom (void);
 long CtdlSubmitMsg(struct CtdlMessage *, struct recptypes *, char *);
-void quickie_message (char *, char *, char *, char *, int);
+void quickie_message (char *, char *, char *, char *, int, char *);
 void cmd_ent0 (char *entargs);
 void cmd_dele (char *delstr);
 void cmd_move (char *args);
index 4ee52e886afe3d390f32faa8c1c8dde58ffe9b05..179014548c9388d26a0a2ac4dd3852505192965c 100644 (file)
@@ -162,14 +162,18 @@ void do_subscribe(char *room, char *email, char *subtype, char *webpage) {
                "<HTML><BODY>"
                "Someone (probably you) has submitted a request to subscribe\n"
                "&lt;%s&gt; to the <B>%s</B> mailing list.<BR><BR>\n"
+               "Please click here to confirm this request:<BR>\n"
                "<A HREF=\"http://%s?room=%s&token=%s&cmd=confirm\">"
-               "Please click here to confirm this request.</A><BR><BR>\n"
+               "http://%s?room=%s&token=%s&cmd=confirm</A><BR><BR>\n"
                "If this request has been submitted in error and you do not\n"
                "wish to receive the '%s' mailing list, simply do nothing,\n"
                "and you will not receive any further mailings.\n"
                "</BODY></HTML>\n",
 
-               email, qrbuf.QRname, webpage, urlroom, token, qrbuf.QRname
+               email, qrbuf.QRname,
+               webpage, urlroom, token,
+               webpage, urlroom, token,
+               qrbuf.QRname
        );
 
        quickie_message(        /* This delivers the message */
@@ -177,7 +181,8 @@ void do_subscribe(char *room, char *email, char *subtype, char *webpage) {
                email,
                NULL,
                confirmation_request,
-               FMT_RFC822
+               FMT_RFC822,
+               "Please confirm your list subscription"
        );
 
        cprintf("%d Subscription entered; confirmation request sent\n", CIT_OK);
@@ -270,15 +275,19 @@ void do_unsubscribe(char *room, char *email, char *webpage) {
                "Someone (probably you) has submitted a request "
                "to unsubscribe\n"
                "&lt;%s&gt; from the <B>%s</B> mailing list.<BR><BR>\n"
+               "Please click here to confirm this request:<BR>\n"
                "<A HREF=\"http://%s?room=%s&token=%s&cmd=confirm\">"
-               "Please click here to confirm this request.</A><BR><BR>\n"
+               "http://%s?room=%s&token=%s&cmd=confirm</A><BR><BR>\n"
                "If this request has been submitted in error and you do\n"
                "<i>not</i> wish to unsubscribe from the "
                "'%s' mailing list, simply do nothing,\n"
                "and you will remain subscribed to the list.\n"
                "</BODY></HTML>\n",
 
-               email, qrbuf.QRname, webpage, urlroom, token, qrbuf.QRname
+               email, qrbuf.QRname,
+               webpage, urlroom, token,
+               webpage, urlroom, token,
+               qrbuf.QRname
        );
 
        quickie_message(        /* This delivers the message */
@@ -286,7 +295,8 @@ void do_unsubscribe(char *room, char *email, char *webpage) {
                email,
                NULL,
                confirmation_request,
-               FMT_RFC822
+               FMT_RFC822,
+               "Please confirm your unsubscribe request"
        );
 
        cprintf("%d Unubscription noted; confirmation request sent\n", CIT_OK);
@@ -314,8 +324,13 @@ void do_confirm(char *room, char *token) {
        char *holdbuf = NULL;
        int linelen = 0;
        int buflen = 0;
+       char success_message[SIZ];
+       char success_message_to[SIZ];
+       char address_of_list[SIZ];
+       int i;
 
        strcpy(address_to_unsubscribe, "");
+       strcpy(success_message_to, "");
 
        if (getroom(&qrbuf, room) != 0) {
                cprintf("%d There is no list called '%s'\n",
@@ -330,6 +345,30 @@ void do_confirm(char *room, char *token) {
                return;
        }
 
+       /*
+        * We'll just have this success message ready if we need it
+        */
+       sprintf(address_of_list, "room_%s@%s", qrbuf.QRname, config.c_fqdn);
+       for (i=0; i<strlen(address_of_list); ++i) {
+               if (isspace(address_of_list[i])) {
+                       address_of_list[i] = '_';
+               }
+       }
+       snprintf(success_message, sizeof success_message,
+               "Content-type: text/html\n\n"
+               "<HTML><BODY>"
+               "You have successfully subscribed to the <B>%s</B>\n"
+               "mailing list.<BR><BR>To post to the list, simply send "
+               "an e-mail to <TT>%s</TT>"
+               "</BODY></HTML>\n",
+               qrbuf.QRname,
+               address_of_list
+       );
+
+       /*
+        * Now start scanning this room's netconfig file for the
+        * specified token.
+        */
        assoc_file_name(filename, sizeof filename, &qrbuf, "netconfigs");
        begin_critical_section(S_NETCONFIGS);
        ncfp = fopen(filename, "r+");
@@ -362,6 +401,7 @@ void do_confirm(char *room, char *token) {
                                        fseek(ncfp, line_offset, SEEK_SET);
                                        fprintf(ncfp, "%s\n", buf);
                                        ++success;
+                                       strcpy(success_message_to, email);
                                }
                        }
                        if (!strcasecmp(cmd, "unsubpending")) {
@@ -431,6 +471,18 @@ void do_confirm(char *room, char *token) {
                phree(holdbuf);
        }
 
+       /* Let 'em know it succeeded, and how to post to the list. */
+       if (strlen(success_message_to) > 0) {
+               quickie_message(
+                       "Citadel",
+                       success_message_to,
+                       NULL,
+                       success_message,
+                       FMT_RFC822,
+                       "Your subscription is complete"
+               );
+       }
+
        /*
         * Did we do anything useful today?
         */
index fc545a15501396f139e7b174e1c574e358b4592f..dcf4cd7ab785bee87bf87cf10c40fe62f572291b 100644 (file)
@@ -726,9 +726,10 @@ struct worker_node *worker_list = NULL;
  */
 void create_worker(void) {
        int ret;
-       struct worker_node *n = mallok(sizeof *n);
+       struct worker_node *n;
        pthread_attr_t attr;
 
+       n = mallok(sizeof(struct worker_node));
        if (n == NULL) {
                lprintf(1, "can't allocate worker_node, exiting\n");
                time_to_die = -1;
@@ -741,8 +742,7 @@ void create_worker(void) {
                return;
        }
 
-       /* we seem to need something bigger than
-          FreeBSD's default of 64K of stack. */
+       /* we seem to need something bigger than FreeBSD's default 64k stack */
 
        if ((ret = pthread_attr_setstacksize(&attr, 128 * 1024))) {
                lprintf(1, "pthread_attr_setstacksize: %s\n", strerror(ret));
index 3a457ae6efc072a71c87bfa325699e6049df0bd0..21c1ce91eaef46358cad439e41c3d2bfb92d872f 100644 (file)
@@ -388,7 +388,7 @@ void striplt(char *buf)
 {
         while ((strlen(buf) > 0) && (isspace(buf[0])))
                 strcpy(buf, &buf[1]);
-        while (isspace(buf[strlen(buf) - 1]))
+        while ((strlen(buf) > 0) && (isspace(buf[strlen(buf) - 1])))
                 buf[strlen(buf) - 1] = 0;
 }