-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Can now set a friendly name for the FROM line of emails New config option to delete old images at start of script More message config options
- Loading branch information
1 parent
76cf829
commit 21befb7
Showing
3 changed files
with
53 additions
and
22 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
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 |
---|---|---|
|
@@ -14,13 +14,15 @@ days_back_to_search = 7 | |
web_enabled = True | ||
web_domain = '' | ||
web_path = 'plexemail' | ||
web_delete_previous_images = False | ||
|
||
email_enabled = True | ||
email_individually = False | ||
# ['[email protected]', '[email protected]'] | ||
email_to = [''] | ||
email_from = '' | ||
email_from_name = 'Plex Server' | ||
email_smtp_address = 'smtp.gmail.com' | ||
email_smtp_port = 587 | ||
email_username = '' | ||
|
@@ -35,6 +37,16 @@ msg_email_subject = 'New Plex Releases - {past_day} - {current_day}' | |
msg_header1 = 'New Plex Releases' | ||
msg_header2 = '{past_day} - {current_day}' | ||
msg_header3 = '<a href="{website}" style="color: #9A9A9A !important;">View as Website</a>' | ||
msg_top_link = 'What\'s New in Plex' | ||
msg_movies_link = 'Movies' | ||
msg_shows_link = 'TV Shows' | ||
msg_seasons_link = 'TV Seasons' | ||
msg_episodes_link = 'TV Episodes' | ||
msg_new_movies_header = 'New Movies' | ||
msg_new_shows_header = 'New TV Shows' | ||
msg_new_seasons_header = 'New TV Seasons' | ||
msg_new_episodes_header = 'New TV Episodes' | ||
msg_footer = '' | ||
|
||
##Sorting | ||
# Possible values = id, title, title_sort, original_title, rating, tagline, | ||
|
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