If forgot to say that I think my php-imap is OK as the following code works:
<?php
$imap =
imap_open("{imap.tumfatig.net:993/imap/ssl/novalidate-cert}INBOX",
"[EMAIL PROTECTED]", "jo-3012");
if (!$imap) {
print imap_last_error();
} else {
$messages = imap_sort($imap, SORTFROM, 1);
foreach ($messages as $message) {
$header = imap_header($imap, $message);
$prettydate = date("jS F Y", $header->udate);
print "{$header->fromaddress} - $prettydate<br>\n";
}
}
imap_close($imap);
?>
Regards,
Jo
On Mon, Mar 24 2008 - 14:14, Joel CARNAT wrote:
> Hello,
>
> My previous (RC2 I think) what working OK.
> I installed 1.0 from scratch (new DB, clean directory) and the installer
> says SMTP/IMAP are OK. But when I try to login, I get "bad
> user/password".
>
> I can't see anything usefull in logs/.
> All I can see is that I get IMAP logs with installer, but not with
> normal login.
>
> I've also build a debian virtual machine and installed roundcube.
> I'm using the same config file and it works here.
>
> Any idea ?
> TIA,
> Jo
>
> _______________________________________________
> List info: http://lists.roundcube.net/users/
pgpBGS4cgqVSe.pgp
Description: PGP signature
_______________________________________________ List info: http://lists.roundcube.net/users/
