0

I'm getting this:

$ sudo netstat -alpv
tcp        0      0 comp.local:35409         ey-in-f16.1e100.n:imaps ESTABLISHED 2782/thunderbird-bi
tcp        0      0 comp.local:52950         ew-in-f16.1e100.n:imaps ESTABLISHED 2782/thunderbird-bi

Why is (or why could be) Thunderbird using such strange ports, if it's configured to use the standard pop3/smpt/imap ports?

1 Answers1

9

A TCP connection has two sides, one who initiates and one who listens. The listener, or server, must be listening on a well-known destination port, or a destination port known ahead of time.

Ports are required on the initiator or client end as well. It doesn't have to match the destination port, indeed, most operating systems make provision for an initiator to select any available unused port.

What you are looking at is the (random) source port number chosen by Thunderbird client, which is the initiator, and it is connecting to the standard imaps destination port to your email servers, which are the listeners.

LawrenceC
  • 1,202
  • 7
  • 14