Pop3 Server crash in x64 - WeOnlyDo Discussion board

Pop3 Server crash in x64 (wodSmtpServer / wodPop3Server / wodImapServer)

by PavelM, Wednesday, October 28, 2015, 13:06 (3075 days ago)

Hi WOD support,

Pop3 server crashes every time when working in x64 mode and someone connecting to it.

Error from windows event log:
Faulting module name: wodPop3Srv.dll, version: 1.6.0.30, time stamp: 0x4d3214fe
Exception code: 0xc0000005
Fault offset: 0x000000000000b525
Faulting process id: 0x238c
Faulting application start time: 0x01d110bd3362b019
Faulting module path: C:\work\WeOnlyDo\x64\wodPop3Srv.dll
Report Id: 88254778-7cb0-11e5-8288-e03f49164894
Faulting package full name:
Faulting package-relative application ID:

Can you help with it?

Thanks in advance.

Pop3 Server crash in x64

by Jasmine, Wednesday, October 28, 2015, 14:19 (3075 days ago) @ PavelM

Hi Pavel.

I just tried wodPop3Server (1.6.0.35) and it works for me. I used this C# code to try to duplicate it:

        WODPOP3SERVERCOMLib.wodPop3ServerCom Pop3;

        private void Form1_Load(object sender, EventArgs e)
        {
            Pop3 = new WODPOP3SERVERCOMLib.wodPop3ServerCom();
            Pop3.Start();

            Pop3.Connected += new WODPOP3SERVERCOMLib._IwodPop3ServerComEvents_ConnectedEventHandler(Pop3_Connected);
        }

        void Pop3_Connected(WODPOP3SERVERCOMLib.Pop3User User, string Username, string Password, ref WODPOP3SERVERCOMLib.Pop3Actions Action)
        {
            Action = WODPOP3SERVERCOMLib.Pop3Actions.Allow;
        }

Can you tell me what changes I should do to see the issue?

Also, can you please update to the latest version, perhaps this issue was already fixed?

Kind regards,
Jasmine.