[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-24T11:55:40-07:00 http://www.integramod.com/forum/feed.php?f=12&t=232 2006-05-24T11:55:40-07:00 2006-05-24T11:55:40-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=7191#p7191 <![CDATA[Please remove email addresses in posts]]>
THank you eveyone for you input, at least this keeps it fresh in everyone's mind to be more aware of the risks,

A

Statistics: Posted Author: Adrian Rea — Wed May 24, 2006 11:55 am


]]>
2006-05-24T02:06:49-07:00 2006-05-24T02:06:49-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=7101#p7101 <![CDATA[Re: Please remove email addresses in posts]]> http://www.pgregg.com/projects/encode/htmlemail.phps
http://www.pgregg.com/projects/encode/htmlemail.php

Statistics: Posted Author: evolver — Wed May 24, 2006 2:06 am


]]>
2006-05-24T01:50:20-07:00 2006-05-24T01:50:20-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=7099#p7099 <![CDATA[Re: Please remove email addresses in posts]]> When I try to re-edit previous message, even there all ASCII code has been changed to viewable characters...
I'm affraid that a repost would undo the ASCII-code,
and the same would happen with quotes... <img>
"evolver";p="7098" wrote:
How about ASCII?

It seems to work with BBCODE, QUOTES-BOX, and CODE-BOX !!!!
The only way to show you the original ASCII I'm using on the next test,
is in a PHP-BOX.

fred.flintstone@bedrock.com

Result:
<a>fred.flintstone@bedrock.com</a>

fred.flintstone@bedrock.com

fred.flintstone@bedrock.com

Statistics: Posted Author: evolver — Wed May 24, 2006 1:50 am


]]>
2006-05-24T01:38:56-07:00 2006-05-24T01:38:56-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=7098#p7098 <![CDATA[Re: Please remove email addresses in posts]]>
It seems to work with BBCODE, QUOTES-BOX, and CODE-BOX !!!!
The only way to show you the original ASCII I'm using on the next test,
is in a PHP-BOX.

fred.flintstone@bedrock.com

Result:
<a>fred.flintstone@bedrock.com</a>


fred.flintstone@bedrock.com

fred.flintstone@bedrock.com

Statistics: Posted Author: evolver — Wed May 24, 2006 1:38 am


]]>
2006-05-24T00:22:26-07:00 2006-05-24T00:22:26-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=7092#p7092 <![CDATA[Please remove email addresses in posts]]>
'Except systematically using the kismod message system instead of emails... ' Unfortunately most of the emails are from off site coders who are not IntegraMOD members.

A

Statistics: Posted Author: Adrian Rea — Wed May 24, 2006 12:22 am


]]>
2006-05-24T00:05:43-07:00 2006-05-24T00:05:43-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=7091#p7091 <![CDATA[Please remove email addresses in posts]]>
The most efficient would be to put images instead of the letters, but this is obviously not possible in mod descriptions, when an author's email address is included...

The most extreme solution would be to hide all messages to non-registered users, but this might be a little too aggressive, perhaps.

I'm not sure there is a real solution against that. Except systematically using the kismod message system instead of emails...

sanji

