From 04eb792da2ae3a38b975e9d05573954d882034a9 Mon Sep 17 00:00:00 2001 From: LittleBit Date: Mon, 27 May 2024 14:12:19 -0500 Subject: [PATCH] remove my info from configuration.yaml --- .../switchfriendwatch/configuration.yaml | 15 +++++++++++++ LICENSE | 21 +++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 .littlebitstudios/switchfriendwatch/configuration.yaml create mode 100644 LICENSE diff --git a/.littlebitstudios/switchfriendwatch/configuration.yaml b/.littlebitstudios/switchfriendwatch/configuration.yaml new file mode 100644 index 0000000..f827a8c --- /dev/null +++ b/.littlebitstudios/switchfriendwatch/configuration.yaml @@ -0,0 +1,15 @@ +email: + debugmode: false # enable this if you're troubleshooting smtplib + enabled: true # leave this true, setting this false will suppress emails + pass: 'password' # SMTP password, if a service uses 2FA you may need a specific app password + port: 465 # SMTP port, check with your email provider + sendfrom: example@example.com # the source email address + sendtest: 'off' # send a test email by setting this to 'watched' or 'unwatched' and running the script + sendto: you@example.com # the email you want to receive notifications at + server: smtp.example.com # the SMTP server of the source email address + user: example@example.com # SMTP username, this is usually the source email address but could be different depending on provider +lastcheck: '2024-05-27T13:49:22.643963' # do not change this, the script uses this timestamp as a reference for when it last ran +watched: # list of watched players +- Player +watchedonly: false # set this to true to only be notified about watched players +windowsmode: false # set this to true if running on a Windows machine \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..07be2f0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 LittleBit Studios + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -- 2.51.2