BYE Connection limit reached

Hi, Everyone
My customer's site use Webmail (using JavaMail API and customer made webmail module) connect IMAP.
Rescently, I can see the following IMAP log.
2006/11/15 16:51:38 <E> <com.daou.winip.mail.manage.UserLoginManager> javax.mail.MessagingException: * BYE Connection limit reached
for your IP address;
nested exception is:
com.sun.mail.iap.ConnectionException: * BYE Connection limit reached for your IP address
As a result of this, login is very slow and IMAP connection is disconnected.
Anyone who experienced this, plz let me know how to solve this problem.
Mail version are iMS5.2 patch2 and JES6.2
iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)
libimta.so 5.2 Patch 2 (built 19:30:12, Jul 14 2004)
SunOS mail 5.8 Generic_108528-13 sun4u sparc SUNW,Ultra-Enterprise
./imsimta version
Sun Java(tm) System Messaging Server 6.2-3.04 (built Jul 15 2005)
libimta.so 6.2-3.04 (built 01:43:03, Jul 15 2005)
SunOS fly 5.9 Generic_118558-06 sun4u sparc SUNW,Ultra-60
And I didn't change any IMAP setting.
Thanks

My mail provider has further indicated that even during part of the period I am idle and not opening any of my folders in mail App, sometimes the app is hitting the IMAP mail server. This is not an expected behaviour he is saying.
It perhaps implies that the iOS mail App is having bug.

