diff options
author | Rebecca Turner <637275@gmail.com> | 2018-03-29 05:48:53 -0400 |
---|---|---|
committer | jc <u@gogs.io> | 2018-03-29 05:48:53 -0400 |
commit | c3c7944d79cd9ff7f5068fc854687deb342ffda8 (patch) | |
tree | db6218678906b02e8c728bdbe482331dbd839125 /conf/app.ini | |
parent | 75555585e8cd8ed21a342b3f729e416da77423ab (diff) |
conf: default to disabling federated avatar lookup (#5126)
It's a fun feature but `ENABLE_FEDERATED_AVATAR` being true by default
leads to confusion and huge slowdowns (see #2838, #980, #914) --- it's
unexpected that Gogs requires DNS configured (?) for avatars.
Avatar lookup is a niche feature that I don't believe should be enabled
by default given how prone it is to causing problems.
Diffstat (limited to 'conf/app.ini')
-rw-r--r-- | conf/app.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/app.ini b/conf/app.ini index bcba0056..2bf48123 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -292,7 +292,7 @@ DISABLE_GRAVATAR = false ; Federated avatar lookup uses DNS to discover avatar associated ; with emails, see https://www.libravatar.org ; This value will be forced to be false in offline mode or Gravatar is disbaled. -ENABLE_FEDERATED_AVATAR = true +ENABLE_FEDERATED_AVATAR = false ; Attachment settings for issues [attachment] |