PCNTL Question

Jamie Whittingham

Active Member
Hi guru's

So we just enabled multi-threading and I see the following .... does this mean the same email was sent to the MTA multiple times ..... creating duplicate emails?

Code:
[2017-03-01 05:48:59] - Bdogvet70@Gmail.Com - 558/1000
[2017-03-01 05:48:59] - Checking if we can send to domain of Bdogvet70@Gmail.Com...
[2017-03-01 05:48:59] - Checking if Bdogvet70@Gmail.Com is blacklisted...
[2017-03-01 05:48:59] - Using delivery server: mta01.nordifine.com (ID: 407).
[2017-03-01 05:48:59] - Sending the email message using the DIRECT method.
[2017-03-01 05:48:59] - Using delivery server: mta01.nordifine.com (ID: 409).
[2017-03-01 05:48:59] - Sending the email message using the DIRECT method.
[2017-03-01 05:48:59] - Checking if the server is over quota...
[2017-03-01 05:48:59] - Preparing the entire email...
[2017-03-01 05:48:59] - Using delivery server: mta01.nordifine.com (ID: 410).
[2017-03-01 05:48:59] - Sending the email message using the DIRECT method.
[2017-03-01 05:48:59] - Sending response is: OK
[2017-03-01 05:48:59] - Sending OK.
[2017-03-01 05:48:59] - Done for Llloyd54@Hotmail.Com, logging delivery...

What does is mean when is says "Using delivery server: mta01.nordifine.com" multiple times?

Thanks @twisted1919 and the team
 
When using pcntl, child processes of the main one will write to the stdout, in that case the console and since they all will write depending on how they progress, you get that mix of messages that's hard to make sense of, the idea is that each message type comes from another child process, so it's all fine.
 
Back
Top