Skip to content

Commit

Permalink
Reapply "fix: removed outlook from TTI monitoring since it is garbage"
Browse files Browse the repository at this point in the history
This reverts commit 64e2dae.
  • Loading branch information
titanism committed Oct 9, 2024
1 parent 64e2dae commit 64e2c44
Showing 1 changed file with 20 additions and 17 deletions.
37 changes: 20 additions & 17 deletions config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,23 +71,26 @@ const imapConfigurations = [

// Microsoft Outlook/Hotmail
// <https://support.microsoft.com/en-us/office/pop-imap-and-smtp-settings-8361e398-8af4-4e97-b147-6c6c4ac95353>
{
name: 'Outlook/Hotmail',
forwarder: env.TTI_OUTLOOK_FORWARDER,
config: {
host:
typeof env.TTI_OUTLOOK_IMAP_USER === 'string' &&
env.TTI_OUTLOOK_IMAP_USER.endsWith('@hotmail.com')
? 'imap-mail.outlook.com'
: 'outlook.office365.com',
port: 993,
secure: true,
auth: {
user: env.TTI_OUTLOOK_IMAP_USER,
pass: env.TTI_OUTLOOK_IMAP_PASS
}
}
},
//
// NOTE: temporarily removing because Outlook is trash, their captcha codes nonsense, blocking VPN, slow to load, and blocking valid logins
//
// {
// name: 'Outlook/Hotmail',
// forwarder: env.TTI_OUTLOOK_FORWARDER,
// config: {
// host:
// typeof env.TTI_OUTLOOK_IMAP_USER === 'string' &&
// env.TTI_OUTLOOK_IMAP_USER.endsWith('@hotmail.com')
// ? 'imap-mail.outlook.com'
// : 'outlook.office365.com',
// port: 993,
// secure: true,
// auth: {
// user: env.TTI_OUTLOOK_IMAP_USER,
// pass: env.TTI_OUTLOOK_IMAP_PASS
// }
// }
// },

// iCloud/Me
// <https://support.apple.com/en-us/102525>
Expand Down

0 comments on commit 64e2c44

Please sign in to comment.