# Get notified of new topics, but not posts

**URL:** https://meta.discourse.org/t/get-notified-of-new-topics-but-not-posts/12809
**Category:** Feature
**Created:** [18 Febbraio 2014, 3:18pm UTC](https://meta.discourse.org/t/get-notified-of-new-topics-but-not-posts/12809 "2014-02-18T15:18:52Z")
**Posts on this page:** 2
**Page:** 4

<div class="post-metadata">

### Author: ![eviltrout](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/eviltrout/32/5275_2.png) [@eviltrout](https://meta.discourse.org/u/eviltrout)
#### Post date: [17 Agosto 2016, 6:20pm UTC](https://meta.discourse.org/t/get-notified-of-new-topics-but-not-posts/12809/66 "2016-08-17T18:20:03Z")

</div>

I’ve taken a look through the code (thanks for your PM with extra information) and unfortunately I can’t see anything that would cause this behaviour.

If you’re comfortable with the command line you could run this in a rails console:

```ruby
topic = Topic.find(12345) # your id goes here  

topic.category_users
     .where(notification_level: CategoryUser.notification_levels[:watching_first_post])
     .pluck(:user_id)

```

It should return a list of the user ids who will get an email if they are watching the first post in that topic’s category.

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [19 Novembre 2016, 12:20am UTC](https://meta.discourse.org/t/get-notified-of-new-topics-but-not-posts/12809/67 "2016-11-19T00:20:42Z")

</div>



[Pagina precedente](https://meta.discourse.org/t/get-notified-of-new-topics-but-not-posts/12809.md?page=3)
