why are my mails being sent to junk folder?

3

1

I am using my own domain's email address : admin@mysite.com

i have a simple email sign up form, where emails entered are sent to admin@mysite.com using php's mail().

i discover it always goes into spam folder. any emails sent from mysite.com always ends up in Spam!

why is this ? this server is very new.

gwgweg

Posted 2010-01-05T22:23:35.253

Reputation:

In your local client? In web mail? Is SPAM added to subject? – gbn – 2010-01-05T22:25:48.557

serverfault or superuser - take your pick – JW. – 2010-01-05T22:26:04.813

Answers

2

See this question for a number of good answers.

Pekka

Posted 2010-01-05T22:23:35.253

Reputation: 2 239

1

When did this start? Are you using SpamAssassin?

There’s a bug in SpamAssassin that causes mail received in year 2010 to receive a much higher spam score.

https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6269

Running sa-update should fix the problem. Alternatively, you can locate the 72_active.cf rule file and change the line that says:

header FH_DATE_PAST_20XX Date =~ /20[1-9][0-9]/ [if-unset: 2006]

To read:

header FH_DATE_PAST_20XX Date =~ /20[2-9][0-9]/ [if-unset: 2006]

And then restart SpamAssassin.

Nate

Posted 2010-01-05T22:23:35.253

Reputation: 4 013

Is this just me, or are they perpetually re-inventing the Y2K bug? [files this as it will come in handy in 2020 again] – Piskvor left the building – 2011-10-11T13:25:12.413

0

Some things to check:

  1. Is your IP blacklisted?
  2. Are you hosting the email server yourself? Some anti-spam services will have issues with email originating from self hosted email providers.
  3. Ensure that your DNS records have all the correct MX records.
  4. Are you specifying all the email information from address etc?

user1474090

Posted 2010-01-05T22:23:35.253

Reputation: 101

0

Short answer, check if your IP is blacklisted. Lots of places to do this. www.mxtoolbox.com works for me. no relation or affiliation.

Longer answer, your mail client might not like the content of the test messages you're sending. Or it's seeing so many of them that it thinks it's getting spammed.

If you're not on a blacklist then set up a new email account somewhere else and try sending one message there from your server to see if that gets through.

Mark Moline

Posted 2010-01-05T22:23:35.253

Reputation: