Community Forums
Connect with us on LinkedIn
Community Notice
+ Reply to Thread
Page 3 of 6 FirstFirst 1 2 3 4 5 ... LastLast
Results 31 to 45 of 80
  1. #31
    Member
    Join Date
    Oct 2006
    Posts
    168

    Default

    Anyone else seeing this issue?

  2. #32
    Member
    Join Date
    Jun 2004
    Posts
    111

    Default

    Well I am having this issue too, and I have to say, it is annoying me and my clients - I have tried various options, I have rDNS, SPF and have recompiled PHP etc... the server says that the email has sent (checking the log confirms this), but it never ever shows up at a hotmail or yahoo mailbox - Junk folder or not...

    Anyone any ideas?

  3. #33
    cPanel Partner NOC cPanel Partner NOC Badge
    Join Date
    Dec 2004
    Posts
    392

    Smile

    hi

    Try do this on your server.

    Code:
    dig -t MX hotmail.com
    That should return a nice list of MX records.

    Then try telnet wth port 25 onto each one of them.

    On one of my boxes it just sits there and eventually times out. Which makes me think hotmail is just DROPPING the traffic from my box becuase it thinks I'm a spammer.

    On another box it does through, but always lands up in JUNK mailbox.

    Im dont have SPF setup, so I will try that and see what that does.

    cheers
    Andy
    UK Managed Hosting
    UK Linux Support
    The information given above is intended to be advice only.

  4. #34
    Member
    Join Date
    Jun 2004
    Posts
    111

    Default

    how do you telnet port 25?
    i typed telnet
    then open
    then mx1.hotmail.com
    it just sits there....

    Code:
    root@host [~]# dig -t MX hotmail.com
    
    ; <<>> DiG 9.2.4 <<>> -t MX hotmail.com
    ;; global options:  printcmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 15885
    ;; flags: qr rd ra; QUERY: 1, ANSWER: 4, AUTHORITY: 0, ADDITIONAL: 0
    
    ;; QUESTION SECTION:
    ;hotmail.com.                   IN      MX
    
    ;; ANSWER SECTION:
    hotmail.com.            373     IN      MX      5 mx2.hotmail.com.
    hotmail.com.            373     IN      MX      5 mx3.hotmail.com.
    hotmail.com.            373     IN      MX      5 mx4.hotmail.com.
    hotmail.com.            373     IN      MX      5 mx1.hotmail.com.
    
    ;; Query time: 188 msec
    ;; SERVER: 209.59.139.5#53(209.59.139.5)
    ;; WHEN: Mon Nov 20 17:19:42 2006
    ;; MSG SIZE  rcvd: 109
    Last edited by deanstev; 11-20-2006 at 12:25 PM.

  5. #35
    Member
    Join Date
    Oct 2006
    Posts
    168

    Default

    This is becoming a real pain. Just did more testing and only Gmail can see our emails. Both Yahoo and Hotmail accounts never even see our emails! When I use the SMTP from our ISP, everything works. Anyone have a fix?

    We are trying to forward some email accounts to yahoo. Yahoo never receives those forwards.

  6. #36
    Member
    Join Date
    Jun 2004
    Posts
    48

    Default

    I think cpanel is a real junk
    http://www.yawsh.com

  7. #37
    Member sneader's Avatar
    Join Date
    Aug 2003
    Location
    La Crosse, WI
    Posts
    894
    cPanel/Enkompass Access Level

    Root Administrator

    Default

    Quote Originally Posted by deanstev View Post
    how do you telnet port 25?
    i typed telnet
    then open
    then mx1.hotmail.com
    it just sits there....
    From a command prompt, type:

    telnet mx1.hotmail.com 25

    That's it!

    If you want to go further and actually deliver a message by command line, try this:

    telnet mx1.hotmail.com 25

    It should give you some type of greeting. Then type:

    helo www4.yourdomain.com (or whatever the hostname of your server is)

    It should say "OK" or something. Then type:

    mail from:<me@mydomain.com> (obviously put YOUR e-mail addr in there)

    It should say "sender OK" or similar. Then type:

    rcpt to:<them@hotmail.com> (obviously put their hotmail address there)

    It should say "recipient OK" or similar. Then type:

    data

    It should say to type your message and end with a line with a period by itself. So...

    type some message here then press enter
    . (notice this is a period on a line all by itself) and press enter

    You should get a message ID and a confirmation that the message was accepted.


    The real SMTP pros will jump in here and probably embellish this simple tutorial, but I have used this exact same syntax hundreds of times to help test mail servers, etc. and it works fine.

    - Scott

  8. #38
    Member
    Join Date
    Jan 2006
    Posts
    5

    Default

    I had the same problem sending emails from webmail to hotmail accounts. Outlook has always sent emails to hotmail fine using IMAP.

    I spent most of the early hours this morning trying to sort the webmail problem and i gave up in the end.

    earlier i was in my php.ini file and i saw that extension=php_curl.dll was not commented out which was causing error_log entries.

    I commented it out and restarted apache in WHM and now webmail sends emails to hotmail just as well as outlook does.

    The above probably had no reference to the hotmail problem but some how mine works now so im a little confused to what i actually did.


    Dan

  9. #39
    Member
    Join Date
    Oct 2006
    Posts
    168

    Default

    Quote Originally Posted by dansonamission View Post
    I had the same problem sending emails from webmail to hotmail accounts. Outlook has always sent emails to hotmail fine using IMAP.

    I spent most of the early hours this morning trying to sort the webmail problem and i gave up in the end.

    earlier i was in my php.ini file and i saw that extension=php_curl.dll was not commented out which was causing error_log entries.

    I commented it out and restarted apache in WHM and now webmail sends emails to hotmail just as well as outlook does.

    The above probably had no reference to the hotmail problem but some how mine works now so im a little confused to what i actually did.


    Dan
    Are you using yoru ISP's SMTP or your domain's SMTP when using Outlook to send emails? Reason I am asking is that if I use my ISP's SMTP, hotmail emails work fine. When I use SMTP from my web host, it gets auto junked in hotmail.

  10. #40
    Member
    Join Date
    Jan 2006
    Posts
    5

    Default

    im using port 26 on my SMTP server as my ISP blocks port 25 unless i use their smtp server.

    But ive just tried sending an email to hotmail and it is yet to come through!!

    Dan

  11. #41
    Member
    Join Date
    Oct 2006
    Posts
    168

    Default

    Quote Originally Posted by dansonamission View Post
    im using port 26 on my SMTP server as my ISP blocks port 25 unless i use their smtp server.

    But ive just tried sending an email to hotmail and it is yet to come through!!

    Dan
    By default, hotmail deletes all spam that gets delivered into the SPAM folder. Turn off auto deletion and see if emails come through. I am getting these but they end up in the spam folder. For the majority of hotmail users who never bother to unset auto deletion of spam, our emails are as good as lost.

    Anyone have a fix for this?

  12. #42
    Member
    Join Date
    Mar 2004
    Posts
    710

    Default

    Actually exactly the reverse it true. It keeps all junk mail for several days unless you specifically check the delete when junk box.

    Just create a new hotmail account and you can see. The hew and cry of people would be ridiculous if that was the default.
    Lloyd F Tennison

  13. #43
    Member
    Join Date
    Mar 2004
    Posts
    710

    Default

    Have you signed up for the various monitoring service that Hotmail/MSN has so you can see exactly what they do and why with your emails? It's free and will answer almost all questions and problems. Just goto their postmaster desk and signup.

    http://postmaster.msn.com

    Popular topics:

    1. My e-mail is being blocked by MSN Hotmail/Windows Live Mail or is being sent directly to the junk e-mail folder
    2. My e-mail is showing up as “unknown sender” in the MSN Hotmail/Windows Live Mail interface
    3. I want to sign up for your junk e-mail reporting program (feedback data)
    4. I would like to learn more about your allow list/safe list options
    5. I am having problems with my MSN Hotmail or Windows Live Mail account
    6. What kind of junk e-mail filter does MSN Hotmail/Windows Live Mail use?
    The junk mail reporting and their Smart Network Data Services solves most problems, Smart Network Data Services shows you a graph of your email, by day, and what is spam etc.
    Lloyd F Tennison

  14. #44
    Member
    Join Date
    Jan 2004
    Posts
    29

    Default

    Not sure if anyone has had any success but I have the exact same problem with sending mail from my server to hotmail accounts. Whether you directly email a hotmail account from any account on my server, or using a php script (ie. contact us) that has a hotmail account, NO EMAIL IS GOING THROUGH.

    My exim mainlog shows the email going through fine but when checking hotmail it never comes in.

    Anyone find a fix yet?
    Last edited by DrZEUS; 12-11-2006 at 02:41 AM.

  15. #45
    Member
    Join Date
    Oct 2006
    Posts
    38

    Default

    Quote Originally Posted by DrZEUS View Post
    Not sure if anyone has had any success but I have the exact same problem with sending mail from my server to hotmail accounts. Whether you directly email a hotmail account from any account on my server, or using a php script (ie. contact us) that has a hotmail account, NO EMAIL IS GOING THROUGH.

    My exim mainlog shows the email going through fine but when checking hotmail it never comes in.

    Anyone find a fix yet?
    You won't find the answer here, I've been searching for 3 months on this forum as my frustration grows.
    No body really gives answers here, hey do that do this.
    I have been folowing this forum for a couple of months now, I think it lacks some clear tutorials.
    What I can tell you is that spf and ptr records did not help me, and they are set up corectly.
    I even called hotmail , I have told them that I have set up SPF records and they told me that they can see that after I have sent out a test e-mail to a specific e-mail address that they told me to send to so they can read the headers.
    The answer I got from them was " we just don't know why your e-mails are not resolving to the inbox, you have set up SPF records corectly but we don't know why our filters are stoping your e-mails and redirecting them in the junk folder"
    As for the PTR records they are also set up and pointing to my IP as I requested from my ISP.
    I also checked to see if I'm not black listed, and I'm not.

    As for answers regarding problems with sending mail to hotmail and yahoo you won't find answers here, just opinions, you might as well get a profesional and pay him a small fee so he can get the job done, I know that is what I'm going to do.
    This forum has some good answers, but when it comes to this issue it's not really a helping hand, this problem with sending out mails to yahoo or hotmail is old, and it's well known on this forum, and no one has provided real asnwers.

+ Reply to Thread
Page 3 of 6 FirstFirst 1 2 3 4 5 ... LastLast
Similar Threads & Tags
Similar threads

  1. cant send email to hotmail
    By narco1 in forum E-mail Discussions
    Replies: 4
    Last Post: 07-30-2008, 01:24 AM
  2. not send mail to Hotmail
    By uops in forum E-mail Discussions
    Replies: 6
    Last Post: 04-04-2008, 12:09 PM
  3. cant send email to hotmail
    By xserverx in forum E-mail Discussions
    Replies: 6
    Last Post: 01-18-2008, 05:22 PM
  4. can't send Email to hotmail
    By xserverx in forum E-mail Discussions
    Replies: 3
    Last Post: 12-26-2007, 03:19 PM
  5. we cant send mail to only hotmail
    By xcoder in forum E-mail Discussions
    Replies: 4
    Last Post: 08-24-2007, 02:14 PM
Linkedin       Facebook       Twitter       RSS       Flickr       YouTube