[nodebb-plugin-emailer-local] Local email plugin
-
no need for Mandrill plugin, right ?
Yup, that's right.
-
@BarveyHirdman said:
npm install nodebb-plugin-emailer-local
Hi, all, and congrats to the co-founders for this 'never seen a such in real time reactiv forum'...
I'm a french geek, and i've just discovered lots of tools (then new for me...)
And nodeJS was my choice to developp an apply... So I study all what I find ! Lol
And, link after link, I found nodeBB... And I'm completly sidered.
It'a a fabulous project ! BRAVOS !
So, I begin to read the forum... And found this plugin (@BarveyHirdman) and install it !
But, i read after the end of the thread... And I saw the 'psychobunny 's update'... Lol.To remove the fisrt original version, is that enough to remove the corresponding folder in this named 'nodes_modules' or it's necessary to do something else ?
To soon,
Lionel.
PS: For the moment, I only install nBB on local server (xamp/Linux)... And after some observations, one of my first goals is to do some changes for some words they arn't translated at all...
Can you help me to find (if exists) a francophon community for nBB ? -
@Lionel-Adel-Cote I don't believe there is a francophone community for NodeBB yet, though you're welcome to start one All we ask is that you don't use the term "NodeBB" in the URL or site title. NBB (and other variants) are fine.
To uninstall a plugin, just run
npm remove nodebb-plugin-emailer-local
. Have you tried the nodemailer plugin instead? -
After a short check, the plugin doesn't seems to work. The 'send' method isn't called. I'm trying to fix this issue.
Edit: seems to be the hook "action:mail.send" not fired.
Edit2: Does the "action:mail.send" hook fired on reply posted ? -
Hey @Mizore, the original author hasn't updated his plugin in a while (hope he's well and just busy) - have a look at my fork - the last time I checked it was working with at least 0.4.1
npm install git://github.com/psychobunny/nodebb-plugin-emailer-local
-
Hi @psychobunny,
would you add an option to enable SSL encryption?
Some SMTP server only support SSL connection.
Many thanks! -
@fiag said:
Hi @psychobunny,
would you add an option to enable SSL encryption?
Some SMTP server only support SSL connection.
Many thanks!Please, please, please do this. I want to use a gmail account to send notices and that requires an SSL connection (or results in massive false-positive spam bin assignments). My only option right now appears to be to install a proxy to translate the request to SSL (e.g., stunnel).
This is definitely at the top of the list of my desirables for NodeBB!
-
@psychobunny can you please update this plugin for v0.5-4?
It cannot send the email from gmail smtp.
I have check the setting -
This post is deleted!
-
This post is deleted!
-
For everyone want to send gmail mail. Just add
secureConnection: true,
in index.js
so it will be looked like this:var transportOptions = {
secureConnection: true,
host: Meta.config['emailer:local:host'],
port: Meta.config['emailer:local:port']
}; -
@Technowix it's work?
-
@Technowix oh, okay. I sent an email with secure smtp server successful
-
Dear devs, could someone make a PR for NodeBB 0.6.0 compatibility? Thanks
-
I was wondering if we could get this plugin updated for .8.x?
-
Are you on version 0.9.0? If so I believe this functionality is built in and no plugin necessary.