-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from NatLibFi/outlook
change TO STARTTLS
- Loading branch information
Showing
2 changed files
with
12 additions
and
11 deletions.
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 |
---|---|---|
|
@@ -6,18 +6,18 @@ TESTING=False | |
ROOT_PATH=/palaute/ | ||
|
||
# Default receiver for feedback that has no home municipality or the sender refuses to say | ||
DEFAULT_RECEIVER="[email protected]" | ||
DEFAULT_RECEIVER=${DEFAULT_RECEIVER} | ||
# A copy of the emails is always sent to this address | ||
ALWAYS_RECIPIENT="[email protected]" | ||
MAIL_SENDER="[email protected]" | ||
ALWAYS_RECIPIENT=${ALWAYS_RECIPIENT} | ||
MAIL_SENDER=${MAIL_SENDER} | ||
BACKUP_FILE="feedback.backup" | ||
|
||
# Location of the csv file that contains emails and municipality names. | ||
EMAILS_CSV="emails.csv" | ||
|
||
MAIL_SERVER="smtp.gmail.com" | ||
MAIL_PORT=465 | ||
MAIL_USERNAME="usr" | ||
MAIL_PASSWORD="pass" | ||
MAIL_USE_TLS=False | ||
MAIL_USE_SSL=True | ||
MAIL_SERVER="smtp-mail.outlook.com" | ||
MAIL_PORT="587" | ||
MAIL_USERNAME=${MAIL_USERNAME} | ||
MAIL_PASSWORD=${MAIL_PASSWORD} | ||
MAIL_USE_TLS=True | ||
MAIL_USE_SSL=True |
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