* src/pixmaps/mimeview_gpg_expired.xpm
[claws.git] / src / ldapctrl.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2003 Match Grun
4  *
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 2 of the License, or
8  * (at your option) any later version.
9  *
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.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Functions for LDAP control data.
22  */
23
24 #ifndef __LDAPCTRL_H__
25 #define __LDAPCTRL_H__
26
27 #ifdef USE_LDAP
28
29 #include <glib.h>
30 #include <stdio.h>
31 #include <pthread.h>
32
33 /*
34  * Constants.
35  */
36 #define LDAPCTL_DFL_PORT        389
37 #define LDAPCTL_MAX_ENTRIES     30
38 #define LDAPCTL_DFL_TIMEOUT     30
39 #define LDAPCTL_DFL_QUERY_AGE   600
40 #define LDAPCTL_MAX_QUERY_AGE   86400
41
42 #define LDAPCTL_ATTR_EMAIL      "mail"
43 #define LDAPCTL_ATTR_COMMONNAME "cn"
44 #define LDAPCTL_ATTR_GIVENNAME  "givenName"
45 #define LDAPCTL_ATTR_SURNAME    "sn"
46
47 #define LDAPCTL_DFL_ATTR_LIST   "mail, cn, givenName, sn"
48
49 /*
50  * Data structures.
51  */
52 typedef struct _LdapControl LdapControl;
53 struct _LdapControl {
54         gchar     *hostName;
55         gint      port;
56         gchar     *baseDN;
57         gchar     *bindDN;
58         gchar     *bindPass;
59         gint      maxEntries;
60         gint      timeOut;
61         gint      maxQueryAge;
62         gchar     *attribEMail;
63         gchar     *attribCName;
64         gchar     *attribFName;
65         gchar     *attribLName;
66         GList     *listCriteria;
67         pthread_mutex_t *mutexCtl;
68 };
69
70 /* Function prototypes */
71 LdapControl *ldapctl_create     ( void );
72 void ldapctl_set_host           ( LdapControl* ctl, const gchar *value );
73 void ldapctl_set_port           ( LdapControl* ctl, const gint value );
74 void ldapctl_set_base_dn        ( LdapControl* ctl, const gchar *value );
75 void ldapctl_set_bind_dn        ( LdapControl* ctl, const gchar *value );
76 void ldapctl_set_bind_password  ( LdapControl* ctl, const gchar *value );
77 void ldapctl_set_max_entries    ( LdapControl* ctl, const gint value );
78 void ldapctl_set_timeout        ( LdapControl* ctl, const gint value );
79 void ldapctl_set_max_query_age  ( LdapControl* ctl, const gint value );
80 void ldapctl_set_criteria_list  ( LdapControl* ctl, GList *value );
81 GList *ldapctl_get_criteria_list( const LdapControl* ctl );
82 void ldapctl_criteria_list_clear( LdapControl *ctl );
83 void ldapctl_criteria_list_add  ( LdapControl *ctl, gchar *attr );
84 void ldapctl_default_attributes ( LdapControl *ctl );
85 void ldapctl_clear              ( LdapControl *ctl );
86 void ldapctl_free               ( LdapControl *ctl );
87 void ldapctl_default_values     ( LdapControl *ctl );
88 void ldapctl_print              ( const LdapControl *ctl, FILE *stream );
89 void ldapctl_copy               ( const LdapControl *ctlFrom,
90                                   LdapControl *ctlTo );
91 gchar *ldapctl_format_criteria  ( LdapControl *ctl, const gchar *searchVal );
92 char **ldapctl_attribute_array  ( LdapControl *ctl );
93 void ldapctl_free_attribute_array( char **ptrArray );
94 void ldapctl_parse_ldap_search  ( LdapControl *ctl, gchar *criteria );
95
96 #endif  /* USE_LDAP */
97
98 #endif /* __LDAPCTRL_H__ */
99