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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
|
/* -*-mode:c; c-style:k&r; c-basic-offset:4; -*- */
/* Balsa E-Mail Client
* Copyright (C) 1997-2001 Stuart Parmenter and others,
* See the file AUTHORS for a list.
*
* 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, 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#ifndef __LIBBALSA_MESSAGE_H__
#define __LIBBALSA_MESSAGE_H__
#include <glib.h>
#include <stdio.h>
#include <time.h>
#include <gmime/gmime.h>
#include "config.h"
#ifdef HAVE_GPGME
#include "rfc3156.h"
#endif
#if ENABLE_ESMTP
#include <auth-client.h>
#endif
#define MESSAGE_COPY_CONTENT 1
#define LIBBALSA_TYPE_MESSAGE \
(libbalsa_message_get_type())
#define LIBBALSA_MESSAGE(obj) \
(G_TYPE_CHECK_INSTANCE_CAST(obj, LIBBALSA_TYPE_MESSAGE, LibBalsaMessage))
#define LIBBALSA_MESSAGE_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST(klass, LIBBALSA_TYPE_MESSAGE, \
LibBalsaMessageClass))
#define LIBBALSA_IS_MESSAGE(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE(obj, LIBBALSA_TYPE_MESSAGE))
#define LIBBALSA_IS_MESSAGE_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE(klass, LIBBALSA_TYPE_MESSAGE))
typedef struct _LibBalsaMessageClass LibBalsaMessageClass;
typedef enum _LibBalsaMessageFlag LibBalsaMessageFlag;
enum _LibBalsaMessageFlag {
LIBBALSA_MESSAGE_FLAG_NEW = 1 << 0,
LIBBALSA_MESSAGE_FLAG_DELETED = 1 << 1,
LIBBALSA_MESSAGE_FLAG_REPLIED = 1 << 2,
LIBBALSA_MESSAGE_FLAG_FLAGGED = 1 << 3,
LIBBALSA_MESSAGE_FLAG_RECENT = 1 << 4,
LIBBALSA_MESSAGE_FLAG_SELECTED= 1 << 5 /* pseudo flag */
};
#define LIBBALSA_MESSAGE_FLAGS_REAL \
(LIBBALSA_MESSAGE_FLAG_NEW | \
LIBBALSA_MESSAGE_FLAG_DELETED | \
LIBBALSA_MESSAGE_FLAG_REPLIED | \
LIBBALSA_MESSAGE_FLAG_FLAGGED | \
LIBBALSA_MESSAGE_FLAG_RECENT)
typedef enum _LibBalsaMessageStatus LibBalsaMessageStatus;
enum _LibBalsaMessageStatus {
LIBBALSA_MESSAGE_STATUS_UNREAD,
LIBBALSA_MESSAGE_STATUS_DELETED,
LIBBALSA_MESSAGE_STATUS_FLAGGED,
LIBBALSA_MESSAGE_STATUS_REPLIED,
LIBBALSA_MESSAGE_STATUS_ICONS_NUM
};
#ifdef HAVE_GPGME
typedef enum _LibBalsaMsgProtectState LibBalsaMsgProtectState;
enum _LibBalsaMsgProtectState {
LIBBALSA_MSG_PROTECT_NONE,
LIBBALSA_MSG_PROTECT_SIGN_UNKNOWN,
LIBBALSA_MSG_PROTECT_SIGN_GOOD,
LIBBALSA_MSG_PROTECT_SIGN_NOTRUST,
LIBBALSA_MSG_PROTECT_SIGN_BAD,
LIBBALSA_MSG_PROTECT_CRYPT
};
#endif
typedef enum _LibBalsaMessageAttach LibBalsaMessageAttach;
enum _LibBalsaMessageAttach {
LIBBALSA_MESSAGE_ATTACH_ATTACH,
#ifdef HAVE_GPGME
LIBBALSA_MESSAGE_ATTACH_GOOD,
LIBBALSA_MESSAGE_ATTACH_NOTRUST,
LIBBALSA_MESSAGE_ATTACH_BAD,
LIBBALSA_MESSAGE_ATTACH_SIGN,
LIBBALSA_MESSAGE_ATTACH_ENCR,
#endif
LIBBALSA_MESSAGE_ATTACH_ICONS_NUM
};
/*
* Message info used by mailbox;
*
* headers->from
* headers->date
* headers->to_list
* headers->content_type
* subj
* length
* lines_len (scrap?)
*
* loaded by driver:
* flags
*
* needed for threading local mailboxes:
* message_id
* references
* in_reply_to
*/
/*
* LibBalsaMessageHeaders contains all headers which are used to display both
* a "main" message's headers as well as those from an embedded message/rfc822
* part.
*/
struct _LibBalsaMessageHeaders {
/* message composition date */
time_t date;
/* subject (for embedded messages only) */
gchar *subject;
/* from, reply, and disposition notification addresses */
InternetAddressList *from;
InternetAddressList *reply_to;
InternetAddressList *dispnotify_to;
/* primary, secondary, and blind recipent lists */
InternetAddressList *to_list;
InternetAddressList *cc_list;
InternetAddressList *bcc_list;
/* Mime type */
GMimeContentType *content_type;
/* File Carbon Copy Mailbox URL */
gchar *fcc_url;
/* other headers */
GList *user_hdrs;
};
/** FREE_HEADER_LIST() frees user_hdrs */
#define FREE_HEADER_LIST(l) do{ g_list_foreach((l),(GFunc)g_strfreev,NULL);\
g_list_free(l); } while(0)
struct _LibBalsaMessage {
GObject object;
/* the mailbox this message belongs to */
LibBalsaMailbox *mailbox;
/* flags */
LibBalsaMessageFlag flags;
/* headers */
LibBalsaMessageHeaders *headers;
int updated; /** whether complete headers have been fetched */
GMimeMessage *mime_msg;
/* sender address */
InternetAddressList *sender;
/* subject line; we still need it here for sending;
* although _SET_SUBJECT might resolve it(?)
* but we can set to to NULL unless there is no mailbox, like
* on sending. */
gchar *subj;
#ifdef MESSAGE_COPY_CONTENT
#define LIBBALSA_MESSAGE_GET_SUBJECT(m) \
((m)->subj ? (m)->subj : _("(No subject)"))
#else
#define LIBBALSA_MESSAGE_GET_SUBJECT(m) libbalsa_message_get_subject(m)
#endif
#define LIBBALSA_MESSAGE_SET_SUBJECT(m,s) \
do { g_free((m)->subj); (m)->subj = (s); } while (0)
/* replied message ID's */
GList *references;
/* replied message ID; from address on date */
GList *in_reply_to;
/* message ID */
gchar *message_id;
#ifdef HAVE_GPGME
/* GPG sign and/or encrypt message (sending) */
guint gpg_mode;
/* protection (i.e. sign/encrypt) status (received message) */
LibBalsaMsgProtectState prot_state;
#endif
/* a forced multipart subtype or NULL for mixed; used only for
* sending */
gchar *subtype;
/* additional message content type parameters; used only for sending */
GList *parameters;
/* message body */
guint body_ref;
LibBalsaMessageBody *body_list;
/* GList *body_list; */
glong msgno; /* message no; always copy for faster sorting;
* counting starts at 1. */
#if MESSAGE_COPY_CONTENT
#define LIBBALSA_MESSAGE_GET_NO(m) ((m)->msgno)
glong length; /* byte len */
#define LIBBALSA_MESSAGE_GET_LENGTH(m) ((m)->length)
#else
#define LIBBALSA_MESSAGE_GET_LENGTH(m) libbalsa_message_get_length(m)
#define LIBBALSA_MESSAGE_GET_NO(m) libbalsa_message_get_no(m)
#endif
unsigned has_all_headers:1;
};
#define LIBBALSA_MESSAGE_HAS_FLAG(message, mask) \
((LIBBALSA_MESSAGE(message)->flags & mask) != 0)
#define LIBBALSA_MESSAGE_IS_UNREAD(message) \
LIBBALSA_MESSAGE_HAS_FLAG(message, LIBBALSA_MESSAGE_FLAG_NEW)
#define LIBBALSA_MESSAGE_IS_DELETED(message) \
LIBBALSA_MESSAGE_HAS_FLAG(message, LIBBALSA_MESSAGE_FLAG_DELETED)
#define LIBBALSA_MESSAGE_IS_REPLIED(message) \
LIBBALSA_MESSAGE_HAS_FLAG(message, LIBBALSA_MESSAGE_FLAG_REPLIED)
#define LIBBALSA_MESSAGE_IS_FLAGGED(message) \
LIBBALSA_MESSAGE_HAS_FLAG(message, LIBBALSA_MESSAGE_FLAG_FLAGGED)
#define LIBBALSA_MESSAGE_IS_RECENT(message) \
LIBBALSA_MESSAGE_HAS_FLAG(message, LIBBALSA_MESSAGE_FLAG_RECENT)
struct _LibBalsaMessageClass {
GObjectClass parent_class;
/* deal with flags being set/unset */
/* Signal: */
void (*status_changed) (LibBalsaMessage * message,
LibBalsaMessageFlag flag, gboolean);
};
GType libbalsa_message_get_type(void);
/*
* message headers
*/
void libbalsa_message_headers_destroy(LibBalsaMessageHeaders * headers);
void libbalsa_message_headers_from_gmime(LibBalsaMessageHeaders *headers,
GMimeMessage *msg);
void libbalsa_message_init_from_gmime(LibBalsaMessage * message,
GMimeMessage * msg);
GList *libbalsa_message_user_hdrs_from_gmime(GMimeMessage *msg);
/*
* messages
*/
LibBalsaMessage *libbalsa_message_new(void);
gboolean libbalsa_message_save(LibBalsaMessage * message,
const gchar *filename);
void libbalsa_messages_change_flag(GList * messages,
LibBalsaMessageFlag flag,
gboolean set);
void libbalsa_message_reply(LibBalsaMessage * message);
gboolean libbalsa_message_set_msg_flags(LibBalsaMessage * message,
LibBalsaMessageFlag set,
LibBalsaMessageFlag clear);
void libbalsa_message_append_part(LibBalsaMessage * message,
LibBalsaMessageBody * body);
gboolean libbalsa_message_body_ref(LibBalsaMessage * message, gboolean read,
gboolean fetch_all_headers);
void libbalsa_message_body_unref(LibBalsaMessage * message);
gboolean libbalsa_message_postpone(LibBalsaMessage * message,
LibBalsaMailbox * draftbox,
LibBalsaMessage * reply_message,
gchar ** extra_headers,
gboolean flow);
/*
* misc message releated functions
*/
const gchar *libbalsa_message_pathname(LibBalsaMessage * message);
const gchar *libbalsa_message_body_charset(LibBalsaMessageBody * body);
gboolean libbalsa_message_is_multipart(LibBalsaMessage * message);
gboolean libbalsa_message_is_partial(LibBalsaMessage * message,
gchar ** id);
gboolean libbalsa_message_has_attachment(LibBalsaMessage * message);
#ifdef HAVE_GPGME
gboolean libbalsa_message_is_pgp_signed(LibBalsaMessage * message);
gboolean libbalsa_message_is_pgp_encrypted(LibBalsaMessage * message);
#endif
const gchar *libbalsa_message_get_user_header(LibBalsaMessage * message,
const gchar * name);
void libbalsa_message_set_user_header(LibBalsaMessage * message,
const gchar * name,
const gchar * value);
GMimeStream *libbalsa_message_get_part_by_id(LibBalsaMessage * message,
const gchar * id);
void libbalsa_message_set_dispnotify(LibBalsaMessage *message,
InternetAddress *ia);
/* use LIBBALSA_MESSAGE_GET_SUBJECT() macro, we may optimize this
function out if we find a way.
*/
#ifndef MESSAGE_COPY_CONTENT
const gchar* libbalsa_message_get_subject(LibBalsaMessage* message);
guint libbalsa_message_get_lines(LibBalsaMessage* msg);
glong libbalsa_message_get_length(LibBalsaMessage* msg);
#endif
glong libbalsa_message_get_no(LibBalsaMessage* msg);
LibBalsaMessageAttach libbalsa_message_get_attach_icon(LibBalsaMessage *
message);
#define libbalsa_message_date_to_utf8(m, f) libbalsa_date_to_utf8(&(m)->headers->date, (f))
#define libbalsa_message_headers_date_to_utf8(h, f) libbalsa_date_to_utf8(&(h)->date, (f))
GList *libbalsa_message_refs_for_threading(LibBalsaMessage* msg);
void libbalsa_message_load_envelope_from_stream(LibBalsaMessage * message,
GMimeStream * stream);
void libbalsa_message_load_envelope(LibBalsaMessage *message);
gboolean libbalsa_message_set_headers_from_string(LibBalsaMessage *message,
const gchar *str);
void libbalsa_message_set_references_from_string(LibBalsaMessage * message,
const gchar *str);
void libbalsa_message_set_in_reply_to_from_string(LibBalsaMessage * message,
const gchar *str);
GMimeStream *libbalsa_message_stream(LibBalsaMessage * message);
gboolean libbalsa_message_copy(LibBalsaMessage * message,
LibBalsaMailbox * dest, GError ** err);
#endif /* __LIBBALSA_MESSAGE_H__ */
|