[nodebb-plugin-emailer-local] Local email plugin
-
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.
-
Hi, Yes i am on 0.9.0.. First time using this nodeBB
I didnt see the option anywhere though for using SMTP without the plugin. I think i got the plugin in working though - i had to restart my nodedb instance after saving the SMTP settings.
I would love to use the inbuilt one though if it exists?
Thanks
-
https://blog.nodebb.org/emailers/
Based on the post, it appears that it is just built in. So it doesn't sound like it actually gives you the ability to setup your own stmp settings. If that is unneeded, then you should be able to just put the email you want it to send from, and it will send. If you do need that, you will likely still have to get this plugin working.
-
Thanks for the link.. I guess it is blocked on my work network then. This plugin is working fine for me now since i restarted nodebb (using gmail) so I will just have to get my IT to allow access to my companies SMTP. Thanks again
-
Ok so local mailer is now build-in. But I was using postfix. The following command is working fine:
mail -s "Hello world" [email protected]
This will send me an e-mail.I configured gmail SMTP setting in postfix. I'm 100% sure that is working.Using NodeBB I can't send messages. I also can't find any settings page for mail configurations in NodeBB. I don't see any errors as far I can see in
./nodebb log
. So what should I do? Why is it not working?I already configured postfix, should I also configure nodemailer some how :s ?
-
Can anyone kindly help me figure this out?
I have installed this among the other mailer plugins, activated them, restarted and reloaded nodebb, but I cannot get to the configuration pages for the plugins.
No matter which pl ugins I remove or install, I only ever see
This exact same list. I'm not newbie, but a developer. I can't seem to figure this out. WHY WONT ANYTHING show me the plugin config page in plugins?
-
@Hash-Borgir Update: I had given up until I got a reply from the gurus here, but then I discovered that I had closed my browser, restarted it, and apparently it started to show the new plugins in the config menu. That is strange.
What can I do to test further if it his a front-end updating issue or something?
-
It might be a cache issue. I'd suggest running in dev mode to disable that if you're trying things out.
./nodebb dev
-
The admin panel is horrible about refreshing to show new plugins.
-
I fixed several problems with this plugin and made a pull request:
https://github.com/NodeBB/nodebb-plugin-emailer-local/pull/18Until someone has time to merge this I published a fork of this plugin with those changes merged in:
https://www.npmjs.com/package/nodebb-plugin-emailer-cppnet -
@dravere You should be able to use the built-in SMTP emailer in NodeBB ACP, and this plugin is no longer required AFAIK.
-
@PitaJ That is sadly not possible. The built-in SMTP emailer lacks several feature this plugin has. I need to send e-mails unencrypted without user authentication to another service running in the DMZ. This is not supported. Sendmail also is not an option thus I can't use services like ssmtp or msmtp.
With the changes I made to this plugin it not only works with the current NodeBB, but also provides unencrypted and unauthenticated e-mail transport. Quite important if you have a centralized service in your DMZ for relaying e-mails.
-
@dravere in that case, the feature you want could probably be fairly easily implemented in core. I'll look into it.
One question though: For SMTP, if no auth is required, does providing auth break it, or is it just ignored?