Recent posts
#21
Pending Issues / Re: What are the IMAP/SMTP set...
Last post by SKaero - November 29, 2025, 01:10:39 PMHave you verified that the web server has access to read the certificate files you have linked to in the config?
#22
Issues & Bugs / Re: Why Can't I Send Emails?
Last post by SKaero - November 29, 2025, 01:09:31 PMThat error is coming from your mail server. Contact your email provider and ask them why outgoing mail is suspended.
#23
Roundcube Discussion / Re: username.domain to just us...
Last post by AzazelMango - November 29, 2025, 01:05:42 PMno matter what I set it to, it does not allow me to only use the Username without the added .domain (i.e. azazelmango.azpost to azazelmango) Im genuinely at a loss here
#24
Issues & Bugs / Why Can't I Send Emails?
Last post by searts - November 29, 2025, 11:27:35 AMHi. Whenever I try to reply to an email, or send one out, a message appears that says:
Failed to add recipient "[email protected]" (Domain searts.org has an outgoing mail suspension. Message discarded.).
How can I find out what's causing the problem so I can fix it? There's no "Help" button in Roundcube.
Thanks for any advice.
Clare Higgins
Failed to add recipient "[email protected]" (Domain searts.org has an outgoing mail suspension. Message discarded.).
How can I find out what's causing the problem so I can fix it? There's no "Help" button in Roundcube.
Thanks for any advice.
Clare Higgins
#25
General Discussion / Re: help with my emails
Last post by Cupcakemumma - November 29, 2025, 04:48:20 AMokay thank you I might need to go to apple, cause I've had no success adding it to my Mac mail .
#26
General Discussion / Re: help with my emails
Last post by JohnDoh - November 29, 2025, 04:29:32 AMRoundcube is opensource webmail software, not a service. Your provider is using it to give you web based access only. Your provider hosts your mailbox. If you know the IMAP details then you can use any IMAP client to access your mailbox. Then you could download your messages and transfer them to your new provider.
#27
Release Discussion / Re: 1.4.15
Last post by JohnDoh - November 29, 2025, 04:27:59 AM1.4.15 was the last release of version 1.4, which is now end of life. See here.
#28
General Discussion / help with my emails
Last post by Cupcakemumma - November 29, 2025, 12:17:00 AMNew to the board.
I have a website hosted by a provider and unfortunately they are not answering my emails.
So I'm thinking of changing my website provider but is there any way I can still access my round cube hosted emails. I have the password but I'm trying to log in and I get this error.
Does anyone have any suggestions as to how I can access my emails or are they lost
Any help would be appreciated.
I am not completely computer illiterate but I'm not super savvy either.
Thank you so much for any assistance .
I have a website hosted by a provider and unfortunately they are not answering my emails.
So I'm thinking of changing my website provider but is there any way I can still access my round cube hosted emails. I have the password but I'm trying to log in and I get this error.
Does anyone have any suggestions as to how I can access my emails or are they lost
Any help would be appreciated.
I am not completely computer illiterate but I'm not super savvy either.
Thank you so much for any assistance .
#29
General Discussion / Re: Inbox empty and no folders...
Last post by Durwin - November 28, 2025, 08:33:35 PMMy fix is putting these lines in dovecot.conf
mail_home = /home/%{user}
mail_driver = mbox ← changed this from maildir
mail_path = ~/mail
mail_inbox_path = /var/mail/%{user} ← added this
And adding the 'user' to the 'mail' group.
mail_home = /home/%{user}
mail_driver = mbox ← changed this from maildir
mail_path = ~/mail
mail_inbox_path = /var/mail/%{user} ← added this
And adding the 'user' to the 'mail' group.
#30
Pending Issues / What are the IMAP/SMTP setting...
Last post by ArnoRoundcube - November 28, 2025, 01:42:27 PMHi,
On my LAN Dovecot, Postfix on the one server work fine. Also Thunderbird works fine as an e-mail client.
Now I want to use RC also (on the same server).
So I installed RC and nginx.
My browser shows the login page.
But I can't login
(stream_socket_client(): Failed to enable crypto
Unable to set local cert chain file `/etc/dovecot/private/xxxx.cert'; Check that your cafile/capath settings include details of your certificate and its issuer).
What are the correct RC settings for IMAP/SMTP when using self-signed certificates?
Below is my current configuration.
-----------------------------------------------
Dovecot/Postfix/Thunderbird: OK
Thunderbird: SSL/TLS, Normal password, server: imap.domain.lan:993
Roundcube:
// --------------- IMAP ---------------------------------------
$config['imap_host'] = 'ssl://imap.domain.lan:993';
$config['imap_conn_options'] = [
'ssl' => [
'verify_peer' => true,
'verify_peer_name' => true,
'verify_depth' => 3,
'local_cert' => '/etc/dovecot/ssl/xxxx.cert',
'local_pk' => '/etc/dovecot/ssl/xxxx.key',
'allow_self_signed' => true
],
];
$config['imap_auth_type'] = 'PLAIN';
// --------------- SMTP ---------------------------------------
$config['smtp_host'] = 'ssl://smtp.domain.lan:587';
$config['smtp_conn_options'] = [
'ssl' => [
'verify_peer' => true,
'verify_peer_name' => true,
'verify_depth' => 3,
'local_cert' => '/etc/postfix/ssl/cert.pem',
'local_pk' => '/etc/postfix/ssl/key.pem',
'allow_self_signed' => true
],
];
$config['smtp_auth_type'] = 'PLAIN';
$config['smtp_user'] = '[email protected]';
$config['$config['smtp_pass' = 'password';
On my LAN Dovecot, Postfix on the one server work fine. Also Thunderbird works fine as an e-mail client.
Now I want to use RC also (on the same server).
So I installed RC and nginx.
My browser shows the login page.
But I can't login
(stream_socket_client(): Failed to enable crypto
Unable to set local cert chain file `/etc/dovecot/private/xxxx.cert'; Check that your cafile/capath settings include details of your certificate and its issuer).
What are the correct RC settings for IMAP/SMTP when using self-signed certificates?
Below is my current configuration.
-----------------------------------------------
Dovecot/Postfix/Thunderbird: OK
Thunderbird: SSL/TLS, Normal password, server: imap.domain.lan:993
Roundcube:
// --------------- IMAP ---------------------------------------
$config['imap_host'] = 'ssl://imap.domain.lan:993';
$config['imap_conn_options'] = [
'ssl' => [
'verify_peer' => true,
'verify_peer_name' => true,
'verify_depth' => 3,
'local_cert' => '/etc/dovecot/ssl/xxxx.cert',
'local_pk' => '/etc/dovecot/ssl/xxxx.key',
'allow_self_signed' => true
],
];
$config['imap_auth_type'] = 'PLAIN';
// --------------- SMTP ---------------------------------------
$config['smtp_host'] = 'ssl://smtp.domain.lan:587';
$config['smtp_conn_options'] = [
'ssl' => [
'verify_peer' => true,
'verify_peer_name' => true,
'verify_depth' => 3,
'local_cert' => '/etc/postfix/ssl/cert.pem',
'local_pk' => '/etc/postfix/ssl/key.pem',
'allow_self_signed' => true
],
];
$config['smtp_auth_type'] = 'PLAIN';
$config['smtp_user'] = '[email protected]';
$config['$config['smtp_pass' = 'password';