This integration enables
- Getting calendar events from O365.
- Sending emails via the notify.o365_email service.
- Getting emails from your inbox.
This project would not be possible without the wonderful python-o365 project.
To allow authentication you first need to register your application at Azure App Registrations.
Login at Azure Portal (App Registrations)
Create an app. Set a name.
In Supported account types choose "Accounts in any organizational directory and personal Microsoft accounts (e.g. Skype, Xbox, Outlook.com)", if you are using a personal account.
Set the redirect uri (Web) to: https://<your_home_assistant_url_or_local_ip>/api/o365
and click register.
Write down the Application (client) ID. You will need this value.
Under "Certificates & secrets", generate a new client secret. Set the expiration preferably to never. Write down the value of the client secret created now. It will be hidden later on.
Under "Api Permissions" add the following delegated permission from the Microsoft Graph API collection
- Calendars.ReadWrite - Read and write user calendars
- Calendars.ReadWrite.Shared - Read and write user and shared calendars
- offline_access - Maintain access to data you have given it access to
- Users.Read - Sign in and read user profile
- email - View users' email address
- Mail.ReadWrite - Read and write access to user mail
- Mail.ReadWrite.Shared - Read and write user and shared mail
- Mail.Send - Send mail as a user
- Mail.Send.Shared - Send mail on behalf of others
- Install this component by copying these files to custom_components/o365/.
- Add the code to your configuration.yaml using the config options below.
- Restart your Home Assistant instance.
Please note, it home assistants give the error "module not found", please try restarting home assistant once more, this should fix that
- Find the Office 365 Integration on the integrations tab and install it.
- Add the code to your configuration.yaml using the config options below.
- Restart your Home Assistant instance.
Please note, it home assistants give the error "module not found", please try restarting home assistant once more, this should fix that
# Example configuration.yaml entry
o365:
client_secret: "xx.xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
client_id: "xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx"
email_sensor:
- name: inbox
max_items: 2
is_unread: True
query_sensors:
- name: "HA Notifications"
folder: "Inbox/Test_Inbox"
from: "mail@example.com"
subject_contains: "Notifcation from home assistant"
has_attachment: True
max_items: 2
is_unread: True
Key | Type | Required | Description |
---|---|---|---|
message |
string |
True |
The email body |
title |
string |
False |
The email subject |
data |
dict<data> |
False |
addional attributes |
track_new_calendar |
boolean |
False |
Will automatically generate a calendar_entity when a new calendar is detected. The system scans for new calendars only on startup. |
Key | Type | Required | Description |
---|---|---|---|
target |
string |
False |
recipient of the email, if not set will use the configured account's email address |
message_is_html |
boolean |
False |
Is the message formatted as html |
photos |
list<string> |
False |
Filepaths or urls of pictures to embed into the email body |
attachments |
list<string> |
False |
Filepaths to attach to email |
zip_attachments |
boolean |
False |
Zip files from attachments into a zip file before sending |
zip_name |
string |
False |
Name of the generated zip file |
Key | Type | Required | Description |
---|---|---|---|
client_id |
string |
True |
Client ID from your O365 application. |
client_secret |
string |
True |
Client Secret from your O365 application. |
alt_auth_flow |
boolean |
False |
If True, an alternative auth flow will be provided which is not reliant on the redirect uri being reachable. See alt-auth-flow |
calendars |
list<calendars> |
False |
List of calendar config entries |
email_sensors |
list<email_sensors> |
False |
List of email_sensor config entries |
query_sensors |
list<query_sensors> |
False |
List of query_sensor config entries |
Key | Type | Required | Description |
---|---|---|---|
name |
string |
True |
The name of the sensor. |
folder |
string |
False |
Mail folder to monitor, for nested calendars seperate with '/' ex. "Inbox/SubFolder/FinalFolder" |
max_items |
integer |
False |
Max number of items to retrieve (default 5) |
is_unread |
boolean |
False |
True=Only get unread, False=Only get read, Not set=Get all |
Key | Type | Required | Description |
---|---|---|---|
name |
string |
True |
The name of the sensor. |
folder |
string |
False |
Mail folder to monitor, for nested calendars seperate with '/' ex. "Inbox/SubFolder/FinalFolder" |
max_items |
integer |
False |
Max number of items to retrieve (default 5) |
is_unread |
boolean |
False |
True=Only get unread, False=Only get read, Not set=Get all |
from |
string |
False |
Only retrieve emails from this email address |
has_attachment |
boolean |
False |
True=Only get emails with attachments, False=Only get emails without attachments, Not set=Get all |
subject_contains |
string |
False |
Only get emails where the subject contains this string (Mutually exclusive with subject_is ) |
subject_is |
string |
False |
Only get emails where the subject equals exactly this string (Mutually exclusive with subject_contains ) |
This component has changed to now using an external o365_calendars.yaml file, this is done to align this component more with the official Google Calendar Event integration.
- cal_id: xxxx
entities:
- device_id: work_calendar
end_offset: 24
name: My Work Calendar
start_offset: 0
track: true
- cal_id: xxxx
entities:
- device_id: birthdays
end_offset: 24
name: Birthdays
start_offset: 0
track: true
Key | Type | Required | Description |
---|---|---|---|
cal_id |
string |
True |
O365 generated unique ID, DO NOT CHANGE |
entities |
list<entity> |
True |
List of entities to generate from this calendar |
Key | Type | Required | Description |
---|---|---|---|
device_id |
string |
True |
The entity_id will be "calendar.{device_id}" |
name |
string |
True |
What is the name of your sensor that you’ll see in the frontend. |
track |
boolean |
True |
Should we create a sensor true or ignore it false? |
search |
string |
False |
Only get events if subject contains this string |
start_offset |
integer |
False |
Number of hours to offset the start time to search for events for (negative numbers to offset into the past). |
end_offset |
integer |
False |
Number of hours to offset the end time to search for events for (negative numbers to offset into the past). |
After setting up configuration.yaml and restarting home assistant a persisten notification will be created.
- Click on this notification.
- Click the "Link O365 account" link.
- Login on the microsoft page.
- Close the window when the message "Success! This window can be closed" appears.
- That's it.
NB. This requires the alt_auth_flow to be set to True and the redirect uri in your Azure app set to "https://login.microsoftonline.com/common/oauth2/nativeclient" this needs to be set as as a manual url, with type web, just checking the checkmark for it does not seem to work
After setting up configuration.yaml with the key set to True and restarting home assistant a persisten notification will be created.
- Click on this notification.
- Click the "Link O365 account" link.
- Login on the microsoft page.
- Copy the url from the browser url bar.
- Insert into the "Returned Url" field. and click Submit.
- That's it.
- The reply URL specified in the request does not match the reply URLs configured for the application.
- Please ensure that you have configured base_url in your http config https://www.home-assistant.io/integrations/http/#base_url and that you have added the correct reply url to your Azure app
- Client is public so neither 'client_assertion' nor 'client_secret' should be presented.
- Application {x} is not configured as a multi-tenant application.
- In your azure app go to Manifest, find the key "signInAudience", change its value to "AzureADandPersonalMicrosoftAccount"
- Platform error sensor.office365calendar - No module named '{x}'
-
This is a known home assistant issue, all that's needed to fix this should be another restart of your home assistant server. If this does not work, please try installing the component in this order:
1. Install the component.
2. Restart home assistant.
3. Then add the sensor to your configuration.yaml
4. Restart home assistant again.
-
Please note that any changes made to your Azure app settings takes a few minutes to propagate. Please wait around 5 minutes between changes to your settings and any auth attemps from Home Assistant