从我自己的服务器电子邮件地址(如 manoj@manoj.com)检索电子邮件


retrive the emails from my own server email address like manoj@manoj.com

是否可以从我自己的域邮件中获取电子邮件? 我想获取收件箱,请为此提供帮助,我现在正在使用IMAP,但它给了我SSL错误,例如

MAIL.enlighten-energy.net 的证书失败:服务器名称与证书不匹配:/OU=域控制已验证/OU=PositiveSSL 通配符/CN=*.justhost.com

function fetch_gmail_inbox()
    {
        $res=array();
        /* connect to gmail */
        $hostname = '{imap.enlighten-energy.net:143/imap}';
        $username = 'abc@enlighten-energy.net';
        $password = '*******';
        /* try to connect */
        $inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());
        /* grab emails */
        $emails = imap_search($inbox,'UNSEEN');
        /* if emails are returned, cycle through each... */
        if($emails) {
            /* put the newest emails on top */
            rsort($emails);
            /* for every email... */
            foreach($emails as $email_number) {
                /* get information specific to this email */
                $overview = imap_fetch_overview($inbox,$email_number,0);
                $message = quoted_printable_decode(imap_fetchbody($inbox,$email_number,1));
                 $structure = imap_fetchstructure($inbox,$email_number);
                if($structure->parts[0]->encoding == 3 ||$structure->encoding == 3 )
                {
                    $message=imap_base64($message);
                }
                if($structure->parts[0]->encoding == 4 ||$structure->encoding == 4) 
                {
                    $message = imap_qprint($message);
                }
                $message2= quoted_printable_decode(imap_fetchbody($inbox,$email_number,0));
                $date=explode(':',$message2);
                $date2= date('d-m-Y h:i:s',strtotime($date[8].':00:00'));

                if($overview[0]->subject=="USR:Site01_Comms Complete")
                {
                    $res['date']=$date2;
                    $res['body']=$message;
                }else
                {
                    echo "not a correct mail";
                }
            }
            return $res;
    } 
    /* close the connection */
    imap_close($inbox);

}

但它对我不起作用,任何建议都会很明显,提前感谢

MAIL.enlighten-energy.net 的证书失败:服务器名称与证书不匹配:/OU=域控制已验证/OU=PositiveSSL 通配符/CN=*.justhost.com

如果您了解SSL/TLS,错误消息实际上非常清楚:

  • 您访问imap.enlighten-energy.net(这是mail.enlighten-energy.net的别名)
  • 但是服务器的证书是为*.justhost.com颁发
  • 由于*.justhost.com不匹配imap.enlighten-energy.net因此它不会信任证书,因为如果它只信任任何证书,那么连接将受到中间人攻击的开放,这些攻击可以破坏加密。

总之:如果要将自己的域名用于IMAP服务器,则必须使用自己的域的证书设置此服务器。如果这是多个主机之间的共享服务器,并且您无权访问此服务器的配置,则无法执行此操作。

找到解决方案,我必须使用

$hostname = '{mail.enlighten-energy.net:143/imap/novalidate-cert}INBOX';

而不是这个

$hostname = '{imap.enlighten-energy.net:143/imap}';

喜欢,这是完整的解决方案

function fetch_gmail_inbox()
    {
        $res=array();
        /* connect to gmail */
        $hostname = '{mail.enlighten-energy.net:143/imap/novalidate-cert}INBOX';
        $username = Yii::app()->getModule('user')->get_config('datalogger_email');
        $password = Yii::app()->getModule('user')->get_config('datalogger_email_pwd');
        /* try to connect */
        $inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());
        /* grab emails */
        $emails = imap_search($inbox,'UNSEEN');
        /* if emails are returned, cycle through each... */
        if($emails) {
            /* put the newest emails on top */
            rsort($emails);
            /* for every email... */
            foreach($emails as $email_number) {
                /* get information specific to this email */
                $overview = imap_fetch_overview($inbox,$email_number,0);
                $message = quoted_printable_decode(imap_fetchbody($inbox,$email_number,1));
                 $structure = imap_fetchstructure($inbox,$email_number);
                if($structure->parts[0]->encoding == 3 ||$structure->encoding == 3 )
                {
                    $message=imap_base64($message);
                }
                if($structure->parts[0]->encoding == 4 ||$structure->encoding == 4) 
                {
                    $message = imap_qprint($message);
                }
                $message2= quoted_printable_decode(imap_fetchbody($inbox,$email_number,0));
                $date=explode(':',$message2);
                $date2= date('d-m-Y h:i:s',strtotime($date[8].':00:00'));

                if($overview[0]->subject=="USR:Site01_Comms Complete")
                {
                    $res['date']=$date2;
                    $res['body']=$message;
                }
            }
            return $res;
        } 
        /* close the connection */
        imap_close($inbox);

    }