This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Bugfix for POP3 import feature


avatar
Philipp
Administrator
1340
From: Vienna, Austria
Bugfix for POP3 import feature

The POP3 news import feature is broken in 1.4 pro. Here the bugfix.

In mod_news find:
echo $words[IEMAI]." $subject ($from)<br />";

DBQuery("INSERT INTO esselbach_st_storyqueue VALUES (NULL, '$configs[4]', '$from', '127.0.0.1', '$subject', '$message', now())");


and replace with:
$email = addslashes($headers->reply_toaddress);

echo $words[IEMAI]." $subject ($from)<br />";
DBQuery("INSERT INTO esselbach_st_storyqueue VALUES (NULL, '$configs[4]', '$from', '$email', '127.0.0.1', '$subject', '$message', now())");

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.