[nodebb-plugin-emailer-postageapp] PostageApp Integration

NodeBB Plugins
  • Starting v0.3.0, NodeBB will require a third party emailer to send emails on its behalf. This plugin allows NodeBB to use the PostageApp service to send emails.

    Installation

    npm install nodebb-plugin-emailer-postageapp
    

    Be sure to activate the plugin in the admin panel and set up the proper API key.


Suggested Topics


  • 1 Votes
    1 Posts
    217 Views

    with credit system,

    smile

  • 0 Votes
    2 Posts
    2k Views

    Ok, so far I've got it to work using passport-facebook-token and changing julian's sso-facebook plugin:

    FacebookTokenStrategy = require('passport-facebook-token'),

    and changing:

    passport.use(new passportFacebook({

    to

    passport.use(new FacebookTokenStrategy({

    Also:

    strategies.push({ name: 'facebook', url: '/auth/facebook', callbackURL: '/auth/facebook/callback', icon: constants.admin.icon, scope: 'email, user_friends' });

    to

    strategies.push({ name: 'facebook-token', url: '/auth/token', callbackURL: '/auth/token/callback', icon: constants.admin.icon, scope: 'email, user_friends' });

    I'm able to log into my account but I get this error:

    0_1499144571635_Screen Shot 2017-07-04 at 00.02.37.png

    Why is the route not found?

  • migrate to nodeBB

    NodeBB Plugins
    0 Votes
    6 Posts
    1k Views

    UTF8 Converter · Issue #108 · akhoury/nodebb-plugin-import

    UTF8 Database Converter have to be used before using NodeBB Import Tool. At this moment nodebb-plugin-import breaks non-latin charakcters. ą > ± ć > æ ę > ê ł > ³ ń > ñ ś > ¶ ż > ¿ SQL System Variables for IP.Board 2.3.x collation_connec...

    favicon

    GitHub (github.com)

  • How to retire a plugin?

    NodeBB Plugins
    0 Votes
    3 Posts
    1k Views

    The nbbpm checks new packages that get added to npm, so if you unpublish your package, we won't know.

    Best bet would be to keep the package there so users on old NodeBB versions can still install it, but put an nbbpm.indexed = false in package.json, so when it comes through from npm, nbbpm will know to remove it from the index.

  • 1 Votes
    2 Posts
    1k Views

    You can take a look at that nodebb-plugin-imgbed one, that's a pretty good example of saving settings too...

    /shameless plug