Statistics: Posted Author: sanji — Wed May 24, 2006 12:05 am


]]>
2006-05-23T23:55:42-07:00 2006-05-23T23:55:42-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=7090#p7090 <![CDATA[Re: Please remove email addresses in posts]]>
################################################################ MOD Title]http://www.truthsolo.net/#[/url]# MOD Description: To help fight spam, modifies all public e-mail addresses to display in the format: user AT domain DOT tld## MOD Version: 1.0.1#### Installation Level: Easy## Installation Time: 5 Minutes## Files To Edit: groupcp.php, memberlist.php, privmsg.php, viewtopic.php, includes/usercp_viewprofile.php## Included Files: N/A################################################################ For Security Purposes, Please Check: [url=http://www.phpbb.com/mods/]http://www.phpbb.com/mods/[/url] for the## latest version of this MOD. Downloading this MOD from other sites could cause malicious code## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered## in our MOD-Database, located at: [url=http://www.phpbb.com/mods/#]http://www.phpbb.com/mods/#[/url]############################################################### Author Notes:## Spam sucks.################################################################ MOD History:####   2004-03-24 - Version 1.0.0##      - Initial release. @_@##      - Beta tested.  Passed.####   2004-06-29 - Version 1.0.1##      - Made 'AT' and 'DOT' localizable.##      - Added language file to edit.################################################################## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD##############################################################  ##-----[ OPEN ]-----------------------------------------------------------------#  groupcp.php  ##-----[ FIND ]-----------------------------------------------------------------# Somewhere near line 57...  $email_uri = ( $board_config['board_email_form'] ) ? append_sid("profile.$phpEx?mode=email&" . POST_USERS_URL .'=' . $row['user_id']) : 'mailto:' . $row['user_email'];  ##-----[ IN-LINE FIND ]---------------------------------------------------------#  $row['user_email']  ##-----[ IN-LINE REPLACE WITH ]-------------------------------------------------#  $email_nospam  ##-----[ BEFORE, ADD ]----------------------------------------------------------#  $email_nospam = str_replace( "@", $lang['e-mail_sbf_at'], $row['user_email']);$email_nospam = str_replace( ".", $lang['e-mail_sbf_dot'], $email_nospam);  ##-----[ OPEN ]-----------------------------------------------------------------#  memberlist.php  ##-----[ FIND ]-----------------------------------------------------------------# Somewhere near line 186...  $email_uri = ( $board_config['board_email_form'] ) ? append_sid("profile.$phpEx?mode=email&" . POST_USERS_URL .'=' . $user_id) : 'mailto:' . $row['user_email'];  ##-----[ IN-LINE FIND ]---------------------------------------------------------#  $row['user_email']  ##-----[ IN-LINE REPLACE WITH ]-------------------------------------------------#  $email_nospam  ##-----[ BEFORE, ADD ]----------------------------------------------------------#  $email_nospam = str_replace( "@", $lang['e-mail_sbf_at'], $row['user_email']);$email_nospam = str_replace( ".", $lang['e-mail_sbf_dot'], $email_nospam);  ##-----[ OPEN ]-----------------------------------------------------------------#  privmsg.php  ##-----[ FIND ]-----------------------------------------------------------------# Somewhere near line 502...  $email_uri = ( $board_config['board_email_form'] ) ? append_sid("profile.$phpEx?mode=email&" . POST_USERS_URL .'=' . $user_id_from) : 'mailto:' . $privmsg['user_email'];  ##-----[ IN-LINE FIND ]---------------------------------------------------------#  $privmsg['user_email']  ##-----[ IN-LINE REPLACE WITH ]-------------------------------------------------#  $email_nospam  ##-----[ BEFORE, ADD ]----------------------------------------------------------#  $email_nospam = str_replace( "@", $lang['e-mail_sbf_at'], $privmsg['user_email']);$email_nospam = str_replace( ".", $lang['e-mail_sbf_dot'], $email_nospam);  ##-----[ OPEN ]-----------------------------------------------------------------#  viewtopic.php  ##-----[ FIND ]-----------------------------------------------------------------# Somewhere near line 929...  $email_uri = ( $board_config['board_email_form'] ) ? append_sid("profile.$phpEx?mode=email&" . POST_USERS_URL .'=' . $poster_id) : 'mailto:' . $postrow[$i]['user_email'];  ##-----[ IN-LINE FIND ]---------------------------------------------------------#  $postrow[$i]['user_email']  ##-----[ IN-LINE REPLACE WITH ]-------------------------------------------------#  $email_nospam  ##-----[ BEFORE, ADD ]----------------------------------------------------------#  $email_nospam = str_replace( "@", $lang['e-mail_sbf_at'], $postrow[$i]['user_email']);$email_nospam = str_replace( ".", $lang['e-mail_sbf_dot'], $email_nospam);  ##-----[ OPEN ]-----------------------------------------------------------------#  includes/usercp_viewprofile.php  ##-----[ FIND ]-----------------------------------------------------------------# Somewhere near line 125...  $email_uri = ( $board_config['board_email_form'] ) ? append_sid("profile.$phpEx?mode=email&" . POST_USERS_URL .'=' . $profiledata['user_id']) : 'mailto:' . $profiledata['user_email'];  ##-----[ IN-LINE FIND ]---------------------------------------------------------#  $profiledata['user_email']  ##-----[ IN-LINE REPLACE WITH ]-------------------------------------------------#  $email_nospam  ##-----[ BEFORE, ADD ]----------------------------------------------------------#  $email_nospam = str_replace( "@", $lang['e-mail_sbf_at'], $profiledata['user_email']);$email_nospam = str_replace( ".", $lang['e-mail_sbf_dot'], $email_nospam);  ##-----[ OPEN ]-----------------------------------------------------------------#  language/lang_english/lang_main.php  ##-----[ FIND ]-----------------------------------------------------------------# At end of file by default...  // That's all, Folks!  ##-----[ BEFORE, ADD ]----------------------------------------------------------#  // E-Mail Spambot Fighter//$lang['e-mail_sbf_at'] = ' AT ';$lang['e-mail_sbf_dot'] = ' DOT ';   //  ##-----[ SAVE/CLOSE ALL FILES ]-------------------------------------------------## EoM

