Working on neomutt setup and some other small fixes
This commit is contained in:
parent
91836193e7
commit
bf10ef8645
36 changed files with 152 additions and 155 deletions
19
home/.config/imapnotify/functionalhacker@korhonen.cc.js
Normal file
19
home/.config/imapnotify/functionalhacker@korhonen.cc.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
var child_process = require("child_process");
|
||||
|
||||
function getStdout(cmd) {
|
||||
var stdout = child_process.execSync(cmd);
|
||||
return stdout.toString().trim();
|
||||
}
|
||||
|
||||
exports.host = "imap.migadu.com";
|
||||
exports.port = 993;
|
||||
exports.tls = true;
|
||||
exports.tlsOptions = {
|
||||
rejectUnauthorized: true,
|
||||
};
|
||||
exports.username = "functionalhacker@korhonen.cc";
|
||||
exports.password = "{{@@ env['PASS_EMAIL_HACKER'] @@}}";
|
||||
exports.onNewMail = "mbsync functionalhacker@korhonen.cc";
|
||||
exports.onNewMailPost =
|
||||
"~/git/dotfiles/scripts/mail/notify-new-mail.sh functionalhacker@korhonen.cc";
|
||||
exports.boxes = ["INBOX"];
|
Loading…
Add table
Add a link
Reference in a new issue