Format all files with prettier, remove udiskie config
This commit is contained in:
parent
cc06f5743d
commit
e45086afae
10 changed files with 141 additions and 133 deletions
|
@ -1,19 +1,19 @@
|
|||
var child_process = require("child_process");
|
||||
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.host = 'imap.migadu.com';
|
||||
exports.port = 993;
|
||||
exports.tls = true;
|
||||
exports.tlsOptions = {
|
||||
rejectUnauthorized: true,
|
||||
};
|
||||
exports.username = "functionalhacker@korhonen.cc";
|
||||
exports.username = 'functionalhacker@korhonen.cc';
|
||||
exports.password = "{{@@ env['PASS_EMAIL_HACKER'] @@}}";
|
||||
exports.onNewMail = "mbsync functionalhacker@korhonen.cc";
|
||||
exports.onNewMail = 'mbsync functionalhacker@korhonen.cc';
|
||||
exports.onNewMailPost =
|
||||
"~/git/dotfiles/scripts/mail/notify-new-mail.sh functionalhacker@korhonen.cc";
|
||||
exports.boxes = ["INBOX"];
|
||||
'~/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