Ignore:
Timestamp:
05/05/11 09:37:13 (13 years ago)
Author:
emersonfaria
Message:

Ticket #1829 - Criado trace detalhado filtrado por usuario e backend

File:
1 edited

Legend:

Unmodified
Added
Removed
  • contrib/z-push/config.php

    r4000 r4219  
    1111* Consult LICENSE file for details 
    1212************************************************/ 
     13 
    1314    // Defines the default time zone 
    1415    if (function_exists("date_default_timezone_set")){ 
     
    4647     
    4748    // The data providers that we are using (see configuration below) 
    48     //$BACKEND_PROVIDER = "BackendIMAP"; 
     49        //$BACKEND_PROVIDER = "BackendIMAP"; 
    4950    //$BACKEND_PROVIDER = "BackendCalendarExpresso"; 
    5051    //$BACKEND_PROVIDER = "BackendContactsExpresso"; 
     
    9596    define('VCARDDIR_DIR', '/var/www/vcf'); 
    9697 
     98    // ********************** 
     99    //  TRACE settings 
     100    //  When enabled it creates a file named trace-<USER-ID>.txt during sincronization 
     101    // ********************** 
     102    // A string with User_Login that you want to trace or a boolean FALSE if you don't want to trace.     
     103    define('TRACE_UID', '86928023953'); 
     104    // TRACE_TYPE can be 'ALL', 'IMAP', 'CALENDAR' or 'CONTACTS' 
     105    define('TRACE_TYPE', 'IMAP'); 
     106     
    97107    // **************************************************** 
    98108    //  LDAP Authentication settings 
     
    101111    // Must have read access to DN, UID and UIDNUMBER of all users 
    102112        define("ANONYMOUS_BIND", false); 
    103         define("LDAP_BIND_USER", "cn=admin,ou=expressolivre,ou=corp,dc=empresa,dc=gov,dc=br"); 
    104         define("LDAP_BIND_PASSWORD", "senha_do_admin"); 
     113        define("LDAP_BIND_USER", "cn=admin,ou=expressolivre,ou=corp,dc=serpro,dc=gov,dc=br"); 
     114        define("LDAP_BIND_PASSWORD", "correio"); 
    105115     
    106116        define("LDAP_HOST", "ldap://10.200.112.132/"); // Address of your LDAP server 
     
    108118 
    109119        // Search base & filter 
    110         define("LDAP_SEARCH_BASE", "dc=empresa,dc=gov,dc=br"); // Base path to search the filter. Example: dc=company,dc=com 
     120        define("LDAP_SEARCH_BASE", "dc=serpro,dc=gov,dc=br"); // Base path to search the filter. Example: dc=company,dc=com 
    111121        define("LDAP_SEARCH_FILTER", "uid=SEARCHVALUE"); // The filter is the user login attribute. You can change only the "uid" by other attribute. The SEARCHVALUE string is replaced by the user login inside the backends. 
    112122 
Note: See TracChangeset for help on using the changeset viewer.