mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Added mail function support
This commit is contained in:
parent
2545ce3cd9
commit
6266b50c03
29 changed files with 311 additions and 204 deletions
|
|
@ -6,6 +6,12 @@ if (!\defined('RAINLOOP_APP_LIBRARIES_PATH'))
|
|||
\define('RAINLOOP_APP_LIBRARIES_PATH', RAINLOOP_APP_PATH.'libraries/');
|
||||
\define('RAINLOOP_MB_SUPPORTED', \function_exists('mb_strtoupper'));
|
||||
|
||||
if (!defined('RL_BACKWARD_CAPABILITY'))
|
||||
{
|
||||
\define('RL_BACKWARD_CAPABILITY', true);
|
||||
include_once RAINLOOP_APP_PATH.'src/RainLoop/Common/BackwardCapability/Account.php';
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $sClassName
|
||||
*
|
||||
|
|
@ -30,7 +36,7 @@ if (!\defined('RAINLOOP_APP_LIBRARIES_PATH'))
|
|||
if (!RAINLOOP_MB_SUPPORTED && !defined('RL_MB_FIXED'))
|
||||
{
|
||||
\define('RL_MB_FIXED', true);
|
||||
include_once RAINLOOP_APP_LIBRARIES_PATH.'RainLoop/Common/MbStringFix.php';
|
||||
include_once RAINLOOP_APP_PATH.'src/RainLoop/Common/MbStringFix.php';
|
||||
}
|
||||
|
||||
return include RAINLOOP_APP_LIBRARIES_PATH.'Sabre/'.\str_replace('\\', '/', \substr($sClassName, 6)).'.php';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue