Roundcube Plugin multiple_smtp_server konfiguration

rauppe31

Member
Hall Zusammen

Ich bin heute schon den ganzen Tag daran, dass Plugin multiple_smtp_server einzurichten. Seit ein paar Stunden habe ich keine Ahnung mehr, was ich noch probieren könnte, damit dieses Plugin funktioniert.

Das Ziel ist, dass man sich mit einer Roundcube-Installation an verschiedenen IMAP-Servern anmelden kann. Dies ist schon mit Roundcube alleine möglich und das habe ich auch schon eingerichtet.
Jetzt will ich aber, dass die Mails dann auch an den entsprechenden SMTP-Server gesendet werden.
Dieses Problem sollte das Plugin multiple_smtp_server beheben.

Ich habe bis jetzt folgende Konfiguration für das Plugin vorgenommen:

main.inc.php
Code:
$rcmail_config['default_host'] = array(
  'ssl://imap.gmx.net:993' => 'GMX',
  'ssl://imap.gmail.com:993' => 'GMAIL',
);

$rcmail_config['smtp_server'] = 'not-defined.tld';

// SMTP port (default is 25; use 587 for STARTTLS or 465 for the
// deprecated SSL over SMTP (aka SMTPS))
$rcmail_config['smtp_port'] = 465;

// SMTP username (if required) if you use %u as the username Roundcube
// will use the current username for login
$rcmail_config['smtp_user'] = '%u';

// SMTP password (if required) if you use %p as the password Roundcube
// will use the current user's password for login
$rcmail_config['smtp_pass'] = '%p';

$rcmail_config['plugins'] = array('multiple_smtp_server',);

Konfigurationsdatei des Plugins:
config.inc.php
Code:
<?php

// Configuration file for Roundcube plugin for multiple SMTP server

/**
 * SMTP server for default host array
 */

$rcmail_config['multiple_smtp_server'] = array (
    'GMX' => 'ssl://smtp.gmx.net:465',
    'GMAIL' => 'ssl://smtp.gmail.com:465',
);


/**
 * SMTP server for blank default host value
 */
/*
$rcmail_config['multiple_smtp_server'] = array (
    'ssl://mail.host1.com:993' => 'ssl://smtp.host1.com:465',
    'ssl://mailbox.host2.com:993' => 'ssl://mailhost.host2.com:465',
    'ssl://imap.host3.com:993' => 'tls://smtp.host3.com:587'
);
*/


/**
 * Show message after send which SMTP server was used
 */
$rcmail_config['multiple_smtp_server_message'] = true;

?>

Seht ihr hier einen Fehler oder habe ich was ganz falsch verstanden?

Danke schonmal für eure Hilfe.
 
Back
Top