parent
c1fd82bab5
commit
e78e52debb
@ -680,13 +680,6 @@ func (self *httpFrontend) handle_postRequest(pr *postRequest, b bannedFunc, e er
|
|||||||
e(err)
|
e(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if !hasAtLeastNWords(m, 3) {
|
|
||||||
err = errors.New("your message is too short")
|
|
||||||
e(err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
nntp := new(nntpArticle)
|
nntp := new(nntpArticle)
|
||||||
defer nntp.Reset()
|
defer nntp.Reset()
|
||||||
var banned bool
|
var banned bool
|
||||||
|
@ -800,9 +800,3 @@ func storeMessage(daemon *NNTPDaemon, hdr textproto.MIMEHeader, body io.Reader)
|
|||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func hasAtLeastNWords(str string, n int) bool {
|
|
||||||
parts := strings.Split(str, " ")
|
|
||||||
return len(parts) > n
|
|
||||||
}
|
|
Reference in New Issue
Block a user