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         $ifconfig = file_get_contents("https://ifconfig.co/");
31         $dom = new DomDocument('1.0', 'utf-8');
32         $dom->loadHTML($ifconfig);
33         
34         $xpath = new DOMXPath($dom);
35         
36         $lists = $xpath->query("//code[@class='ip']");
37         
38         
39         print_R($lists);exit;
40         
41         $error = array();
42         
43         foreach ($ff->Core_Notify['routes'] as $server => $settings){
44             if(empty($settings['domains']) || empty($settings['username']) || empty($settings['password'])){
45                 $error[] = "{$server} missing domains / username / password";
46                 continue;
47             }
48             
49             foreach ($settings['domains'] as $dom){
50                 
51                 $socket_options = array (
52                     'ssl' => array(
53                         'verify_peer'  => false,
54                         'verify_peer_name'  => false,
55                         'allow_self_signed' => true
56                     )
57                 );
58                 
59                 $smtp = new Net_SMTP($server, $settings['port'], '058177247238.ctinets.com', false, 0, $socket_options);
60                 
61                 $smtp->setDebug(true);
62                 
63                 $res = $smtp->connect(10);
64                 
65                 if (is_a($res, 'PEAR_Error')) {
66                     die("Cound not connect to {$server}");
67                 }
68                 
69                 $res = $smtp->auth($settings['username'], $settings['password']);
70             
71                 if (is_a($res, 'PEAR_Error')) {
72                     die($res);
73                 }
74                 
75                 print_R("SUCCESS? {$res} \n");
76                 exit;
77                    
78             }
79             
80             
81         }
82     }
83     
84 }