~ubuntu-branches/ubuntu/maverick/ilohamail/maverick

« back to all changes in this revision

Viewing changes to CONTRIB/contacts_importer_LDAP/ldap_conf.inc

  • Committer: Bazaar Package Importer
  • Author(s): Joerg Jaspert
  • Date: 2004-12-07 20:43:07 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041207204307-zimody559g63u39n
Tags: 0.8.14-0rc1
New Upstream Release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/********************************************************
3
 
    Author: Jayme Metcalfe
4
 
 
5
 
        conf/ldap_conf.inc
6
 
        
7
 
        PURPOSE:
8
 
        Configuration for LDAP
9
 
        
10
 
    PRE-CONDITION:
11
 
        None
12
 
 
13
 
    POST-CONDITION:
14
 
        Whatever that needs to be done...
15
 
 
16
 
    Comments: Just enter LDAP information here...server addresses, etc. Add additional
17
 
              array values for each server. 
18
 
 
19
 
********************************************************/
20
 
//these are just two entries, if you need more ldap servers just copy and paste, and set the [0] to // 2, 3, 4, etc
21
 
 
22
 
$LDAP_INFO[0] = array (
23
 
   "name" => "test1", //enter name of server here
24
 
   "hostname" => "127.0.0.1", //enter hostname here
25
 
   "ldap_root_dn" => "", // LDAP root DN; if you dont know leave as blank
26
 
   "anon_bind" => "1", // if you want to bind anonymously to LDAP server, enter 1, else 0
27
 
   "ldap_username" => "ldapuser", // if not anon bind, use this as username for bind
28
 
   "ldap_password" => "ldappass", // if not anon bind, use this as password for bind
29
 
);
30
 
 
31
 
$LDAP_INFO[1] = array (
32
 
   "name" => "test2", //enter name of server here
33
 
   "hostname" => "192.0.0.200", //enter hostname here
34
 
   "ldap_root_dn" => "", // LDAP root DN; if you dont know leave as blank
35
 
   "anon_bind" => "0", // if you want to bind anonymously to LDAP server, enter 1, else 0
36
 
   "ldap_username" => "ldapuser", // if not anon bind, use this as username for bind
37
 
   "ldap_password" => "ldappass", // if not anon bind, use this as password for bind
38
 
);
39
 
?>
 
 
b'\\ No newline at end of file'