mhale/smtpd

A minimum of 100 Users have to be allowed. so > 100 can be dropped

Closed this issue · 0 comments

smtpd/smtpd.go

Line 417 in 438c8ed

if len(to) == 100 {

The Line makes "little sence" to me. Should be

if len(to) > 100 {

As more then 100 can me denied.