forked from PhongT16/outlook_calendar_report_generator
-
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.
- Loading branch information
Showing
1 changed file
with
12 additions
and
23 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 |
---|---|---|
@@ -1,32 +1,21 @@ | ||
--- | ||
client_id : ... # retrieve from the Azure App Registration page | ||
tenant_id : ... # retrieve from the Azure App Registration page | ||
recipient_email : ... | ||
recipient_email : ... # email to notify when vcs is down | ||
scopes : # Should not be changed | ||
- Calendars.ReadWrite | ||
- Mail.Send | ||
- https://graph.microsoft.com/offline_access | ||
- User.Read | ||
group_members : | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
shared_calendar_name : ... | ||
logging_file_path : ... # logging_file_path is the path where log files can be written onto the host machine starting at the root | ||
AM_config : # AM_config and PM_config has values in minutes. The event starts before the start and ends after the end for AM_config and PM_config | ||
start : 540 | ||
end : 710 | ||
PM_config : # in minutes | ||
start : 780 | ||
end : 950 | ||
days_out: 14 # indicates the stretch of time (in days) that the program will update on the shared calendar relative to present day | ||
group_name : ... # LDAP group | ||
shared_calendar_name: ... | ||
category_name: "Vacation" | ||
category_color: "preset0" | ||
days_out: 30 # indicates the stretch of time (in days) that the program will update on the shared calendar relative to present day | ||
update_interval : 900 # update_interval indicates how often the program run in seconds | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
email_list_update_interval: 20 | ||
start_of_work_day: 480 # 60 * 8 | ||
end_of_work_day: 1020 # 60 * 17 | ||
start_of_lunch: 720 # 60 * 12 | ||
end_of_lunch: 780 # 60 * 13 | ||
duration: 180 # 60 * 3 |