Skip to content

Commit

Permalink
fix(autoconfig): Added configuration information for ATT email accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Aug 29, 2024
1 parent cdc5765 commit 729de83
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions lib/autodetect-imap-settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,24 @@ async function resolveUsingMX(email, domain) {
};
}

// ATT
if (/mx-vip\d*\.prodigy\.net$/i.test(exchange)) {
// ATT
return {
imap: {
host: 'imap.mail.att.net',
port: 993,
secure: true
},
smtp: {
host: 'smtp.mail.att.net',
port: 465,
secure: true
},
_source: 'mx'
};
}

// Naver (kr)
if (/^mx\d*\.naver\.com$/i.test(exchange)) {
// Naver.com
Expand Down

0 comments on commit 729de83

Please sign in to comment.