2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 2001-2012 Match Grun and the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 * Definitions necessary to access MUTT addressbook files. These are
22 * used by the MUTT E-Mail client.
31 #include "addrcache.h"
36 * alias alias-name email-address (friendly-name) [, email-address (friendly-name) ...]
38 * The alias-name maybe the name of an individual or the name of a group
39 * comprising many individuals. The alias name should not contain the space,
40 * comma (,) or at (@) character. The friendly-name is optional. A back-slash
41 * character at end-of-line may be used as a continuation character.
45 * alias myhome axel@axelrose.com (Axel Rose)
46 * alias axe axelrose@aol.com (The Axe)
47 * alias buddies esr@wheres-my-mail.com (Eric Raymond), bgates@hotmail.com (Oops Lost It)
51 /* MUTT file object */
52 typedef struct _MuttFile MuttFile
;
57 GHashTable
*uniqTable
;
58 void (*cbProgress
)( void *, void *, void * );
61 /* Function prototypes */
62 MuttFile
*mutt_create ( void );
63 void mutt_set_file ( MuttFile
* muttFile
, const gchar
*value
);
64 void mutt_free ( MuttFile
*muttFile
);
65 gint
mutt_import_data ( MuttFile
*muttFile
, AddressCache
*cache
);
66 gchar
*mutt_find_file ( void );
68 #endif /* __MUTT_H__ */