Pman.js
[Pman.Core] / NotifySmtpCheck.php
index 89c15b2..7a2670a 100644 (file)
@@ -1,14 +1,20 @@
 <?php
 
 require_once 'Pman.php';
-require_once "Mail.php";
-require_once 'Mail/smtpmx.php';
+
         
 class Pman_Core_NotifySmtpCheck extends Pman
 {
-    function get()
+    function __construct()
+    {
+        require_once "Mail.php";
+        require_once 'Mail/smtpmx.php';
+    }
+    
+    function get($v, $opts=array())
     {
         $this->check();
+        exit;
     }
     
     function check()
@@ -40,7 +46,9 @@ class Pman_Core_NotifySmtpCheck extends Pman
                     'verify_peer_name'  => false
                 )
             );
-
+            if (empty($settings['port'])) {
+                $settings['port'] = 25;
+            }
             $smtp = new Net_SMTP($server, $settings['port'], $helo, false, 0, $socket_options);
 
 //            $smtp->setDebug(true);
@@ -76,7 +84,7 @@ class Pman_Core_NotifySmtpCheck extends Pman
     {
         $ifconfig = file_get_contents("https://ifconfig.co/");
         $dom = new DomDocument('1.0', 'utf-8');
-        $dom->loadHTML($ifconfig);
+        @$dom->loadHTML($ifconfig);
         
         $xpath = new DOMXPath($dom);