Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
doktornotor Offline
BBCoder IV
Posts: 167 Joined: 14 Sep 2011, 21:20
Local time: Saturday 21:44Last active: -
Favourite EXT: Thanks for Posts
Post
by doktornotor » 02 Dec 2011, 08:09
Credits:
AmigoJack
Open: includes/functions_messenger.php
Find:
Code: Select all
if (empty($this->replyto))
{
$this->replyto = '<' . $config['board_contact'] . '>';
}
if (empty($this->from))
{
$this->from = '<' . $config['board_contact'] . '>';
}
$encode_eol = ($config['smtp_delivery']) ? "\r\n" : $this->eol;
Replace with:
Code: Select all
$encode_eol = ($config['smtp_delivery']) ? "\r\n" : $this->eol;
if (empty($this->replyto))
{
$this->replyto = mail_encode($config['sitename'], $encode_eol) . ' <' . $config['board_contact'] . '>';
}
if (empty($this->from))
{
$this->from = mail_encode($config['sitename'], $encode_eol) . ' <' . $config['board_contact'] . '>';
}
Support requests via PM go straight to /dev/null!
Stoker Online
Site Admin
Posts: 4,294 Joined: 12 May 2008, 21:26
Local time: Saturday 22:44Last active: Online now
Favourite EXT: Forum Goal
Location: Denmark
Post
by Stoker » 02 Dec 2011, 09:43
Installed here. Lets see if it working
~ The greatest achievement in life is to inspire ~
Regards Stoker
Blackwolf Offline
BBCoder IV
Posts: 272 Joined: 04 Dec 2010, 10:36
Local time: Sunday 07:44Last active: -
Favourite BBCode: Dropcap
Favourite EXT: mchat
Location: Melbourne Australia
Post
by Blackwolf » 02 Dec 2011, 10:42
Works perfectly
Email test.png
You do not have the required permissions to view the files attached to this post.