Server IP : 192.185.129.71 / Your IP : 3.16.75.169 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/config/ |
[ Home ] | [ C0mmand ] | [ 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'); }