Click here to Skip to main content
15,881,204 members
Articles / Desktop Programming / MFC
Article

CPopProxyMT - A multi-threaded POP3 proxy skeleton

Rate me:
Please Sign up or sign in to vote.
4.69/5 (12 votes)
9 Oct 2002CPOL1 min read 170K   1.8K   34   26
CPopProxyMT is a skeletal class that wraps a multi-threaded POP3 proxy. You can further modify this class to suite your needs.

Introduction

CPopProxyMT is a multi-threaded POP3 proxy server class that is a skeleton for you to work on and modify to suite your own purposes. In its bare condition, it is a simple POP3 proxy that can be installed and run on any Windows machine. Obviously some of you might have further uses for it, in which case you can expand on the class - for example you might want to filter out certain mails or you might want to log every mail that's received.

Class structure

class CPopProxyMT
{
public:
    CPopProxyMT(void);
    ~CPopProxyMT(void);
private:
    SOCKET m_PopServerSocket;
    HANDLE m_ServerThread;
    // The thread that listens for connections
    static DWORD ServerThread(DWORD arg);
    int m_port;
    DWORD MServerThread(void); 
    static char* MakeCaps(char* str);
public:
    // This starts the multi-threaded POP proxy server
    int StartProxy(int port); 
private:
    // Flag that's set if the proxy is running
    BOOL bRunning;
    static DWORD ClientThread(DWORD arg); 
    void StartClientThread(SOCKET sock);
    static void StartDataThread(DWORD parm);
    static DWORD DataThread(DWORD parm);
public:
    BOOL IsRunning(void);
    void StopProxy(void);
};

Sample usage

//...

CPopProxyMT pop_proxy;

//...

case WM_COMMAND: 
    switch (LOWORD(wParam)) 
    {
    case IDOK:
        // This is a sorta toggle button
        // It starts/stops the proxy alternatively
        if(pop_proxy.IsRunning())
        {
            pop_proxy.StopProxy();
            SetDlgItemText(hwnd,IDOK,"Start");
            SetDlgItemText(hwnd,IDC_EDIT1,"POP Proxy stopped");
        }
        else
        {               
            pop_proxy.StartProxy(3110);
            SetDlgItemText(hwnd,IDOK,"Stop");
            SetDlgItemText(hwnd,IDC_EDIT1,"POP Proxy running");
        }
        return TRUE;

//...

Features

  • Multi-threaded (any number of POP clients can connect)
  • No MFC required

POP client configuration

  • POP3 server - This should be the domain name or IP address of your POP3 proxy server
  • Username - This should be the format :- username/POP3 server
  • Password - Your POP3 password

A sample configuration is shown below for Outlook Express 6

Credits

Well I wouldn't have written this class if not for Colin Davies who had asked me whether I'd mind writing such a class for him (he is a man with the most amazing ideas and I reckon this one is for one such idea of his). Thanks Colin, this one is for you :-)

History

  • October 10th 2002 - Although most of the code was written somewhere in mid-2001, this class was written only on 10-10-02

License

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


Written By
United States United States
Nish Nishant is a technology enthusiast from Columbus, Ohio. He has over 20 years of software industry experience in various roles including Chief Technology Officer, Senior Solution Architect, Lead Software Architect, Principal Software Engineer, and Engineering/Architecture Team Leader. Nish is a 14-time recipient of the Microsoft Visual C++ MVP Award.

Nish authored C++/CLI in Action for Manning Publications in 2005, and co-authored Extending MFC Applications with the .NET Framework for Addison Wesley in 2003. In addition, he has over 140 published technology articles on CodeProject.com and another 250+ blog articles on his WordPress blog. Nish is experienced in technology leadership, solution architecture, software architecture, cloud development (AWS and Azure), REST services, software engineering best practices, CI/CD, mentoring, and directing all stages of software development.

Nish's Technology Blog : voidnish.wordpress.com

Comments and Discussions

 
GeneralProblem in In/Outgoing mail server setting... Pin
Musthafa (Member 379898)5-Jul-09 1:48
Musthafa (Member 379898)5-Jul-09 1:48 
GeneralProblem in configuring outlook express to proxy server Pin
k_swathi14328-Jan-07 19:54
k_swathi14328-Jan-07 19:54 
QuestionHow to configure outlook express to my proxy server Pin
k_swathi14319-Jan-07 23:13
k_swathi14319-Jan-07 23:13 
GeneralThread stopping problem Pin
Holms12-Mar-04 9:53
professionalHolms12-Mar-04 9:53 
GeneralPlug-in for Outlook Express. Please help....... Pin
Atif Bashir4-Aug-03 1:38
Atif Bashir4-Aug-03 1:38 
GeneralRe: Plug-in for Outlook Express. Please help....... Pin
tyounsi18-Feb-04 7:50
tyounsi18-Feb-04 7:50 
Generaldoesn't work at all for me. Pin
leemidgley2-Jul-03 9:59
leemidgley2-Jul-03 9:59 
Questionhow can i browse email as OutLook Pin
fhgu14-Jan-03 21:27
fhgu14-Jan-03 21:27 
Generali can't compile .... Pin
jcdkuo28-Oct-02 15:38
jcdkuo28-Oct-02 15:38 
GeneralRe: i can't compile .... Pin
Nish [not logged in]28-Oct-02 17:18
sussNish [not logged in]28-Oct-02 17:18 
GeneralRe: i can't compile .... Pin
Anonymous1-Nov-02 12:55
Anonymous1-Nov-02 12:55 
QuestionIs there another way to proxy? Pin
b_p_smith15-Oct-02 4:13
b_p_smith15-Oct-02 4:13 
AnswerRe: Is there another way to proxy? Pin
Petr Prazak19-Oct-02 4:47
Petr Prazak19-Oct-02 4:47 
GeneralRe: Is there another way to proxy? Pin
b_p_smith19-Oct-02 9:18
b_p_smith19-Oct-02 9:18 
GeneralRe: Is there another way to proxy? Pin
tonymudd8-Jan-03 2:48
tonymudd8-Jan-03 2:48 
GeneralRaw Sockets Pin
Matthew R. Miller11-Oct-02 4:23
Matthew R. Miller11-Oct-02 4:23 
GeneralVC6 compilation Pin
Stephane Rodriguez.10-Oct-02 7:36
Stephane Rodriguez.10-Oct-02 7:36 
GeneralRe: VC6 compilation Pin
Nish Nishant10-Oct-02 7:47
sitebuilderNish Nishant10-Oct-02 7:47 
GeneralRe: VC6 compilation Pin
Stephane Rodriguez.10-Oct-02 21:04
Stephane Rodriguez.10-Oct-02 21:04 
GeneralRe: VC6 compilation Pin
Nish Nishant10-Oct-02 21:07
sitebuilderNish Nishant10-Oct-02 21:07 
GeneralRe: VC6 compilation Pin
ColinDavies10-Oct-02 18:46
ColinDavies10-Oct-02 18:46 
GeneralRe: VC6 compilation Pin
Nish Nishant10-Oct-02 18:52
sitebuilderNish Nishant10-Oct-02 18:52 
GeneralRe: VC6 compilation Pin
ColinDavies10-Oct-02 20:12
ColinDavies10-Oct-02 20:12 
GeneralRe: VC6 compilation Pin
Steve S10-Oct-02 22:01
Steve S10-Oct-02 22:01 
GeneralRe: VC6 compilation Pin
Anthony_Yio23-Oct-02 17:37
Anthony_Yio23-Oct-02 17: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.