You must use APOP to connect to this server

The following code yields AuthenticationFailedException("You must use APOP to connect to this server"):
Thanks!
Here's the code and the debug
Properties properties = System.getProperties();
properties.setProperty("mail.pop3.apop.enable","true");
Session session = Session.getDefaultInstance(properties, null);
session.setDebug(true);
store = session.getStore("pop3");
store.connect(server, user, password);//BEGIN DEBUG
DEBUG: setDebug: JavaMail version 1.3
DEBUG: getProvider() returning javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems, Inc]
POP3: connecting to host "DONTPOST", port DONTPOST
S: +OK QPOP (version 2.53) at bolg starting.  <DONTPOST.DONTPOST@DONTPOST>
C: USER mknight
S: -ERR You must use APOP to connect to this server
C: QUIT
S: +OK Pop server at DONTPOST signing off.
javax.mail.AuthenticationFailedException: You must use APOP to connect to this server
at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:104)
at javax.mail.Service.connect(Service.java:233)
at javax.mail.Service.connect(Service.java:134)
at .........
//END DEBUG

I had the same problem, make sure you have a recent mail.jar from the Javamail API. Upgrading the Javamail API did the trick for me.
The A does NOT stand for anonymous. The APOP command is to used to log without sending cleartext passwords over the line. The syntax is APOP <user> <digest>. See http://www.faqs.org/rfcs/rfc1939.html.

