Difficulty: Easy
Correct Answer: SMTP
Explanation:
Introduction:
Email relies on multiple protocols with distinct roles. Understanding which one actually transfers mail between servers (and accepts mail from clients for relay) is crucial for configuring MX records, troubleshooting delivery, and securing mail flows.
Given Data / Assumptions:
Concept / Approach:
Simple Mail Transfer Protocol (SMTP) handles mail submission (from clients to servers) and relay (between servers). It is a text-based protocol that uses a store-and-forward model and commonly operates on TCP ports 25 (relay), 587 (submission), and 465 (implicit TLS). In contrast, POP3 and IMAP are mailbox access protocols used by clients to retrieve or manage messages; they do not move mail between servers. DHCP leases IP addresses; FTP transfers generic files but is not the email transport protocol.
Step-by-Step Solution:
1) Identify required function: server-to-server mail transfer.2) Map function to SMTP.3) Differentiate from POP3/IMAP which are for mailbox access.4) Select SMTP as the correct answer.
Verification / Alternative check:
Mail logs and headers show “Received:” lines added by each SMTP hop, demonstrating SMTP’s role in relaying messages across the Internet.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming POP3 “moves” email; it retrieves from a mailbox but does not relay between servers.
Final Answer:
SMTP
Discussion & Comments