Recent Topics

1 Sep 03, 2009 08:34    

My b2evolution Version: 2.x

My blog is no longer sending emails.

I spoke to my host company and they told me that it is because that email that b2evolutions uses are not real addresses.

The problem is that b2evolution is sending using a strange address from
@meissa.lunarservers.com which does not exist and is my host address.
Note it used to work for years something the ISP has done has changed

What I need it to do is create an address and send from xxx@posbrowser.com.au which is my address

Where do I find this info?

2 Sep 03, 2009 09:10

You might want to open /conf/_advanced.php and change the bit that makes a fake email addy.

$notify_from = $instance_name.'@'.preg_replace( '/^www\./i', '', $basehost );


I don't know if that's the answer, but if you try it you will :)

3 Sep 03, 2009 10:05

Thanks but that did not work.

All this stuff should be an option in the dashboard maybe someone should write a plugin.

4 Sep 03, 2009 10:10

What emails are being sent (or no longer being sent) using the strange email addy? Oh and what version of b2evo are you using that is having this trouble?

* agree on dashboard (almost). Disagree on plugin. CORE behavior is to notify under certain circumstances. Stuff like that should be properly handled by the core. If not the dashboard then please only ONE file that might need to be edited for installation-specific bits.

5 Sep 04, 2009 08:38

EdB wrote:

What emails are being sent (or no longer being sent) using the strange email addy?

Nothing not the contacts , not the notification that someone has posted a comment.

EdB wrote:

Oh and what version of b2evo are you using that is having this trouble?

2.4.5 released on 2008-09-17

EdB wrote:

* agree on dashboard (almost). Disagree on plugin .

It may not require this at all as my hosting company sent me the following can anyone help me with this.

Hello,

Thank you for contacting us back.

If you would like to set the "Return-Path" for the email messages sent by your script, you would need to edit your PHP script to use the additional header. Here is a link to more information on doing this:

http://www.webmasterworld.com/forum88/12274.htm

If you have further inquiries or there is anything else we can assist you with, please do not hesitate to contact Lunarpages again.
--
Best Regards,

Richard Ray
support@lunarpages.com

Where do I put this

Hello,

Thank you for contacting us back.

If you would like to set the "Return-Path" for the email messages sent by your script, you would need to edit your PHP script to use the additional header. Here is a link to more information on doing this:

http://www.webmasterworld.com/forum88/12274.htm

If you have further inquiries or there is anything else we can assist you with, please do not hesitate to contact Lunarpages again.
--
Best Regards,

Richard Ray
support@lunarpages.com

Lunarpages Office Hours
Monday-Friday 7:00am-5:00pm PST

Lunarpages Forums - http://www.lunarforums.com
Lunarpages Tutorials - http://www.lunarpages.com/tutorials
Lunarpages FAQs - https://support.lunarpages.com/knowledge_bases/
CPanel Manual - http://www.lunarpages.com/new_manual

Telephone: 1-714-521-8150
24 Hour Network Status Line: 562-697-8106
Fax: 1-714-521-8195

6 Sep 04, 2009 10:21

inc/_core/_misc.funcs.php approx 1512 add your new bit

	// Specify charset and content-type of email
	$headers['Content-Type'] = 'text/plain; charset='.$current_charset;
	$headers['X-Mailer'] = $app_name.' '.$app_version.' - PHP/'.phpversion();
	$headers['X-Remote-Addr'] = implode( ',', get_ip_list() );

¥


Form is loading...