[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 180: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
IntegraMOD Home of phpBB Integrated Modifications 2011-05-08T21:28:48-07:00 https://www.integramod.com/forum/feed.php?f=18&t=5819 2011-05-08T21:28:48-07:00 2011-05-08T21:28:48-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37448#p37448 <![CDATA[Re: pm email error]]>
"Fou-Lu" wrote:
The error will be getting tossed from your server itself. But that doesn't mean that the issue is with the server.
The headers are wrong. RFC2822 specifies that email headers are to be separated by CRLF. This is rn, and not just n or nn. n by itself should only be used as a last resort on some old old unix based servers (documented in the PHP's api mail()).

This is a really old piece of code. It was designed for a 4.x version of PHP, so you'd be better off replacing the whole lot with a new version than continuing with what you have. PHPMailer has all the features you need. It will take more work to implement as it is generic, but you can look at extending it yourself to add any default information, templates, etc etc to match what you currently have.



"Fou-Lu" wrote:
Don't just do a replace all though. You need to step through what you have to see.
Only headers will be separated by rn, body should be separated by n*. Walk though with a find for n, and if the context its string is in is field: type (ie: Content-type:), than it is a header. Be careful of any custom text within a body, you are trying to specifically avoid anything that is dumped into the $msg variable via $this->msg.


quick edit here, just checked with error logs, slightly changed now say

[error] [client my ip] request failed: error reading the headers

Statistics: Posted Author: krillmeed — Sun May 08, 2011 9:28 pm


]]>
2011-05-08T11:29:37-07:00 2011-05-08T11:29:37-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37446#p37446 <![CDATA[Re: pm email error]]> Statistics: Posted Author: krillmeed — Sun May 08, 2011 11:29 am


]]>
2011-05-08T08:30:41-07:00 2011-05-08T08:30:41-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37445#p37445 <![CDATA[Re: pm email error]]> Try this one

Statistics: Posted Author: Helter — Sun May 08, 2011 8:30 am


]]>
2011-05-08T02:56:01-07:00 2011-05-08T02:56:01-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37444#p37444 <![CDATA[Re: pm email error]]>

Statistics: Posted Author: krillmeed — Sun May 08, 2011 2:56 am


]]>
2011-05-07T00:01:12-07:00 2011-05-07T00:01:12-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37443#p37443 <![CDATA[Re: pm email error]]>

Dear Paul,

Thank you for your update. Please re-check your issue with forum developers or refer to the developers manuals, since customization and fixing third-party software falls out of our support boundaries, unfortunately. The only possible reason of this problem is some misconfiguration of your forum software, since PHP mail function works great under your domain. Thank you for understanding. Should you have further questions please feel free to contact us at anytime. We are available 24/7.

Respectfully,
Alexey Ryzhkov
Technical Department


looks like i have his a dead end <img>

Statistics: Posted Author: krillmeed — Sat May 07, 2011 12:01 am


]]>
2011-05-06T06:07:15-07:00 2011-05-06T06:07:15-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37442#p37442 <![CDATA[Re: pm email error]]>

I checked with my phpbb3 forum on my domain, that is also not sending pm emails, though it is not showing an error. Just to check i installed your version of phpbb3 from
EasyApps Collection here: http://krillmeed.com/phpbb2/
that also has the same problem (Though it did allow to send emails by the board. This really is an important feature of phpbb but the boards are being treated as hackers with the changes to security.


fingers crossed will keep you posted <img>

Statistics: Posted Author: krillmeed — Fri May 06, 2011 6:07 am


]]>
2011-05-06T04:55:58-07:00 2011-05-06T04:55:58-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37441#p37441 <![CDATA[Re: pm email error]]> PHP Version 5.2.17 I have attached the phpinfo from my forum


Recieved this from them:

Dear Paul,
Thank you for contacting our technical support team.

Let me please inform you that you should use 'localhost' as SMTP server,
please disable user and pass authentication. However please note that we do not suggest to use SMTP for sending emails via scripts on Linux servers. It is advisable to use php mail() function. You can verify with http://krillmeed.com/testmail.php that php mail fucntion is working fine on the server.

