NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
index d7823e0..668760a 100644 (file)
@@ -1,24 +1,73 @@
 <?php
 
 require_once 'Pman.php';
-
+require_once "Mail.php";
+require_once 'Mail/smtpmx.php';
+        
 class Pman_Core_NotifySmtpCheck extends Pman
 {
-    function getAuth() 
-    {
-        $ff = HTML_FlexyFramework::get();
-        if (!empty($ff->cli)) {
-            $this->cli = true;
-            return true;
-        }
+    static $cli_desc = "Check SMTP";
+    static $cli_opts = array();
         
-        return false;
+    function get()
+    {
+        $this->check();
         
     }
-     
-    function get($args, $opts)
+    
+    function check()
     {
+        $ff = HTML_FlexyFramework::get();
+        
+        if(
+                empty($ff->Core_Notify) ||
+                empty($ff->Core_Notify['routes'])
+        ){
+            return;
+        }
+        
+        $error = array();
         
+        foreach ($ff->Core_Notify['routes'] as $server => $settings){
+            if(empty($settings['domains']) || empty($settings['username']) || empty($settings['password'])){
+                $error[] = "{$server} missing domains / username / password";
+                continue;
+            }
+            
+            foreach ($settings['domains'] as $dom){
+                
+                $socket_options = array (
+                    'ssl' => array(
+                        'verify_peer'  => false,
+                        'verify_peer_name'  => false,
+                        'allow_self_signed' => true
+                    )
+                );
+                
+                $smtp = new Net_SMTP($server, $settings['port'], '058177247238.ctinets.com', false, 0, $socket_options);
+                
+                $smtp->setDebug(true);
+                
+                $res = $smtp->connect(10);
+                
+                if (is_a($res, 'PEAR_Error')) {
+                    die("Cound not connect to {$server}");
+                }
+                
+                $res = $smtp->auth($settings['username'], $settings['password']);
+            
+                if (is_a($res, 'PEAR_Error')) {
+                    die($res);
+                }
+                
+                print_R("SUCCESS? {$res} \n");
+                exit;
+                   
+            }
+            
+            
+        }
     }
     
 }
\ No newline at end of file