3

I'm doing some spam/botnet research and need to accept all email that my mail server receives. I've set postfix up, but I can't seem to figure out how to disable the sender address verification function. During my initial tests (spoofing mail source as test@test.com), I discovered postfix checks with the sender's mail server to verify the user exists (which it doesn't in my test case). As a result, the test message fails. Any ideas?

user3802478
  • 143
  • 2
  • 7

1 Answers1

5

Got it... Paste this in /etc/postfix/main.cf

smtpd_restriction_classes = verify_sender
verify_sender = permit
user3802478
  • 143
  • 2
  • 7