SMTP Flashcards
What does SMTP stand for?
Simple Mail Transfer Protocol
Which port is commonly used by SMTP for communication?
Port 25
What is the primary function of SMTP?
To send and relay email messages between mail servers
Which command is used to initiate an SMTP session?
HELO or EHLO
True or False: SMTP provides end-to-end encryption for email messages.
False. SMTP does not provide built-in encryption.
Which command is used to specify the email recipient(s) in an SMTP transaction?
RCPT TO
Which command is used to specify the sender of an email in an SMTP transaction?
MAIL FROM
What happens when an SMTP server encounters a temporary error (4xx response code)?
The email will be queued for delivery and retried later.
Which command is used to initiate the transfer of an email message’s content?
DATA
Which response code indicates a successful delivery of an email message in SMTP?
250
What is the difference between SMTP and POP3?
SMTP is used for sending email messages from the sender’s server to the recipient’s server, while POP3 is used for retrieving email messages from the recipient’s server to the recipient’s device.
What is the purpose of the SMTP “EHLO” command?
The EHLO (Extended HELLO) command is used to initiate an SMTP session and exchange information about supported extensions between the client and the server.
What are the main security concerns with SMTP?
Email spoofing, interception of messages during transmission, and unauthorized access to email servers.
What is SMTP relaying, and why is it important?
The process of transferring an email message between different mail servers. It is important for ensuring the reliable transmission of messages.
What is SMTP authentication, and why is it used?
SMTP authentication is a mechanism that requires users to provide valid credentials before sending email through an SMTP server. It is used to prevent unauthorized use of the server for sending spam or malicious emails.