for release 3.15.1
[claws.git] / src / exportldif.h
blobf554b8be88c66ba762c9c90c34da754019df0d78
1 /*
2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 2003-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 for export to LDIF file.
24 #ifndef __EXPORT_LDIF_H__
25 #define __EXPORT_LDIF_H__
27 #include <glib.h>
29 #include "addrcache.h"
31 /* RDN ID's */
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 {
42 gchar *path;
43 gchar *dirOutput;
44 gchar *fileLdif;
45 gchar *settingsFile;
46 gchar *suffix;
47 gint rdnIndex;
48 gboolean useDN;
49 gboolean excludeEMail;
50 gint retVal;
51 gint rcCreate;
54 /* Function prototypes */
55 ExportLdifCtl *exportldif_create ( void );
56 void exportldif_free ( ExportLdifCtl *ctl );
57 void exportldif_set_file_html ( ExportLdifCtl *ctl,
58 const gchar *value );
59 void exportldif_set_suffix ( ExportLdifCtl *ctl,
60 const gchar *value );
61 void exportldif_set_rdn ( ExportLdifCtl *ctl,
62 const gint value );
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_create_dir ( ExportLdifCtl *ctl );
70 gchar *exportldif_get_create_msg ( ExportLdifCtl *ctl );
72 void exportldif_parse_filespec ( ExportLdifCtl *ctl,
73 gchar *fileSpec );
74 void exportldif_load_settings ( ExportLdifCtl *ctl );
75 void exportldif_save_settings ( ExportLdifCtl *ctl );
77 #endif /* __EXPORT_LDIF_H__ */