-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Outlook SMTP server; alternative example O365 scope values
- Loading branch information
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,7 +59,7 @@ server_port = 995 | |
local_address = 127.0.0.1 | ||
|
||
[SMTP-1587] | ||
server_address = smtp.office365.com | ||
server_address = smtp-mail.outlook.com | ||
server_port = 587 | ||
server_starttls = True | ||
local_address = 127.0.0.1 | ||
|
@@ -199,6 +199,14 @@ redirect_uri = http://localhost | |
client_id = *** your client id here *** | ||
client_secret = *** your client secret here *** | ||
|
||
[[email protected]] | ||
permission_url = https://login.microsoftonline.com/common/oauth2/v2.0/authorize | ||
token_url = https://login.microsoftonline.com/common/oauth2/v2.0/token | ||
oauth2_scope = https://outlook.office.com/IMAP.AccessAsUser.All https://outlook.office.com/POP.AccessAsUser.All https://outlook.office.com/SMTP.Send offline_access | ||
redirect_uri = http://localhost | ||
client_id = *** your client id here *** | ||
client_secret = *** your client secret here *** | ||
|
||
[[email protected]] | ||
permission_url = https://accounts.google.com/o/oauth2/auth | ||
token_url = https://oauth2.googleapis.com/token | ||
|