/** * @file * Handling of email attachments * * @authors * Copyright (C) 1996-2000 Michael R. Elkins * * @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 . */ /* common protos for compose / attach menus */ #ifndef MUTT_MUTT_ATTACH_H #define MUTT_MUTT_ATTACH_H #include #include struct AttachCtx; struct Menu; struct Email; struct Body; int attach_tag(struct Menu *menu, int sel, int act); int mutt_attach_display_loop(struct Menu *menu, int op, struct Email *e, struct AttachCtx *actx, bool recv); void mutt_save_attachment_list(struct AttachCtx *actx, FILE *fp, bool tag, struct Body *top, struct Email *e, 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); int mutt_view_attachment(FILE *fp, struct Body *a, int flag, struct Email *e, struct AttachCtx *actx); void mutt_check_lookup_list(struct Body *b, char *type, size_t len); int mutt_compose_attachment(struct Body *a); int mutt_decode_save_attachment(FILE *fp, struct Body *m, char *path, int displaying, int flags); int mutt_edit_attachment(struct Body *a); int mutt_get_tmp_attachment(struct Body *a); int mutt_pipe_attachment(FILE *fp, struct Body *b, const char *path, char *outfile); int mutt_print_attachment(FILE *fp, struct Body *a); int mutt_save_attachment(FILE *fp, struct Body *m, char *path, int flags, struct Email *e); /* small helper functions to handle temporary attachment files */ void mutt_add_temp_attachment(char *filename); void mutt_unlink_temp_attachments(void); #endif /* MUTT_MUTT_ATTACH_H */