/* Copyright (C) 2004, 2005 Morten K. Poulsen * * $Id: send_digest.c,v 1.13 2007/06/13 20:54:41 mortenp Exp $ * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include "mlmmj.h" #include "send_digest.h" #include "log_error.h" #include "strgen.h" #include "memory.h" #include "getlistaddr.h" #include "getlistdelim.h" #include "wrappers.h" #include "prepstdreply.h" #include "mygetline.h" #include "gethdrline.h" #include "statctrl.h" #include "unistr.h" #include "chomp.h" struct mail { int idx; char *from; }; struct thread { char *subject; int num_mails; struct mail *mails; }; static char *thread_list(const char *listdir, int firstindex, int lastindex) { int i, j, archivefd, thread_idx; char *ret, *line, *tmp, *subj, *from; char *archivename; int num_threads = 0; struct thread *threads = NULL; char buf[45]; for (i=firstindex; i<=lastindex; i++) { snprintf(buf, sizeof(buf), "%d", i); archivename = concatstr(3, listdir, "/archive/", buf); archivefd = open(archivename, O_RDONLY); myfree(archivename); if (archivefd < 0) continue; subj = NULL; from = NULL; while ((line = gethdrline(archivefd))) { if (strcmp(line, "\n") == 0) { myfree(line); break; } if (strncasecmp(line, "Subject: ", 9) == 0) { myfree(subj); subj = unistr_header_to_utf8(line + 9); } if (strncasecmp(line, "From: ", 6) == 0) { myfree(from); from = unistr_header_to_utf8(line + 6); } myfree(line); } if (!subj) { subj = mystrdup("no subject"); } if (!from) { from = mystrdup("anonymous"); } tmp = subj; for (;;) { if (isspace(*tmp)) { tmp++; continue; } if (strncasecmp(tmp, "Re:", 3) == 0) { tmp += 3; continue; } break; } /* tmp is now the clean subject */ thread_idx = -1; for (j=0; j lastindex) return -1; do { tmp = random_str(); myfree(queuename); queuename = concatstr(3, listdir, "/queue/", tmp); myfree(tmp); fd = open(queuename, O_RDWR|O_CREAT|O_EXCL, S_IRUSR|S_IWUSR); } while ((fd < 0) && (errno == EEXIST)); if (fd < 0) { log_error(LOG_ARGS, "Could not open digest queue file '%s'", queuename); myfree(queuename); return -1; } tmp = concatstr(2, listdir, "/control/customheaders"); hdrfd = open(tmp, O_RDONLY); myfree(tmp); boundary = random_str(); listaddr = getlistaddr(listdir); listname = genlistname(listaddr); listfqdn = genlistfqdn(listaddr); listdelim = getlistdelim(listdir); txtfd = open_listtext(listdir, "digest"); if (txtfd < 0) { log_error(LOG_ARGS, "Notice: Could not open std mail digest"); } subst_data[0] = "digestfirst"; snprintf(buf, sizeof(buf), "%d", firstindex); subst_data[1] = mystrdup(buf); subst_data[2] = "digestlast"; snprintf(buf, sizeof(buf), "%d", lastindex); subst_data[3] = mystrdup(buf); subst_data[4] = "digestinterval"; if (lastindex == firstindex) { snprintf(buf, sizeof(buf), "%d", firstindex); } else { snprintf(buf, sizeof(buf), "%d-%d", firstindex, lastindex); } subst_data[5] = mystrdup(buf); subst_data[6] = "digestissue"; snprintf(buf, sizeof(buf), "%d", issue); subst_data[7] = mystrdup(buf); subst_data[8] = "digestthreads"; subst_data[9] = thread_list(listdir, firstindex, lastindex); if ((txtfd < 0) || !(line = mygetline(txtfd)) || (strncasecmp(line, "Subject: ", 9) != 0)) { utfsub = mystrdup("Digest of $listaddr$ issue $digestissue$" " ($digestinterval$)"); } else { chomp(line); utfsub = unistr_escaped_to_utf8(line + 9); } utfsub2 = substitute(utfsub, listaddr, listdelim, 5, subst_data); subject = unistr_utf8_to_header(utfsub2); myfree(utfsub); myfree(utfsub2); tmp = concatstr(10, "From: ", listname, listdelim, "help@", listfqdn, "\nMIME-Version: 1.0" "\nContent-Type: multipart/" DIGESTMIMETYPE "; " "boundary=", boundary, "\nSubject: ", subject, "\n"); myfree(listfqdn); myfree(subject); if (writen(fd, tmp, strlen(tmp)) < 0) { myfree(tmp); goto errdighdrs; } myfree(tmp); if(hdrfd >= 0 && dumpfd2fd(hdrfd, fd) < 0) { goto errdighdrs; } close(hdrfd); hdrfd = -1; if (writen(fd, "\n", 1) < 0) { errdighdrs: log_error(LOG_ARGS, "Could not write digest headers to '%s'", queuename); close(fd); unlink(queuename); myfree(boundary); myfree(queuename); myfree(listaddr); myfree(listname); myfree(listdelim); myfree(subst_data[1]); myfree(subst_data[3]); myfree(subst_data[5]); myfree(subst_data[7]); myfree(subst_data[9]); if (txtfd > 0) { close(txtfd); myfree(line); } if (hdrfd > 0) { close(hdrfd); } return -1; } if ((txtfd > 0) && !statctrl(listdir, "nodigesttext")) { tmp = concatstr(3, "\n--", boundary, "\nContent-Type: text/plain; charset=UTF-8" "\nContent-Encoding: 8bit" "\n\n"); if (writen(fd, tmp, strlen(tmp)) == -1) { log_error(LOG_ARGS, "Could not write digest text/plain" " part headers to '%s'", queuename); close(fd); unlink(queuename); myfree(boundary); myfree(tmp); myfree(queuename); myfree(listaddr); myfree(listname); myfree(listdelim); myfree(subst_data[1]); myfree(subst_data[3]); myfree(subst_data[5]); myfree(subst_data[7]); myfree(subst_data[9]); if (txtfd > 0) { close(txtfd); myfree(line); } return -1; } myfree(tmp); if (line && (strncasecmp(line, "Subject: ", 9) == 0)) { myfree(line); line = mygetline(txtfd); if (line && (strcmp(line, "\n") == 0)) { /* skip empty line after Subject: */ line[0] = '\0'; } } if (line) { do { utfline = unistr_escaped_to_utf8(line); myfree(line); tmp = substitute(utfline, listaddr, listdelim, 5, subst_data); myfree(utfline); if(writen(fd, tmp, strlen(tmp)) < 0) { myfree(tmp); log_error(LOG_ARGS, "Could not write" " std mail"); break; } myfree(tmp); } while ((line = mygetline(txtfd))); } close(txtfd); } myfree(line); myfree(listaddr); myfree(listdelim); myfree(subst_data[1]); myfree(subst_data[3]); myfree(subst_data[5]); myfree(subst_data[7]); myfree(subst_data[9]); for (i=firstindex; i<=lastindex; i++) { snprintf(buf, sizeof(buf), "%d", i); archivename = concatstr(3, listdir, "/archive/", buf); archivefd = open(archivename, O_RDONLY); myfree(archivename); if (archivefd < 0) continue; tmp = concatstr(7, "\n--", boundary, "\nContent-Type: message/rfc822" "\nContent-Disposition: inline; filename=\"", listname, "_", buf, ".eml\"" "\n\n"); if (writen(fd, tmp, strlen(tmp)) == -1) { log_error(LOG_ARGS, "Could not write digest part " "headers for archive index %d to " "'%s'", i, queuename); close(fd); close(archivefd); unlink(queuename); myfree(boundary); myfree(tmp); myfree(queuename); myfree(listname); return -1; } myfree(tmp); if (dumpfd2fd(archivefd, fd) < 0) { log_error(LOG_ARGS, "Could not write digest part %d " "to '%s'", i, queuename); close(fd); close(archivefd); unlink(queuename); myfree(boundary); myfree(queuename); myfree(listname); return -1; } close(archivefd); } tmp = concatstr(3, "\n--", boundary, "--\n"); if (writen(fd, tmp, strlen(tmp)) == -1) { log_error(LOG_ARGS, "Could not write digest end to '%s'", queuename); close(fd); unlink(queuename); myfree(boundary); myfree(queuename); myfree(listname); return -1; } close(fd); myfree(boundary); myfree(listname); myfree(tmp); childpid = fork(); if(childpid < 0) { log_error(LOG_ARGS, "Could not fork"); myfree(queuename); return -1; } if(childpid > 0) { do /* Parent waits for the child */ pid = waitpid(childpid, &status, 0); while(pid == -1 && errno == EINTR); } else { execlp(mlmmjsend, mlmmjsend, "-l", "7", "-L", listdir, "-m", queuename, (char *)NULL); log_error(LOG_ARGS, "execlp() of '%s' failed", mlmmjsend); exit(EXIT_FAILURE); /* It is OK to exit, as this is a child */ } myfree(queuename); return 0; }