I'm searching for an equivalent of a sinkhole email address. Essentially, I need a discard mechanism similar to /dev/null or the non-routed range 240.0.0.0/4.
Options like null@, devnull@, or none@ seem plausible, but there's a concern that these addresses might already be in use.
Is there a de facto standard for this specific use case?
Update:
Some comments points to use <> and :; as destination address, but any of them produce a response 501 5.1.3 Bad recipient address syntax on a Postfix MTA:
<- 250 2.1.0 Ok
-> RCPT TO:<:;>
<** 501 5.1.3 Bad recipient address syntax
-> QUIT
<- 221 2.0.0 Bye
and:
<- 250 2.1.0 Ok
-> RCPT TO:<<>>
<** 501 5.1.3 Bad recipient address syntax
-> QUIT
<- 221 2.0.0 Bye
Also, a blank space have the same response:
<- 250 2.1.0 Ok
-> RCPT TO:< >
<** 501 5.1.3 Bad recipient address syntax
-> QUIT
<- 221 2.0.0 Bye
From the client side, it must look fine, receiving a 250 2.0.0 O like sending content to /dev/null:
$ echo test > /dev/null && echo $?
0