Mail SMTP port problems.

This is driving me nuts.
Send an email, it fails and Mail pops up a question on which SMTP server to use.  I choose "Edit SMTP Server List". 
Select "Advanced".  My port is already using "Use Custom Port" set to 25.  Yes, I know that is offered in the default, but it won't work.  I select the default and close.  Try to send the mail and it fails as before.  I then set it back to custom port 25 and it works.  ARRRGHH!!!!
I've deleted and reinstalled the SMTP server multiple times and I get a month or so of peace before this BS starts all over.
This all started when my ISP (Mountain Cable) got bought out by Shaw.  That may be a coincidence or the problem. 
Any ideas?
A solution to this will earn my eternal grattitude and reams of good kharma.

I wish it was just a matter of the right settings in the mail client. However, I was working with another NOC engineer and one of our IP admins for hours, testing every possible setting in Mac Mail, Entourage and Thunderbird. Using SSL, Password authentication, SPA off, port 537, it works on Outlook Express and Thunderbird for Windows. Using the exact same settings, no mail client works on the Mac. That's why we reached the point of creating a custom configuration file on a modem, packet sniffing at each point in the connection and monitoring the SMTP logs... to make sure there wasn't something on our network that was interfering with Mac's that would not affect Windows.
It's not just a matter of getting the mail client settings correct, otherwise the exact same settings that work for OE would work in Entourage, and the exact same settings that work for Thunderbird for Windows would work in Thunderbird for Mac.
Thunderbird for Mac was the most helpful in trying to track this down, because it said that the server did not accept the authentication request. However, the SMTP server shows that no attempt for authentication from a Mac even reached the server, and as far as we can tell, the attempt at password authentication on port 537 never even left the Mac and reached the router or modem, for any mail client used.

