A few days ago, the Mail6 server was offline. During that time, we weren't able to send IPN confirmations to PayPal. We send the response to PayPal via PHP's fsockopen() function.. did the mailserver being down affect our ability to use fsockopen()? asked 24 Mar '11, 16:12 jaden |
Mail6 (aka smtp.webfaction.com) only handles outgoing SMTP mail traffic. If your code wasn't sending mail via Mail6, then it should not have been affected by the outage. answered 24 Mar '11, 16:17 seanf That's what I thought too.. but the script I'm talking about isn't for sending email, yet it was definitely down during the outage, and definitely came back on its own after Mail6 was brought back up. I guess to clarify my question, does Mail6 also handle outbound fsock connections?
(25 Mar '11, 12:27)
jaden
Nope. Mail6 only handles outgoing mail. Outbound fsock connections will still be handled by your web server.
(25 Mar '11, 12:31)
David L ♦♦
:/ this is very confusing.. I thought so b/c Mail6 should be running on port 25 right? And in the fsockopen() I'm connecting on 80..
(25 Mar '11, 12:57)
jaden
I think it's likely just to be a coincidence but if you want us to have a look at it just open a support ticket. If you have any error logs (including exceptions or errors thrown in your script) it would be helpful to include those.
(25 Mar '11, 13:02)
David L ♦♦
|