Should you have any questions please feel free to contact us anytime, we are available 24/7

Respectfully yours,
Sergey Arseniev,
Technical Support Department

Sorry for being such a pain here, :( :(

Statistics: Posted Author: krillmeed — Fri May 06, 2011 4:55 am


]]>
2011-05-06T02:00:37-07:00 2011-05-06T02:00:37-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37440#p37440 <![CDATA[Re: pm email error]]> What is your php version btw?

Statistics: Posted Author: Helter — Fri May 06, 2011 2:00 am


]]>
2011-05-05T22:21:38-07:00 2011-05-05T22:21:38-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37439#p37439 <![CDATA[Re: pm email error]]>

Let me please inform you, that we checked krillmeed.com/forum/includes/emailer.php file and found that it was modified recently
$result = @mail($to, $this->subject, preg_replace("#(?<!r)n#s", "n", $this->msg), $this->extra_headers);
was changed to
$result = @mail($to, $this->subject, preg_replace("#(?<!r)n#s", "n", $this->msg), $this->extra_headers, '-f '.$board_config['board_email']);
Probably this is the reason of the issue you have faced with.
Also we checked sending messages with php mail() function and found that our test message was successfully sent and received. Please re-check if you made some changes to your scripts and revert them in order to resolve this issue, Thank you for understanding in this matter

Kind regards,
Kirill Skripka
Technical Support
24/7 Live Chat


No help whatsoever, have asked them about SMTP tried it last time did not work <img>

Statistics: Posted Author: krillmeed — Thu May 05, 2011 10:21 pm


]]>
2011-05-05T14:24:37-07:00 2011-05-05T14:24:37-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37438#p37438 <![CDATA[Re: pm email error]]>
some bad news for you is that your sites ip address is still in a few inactive spammer blacklist sites.
Not sure how you can get it removed since the sites are not active. The info is cached somewere. Maybe you should request a new ip from your host. If you change ip's your site may appear down for a few hours while the ip propogates, but it may be worth the trouble. I dont think this has anything to do with the current issue though.

Statistics: Posted Author: Helter — Thu May 05, 2011 2:24 pm


]]>
2011-05-05T10:29:08-07:00 2011-05-05T10:29:08-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37437#p37437 <![CDATA[Re: pm email error]]> Statistics: Posted Author: krillmeed — Thu May 05, 2011 10:29 am


]]>
2011-05-05T07:05:25-07:00 2011-05-05T07:05:25-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37436#p37436 <![CDATA[Re: pm email error]]> Statistics: Posted Author: krillmeed — Thu May 05, 2011 7:05 am


]]>
2011-05-04T14:44:15-07:00 2011-05-04T14:44:15-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37434#p37434 <![CDATA[Re: pm email error]]>

Hello HelterSkelter,

You are receiving this notification because you are watching the topic, "pm
email error" at "integramod.com". This topic has received a reply since
your last visit. You can use the following link to view the replies made,
no more notifications will be sent until you visit the topic.

If you want to view the newest post made since your last visit, click the
following link:
http://www.integramod.com/forum/viewtop ... 33&e=37433

If you want to view the topic, click the following link:
http://www.integramod.com/forum/viewtop ... =18&t=5819

If you want to view the forum, click the following link:
http://www.integramod.com/forum/viewforum.php?f=18

If you no longer wish to watch this topic you can either click the
"Unsubscribe topic" link found at the bottom of the topic above, or by
clicking the following link:


http://www.integramod.com/forum/viewtop ... atch=topic

--
Thank you, The IntegraMOD Team

Statistics: Posted Author: Helter — Wed May 04, 2011 2:44 pm


]]>
2011-05-04T10:10:16-07:00 2011-05-04T10:10:16-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37433#p37433 <![CDATA[Re: pm email error]]>

Statistics: Posted Author: krillmeed — Wed May 04, 2011 10:10 am


]]>
2011-05-03T23:23:52-07:00 2011-05-03T23:23:52-07:00 https://www.integramod.com/forum/viewtopic.php?t=5819&p=37432#p37432 <![CDATA[Re: pm email error]]> Statistics: Posted Author: Helter — Tue May 03, 2011 11:23 pm


]]>