Quote:
Originally Posted by chopperp1
domain as you noticed is "yamner' and user name is 5 characters. I just checked "nntp_groups" table in mysql and I don't see any issues there (server lenght=64; username=32; password=32) all values are correct . :ermm:
But I noticed one thing, when I go to admincp>Execute SQL Query I get the message "You are not authorized to execute SQL queries"- I'm logged in as a superadmin. Do you think this might be my problem? If yes, what file should I modify?
Thx
|
With pop.php file, please find:
$this->_write("USER $this->username");
and insert the following line before that:
echo "=========USER Name: " . $this->username . " ==========";
This will show the user name entered by the script. I want to confirm if the right username is used by the script at this stage.
Also with gateway.php, find:
$pop_connect = $pop3->connect();
and add the following line after this:
logging($pop3->showlog());
This will show the entire pop3 connection log. No fix at this stage, just need to find out the reason behind this first.