Mobile app version of vmapp.org
Login or Join
Nimeshi995

: Difference between mail. and pop. & smtp.? When hosting a website I often notice that all of the following are defined under DNS: POP = mail.example.com SMTP = mail.example.com versus POP =

@Nimeshi995

Posted in: #Domains #Email

When hosting a website I often notice that all of the following are defined under DNS:


POP = mail.example.com
SMTP = mail.example.com


versus


POP = pop.example.com
SMTP = smtp.example.com


Is it wise to use "mail.example.com" for both POP and SMTP when configuring a mail client?

What is the difference between each of the two approaches?

It seems to work fine (sends and receives mail as expected).

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Nimeshi995

1 Comments

Sorted by latest first Latest Oldest Best

 

@Si4351233

Typical mail server installations in a small network will probably use a single server handling POP3 and SMTP protocol ie drop box and mail server. Since it's a single server, a simple name like mail.example.com will be assigned to it and it responds on the appropriate ports for both POP3 and SMTP.

Huge networks may have a bank of servers running POP and another smaller portion running SMTP. Reasons for splitting this up are manifold, but SMTP servers are store and forward machines that pass traffic, POP servers in this day and age are also HTML interfaced and so you need quite a bit of disk storage for your user accounts as mail accumulates in their boxes since they no longer use the system as a drop box forwarding to a local email client. Under these situations, you assign all the SMTP traffic to smtp.example.com and the POP3 is given pop.example.com

In the case where a hosting provider has set up all three host names (mail, pop, smtp). you will probably see the mail.example.com address as an A record which has been CNAMEd to pop and smtp. They're all using the same IP address for the mail services, so for simplicity, I always just use mail.example.com. On a single machine, it's the ports being contacted that make the difference.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme