NotifySmtpCheck.php
[Pman.Core] / NotifySmtpCheck.php
1 <?php
2
3 require_once 'Pman.php';
4 require_once "Mail.php";
5 require_once 'Mail/smtpmx.php';
6         
7 class Pman_Core_NotifySmtpCheck extends Pman
8 {
9     static $cli_desc = "Check SMTP";
10  
11     static $cli_opts = array();
12         
13     function get()
14     {
15         $this->check();
16         
17     }
18     
19     function check()
20     {
21         $ff = HTML_FlexyFramework::get();
22         
23         if(
24                 empty($ff->Core_Notify) ||
25                 empty($ff->Core_Notify['routes'])
26         ){
27             return;
28         }
29         
30         $error = array();
31         
32         foreach ($ff->Core_Notify['routes'] as $server => $settings){
33             if(empty($settings['domains']) || empty($settings['username']) || empty($settings['password'])){
34                 $error[] = "{$server} missing domains / username / password";
35                 continue;
36             }
37             
38             foreach ($settings['domains'] as $dom){
39 //                $mailer = Mail::factory('smtp', array(
40 //                    'host'    => $dom ,
41 //                    'localhost' => $server,
42 //                    'timeout' => 15,
43 //                    'auth' => true,
44 //                    'username' => $settings['username'],
45 //                    'password' => $settings['password']
46 //                ));
47 //                
48 //                print_R($mailer);exit;
49                 
50 //                $params = array(
51 //                    'netdns' => false
52 //                );
53                 
54 //                $smtpmx = new Mail_smtpmx($params);
55 //                $smtpmx->debug = true;
56                 
57                 $smtp = new Net_SMTP($server, 25, $dom);
58                 $smtp->setDebug(true);
59 //                print_R($smtp);
60                 
61 //                print_R($smtpmx->_smtp);exit;
62                 
63                 $res = $smtp->connect($smtpmx->timeout);
64                 
65                 if (is_a($res, 'PEAR_Error')) {
66                     print_R('error?????');exit;
67                 }
68                 
69                 $r = $smtp->auth($settings['username'], $settings['password']);
70             
71                 print_R($r);exit;
72 //                $smtpmx->_smtp->disconnect();
73                 print_r("resutlt : {$res} \n");
74                 exit;
75                     
76 //                $mx = $smtpmx->_getMx($dom);
77 //                
78 //                foreach ($mx as $mserver => $mpriority) {
79 //                    
80 //                    $smtpmx->_smtp = new Net_SMTP($mserver, $smtpmx->port, $smtpmx->mailname);
81 //                    
82 ////                    print_R($smtpmx);exit;
83 //                    $res = $smtpmx->_smtp->connect($smtpmx->timeout);
84 //
85 //                    $smtpmx->_smtp->disconnect();
86 //                    
87 //                    print_R($res);exit;
88 //                }
89                 
90             }
91             
92             
93         }
94     }
95     
96 }