]> mj.ucw.cz Git - umpf.git/blobdiff - ham.c
fix many little bugs, release 0.1
[umpf.git] / ham.c
diff --git a/ham.c b/ham.c
index 6b68404fd1c0efe79253856d7d81e5b0e9c3f5df..7028304dd14a37205898aba1428d3493eac8beae 100644 (file)
--- a/ham.c
+++ b/ham.c
@@ -1,6 +1,8 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <sysexits.h>
+#include <time.h>
 
 #include <unistd.h>
 
@@ -13,7 +15,7 @@ char mbox_write_buf[BUFSIZE];
 int mbox_write_pos;
 int mbox_write_err;
 
-static void
+void
 new_header(char* buf, struct list* h)
 {
        char* p;
@@ -26,7 +28,10 @@ new_header(char* buf, struct list* h)
                new->value = xstrdup("");
        else {
                *p = 0;
-               new->value = xstrdup(p+1);
+               if (*(p + 1) == ' ')
+                       new->value = xstrdup(p + 2);
+               else
+                       new->value = xstrdup(p + 1);
                p = strrchr(new->value, '\n');
                if (p && !*(p+1))
                        *p = 0;
@@ -36,32 +41,104 @@ new_header(char* buf, struct list* h)
        list_add_last(h, &new->car);
 }
 
+int gmc_pos;
+char gmc_buf[BUFSIZE];
+int gmc_init;
+int gmc_read;
+int gmc_unget;
+
+static int
+give_me_char(int fd)
+{
+       if (! gmc_init) {
+               gmc_pos = 0;
+               gmc_read = read(fd, gmc_buf, BUFSIZE);
+               gmc_init = 1;
+               gmc_unget = EOF;
+               curr_email_len = 0;
+       }
+
+       if (gmc_unget != EOF) {
+               int a = gmc_unget;
+               gmc_unget = EOF;
+               curr_email_len++;
+               return a;
+       }
+
+       if (! gmc_read) {
+               gmc_init = 0;
+               return EOF;
+       }
+
+       if (gmc_pos < gmc_read) {
+               curr_email_len++;
+               return gmc_buf[gmc_pos++];
+       } else {
+               gmc_pos = 0;
+               gmc_read = read(fd, gmc_buf, BUFSIZE);
+               if (! gmc_read) {
+                       gmc_init = 0;
+                       return EOF;
+               }
+               else {
+                       curr_email_len++;
+                       return gmc_buf[gmc_pos++];
+               }
+       }
+}
+
+static void
+unget_me(int c)
+{
+       gmc_unget = c;
+       curr_email_len--;
+}
+
 struct list*
-make_hlist(void)
+make_hlist(int fd)
 {
        struct list* l = xmalloc(sizeof(struct list));
        char* buf;
        int i = 0; /* current position */
        int c, last = 0;
+       int first_line = 1;
+       int want_from_line = 0;
 
        list_init(l);
        buf = xmalloc(BUFSIZE);
        curbufsize = BUFSIZE;
        
-       while ((c = getchar()) != EOF){
+       while ((c = give_me_char(fd)) != EOF){
                if (c == '\r')
                        continue;
 
-               if (i >= curbufsize-2)
+               if (i >= curbufsize-3)
                        buf = xrealloc(buf, curbufsize *= 2);
                
-               buf[i++] = c; 
+               if (first_line && 
+                       ( (!i && c != 'F') || (i == 1 && c != 'r') || (i == 2 && c != 'o') 
+                               || (i == 3 && c != 'm') || (i == 4 && c != ' ') )
+                       )
+                       first_line = 0;
+               else {
+                       if (first_line && i == 4)
+                               want_from_line = 1;
+               }
+
+               buf[i++] = c;
                if (c == '\n'){
+                       if (want_from_line) {
+                               buf[i] = 0;
+                               fromline = xstrdup(buf);
+                               want_from_line = 0;
+                               i = 0;
+                               continue;
+                       }
                        if (last == '\n')
                                break;
-                       if ((c = getchar()) != ' ' && c != '\t'){
+                       if ((c = give_me_char(fd)) != ' ' && c != '\t'){
                                if (c != EOF)
-                                       ungetc(c, stdin);
+                                       unget_me(c);
                                buf[i] = 0;
                                new_header(buf, l);
                                i = 0;
@@ -75,14 +152,13 @@ make_hlist(void)
 }
 
 struct email*
-get_body(void)
+get_body(int rfd)
 {
        char* buf;
        struct email* b;
-       int c, fd, cannot_save = 0;
+       int c, fd;
        int will_save = 0;
        int i = 0;
-       int j = 0;
        int curbufsize = MAIL_LEN;
        char* tmpfile;
        int res;
@@ -94,26 +170,24 @@ get_body(void)
        b->fd = -1;
 
        /* read mail body, if it is too big, try to make tmp file */
-       while ((c = getchar()) != EOF){
+       while ((c = give_me_char(rfd)) != EOF){
                buf[i++] = c;
                if (i >= curbufsize - 1) {
-                       if (cannot_save) {
-                               buf = xrealloc(buf, curbufsize *= 2);
-                               continue;
-                       }
                        tmpfile = xstrdup("/tmp/umpf.XXXXXX");
                        fd = mkstemp(tmpfile);
                        /* cannot create tmpfile, try to continue reading */
-                       if (fd < 0) {
-                               buf = xrealloc(buf, curbufsize *= 2);
-                               cannot_save = 1;
-                               free_string(tmpfile);
-                               continue;
-                       } else {
+                       if (fd < 0)
+                               bye(EX_TEMPFAIL, "Cannot create temporary file: %m");
+                       else {
                                will_save = 1;
                                b->body = NULL;
                                b->tmpfile = tmpfile;
                                b->fd = fd;
+                               res = write(fd, buf, MAIL_LEN);
+                               if (res < MAIL_LEN) {
+                                       unlink(b->tmpfile);
+                                       bye(EX_TEMPFAIL, "Cannot write to temporary file: %m");
+                               }
                                break;  
                        }
                }
@@ -121,39 +195,25 @@ get_body(void)
        b->body_len = i;
        /* save rest of the body to the tmpfile */
        if (will_save) {
-               while ((c = getchar()) != EOF){
+               int j = 0;
+               while ((c = give_me_char(rfd)) != EOF){
                        buf[j++] = c;
                        b->body_len++;
                        if (j >= MAIL_LEN) {
                                j = 0;
                                res = write(fd, buf, MAIL_LEN);
                                if (res < MAIL_LEN) {
-                                       int missing = MAIL_LEN - res;
-                                       curbufsize = 2*b->body_len;
-                                       buf = xrealloc(buf, curbufsize);
-                                       // no point to check length here
-                                       read(fd, buf, b->body_len - missing);
                                        unlink(b->tmpfile);
-                                       b->tmpfile = NULL;
-                                       b->fd = -1;
-                                       b->body = buf;
-                                       break;
+                                       bye(EX_TEMPFAIL, "Cannot write to temporary file: %m");
                                }
                        }
                }
-               /* could not write all the body to the tmpfile, try to read
-                       the rest */
-               if (b->body) {
-                       while ((c = getchar()) != EOF){
-                               buf[j++] = c;
-                               b->body_len++;
-                               if (i >= curbufsize - 1) {
-                                       buf = xrealloc(buf, curbufsize *= 2);
-                               }
-                       }
+               res = write(fd, buf, j);
+               if (res < j) {
+                       unlink(b->tmpfile);
+                       bye(EX_TEMPFAIL, "Cannot write to temporary file: %m");
                }
        }
-
        return b; 
 }
 
@@ -194,6 +254,96 @@ write_char_to_mailbox(char c, int fd)
        mbox_write_buf[mbox_write_pos++] = c;
 }
 
+int email_pos;
+int headers_sent;
+int email_opened;
+
+void
+open_email(void)
+{
+       email_pos = 0;
+       headers_sent = 0;
+       email_opened = 1;
+}
+
+char*
+read_email(struct email* em)
+{
+       char* buf;
+       int r, pos;
+
+       if (! email_opened) {
+               chars_written = 0;      
+               return NULL;
+       }
+
+       if (! headers_sent) {
+               struct hlist* ph;
+               int curbufsize = BUFSIZE;
+               buf = xmalloc(BUFSIZE);
+               pos = 0;
+
+               LIST_FOREACH(ph, em->headers){
+                       int needed = strlen(ph->name) + strlen(ph->value) + 4;
+                       while (curbufsize < pos + needed)
+                               buf = xrealloc(buf, curbufsize*=2);
+                       strcpy(buf + pos, ph->name);
+                       pos += strlen(ph->name);
+                       buf[pos++] = ':';
+                       buf[pos++] = ' ';
+                       strcpy(buf + pos, ph->value);
+                       pos += strlen(ph->value);
+                       buf[pos++] = '\n';
+       
+               }
+               buf[pos++] = '\n';
+               headers_sent = 1;
+               chars_written = pos;
+               return buf;
+       }
+
+       if (em->body) {
+               buf = xstrdup(em->body);
+               chars_written = em->body_len; 
+               //printf("%d: %s\n", em->body_len, em->body); 
+               email_opened = 0;
+               return buf;
+       }
+
+       if (! email_pos)
+               lseek(em->fd, 0, SEEK_SET);
+
+       buf = xmalloc(MAIL_LEN + 1);
+       r = read(em->fd, buf, MAIL_LEN);
+       if (r < MAIL_LEN)
+               email_opened = 0;
+       chars_written = r;
+       
+       return buf;
+}
+
+int
+write_email_to_fd(int fd, struct email* email)
+{
+       char* buf;
+       int wr, to_write;
+
+       open_email();
+       for (;;) {
+               buf = read_email(email);
+               if (!chars_written)
+                       break;
+
+               to_write = chars_written;
+               while (to_write) {
+                       wr = write(fd, buf, to_write);
+                       to_write -= wr;
+               }
+       };
+       
+       return 0;
+}
+
 /* try to copy e-mail to mailbox, if it fails,
  truncate mailbox to the original size */
 static int
@@ -209,21 +359,37 @@ copy_email(int fd, struct email* email)
        mbox_write_err = 0;
        mbox_write_pos = 0;
 
-       /* headers */
+       /* From line */
        struct hlist* ph;
+       int i, len;
+       time_t t;
+       time(&t);
+       char* date = ctime(&t);
+       int datelen = strlen(date);
+
+       if (! fromline) {       
+               len = 5 + datelen + 1; 
+               fromline = xmalloc(len);
+               sprintf(fromline, "From %s", date);
+               len = strlen(fromline);
+       } else 
+               len = strlen(fromline);
+       for (i = 0; i < len; i++)
+               write_char_to_mailbox(fromline[i], fd);
+       
+       /* headers */
        char* pc;
        LIST_FOREACH(ph, email->headers){
                for (pc = ph->name; *pc; pc++)
                        write_char_to_mailbox(*pc, fd);
                write_char_to_mailbox(':', fd); 
+               write_char_to_mailbox(' ', fd); 
                for (pc = ph->value; *pc; pc++)
                        write_char_to_mailbox(*pc, fd); 
-                       write_char_to_mailbox('\n', fd);        
+               write_char_to_mailbox('\n', fd);        
        }
 
        write_char_to_mailbox('\n', fd);
-       /* body */
-       /* FIXME: do not forget change Content-Length */
        if (email->body) {
                for (pc = email->body; pc < email->body + email->body_len; pc++){
                                write_char_to_mailbox(*pc, fd);
@@ -268,51 +434,6 @@ copy_email(int fd, struct email* email)
        return 0; 
 }
 
-int
-write_email_to_fd(int fd, struct email* email)
-{
-       int written; 
-       
-       /* headers */
-       struct hlist* ph;
-       LIST_FOREACH(ph, email->headers){
-               written = write(fd, ph->name, strlen(ph->name));
-               if (written < strlen(ph->name))
-                       return 1;
-               written = write(fd, ":", 1);
-               if (written < 1)
-                       return 1;
-               written = write(fd, ph->value, strlen(ph->value));
-               if (written < strlen(ph->value))
-                       return 1;
-               written = write(fd, "\n", 1);
-               if (written < 1)
-                       return 1;
-       }
-       written = write(fd, "\n", 1);
-       if (written < 1)
-               return 1;
-
-       /* body */
-       if (email->body) {
-               written = write(fd, email->body, email->body_len);
-               if (written < email->body_len)
-                       return 1;
-       } else {
-               char buf[MAIL_LEN];
-               int i;
-               for(i = 0; i < email->body_len; i+=MAIL_LEN) {
-                       int len = MAIL_LEN;
-                       if (i >= email->body_len)
-                               len = len - (i - email->body_len);
-                       read(email->fd, buf, len); //FIXME: check it?
-                       write(fd, buf, len);
-               }       
-       }
-
-       return 0;
-}
-
 int
 deliver_local_email(char* folder, struct email* email)
 {