Skip to content

Commit 729de83

Browse files
committed
fix(autoconfig): Added configuration information for ATT email accounts
1 parent cdc5765 commit 729de83

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

lib/autodetect-imap-settings.js

+18
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,24 @@ async function resolveUsingMX(email, domain) {
459459
};
460460
}
461461

462+
// ATT
463+
if (/mx-vip\d*\.prodigy\.net$/i.test(exchange)) {
464+
// ATT
465+
return {
466+
imap: {
467+
host: 'imap.mail.att.net',
468+
port: 993,
469+
secure: true
470+
},
471+
smtp: {
472+
host: 'smtp.mail.att.net',
473+
port: 465,
474+
secure: true
475+
},
476+
_source: 'mx'
477+
};
478+
}
479+
462480
// Naver (kr)
463481
if (/^mx\d*\.naver\.com$/i.test(exchange)) {
464482
// Naver.com

0 commit comments

Comments
 (0)