You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 14, 2025. It is now read-only.
I was successfully using Dovecot + Radicale + radicale-dovecot-auth-git on my old server, but after restoring the setup using the same exact configurations, I get "Error: 500 Internal Server Error" from the web GUI, and the following messages from syslog when a client tries to connect:
# [...]
service auth {
unix_listener /var/spool/postfix/private/dovecot-auth-client {
mode = 0660
user = postfix
group = postfix
}
unix_listener /var/lib/radicale/dovecot-auth-client {
mode = 0660
user = radicale
group = radicale
}
user = dovecot
}
# [...]
I can login to Radicale using different authentication backends, and Postfix is able to talk to its socket without problems.
Am I missing a package or additional configuration?
The text was updated successfully, but these errors were encountered:
The issue seems to be that the plugin cannot open a unix stream socket.
This is a problem with your operating system, not with the configuration or the plugin itself.
I don't think I can help you with this.
So, the problem is that it can't talk with Dovecot socket?
Because I can successfully create and connect to sockets like this (TCP) and this (UDP).
I was able to connect PyMOTW TCP client to Dovecot socket as user "radicale" by simply editing the socket path.
So, the problem is that it can't talk with Dovecot socket?
Kind of, except that it is not the connect call that fails, we don not even get to that point, it is the socket call that fails. It is likely that something disabled unix sockets for radicale as part of security hardening.
Maybe #12 can help you.
I was successfully using Dovecot + Radicale + radicale-dovecot-auth-git on my old server, but after restoring the setup using the same exact configurations, I get "Error: 500 Internal Server Error" from the web GUI, and the following messages from syslog when a client tries to connect:
Radicale conf:
Dovecot conf:
I can login to Radicale using different authentication backends, and Postfix is able to talk to its socket without problems.
Am I missing a package or additional configuration?
The text was updated successfully, but these errors were encountered: