mysigp226
30-06-04, 06:43 AM
I need to disable email notification. I dont see any where to do that.
Running latest official tar ball on sourceforge
-Tyler
Revelation7
01-07-04, 03:28 AM
email notification from where? Tickets?
No, unfortuanately, we don't have that option in any config file, and maybe we should, but for now, you can just hotwire dotproject\classes\libmail.class.php, line 339, changefunction Send() {
$this->BuildMail();
$this->strTo = implode( ", ", $this->sendto );
// envoie du mailz
return @mail( $this->strTo, $this->xheaders['Subject'], $this->fullBody, $this->headers );
}to
function Send() {
return 1;
} :mrgreen:
If that fails, that means there are places where they are not using the class file, then you need to do a in directory search for mail and just comment out the actual mail statements, e.g.modules/ticketsmith/followup.php line 69,
$mail->Send() || fatal_error("Unable to mail followup. Quit without recording followup to database.");just comment this whole line out. But you shouldn't need to do this if all the modules are using the libmail.
vBulletin® v3.6.4, Copyright ©2000-2013, Jelsoft Enterprises Ltd.