User:Lysander/EmailAllChanges
From BoyWiki
The EmailAllChanges extension adds a preferences checkbox allowing users to have all changes to pages on the wiki, or just the changes they make, emailed to them.
Installation
- Download and place the file(s) in a directory called EmailAllChanges in your extensions/ folder.
- Add the following code at the bottom of your LocalSettings.php:
require_once "$IP/extensions/EmailAllChanges/EmailAllChanges.php";
- Done! Navigate to "Special:Version" on your wiki to verify that the extension is successfully installed.
Configuration
$wgEmailAllChangesRight
Set to whatever user right you want users to have to possess in order to use the "email all changes" feature. Defaults to 'userrights' (which would limit it to bureaucrats on most configurations).
$wgEmailAllChangesMyChangesRight
Set to whatever user right you want users to have to possess in order to use the "email my changes" feature. Defaults to 'edit'.
$wgEmailAllChangesExcludePages
Array of pages to exclude from notification.
$wgEmailAllChangesExcludePages = array( 'MediaWiki:InterwikiMapBackup' );
$wgEmailAllChangesExcludeUsers
Array of users whose changes should be excluded from notification.
$wgEmailAllChangesExcludeUsers = array();
$wgEmailAllChangesExcludeGroups
Array of user groups whose changes should be excluded from notification.
$wgEmailAllChangesExcludeGroups = array( 'bot' );