Unverified Commit 03e967a2 authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(core) Move constant defines to functions.inc

issue #6071
Showing with 8 additions and 7 deletions
+8 -7
...@@ -24,13 +24,6 @@ ...@@ -24,13 +24,6 @@
* Source code for class msgPool * Source code for class msgPool
*/ */
define('LDAP_READ', 1);
define('LDAP_ADD', 2);
define('LDAP_MOD', 3);
define('LDAP_DEL', 4);
define('LDAP_SEARCH', 5);
define('LDAP_AUTH', 6);
/*! /*!
* \brief This class contains all the messages for the various actions * \brief This class contains all the messages for the various actions
*/ */
......
...@@ -45,6 +45,14 @@ define('DEBUG_SI', 256); /*! Debug level for communication with Argonaut * ...@@ -45,6 +45,14 @@ define('DEBUG_SI', 256); /*! Debug level for communication with Argonaut *
define('DEBUG_MAIL', 512); /*! Debug level for all about mail (mailAccounts, imap, sieve etc.) */ define('DEBUG_MAIL', 512); /*! Debug level for all about mail (mailAccounts, imap, sieve etc.) */
define('DEBUG_FAI', 1024); /* FAI (incomplete) */ define('DEBUG_FAI', 1024); /* FAI (incomplete) */
/* Define constants for LDAP operations */
define('LDAP_READ', 1);
define('LDAP_ADD', 2);
define('LDAP_MOD', 3);
define('LDAP_DEL', 4);
define('LDAP_SEARCH', 5);
define('LDAP_AUTH', 6);
/* Rewrite german 'umlauts' and spanish 'accents' /* Rewrite german 'umlauts' and spanish 'accents'
to get better results */ to get better results */
$REWRITE = [ "ä" => "ae", $REWRITE = [ "ä" => "ae",
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment