# Encouraging User Participation - Some Ideas, More welcome

**URL:** https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511
**Category:** Community Building
**Created:** [April 13, 2016, 4:37pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511 "2016-04-13T16:37:23Z")
**Posts on this page:** 20
**Page:** 3

<div class="post-metadata">

### Author: ![BCHK](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bchk/32/3268_2.png) [@BCHK](https://meta.discourse.org/u/BCHK)
#### Post date: [April 14, 2016, 11:16pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/41 "2016-04-14T23:16:45Z")

</div>

> [@riking](#):
>
> Here’s a DAU chart for another product with an established user base.

Thanks - but the more important metric is how the ratio of DAU/MAU and DAU/Total User Base changes as the site grows.

I think that if the ratio stays the same - as Facebook’s does - then you have a healthy reinforcement cycle for the users. If it doesn’t then I think something isn’t working as you want it to.

---

<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: [April 14, 2016, 11:29pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/42 "2016-04-14T23:29:39Z")

</div>

I think what people are trying – and failing – to communicate to you is that you are comparing your small site with enormous global businesses that touch the entire planet.

It’d be like an amateur singer saying “I suck because I don’t have as many fans as Taylor Swift”. On the face of it, this is true, but you are comparing two _radically_ different things, and setting a completely unrealistic bar.

Why don’t you look for something more in your league, similar communities of people who share medical conditions?

---

<div class="post-metadata">

### Author: ![Mittineague](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mittineague/32/114259_2.png) [@Mittineague](https://meta.discourse.org/u/Mittineague)
#### Post date: [April 15, 2016, 4:08am UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/43 "2016-04-15T04:08:02Z")

</div>

I got so bowled over by the awesomeness of the report line graphs I nearly forgot to mention this.

I recently discovered that topic lists have an attribute value “liked”  
This is added to any topic that the “current user” has Liked at least one post in.

Yesterday, I used some CSS to add a rather large green heart. But after living with it for a while the newness wore off and it felt too visually obtrusive, so I toned it down.

I don’t know how others would feel about it, to me it serves as a personalized reminder that “hey, there was something in that topic I liked”  
\* note, I tend to be over-specific

```css
tr.liked td.main-link span.topic-post-badges::after { 
  content: "\2665";
  color: rgba(240, 10, 10, 0.4);
}

```

 ![](https://global.discourse-cdn.com/meta/original/3X/2/f/2fcc131ef0adc878f274d5019e00e043f7c73af1.png)

If you have any plugins using the topic list plugin outlets, please test _first_ (which you should always do anyway IMHO, just saying)

 ![](https://global.discourse-cdn.com/meta/original/3X/1/7/178c162c675b62cf37dbb2dc4b8afa95004bdf07.png)

---

<div class="post-metadata">

### Author: ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)
#### Post date: [April 15, 2016, 5:27am UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/44 "2016-04-15T05:27:05Z")

</div>

I think a key difference between Discourse and Twitter/Facebook/Snapchat etc besides operating at different scales, is that the “social” services **require** you are logged in to consume content.

Most Discourse sites on the other hand are perfectly usable as anonymous. This allows lots of people to continue using the site without tracking them as “active users”.

This leads to situations where some people are actually “active users” but are not being tracked. A classic example is mobile where often people just find it “too much of a pain in the behind to log in”. (also apps do not solve this)

There are things that we can do in software to push up some of these numbers, most of the non-evil things may give stuff a tiny bump.

- (good) We can make it easier to login in mobile, in particular, “login via email” feature (you don’t require password, just send an email with a 1 time login activation)

- (evil) We can [take away the cake](https://meta.discourse.org/t/can-users-trial-site-then-be-prompted-to-sign-up-after-say-10-minutes/30978/6) after 10 minutes… there would be enormous backlash in communities that do this.

- (evil) You can hide large amounts of content from non-logged in users (and still make it Google visible) - also hated

- (bad) You can encourage “general off topic” discussion and favor it over on-topic discussion. Turning site into a place anyone can visit anytime to kill time and talk about anything.

I did just run an interesting report on your site:

```plaintext
SELECT 
  sum(
    case when time_read < 10*60 then 1 else 0 end
  ) less_than_10,
   sum(
    case when time_read > 10*60 and time_read < 60*60 then 1 else 0 end
  ) f_10_to_60,
   sum(
    case when time_read > 60*60 then 1 else 0 end
  ) more_than_60,
  count(*)
from user_stats s
join users u on u.id = s.user_id
where u.created_at > now()::date - 365

```

So… 1992 people signed up.

659 stayed around for 10 minutes reading time.  
684 stayed for 10 to 60 minutes  
647 stayed for 60+ minutes

This ratio is actually quite spectacular compared to most of the sites we run. You are bringing on a regular amount of “fresh blood” into the forum. The reason you are _only_ seeing 30% growth in DAU in the last year is simply because only a rare number of the 647 users become “daily” users of the site AND there is churn of old users that become less active and leave. (also … keep in mind the graphs you linked from facebook are not should much more than 30% growth in a year)

There are some things we can do in software to marginally improve things, but any radical change and growth really needs to be driven by the community and community promotion.

---

<div class="post-metadata">

### Author: ![iva](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/iva/32/120762_2.png) [@iva](https://meta.discourse.org/u/iva)
#### Post date: [April 15, 2016, 6:29am UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/45 "2016-04-15T06:29:37Z")

</div>

> [@sam](#):
>
> I think a key difference between Discourse and Twitter/Facebook/Snapchat etc besides operating at different scales, is that the “social” services require you are logged in to consume content.

Another related point of difference is that Discourse users can read content entirely by email, rarely actually visiting the forum website. [Which kind of worries me](https://meta.discourse.org/t/does-reply-via-email-increase-engagement/42187), by the way.

---

<div class="post-metadata">

### Author: ![mcwumbly](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mcwumbly/32/103861_2.png) [@mcwumbly](https://meta.discourse.org/u/mcwumbly)
#### Post date: [April 15, 2016, 6:44am UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/46 "2016-04-15T06:44:15Z")

</div>

Just want to say I am _very_ happy to see this discussion happening.

I think that giving forum admins more tools out of the box to measure levels of participation / engagement / etc will be very good for the product. Happy to see the thoughtful discussion here and the responsiveness from @sam not just with example queries but also with features like these graphs.

Hopefully having some common tools will help people running sites better discuss experiments for increasing engagement and allow us to compare results and analyses of the data we can share.

---

<div class="post-metadata">

### Author: ![erlend\_sh](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/erlend_sh/32/119475_2.png) [@erlend\_sh](https://meta.discourse.org/u/erlend_sh)
#### Post date: [April 15, 2016, 8:41am UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/47 "2016-04-15T08:41:20Z")

</div>

> [@BCHK](#):
>
> Can anyone else share their experience in terms of how daily active users as a percent of total users, has changed over time.

Because of spam accounts and drive-by registrations, this might often be a needlessly depressing metric to look at. There are limitations to what we can do to prevent an inflated user count. Two more interesting metrics would be:

- % of TL1-TL4 users active, tracked from forum launch to current day.
- Some kind of overview of active users’ activity trends:
- top 10% of active users is generating 50% of your content;
- next 40% is generating 35% of your content;
- remaining 50% is generating 14% of your content.
- 1% is generated by users not counted as “active”.

---

<div class="post-metadata">

### Author: ![downey](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/downey/32/166878_2.png) [@downey](https://meta.discourse.org/u/downey)
#### Post date: [April 15, 2016, 1:11pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/48 "2016-04-15T13:11:39Z")

</div>

Just chiming in here to say that based on the data shown, @HAWK is exactly right. This definitely looks like a content & engagement issue, which is almost certainly not going to be solved with software alone.

As others have suggested, social networks have a baked-in reason for people to keep coming back. With a community (using a plaform such as Discourse) you’re “on your own” to help your users find that motivation & passion.

---

<div class="post-metadata">

### Author: ![downey](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/downey/32/166878_2.png) [@downey](https://meta.discourse.org/u/downey)
#### Post date: [April 15, 2016, 1:13pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/49 "2016-04-15T13:13:03Z")

</div>

> [@iva](#):
>
> Another related point of difference is that Discourse users can read content entirely by email, rarely actually visiting the forum website. Which kind of worries me, by the way

I agree; this is still a tracking deficiency, I think… 🙂

[https://meta.discourse.org/t/does-viewing-an-email-notification-increase-topic-view-count/16927](https://meta.discourse.org/t/does-viewing-an-email-notification-increase-topic-view-count/16927)

[https://meta.discourse.org/t/does-viewing-an-email-notification-increase-topic-view-count/16927/3?u=downey](https://meta.discourse.org/t/does-viewing-an-email-notification-increase-topic-view-count/16927/3)

---

<div class="post-metadata">

### Author: ![mikechristopher](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mikechristopher/32/89135_2.png) [@mikechristopher](https://meta.discourse.org/u/mikechristopher)
#### Post date: [April 15, 2016, 2:43pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/50 "2016-04-15T14:43:25Z")

</div>

So we have been looking at the reading time queries and also the active users reading but not posting query by @techAPJ here - [Queries for inactive and active users? - #3 by techAPJ](https://meta.discourse.org/t/queries-for-specific-user-types/39819/3)

Is there any way in which we can mass message or mass email these types of users in order to try and drum up the activity?

---

<div class="post-metadata">

### Author: ![mcwumbly](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mcwumbly/32/103861_2.png) [@mcwumbly](https://meta.discourse.org/u/mcwumbly)
#### Post date: [April 15, 2016, 2:59pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/51 "2016-04-15T14:59:09Z")

</div>

I’d like to see “posts read” and “read time” metrics on the main admin metrics dashboard too… those are shown on the admin user list page, but not in aggregate.

---

<div class="post-metadata">

### Author: ![BCHK](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bchk/32/3268_2.png) [@BCHK](https://meta.discourse.org/u/BCHK)
#### Post date: [April 15, 2016, 4:00pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/52 "2016-04-15T16:00:45Z")

</div>

> [@sam](#):
>
> 659 stayed around for 10 minutes reading time.684 stayed for 10 to 60 minutes 647 stayed for 60+ minutes
> 
> This ratio is actually quite spectacular compared to most of the sites we run. You are bringing on a regular amount of “fresh blood” into the forum. The reason you are only seeing 30% growth in DAU in the last year is simply because only a rare number of the 647 users become “daily” users of the site AND there is churn of old users that become less active and leave. (also … keep in mind the graphs you linked from facebook are not should much more than 30% growth in a year)
> 
> There are some things we can do in software to marginally improve things, but any radical change and growth really needs to be driven by the community and community promotion.

Sam,

Here is what makes me wonder whether we could be doing something better at a platform level to engage and pull-in our visitors and keep them on the site.

During the past year the number of daily visitors has gone up slightly (something like 20% to 30%) but the total number of registered users has gone up 400%, and the number of daily messages have gone up from around 300 to 600 messages and from 30 to 60/70 new topics per day.

It seem to me that if we’re getting a big increase in numbers of registered users, and a large number of new messages (and huge increase in the number of messages in the database - from something lime 100,000 to now over 330,000) - that we have lots of really good, compelling information in our database that “should” be of interest to our visitors who are taking the time to register.

It seems that there may be a huge opportunity (once a forum creates more traffic than a regular visitor reads in a day) - to customize the feeds similar to how facebook does it - with a good algorithm that customizes the feed so that the likelihood that the users see interesting and helpful content greatly increases.

Its easy for platform developers to just say - ah, its just your community and your management of it (just like large attrition rates may be easier for forum admins to say is the cause of the platform) - but to be honest I think Discourse is by far the best discussion forum platform out there, so I think its not an issue of you guys not doing great work - you have. The issue is that there seems to be an opportunity that I perceive is not being taken right now.

Now - it may be that doing this is just too much mathematical heavy lifting for discourse to do at this time and given the current resources, which is a completely reasonable response.

But I really think it would be helpful for Discourse to look at these issues and statistics not from a forum by forum basis but from a platform basis, and then variations from the mean for the individual forums, so that both you and we can understand better what is working and why (if possible) and how things might improve at both the platform level and the forum level as things get changed. Until we have the data at the forum and platform level - all of these things are just people waving their hands in the air without much data.

My fundamental point is that if my forum is getting 700 messages a day and the mean or median user is reading 700 divided by X messages per day (that is, people are only reading a fraction of the new daily messages) - there seems to be a great opportunity to improve the user experience so that each user gets the messages that he or she is most interested in.

It seems that we could use a cookie to start tracking a user as soon as he/she lands on our page and see what they like, based on the time they spend reading each message, and then as soon as they register start using that information from the cookie to customize the feed to improve the experience. In fact you could probably use a cookie to customize the experience for non-registered users - right?

The more you can automatically reveal to users the content / topics they are most interested in their “feed” (in our sea of discussions) the more it seems we’re going to be able to attract, convert, and retain our users. To the degree that the platform helped in this task - the better we all will be off. I don’t think this type of issue is a problem that I can address as a forum admin - unless I’m missing something in the controls (entirely possible given the frequency of updates).

---

<div class="post-metadata">

### Author: ![BCHK](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bchk/32/3268_2.png) [@BCHK](https://meta.discourse.org/u/BCHK)
#### Post date: [April 15, 2016, 4:05pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/53 "2016-04-15T16:05:14Z")

</div>

> [@erlend\_sh](#):
>
> Can anyone else share their experience in terms of how daily active users as a percent of total users, has changed over time.
> 
> Because of spam accounts and drive-by registrations, this might often be a needlessly depressing metric to look at.

Are spam accounts (i.e. accounts with minimal messages read, and mimimal time on the site) currently counted in the total? Is there a way to take those out? If Discourse is currently flagging something as a spam account I really don’t want that data counted in my forum statistics. From what I’ve found the ID of the spam accounts based on these metrics is very accurate - so I wouldn’t have a problem if they are removed from the total until I go through my spam account tab and specifically add any into the total that I see.

---

<div class="post-metadata">

### Author: ![BCHK](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bchk/32/3268_2.png) [@BCHK](https://meta.discourse.org/u/BCHK)
#### Post date: [April 15, 2016, 4:14pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/54 "2016-04-15T16:14:25Z")

</div>

> [@downey](#):
>
> Just chiming in here to say that based on the data shown, @HAWK is exactly right. This definitely looks like a content & engagement issue, which is almost certainly not going to be solved with software alone.

I think that this is completely inaccurate.

Look - please read up on Facebook’s edgerank algorithm before you comment on this. The average person on facebook gets something like 1500 posts that could be shown to them in a day - and read a small fraction of them. Are you really suggesting to me that not making any effort to show to their users the specific Topics / messages that are of most interest to their users does not help in their return user / DAU / MAU metrics?

Really? - thats like saying that if someone on facebook isn’t getting the posts that they want on their feed isn’t getting the right friends. And you telling me that that the user’s on my forum who are creating 700 messages a day just aren’t discussing the right topics to be of interest to the broader user base - seems a little ridiculous.

As a software startup company person I view it as something in our control - and that control is the software platform you are using.

> Why Do we Need A Facebook News Feed Algorithm?  
> Whenever someone visits their News Feed, there are around 1,500 stories waiting to be seen from the friends, people, and Pages that they follow. Since the average person doesn’t have the time to read through 1,500 posts, Facebook’s algorithm prioritizes these stories to show users what they’re most likely to be interested in.

> Facebook seeks to show you the information that you want to see without making you dig for it through a bunch of stories that, let’s just face it, you’re really not that interested in seeing.

Read the full story here:

> **[How the Facebook algorithm works and ways your brand can outsmart it](https://sproutsocial.com/insights/facebook-algorithm/)**
>
> Tired of fighting the Facebook algorithm? We'll share everything brands need to know about the latest algorithm changes and how to beat it.

---

<div class="post-metadata">

### Author: ![BCHK](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bchk/32/3268_2.png) [@BCHK](https://meta.discourse.org/u/BCHK)
#### Post date: [April 15, 2016, 4:21pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/55 "2016-04-15T16:21:52Z")

</div>

Put another way - I suspect that the key issue that the more active sites have on Discourse is that as the number of messages per day significantly exceeds the typical user’s reading quantity, the user experiences a significant increase in the amount of “noise” to “signal” ratio - and because of this, you get less and less engagement, and more dropoff - just as we saw with facebook.

> " **The Beginning of Edgerank**  
> In the spring of 2009, Facebook released the first iteration of a real-time News Feed. It was a completely unrestricted feed and would display every single story as it published. With this feed, Facebook started to see a large spike in the amount of Likes and comments from each user, which essentially created a cycle of sharing.

> The increased engagement led to more content, which eventually resulted in too much noise for the user. The problem for Facebook became showing each user topical and interesting information without overwhelming them with posts. The answer came at the 2010 f8 conference with the announcement of the Facebook News Feed ranking algorithm Edgerank.

My hypothesis is that if you looked at all the discourse forums that get more than some significant level of usage (say 500+ messages a day) - that you start seeing a significant drop-off of DAU/Total Registered Users - simply because the signal to noise ratio is getting too large for most users.

I think Facebook suffered from this. I think we also are suffering from this.

See more here:

> **[How the Facebook algorithm works and ways your brand can outsmart it](https://sproutsocial.com/insights/facebook-algorithm/)**
>
> Tired of fighting the Facebook algorithm? We'll share everything brands need to know about the latest algorithm changes and how to beat it.

---

<div class="post-metadata">

### Author: ![BCHK](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bchk/32/3268_2.png) [@BCHK](https://meta.discourse.org/u/BCHK)
#### Post date: [April 15, 2016, 4:38pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/56 "2016-04-15T16:38:38Z")

</div>

Part of the issue here may be philosophical - I suspect that Jeff sees the “best platform for civil discourse” in the more traditional vein, where all conversations are show to all people in reverse chronological order, and anything other than this is heresy.

I think there is a huge opportunity to merge the worlds of social network customization intelligence with the worlds of traditional discussion forum. These algorithms could be keep private to Discourse (the company, separate from the platform)- and thus would be a huge competitive advantage to hosting on the Discourse Hosting platform and a sustainable competitive advantage to the company.

If each of our forums prioritized the feed of topics for our users based on the preferences that we learn about each person over time from their click patterns - I think you truly start getting the best platform for civil discourse in the world - and more importantly you create a company (Discourse) that can start growing faster with more engaged users - more similar to the way Slack is growing.

In an Ideal world - I’d see Discourse hiring some data scientists (even as contractors to start and keep the development effort relatively low-cost) to help define and refine these algorithms.

Here is what the ideal case would be:

> At Facebook headquarters in California, about 20 engineers and data scientists meet every Tuesday in the “John Quincy Adding Machine” room—“Abraham Linksys” and “Dwight DVD Eisenhower” are nearby. They’re tasked with assessing the billions of likes, comments and clicks Facebook users make each day to divine ways to make us like, comment and click more.

> Their assessments, as well as ratings from about 700 other reviewers around the United States, are later fed back to the team in California, all in the service of improving Facebook’s News Feed algorithm, the software that delivers personalized streams of content.

[http://time.com/3950525/facebook-news-feed-algorithm/](http://time.com/3950525/facebook-news-feed-algorithm/)

of course - for DIscourse - the goal would not just to be to devine ways to make our users “like comment and click more” - the goal would be to do those things in a way that improves the conversations and quality of the interaction, a possibly more difficult but infinitely more valuable goal. Then again - maybe its not more difficult - because I think for Discourse the granularity of the “feed” isn’t the individual message, but rather the higher level “topic” (at least to begin with).

---

<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: [April 15, 2016, 7:17pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/58 "2016-04-15T19:17:56Z")

</div>

> [@BCHK](#):
>
> Put another way - I suspect that the key issue that the more active sites have on Discourse is that as the number of messages per day significantly exceeds the typical user’s reading quantity, the user experiences a significant increase in the amount of “noise” to “signal” ratio - and because of this, you get less and less engagement, and more dropoff - just as we saw with facebook.

Yes, but this is magical thinking.

“Just show the user exactly what they want to see! How hard can it be?”

It’s easy, right?

Never mind that entire multi-billion dollar businesses, with thousands of employees, have worked on this for a decade, and still haven’t achieved the perfection that you imply is just a moment of thought away.

---

<div class="post-metadata">

### Author: ![alefattorini](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/alefattorini/32/119928_2.png) [@alefattorini](https://meta.discourse.org/u/alefattorini)
#### Post date: [April 15, 2016, 7:29pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/59 "2016-04-15T19:29:25Z")

</div>

Looks that We have gone a bit of topic even if it was started off very well!

> [@codinghorror](#):
>
> One thing I do want to get to is automatic system acknowledgment of new users who do well on the site, e.g. post a few things and get a few likes. This is what I call the “rookie of the week” email – it congratulates them, notes that the community is enjoying what they’re posting, and thanks them for joining with a little bit of a flourish

I like very much this idea, why just a rookie?  
This automatic system should help the new members to become more and more active, not just in the early period. A simple mail with last achievements, likes received, badges earned and so on.. Also suggested some topics useful to rejon the discussions.

---

<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: [April 15, 2016, 7:41pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/60 "2016-04-15T19:41:23Z")

</div>

That already exists in the form of the weekly digests which go out to _all_ users who haven’t visited the site in the last week.

---

<div class="post-metadata">

### Author: ![alefattorini](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/alefattorini/32/119928_2.png) [@alefattorini](https://meta.discourse.org/u/alefattorini)
#### Post date: [April 15, 2016, 7:45pm UTC](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511/61 "2016-04-15T19:45:56Z")

</div>

Of course, though they are sent only if you don’t visit Discourse for a while. I’d like to send it anyway with the contents I suggested above until the user don’t become enough active and he’s not a rookie anymore.

[Previous page](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511.md?page=2)

[Next page](https://meta.discourse.org/t/encouraging-user-participation-some-ideas-more-welcome/42511.md?page=4)
