mirror of
https://github.com/itflow-org/itflow
synced 2026-03-04 21:04:50 +00:00
If imap Encryption is blank then use notls in the ticket mail parser
This commit is contained in:
@@ -468,7 +468,7 @@ $validate_cert = true;
|
|||||||
// Defaults from settings (standard IMAP)
|
// Defaults from settings (standard IMAP)
|
||||||
$host = $config_imap_host;
|
$host = $config_imap_host;
|
||||||
$port = (int)$config_imap_port;
|
$port = (int)$config_imap_port;
|
||||||
$encr = !empty($config_imap_encryption) ? $config_imap_encryption : null; // 'ssl'|'tls'|null
|
$encr = !empty($config_imap_encryption) ? $config_imap_encryption : 'notls'; // 'ssl'|'tls'|'notls'
|
||||||
$user = $config_imap_username;
|
$user = $config_imap_username;
|
||||||
$pass = $config_imap_password;
|
$pass = $config_imap_password;
|
||||||
$auth = null; // 'oauth' for OAuth providers
|
$auth = null; // 'oauth' for OAuth providers
|
||||||
|
|||||||
Reference in New Issue
Block a user