Skip to content
Snippets Groups Projects
class.mailfetch.php 20 KiB
Newer Older
Jared Hancock's avatar
Jared Hancock committed
<?php
/*********************************************************************
    class.mailfetch.php

    mail fetcher class. Uses IMAP ext for now.

    Peter Rotich <peter@osticket.com>
    Copyright (c)  2006-2012 osTicket
    http://www.osticket.com

    Released under the GNU General Public License WITHOUT ANY WARRANTY.
    See LICENSE.TXT for details.

    vim: expandtab sw=4 ts=4 sts=4:
**********************************************************************/

require_once(INCLUDE_DIR.'class.mailparse.php');
require_once(INCLUDE_DIR.'class.ticket.php');
require_once(INCLUDE_DIR.'class.dept.php');
Peter Rotich's avatar
Peter Rotich committed
require_once(INCLUDE_DIR.'class.email.php');
Jared Hancock's avatar
Jared Hancock committed
require_once(INCLUDE_DIR.'class.filter.php');

class MailFetcher {

Peter Rotich's avatar
Peter Rotich committed
    var $ht;
Jared Hancock's avatar
Jared Hancock committed

    var $mbox;
Peter Rotich's avatar
Peter Rotich committed
    var $srvstr;
Peter Rotich's avatar
Peter Rotich committed
    var $charset = 'UTF-8';
    var $encodings =array('UTF-8','WINDOWS-1251', 'ISO-8859-5', 'ISO-8859-1','KOI8-R');
Peter Rotich's avatar
Peter Rotich committed
    function MailFetcher($email, $charset='UTF-8') {
Peter Rotich's avatar
Peter Rotich committed
        
        if($email && is_numeric($email)) //email_id
            $email=Email::lookup($email);

        if(is_object($email))
            $this->ht = $email->getMailAccountInfo();
        elseif(is_array($email) && $email['host']) //hashtable of mail account info
            $this->ht = $email; 
        else
            $this->ht = null;
           
        $this->charset = $charset;

        if($this->ht) {
            if(!strcasecmp($this->ht['protocol'],'pop')) //force pop3
                $this->ht['protocol'] = 'pop3';
            else
                $this->ht['protocol'] = strtolower($this->ht['protocol']);

            //Max fetch per poll
            if(!$this->ht['max_fetch'] || !is_numeric($this->ht['max_fetch']))
                $this->ht['max_fetch'] = 20;

            //Mail server string
            $this->srvstr=sprintf('{%s:%d/%s', $this->getHost(), $this->getPort(), $this->getProtocol());
            if(!strcasecmp($this->getEncryption(), 'SSL'))
                $this->srvstr.='/ssl';
        
            $this->srvstr.='/novalidate-cert}';
Jared Hancock's avatar
Jared Hancock committed

        }

        //Set timeouts 
Peter Rotich's avatar
Peter Rotich committed
        if(function_exists('imap_timeout')) imap_timeout(1,20);

    }

    function getEmailId() {
        return $this->ht['email_id'];
    }

    function getHost() {
        return $this->ht['host'];
    }

    function getPort() {
        return $this->ht['port'];
    }

    function getProtocol() {
        return $this->ht['protocol'];
    }

    function getEncryption() {
        return $this->ht['encryption'];
    }

