]> code.citadel.org Git - citadel.git/blobdiff - citadel/serv_network.c
* The size constant "256" which shows up everywhere as a buffer size has now
[citadel.git] / citadel / serv_network.c
index 8ed03aa6ffdeec14fdb04ff0fbe5cbc9fb2d052f..9f7382bb25c00245ef0599a9829639f482fcdf32 100644 (file)
@@ -39,8 +39,8 @@
 
 
 void cmd_gnet(char *argbuf) {
-       char filename[256];
-       char buf[256];
+       char filename[SIZ];
+       char buf[SIZ];
        FILE *fp;
 
        if (CtdlAccessCheck(ac_room_aide)) return;
@@ -63,9 +63,9 @@ void cmd_gnet(char *argbuf) {
 
 
 void cmd_snet(char *argbuf) {
-       char tempfilename[256];
-       char filename[256];
-       char buf[256];
+       char tempfilename[SIZ];
+       char filename[SIZ];
+       char buf[SIZ];
        FILE *fp;
 
        if (CtdlAccessCheck(ac_room_aide)) return;
@@ -86,16 +86,174 @@ void cmd_snet(char *argbuf) {
        }
        fclose(fp);
 
-       /* Now that we've got the whole file, put it in place */
+       /* Now copy the temp file to its permanent location
+        * (We use /bin/mv instead of link() because they may be on
+        * different filesystems)
+        */
        unlink(filename);
-       link(tempfilename, filename);
-       unlink(tempfilename);
+       snprintf(buf, sizeof buf, "/bin/mv %s %s", tempfilename, filename);
+       system(buf);
 }
 
 
+
+/*
+ * Spools out one message from the list.
+ */
+void network_spool_msg(long msgnum, void *userdata) {
+       struct SpoolControl *sc;
+       struct namelist *nptr;
+       int err;
+       char *instr = NULL;
+       int instr_len = 0;
+       struct CtdlMessage *imsg;
+
+       sc = (struct SpoolControl *)userdata;
+
+       /* If no recipients, bail out now.
+        * (May need to tweak this when we add other types of targets)
+        */
+       if (sc->listrecps == NULL) return;
+       
+       /* First, copy it to the spoolout room */
+       err = CtdlSaveMsgPointerInRoom(SMTP_SPOOLOUT_ROOM, msgnum, 0);
+       if (err != 0) return;
+
+       lprintf(9, "Generating delivery instructions\n");
+       instr_len = 4096;
+       instr = mallok(instr_len);
+       sprintf(instr,
+               "Content-type: %s\n\nmsgid|%ld\nsubmitted|%ld\n"
+               "bounceto|postmaster@%s\n" ,
+               SPOOLMIME, msgnum, time(NULL), config.c_fqdn );
+
+               imsg = mallok(sizeof(struct CtdlMessage));
+       memset(imsg, 0, sizeof(struct CtdlMessage));
+       imsg->cm_magic = CTDLMESSAGE_MAGIC;
+       imsg->cm_anon_type = MES_NORMAL;
+       imsg->cm_format_type = FMT_RFC822;
+       imsg->cm_fields['A'] = strdoop("Citadel");
+       imsg->cm_fields['M'] = instr;
+
+       /* Generate delivery instructions for each recipient */
+       for (nptr = sc->listrecps; nptr != NULL; nptr = nptr->next) {
+               if (instr_len - strlen(instr) < SIZ) {
+                       instr_len = instr_len * 2;
+                       instr = reallok(instr, instr_len);
+               }
+               sprintf(&instr[strlen(instr)], "remote|%s|0||\n",
+                       nptr->name);
+       }
+
+       /* Save delivery instructions in spoolout room */
+       CtdlSaveMsg(imsg, "", SMTP_SPOOLOUT_ROOM, MES_LOCAL);
+       CtdlFreeMessage(imsg);
+
+       /* update lastsent */
+       sc->lastsent = msgnum;
+}
+
+
+
+
+/*
+ * Batch up and send all outbound traffic from the current room
+ */
+void network_spoolout_current_room(void) {
+       char filename[SIZ];
+       char buf[SIZ];
+       char instr[SIZ];
+       FILE *fp;
+       struct SpoolControl sc;
+       /* struct namelist *digestrecps = NULL; */
+       struct namelist *nptr;
+
+       memset(&sc, 0, sizeof(struct SpoolControl));
+       assoc_file_name(filename, &CC->quickroom, "netconfigs");
+
+       fp = fopen(filename, "r");
+       if (fp == NULL) {
+               lprintf(7, "Outbound batch processing skipped for <%s>\n",
+                       CC->quickroom.QRname);
+               return;
+       }
+
+       lprintf(5, "Outbound batch processing started for <%s>\n",
+               CC->quickroom.QRname);
+
+       while (fgets(buf, sizeof buf, fp) != NULL) {
+               buf[strlen(buf)-1] = 0;
+
+               extract(instr, buf, 0);
+               if (!strcasecmp(instr, "lastsent")) {
+                       sc.lastsent = extract_long(buf, 1);
+               }
+               else if (!strcasecmp(instr, "listrecp")) {
+                       nptr = (struct namelist *)
+                               mallok(sizeof(struct namelist));
+                       nptr->next = sc.listrecps;
+                       extract(nptr->name, buf, 1);
+                       sc.listrecps = nptr;
+               }
+
+
+       }
+       fclose(fp);
+
+
+       /* Do something useful */
+       CtdlForEachMessage(MSGS_GT, sc.lastsent, (-63), NULL, NULL,
+               network_spool_msg, &sc);
+
+
+       /* Now rewrite the config file */
+       fp = fopen(filename, "w");
+       if (fp == NULL) {
+               lprintf(1, "ERROR: cannot open %s: %s\n",
+                       filename, strerror(errno));
+       }
+       else {
+               fprintf(fp, "lastsent|%ld\n", sc.lastsent);
+
+               /* Write out the listrecps while freeing from memory at the
+                * same time.  Am I clever or what?  :)
+                */
+               while (sc.listrecps != NULL) {
+                       fprintf(fp, "listrecp|%s\n", sc.listrecps->name);
+                       nptr = sc.listrecps->next;
+                       phree(sc.listrecps);
+                       sc.listrecps = nptr;
+               }
+
+               fclose(fp);
+       }
+
+       lprintf(5, "Outbound batch processing finished for <%s>\n",
+               CC->quickroom.QRname);
+}
+
+
+
+/* FIXME temporary server command for batch send */
+void cmd_batc(char *argbuf) {
+       if (CtdlAccessCheck(ac_aide)) return;
+
+       network_spoolout_current_room();
+
+       cprintf("%d FIXME cmd_batc() ok\n", OK);
+}
+
+
+
 char *Dynamic_Module_Init(void)
 {
        CtdlRegisterProtoHook(cmd_gnet, "GNET", "Get network config");
        CtdlRegisterProtoHook(cmd_snet, "SNET", "Get network config");
+
+       /* FIXME
+          temporary server command for batch send
+        */
+       CtdlRegisterProtoHook(cmd_batc, "BATC", "send out batch (temp)");
+
        return "$Id$";
 }