Similar Messages

  • TNS-01181: Internal registration connection limit reached

    Hi all,
    I am currently working on sun solaris box.
    My Listener log is showing this error:
    TNS-01181: Internal registration connection limit reached
    Even database is working fine:-
    Only one Perticular application is not able to connect
    with OCI error from application .
    Plz help ASAP
    Regards:-
    Deafulter

    Hi,
    what is the version of the database?
    Try to set MAX_REG_CONNECTIONS_<listener>=1000 in listener.ora
    e.g.: max_reg_connections_listener = 1000
    Hope this helps,
    Andrey

  • Too many connections - limit of 150 reached

    We ran into a situation where a program (written in PHP, running under Apache) was spawned via crontab every 30 seconds for test purposes. It connected to the database but did not disconnect.
    Net result: Once the program had been started 150 times, the database refused any more connections. No valid users could connect. I couldn't even connect from the oracle privileged account.
    Item 1: The process will be modified to explicitly close its connection when done, rather than trusting the job to default behavior of PHP. So, hopefully, we will not run into this a second time.
    Item 2: But if we do have this problem again, I need to know how to intervene when the connection limit has been reached. I was not able to connect myself and therefore could not query v$process or related tables to gather any information. I could kill the various (useless) listener processes at the unix command line, but it still took time for Oracle to sense the dead process and mop up. How to accomplish this quickly?
    Item 3: I can probably set up the rogue process to login as a different user and then set a resource profile for that user including timeouts. Any suggestions on values for that resource profile?
    Item 4: Is there a way to reserve a listener connection for a privileged account such as the DBA?
    Thanks for any guidance.
    -- Chris Curzon

    ChrisCurzonDBA wrote:
    Thanks for the friendly reply.
    What worried me was that I had to wait for the useless connections to clear, before I could connect and see what the sessions were. Yes, Oracle had to roll back any uncommitted work, and there's no way to speed that up, but I wanted to see that processes from inside of Oracle (connected) not from outside.
    Is it possible to configure the listener to "reserve" one connection for a privileged account? No.
    It is not the listener's responsibility. In fact, it is not even the listener's responsibility to maintain existing connections. Once the listener services the connection request, it is totally out of the picture. You can even kill the listener, and any existing connections will continue on. It's like being introduced to someone at a party. Once you are introduced to someone (by The Listener), you carry on your conversation with that person directly, not through the person (The Listener) who introduced you.
    >
    -- Chris

  • Opening multiple reports in Crystal Reports for VS causes database connect limit to be reached.  Seems to be no way to force Crystal Reports to close database connection (other than exiting application)

    I am working on upgrading an application that has been in use for many years.  The application is written in VB6 and I have been tasked with upgrading the current application to Crystal Reports for Visual Studio.  I am using Crystal Reports for VS Version 13.0.12.1494.  The system's database is a Sybase SQL Anywhere 16 database with an ODBC connection using integrated login.  Each of the reports has the database connection set up from within the report.  There is only once database server, so each of the reports are pointing to the same DB.  The database server is currently installed as a "Personal Server" with a limit of 10 connections. 
    I have implemented the CR viewer as part of a COM-callable wrapper that exposes a COM interface for VB6 to interact with.  Inside of my viewer component is a Winform that embeds the Crystal's Report viewer.  The COM interface basically maps the basic Crystal apis to methods that the VB6 can call (i.e., Load Report, Set Field Text, Update SQL Query, etc).  This architecture is working as designed and the reports are displaying correctly and responding correctly to changes in queries, etc.
    The issue is that after I open 9 reports, the tenth one will respond with an error indicating that the database connection limit has been reached.  The database connections used by the reports aren't released until after the application is closed.  The application is designed for a secure environment that prohibits the non-administrative user from accessing the systems desktop, so asking the user tor restart the application after 10 reports isn't a viable option.
    I have checked and database connection pooling is turned off for the SQL Anywhere 16 driver.
    I have been digging on this for a few days and have tried adding code in the FormClosed event to close and dispose of the Report Document as follows:
    ReportDocument reportDoc= (ReportDocument) crystalReportViewer1.ReportSource;
    reportDoc.Close();
    reportDoc.Dispose();
    GC.Collect();       // Force garbage collection on disposed items
    I have also tried the following (as well as maybe 20 or so other permutations) trying to fix the issue with no success.  
    ReportDocument reportDoc= (ReportDocument) crystalReportViewer1.ReportSource;
    foreach (Table table in reportDoc.Database.Tables)
         table.Dispose();
    crystalReportViewer1.ReportSource = null;
    reportDoc.Database.Dispose();
    reportDoc.Close();
    reportDoc.Dispose();
    reportDoc = (ReportDocument)crystalReportViewer1.ReportSource;
    GC.Collect();       // Force garabe collection on disposed items
    Any ideas or suggestions would be greatly appreciated.  I have been pulling my hair out on this one!

    Hi Ludek,
    Thanks so much for the quick reply.  Unfortunately I did not have time to work on the reporting project Friday afternoon, but did a quick test this morning with some interesting results.  I'm hoping if I describe what I'm doing, you can show me the error of my ways.  This is really my first major undertaking with Crystal Reports.
    If I simply load the report, then close and dispose, I don't hit the limit of 10 files.  Note that I do not logon manually in my code as the logon parameters are all defined within the reports themselves.  The logon happens when you actually view the report.  Loading the report doesn't seem to actually log in to the DB.
    What I did was create a very simple form with a single button that creates the WinForm class which contains the Crystal Viewer.  It then loads the report, sets the ReportSource property on the CrystalReportsViewer object contained in the WInForm and shows the report. The report does show correctly, until the 10 reports limit is reached.
    The relevant code is shown below. More than I wanted to post, but i want to be as complete and unambiguous as possible. 
    This code displays the same behavior as my earlier post (after 10 reports we are unable to create another connection to the DB).
    // Initial Form that simply has a button
      public partial class SlectReport : form
            public SelectReport()
                InitializeComponent();
            private void button1_Click(object sender, EventArgs e)
                ReportDocument rd = new ReportDocument();
                ReportForm report = new ReportForm();
                try
                    rd.Load(@"Test.rpt");
                    report.ReportSource = rd;
                    report.Show();
             catch (Exception ex)
                  MessageBox.Show(ex.Message);
    // The WinForm containing the Crystal Reports Viewer
        public partial class ReportForm : Form
            public ReportForm()
                InitializeComponent();
            private void Form1_Load(object sender, EventArgs e)
                this.crystalReportViewer1.RefreshReport();
                this.FormClosed += new FormClosedEventHandler(ReportForm_FormClosed);
            void ReportForm_FormClosed(object sender, FormClosedEventArgs e)
                ReportDocument rd;
                rd = (ReportDocument)crystalReportViewer1.ReportSource;
                rd.Close();
                rd.Dispose();
            public object ReportSource
                set { crystalReportViewer1.ReportSource = value; }
    Again, any guidance would be greatly appreciated. 

  • ISA 2006 slow response, connections timeout, maximum limit reached?

    Hey guys, 
    I've been having an issue with a client's ISA Server for the past couple of weeks and haven't been able to understand why this is happening.
    They have a couple of ISA Servers Enterprise Edition in an array. This ISA Servers give Internet access to the entire company. They have significant amount of traffic through a Cisco Iron Port that all the users proxy settings are configured to this device
    and the Iron Port forwards the requests to the ISA Servers.
    This implementation have been working fine for months, until a few weeks back that started to have slow response problems from the ISA Servers.  Analyzing the reports from the ISA Servers, I've noticed an increased amount of traffic a few times this
    has happened and mostly from the Iron Port. The Cisco people says this increase amount is due to the fact that the ISA Server stops responding and new requests are made at the moment from the device. We have configured the Iron port IP in the exceptions of
    the Flood Mitigation Settings of the ISA Server, and configure it to take more than 20,000 connections.
    Still after this configuration, the same problem raised a couple of days back. The ISA Servers stops responding and they need to be forced shut down and restarted to get them back to work.
    There are also some errors from some other internal IPs that it reaches maximum connection limits, but these are about 10 errors like this only. I was thinking maybe there are some infected computers or something but they said that they scanned the ones
    that show the errors and nothing is detected.
    From the ISA reports of the time of the incident, I saw that it reached more than 15,000 concurrent connections. More than double of what it usually handles throughout the day.
    I don't know if there is like a connection limit that the ISA can handle before it hangs of something? 
    Is there any ideas on what can be happening with this? 
    Thanks for any replies!
    Eduardo Rojas

    Hi,
    Have you check the Event logs on the ISA Server? Any error?
    You could use ISABPA to do some basic troubleshootings.
    http://www.microsoft.com/en-hk/download/details.aspx?id=811
    Best Regards,
    Joyce
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • No redirection to different url upon http connections limit exceeded

    Hi,
    As of Standalone OC4j 10.1.2, if you want messages to be redirected to a different URL when the maximum connections limit is reached, you would include the HTTP redirect URL to max-http-connections tag inside server.xml.
    <max-http-connections max-connections-queue-timeout="120" socket-backlog="50"
    value="100">http://optional.redirect.url/page.jsp</max-http-connections>
    I have a standalone OC4j 10.1.3, and would like to be able to redirect to different URL when maximum connections limit is reached but the above max-http-connections does not work and I am not redirected to different URL when maximum connectionns limit is reached. I read user guide of OC4j 10.1.3 and there is no mentioning of max-http-connections at all. In there, they talk about limiting concurrency via http thread pool but there is no discussion as to the mechanism of redirecting users to a different URL where I can display a user friendly message to say "Server is busy, please try again later..." instead of browser display a message "Page cannot be displayed"..
    Please advice,
    Thanks

    Any thoughts on above issue ? please help.
    thanks
    Sam

  • Error: Max processing time or Max records limit reached

    Hi All,
    While I run the report in Infoview, I get the below error:
    Unable to retrieve object:
    Max processing time or Max records limit reached
    Kindly suggest me.
    Thanks,
    Meena

    There is a default limit on the number of records returned and on the time out of an 'idle' connection..These could be set in the CMC , however first try to check the query for that report and see if it is applying your record selection criteria at the database level  ( use the Show Sql option and see if all your selection criteria have been turned into WHERE clauses)
    - this will drastically reduces both the number of records returned to the Crystal and the time it takes for...
    You can find setting here:
    CMC>servers>page server>properties
    Its always not recommended to set it to unlimited as page server is not a robust server, you need to schedule such reports that uses job server which is more robust.
    Regards,
    Parsa.

  • ACE connection limit and remote TCP security scans

    We are currently running remote TCP security scans on our networks and are running into a major problem where when the scans are taking place the ACE connection resource usage sky rockets and easily reaches the maximum 4 million connections.  This means that anyone can run a simple TCP scan and take down our ACE by maxing the connection limit.  We have the following parameter-map applied to all of our policies but it does not help to clear the connection count on the ACE in a reasonable amount of time.  parameter-map type connection CONNECTION_TIMEOUT   set timeout inactivity 300   set tcp timeout half-closed 60  I should note that we do have normalization turned off because it causes way more problems then it's worth (no resolution with TAC).  Does anyone have an tips on how to accommodate security scan's on networks behind the ACE while not saturating the connection count limit?

    For vips, this particular context only has one class C applied to a class-map.  Not all IP's are in use but regardless the ACE creates connections for those as well.  I've set the timeout inactivity to 120 seconds and I still see connections from the remote scanning host idling well over 45mins for connections destined to the vip's.  Is turning on normalization my only option?  I know there are others who have turned off normalization due to performance and connectivity issues so there must be other ways around this.  Thanks for your help.

  • WAAS Connection Limit

    Hi,
    Will the WAE or CM show an error message if the connection limit is reached on a WAE?
    Thanks,
    Mike

    When the WAE/WAVE device reached max connection limit - any new connections will go into pass through due to overload
    Existing connections will be still be optimized.
    Thanks
    Eric
    If this answers your questions please mark as answered with a 5.

  • INVALID_TICKET account-time-limit-reached when logging into any of my room

    I get the following error message when trying to log into any of my rooms. What do I need to do? I already tried to create a new room, but it did not resolve it.
    A system error has occurred. We have been notified.
    Error Code: INVALID_TICKET account-time-limit-reached

    Is there the upgraded account with no limitation. What is the price for that?
    Another question, I got the exception like that.
    But I can't know on which line the exception occurs on my code.
    How can you catch such an exception?
    INVALID_TICKET: account-time-limit-reached
    at com.adobe.rtc.session.managers::SessionManagerBase/receiveError()[/Users/arun/Work/aponnu sa_theoden.corp.adobe.com_1666/main/connect/cocomo/src/com/adobe/rtc/session/managers/Sess ionManagerBase.as:270]
    at com.adobe.rtc.session.managers::SessionManagerFMS/receiveError()[/Users/arun/Work/aponnus a_theoden.corp.adobe.com_1666/main/connect/cocomo/src/com/adobe/rtc/session/managers/Sessi onManagerFMS.as:288]
    at com.adobe.rtc.session.managers::SessionManagerAdobeHostedServices/receiveError()[/Users/a run/Work/aponnusa_theoden.corp.adobe.com_1666/main/connect/cocomo/src/com/adobe/rtc/sessio n/managers/SessionManagerAdobeHostedServices.as:254]
    at com.adobe.rtc.session.sessionClasses::FMSConnector/receiveError()[/Users/arun/Work/aponnu sa_theoden.corp.adobe.com_1666/main/connect/cocomo/src/com/adobe/rtc/session/sessionClasse s/FMSConnector.as:643]
    Thanks.

  • Error "account limit reached"

    I got the error when activation of iphone "account limit reached" but my Apple ID was working fine on PC .
    If i skip this step I am Not able to connect itunes & icloud error was "Cannot connect to itunes"
    Please help

    Hello,
    Can you open up a support ticket so that a support engineer can look at this problem? Based on this short description you should not have any problems creating new temporary sites (not live sites).
    Thank you,
    Cristinel

  • Device is no longer eligible for creating a free icloud account how to create on iphone, How do I create an apple ID if it says " No longer eligible for creating a free iCloud account "? It says Account limit reached?

    device is no longer eligible for creating a free icloud account how to create on iphone, How do I create an apple ID if it says " No longer eligible for creating a free iCloud account "? It says Account limit reached?
    Kindly advice.
    Thanks
    Mahfooz

    I had the same issue on my iPod touch 4th Gen, I noticed the issue after updating the device to 6.1.5. I dont know what device or IOS your running but if it is similar then I think this ma be the cause. My solution to you is to create a free apple ID on their website, https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/wa/createAppleId. Hope this helped and good luck!

  • I keep seeing this message on my ASUS IPAD and need some help.  "Tab Limit Reached, Can't Open A New Tab Until You Close One".   I need help, please.

    Tab Limit Reached, Can't Open A New Tab Until You Close One.
    How do I close the tabs?

    Asus doesn't make the iPad.  Is this some other tablet?
    Sounds like you have maxed out the browser windows. In the browser app, press the menu or overflow bottom to see if there is an window/tabs options. There you should see a thumbnail image of each tab you have opened and in the corner of each should be a X or minus symbol that you touch to close that tab/window.

  • ORA-30653: reject limit reached

    Hello All,
    Today we have encountered the following errors in our alert log file
    ORA-20011: Approximate NDV failed: ORA-29913: error in executing ODCIEXTTABLEFETCH callout
    ORA-30653: reject limit reached
    when we checked the log in detail we got this through dbms_gather_stats procedure can any body suggest how to fix this issue.
    Thanks,
    S@ntosh

    psantosh wrote:
    Hello All,
    Today we have encountered the following errors in our alert log file
    ORA-20011: Approximate NDV failed: ORA-29913: error in executing ODCIEXTTABLEFETCH callout
    ORA-30653: reject limit reached
    when we checked the log in detail we got this through dbms_gather_stats procedure can any body suggest how to fix this issue.
    Thanks,
    S@ntoshrefer below link.
    http://dbarajabaskar.blogspot.in/2011/12/ora-20011-approximate-ndv-failed-ora.html

  • Can't create apple id...account limit reached...i have just bought this iphone second hand.. how can i fix this problem please

    can't create apple id...account limit reached...i have just bought this iphone second. how can i fix this problem please.

    appleid.apple.com
    ^ There's your website, go there, create apple id, smile
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/
    There's the link part of it , Bigger smile

Maybe you are looking for

  • Problems with htmldb_item functions

    Hello, I was trying to include the following pl/sql fragment return ' :'||htmldb_item.popup_from_query(1,null,'SELECT NAME,ID FROM PAYMENTS') as column heading of a report, but for some reason the html output being returned is truncated unexpectedly

  • Safari screen has gone blank and seems to be hanged

    safari screen has gone blank and seems to be hanged

  • Lead layout page

    1. When I click on the lead name from the leads home page (e.g. My Recently Viewed Leads), it goes to a page that includes the lead fields as well as activities or related information However, when I click on the last name from the a lead list, it ju

  • All printers gone, cannot print

    All my printers are gone from the dialog boxes and I cannot print anything anymore. This after a recent stay at friends, where one of them set me up for network printing on their network (which worked). I have re-installed the printer drivers, but no

  • My laptop keeps re-starting it self what should I do

    I downloaded OS X Mavericks on my Macbook Air today and after a few hours my laptop kept Re-starting it self and it wouldn't stop! Please please if anyone can help me PLEASE do ):