~ubuntu-branches/ubuntu/precise/dspam/precise

« back to all changes in this revision

Viewing changes to src/ldap_client.h

  • Committer: Bazaar Package Importer
  • Author(s): Julien Valroff, Julien Valroff, Thomas Preud'homme
  • Date: 2011-05-08 13:43:52 UTC
  • mfrom: (1.2.1 upstream) (8.2.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: james.westby@ubuntu.com-20110508134352-dxjx9m6tx1cbzlhq
Tags: 3.9.1~rc1+git20110419.29261fb+dfsg-1
[ Julien Valroff ]
* New git snapshot
* Install all dspam_* tools setgid so that they can be used by standard
  users
* Add symbols file for libdspam7
* Upload to unstable

[ Thomas Preud'homme ]
* Fix permissions on dspam_stats and missing opt-{in,out} directories
  (Closes: #394443)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: ldap_client.h,v 1.4 2006/05/13 01:12:59 jonz Exp $ */
2
 
 
3
 
/*
4
 
 DSPAM
5
 
 COPYRIGHT (C) 2002-2006 JONATHAN A. ZDZIARSKI
6
 
 
7
 
 This program is free software; you can redistribute it and/or
8
 
 modify it under the terms of the GNU General Public License
9
 
 as published by the Free Software Foundation; version 2
10
 
 of the License.
11
 
 
12
 
 This program is distributed in the hope that it will be useful,
13
 
 but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
 GNU General Public License for more details.
16
 
 
17
 
 You should have received a copy of the GNU General Public License
18
 
 along with this program; if not, write to the Free Software
19
 
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
 
 
21
 
*/
22
 
 
23
 
#ifdef HAVE_CONFIG_H
24
 
#include <auto-config.h>
25
 
#endif
26
 
 
27
 
#ifdef USE_LDAP
28
 
 
29
 
#ifndef _LDAP_CLIENT_H
30
 
#define _LDAP_CLIENT_H
31
 
 
32
 
#include "libdspam.h"
33
 
 
34
 
int ldap_verify(DSPAM_CTX *CTX, const char *username);
35
 
 
36
 
#endif /* _LDAP_CLIENT_H */
37
 
 
38
 
#endif /* USE_LDAP */