For those who studied or took the RHCE exam, I want to know your strategy to implement security for sendmail, dovecot, and postfix.
This is my strategy:

If I'm asked to restrict a protocol like pop3 or imap, I use iptables.

If I'm asked to configure only pop3s & imaps for example using dovecot, then in dovecot.conf file, I'll set this directive:
protocols pop3s imaps
instead of the default:
protocols pop3 pop3s imap imaps
just to avoid enabling protocls that are not needed.

both sendmail & postfix, in the cf configuration there's a way to restrict users to specific networks:
Postfix man.cf
mynetworks = 168.192.1.0/24, 127.0.0.0/8
Sendmail /etc/mail/access
# by default we allow relaying from localhost...
Connect:localhost.localdomain RELAY
Connect:localhost RELAY
Connect:127.0.0.1 RELAY
192.168.1. RELAY
is there anything else that can be done ? what about TCP_Wrappers ???am I missing something related to host-based security for email agents ?