/* * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) version 3. * * 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with the program; if not, see * * * Authors: * Jeffrey Stedfast * * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) * */ #ifndef __EM_COMPOSER_UTILS_H__ #define __EM_COMPOSER_UTILS_H__ #include #ifdef __cplusplus extern "C" { #pragma } #endif /* __cplusplus */ struct _CamelFolder; struct _CamelMimeMessage; struct _CamelException; struct _EMsgComposer; struct _EMFormat; struct _EAccount; void em_utils_compose_new_message (const char *fromuri); /* FIXME: mailto? url? should make up its mind what its called. imho use 'uri' */ void em_utils_compose_new_message_with_mailto (const char *url, const char *fromuri); void em_utils_post_to_folder (struct _CamelFolder *folder); void em_utils_post_to_url (const char *url); void em_utils_edit_message (struct _CamelMimeMessage *message, struct _CamelFolder *folder); void em_utils_edit_messages (struct _CamelFolder *folder, GPtrArray *uids, gboolean replace); void em_utils_forward_attached (struct _CamelFolder *folder, GPtrArray *uids, const char *fromuri); void em_utils_forward_inline (struct _CamelFolder *folder, GPtrArray *uids, const char *fromuri); void em_utils_forward_quoted (struct _CamelFolder *folder, GPtrArray *uids, const char *fromuri); void em_utils_forward_message (struct _CamelMimeMessage *msg, const char *fromuri); void em_utils_forward_messages (struct _CamelFolder *folder, GPtrArray *uids, const char *fromuri); void em_utils_redirect_message (struct _CamelMimeMessage *message); void em_utils_redirect_message_by_uid (struct _CamelFolder *folder, const char *uid); void em_utils_forward_message_raw (struct _CamelFolder *folder, struct _CamelMimeMessage *message, const char *address, struct _CamelException *ex); void em_utils_handle_receipt (struct _CamelFolder *folder, const char *uid, struct _CamelMimeMessage *msg); void em_utils_send_receipt (struct _CamelFolder *folder, struct _CamelMimeMessage *message); enum { REPLY_MODE_SENDER, REPLY_MODE_ALL, REPLY_MODE_LIST }; void em_utils_reply_to_message (struct _CamelFolder *, const char *uid, struct _CamelMimeMessage *message, int mode, struct _EMFormat *source); void em_utils_post_reply_to_message_by_uid (struct _CamelFolder *folder, const char *uid); void em_configure_new_composer (struct _EMsgComposer *composer); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __EM_COMPOSER_UTILS_H__ */