~ubuntu-branches/ubuntu/breezy/evolution-data-server/breezy

« back to all changes in this revision

Viewing changes to camel/providers/groupwise/camel-groupwise-utils.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2005-10-10 11:30:56 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051010113056-rb4vj4kbs8yxft85
Tags: 1.4.1-0ubuntu3
* debian/patches/camel-imap-store.c.patch:
  - Ubuntu 17465: apply patch from
  http://bugzilla.gnome.org/attachment.cgi?id=53234&action=view
  (additional NULL pointer check)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 * Copyright (C) 2001 Ximian, Inc.
4
4
 *
5
5
 * This library is free software; you can redistribute it and/or
6
 
 * modify it under the terms of version 2 of the GNU General Public
 
6
 * modify it under the terms of version 2 of the GNU Lesser General Public
7
7
 * License as published by the Free Software Foundation.
8
8
 *
9
9
 * This program is distributed in the hope that it will be useful,
11
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
12
 * General Public License for more details.
13
13
 *
14
 
 * You should have received a copy of the GNU General Public
 
14
 * You should have received a copy of the GNU Lesser General Public
15
15
 * License along with this library; if not, write to the
16
16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
17
 * Boston, MA 02111-1307, USA.
22
22
 
23
23
#include <glib.h>
24
24
#include <camel/camel-mime-message.h>
 
25
#include <camel/camel-string-utils.h>
25
26
#include <e-gw-connection.h>
26
27
#include <e-gw-container.h>
27
28
#include <e-gw-item.h>
39
40
#define X_TRACK_WHEN            "X-track-when"
40
41
#define X_AUTODELETE            "X-auto-delete"
41
42
#define X_RETURN_NOTIFY_OPEN    "X-return-notify-open"
42
 
#define X_RETURN_NOTIFY_DECLINE "X-return-notify-decline"
 
43
#define X_RETURN_NOTIFY_DELETE  "X-return-notify-delete"
43
44
 
44
45
/* Folder types for source */
45
46
#define RECEIVED  "Mailbox"
70
71
int      e_path_rmdir        (const char *prefix, const char *vpath);
71
72
 
72
73
 
73
 
EGwItem *camel_groupwise_util_item_from_message (CamelMimeMessage *message, CamelAddress *from, CamelAddress *recipients);
74
 
void do_flags_diff (flags_diff_t *diff, guint32 old, guint32 _new) ;
75
 
GSList * add_recipients(GSList *recipient_list, CamelAddress *recipients, int recipient_type);
 
74
EGwItem *camel_groupwise_util_item_from_message (EGwConnection *cnc, CamelMimeMessage *message, CamelAddress *from, CamelAddress *recipients);
 
75
void do_flags_diff (flags_diff_t *diff, guint32 old, guint32 _new);
 
76
GSList *add_recipients(GSList *recipient_list, CamelAddress *recipients, int recipient_type);
 
77
char *gw_concat ( const char *prefix, const char *suffix);
76
78
#endif