2.2 upgrade poots a SMTP connection?

Prior to upgrade had an IMAP/SMTP account working great. Do upgrade, can't send SMTP mail.
This exact account worked fine with the same config, on same Wifi connection, just before the upgrade.
IMAP retrieval works fine.
Can test IMAP/SMTP on same account via a PC (outlook) client and same 'old' settings seem to work fine. In fact I can create a brand new IMAP/SMTP account on a PC in 15 seconds and it works perfectly - all working on same Wifi network. Yet when I do exact same settings / network from iPhone, no joy.
I happen to be the admin for that server so I can look at the server logs and don't see the iPhone authenticating as a user to that server... there seems to be a long delay before I even see a trace of TCP/IP connection from it. I suspect it's sending some weird username/PW format that slightly changed with 2.2 but of course can't tell exactly.
Another POP/SMTP on the iPhone works exactly fine post upgrade - aka I can send/receive from that account no problem.
Stuff tried: server reboots / server config checks / previously mentioned pre-existing and brand-new outlook client setups / alternate DNS hostnames for same server / rebooting / deleting entire account and re-setting up on iphone / 'forgetting' the Wifi network on iPhone and starting over / etc. etc.
Anybody else getting problems with the new 2.2 and SMTP connections? Server is a Lotus IBM Domino (I know somebody will say "lotus suxz" but it has worked w/ lots of iphones for the last year, as well as Nokia/Blackberry/PC/etc/etc for many years.)

Well I found that the SAME SMTP settings, now WILL work fine over 3G. Which is weird as of course Wifi vs. 3G should theoretically be invisible to an IP application like email.
With WIFI it does matter where you are. At home, of course, you expect it to work the same as your computer, but traveling or in coffee shops its not uncommon to find blocked smtp ports, and your ISP generally will not allow sending mail from outside their own network.
So one possible failure scenario is that sending fails on WIFI because it tries your ISP, and they say NOWAY, so it goes to the next SMPT, which in many cases is your carrier's SMTP server (ATT's smtp server) and it says NOWAY since you didn't arrive via their network (didn't send via cellular network).
On 3G (or edge) this server of last resort (ATT smtp server) would succeed.
For Authenticated Connections (over ssl for example) this SHOULD work on WIFI.
But I don't think cwmx.com (ATTs smtp server) will accept authenticated connections from other than it's own network, and even if it did, it runs on port 25, which is often blocked by wifi hotspots, or blocked by your ISP, and even if it wasn't blocked, its un-connectible via WIFI. ("telnet cwmx.com 25" will always fail, even tho cwmx.com resolves).
So what has changed to cause 2.2 to fail where this always seemed to work on 2.1?
Don't know, but maybe in the process of finding an smtp server, the TCP stack does not try other network connections (routes). If connecting via wifi fails, perhaps it never tries those same destinations via Edge/3G for example.
This is not atypical of TCP stacks. If they get a positive TCP/IP connectivity, (even one that results in an emphatic denial of service) its unusual for them to try that SAME connection via different network interface.
ATT's SMTP server should support SSL, but it seems not to, or at least the settings iphone do not indicate anything other than port 25. Therefore the SMTP server of last resort is never available via wifi.
My recommendation: Get a gmail account, and configure it as an alternate SMTP server for ALL email accounts. It always works.

Similar Messages

  • Is there a way to control the number of concurrent SMTP connections on Database Mail?

    Las week Rackspace started controlling the number of concurrent SMTP connections and we are now getting the following message when we send as little as 15 messages at a time using Database Mail:
    Exception Message: Cannot send mails to mail server. (Service not available, closing transmission channel. The server response was: 4.7.0 smtp13.relay.dfw1a.emailsrvr.com Error: too many connections from IP xxx.xxx.xxx.xxx)
    We are using SQL Server 2005 and Windows 2003 and we have been doing this since 2006 with no problems
    Is there a way to control the number of concurrent SMTP connections used by Database Mail or the Database Mail external executable DatabaseMail90.exe?

    Hi rkohler,
    Usually, we can use the Database Mail Configuration Wizard or the Database Mail stored procedures to determine the server name and port number for the Simple Mail Transfer Protocol (SMTP) server . In the SMTP server points, we can set or increase the number
    of concurrent connections.
    There is similar issue about database email on SQL Server 2005, you can refer to the following post.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/6bb7b600-f025-451b-898b-2caa29c10d4d/only-some-email-gets-sent-successfully-from-spsenddbmail-database-mail-on-sql-server-2005
    Thanks,
    Sofiya Li
    If you have any feedback on our support, please click here.
    Sofiya Li
    TechNet Community Support

  • Tiger...smtp connection quit working, port 25.  Now iPad mail quit.  Help

    10 4 11 smtp port 25 quit working, cannot connect.   iPad mail also quit working.

    iPad...no msgs, just forever connecting....Verizon carrier.
    Macs....just says smtp connection failed.
    Just tried the web mail....no load, says secure connection failed.  However I can get into other emails, non apple, with no problem.

  • 421 Too many concurrent SMTP connections; please try again later.

    Hi,
    At first I send an email, it works fine. After i try again but this time, i get "421 Too many concurrent SMTP connections; please try again later". What do i have to do? Thanks
    create or replace PROCEDURE SEND_MAIL
    (name_in IN Varchar, surname_in IN Varchar, email_in IN Varchar)
    IS
    conn utl_smtp.connection;
    BEGIN
    conn := utl_smtp.open_connection ( 'mail.ppp.com', 25 ); -- SMTP database host and on port 25
    utl_smtp.ehlo( conn, 'mail.ppp.com' );
    utl_smtp.command(conn, 'auth login');
         utl_smtp.command(conn,UTL_RAW.CAST_TO_VARCHAR2(utl_encode.base64_encode(utl_raw.cast_to_raw('oooo'))));
         utl_smtp.command(conn,UTL_RAW.CAST_TO_VARCHAR2(utl_encode.base64_encode(utl_raw.cast_to_raw('oooo'))));
    utl_smtp.mail( conn, '[email protected]' );
    utl_smtp.rcpt( conn, email_in );
    utl_smtp.data( conn,
    'From: Rental' || utl_tcp.crlf ||
    'To: ' || eremail_in || utl_tcp.crlf ||
    'Subject: ' || 'Confirmation' ||
    utl_tcp.crlf || 'Dear'||' '||name_in||' '||surname_in||','
    ||chr(13)||chr(10)||chr(13)||chr(10)||'Welcome'
    utl_smtp.quit(conn);
    END;
    Message was edited by:
    veledrom

    Sounds like you have an exception in the code and not protecting the resource - which means resource leakage.
    In your case, not closing TCP socket connections to the SMTP server. This then results in the SMTP server refusing to allow you more connections.
    Or.. there is simply too many concurrent connections from different users/sessions/processes at the same time and it cannot service your connection.
    PL/SQL does not specifically support a resource protection block. These are typically in the form of:
    allocate resource;
    try
    use resource;
    finally
    release resource;The intention being that should sosmething go pear shape while using that resource, the resource is protected and released - thus preventing that resource from leaking all over the code and the server.
    In PL/SQL we can only achieve this by creating an exception handler, releasing the resource (if allocated) and then re-raising the exception.
    Suggest that you consider this approach whenever you allocate anything in PL/SQL - from a TCP socket handle to LOB locater or ref cursor.

  • Too many SMTP connections kills server?

    I have a client who until recently had an old G4 server running 10.2.8. This server crashed regularly, usually when they sent out their email mailshot. I recently put in a new G5 running server 10.4.5 and all seemed well until they sent out the next mailshot, and hey presto the server went down.
    The mailing goes to thousands of opt-in subscribers; it is NOT sent by the OSX server; it's sent out by one of those web-based services. However, the reply address IS to the server and they get a lot of 'out of office' type returns as well as bounces.
    The server went down within 30 minutes of the mailing going out and from the log I estimate the server had about 40 open inbound SMTP connections running all at the same time, and the last 25 entries before the crash are all 'connect from <server-name>...' (different servers) and all within about a minute of each other.
    Bearing in mind this is a dual-core G5 I don't think the loading should be too much for it. The ADSL is slow (512k) but again I don't see why that should make it unstable. Is it possible that the mail server simply can't handle more than a certain number of simultaneous connections and if so is there a place in a config file where this can be limited to a manageable number?
    Justin

    Alex - totally agree with you about mailing list management. Keep in mind here this is a customer of mine, not me - and I have already suggested to them that such a large number of bounces means they should look harder at their list management.
    Also, I'm not on site right now so there's a limit to what I can do/see but I've inserted defaultprocesslimit = 10 into main.cf and restarted the server. Assuming the majority of returns have already happened I may not know if this has helped until the next mailshot goes out. I also suggested that setting some other address than their own for the return might be a good idea - even a hotmail address. But they don't like this because 'people would see it and think we're a small business' (they are a small business). The bottom line for them is that even if they're in the wrong about that they don't see why their shiny new server should crash because there's a lot of mail coming in.
    Both spam and virus filtering is on, and it's using two real-time blacklists.
    I will try and get some snapshots of the configs tonight.
    Finally, I don't know for certain sure that the server really was past the point of no return. It certainly was 'dead to the touch' but if the customer had been prepared to wait 15 minutes I suppose it might have 'got over it'. I doubt it though; I couldn't make it respond to Timbuktu, SSL, Server Admin, Mail (as a client) or afp. (I didn't try these all at once!) The only thing that worked was ping.
    Justin

  • How to use the gmail account using in smtp connection in ssis?

    hi 
    how to send the mails using send mail task to configure the smtp connection of the gmail account.
    Can you give me the name of that gmail server.
    TanX

    you might need to use script task for that as Sent Mail doesnt have option of authenticating
    http://dwteam.in/send-mail-in-ssis-using-gmail/
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How To check in Ironport log which is server is giving bad response to SMTP connection?

    How To check in Ironport log which is server is giving bad response to SMTP connection?

    You probably want to create a new log subscription for "SMTP Logs"
    Go to System Administration/Log Subcriptions.
    Click Add Log Subscription
    Pick SMTP Conversation Logs.
    Pick a log name (will be the folder name that gets created for the log files)
    The defaults for the rest should be fine... maybe tweak rollover...
    Make sure to remove it after you're done, its going to eat space and probably a little proc... its VERY verbose, but it should show you what you need.

  • Since Mountain Lion Upgrade is my Internet connection very slow, Since Mountain Lion Upgrade is my Internet connection very slow

    Why is Safari so slow after Mountain Lion upgrade?

    I have a home Optimum wifi network with Boost connecting to an Airport, with a second Airport extending, and an Airport Express extending. I have a MacBook Pro, last year's model, two iMacs, a year old each, and an older iMac. (If necessary I can get all the models etc, but I just want to express the problem). The two new iMacs and MBP are running Mountain Lion. The older Lion.
    Since upgrading to ML my connection speed both over the wifi and directly connecting to the router has dropped from 30-50 down and 5 up to between 1-4 down and 4 up. I have had the cable folks here to test lines. We've swapped out the modem with a new one. I bought a new netgear N600. Everything led to the same result.
    Here's the odd part. When restarting the modem and plugging it directly into the powerbook, initial tests show 30-50 up and 5 down. But once you reconnect to wifi, lose speed, the re-connect directly to the modem the slowness persists directly connected to the modem.
    So I start suspecting Mountain Lion. BUT the older iMac cannot be upgraded to Mountain and is still running Lion and has the same issue. The equipment is in the same place it's always been. We've added no electronics that would be interfering with signals.
    Everyone is stumped and looking suspicously at the computer and OS. Please help. I'm beginning to hear the bing bong bing bong of dial up in my head.

  • Unable to establish an SMTP connection

    The exact message I get is:
    Sorry, I wasn't able to establish an SMTP connection. (#4.4.1)
    I'm not going to try again; this message has been in the queue too long.
    This is only happening on emails to a certain domain. A few months ago I was sending emails there with no problems.  I am using Mail Version 6.3 (1503) on OS X Version 10.8.3.  This happened both before and after I updated from 10.8.2 to 10.8.3.  Unless there were other version changes of either Mail or OS X, I no of no changes in the system from the time of the sucessful sends to the problem sends.
    The only other outgoing mail rejections I've had is one where I had an incorrect address for the recepient.  Of course the error message was different on that situation.
    What would cause the failure to establish an SMTP connection?
    If you need more info, ask and I'll try to supply it.

    Thanks, I wanted to know what else you needed to help me.
    I have an account through my webpage (deedon.us).  It is a plesk server.  All of my emails go out through the same account, obviously with the same settings.  Only emails sent to this one domain (craigslist) kick back with the message.  My ISP is Frontier but I am not using the email address provided though them.
    My server name (incoming and outgoing) is mail.deedon.us. This is a POP account (at least the incoming is).
    In the advanced section of "Edit SMTP Server List" I have "Use default ports (25, 465, 587)" marked. 
    I also have "Use Secure Sockets Layer (SSL)" checked.
    The Authentication option is "Password."
    What part of the configuration would I change and would it affect the outgoing emails that are not problematic?
    Thanks

  • About smtp connection

    i have thousands of mails to send , and only one transport.connection work for this job,what should i do if i want to have the job to be processed faster? is there a smtp connection pool could be used?

    i got some debug information:
    DEBUG SMTP: use8bit false
    MAIL FROM:<liu@gary>
    250 <liu@gary>: Sender Ok
    DEBUG SMTP: sendPartial set
    RCPT TO:<[email protected]>
    250 <[email protected]>: Recipient Ok
    RCPT TO:<[email protected]>
    250 <[email protected]>: Recipient Ok
    RCPT TO:<[email protected]>
    250 <[email protected]>: Recipient Ok
    DEBUG SMTP: Verified Addresses
    DEBUG SMTP: [email protected]
    DEBUG SMTP: [email protected]
    DEBUG SMTP: [email protected]
    DATA
    452 cniedx01.iecd.com: Server too busy
    com.sun.mail.smtp.SMTPSendFailedException: 452 cniedx01.iecd.com: Server too busy
    DEBUG SMTP: use8bit false
    MAIL FROM:<liu@gary>
    503 cniedx01.iecd.com: Sender already specified
    com.sun.mail.smtp.SMTPSendFailedException: 503 cniedx01.iecd.com: Sender already specified

  • Keep Alive SMTP connection

    Hi,
    Is there any way to keep alive a SMTP connection forever using JavaMail? I know being a TCP connection, the connection will be broken if no data is exchanged for specific time. What if NOOP command is send to SMTP server as a heart beat. Can anybody suggest how this can be accomplished using JavaMail?
    Thanks,
    Atul

    You can call the isConnected method, but your server isn't going to like you if you
    keep a connection open even though you're not using it.

  • SMTP connection manager error

    Hi I am getting an error with my SMTP connection manager.
    The progress message when the package is executed is,
    [Send Mail Task] Error: An error occurred with the following error message: "Failure sending mail.  System.Net.WebException: Unable to connect to the remote server  System.Net.Sockets.SocketException: No connection could be made because the
    target machine actively refused it 198.1.1.1
    I am definitely using the correct SMPT address. Is there any other setting which I have to configure? 
    Mr Shaw

    Can you check if exchange server setting is correct?
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Still cannot send Mail (SMTP connection failed) post update.

    PLEASE HELP!.......Post Maverick (and 10.9.1) I cannot send mail from my macbook pro. The message is "The SMTP connection to server "smtp.o2.co.uk" failed" I have trawled the many discussions about mail issues but most address mail inbox functionality and not sending. I have tried the OS X troubleshooting guide, rebuilt my mailboxes and created new accounts, all without success. All four of my o2 mail accounts are affected. Has anyone managed to resolve this issue? Would appreciate any suggestions

    Ongoing issue for many people ... still not resolved until Apple fixes the SSL authentication in Mavericks:
    https://discussions.apple.com/thread/5470289?start=45&tstart=0

  • SMTP Connection Time SMTP Transaction Time warning and mails slow receiving

    Hi,
    i am getting a warning while testing email server over Mxtoolbox
    Waring
    SMTP Connection Time     6.661 seconds
    SMTP Transaction Time     9.532 seconds - Not good! on Transaction Time
    How do i resolve the same
    Ratheesh

    Hi,
    Please refer to the article below about the parameters for the Receive connector. The interesting parameter for the delay seemed to be the tar pit interval.
    http://technet.microsoft.com/en-us/library/bb125140.aspx
    Then try to run this command below to find out what your tarpitting settings:
    get-ReceiveConnector | select name,tarpitinterval
    Refer to this thread:
    http://social.technet.microsoft.com/Forums/en-US/5680ad62-a7c8-4279-89d5-addab465680d/7925-seconds-warning-on-transaction-time-is-this-a-problem?forum=exchangesvradmin
    To know more about SMTP tar pit feature:
    http://support.microsoft.com/kb/842851/en-us
    Regards.

  • SMTP connection timeout

    Hi,
    This question might sound naive, but I just couldn�t find the answer.
    For POP, IMAP and HTTP it is easy to setup idle connection timeout (just use configutil).
    But what about SMTP connections?
    It is set by default on some value (if I just telent on port 25 and live the connection idle, the message �Connection to host lost� will appear after aproximetly 5 minutes), but I cannot find where it can be changed.
    On the other hand, what if connection is not idle, but the user is trying to send a bit biger mail but the link is really slow� how is this treated, what is the timeout for this situation and where this can be changed?
    Thanks a lot, as always :)

    The thing I�m having on my mind is to set this timeout to bigger number, and let slow connections to stay alive for more than 10 minutes.
    The only parameter I found is MAX_IDLE_TIME in dispatcher.cnf file, by default it is set to 600.
    But the explanation for this parameter is a bit confusing:
    MAX_IDLE_TIME=integer
    Specifies the maximum idle time for a server process. When an server process has had no active connections for this period, it becomes eligible for shutdown. This option is only effective if there are more than the value of MIN_PROCS server processes currently in the Dispatcher's pool for this service.
    Anyway, for testing purposes I set this parameter to 6000 instead of 600, and did:
    ./imsimta cnbuild
    ./imsimta restart
    Again I telnet to port 25 and live the connection idle, the message �Connection to host lost� appear again after approximately 10 minutes), so it seems like nothing was changed.
    So, is this the wrong parameter, or for some other reason time is not expanded?
    Btw,
    ./imsimta version
    iPlanet Messaging Server 5.2 HotFix 1.21 (built Sep 8 2003)
    libimta.so 5.2 HotFix 1.21 (built 18:35:22, Sep 8 2003)

Maybe you are looking for

  • [SOLVED] ASUS N56VZ FN+FX Keys not working

    I got this new laptop some time ago. I had WIndows 8 running on it, but since I need linux for college I decided to install Arch on it. I removed windows and created a new GUID Partition Table on the Hard drive. sda1 512M EFI Parition sda2 250G Windo

  • Problem with App Upload

    Hi Friends I have a problem in APP World Vendor, I want to upload release but i receive a message: INVALID BINARY FILE (SLNBOLIVARIANOBLACKBERRY.ALX5311456939419573119.ALX)} It is a new release. I loaded the first version in october 2011. How can i d

  • Built-in Wi-Fi or Wi-Fi ready?

    I want to get a Blu-Ray player for my dad for father's day and have narrowed it down to a couple. Just wasn't sure what the difference, if there is one, between built-in wi-fi and wi-fi ready. Can someone please help? Thanks.

  • Table maintenance Validations

    Hi All, I created a table with 2 fields, also created a maintenance generator. Now my requirement is i need to have 1-1 relation with the fields, what i mean is, no value can repeat with in either of the fields. I need to validate this condition. Sup

  • Photoshop CS6 CC Version Update Error

      I have been attempting to update my CC version of Photoshop CS6 and keep getting an error U44M1P7, it completely downloads the update installs to 99% then fails with this error.