SMTP and SPAM

ScathDeSolas

Verified User
Joined
Feb 10, 2011
Messages
52
So two issues. I have sending of mail working in Thunderbird, only issue is I had to modify mail to be DOMAIN.COM instead of MAIL.DOMAIN.COM and outbound mail works as SMTP.DOMAIN.COM and DOMAIN.COM, weird... but I had to make it STARTTLS instead of NONE for it to work... Plus it requires a certificate to send mail.. WTF! How do I get rid of this certificate bull and just use IMAP or POP?! It auto-configures to IMAP Incoming and SMTP for Outgoing, REALLY ANNOYING.

SPAM ISSUES:
All of my e-mails I send EVEN on the same domain goes straight to Thunderbirds and LOCAL SquirrelMail's Junk/Spam Folder... WHY!? This means clients will miss my e-mails.


OTHER ISSUE:
In the exim mainlog file this is in it after sending e-mails. My nameservers for my site is NS1.CRYOFUZE.COM/NS2 So... why is it set to the servers nameserver? (XX's are just to hide my IP)
Code:
2011-04-16 21:31:01 1QBHlN-00006X-6U <= [email protected] U=cryo P=local S=668 T="Cron <cryo@server> /home/cryo/" from <[email protected]> for cryo
2011-04-16 21:31:01 1QBHlN-00006X-6U => cryo <[email protected]> F=<[email protected]> R=localuser T=local_delivery S=801
2011-04-16 21:31:01 1QBHlN-00006X-6U Completed
2011-04-16 21:31:11 exim 4.73 daemon started: pid=453, -q15m, listening for SMTP on port 25 (IPv6 and IPv4) port 587 (IPv6 and IPv4) port 26 (IPv6 and IPv4)
2011-04-16 21:31:29 TLS error on connection from 64-121-16-228.c3-0.tlg-ubr1.atw-tlg.pa.cable.rcn.com ([192.168.0.103]) [64.121.16.228] (SSL_accept): error:14094415:SSL routines:SSL3_READ_BYTES:sslv3 alert certificate expired
2011-04-16 21:31:29 TLS client disconnected cleanly (rejected our certificate?)
2011-04-16 21:31:41 1QBHm1-00009a-7q <= [email protected] H=XX-XXX-XX-XXX.c3-0.tlg-ubr1.atw-tlg.pa.cable.rcn.com ([XXX.XXX.XX.XXX]) [XX.XXX.XX.XXX] P=esmtpsa X=TLSv1:AES256-SHA:256 A=plain:[email protected] S=695 [email protected] T="[email protected]" from <[email protected]> for [email protected]
2011-04-16 21:31:41 1QBHm1-00009a-7q => loki <[email protected]> F=<[email protected]> R=virtual_user T=virtual_localdelivery S=806
2011-04-16 21:31:41 1QBHm1-00009a-7q Completed
 
Last edited:
I see a few things, first your SSL certificate is expired, you might want to update it. Doing a scan of your dns, I found these issues:
Code:
Your MX records that were reported by your nameservers are:

10   smtp.cryofuze.com   69.195.141.20
10   mail.cryofuze.com   No A Record (no glue either) 

ERROR: No reverse DNS (PTR) entries. The problem MX records are:
20.141.195.69.in-addr.arpa -> no reverse (PTR) detected
You should contact your ISP and ask him to add a PTR record for your ips
You don't have an A record for mail.cryofuze.com which would explain why you couldn't use it to send mail, it must have got deleted, since I know DA always sets it by default.

To fix the straight to spam, get your reverse DNS configured correctly.

Also, the reason changing it to starttls worked, was that you changed the outgoing port. Most (if not all) ISP's today block sending email on port 25, to external mail servers. DA today also configures port 587 for sending emails, you might want to try that one.
 
Back
Top