X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Fmodules%2Fpop3client%2Fserv_pop3client.c;h=8a674c77f4df847f429c2ad479490c23ff795c43;hp=51d3f2dd9599ef9eabbf64a9718784b99faf8f3c;hb=0387f48886a9395d89eaca01cd40ab751610426f;hpb=436e37f800487ea58343ba015299869d216269d2 diff --git a/citadel/modules/pop3client/serv_pop3client.c b/citadel/modules/pop3client/serv_pop3client.c index 51d3f2dd9..8a674c77f 100644 --- a/citadel/modules/pop3client/serv_pop3client.c +++ b/citadel/modules/pop3client/serv_pop3client.c @@ -1,7 +1,7 @@ /* * Consolidate mail from remote POP3 accounts. * - * Copyright (c) 2007-2019 by the citadel.org team + * Copyright (c) 2007-2020 by the citadel.org team * * This program is open source software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published @@ -143,7 +143,7 @@ void pop3client_one_mailbox(char *room, const char *host, const char *user, cons res = curl_easy_perform(curl); if (res == CURLE_OK) { struct CtdlMessage *msg = convert_internet_message_buf(&TheMsg); - CtdlSubmitMsg(msg, NULL, room, 0); + CtdlSubmitMsg(msg, NULL, room); CM_Free(msg); } else {