Click here to Skip to main content
15,889,266 members
Articles / Desktop Programming / ATL
Article

Mail Monitor++

Rate me:
Please Sign up or sign in to vote.
4.82/5 (13 votes)
8 Nov 2004CPOL 143.8K   5.4K   71   36
A POP3 Monitor application.

Sample Image - MailMonitor.jpg

Introduction

This article describes a Pop3 Monitor application.

Features

The mailmonitor++ has the following features:

  • Fast email check.
  • Animation and sound to notify incoming messages.
  • Starts you favorite email client.

Sample screenshot

Email account configuration.

Main protocol:

void CPop3Check::ParseMsg()
{
  CString s;
  strstream str;
  string check;
  str <<(LPCSTR)lastMsg;
  str >> check;

  if (check == "-ERR")
  {
    error = "Error -ERR from server :"+lastMsg;
    Close();
    return;
  }
  switch (state)
  {
    case FIRST:
      fromUltMensaje = "";
      newmsgs =0;
      numnewmsg = 0;
      ((DLG)m_pWnd)->Dispatch(S_RECEIVE); 
      s.Format("user %s%c%c", user, 13, 10);
      Send((LPCSTR)s, s.GetLength()); 
      state = USER;
      break;
    
    case USER:
      ((DLG)m_pWnd)->Dispatch(S_RECEIVE);
      s.Format("pass %s%c%c", pass, 13, 10); 
      Send((LPCSTR)s, s.GetLength()); 
      state = PASS;
      break;
    
    case PASS:
      ((DLG)m_pWnd)->Dispatch(S_RECEIVE);
      s.Format("stat%c%c", 13, 10);
      Send((LPCSTR)s, s.GetLength()); 
      state = STAT; 
      break;
    
    case STAT:
      {
        ud->initRegMsgs();
        string s1;
        str.seekg(0);
        str >> s1 >> numMsg >> sizeMsg; 
        flush(str);
        ((DLG)m_pWnd)->Dispatch(S_GETNUMMSGS);
        ((DLG)m_pWnd)->Dispatch(S_GETSIZEMSGS);
        if (numMsg>0)
        {
          state = UIDL;
          s.Format("uidl 1%c%c", 13, 10);
          bufmail = "";
          retrMsg = 1;
          Send((LPCSTR)s, s.GetLength()); 
        }
        else 
        {
          error = "No new messages.";
          Close();
        }
      }
      break;
    case UIDL:
      {
        string s1, s2;
        int p1;
        CString uidl;
        str.seekg(0);
        str >> s1 >> p1 >> s2;
        uidl = s2.data();
        if (ud->IsNewMail(uidl))
        {
          newmsgs += 1;
          numnewmsg = retrMsg;
        }

        if (retrMsg < numMsg) 
        {
          retrMsg++;
          state = UIDL;
          s.Format("uidl %d%c%c", retrMsg, 13, 10);
          Send((LPCSTR)s, s.GetLength());
        }
        else
        {
          if (newmsgs == 1)
          {
            state = RETR;
            s.Format("top %d %d%c%c", numnewmsg, MAX_TOPLINES_EMAIL, 13, 10); 
            bufmail = "";
            Send((LPCSTR)s, s.GetLength()); 
          }
          else
          {
            state = ENDRETR;
            ((DLG)m_pWnd)->Dispatch(S_ENDRETR);
            error = "Session closed";
            s.Format("quit%c%c", 13, 10);
            Send((LPCSTR)s, s.GetLength());
            Close();
          }
        }
      }
      break;

    case RETR:
      {
        bufmail += lastMsg;

        int where = bufmail.Find("From:");
        if (where >= 0 && where + 80 < bufmail.GetLength())
        {
          fromUltMensaje = "";
          ReadLn(where + 5, bufmail, fromUltMensaje);

          char *sfrom = (char*)calloc(fromUltMensaje.GetLength()+1, sizeof(char));
          strcpy(sfrom, fromUltMensaje);
          fromUltMensaje = MimeDecodeMailHeaderField(sfrom);
          free(sfrom);

          state = ENDRETR;
          ((DLG)m_pWnd)->Dispatch(S_ENDRETR);
          error = "Session closed";
          s.Format("quit%c%c", 13, 10);
          Send((LPCSTR)s, s.GetLength());
          Close();
        }
      }
      break;
    case GOON: // default
    default:
      ((DLG)m_pWnd)->Dispatch(S_RECEIVE);
      break;
  }
}

Credits

History

  • 05/04/2004 - Initial version.
  • 03/11/2004 – UserName suffix bug – Fixed.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Argentina Argentina
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRegistry Problem win98 win2k Pin
bobeth13-May-04 0:21
bobeth13-May-04 0:21 
GeneralRe: Registry Problem win98 win2k Pin
sergiols3-Nov-04 13:23
sergiols3-Nov-04 13:23 
GeneralRegistry Problem win98 win2k Pin
bobeth13-May-04 0:15
bobeth13-May-04 0:15 
GeneralNot working Pin
BlackDice29-Apr-04 9:04
BlackDice29-Apr-04 9:04 
GeneralRe: Not working Pin
sergiols3-Nov-04 13:26
sergiols3-Nov-04 13:26 
GeneralGrande mono Pin
Gargolan28-Apr-04 17:28
Gargolan28-Apr-04 17:28 
GeneralDoesn't Work Pin
Hing5-Apr-04 15:24
Hing5-Apr-04 15:24 
GeneralRe: Doesn't Work Pin
sergiols5-Apr-04 15:47
sergiols5-Apr-04 15:47 
It is rare, since this program warn to me that you wrote a message.

Ensure the configuration:

Server : pop3@pop3server.com
Account : loginname@pop3server.com (with @pop3server)
Pass: correct password

If all is correct, set the app in Debug and add follow lines and report the lines by email

void CPop3Check::ParseMsg()
{
CString s;
strstream str;
string check;
str <<(LPCSTR)lastMsg;
str >> check;

// ADD THIS LINES TO TRACE MESSAGES FROM SERVER

#ifdef _DEBUG
CFile f("emails.txt", CFile::modeCreate|
CFile::modeNoTruncate|
CFile::modeWrite);
f.SeekToEnd();
f.Write(lastMsg, lastMsg.GetLength());
f.Close();
#endif

//
if (check == "-ERR")
...

I hope this help to you.Smile | :)
Sergiols
GeneralRe: Doesn't Work Pin
Hing5-Apr-04 17:33
Hing5-Apr-04 17:33 
GeneralRe: Doesn't Work Pin
Luis Alonso Ramos5-Apr-04 18:09
Luis Alonso Ramos5-Apr-04 18:09 
GeneralRe: Doesn't Work Pin
Hing5-Apr-04 18:13
Hing5-Apr-04 18:13 
GeneralRe: Doesn't Work Pin
David Crow22-Aug-07 7:37
David Crow22-Aug-07 7:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.