Thanks for your replay!!
I did edit the php file and put the right path, and it works!! thanks!!
The only problem I have is doble messages displayed (or more if I login or click over send/receive). I allready made the corrections that in popper forum says, but still having the same error!! If you can help me with this, i'll really appreciated)
This is what I edit:
Try to edit the file
class.mailer.inc.php
and search for server_uidl and replace the following line
if ( $server_uidl != 0 && !$uidl ) {
you replaced with one of the two commands!! (I did the first one, because the other gave me an error, I don't really know if

is part of the code or some mess by the forum)
if (($server_uidl != "0" ) && (!$uidl) && ($server_uidl != NULL)) {
This is the original posted, I put the other one!!
if (($server_uidl != "0":wink: && (!$uidl) && ($server_uidl != NULL)) {
and this is other you have to edit
The repeated mail download may be due to your settings but also due to a sql string error.
Try changing
$uidl = addslashes($this->headers->get("X-UIDL"));
to
$uidl = addslashes(addslashes($this->headers->get("X-UIDL")));
in
class.mailer.inc.php
Some people said that it seems to work, but not for me, maybe for you!
Thanks!!