-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Roundcube can't send an email any more #5965
Comments
That's probably not Roundcube issue. Maybe you have to use |
Debian uses PHP Version 7.0.19-1 |
Is there any error in Roundcube error log? Did you try disabling cert/host validation via |
O.K. I found the error log. Last entry: [25-Sep-2017 17:45:59 +0200]: SMTP Error: Connection failed: Failed to connect socket: Die Operation ist jetzt in Bearbeitung in /---l/program/lib/Roundcube/rcube.php on line 1665 (POST /cubemail/?_task=mail&_unlock=loading1506354318923&_lang=de&_framed=1&_action=send)` How smtp_conn_options should be used? |
I think "failed to connect socket" has nothing to do with TLS. Still does not look like Roundcube issue. |
Why other PHP software can mail without any problem? Just this mail program can't. |
Are you sure %d resolves to the valid hostname? |
No - i am not sure about anything. |
Then don't use variables, but set proper hostname and make sure it resolves to proper IP address. |
Trying the old version 0.9.5. now. Roundcube seems not to be usable with Debian 9.0 any more. :-( |
The IP is not really clear. |
It does not matter from where do you connect to Roundcube. It matters where Roundcube is installed. |
The server has an Intranet IP. [26-Sep-2017 16:33:53 Europe/Berlin] ERROR: Die Operation ist jetzt in Bearbeitung (115) There is no chance to understand what is going wrong? This is very ugly because reading via IMAP works perfect. |
As i have written it runs before the server upgrade in the old roundcube with the following configuration: $rcmail_config['smtp_server'] = ''; Simple and without no complication. My conclusion is now that roundcube can't be used anymore. :-( |
I am using the combination dovecot and exim with TLS encryption.
Roundcube can connect to the imap and show all the mails with
$config['default_host'] = 'mydomain.com';
$config['default_port'] = 143;
$config['imap_auth_type'] = 'PLAIN';
but i can't send any email!
I tried out every combination but it does not work!
I always get an error like: SMTP Fehler (-1): Die Verbindung ist fehlgeschlagen.
or another error.
Sometimes i get an error in the log of Exim like
TLS error on connection from localhost [::1] (gnutls_handshake): A TLS fatal alert has been received.
My last setting is:
$config['smtp_server'] = 'tls://%d';
$config['smtp_port'] = 587;
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
$config['smtp_auth_type'] = 'PLAIN';
Then i get no error, but the page keeps standing forever in "sending" ...
Older versions of roundcube in 2014 did work before.
The text was updated successfully, but these errors were encountered: