From 9032566beb37bc907ed21cf0446ee427a82bdcb0 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 13 Apr 2020 14:58:53 -0400 Subject: Export content to Atom Temporarily disabling HTML output... --- concat.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'concat.c') diff --git a/concat.c b/concat.c index abf648c..a0f451e 100644 --- a/concat.c +++ b/concat.c @@ -157,20 +157,5 @@ void concatData(struct List threads, struct List items) { if (error) err(EX_IOERR, "%s", path); } - path = pathThread(envelope.messageID, "html"); - error = stat(path, &status); - if (error || status.st_mtime < uidNewest(flat, "html")) { - FILE *file = fopen(path, "w"); - if (!file) err(EX_CANTCREAT, "%s", path); - - error = 0 - || htmlThreadHead(file, &envelope) // TODO: Include -h file. - || htmlThreadHeader(file, &envelope) - || concatHTML(file, thread) - || htmlThreadTail(file) - || fclose(file); - if (error) err(EX_IOERR, "%s", path); - } - listFree(flat); } -- cgit 1.4.1