For some reason Gmail keeps locking my accounts used with insight. Is there an alternative?
You can use local delivery (see http://blog.nodejitsu.com/sending-emails-in-node/) and send emails by yourself.
Is there some option or plugin for local delivery?
Here is how you can do it:
Change: plugins/config-emailstore.js
+var smtpTransport = require('nodemailer-smtp-transport');
+
+var auth = {
+ host: 'localhost',
+ port: 25,
+ignoreTLS:true,
+};
+
module.exports = {
- email: {
- service: 'Gmail',
- auth: {
- user: '',
- pass: ''
- }
- }
+ confirmEmailHost: 'https://yourhost.com',
+ email: smtpTransport(auth),
};
+