diff options
author | June McEnroe <june@causal.agency> | 2020-04-20 11:27:27 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-20 11:27:27 -0400 |
commit | b3b0956b7ea43fcc88528727e7ed57c0278e1c19 (patch) | |
tree | 725ebedabd48c28918e3fb6b1763a1025d2d5847 /archive.h | |
parent | Use template system for paths and URLs (diff) | |
download | bubger-b3b0956b7ea43fcc88528727e7ed57c0278e1c19.tar.gz bubger-b3b0956b7ea43fcc88528727e7ed57c0278e1c19.zip |
Put attachments inside <ul>
Diffstat (limited to '')
-rw-r--r-- | archive.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archive.h b/archive.h index 532ef47..03ee4f2 100644 --- a/archive.h +++ b/archive.h @@ -194,9 +194,11 @@ int atomFeedClose(FILE *file); extern const char *htmlTitle; int htmlMessageOpen(FILE *file, const struct Envelope *envelope); int htmlInline(FILE *file, const struct BodyPart *part, const char *content); +int htmlAttachmentOpen(FILE *file); int htmlAttachment( FILE *file, const struct BodyPart *part, const struct Variable pathVars[] ); +int htmlAttachmentClose(FILE *file); int htmlMessageClose(FILE *file); int htmlThreadHead(FILE *file, const struct Envelope *envelope); int htmlThreadOpen(FILE *file, const struct Envelope *envelope); |