Hi,
As a Wiki SysOp user, I am looking for extension(s) for the following two requirement:
1. The SysOp user should get an email whenever a new page is created on the wiki
2. The SysOp user can send an email to all the existing wiki users.
I am using Mediawiki 1.12 and I don't think these features are there in the version that I am using.
Thanks
Tech Geek wrote:
Hi,
As a Wiki SysOp user, I am looking for extension(s) for the following two requirement:
- The SysOp user should get an email whenever a new page is created on the
wiki
http://www.mediawiki.org/wiki/Manual:$wgUsersNotifiedOnAllChanges
- The SysOp user can send an email to all the existing wiki users.
There doesn't seem to be an extension for that
Howerver, it's easy to fetch all the emails from the db for sending them an email with bcc.
I am using Mediawiki 1.12 and I don't think these features are there in the version that I am using.
2 years old wikis are likely to be outdated. But you can use it. Note that on your version $wgUsersNotifiedOnAllChanges is mispelled as $wgUsersNotifedOnAllChanges That version has security issues, though.
Howerver, it's easy to fetch all the emails from the db for sending them
an email with bcc.
Could you give some hints, I mean how can I do that?
thank you
2010/4/29 Platonides Platonides@gmail.com
Tech Geek wrote:
Hi,
As a Wiki SysOp user, I am looking for extension(s) for the following two requirement:
- The SysOp user should get an email whenever a new page is created on
the
wiki
http://www.mediawiki.org/wiki/Manual:$wgUsersNotifiedOnAllChanges
- The SysOp user can send an email to all the existing wiki users.
There doesn't seem to be an extension for that
Howerver, it's easy to fetch all the emails from the db for sending them an email with bcc.
I am using Mediawiki 1.12 and I don't think these features are there in
the
version that I am using.
2 years old wikis are likely to be outdated. But you can use it. Note that on your version $wgUsersNotifiedOnAllChanges is mispelled as $wgUsersNotifedOnAllChanges That version has security issues, though.
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
nevio carlos de alarcão wrote:
Howerver, it's easy to fetch all the emails from the db for sending them an email with bcc.
Could you give some hints, I mean how can I do that?
thank you
SELECT user_email FROM user WHERE user_email != '';
SELECT user_email FROM user WHERE user_email != '';
rss it doesn't ring a bell rss. Thank you very much, though.
2010/5/9 Platonides Platonides@gmail.com
nevio carlos de alarcão wrote:
Howerver, it's easy to fetch all the emails from the db for sending them an email with bcc.
Could you give some hints, I mean how can I do that?
thank you
SELECT user_email FROM user WHERE user_email != '';
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
nevio carlos de alarcão wrote:
SELECT user_email FROM user WHERE user_email != '';
rss it doesn't ring a bell rss. Thank you very much, though.
You would run that SQL statement on the wiki database with your favourite client, like phpmyadmin.
On Mon, May 10, 2010 at 8:08 AM, Platonides Platonides@gmail.com wrote:
nevio carlos de alarcão wrote:
SELECT user_email FROM user WHERE user_email != '';
rss it doesn't ring a bell rss. Thank you very much, though.
You would run that SQL statement on the wiki database with your favourite client, like phpmyadmin.
Or the AskSQL[1] extenstion.
[1]. http://www.mediawiki.org/wiki/Extension:Asksql
-Peachey
mediawiki-l@lists.wikimedia.org