My phpwiki site has been shut down by my ISP because of users with defunct email addresses continuing to update pages and it sending out emails to incorrect addresses, which they (my ISP) deems to be "abuse". I need a way to disable the email capabilities of phpwiki, is there a simple way to do this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
My phpwiki site has been shut down by my ISP because of users with defunct email addresses continuing to update pages and it sending out emails to incorrect addresses, which they (my ISP) deems to be "abuse". I need a way to disable the email capabilities of phpwiki, is there a simple way to do this?
yes,
go to the source of the mail notification function in lib/WikiDB.php
and disable it.
Easiest would be to disable getPageChangeEmails()
function getPageChangeEmails($notify) {
return array();
$emails = array(); $userids = array();
...
}