summaryrefslogtreecommitdiff
path: root/Postman/Postman-Diagnostic-Test
diff options
context:
space:
mode:
authoryehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664>2018-11-29 11:33:11 +0000
committeryehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664>2018-11-29 11:33:11 +0000
commit4c2738e179c4d994b6b6db3c67d9d1c227a0ede1 (patch)
tree5fcee9e6188885d4d813aa0f6ae5714991843c63 /Postman/Postman-Diagnostic-Test
parentd4f1be44c403a191b250eba13798f18a1c0daed9 (diff)
downloadPost-SMTP-4c2738e179c4d994b6b6db3c67d9d1c227a0ede1.zip
Diagnostic info + office 365 tls check + mailgun header issue
Diffstat (limited to 'Postman/Postman-Diagnostic-Test')
-rw-r--r--Postman/Postman-Diagnostic-Test/PostmanDiagnosticTestController.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/Postman/Postman-Diagnostic-Test/PostmanDiagnosticTestController.php b/Postman/Postman-Diagnostic-Test/PostmanDiagnosticTestController.php
index 9f1c591..ad5fa84 100644
--- a/Postman/Postman-Diagnostic-Test/PostmanDiagnosticTestController.php
+++ b/Postman/Postman-Diagnostic-Test/PostmanDiagnosticTestController.php
@@ -208,8 +208,11 @@ class PostmanGetDiagnosticsViaAjax {
/**
*/
public function getDiagnostics() {
+ $curl = curl_version();
$transportRegistry = PostmanTransportRegistry::getInstance();
$this->addToDiagnostics( 'HostName', PostmanUtils::getServerName() );
+ $this->addToDiagnostics( 'cURL Version', $curl['version'] );
+ $this->addToDiagnostics( 'OpenSSL Version', $curl['ssl_version'] );
$this->addToDiagnostics( 'OS', php_uname() );
$this->addToDiagnostics( 'PHP', PHP_OS . ' ' . PHP_VERSION . ' ' . setlocale( LC_CTYPE, 0 ) );
$this->addToDiagnostics( 'PHP Dependencies', $this->getPhpDependencies() );