forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattach.h
103 lines (87 loc) · 3.46 KB
/
attach.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/**
* @file
* Handling of email attachments
*
* @authors
* Copyright (C) 1996-2000 Michael R. Elkins <[email protected]>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* common protos for compose / attach menus */
#ifndef _MUTT_ATTACH_H
#define _MUTT_ATTACH_H
#include <stdbool.h>
#include <stdio.h>
struct Menu;
struct Header;
struct Body;
/**
* struct AttachPtr - An email to which things will be attached
*/
struct AttachPtr
{
struct Body *content;
FILE *fp; /**< used in the recvattach menu. */
int parent_type;
char *tree;
int level;
int num;
bool unowned : 1; /**< don't unlink on detach */
unsigned int decrypted : 1; /**< not part of message as stored in the hdr->content. */
};
/**
* struct AttachCtx - A set of attachments
*/
struct AttachCtx
{
struct Header *hdr; /**< used by recvattach for updating */
FILE *root_fp; /**< used by recvattach for updating */
struct AttachPtr **idx;
short idxlen;
short idxmax;
short *v2r; /**< mapping from virtual to real attachment */
short vcount; /**< the number of virtual attachments */
FILE **fp_idx; /**< Extra FILE* used for decryption */
short fp_len;
short fp_max;
struct Body **body_idx; /**< Extra struct Body* used for decryption */
short body_len;
short body_max;
};
void mutt_attach_init(struct AttachCtx *actx);
void mutt_update_tree(struct AttachCtx *actx);
int mutt_view_attachment(FILE *fp, struct Body *a, int flag, struct Header *hdr,
struct AttachCtx *actx);
int mutt_tag_attach(struct Menu *menu, int n, int m);
int mutt_attach_display_loop(struct Menu *menu, int op, struct Header *hdr,
struct AttachCtx *acvtx, bool recv);
void mutt_save_attachment_list(struct AttachCtx *actx, FILE *fp, bool tag,
struct Body *top, struct Header *hdr, struct Menu *menu);
void mutt_pipe_attachment_list(struct AttachCtx *actx, FILE *fp, bool tag,
struct Body *top, bool filter);
void mutt_print_attachment_list(struct AttachCtx *actx, FILE *fp, bool tag,
struct Body *top);
void mutt_attach_bounce(FILE *fp, struct AttachCtx *actx, struct Body *cur);
void mutt_attach_resend(FILE *fp, struct AttachCtx *actx, struct Body *cur);
void mutt_attach_forward(FILE *fp, struct Header *hdr, struct AttachCtx *actx,
struct Body *cur, int flags);
void mutt_attach_reply(FILE *fp, struct Header *hdr, struct AttachCtx *actx,
struct Body *cur, int flags);
void mutt_actx_add_attach(struct AttachCtx *actx, struct AttachPtr *attach);
void mutt_actx_add_fp(struct AttachCtx *actx, FILE *new_fp);
void mutt_actx_add_body(struct AttachCtx *actx, struct Body *new_body);
void mutt_actx_free_entries(struct AttachCtx *actx);
void mutt_free_attach_context(struct AttachCtx **pactx);
#endif /* _MUTT_ATTACH_H */