Statistics: Posted Author: obiku — Tue May 23, 2006 11:55 pm


]]>
2006-04-28T08:29:59-07:00 2006-04-28T08:29:59-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=3438#p3438 <![CDATA[Re: Please remove email addresses in posts]]> Censor Block MOD...

http://www.phpbbsmith.com/mb/about233.html

[font=Courier New:26ouhtb1]Normally the word censors replace naughty words with other text - often just an asterisk. Two of the main problems with this approach are that the text has to be replaced on each and every view and that the naughty words are still there, even if they are obscured. If your moderation policies call for removing posts that have such words, you'll also have to spend some extra time doing that.

Censor Block solves these problems by preventing the words on your censor list from ever entering your forum's database. When someone tries to make a post, Censor Block will scan the post, reject the post if it triggers a word censor, and ask the poster to edit and resubmit. Censor Block also checks poll questions and options, private messages, and some text based profile fields like location and signature.[/font:26ouhtb1]

...might help

Statistics: Posted Author: evolver — Fri Apr 28, 2006 8:29 am


]]>
2006-04-16T04:54:46-07:00 2006-04-16T04:54:46-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=1850#p1850 <![CDATA[Please remove email addresses in posts]]> really nice is to create a MOD that uses dynamic image taggingà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒ ¢Ã¢â€š ¬

Statistics: Posted Author: IW4 — Sun Apr 16, 2006 4:54 am


]]>
2006-04-16T04:15:07-07:00 2006-04-16T04:15:07-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=1844#p1844 <![CDATA[Re: Please remove email addresses in posts]]> Statistics: Posted Author: found it — Sun Apr 16, 2006 4:15 am


]]>
2006-04-16T02:33:22-07:00 2006-04-16T02:33:22-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=1838#p1838 <![CDATA[Please remove email addresses in posts]]>
Anyways yes simply changing the code view would not do as like you say they are becomming better at their job.

What would be nice is if all they managed to get was a note informing them that spamming is actually illegal <img>

Would it not be possible to have email addresses changed into images as per the visual code you get on registering?

Statistics: Posted Author: Simon N — Sun Apr 16, 2006 2:33 am


]]>
2006-04-16T02:26:02-07:00 2006-04-16T02:26:02-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=1837#p1837 <![CDATA[Please remove email addresses in posts]]>
A

Statistics: Posted Author: Adrian Rea — Sun Apr 16, 2006 2:26 am


]]>
2006-04-16T02:18:56-07:00 2006-04-16T02:18:56-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=1836#p1836 <![CDATA[Re: Please remove email addresses in posts]]> Statistics: Posted Author: evolver — Sun Apr 16, 2006 2:18 am


]]>
2006-04-16T01:54:42-07:00 2006-04-16T01:54:42-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=1835#p1835 <![CDATA[Please remove email addresses in posts]]>

Thanks

A

Statistics: Posted Author: Adrian Rea — Sun Apr 16, 2006 1:54 am


]]>
2006-04-16T01:09:52-07:00 2006-04-16T01:09:52-07:00 http://www.integramod.com/forum/viewtopic.php?t=232&p=1831#p1831 <![CDATA[Re: Please remove email addresses in posts]]> Statistics: Posted Author: Helter — Sun Apr 16, 2006 1:09 am


]]>