X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fserv_pop3.c;h=3e76c8abdcb7232873093be55104c0f8b7c31535;hb=db4bd92400cbe8149f33991e98fd58d20c088736;hp=231e42025419ba618ef5654d439bd155ccc20e35;hpb=15d8ce26425bebfe4a4df12e25f6387714ee5500;p=citadel.git diff --git a/citadel/serv_pop3.c b/citadel/serv_pop3.c index 231e42025..3e76c8abd 100644 --- a/citadel/serv_pop3.c +++ b/citadel/serv_pop3.c @@ -156,7 +156,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); + CtdlOutputMsg(msgnum, MT_RFC822, HEADERS_ALL, 0, 1, NULL); smi.meta_rfc822_length = CC->redirect_len; free(CC->redirect_buffer); CC->redirect_buffer = NULL; @@ -370,7 +370,7 @@ void pop3_retr(char *argbuf) { } cprintf("+OK Message %d:\r\n", which_one); - CtdlOutputMsg(POP3->msgs[which_one - 1].msgnum, MT_RFC822, HEADERS_ALL, 0, 1); + CtdlOutputMsg(POP3->msgs[which_one - 1].msgnum, MT_RFC822, HEADERS_ALL, 0, 1, NULL); cprintf(".\r\n"); } @@ -403,7 +403,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); + MT_RFC822, HEADERS_ALL, 0, 1, NULL); msgtext = CC->redirect_buffer; CC->redirect_buffer = NULL; CC->redirect_len = 0;