    function getUsername() {
        return $this->ht['username'];
Peter Rotich's avatar
Peter Rotich committed
    function getPassword() {
        return $this->ht['password'];
    }

    /* osTicket Settings */

    function canDeleteEmails() {
        return ($this->ht['delete_mail']);
    }

    function getMaxFetch() {
        return $this->ht['max_fetch'];
    }

    function getArchiveFolder() {
        return $this->ht['archive_folder'];
    }

    /* Core */
    
Jared Hancock's avatar
Jared Hancock committed
    function connect() {
Peter Rotich's avatar
Peter Rotich committed
        return ($this->mbox && $this->ping())?$this->mbox:$this->open();
Peter Rotich's avatar
Peter Rotich committed
    function ping() {
        return ($this->mbox && imap_ping($this->mbox));
    }

    /* Default folder is inbox - TODO: provide user an option to fetch from diff folder/label */
    function open($box='INBOX') {
      
        if($this->mbox)
           $this->close();

        $this->mbox = imap_open($this->srvstr.$box, $this->getUsername(), $this->getPassword());

Jared Hancock's avatar
Jared Hancock committed
        return $this->mbox;
    }

Peter Rotich's avatar
Peter Rotich committed
    function close($flag=CL_EXPUNGE) {
        imap_close($this->mbox, $flag);
Peter Rotich's avatar
Peter Rotich committed
    function mailcount() {
Jared Hancock's avatar
Jared Hancock committed
        return count(imap_headers($this->mbox));
    }

    //Get mail boxes.
Peter Rotich's avatar
Peter Rotich committed
    function getMailboxes() {
Peter Rotich's avatar
Peter Rotich committed
        if(!($folders=imap_list($this->mbox, $this->srvstr, "*")) || !is_array($folders))
            return null;
Peter Rotich's avatar
Peter Rotich committed
        $list = array();
Peter Rotich's avatar
Peter Rotich committed
        foreach($folders as $folder)
Peter Rotich's avatar
Peter Rotich committed
            $list[]= str_replace($this->srvstr, '', imap_utf7_decode(trim($folder)));
Jared Hancock's avatar
Jared Hancock committed

        return $list;
    }

    //Create a folder.
Peter Rotich's avatar
Peter Rotich committed
    function createMailbox($folder) {
Jared Hancock's avatar
Jared Hancock committed

        if(!$folder) return false;
            
Peter Rotich's avatar
Peter Rotich committed
        return imap_createmailbox($this->mbox, imap_utf7_encode($this->srvstr.trim($folder)));
Peter Rotich's avatar
Peter Rotich committed
    /* check if a folder exists - create one if requested */
    function checkMailbox($folder, $create=false) {
Peter Rotich's avatar
Peter Rotich committed
        if(($mailboxes=$this->getMailboxes()) && in_array(trim($folder), $mailboxes))
Jared Hancock's avatar
Jared Hancock committed
            return true;

        return ($create && $this->createMailbox($folder));
    }


Peter Rotich's avatar
Peter Rotich committed
    function decode($encoding, $text) {
Jared Hancock's avatar
Jared Hancock committed

        switch($encoding) {
            case 1:
            $text=imap_8bit($text);
            break;
            case 2:
            $text=imap_binary($text);
            break;
            case 3:
            $text=imap_base64($text);
            break;
            case 4:
            $text=imap_qprint($text);
            break;
            case 5:
            default:
             $text=$text;
        } 
        return $text;
    }

    //Convert text to desired encoding..defaults to utf8
Peter Rotich's avatar
Peter Rotich committed
    function mime_encode($text, $charset=null, $enc='utf-8') { //Thank in part to afterburner  
        
        if(function_exists('iconv') and ($charset or function_exists('mb_detect_encoding'))) {
Jared Hancock's avatar
Jared Hancock committed
            if($charset)
Peter Rotich's avatar
Peter Rotich committed
                return iconv($charset, $enc.'//IGNORE', $text);
            elseif(function_exists('mb_detect_encoding'))
                return iconv(mb_detect_encoding($text, $this->encodings), $enc, $text);
        } elseif(function_exists('iconv_mime_decode')) {
            return iconv_mime_decode($text, 0, $enc);
Jared Hancock's avatar
Jared Hancock committed
        }

        return utf8_encode($text);
    }
    
    //Generic decoder - resuting text is utf8 encoded -> mirrors imap_utf8
Jared Hancock's avatar
Jared Hancock committed
    function mime_decode($text) {
        
        $str = '';
Peter Rotich's avatar
Peter Rotich committed
        $parts = imap_mime_header_decode($text);
Peter Rotich's avatar
Peter Rotich committed
        foreach ($parts as $part)
            $str.= $this->mime_encode($part->text, ($part->charset=='default'?'ASCII':$part->charset), 'utf-8');
Jared Hancock's avatar
Jared Hancock committed
        
        return $str?$str:imap_utf8($text);
    }

Peter Rotich's avatar
Peter Rotich committed
    function getLastError() {
Jared Hancock's avatar
Jared Hancock committed
        return imap_last_error();
    }

    function getMimeType($struct) {
        $mimeType = array('TEXT', 'MULTIPART', 'MESSAGE', 'APPLICATION', 'AUDIO', 'IMAGE', 'VIDEO', 'OTHER');
        if(!$struct || !$struct->subtype)
            return 'TEXT/PLAIN';
        
        return $mimeType[(int) $struct->type].'/'.$struct->subtype;
    }

    function getHeaderInfo($mid) {
        
Peter Rotich's avatar
Peter Rotich committed
        if(!($headerinfo=imap_headerinfo($this->mbox, $mid)) || !$headerinfo->from)
            return null;
Peter Rotich's avatar
Peter Rotich committed
        $sender=$headerinfo->from[0];
        //Just what we need...
        $header=array('name'  =>@$sender->personal,
                      'email' =>(strtolower($sender->mailbox).'@'.$sender->host),
Jared Hancock's avatar
Jared Hancock committed
                      'subject'=>@$headerinfo->subject,
Peter Rotich's avatar
Peter Rotich committed
                      'mid'    =>$headerinfo->message_id
                      );

Jared Hancock's avatar
Jared Hancock committed
        return $header;
    }

Peter Rotich's avatar
Peter Rotich committed
    function getAttachment($part) {

        if(!$part) return null;

        if($part->ifdisposition && in_array(strtolower($part->disposition), array('attachment', 'inline')))
            return $part->dparameters[0]->value;

        if($part->ifparameters && $part->type == 5)
            return $part->parameters[0]->value;


        return null;
    }

Jared Hancock's avatar
Jared Hancock committed
    //search for specific mime type parts....encoding is the desired encoding.
Peter Rotich's avatar
Peter Rotich committed
    function getPart($mid, $mimeType, $encoding=false, $struct=null, $partNumber=false) {
Jared Hancock's avatar
Jared Hancock committed
          
        if(!$struct && $mid)
            $struct=@imap_fetchstructure($this->mbox, $mid);
Peter Rotich's avatar
Peter Rotich committed

Jared Hancock's avatar
Jared Hancock committed
        //Match the mime type.
Peter Rotich's avatar
Peter Rotich committed
        if($struct && !$struct->ifdparameters && strcasecmp($mimeType, $this->getMimeType($struct))==0) {
Jared Hancock's avatar
Jared Hancock committed
            $partNumber=$partNumber?$partNumber:1;
Peter Rotich's avatar
Peter Rotich committed
            if(($text=imap_fetchbody($this->mbox, $mid, $partNumber))) {
Jared Hancock's avatar
Jared Hancock committed
                if($struct->encoding==3 or $struct->encoding==4) //base64 and qp decode.
Peter Rotich's avatar
Peter Rotich committed
                    $text=$this->decode($struct->encoding, $text);
Jared Hancock's avatar
Jared Hancock committed

                $charset=null;
                if($encoding) { //Convert text to desired mime encoding...
Peter Rotich's avatar
Peter Rotich committed
                    if($struct->ifparameters) {
Jared Hancock's avatar
Jared Hancock committed
                        if(!strcasecmp($struct->parameters[0]->attribute,'CHARSET') && strcasecmp($struct->parameters[0]->value,'US-ASCII'))
                            $charset=trim($struct->parameters[0]->value);
                    }
Peter Rotich's avatar
Peter Rotich committed
                    $text=$this->mime_encode($text, $charset, $encoding);
Jared Hancock's avatar
Jared Hancock committed
                }
                return $text;
            }
        }
Peter Rotich's avatar
Peter Rotich committed

Jared Hancock's avatar
Jared Hancock committed
        //Do recursive search
        $text='';
Peter Rotich's avatar
Peter Rotich committed
        if($struct && $struct->parts) {
Jared Hancock's avatar
Jared Hancock committed
            while(list($i, $substruct) = each($struct->parts)) {
                if($partNumber) 
                    $prefix = $partNumber . '.';
Peter Rotich's avatar
Peter Rotich committed
                if(($result=$this->getPart($mid, $mimeType, $encoding, $substruct, $prefix.($i+1))))
Jared Hancock's avatar
Jared Hancock committed
                    $text.=$result;
            }
        }
Peter Rotich's avatar
Peter Rotich committed

Jared Hancock's avatar
Jared Hancock committed
        return $text;
    }

Peter Rotich's avatar
Peter Rotich committed
    /*
     getAttachments

     search and return a hashtable of attachments....
     NOTE: We're not actually fetching the body of the attachment  - we'll do it on demand to save some memory.

     */
    function getAttachments($part, $index=0) {

        if($part && !$part->parts) {
            //Check if the part is an attachment.
            $filename = '';
            if($part->ifdisposition && in_array(strtolower($part->disposition), array('attachment', 'inline'))) {
Peter Rotich's avatar
Peter Rotich committed
                $filename = $part->dparameters[0]->value;
                //Some inline attachments have multiple parameters.
                if(count($part->dparameters)>1) {
                    foreach($part->dparameters as $dparameter) {
                        if(strcasecmp($dparameter->attribute, 'FILENAME')) continue;
                        $filename = $dparameter->value;
                        break;
                    }
                }
            } elseif($part->ifparameters && $part->type == 5) { //inline image without disposition.
Peter Rotich's avatar
Peter Rotich committed
                $filename = $part->parameters[0]->value;
                if(count($part->parameters)>1) {
                    foreach($part->parameters as $parameter) {
                        if(strcasecmp($parameter->attribute, 'FILENAME')) continue;
                        $filename = $parameter->value;
                        break;
                    }
                }
            }
Peter Rotich's avatar
Peter Rotich committed

            if($filename) {
                return array(
                        array(
                            'name'  => $this->mime_decode($filename),
Peter Rotich's avatar
Peter Rotich committed
                            'mime'  => $this->getMimeType($part),
                            'encoding' => $part->encoding,
                            'index' => ($index?$index:1)
                            )
                        );
            }
        }

        //Recursive attachment search!
        $attachments = array();
        if($part && $part->parts) {
            foreach($part->parts as $k=>$struct) {
                if($index) $prefix = $index.'.';
                $attachments = array_merge($attachments, $this->getAttachments($struct, $prefix.($k+1)));
            }
        }

        return $attachments;
    }

    function getHeader($mid) {
Jared Hancock's avatar
Jared Hancock committed
        return imap_fetchheader($this->mbox, $mid,FT_PREFETCHTEXT);
    }

    
Peter Rotich's avatar
Peter Rotich committed
    function getPriority($mid) {
Jared Hancock's avatar
Jared Hancock committed
        return Mail_Parse::parsePriority($this->getHeader($mid));
    }

    function getBody($mid) {
        
        $body ='';
Peter Rotich's avatar
Peter Rotich committed
        if(!($body = $this->getPart($mid,'TEXT/PLAIN', $this->charset))) {
            if(($body = $this->getPart($mid,'TEXT/HTML', $this->charset))) {
Jared Hancock's avatar
Jared Hancock committed
                //Convert tags of interest before we striptags
                $body=str_replace("</DIV><DIV>", "\n", $body);
                $body=str_replace(array("<br>", "<br />", "<BR>", "<BR />"), "\n", $body);
                $body=Format::html($body); //Balance html tags before stripping.
                $body=Format::striptags($body); //Strip tags??
            }
        }
Peter Rotich's avatar
Peter Rotich committed

Jared Hancock's avatar
Jared Hancock committed
        return $body;
    }

Peter Rotich's avatar
Peter Rotich committed
    //email to ticket 
    function createTicket($mid) { 
        global $ost;
Peter Rotich's avatar
Peter Rotich committed
        if(!($mailinfo = $this->getHeaderInfo($mid)))
            return false;
Peter Rotich's avatar
Peter Rotich committed
        //Make sure the email is NOT already fetched... (undeleted emails)
        if($mailinfo['mid'] && ($id=Ticket::getIdByMessageId(trim($mailinfo['mid']), $mailinfo['email'])))
            return true; //Reporting success so the email can be moved or deleted.
	    //Is the email address banned?
        if($mailinfo['email'] && TicketFilter::isBanned($mailinfo['email'])) {
	        //We need to let admin know...
            $ost->logWarning('Ticket denied', 'Banned email - '.$mailinfo['email'], false);
Peter Rotich's avatar
Peter Rotich committed
	        return true; //Report success (moved or delete)
Peter Rotich's avatar
Peter Rotich committed
        $emailId = $this->getEmailId();

        $var['name']=$this->mime_decode($mailinfo['name']);
        $var['email']=$mailinfo['email'];
Jared Hancock's avatar
Jared Hancock committed
        $var['subject']=$mailinfo['subject']?$this->mime_decode($mailinfo['subject']):'[No Subject]';
        $var['message']=Format::stripEmptyLines($this->getBody($mid));
        $var['header']=$this->getHeader($mid);
        $var['emailId']=$emailId?$emailId:$ost->getConfig()->getDefaultEmailId(); //ok to default?
Jared Hancock's avatar
Jared Hancock committed
        $var['name']=$var['name']?$var['name']:$var['email']; //No name? use email
        $var['mid']=$mailinfo['mid'];

Peter Rotich's avatar
Peter Rotich committed
        if(!$var['message']) //An email with just attachments can have empty body.
            $var['message'] = '(EMPTY)';

        if($ost->getConfig()->useEmailPriority())
            $var['priorityId']=$this->getPriority($mid);
Jared Hancock's avatar
Jared Hancock committed
       
        $ticket=null;
        $newticket=true;
        //Check the subject line for possible ID.
Peter Rotich's avatar
Peter Rotich committed
        if($var['subject'] && preg_match ("[[#][0-9]{1,10}]", $var['subject'], $regs)) {
            $tid=trim(preg_replace("/[^0-9]/", "", $regs[0]));
Jared Hancock's avatar
Jared Hancock committed
            //Allow mismatched emails?? For now NO.
            if(!($ticket=Ticket::lookupByExtId($tid)) || strcasecmp($ticket->getEmail(), $var['email']))
Jared Hancock's avatar
Jared Hancock committed
                $ticket=null;
        }
        
        $errors=array();
Peter Rotich's avatar
Peter Rotich committed
        if($ticket) {
            if(!($msgid=$ticket->postMessage($var['message'], 'Email', $var['mid'], $var['header'])))
                return false;

        } elseif (($ticket=Ticket::create($var, $errors, 'Email'))) {
            $msgid = $ticket->getLastMsgId();
        } else {
            //Report success if the email was absolutely rejected.
            if(isset($errors['errno']) && $errors['errno'] == 403)
                return true;

            # check if it's a bounce!
            if($var['header'] && TicketFilter::isAutoBounce($var['header'])) {
                $ost->logWarning('Bounced email', $var['message'], false);
                return true;
            }

Peter Rotich's avatar
Peter Rotich committed
            //TODO: Log error..
            return null;
Peter Rotich's avatar
Peter Rotich committed
        //Save attachments if any.
        if($msgid 
                && $ost->getConfig()->allowEmailAttachments()
                && ($struct = imap_fetchstructure($this->mbox, $mid)) 
                && $struct->parts 
                && ($attachments=$this->getAttachments($struct))) {
                
            //We're just checking the type of file - not size or number of attachments...
            // Restrictions are mainly due to PHP file uploads limitations
            foreach($attachments as $a ) {
                if($ost->isFileTypeAllowed($a['name'], $a['mime'])) {
                    $file = array(
                            'name'  => $a['name'],
                            'type'  => $a['mime'],
                            'data'  => $this->decode($a['encoding'], imap_fetchbody($this->mbox, $mid, $a['index']))
                            );
                    $ticket->saveAttachment($file, $msgid, 'M');
                } else {
                    //This should be really a comment on message - NoT an internal note.
                    //TODO: support comments on Messages and Responses.
                    $error = sprintf('Attachment %s [%s] rejected because of file type', $a['name'], $a['mime']);
Peter Rotich's avatar
Peter Rotich committed
                    $ticket->postNote('Email Attachment Rejected', $error, 'SYSTEM', false);
Peter Rotich's avatar
Peter Rotich committed
                    $ost->logDebug('Email Attachment Rejected (Ticket #'.$ticket->getExtId().')', $error);
                }
Jared Hancock's avatar
Jared Hancock committed
        return $ticket;
    }


Peter Rotich's avatar
Peter Rotich committed
    function fetchEmails() {
Peter Rotich's avatar
Peter Rotich committed
        if(!$this->connect())
            return false;
Peter Rotich's avatar
Peter Rotich committed
        $archiveFolder = $this->getArchiveFolder();
        $delete = $this->canDeleteEmails();
        $max = $this->getMaxFetch();
Jared Hancock's avatar
Jared Hancock committed

        $nummsgs=imap_num_msg($this->mbox);
        //echo "New Emails:  $nummsgs\n";
        $msgs=$errors=0;
Peter Rotich's avatar
Peter Rotich committed
        for($i=$nummsgs; $i>0; $i--) { //process messages in reverse.
            if($this->createTicket($i)) {

                imap_setflag_full($this->mbox, imap_uid($this->mbox, $i), "\\Seen", ST_UID); //IMAP only??
                if((!$archiveFolder || !imap_mail_move($this->mbox, $i, $archiveFolder)) && $delete)
                    imap_delete($this->mbox, $i);

Jared Hancock's avatar
Jared Hancock committed
                $msgs++;
                $errors=0; //We are only interested in consecutive errors.
Peter Rotich's avatar
Peter Rotich committed
            } else {
Jared Hancock's avatar
Jared Hancock committed
                $errors++;
            }
Peter Rotich's avatar
Peter Rotich committed

            if($max && ($msgs>=$max || $errors>($max*0.8)))
Jared Hancock's avatar
Jared Hancock committed
                break;
        }
Peter Rotich's avatar
Peter Rotich committed

        //Warn on excessive errors
        if($errors>$msgs) {
            $warn=sprintf('Excessive errors processing emails for %s/%s. Please manually check the inbox.',
                    $this->getHost(), $this->getUsername());
            $this->log($warn);
        }

Jared Hancock's avatar
Jared Hancock committed
        @imap_expunge($this->mbox);

        return $msgs;
    }

    function log($error) {
        global $ost;
        $ost->logWarning('Mail Fetcher', $error);
    }
Peter Rotich's avatar
Peter Rotich committed

    /*
       MailFetcher::run()

       Static function called to initiate email polling 
     */
    function run() {
        global $ost;
        if(!$ost->getConfig()->isEmailPollingEnabled())
Jared Hancock's avatar
Jared Hancock committed
            return;

        //We require imap ext to fetch emails via IMAP/POP3
Peter Rotich's avatar
Peter Rotich committed
        //We check here just in case the extension gets disabled post email config...
Jared Hancock's avatar
Jared Hancock committed
        if(!function_exists('imap_open')) {
Peter Rotich's avatar
Peter Rotich committed
            $msg='osTicket requires PHP IMAP extension enabled for IMAP/POP3 email fetch to work!';
            $ost->logWarning('Mail Fetch Error', $msg);
Peter Rotich's avatar
Peter Rotich committed
        //Hardcoded error control... 
        $MAXERRORS = 5; //Max errors before we start delayed fetch attempts
        $TIMEOUT = 10; //Timeout in minutes after max errors is reached.
Peter Rotich's avatar
Peter Rotich committed
        $sql=' SELECT email_id, mail_errors FROM '.EMAIL_TABLE
            .' WHERE mail_active=1 '
            .'  AND (mail_errors<='.$MAXERRORS.' OR (TIME_TO_SEC(TIMEDIFF(NOW(), mail_lasterror))>'.($TIMEOUT*60).') )'
            .'  AND (mail_lastfetch IS NULL OR TIME_TO_SEC(TIMEDIFF(NOW(), mail_lastfetch))>mail_fetchfreq*60)'
            .' ORDER BY mail_lastfetch DESC'
            .' LIMIT 10'; //Processing up to 10 emails at a time.

       // echo $sql;
        if(!($res=db_query($sql)) || !db_num_rows($res))
            return;  /* Failed query (get's logged) or nothing to do... */
Jared Hancock's avatar
Jared Hancock committed

        //TODO: Lock the table here??
Peter Rotich's avatar
Peter Rotich committed

        while(list($emailId, $errors)=db_fetch_row($res)) {
            $fetcher = new MailFetcher($emailId);
            if($fetcher->connect()) {
                $fetcher->fetchEmails();
Jared Hancock's avatar
Jared Hancock committed
                $fetcher->close();
Peter Rotich's avatar
Peter Rotich committed
                db_query('UPDATE '.EMAIL_TABLE.' SET mail_errors=0, mail_lastfetch=NOW() WHERE email_id='.db_input($emailId));
            } else {
                db_query('UPDATE '.EMAIL_TABLE.' SET mail_errors=mail_errors+1, mail_lasterror=NOW() WHERE email_id='.db_input($emailId));
                if(++$errors>=$MAXERRORS) {
Jared Hancock's avatar
Jared Hancock committed
                    //We've reached the MAX consecutive errors...will attempt logins at delayed intervals
Peter Rotich's avatar
Peter Rotich committed
                    $msg="\nosTicket is having trouble fetching emails from the following mail account: \n".
                        "\nUser: ".$fetcher->getUsername().
                        "\nHost: ".$fetcher->getHost().
Jared Hancock's avatar
Jared Hancock committed
                        "\nError: ".$fetcher->getLastError().
Peter Rotich's avatar
Peter Rotich committed
                        "\n\n ".$errors.' consecutive errors. Maximum of '.$MAXERRORS. ' allowed'.
                        "\n\n This could be connection issues related to the mail server. Next delayed login attempt in aprox. $TIMEOUT minutes";
                    $ost->alertAdmin('Mail Fetch Failure Alert', $msg, true);
Peter Rotich's avatar
Peter Rotich committed
        } //end while.