Match the standard SMTP server-to-server port and the representative implicit-TLS submission port.
Which pairing is appropriate?
SMTP transfer conventionally uses TCP 25; implicit-TLS submissions use TCP 465.
Detailed explanation
SMTP transfer TCP 25 / submissions TCP 465Correct. The pair matches SMTP transfer and implicit-TLS submission.
Correct. The pair matches SMTP transfer and implicit-TLS submission.
SMTP transfer TCP 110 / submissions TCP 995Incorrect. 110 and 995 are POP3 and POP3S.
Incorrect. 110 and 995 are POP3 and POP3S.
SMTP transfer TCP 143 / submissions TCP 993Incorrect. 143 and 993 are IMAP and IMAPS.
Incorrect. 143 and 993 are IMAP and IMAPS.
SMTP transfer UDP 25 / submissions UDP 465Incorrect. SMTP sessions normally use TCP.
Incorrect. SMTP sessions normally use TCP.
Try it yourself
An example you can run in a temporary verification environment.
printf '%s
' 'smtp 25/tcp' 'submissions 465/tcp'Expected result
smtp 25/tcp
submissions 465/tcpKey points
- SMTP 25/tcp
- Submission 465/tcp
- Separate from retrieval
Notes
- Environment: service対応表の表示のみ
- Command output formatting can vary slightly by distribution or tool version.
- Run the example in a temporary directory or process when possible.
Foundation review
Read the scope first
Check whether the command acts on the current shell, a new process, an existing process, or a file.
Verify the observable result
Use the supplied command and compare the output with the expected result.