ask doug for
const creds = require("./config/zoom-recording-tracker-6a8bd724ca99.json");
let conf = require('./conf.json').CONF;
let imap = require('./conf.json').IMAP;
cd zoom-tracker
npm i
nano conf.json
// update imap auth info
node index
json config:
{
"CONF": {
"email": "[email protected]",
// email that triggers parsing (i.e. [email protected])
"catchSubject": "Cloud Recording - Software Engineering Immersive SEI-TOR-37-9 is now available",
// CaSe SenSeTiVe subject line to trigger parsing
"sheet": "16idd4sncOsA5gtMSXfxE5R4QEgy2sgR7i32WfrlYZDY",
google sheets id (note: bot needs write access to sheet, grant write access to below email)
zoom-recording-tracker-bot@zoom-recording-tracker.iam.gserviceaccount.com
imap auth info... self explanatory. ensure your email supports imap
},
"IMAP": {
"name": "[email protected]",
"pass": "********",
"host": "imap.gmail.com",
"port": "993"
}
}