Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion daemon/nserv/NntpServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,11 @@ void NntpProcessor::Run()
{
m_connection->WriteLine(CString::FormatStr("211 0 0 0 %s\r\n", line + 6));
}
else if (!strncasecmp(line, "AUTHINFO ", 9))
else if (!strncasecmp(line, "AUTHINFO USER", 13))
{
m_connection->WriteLine("381 Enter passphrase\r\n");
}
else if (!strncasecmp(line, "AUTHINFO PASS", 13))
{
m_connection->WriteLine("281 Authentication accepted\r\n");
}
Expand Down