I'm receiving spam emails sent from my own domain to my own domain. I'm using Exchange 2013.
Example:
myemail@mydomain.com is being used to send spam to myemail@mydomain.com.
I can successfully replicate the issue by telneting to the server from any external IP.
telnet <external-ip-of-server> 25
helo anydomain.com
250 myserver.mydomain.com Hello [External-IP]
mail from:myemail@mydomain.com
250 2.1.0 Sender OK
rcpt to:myemail@mydomain.com
250 2.1.5 Recipient OK
data
354 Start mail input; end with <CRLF>.<CRLF>
some text here
.
250 2.6.0 <f64fd0bdf5c2460087b95c3ab343ef80@myserver.mydomain.com> [InternalId=20890720927751, Hostname=myserver.mydomain.com] Queued mail for delivery
I have a SPF-record setup like this: v=spf1 ip4:External.IP.of.MyServer -all
I also have SenderID enabled on the Exchange 2013-server like this:
[PS] C:\Windows\system32>get-senderidconfig | fl
RunspaceId : 9be45249-1186-42b4-9e4e-3bc5a56c0c63
SpoofedDomainAction : Reject
TempErrorAction : StampStatus
BypassedRecipients : {}
BypassedSenderDomains : {}
Name : SenderIdConfig
Enabled : True
ExternalMailEnabled : True
InternalMailEnabled : False
AdminDisplayName :
ExchangeVersion : 0.1 (8.0.535.0)
DistinguishedName : CN=SenderIdConfig,CN=Message Hygiene,CN=Transport Settings,CN=MyOrganization,CN=Microsoft Exchange,CN=S
ervices,CN=Configuration,DC=mydomain,DC=com
Identity : SenderIdConfig
Guid : e85c9acb-579e-4d92-bde7-03ac2dd9beac
ObjectCategory : mydomain.com/Configuration/Schema/ms-Exch-Message-Hygiene-Sender-ID-Config
ObjectClass : {top, msExchAgent, msExchMessageHygieneSenderIDConfig}
WhenChanged : 2015-12-08 10:23:24
WhenCreated : 2014-02-15 13:37:30
WhenChangedUTC : 2015-12-08 09:23:24
WhenCreatedUTC : 2014-02-15 12:37:30
OrganizationId :
Id : SenderIdConfig
OriginatingServer : mydc.mydomain.com
IsValid : True
ObjectState : Unchanged
How can I prevent this type of spam without using any External Anti-Spam services?