Questions tagged [spam]

DO NOT USE THIS TAG ON QUESTIONS THAT ARE SPAM, we have a special flag for that! Questions about bypassing somebody else's spam filter are also not welcome. And keep in mind that this is a programming Q&A site, not a general computer support site. Spam is the use/abuse of electronic messaging systems (e.g. e-mail) to send unsolicited bulk messages indiscriminately.

This tag would be appropriate for programming questions about spam classification, etc.

We do not control the email filters of Gmail, Hotmail, etc. If you want to learn how to bypass them, ask the people who maintain those filters instead (but be very much prepared for "are you serious?" replies, or, most likely, no reply at all).

Understand that spammers read this site and so divulging methods for bypassing somebody's spam filters is comparable to sabotage. Please do not post such solutions.

1049 questions
-2
votes
1 answer

PHP mail goes in spam and inbox

I am using simple PHP mail function to send mail. Here is my code: sendEmail('xyz@gmail.com', 'test subject', 'test body', 'xyz name', 'abc@gmail.com', 'HTML'); function sendEmail($to, $subject, $body, $fromName, $from, $format = '') { $headers…
Martin C
  • 395
  • 1
  • 7
  • 21
-2
votes
4 answers

PHP mail: All emails are received in the SPAM folder

I'm making a simple PHP mail sender to send an image to multiple addresses at a time. Don't know why, but the emails keep on arriving at the SPAM folder, no matter what email manager I send them... Here's how I call the PHP mail sender…
-2
votes
2 answers

Regex to identify emails with only 4 characters after @ and before .tld

We are getting a lot of spam in the form femlmcte@tnbt.com. I can see cPanel Spam assassin allows a regex match to be used to filter mail. I want to write a regex expression that identifies mail in the form anylengthofstrring@abcd.com …
-2
votes
1 answer

Is Captcha useless using a "Facebook Sign in" registering process?

Does the Facebook Sign In process prevent some potential spamming bots ? Should I put a captcha before allowing a Facebook Sign In process?
younes0
  • 2,288
  • 1
  • 25
  • 34
-3
votes
1 answer

Suspicious JavaScript attached to a spam email

Possible Duplicate: javascript in spam email; what's it trying to do? I've seen similar questions on here, but nothing quite like this or inquiring about this snip of code. Take a look at the javascript here and let me know what you think it's…
kburns
  • 782
  • 2
  • 8
  • 22
-3
votes
1 answer

regex / heuristic to detect repetitive words e.g. "gfgfgfgf" "dadadada" "sdsdsd"

How can we search for repetitive patterns in word(s) using regex in order to detect "junk" or dummy words such as "gfgfgfgfg" and similar, but not limit creative words like "aweeesssoome", "omggg" etc. Examples: In the case of "gfgfgfgfg" regex…
dev101
  • 1,359
  • 2
  • 18
  • 32
-3
votes
1 answer

What If the SPF Record Doesn't Exists?

I would like to know whether the mail receiving server will reject the mail if it requests a SPF record check but no SPF record exists in the DNS server?
rardark
  • 41
  • 5
-3
votes
1 answer

Email received in spam gmail

My mail is passed with SPF,DKIM,DMARC and RDNS.I checked blacklist using mxtoolbox, it is not blacklisted but still my mails are going spam in gmail,outlook.Please give any suggestion.
-3
votes
1 answer

Add unix user to postfix maillogs

I am using CentOS 6, and postfix mail server, from postfix mail log, I want to see which Linux user has sent specific email, is it possible? How can this be done? I need this to prevent spam from our mailservers, by one of our users. I need to…
pain.reign
  • 371
  • 2
  • 4
  • 17
-3
votes
1 answer

Joomla contact mail goes to spam folder

currently am using joomla 1.5.22 and recently this problem is accuring if an client sends an mail via contact then it goes straight to spam folder. Can anyone help me change the mail.php or send me the file so the problem dissapears. Thanks.
Shi-Van
  • 1
  • 1
-3
votes
1 answer

getting lots of spam from "unknown" and helo localhost

On our server, we keep receiving spam with the following headers. We are using whm 11.44 and exim. Return path is always: Return-path: <> and it says Received: from unknown (HELO localhost) Both which raise flags. We're just not sure exactly how to…
-3
votes
1 answer

Exim Identifying Spam Script Location

My unix server is sending lots of spam mail. I am investigating the issue but could not find the script location. Here is one of the spam mail header. There is no information about script location. 1XG440-0003wz-8i-H mail 8…
umki
  • 769
  • 13
  • 31
-3
votes
1 answer

How to send email using MIME::Lite in perl so that the mail does not end up in Spam folder

I am using MIME::Lite to send emails. I am not sending mails in bulk. I have the following code to send mail. my $msg = MIME::Lite->new( To => "$recipient_address", From => "$sender_displayname <$sender_email>", Subject =>…
Krishnachandra Sharma
  • 1,332
  • 2
  • 20
  • 42
-3
votes
2 answers

Why my email is going to spam folder

$result=mysql_query($sql); if($result) { // ---------------- SEND MAIL FORM ---------------- // send e-mail to ... $to=$email; // Your subject $subject="Your confirmation link here"; // From $header="from: Welcome to gvmgvhgvmhgm…
IT gIrLy GiRl
  • 337
  • 4
  • 7
  • 20
-3
votes
2 answers

How to fight spam on my signup form in php website?

I have a website which provides optional sign up. Recently, I have been getting too many sign-ups which seem to be spam. Though I implemented email verification, the accounts keep getting added, and moreover, are even activated as soon as they are…
Ankur Gupta
  • 707
  • 1
  • 9
  • 20
1 2 3
69
70