+ Reply to Thread
Results 1 to 5 of 5
Thread: Email Problems
-
Members
- Join Date
- Nov 2005
- Posts
- 5
I operate 3 php programs on your servers that send a verification email to new members with a link that they have got to click to enable their account.
I understand from the Help Desk that "Due to increasing spamming issues, we have disabled the nobody out going mails from the servers. You need to use the SMTP server with a legitimate id as an sender to address the issue"
How can I do this? I am not a programmer!
-
Hello,
Maybe you have heard that "php mail injection - spam attack" through php mailler and we should be more careful about php mailler scripts and we are checking our servers randomly to prevent "spammers" to use php mail scripts for spam. They can easily add their "header - c.c. & b.c.c with targeted mail address"
Please add following codes into your php mail scripts to prevent them to use it for spam ;
It should be at top of page (php codes)
<?
$badStrings = array("Content-Type:",
"MIME-Version:",
"Content-Transfer-Encoding:",
"bcc:",
"cc:");
foreach($_POST as $k => $v){
foreach($badStrings as $v2){
if(strpos($v, $v2) !== false){
header("HTTP/1.0 403 Forbidden");
exit;
}
}
}
?>
-
Members
- Join Date
- Nov 2005
- Posts
- 5
Hi Samuel
What about encripted sites?
Is it ok to add this code above the encripted code?
Geoffb61
-
-
Members
- Join Date
- Nov 2005
- Posts
- 5
Do you mean just add it above the encripted code?
Will it work if the rest of the script is encoded?
Sorry, but I need this to be clearly understood!
Similar Threads
-
WordPress Email Notification not Working
By CrackDown in forum E-mailReplies: 2Last Post: 11-22-2005, 10:37 AM -
How do I disable default email address
By jukemann in forum E-mailReplies: 2Last Post: 09-12-2004, 10:22 PM -
Email setting & webmail
By Sam in forum FAQ'sReplies: 0Last Post: 08-22-2004, 07:01 PM -
Transfering host to AHosting
By Sam in forum General SupportReplies: 0Last Post: 06-14-2004, 07:43 PM -
How do I change my email password without using CP
By Sam in forum FAQ'sReplies: 0Last Post: 05-22-2004, 09:41 PM


LinkBack URL
About LinkBacks



Reply With Quote


