tell about banned articles when handling ARTICLE
This commit is contained in:
parent
0ae8107138
commit
9cecd94fc2
@ -759,7 +759,11 @@ func (self *nntpConnection) handleLine(daemon *NNTPDaemon, code int, line string
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ValidMessageID(msgid) && daemon.store.HasArticle(msgid) {
|
if ValidMessageID(msgid) {
|
||||||
|
if daemon.database.IsBanned(msgid) {
|
||||||
|
// article banned
|
||||||
|
conn.PrintfLine("439 %s article banned from server", msgid)
|
||||||
|
} else if daemon.store.HasArticle(msgid) {
|
||||||
// we have it yeh
|
// we have it yeh
|
||||||
f, err := daemon.store.OpenMessage(msgid)
|
f, err := daemon.store.OpenMessage(msgid)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
@ -772,6 +776,7 @@ func (self *nntpConnection) handleLine(daemon *NNTPDaemon, code int, line string
|
|||||||
// wtf?!
|
// wtf?!
|
||||||
conn.PrintfLine("503 idkwtf happened: %s", err.Error())
|
conn.PrintfLine("503 idkwtf happened: %s", err.Error())
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// we dont got it
|
// we dont got it
|
||||||
conn.PrintfLine("430 %s", msgid)
|
conn.PrintfLine("430 %s", msgid)
|
||||||
|
Reference in New Issue
Block a user