# Effects of import\_mode = true

**URL:** https://meta.discourse.org/t/effects-of-import-mode-true/106327
**Category:** Development
**Created:** [1월 12, 2019, 1:11오전 UTC](https://meta.discourse.org/t/effects-of-import-mode-true/106327 "2019-01-12T01:11:17Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![csmu](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/csmu/32/124581_2.png) [@csmu](https://meta.discourse.org/u/csmu)
#### Post date: [1월 12, 2019, 1:11오전 UTC](https://meta.discourse.org/t/effects-of-import-mode-true/106327/1 "2019-01-12T01:11:17Z")

</div>

When importing using an import script what does

```
import_mode = true

```

do?

---

<div class="post-metadata">

### Author: ![fhe](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/fhe/32/113345_2.png) [@fhe](https://meta.discourse.org/u/fhe)
#### Post date: [1월 12, 2019, 2:58오후 UTC](https://meta.discourse.org/t/effects-of-import-mode-true/106327/2 "2019-01-12T14:58:47Z")

</div>

It’s most likely not a complete list, but this is what I’ve observed while performing imports myself and looked up in the Discourse code base:

1. _Probably_ disables a bunch of restrictions for topic length, image count and so on
2. Disables posting new tracking events and emails for mailing list subscribers
3. Disables refreshing of avatars (download from Gravatar and such) and marking all posts with quotes of this user as needing to be rebaked
4. Disables computing featured topics for categories
5. Disables auto-close topic timers
6. Disables updating user counts for topics

Items 3-6 are most likely performance-related, whereas items 1. and 2. are crucial to not create failing imports and noise for your user base.
