cosullivan / SmtpServer

A SMTP Server component written in C#
MIT License
690 stars 163 forks source link

Is there support for spam and viruses filtering? Or a spamhaus check? #199

Closed zxcvqwerasdf closed 11 months ago

zxcvqwerasdf commented 1 year ago

Question in subject. Ty.

WaldenL commented 1 year ago

Define "support." This package handles the network-side SMTP communication. You can then store that message anywhere you want, and, of course, you can do anything with the message as part of that store. You could scan the message content with your own scanners, you could use clam, you could invoke spamhaus, or anything else you wanted to. But the key word is "you". The package itself it not responsible for what you do with the message.

reinaldocoelho commented 11 months ago

You can use other system linked too. Like: https://spamassassin.apache.org/

Just to add an information :-P