Von Roundcube auf xampp gesendete E-Mails sind in den Posteingängen von Gmail, Yahoo oder Hotmail nicht sichtbar

Von Roundcube auf xampp gesendete E-Mails sind in den Posteingängen von Gmail, Yahoo oder Hotmail nicht sichtbar

Ich habe Roundcube 0.9.5 heruntergeladen und auf meinem XAMPP-Server unter Windows 8 installiert. Beim Empfangen von E-Mails funktioniert es gut, da die E-Mails normal im Posteingang angezeigt werden.

Wenn ich jedoch eine E-Mail von dem bei Roundcube angemeldeten Konto (z. B. Gmail oder Yahoo) sende, kann ich die E-Mail im Ordner „Gesendet“ des Absenders sehen, sehe aber nicht, dass die E-Mail im Posteingang des Empfängers landet, nicht einmal im Spam-Ordner.

Kann mir jemand sagen, welches Problem das sein könnte? Ich habe Roundcube so konfiguriert, dass es dieSMTPUndIMAPEinstellungen vom Benutzer-Login, um mehrere SMTP-Server zu unterstützen mitDasPlugin und mein Konfigurationsordnermain.inc.phphat dafür entsprechende Variablen:

// IMAP
// ----------------------------------
$rcmail_config['default_host'] = array (
    'ssl://imap.gmail.com:993' => 'Google',
    'ssl://imap.mail.yahoo.com:993' => 'Yahoo',
    'ssl://imap-mail.outlook.com' => 'Outlook'
);

$rcmail_config['multiple_smtp_server'] = array (
    'Google' => 'ssl://smtp.gmail.com:587',
    'Yahoo' => 'ssl://smtp.mail.yahoo.com:465',
    'Outlook' => 'starttls://smtp-mail.outlook.com:587'
);

// TCP port used for IMAP connections
$rcmail_config['default_port'] = 993;

// IMAP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or null to use
// best server supported one)
$rcmail_config['imap_auth_type'] = 'LOGIN';

// If you know your imap's folder delimiter, you can specify it here.
// Otherwise it will be determined automatically
$rcmail_config['imap_delimiter'] = null;

$rcmail_config['imap_ns_personal'] = null;
$rcmail_config['imap_ns_other']    = null;
$rcmail_config['imap_ns_shared']   = null;


$rcmail_config['imap_force_caps'] = false;

$rcmail_config['imap_force_lsub'] = false;


$rcmail_config['imap_force_ns'] = false;

// IMAP connection timeout, in seconds. Default: 0 (no limit)
$rcmail_config['imap_timeout'] = 0;

// Optional IMAP authentication identifier to be used as authorization proxy
$rcmail_config['imap_auth_cid'] = null;

// Optional IMAP authentication password to be used for imap_auth_cid
$rcmail_config['imap_auth_pw'] = null;

// Type of IMAP indexes cache. Supported values: 'db', 'apc' and 'memcache'.
$rcmail_config['imap_cache'] = null;

// Enables messages cache. Only 'db' cache is supported.
$rcmail_config['messages_cache'] = false;


// ----------------------------------
// SMTP
// ----------------------------------

$rcmail_config['smtp_server'] = '';


$rcmail_config['smtp_port'] = 25;


$rcmail_config['smtp_user'] = '';


$rcmail_config['smtp_pass'] = '';

$rcmail_config['smtp_auth_type'] = 'LOGIN';

// Optional SMTP authentication identifier to be used as authorization proxy
$rcmail_config['smtp_auth_cid'] = null;

// Optional SMTP authentication password to be used for smtp_auth_cid
$rcmail_config['smtp_auth_pw'] = null;


$rcmail_config['smtp_helo_host'] = '';


$rcmail_config['smtp_timeout'] = 0;

Dies sind die Einträge in sendmail.log:

[26-Dec-2013 08:45:52 +0100]: User [email protected] [::1]; Message for [email protected]; 
[26-Dec-2013 08:57:22 +0100]: User [email protected] [::1]; Message for [email protected]; 

Für heute liegen keine Einträge im error.log vor

Kann mir hier bitte jemand weiterhelfen und mir sagen, was schief laufen könnte?

Vielen Dank im Voraus..

Antwort1

xampp unter Windows 8. Das riecht nach einer Heimkonfiguration statt nach einer richtigen Server-, Domänen- und Mailkonfiguration. Bei E-Mails wird das schrecklich fehlschlagen, da viele Anbieter E-Mails, die von DSL-Heimverbindungen gesendet werden, aufgrund von Spam-Problemen blockieren. Tun Sie das also nicht. Wenn Sie wirklich Ihren eigenen Mailserver haben möchten, holen Sie sich einen billigen VPS mit einer richtigen Mailkonfiguration darauf.

verwandte Informationen