How to send out email when someone replies to a Topic

Technical Support

Suggested Topics


  • 1 Votes
    2 Posts
    206 Views

    Does it seem unnecessary? 🤔
    Maybe this ability exists in ACP in a place I don't know..?

  • 0 Votes
    4 Posts
    236 Views

    I am having the exact same problem. I am running version 2.8.6 with a PostgreSQL database. Where do I check for "the entry for confirm:<uuid>"?

    Edit: Maybe my issue is slightly different: I checked the new user's account. The email address is actually marked as validated, even after the 404 response.

    Thanks!

  • 0 Votes
    5 Posts
    609 Views

    Hi @PitaJ ,
    Done: https://github.com/NodeBB/NodeBB/issues/6911
    In the meantime, is there a way to modify said js code without it being over-written on each update?

  • 0 Votes
    4 Posts
    1k Views

    😬 Woops.. Just noticed the purge topic button that appears after deleting.. Moving on..

  • 0 Votes
    2 Posts
    925 Views

    This is because how we store data. For example each sorted set element is stored as document.

    For example

    db.objects.find({_key:"topics:tid"}); { "_id" : ObjectId("5547aee465190fe212295e96"), "_key" : "topics:tid", "value" : "4392", "score" : 1430511213134 } { "_id" : ObjectId("5547aee465190fe212295e94"), "_key" : "topics:tid", "value" : "4391", "score" : 1430500193058 } { "_id" : ObjectId("5547aee465190fe212295e92"), "_key" : "topics:tid", "value" : "4390", "score" : 1430494440461 } { "_id" : ObjectId("5547aee465190fe212295e90"), "_key" : "topics:tid", "value" : "4389", "score" : 1430484949083 } { "_id" : ObjectId("5547aee465190fe212295e8f"), "_key" : "topics:tid", "value" : "4388", "score" : 1430479608551 } { "_id" : ObjectId("5547aee465190fe212295e8e"), "_key" : "topics:tid", "value" : "4387", "score" : 1430435412827 }

    When you post a topic it's topic id and data is stored in many places. For example under topics:recent, topics:tid, user:1:tids and so on.