X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit-ng%2Fserver%2Fmessages.c;h=6cb103612d2d6eb4670ebbd85d405d221436c315;hb=cb238b3c3c7829b6f8fbf6e425fbdc10d3cc2c71;hp=b0c265ccdfd7a3749de12de42324b332f298726b;hpb=eae58320fe6fabe7ae035c18561c90bb5138fb82;p=citadel.git diff --git a/webcit-ng/server/messages.c b/webcit-ng/server/messages.c index b0c265ccd..6cb103612 100644 --- a/webcit-ng/server/messages.c +++ b/webcit-ng/server/messages.c @@ -1,6 +1,6 @@ // Message base functions // -// Copyright (c) 1996-2022 by the citadel.org team +// Copyright (c) 1996-2023 by the citadel.org team // // This program is open source software. Use, duplication, or // disclosure are subject to the GNU General Public License v3. @@ -277,8 +277,6 @@ void dav_put_message(struct http_transaction *h, struct ctdlsession *c, char *eu // After calling pop_upload(), the attachment is no longer in the global list. // The file descriptor has zero links, so when we close it, the filesystem will remove it from disk. - - syslog(LOG_DEBUG, "💥 attachment: %s , len=%ld", one_att.filename, one_att.length); ctdl_printf(c, "--%s\r", mime_boundary); ctdl_printf(c, "Content-Type: %s; name=\"%s\"\r", one_att.content_type, one_att.filename); ctdl_printf(c, "Content-Disposition: attachment; filename=\"%s\"\r", one_att.filename);