Skip to content
Snippets Groups Projects
Commit 13674fdd authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Respond with the (RFC3977) 480 response when authentication is required

instead of the RFC977 502. Reportedly, this will trigger Thunderbird to prompt
for or send client credentials. This should fix issue #208.
parent 1d585115
No related branches found
No related tags found
No related merge requests found
......@@ -267,7 +267,7 @@ while(client.socket.is_connected && !quit) {
}
if(!logged_in) {
writeln("502 Authentication required");
writeln("480 Authentication required");
log(LOG_WARNING,"!Authentication required");
continue;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment