| Server IP : 103.161.17.216 / Your IP : 216.73.216.1 Web Server : nginx/1.18.0 System : Linux tipsysaigoncharming 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/app.houseland.info/application/config/ |
Upload File : |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
$config['useragent'] = get_option('mail_engine'); // phpmailer or codeigniter
$microsoftClientId = get_option('microsoft_mail_client_id');
$microsoftClientSecret = get_instance()->encryption->decrypt(get_option('microsoft_mail_client_secret'));
$tenantId = get_option('microsoft_mail_azure_tenant_id');
$googleClientId = get_option('google_mail_client_id');
$googleClientSecret = get_instance()->encryption->decrypt(get_option('google_mail_client_secret'));
if (!empty($microsoftClientId) && !empty($microsoftClientSecret) && get_option('email_protocol') == 'microsoft') {
$config['client_id'] = $microsoftClientId;
$config['client_secret'] = $microsoftClientSecret;
$config['tenant_id'] = $tenantId;
$config['refresh_token'] = get_option('microsoft_mail_refresh_token');
}
if (!empty($googleClientId) && !empty($googleClientSecret) && get_option('email_protocol') == 'google') {
$config['client_id'] = $googleClientId;
$config['client_secret'] = $googleClientSecret;
$config['refresh_token'] = get_option('google_mail_refresh_token');
}
$config['protocol'] = get_option('email_protocol');
$config['mailpath'] = '/usr/bin/sendmail'; // or "/usr/sbin/sendmail"
$config['smtp_host'] = trim(get_option('smtp_host'));
if (get_option('smtp_username') == '') {
$config['smtp_user'] = trim(get_option('smtp_email'));
} else {
$config['smtp_user'] = trim(get_option('smtp_username'));
}
$config['smtp_pass'] = get_instance()->encryption->decrypt(get_option('smtp_password'));
$config['smtp_port'] = trim(get_option('smtp_port'));
$config['smtp_timeout'] = 30;
$config['smtp_crypto'] = get_option('smtp_encryption');
$config['smtp_debug'] = 0; // PHPMailer's SMTP debug info level: 0 = off, 1 = commands, 2 = commands and data, 3 = s 2 plus connection status, 4 = low level data output.
$config['debug_output'] = 'html'; // PHPMailer's SMTP debug output: 'html', 'echo', 'error_log' or user defined unction with parameter $str and $level. NULL or '' means 'echo' on CLI, 'html' otherwise.
$config['smtp_auto_tls'] = false; // Whether to enable TLS encryption automatically if a server supports it, even if smtp_crypto` is not set to 'tls'.
$config['smtp_conn_options'] = []; // SMTP connection options, an array passed to the function stream_context_create() when onnecting via SMTP.
$config['wordwrap'] = true;
$config['mailtype'] = 'html';
$charset = strtoupper(get_option('smtp_email_charset'));
$charset = trim($charset);
if ($charset == '' || strcasecmp($charset, 'utf8') == 'utf8') {
$charset = 'utf-8';
}
$config['charset'] = $charset;
$config['validate'] = false;
$config['priority'] = 3; // 1, 2, 3, 4, 5; on PHPMailer useragent NULL is a possible option, it means that -priority header is not set at all, see https://github.com/PHPMailer/PHPMailer/issues/449
$config['newline'] = "\r\n";
$config['crlf'] = "\r\n";
$config['bcc_batch_mode'] = false;
$config['bcc_batch_size'] = 200;
$config['encoding'] = '8bit'; // The body encoding. For CodeIgniter: '8bit' or '7bit'. For PHPMailer: '8bit', '7bit', binary', 'base64', or 'quoted-printable'.
// DKIM Signing
// See https://yomotherboard.com/how-to-setup-email-server-dkim-keys/
// See http://stackoverflow.com/questions/24463425/send-mail-in-phpmailer-using-dkim-keys
// See https://github.com/PHPMailer/PHPMailer/blob/v5.2.14/test/phpmailerTest.php#L1708
$config['dkim_domain'] = ''; // DKIM signing domain name, for exmple 'example.com'.
$config['dkim_private'] = ''; // DKIM private key, set as a file path.
$config['dkim_private_string'] = ''; // DKIM private key, set directly from a string.
$config['dkim_selector'] = ''; // DKIM selector.
$config['dkim_passphrase'] = ''; // DKIM passphrase, used if your key is encrypted.
$config['dkim_identity'] = ''; // DKIM Identity, usually the email address used as the source of the email.
if (file_exists(APPPATH . 'config/my_email.php')) {
include_once(APPPATH . 'config/my_email.php');
}