How to Configure an SMTP / IMAP Mailbox in Connect
This guide explains how the web-based Connect Email (SMTP / IMAP) page is configured. It focuses on three things:
- what each field in the Connect form means
- where SMTP / IMAP settings usually come from
- what to check first when the connection fails
When this page is useful
When you add an email account in Connect, the system usually needs two groups of settings:
SMTP— used for sending mailIMAP— used for receiving mail and reading replies
What to prepare before you start
Before opening the Connect page, it helps to confirm a few basics:
- Which mailbox account you want to connect
- Whether that mailbox allows third-party mail clients
- Whether the provider requires IMAP or SMTP to be enabled first
- Whether the account uses two-factor authentication
- Whether you need an app password instead of the normal web login password
💡 A large share of connection failures come from provider-side restrictions, not from the Connect form itself. IMAP may be disabled by default, or the account may require an app password.
What the page actually asks for
The current Email configuration modal in /console/connect is split into two groups of inputs:
- SMTP Settings
HostPortUsernamePassword
- IMAP Settings
HostPortUsernamePasswordMailbox
Their meaning is:
⚠️ The current page does not expose a separate Secure input. The required security mode still matters, but it is not entered directly in the current UI.
Where SMTP / IMAP settings usually come from
If these values are not already available, the normal lookup path is:
- Sign in to the mailbox admin console or mailbox settings page
- Search for:
SMTPIMAPmail clientthird-party email appapp password
- Confirm two types of information:
- host names and ports
- whether IMAP / SMTP must be enabled first
- If the provider uses two-factor auth, generate an app password instead of using the normal web password
Common lookup patterns:
- Gmail / Google Workspace — enable two-factor auth first, then create an App Password
- Outlook / Microsoft 365 — check admin center / mailbox settings / client access settings
- Business mail / custom domain mail — check provider docs or ask the mail hosting provider directly
- Other enterprise providers — look for client setup, app passwords, or incoming / outgoing server settings
⚠️ Provider pages use different labels, but the core information is still the same: host, port, security mode, username, password, and whether IMAP is enabled.
Reasonable defaults to try first
If the provider documentation is unclear, these defaults are common starting points.
Common SMTP defaults
Common IMAP defaults
These are not hard rules. Provider documentation still wins.
How to fill the Connect form
Go to Connect → Add Email and fill the form in this order.
Step 1: SMTP section
SMTP is responsible for sending mail.
Host: the SMTP server from your providerPort: usually465or587Username: usually the full email addressPassword: preferably an app password
Step 2: IMAP section
IMAP is responsible for reading inbox content and replies.
Host: the IMAP serverPort: usually993Username: usually the same as SMTPPassword: usually the same as SMTPMailbox: start withINBOX
Step 3: Quick review before saving
Before saving, do a short sanity check:
- SMTP and IMAP hosts are not swapped
- The port matches the provider's required security mode
- The username is the full email address
- The password is an app password if the provider requires one
Recommended conventions
If you are unsure whether the provider has any special rules, start with these assumptions:
- use the full email address for
username - use an app password for
password - use
INBOXformailbox - avoid
noneunless the provider explicitly requires it - keep SMTP and IMAP credentials aligned when the provider supports the same login for both
Connectivity testing checklist
💡 Test SMTP first by sending a test message. Once sending works, test IMAP by checking whether the inbox can be read. This is the easiest way to isolate the failure point.
Recommended sequence:
Test SMTP first
Confirm:
- DNS resolves
- the port is reachable
- the port matches the provider's required security mode
- authentication succeeds
Then test IMAP
Confirm:
- IMAP is enabled at the provider level
- login succeeds
- the mailbox folder name is correct
- the system can read
INBOXor the target folder
If SMTP works but IMAP does not, the account may still send mail successfully while failing to ingest replies or update reply-driven automation correctly.
Common problems and what to check
⚠️ Most connection issues come from mismatched settings or provider-side restrictions, not from a broken Connect page.
Authentication failed
Check:
- whether the username is the full email address
- whether the provider requires an app password
- whether two-factor auth is enabled on the account
- whether the provider blocks legacy or third-party client logins
Port connection failed
Check:
- whether the host name is correct
- whether the port belongs to POP3 or webmail instead of SMTP / IMAP
- whether the port does not match the provider's required security mode
- whether the provider or current network blocks external mail clients
SMTP works but IMAP fails
Check:
- whether IMAP is actually enabled in the provider settings
- whether IMAP has its own host / port values that differ from SMTP
- whether SMTP and IMAP were mistakenly filled with the same server when the provider separates them
IMAP login works but mailbox selection fails
Check:
- whether
imap.mailboxshould beINBOX - whether the provider uses a custom folder name
- whether the account has permission to access that folder
A reliable path to get one mailbox working
If the goal is simply to get one account connected with the lowest amount of trial and error, follow this order:
- Find the provider's official SMTP / IMAP setup page
- Enable IMAP / SMTP access if needed
- Generate an app password if the account uses two-factor auth
- Configure and test SMTP first
- Configure and test IMAP second
- Only then adjust mailbox folders or other edge-case settings
That order keeps troubleshooting clean and avoids mixing SMTP and IMAP problems together.