Are you sure you have replaced
Code:
header("Content-Type: text/plain");
include("global.php");
// Load NNTP classes
include("nntp.php");
// POP3 class
include("class.POP3.php3");
// Load Mime message parser
include("mime.php");
with
Code:
if ($calledby != "interface") {
$ad = "";
header("Content-Type: text/plain");
include("global.php");
} else {
$ad = "../";
$headers_sent=1;
}
in the gateway.php?