Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

WW should also zap useless idInfos in the `certainlyWillInline` case.
Currently inside `tryWW` we generate a new ID like this: ``` new_fn_id = zapIdUsedOnceInfo (zapIdUsageEnvInfo fn_id) -- See Note [Zapping DmdEnv after Demand Analyzer] and -- See Note [Zapping Used Once info WorkWrap] ``` Which is always used as the new Id **except** in the case where the function is guaranteed to be inlined. Based on the referenced notes I think we should zap the binding even if we don't perform WW.
issue