Manual:$wgUsersNotifiedOnAllChanges

From MediaWiki.org

Jump to: navigation, search
Note: before r32683 in 1.13alpha, this was misspelled $wgUsersNotifedOnAllChanges!
Email notification (Enotif) settings: $wgUsersNotifiedOnAllChanges
Array of usernames who will be sent a notification email for every change which occurs on a wiki.
Introduced in version: 1.10.0 (r21468)
Removed in version: still in use
Allowed Values: array of strings
Default Value: array()

Other settings: Alphabetical | By Function


[edit] Details

Array of usernames who will be sent a notification email for every change which occurs on a wiki.

This capability is based on the enotif watchlist code in includes/UserMailer.php, so you must set "$wgEnotifWatchlist = true;" for this to work.

Example:

$wgEnotifWatchlist = true;
# Declare this twice so it works for all versions
$wgUsersNotifiedOnAllChanges =
$wgUsersNotifedOnAllChanges = array( 'WikiSysop', 'User123' );