You can create a file called
recipient_access (the name doesn't matter) containing:
Code:
uucp@ REJECT
mail@ REJECT
Then, postmap it:
Code:
postmap /etc/postfix/recipient_access
And, finally, in main.cf:
Code:
smtpd_recipient_restriction =
permit_mynetworks
check_recipient_access hash:/etc/postfix/recipient_access
reject_unauth_destination
This will still allow anyone in $mynetworks to send mail to those addresses. If you don't want even that, put
check_recipient_access above permit_mynetworks.