node-imapnotify icon indicating copy to clipboard operation
node-imapnotify copied to clipboard

Execute scripts on new messages using IDLE imap command

Results 13 node-imapnotify issues
Sort by recently updated
recently updated
newest added

This allows to have the onNotify and onNotifyPost commands be executed at startup, if new mail is waiting in the mailbox

Hello, First thank you for this great tool. I'd like to know, do you provide a way to have multiple accounts, or should I run several instances on several configuration...

On line 243, the last argument of the ?: construct is command when it should be postCommand. This means the on notify command is fired twice, but the post command...

Currently, `onNotify` command is executed twice in a row and `onNotifyPost` is not executed at all. The issue is caused by a type in the code. Known workaround: use an...

Trying to run with this config.js: ```javascript var child_process = require('child_process'); function getStdout(cmd) { var stdout = child_process.execSync(cmd); return stdout.toString().trim(); } exports.host = "imap.gmail.com"; exports.port = 993; exports.tls = true;...

Hello, First, thanks for this great module. However, it seems that STARTTLS is not supported out of the box, while it should be pretty easy to configure it, as it's...

Currently, imapnotify substitutes ```%s``` in onNotify by a formatted mailbox name, i.e., the mailbox name is converted to lowercase and ```/``` is replaced by ```-```. It would be great if...

Hi, I switched from [python-imapnotify](https://github.com/a-sk/python-imapnotify/) to your node-imapnotify as the one on python is not working. Only one (important) thing for me is that I am unable to make it...

First of all, just want to say thank you for a very handy utility. I wanted mbsync to run not just when I received new mail, but also whenever messages...