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
|
/**
* @file
* Manage where the email is piped to external commands
*
* @authors
* Copyright (C) 2018-2023 Richard Russon <rich@flatcap.org>
* Copyright (C) 2020 Pietro Cerutti <gahr@gahr.ch>
* Copyright (C) 2021 Ihor Antonov <ihor@antonovs.family>
*
* @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/>.
*/
#ifndef MUTT_EXTERNAL_H
#define MUTT_EXTERNAL_H
#include <stdbool.h>
#include <stdio.h>
struct Body;
struct Email;
struct EmailArray;
struct Envelope;
struct Mailbox;
/**
* enum MessageTransformOpt - Message transformation option
*/
enum MessageTransformOpt
{
TRANSFORM_NONE = 0, ///< No transformation
TRANSFORM_DECRYPT, ///< Decrypt message
TRANSFORM_DECODE, ///< Decode message
};
/**
* enum MessageSaveOpt - Message save option
*/
enum MessageSaveOpt
{
SAVE_COPY = 0, ///< Copy message, making a duplicate in another mailbox
SAVE_MOVE, ///< Move message to another mailbox, removing the original
};
void index_bounce_message(struct Mailbox *m, struct EmailArray *ea);
bool mutt_check_traditional_pgp(struct Mailbox *m, struct EmailArray *ea);
void external_cleanup(void);
void mutt_display_address(struct Envelope *env);
bool mutt_edit_content_type(struct Email *e, struct Body *b, FILE *fp);
void mutt_enter_command(void);
void mutt_pipe_message(struct Mailbox *m, struct EmailArray *ea);
void mutt_print_message(struct Mailbox *m, struct EmailArray *ea);
int mutt_save_message(struct Mailbox *m, struct EmailArray *ea, enum MessageSaveOpt save_opt, enum MessageTransformOpt transform_opt);
int mutt_save_message_mbox(struct Mailbox *m_src, struct Email *e, enum MessageSaveOpt save_opt, enum MessageTransformOpt transform_opt, struct Mailbox *m_dst);
bool mutt_select_sort(bool reverse);
bool mutt_shell_escape(void);
#endif /* MUTT_EXTERNAL_H */
|