# Badge First Reply By Email not triggerd

**URL:** https://meta.discourse.org/t/badge-first-reply-by-email-not-triggerd/59970
**Category:** Bug
**Created:** [March 27, 2017, 2:00pm UTC](https://meta.discourse.org/t/badge-first-reply-by-email-not-triggerd/59970 "2017-03-27T14:00:46Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Lutz](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/lutz/32/65103_2.png) [@Lutz](https://meta.discourse.org/u/Lutz)
#### Post date: [March 27, 2017, 2:00pm UTC](https://meta.discourse.org/t/badge-first-reply-by-email-not-triggerd/59970/1 "2017-03-27T14:00:46Z")

</div>

We have the the reply by EMail function in use and it works perfectly. However, the badge “First Reply By Email” is not triggered for anyone. I have found an[old bug](https://meta.discourse.org/t/not-detecting-first-time-reply-by-email/48379), but he is marked as resolved. We use the latest “tests-passed” version, docker install and https-setup.

---

<div class="post-metadata">

### Author: ![zogstrip](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/zogstrip/32/512781_2.png) [@zogstrip](https://meta.discourse.org/u/zogstrip)
#### Post date: [April 10, 2017, 8:41pm UTC](https://meta.discourse.org/t/badge-first-reply-by-email-not-triggerd/59970/3 "2017-04-10T20:41:35Z")

</div>

Bear in mind that the “First Reply By Email” badge is only awarded on publicly visible posts.

If you have some publicly visible posts that were not awarded the badge, here’s how to fix it

```
# ssh into your server
cd /var/discourse
./launcher enter app
rails c
OnceoffLog.where(job_name: "GrantFirstReplyByEmail").destroy_all

```

That will force the job to re-run and award any missing badges.

---

<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: [June 1, 2017, 2:52am UTC](https://meta.discourse.org/t/badge-first-reply-by-email-not-triggerd/59970/4 "2017-06-01T02:52:19Z")

</div>


