X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Fmodules%2Fpop3%2Fserv_pop3.c;h=43a2545d871d81e747c3347cceadce6d545363d1;hp=e839f5ec9c6e4c72c0148069ed759206c96211e6;hb=e87452481eae22f861f601fdb082a4fa75567dc4;hpb=ff01dd1a2c4d1d232790816fe18e1268951bdfca diff --git a/citadel/modules/pop3/serv_pop3.c b/citadel/modules/pop3/serv_pop3.c index e839f5ec9..43a2545d8 100644 --- a/citadel/modules/pop3/serv_pop3.c +++ b/citadel/modules/pop3/serv_pop3.c @@ -159,7 +159,7 @@ void pop3_add_message(long msgnum, void *userdata) { CC->redirect_buffer = malloc(SIZ); CC->redirect_len = 0; CC->redirect_alloc = SIZ; - CtdlOutputMsg(msgnum, MT_RFC822, HEADERS_ALL, 0, 1, NULL); + CtdlOutputMsg(msgnum, MT_RFC822, HEADERS_ALL, 0, 1, NULL, 0); smi.meta_rfc822_length = CC->redirect_len; free(CC->redirect_buffer); CC->redirect_buffer = NULL; @@ -381,7 +381,7 @@ void pop3_retr(char *argbuf) { CC->redirect_len = 0; CC->redirect_alloc = SIZ; CtdlOutputMsg(POP3->msgs[which_one - 1].msgnum, - MT_RFC822, HEADERS_ALL, 0, 1, NULL); + MT_RFC822, HEADERS_ALL, 0, 1, NULL, 0); msgtext = CC->redirect_buffer; CC->redirect_buffer = NULL; CC->redirect_len = 0; @@ -444,7 +444,7 @@ void pop3_top(char *argbuf) { CC->redirect_len = 0; CC->redirect_alloc = SIZ; CtdlOutputMsg(POP3->msgs[which_one - 1].msgnum, - MT_RFC822, HEADERS_ALL, 0, 1, NULL); + MT_RFC822, HEADERS_ALL, 0, 1, NULL, 0); msgtext = CC->redirect_buffer; CC->redirect_buffer = NULL; CC->redirect_len = 0;