2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 2003-2009 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 for export to LDIF file.
24 #ifndef __EXPORT_LDIF_H__
25 #define __EXPORT_LDIF_H__
29 #include "addrcache.h"
32 #define EXPORT_LDIF_ID_UID 0
33 #define EXPORT_LDIF_ID_DNAME 1
34 #define EXPORT_LDIF_ID_EMAIL 2
36 #define EXPORT_LDIF_FIRST_LAST 0
37 #define EXPORT_LDIF_LAST_FIRST 1
39 /* Export LDIF control data */
40 typedef struct _ExportLdifCtl ExportLdifCtl
;
41 struct _ExportLdifCtl
{
49 gboolean excludeEMail
;
54 /* Function prototypes */
55 ExportLdifCtl
*exportldif_create ( void );
56 void exportldif_free ( ExportLdifCtl
*ctl
);
57 void exportldif_set_file_html ( ExportLdifCtl
*ctl
,
59 void exportldif_set_suffix ( ExportLdifCtl
*ctl
,
61 void exportldif_set_rdn ( ExportLdifCtl
*ctl
,
63 void exportldif_set_use_dn ( ExportLdifCtl
*ctl
,
64 const gboolean value
);
65 void exportldif_set_exclude_email ( ExportLdifCtl
*ctl
,
66 const gboolean value
);
67 void exportldif_process ( ExportLdifCtl
*ctl
,
68 AddressCache
*cache
);
69 gboolean
exportldif_test_dir ( ExportLdifCtl
*ctl
);
70 gboolean
exportldif_create_dir ( ExportLdifCtl
*ctl
);
71 gchar
*exportldif_get_create_msg ( ExportLdifCtl
*ctl
);
73 void exportldif_parse_filespec ( ExportLdifCtl
*ctl
,
75 void exportldif_load_settings ( ExportLdifCtl
*ctl
);
76 void exportldif_save_settings ( ExportLdifCtl
*ctl
);
78 #endif /* __EXPORT_LDIF_H__ */