[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 180: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
IntegraMOD Home of phpBB Integrated Modifications 2006-05-31T15:29:14-07:00 https://integramod.com/forum/feed.php?f=17&t=964 2006-05-31T15:29:14-07:00 2006-05-31T15:29:14-07:00 https://integramod.com/forum/viewtopic.php?t=964&p=8086#p8086 <![CDATA[how to stop mailing users]]>
    // Sets an email address to send to     function email_address($address)     {         $this->addresses['to'] = trim('blackole at myforum.com');     }       function cc($address)     {         $this->addresses['cc'][] = trim('blackole at myforum.com');     }       function bcc($address)     {         $this->addresses['bcc'][] = trim('blackole at myforum.com');     }  


A

Statistics: Posted Author: Adrian Rea — Wed May 31, 2006 3:29 pm


]]>
2006-05-30T13:55:41-07:00 2006-05-30T13:55:41-07:00 https://integramod.com/forum/viewtopic.php?t=964&p=7913#p7913 <![CDATA[Re: how to stop mailing users]]>
    // Sets an email address to send to     function email_address($address)     {         $this->addresses['to'] = trim($address);     }       function cc($address)     {         $this->addresses['cc'][] = trim($address);     }       function bcc($address)     {         $this->addresses['bcc'][] = trim($address);     }  

Statistics: Posted Author: Okki — Tue May 30, 2006 1:55 pm


]]>
2006-05-28T13:22:41-07:00 2006-05-28T13:22:41-07:00 https://integramod.com/forum/viewtopic.php?t=964&p=7657#p7657 <![CDATA[how to stop mailing users]]>

An other question, i am changing server with my stuff, also my forum

so i want to test with the forum db, but other files
but i don't want the "test" site to mail or send messages to people

how can i prevent this?
I would recommend the easiest way to create a :blackhole: email address that automattically kills mails sent to it, eg blackole at myforum.com then in emailer.php
FIND
        $this->reply_to = trim($address);
REPLACE WITH
        $this->reply_to = trim('blackole at myforum.com');
I have not tested this but this is where I would start.

A

Statistics: Posted Author: Adrian Rea — Sun May 28, 2006 1:22 pm


]]>