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
### Keybase proof | |
I hereby claim: | |
* I am mew1033 on github. | |
* I am mew1033 (https://keybase.io/mew1033) on keybase. | |
* I have a public key ASDdTIdYxRdNuRgSZEtD49tNahO3LbNppNCMQ_IjB6-ihgo | |
To claim this, I am signing this object: |
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
function markArchivedAsRead() { | |
var threads = GmailApp.search('label:unread -label:{inbox, Unsnoozed}'); | |
for (var i=0; i<threads.length; i++) | |
{ | |
var messages = threads[i].getMessages(); | |
var markUnread = 1; | |
for (var j=0; j<messages.length; j++) | |
{ | |
if (messages[j].isInInbox()) | |
markUnread = 0; |
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
version: '3.7' | |
services: | |
traefik: | |
image: traefik:2.4 | |
restart: always | |
ports: | |
- 80:80 | |
- 443:443 | |
networks: | |
- t2_proxy |