Skip to content

Instantly share code, notes, and snippets.

View ScottYates's full-sized avatar

Scott Yates ScottYates

View GitHub Profile
@cfeduke
cfeduke / DumbSpamFilter.js
Last active October 3, 2022 16:30
Gmail spam is entirely out of control in 2022
// hah silly human # is for Python comments!
// created in Google Apps Script and scheduled to run every minute
function processInboxEmailSubjects() {
var threads = GmailApp.search("is:unread newer_than:1d -label:spam")
Logger.log("Examining " + threads.length + " threads for spam by checking the subject line")
for (var i = 0; i < threads.length; i++) {
var subject = threads[i].getFirstMessageSubject()
const regex = /confirmation#/i
let isSpam = regex.test(subject)
// TODO other tests as necessary for your particular spam hell