(Roundcube) Yahoo und Co. auslesen?

flokli

Erfahrenes Mitglied
Hi,

habe mir Roundcube mal angesehen und auch eingerichtet.
Jetzt meine Frage:
Theoretisch könnte man doch in /config/main.inc.php, Zeile 38:
PHP:
$rcmail_config['default_host'] = array('localhost');
Auch "externe" Server angeben, wie z.B. Yahoo, Web.de, GMail usw...

Ich habe versucht damit meine Yahoo-E-Mail-Konto auszulesen, aber mit
PHP:
$rcmail_config['default_host'] = array('localhost','pop.mail.yahoo.de');
kommt "Login failed".

Dann habe ich irgendwo gelesen, dass man, wenn man über PHP Yahoo-Konten auslesen will das so gestalten muss:
PHP:
$mbox = imap_open ("{pop.mail.yahoo.de:110/pop3/notls}", "user", "pass");
Dazu habe ich mir schnell mal ein Test-Script geschrieben, so geht es

Also habe ich in der main.inc.php geschrieben:
PHP:
$rcmail_config['default_host'] = array('localhost', 'pop.mail.yahoo.de:110/pop3/notls');

Beim Loginvorgang "Wartet der Browser auf Server" und es tut sich gar nichts.
Warum?
 
Also mit Outlook kann ich meine Mails prima mit pop.mail.yahoo abrufen (man muss sich zwar vorher für nen Yahoo Newsletter anmelden aber dann geht es)
Nur RoundCube mault...
 
Hallo,

http://trac.roundcube.net/trac.cgi/wiki/Howto_Install hat gesagt.:
$rcmail_config['default_host'] = '';

There are two options here: multiple hosts or single hosts. Multiple hosts will be within an array. We'll go over a single mail server setup here.
[…]
Normally this would be "imap.domain.com" or "mail.domain.com". Either one will work, as long as the server is an IMAP server, not a POP3 server.
(Hervorhebung von mir.)

Grüße,
Matthias
 
Zurück