Similar Messages

  • E61 SMTP Port problem

    I have a E61 since a few days. Unfortunately I cannot configure the SMTP port. Here in the office the port is 2525, but obviously it is only possible to enter 3-digit-numbers in the profile.
    Is there a workaround? The confuguration tool is of no use as well...

    Hi,
    the only way is to use change the smtp port to 3 digits.I don't know but it can be possible to add a second port number without to remove the port with 3 digits.
    I hope it will be help.I have read in the discussion the same problem.Thats was the solution provided.
    Best regrds,
    Cengiz Kuskaya
    ckuskaya

  • Mail server port problem

    For some reason my mail server port has gotten set to 1102 instead of the proper 110. I have gone in several times to change it, have changed it to 110, gone out of settings, gone back in and confirmed the change was made. But whenever I access mail it says it can't connect to my account and when I look in settings again, the port is back to 1102. Is there some way to change this permanently?

    I originally transferred the settings over from my computer, but since then I was struggling with an outgoing mail issue which is now resolved, and the port for incoming mail somehow got changed. I did a sync today with my mail and the server port remained at 1102.

  • Mail SMTP access problems since 10.5.2 update

    Since the 10.5.2 update I get an intermittent problem when Mail cannot access my SMTP server (ISP is Be in the UK). I began by complaining to Be. They tell me the problem has only existed since the 10.5.2 update. Their reply to my complaint says: This problem is caused by the recent software update made by Mac and their official statement is as follows "Addresses an issue in which Mail might not send mail on some networks to some SMTP servers."
    Anyone got any ideas about this?

    Hi lynjon
    Join the club am affraid! I too am with Be and have the same issue. However standard email goes fine it is email with attachments that seems to be the real problem. There are a number of posts on here regarding the issue. I thought be were just passing the buck but it would appear that they are not.
    http://discussions.apple.com/thread.jspa?threadID=1223499&tstart=0
    http://discussions.apple.com/thread.jspa?threadID=1452009&tstart=0
    The general concensus seems to be try renaming the attachment you are sending. Hopefully it will be fixed shortly.
    Regards
    Fellow Being
    Message was edited by: Bruce245

  • Mail SMTP server problem

    My iCloud does not work in Mail in all my apple devices (mobile, Ipad, Mac etc.). It seems that my Apple Mail soft seems to disable my smtp server for outgoing mails (iCloud server, offline). However, I can still receive all incoming mails ...

    Have you unchecked the box marked Mail in the iCloud preference pane and then checked it again? If not, please do that now and test.
    I've tried what you said, but nothing changes.
    I've tried also to sign out completely from iCloud and then sign in. It should rebuild the credentials stored in the Mac, but nothing works.
    I post the screen that appears after it fails to send the message.
    But on the other hand it works on the iPhone!!! I've unchecked and checked the mail box in the settings and now it works properly!
    The problem still persist on the Mac. In other words this is not linked to the iCloud preferences, but on the Mac itself.

  • Specifying SMTP port with JavaMail

    Hi,
    I am trying to specify a non-default port for SMTP server when using JavaMail, but JavaMail seems to ignore my settings for the specific port. Regardless of my port setting, it seems to always use port 25 to connect to the SMTP server.
    I am using JavaMail 1.4ea and I specify the SMTP port as following:
    props.put("mail.transport.protocol", "smtp");
    props.put("mail.smtp.host", mailhost);
    props.put("mail.smtp.port", smtpPort);
    Regardless of what the smtpPort is above, JavaMail always connects to port 25 as shown in the debug output below:
    DEBUG: setDebug: JavaMail version 1.4ea
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth false
    DEBUG SMTP: trying to connect to host "test.server.com", port 25, isSSL false
    Has anyone seen this behavior ? Is there a different way to specify an alternative port for the SMTP server ?
    Thanks.

    Thanks for your suggestion. You were right on the mark.
    The problem with my code was that smtpPort was int, and autoboxing made it Integer and added to the props without any compile time problems. But props.getProperty("mail.smtp.port") returns null unless the value is String. That caused JavaMail to use the default port.
    props.setProperty(String key, String value) would have been a safer
    way to set this.
    Thanks again.

  • How to specify an SMTP port rather than 25 in JavaMail?

    This is my segment of code, but I don't know where I can specify the SMTP port. Please help me.
    Properties props = System.getProperties();
    props.put("mail.smtp.host", "smtp.mail.yahoo.com");
    Session session = Session.getDefaultInstance(props,
        new MyAuthenticator("dxxvi", "nopassword"));
    MimeMessage message = new MimeMessage(session);
    message.setFrom(new InternetAddress("[email protected]",
                                        "Thai Dang Vu"));
    message.addRecipient(Message.RecipientType.TO,
        new InternetAddress("[email protected]"));
    message.setSubject("I test the Yahoo! Mail Plus service");
    message.setSentDate(new Date());
    Multipart multipart = new MimeMultipart();
    BodyPart bodyPart = new MimeBodyPart();
    bodyPart.setText("If you can read this, $19.99/year is worthy");
    multipart.addBodyPart(bodyPart);
    bodyPart = new MimeBodyPart();
    bodyPart.setDataHandler(
        new DataHandler(new FileDataSource("Resume.doc")));
    bodyPart.setFileName("Resume.doc");
    multipart.addBodyPart(bodyPart);
    message.setContent(multipart);
    Transport.send(message);

    props.put("mail.smtp.port", "42");

  • SMTP offline when adding Yahoo IMAP settings in Mail. Ports are correct as is password. Suggestions as to the problem?

    SMTP "offline" indicated under Mail/Preferences/Accounts for Yahoo IMAP, when adding Yahoo IMAP settings in Mail. Ports are correct as is password. Suggestions as to the problem? Latest OS with patches...
    I can log into Yahoo via URL, so Mail should work as well.

    foursmson wrote:
    SMTP "offline" indicated under Mail/Preferences/Accounts for Yahoo IMAP, when adding Yahoo IMAP settings in Mail. Ports are correct as is password. Suggestions as to the problem? Latest OS with patches...
    Run Connection Doctor, what does it say?
    I can log into Yahoo via URL, so Mail should work as well.
    Nope, no correlation between them (other than password)

  • Mail SMTP rogers authentication problem or bug?

    I'm setting up multiple email accounts in Mail.
    Internet provider is with Rogers
    Rogers blocks SMTP ports so the only SMTP I can use with all my mail accounts is smtp.broadband.rogers.com
    Having a problem with Mail where one of the accounts is using the "Email Address" field (under Mail Prefs, Accounts, Account Information, field under "Description") for SMTP authentication and not the actual "User Name" field (under Outgoing Mail Server, edit server list, advanced, Authentication: Password)
    So when I try to send an email with this non rogers account, I get the error:
    *The sender address [email protected] was rejected by the server smtp.broadband.rogers.com.*
    *Select a different outgoing mail server from the list below or click Try Later to leave the message in your Outbox until it can be delivered.*
    If I go to [email protected]'s settings and remove [email protected] from the email address field under "Account Information", the message can send fine... Problem being, it uses another of my email address as the sender so if people reply, they reply to the wrong address.
    Seems that Apple mail's tying to use the email address for for SMTP authentication, instead of the username field.
    Any ideas on how to fix this? All help appreciated and thank you in advance.
    Cheers.

    Hello,
    From other reports, I believe Rogers blocks sending from other addresses, unless you register each such address with them in advance. See:
    http://discussions.apple.com/thread.jspa?messageID=7140992&#7140992
    Ernie

  • Problem sending emails on SMTP Port 25 with Z10

    Hi Blackberry,
    Its very disappointing that new Z10 cannot configure my business email. I can receive the email but cannot reply or send emails. There is a serious issues with the SMTP Ports with this device. Blackberry should resolve this issue earliest or die hard fans of blackberry like me shall be done with it. Z10 does not configure on SMTP Port 25. Please resolve this issue asap.

    Port 25 is blocked on most ISPs now. you need a SSL type of connection to make it work everywhere.
    this is not a BlackBerry problem really, the world of email has changed and port 25 should never be used by any mobile client
    what mail server is this using? maybe you can configure a new port or even use IMAP or EAS which is much better for mobile use
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • I have exchange mail (smtp) - my server client  x400, i have a problem

    Hi.
    I have exchange mail (smtp) and my client server mail x400 and my client not send the mail when he has executed the form.
    I do not see the problem �somebody see it?.
    please, tell me something.
    My Inglis is very bad, sorry, I�m Spanish.
    Thanks.

    it's quit strange. I have the same problem, but i got a little bit higher,
    first check your email ip server, (make ping in ms-dos)you can get your server name in outlook's properties. If it's OK check your port, your problem sounds like a comunication problem, but i need to know your email protocol, and your code, moreover, if you are using a proxy.
    P.D.: Espero que esto te ayude,estas usando MS exchange?.
    C.U.

  • Mail SMTP-server changing the port by itself!

    Hi!
    My mail app keeps changing the smtp port from 25 to 547! I dont know how i can fix this..! It happens even though i havent put my macbook pro to sleep, over intervals of a couple of hours. Ive assigned mail to use a custom port 25 because for some reason it doesnt use port 25 when assigned to "Use default ports"..
    Any ideas of how to fix? Couldnt find any case like it on the interwebs.. :/
    -Tormod

    Hi!
    I have my own domain, so port 25 works for that mailaccount, none of the others..

  • Port Problem, cant Recieve Mail

    Hi
    Just recently my mail has stopted working due to a port problem. By my inbox i get a small icon which is a triangle with an explanation mark in. When i click it the first message i get is:
    *Connection Failed*
    +There may be a problem with the mail server or network. Check the settings for account "POP Account" or try again.+
    +The server error encountered was: The connection to host mail.kahane.co.uk on port 110 failed.+
    Then it willl give me a chice to go offline or online, ill click online and the icon is still there so i click the icon again and the second message i get is:
    Alert
    +There may be a problem with the mail server or network. Check the settings for account "POP Account" or try again.+
    +The server error encountered was: The connection to host mail.kahane.co.uk on port 110 failed.+
    I haven't changed any settings in the preferances or done anything which may have caused this. Incase you need to know i am on a POP account.
    I would much appreciate any help, thanks

    Me too... it comes and goes. It all started when I got a wireless router.

  • How to view and change SMTP port number in new account setup in "Mail" 10.6

    When I try to set up and test a new email account addressing an SMTP server that seems to e using a nn-standard port number, how on earth can I even look at the port number assigned by default to a new account in Apple Mail 10.6 setup ?
    I might have to trial and error different port numbers but when Mail tries to test the connection to the SMTP server after I enter its address, it just spins and hangs up. I suspect the reason is a wrong port number. How do I change that outgoing port number in Apple Mail ??
    There seems to be no obvious way the program will let U do it or even let you view the port it assigns in apparent error.

    there is no way to change the smtp port during the original account creation. you can usually wait Mail out if it's spinning its wheels at this point. I've had to wait about 15-20 minutes a few times. eventually Mail lets you through even if it fails to connect to the smtp server. then, once the account is created you can edit the smtp server and try a few different ports and settings. that's done in system preferences->accounts. click on teh smtp server at the bottom and select 'edit smtp server list". then in the popup click "advanced".

  • SMTP connection problems in mail with 10.4.7

    I have been using Mail with no problems until updating to 10.4.7.
    I am with BT Broadband for Business, using their SMTP server. I have checked that the update did not tick the SOCKS option in network preferences, but this remains unticked so is not the problem.
    I know for sure that the SMTP settings are correct, and working, as my wife is able to send mail from Outlook on her PC using the same account with no problems.
    I had this problem a couple of days ago, and fixed it by installing the latest combo update of 10.4.7. I tried this again as the problem re-occurred out of the blue, but this time applying the update is not fixing the problem.
    This only applies to outgoing mail, incoming mail still arrives.
    Can anyone help?
    Thanks
    Bob
    PowerMac G5 2.0Ghz Dual Processor, 4Gb RAM Mac OS X (10.4.7)

    I have been using Mail with no problems until updating to 10.4.7.
    I am with BT Broadband for Business, using their SMTP server. I have checked that the update did not tick the SOCKS option in network preferences, but this remains unticked so is not the problem.
    I know for sure that the SMTP settings are correct, and working, as my wife is able to send mail from Outlook on her PC using the same account with no problems.
    I had this problem a couple of days ago, and fixed it by installing the latest combo update of 10.4.7. I tried this again as the problem re-occurred out of the blue, but this time applying the update is not fixing the problem.
    This only applies to outgoing mail, incoming mail still arrives.
    Can anyone help?
    Thanks
    Bob
    PowerMac G5 2.0Ghz Dual Processor, 4Gb RAM Mac OS X (10.4.7)

Maybe you are looking for

  • Mac running slow

    Hi,My Mac is starting to run slow and geting more like my old windows pc, any ideas for me to try please. chappers

  • Black Screen Installing Windows 7 with Bootcamp

    I know it sounds like a known problem, but if tried alot of solutions i found on internet but noting worked yet. Here is some information: Mac Mini mid 2011 (2.7 GHz) I've installed windows before, but I have added a second SSD. al workes fine. Insta

  • Console output not coming with JEasyTest

    I am using JEasyTest plugin in eclipse...but when I run my unit tests, I cant see any printlns on my console..Is there any workaround to this??

  • Can you change the album order in Web Gallery?

    I can't seem to change the order of albums i publish to the web gallery. The gallery presents the albums in the order you upload it. Any suggestions besides uploading my oldest albums first?

  • FFT and sound formation

    Two questions. 1) Does java have any FFT algorithm? or anything close? if not, I'll just try to make one (emphesis on try). 2) If I have the frequency and amplitude of a wave, is there a way that java can convert my freqency and amplitude data into a