Similar Messages

  • I am trying connect to a SQL instance for our CRM program and I am receiving To Connect to this Server you must use SQL Management Studio or SQL Server Management

    I am trying connect to a SQL instance for our CRM program and I am receiving To Connect to this Server you must use SQL Management Studio or SQL Server Management 
    This is a Brand new Server 2012 that is running our CRM product and it is trying to connect to a Server 2008 R2 server with SQL Server 2008 R2 SP2 instance (10.50.4000)
    I have seen this in the past where it needed the 2005 backwards compatibility components installed but those are not supported on 2012 server and this is not a 2005 SQL instance.
    I am trying to install the Shared Management Objects for SQL Server 2008 but it tells me I need to install the CLR types, which I did install. But it continues to tell me to install the CLR types.
    Has anyone ran into any issues like this? (this happens trying to connect to multiple SQL Servers from this new 2012 Server)
    Thanks!
    -Max

    Hello,
    Which version and edition of the SQL Server instance did you installed on the new server machine?  If you install SQL Server 2012 Express edition, you can try to install SQL Server Management Studio 2012 from
    this link.
    You can connect to SQL Server 2008 R2 or earily verions with SSMS 2012.
    What's more, Microsoft SQL Server 2008 Management Objects Collection requires Microsoft Core XML Services (MSXML) 6.0, Microsoft SQL Server Native Client, and Microsoft SQL Server System CLR Types. You can try to download and install
    SQL Serve 2008 Feature Pack
    which contains packages above.
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • "You must supply a password to make this connection" Windows 98 to Macbook

    I have a home network using a wireless router (Linksys Moder BEFW 1154). The network consists of 2 Windows XP Pro, 2 Windows 98 SE, and recently added Macbook.
    My problem: When attempting to access Macbook from either of
    the Windows 98 SE computers, I get an “enter network password" window stating "You must supply a password to make this connection". There is no password, user combo that works. Seems to be a well known problem. I've looked through the MSknowledge base and Googled the problem. It seems that those experiencing the problem were dealing with Windows 2000 or were having trouble getting into and XP machine and there appears to be very limited success involving various workarounds. Nothing involving Macbooks
    I have no problem with any of the Windows machines communicating with each other. The Mac accesses all my
    Windows computers with no problem. I get the password request only when trying go to the MAC from the Windows 98 SEs.
    I'd appreciate any suggestions as to what might the Windows 98 SE computers need or be looking for from the MAC that is causing the problem.
    TIA
    Macbook Mac OS X (10.4.8)
    Macbook Mac OS X (10.4.8)
    Macbook   Mac OS X (10.4.8)  

    This is not the Hyperion/Essbase forum.

  • ClassCastException: You must use ResultSet from this driver!class webl

    Hi,
    I have configured the Connection pool and DataSources for SQLServer using inet-OPTA
    drivers.
    I am using the CachedRowSet implementation from inet and it seems to bomb out
    with the following error stack trace:
    STACK TRACE:
    java.lang.ClassCastException: You must use ResultSet from this driver!class webl
    ogic.jdbc.rmi.SerialResultSet
    at com.inet.tds.CachedRowSet.a(Unknown Source)
    at com.inet.tds.CachedRowSet.populate(Unknown Source)
    Any ideas of what is causing this problem ?
    Is it that i cannot use the CachedRowSet implementation from inet.
    If that is the case we have lot of code that uses this and i will have to change
    a lot.
    Any help is appreciated
    Thanks
    Venu

    The code is in one of the utility classes that is in the classpath and this utility
    class is used by the Stateless session EJB that i deployed in the WebLogic AppServer.
    As i understand, Weblogic 8.1 is out and i will try running on it.
    Thanks
    Venu
    Joseph Weinstein <[email protected]_this> wrote:
    >
    >
    venu wrote:
    Hi,
    I am running WebLogic version 7.0.2
    Do you have any idea when the 8.1 will be available (i believe it isstill in
    beta)
    I'll find out. Do answer my other question: Where is this code running
    that gets the exception?
    Joe
    - Srini
    Joseph Weinstein <[email protected]_this> wrote:
    venu wrote:
    Hi,
    I have configured the Connection pool and DataSources for SQLServerusing inet-OPTA
    drivers.
    I am using the CachedRowSet implementation from inet and it seems
    to
    bomb out
    with the following error stack trace:
    STACK TRACE:
    java.lang.ClassCastException: You must use ResultSet from this driver!classwebl
    ogic.jdbc.rmi.SerialResultSet
    at com.inet.tds.CachedRowSet.a(Unknown Source)
    at com.inet.tds.CachedRowSet.populate(Unknown Source)
    Any ideas of what is causing this problem ?
    Is it that i cannot use the CachedRowSet implementation from inet.
    If that is the case we have lot of code that uses this and i will
    have
    to change
    a lot.
    Any help is appreciated
    Thanks
    VenuHi. What version of the server are you using. This problem will goaway
    for 8.1.
    We currently wrap all JDBC objects from pooled drivers, to maintaincontrol
    over
    the pooled connection. Where is this code running that gets the exception.
    It seems that Inet's rowset implementation needs to cast the resultset
    it gets
    to be inet's result set object, in order to make some non-standardmethod
    calls.
    Joe

  • My ipad has a passcode but i forgot it and i tried many times and it says "Ipad is disabled connect to itunes" so i did that and it pops up and says "you must enter your passcode to access this itunes account"

    my ipad has a passcode but i forgot it and i tried many times and it says "Ipad is disabled connect to itunes" so i did that and it pops up and says "you must enter your passcode to access this itunes account"

    THave you looked at this link  http://support.apple.com/kb/HT1212

  • A connection to the SharePoint site cannot be established. To synchronize or refresh your list, you must be able to connect to the SharePoint site

    Hi,
    I have a SharePoint 2010 farm with two Web Applications.
    For example:
    https://contoso.domain.com
    https://finance.domain.com
    Both Webapp use https --> 443. Same valid certificate for both (*.domain.com)
    I tested exporting an Excel library in https://contoso.domain.com.
    It export and sync up sucessful the Excel library and it updates it OK.
    However, once exported the Excel library in https://finance.domain.com, when
    I try to syncronize or update the library I receive an error back, which indicates: "A connection to the SharePoint site cannot be established. To synchronize or
    refresh your list, you must be able to connect to the SharePoint site". I had tested the WebDav (Map Network Drive) and the connection results OK.
    Do you have any idea about this issue?? Why https://finance.domain.com do not
    synchronize or refresh in excel o SharePoint site???
    I had tested the security with IIS, SSL, WebDav.
    Thank you,
    Gaby

    Hi!!!
    I solved this problem.
    I created a new Application Web in the farm (https://project.domain.com), dismount content database the old application web ( https://finance.domain.com)
    and the new application web (https://project.domain.com).
    #New AppWeb project.domain.com
    Get-SPContentDatabase -WebApplication https://project.domain.com | Dismount-SPContentDatabase -WhatIf
    #Old AppWeb
    Get-SPContentDatabase -WebApplication https://finance.domain.com | Dismount-SPContentDatabase -WhatIf
    Mount the old content database to the new application web (https://project.domain.com).
    Mount-SPContentDatabase "WSS_Content_Finance" -DatabaseServer "MyServer" -WebApplication https://project.domain.com
    If you want to keep the same url, change the alternate access mappings.
    Remember to change the bindings in IIS.
    Hope you help the solution...
    Gaby

  • SSIS: To run a SSIS package outside of SQL Server Data Tools you must install SCR - DP1 Connections of Integration Services or higher

    We have SSIS installed on a machine that is not part of a cluster but it is accessible by the cluster.
    Our job we have running on the cluster is failing with the following error:
    Error: 2014-01-31 09:14:37.52     Code: 0xC000F427     Source: SCR - DP1 Connections  
    Description: To run a SSIS package outside of SQL Server Data Tools you must install SCR - DP1 Connections of Integration Services or higher.  End Error
    Any advice or information on how to resolve this would be great.
    Many Thanks.

    Hi NessaBella,
    Integration Services service is not a cluster-aware service, and does not support failover from one cluster node to another. Therefore, in a clustered environment, Integration Services should be installed and started as a stand-alone service on each node
    in the cluster.
    Based on the error message, it seems that SSIS is not installed on the cluster node on which the job was running. Although SSIS is installed on a machine that is not part of the cluster and can be accessed by each cluster node, the SSIS service installed
    on a remote server cannot be used a cluster node. So, please install the shared feature SQL Server Integration Services on each cluster node. Besides, if certain packages need to run in 32-bit mode in certain jobs and the SQL Server installed is 64-bit version,
    you also need to install BIDS/SSDT on the cluster node to get the 32-bit runtime of SSIS.
    References:
    Integration Services (SSIS) in a Cluster
    Loading and Running a Remote Package Programmatically
    Regards,
    Mike Yin
    TechNet Community Support

  • Error C1189: #error : ERROR: You must use a GNU Compiler.

    Hi everyone!
    I have just ran into an error in which I don't know how to resolve. I'm trying to compile some code I have but it gives me the following : error C1189: #error :  ERROR: You must use a GNU Compiler.
    Before receiving this error I had received one stating that the header file "_mingw.h" was missing. I located that file and placed it in the correct folder. I also updated the project properties to locate the header file. The error itself says
    that I must use a GNU Compiler but I'm not exactly sure how to do this.I do have mingw installed on the PC though
    The error points to this part of the code :
    #define __MINGW32_VERSION           3.2
    #define __MINGW32_MAJOR_VERSION     3
    #define __MINGW32_MINOR_VERSION     20
    #define __MINGW32_PATCHLEVEL        0
    #ifndef __GNUC__
    #error ERROR: You must use a GNU Compiler.
    #endif
    #if (__GNUC__ < 3 || !defined(__GNUC_MINOR__) || (__GNUC__ == 3 && __GNUC_MINOR__ < 4) || (__GNUC__ == 3 && __GNUC_MINOR__ == 4 && __GNUC_PATCHLEVEL__ < 5))
    #error ERROR: You must use a GNU Compiler version >= 3.4.5.
    #endif
    Also to note, I have the most recent version 4.8.4.1 of the compiler.
    Any ideas on what I should so to fix this? Did placing the _mingw.h file in the folder have anything to do with it?
    I would appreciate any help!! :-)

    It appears that the author of the code you are compiling intended it to be compiled with the GNU compiler, not the Visual C++ compiler.  So they manually inserted an error message (guarded by the #ifndef __GNUC__ check) so that if you compiled it on
    Visual Studio, you'd be alerted to that fact.
    I'm afraid you are now faced with either porting this code or finding a Windows distribution of it that is compatible with Visual Studio.
    *NOT RECOMMENDED*, but to begin the process of porting it , simply delete the #error line from the source code and recompile with visual studio.  You can expect millions of specific issues will need further attention.  After all, it's probably
    there for a reason.  If you are new to this, that's probably NOT what you want to do.
    On the other hand, what were you trying to compile that needed _mingw.h?  That's the piece that needs to be configured correctly.  You are likely not building it as the author intended.

  • When i want to install windows7 on my snow leopard(10.6.4) with boot camp assistant,said that you must update your mac,i do this and try to install windows7 again but i have this problem again?what can i do?

    when i want to install windows7 on my snow leopard(10.6.4) with boot camp assistant,said that you must update your mac,i do this and try to install windows7 again but i have this problem again?what can i do?

    Graham Giles wrote:
    Have you seen this type of problem before? I think it could be a serious issue for anyone in a similar position.
    No; but then, I've not had occasion to use TDM. I've been using firerwire drives for over 10 years, both FW400 and FW800, with no issues except a bit of instability using a B&W G3 machine.
    TDM should be safe. Using cautious, manual copying of files from the Target machine to the Host machine should not result in unexpected loss of files or damage to the Target drive's directories. It should behave exactly the same as if it were an external (to the Host) firewire drive.
    •  I don't suppose there is anything I can do to 'put back' lost items from a separate Time Machine drive which has an up to date backup on it.
    There is probably a way to do that - seems to me that's one of the reasons for a Time Machine volume.
    On the other hand, if the Time Machine volume is rigidly linked to the now-absent OS on the original drive, there may be no way to effectively access the files in the TM archive.
    I know that using a cloned drive would work well in this instance.
    I have no experience with Time Machine, so perhaps someone who has will chime in with suggestions.
    With the machine in TDM with the other machine, have you tried running Disk Utility to see if you can effect repairs to the drive?

  • Error Msg - "You must add the Class files for this enterprise bean"

    Hi,
    I am creating creating new enterprise bean using j2sdkee1.2. I am able to create .ear file in desired folder, but can not create .jar. Please help. Getting above error message.
    remote, home interface files and file having business logic (EJB) is compiled and kept at desired location.
    j2ee server started, Deploytool is started.
    Then I can successfully create new application (.ear file)
    Then I go for creating new enterprise bean. I get same application name in Drop down list named "Enterprise Bean will go in".
    Then I can add home, remote and ejb class file to create jar ("Add" under "Contents" ).
    When I say ok after adding these 3 files, I am getting error - "You must add the Class files for this enterprise bean".
    In the deploytool console, getting error - "java.io.FileNotFoundException: C:\2sdkee1.2\mahesh\ConverterEJB.class (The system cannot find the path specified) "
    Can you please help me where to configure the path?
    Can u please help?
    Please send your answer to - [email protected]
    Cheers!

    the path really begins with '2', without a 'j', ie not c:\j2sdkee1.2\...?
    "java.io.FileNotFoundException:
    C:\2sdkee1.2\mahesh\ConverterEJB.class (The system
    cannot find the path specified) "

  • "you are using an illegal copy of this application"

    My iMac crashed last night. I powered it off and restarted it. From that point on, Civ V won't run. I installed it from the app store, paid for all the extra content, but now it says "You are using an illegal copy of this application" when I get to the screen where I would launch Civilization V: Campaign Edition. Clicking the Restore Purchases button gives me an Apple ID login prompt, but it never completes.
    Any ideas how to get this fixed?

    The App Store, iTunes and other Apple connection problem seem to have been corrected.
    https://www.apple.com/support/systemstatus/

  • When i login to MES operator resp..i get a error saying...You must setup an HR employee for this Oracle Application user...how to resolve this?

    when i login to MES operator resp..i get a error saying...You must setup an HR employee for this Oracle Application user...how to resolve this?

    Hey everyone in Apple world!
    I figured out how to fix the flashing yellow screen problem that I've been having on my MBP!  Yessssss!!!
    I found this super handy website with the golden answer: http://support.apple.com/kb/HT1379
    I followed the instructions on this page and here's what I did:
    Resetting NVRAM / PRAM
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    I went through the 6 steps above twice, just to make sure I got rid of whatever stuff was holding up my bootup process.  Since I did that, my MBP boots up just like normal.  No flashing yellow screen anymore!!   
    (Note that I arrived at this solution when I first saw this page: http://support.apple.com/kb/TS2570?viewlocale=en_US)
    Let me know if this works for you!
    Elaine

  • One of my friends is getting an error "Can not buy this item. You must buy the application to which this item is intended to buy the item" when they try to make an In app Purchase

    More Details: http://feedback.photoshop.com/photoshop_family/topics/cannot_download_camera_pac k_inside_photoshop_app
    My friend is trying to purchase an IAP on Adobe Photoshop Express, however they get an error saying "Can not buy this item. You must buy the application to which this item is intended to buy the item" when they try to make an In app Purchase". Everything other app is working fine.
    Any thoughts/suggestion to make this error go away?

    I suggest trying the update again after an hour or two.  Sometimes, the notice that an update is available comes an hour or two before the developers actually sends the revised app out to be downloaded.

  • " You cannot use the application "iTunes" with this version of MAC OS X."

    I am getting the response " You cannot use the application "iTunes" with this version of MAC OS X." How do i get Itunes on my Mac. I tried to download the newest version but it won't let me do that either.

    What operating system version are you using on your Macbook?  If you are still using Tiger 10.4 the new iTunes requires Leopard (10.5) or higher.

  • I have a US Mac living in the UK. I tried to download both the British and American version. Both state "You cannot use the application Firefox with this version of MAC OSX". Any suggestions how to proceed?

    I have a US Mac living in the UK. I tried to download both the British and American version. Both state "You cannot use the application Firefox with this version of MAC OSX". Any suggestions how to proceed?

    Firefox 4 requires at least OS X 10.5 and an Intel Mac. You can get the latest version of Firefox 3.6 which works on OS X 10.4 from http://www.mozilla.com/en-US/firefox/all-older.html

Maybe you are looking for

  • How can I get  all movies to autoplay on a DVD?

    I made a series of Adam Lambert videos and placed them into iDVD. How can I make the videos play automatically one after the other without having to access the menu while retaining the ability to access the menu to choose an dindividual song? I want

  • What happened?? My mac turned into a PC

    Hi - any insight would be appreciated. Using my gorgeous computer all day,.. as usual... late last night started to watch a DVD... Then the problem started... in the middle of loading DVD.... it suddenly froze..I could do nothing.. nothing responded.

  • [hocr] Convert hocr to pdf

    Hello, I scan a lot and I wanted a solution to get a better accuracy after the optical character recognition of a document. After discovering the hocr format, I used it to correct the misspelled words. I convert my scanned documents in pdf, so the pr

  • QTPro registration key "invalid"

    I just purchased an upgrade key for QT7Pro and, after entering it into edit>preferences>register tab. I get the message "invalid registration". I tried entering the code manually and by copy/paste into the field and still get "invalid registration".

  • Question for Walter Rick

    Walter Rick, I know you know our teacher David, who tought us DIAdem at Michigan at the end of March for 5 days. I have no his email address, phone number, so no way to reach him. He suppose to send me a sample of my application. I have not received