diff options
author | Jakub Klinkovský <j.l.k@gmx.com> | 2016-07-14 13:21:46 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-07-20 09:14:11 +0200 |
commit | d69ef76ef7d1775f2b208e2930288feec0220401 (patch) | |
tree | 1a37e533f3ac0aeaf03fc44629c5145dcd3f420d | |
parent | d3defaa19b976e7811e95edb5ac5c78f9ef9fa40 (diff) |
LocalSettings: move email settings
-rw-r--r-- | LocalSettings.archlinux.org.php | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/LocalSettings.archlinux.org.php b/LocalSettings.archlinux.org.php index 0129df54..de52ad26 100644 --- a/LocalSettings.archlinux.org.php +++ b/LocalSettings.archlinux.org.php @@ -82,8 +82,9 @@ $wgDBTableOptions = "ENGINE=InnoDB, DEFAULT CHARSET=binary"; $wgDBmysql5 = false; -## Uncomment this to disable output compression -# $wgDisableOutputCompression = true; +## +## Email settings +## ## UPO means: this is also a user preference option @@ -97,6 +98,13 @@ $wgEnotifUserTalk = true; # UPO $wgEnotifWatchlist = true; # UPO $wgEmailAuthentication = true; +# avoid bouncing of user-to-user emails (FS#26737) +$wgUserEmailUseReplyTo = true; + + +## Uncomment this to disable output compression +# $wgDisableOutputCompression = true; + ## Shared memory settings $wgMainCacheType = CACHE_ACCEL; $wgMemCachedServers = array(); @@ -215,5 +223,3 @@ $wgGroupPermissions['sysop']['checkuser-log'] = true; # temporary disable registration; reverted 2016-6-26 bluewind #$wgGroupPermissions['*']['createaccount'] = false; - -$wgUserEmailUseReplyTo = true; |