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.

link|improve this question
In your local client? In web mail? Is SPAM added to subject? – gbn Jan 5 '10 at 22:25
serverfault or superuser - take your pick – JW. Jan 5 '10 at 22:26
feedback

migrated from stackoverflow.com Jan 5 '10 at 22:27

This question came from our site for professional and enthusiast programmers.

4 Answers

See this question for a number of good answers.

link|improve this answer
feedback

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.

link|improve this answer
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 Oct 11 '11 at 13:25
feedback

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.

link|improve this answer
feedback

Could be a lot of things. Words that you're using in the email. Your URL has been listed.

Solutions: Just make the email address a trusted address and it shouldn't be marked as spam.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown