I have an office365 email account that I want to make an SMTP connection to to send emails for our OSTicket installation. We have PHP 5.6.3 and have the following SMTP settings:Hostname: smtp.office365.comPort: 587Auth Required: YesHeader Spoofing: YesI get this error when trying to save the configuration:authentication failure This is apparently because PHP 5.6 introduced a new step in the process. We have another OSTicket instance that uses an older version of PHP that works fine.Since we can't roll back our PHP version without making some major changes, is there a way to make SMTP work with the current version of PHP?Note:I found another thread that suggested changing a line of the SMTP.php file to $this->_socket_options = array('ssl' => array('verify_peer_name' => false)); This does not work.