socket: use existing socket if it is connected

When using ephemeral aerc sessions – for example while writing patches
for it – the mailto: functionality breaks if the socket is removed.

Try to send a ping (an empty message) to the socket and remove it, if
the send fails or no noop reply is received.

Signed-off-by: Moritz Poldrack <git@moritz.sh>
Acked-by: Tim Culverhouse <tim@timculverhouse.com>
This commit is contained in:
Moritz Poldrack 2022-09-13 13:50:35 +02:00 committed by Robin Jarry
parent c947811e9f
commit 37c1db2ab2
1 changed files with 4 additions and 2 deletions

View File

@ -24,8 +24,10 @@ type AercServer struct {
func StartServer() (*AercServer, error) {
sockpath := path.Join(xdg.RuntimeDir(), "aerc.sock")
// remove the socket if it already exists
os.Remove(sockpath)
// remove the socket if it is not connected to a session
if err := ConnectAndExec(""); err != nil {
os.Remove(sockpath)
}
logging.Infof("Starting Unix server: %s", sockpath)
l, err := net.Listen("unix", sockpath)
if err != nil {