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                 $socket_options = array (
58                     'ssl' => array(
59                         'verify_peer'  => false,
60                         'verify_peer_name'  => false,
61                         'allow_self_signed' => true
62                     )
63                 );
64                 
65                 $smtp = new Net_SMTP($server, 993, $dom, false, 0, $socket_options);
66                 
67                 $smtp->setDebug(true);
68 //                print_R($smtp);
69                 
70 //                print_R($smtpmx->_smtp);exit;
71                 
72                 $res = $smtp->connect(10);
73                 
74                 if (is_a($res, 'PEAR_Error')) {
75                     print_R('error?????');exit;
76                 }
77                 
78                 $res = $smtp->auth($settings['username'], $settings['password']);
79             
80 //                $smtpmx->_smtp->disconnect();
81                 print_r("resutlt : {$res} \n");
82                 exit;
83                     
84 //                $mx = $smtpmx->_getMx($dom);
85 //                
86 //                foreach ($mx as $mserver => $mpriority) {
87 //                    
88 //                    $smtpmx->_smtp = new Net_SMTP($mserver, $smtpmx->port, $smtpmx->mailname);
89 //                    
90 ////                    print_R($smtpmx);exit;
91 //                    $res = $smtpmx->_smtp->connect($smtpmx->timeout);
92 //
93 //                    $smtpmx->_smtp->disconnect();
94 //                    
95 //                    print_R($res);exit;
96 //                }
97                 
98             }
99             
100             
101         }
102     }
103     
104 }