keecode logokeecode
143

IMAP

Internet Message Access Protocol

TCP
Email

Port Information

Port Number

143

Protocol

TCP

Category

Email

Common Usage

URL with Port

http://localhost:143
https://example.com:143

Node.js/Express Server

const express = require('express');
const app = express();
const PORT = 143;

app.listen(PORT, () => {
  console.log(`Server running on port ${PORT}`);
});

Docker Port Mapping

docker run -p 143:143 myapp

# In docker-compose.yml
ports:
  - "143:143"

Firewall Configuration

# Linux/Ubuntu firewall
sudo ufw allow 143/tcp

# Check if port is in use
netstat -an | grep 143