IMAP java mail -- Can't disable plain login

Hi,
I am trying to solve Authentication issue with IMAP and java mail1.4.1 connecting to Microsoft Exchange Server 2007 and couldn't disable AUTH: PLAIN.Also need to know how to enable NTLM.
I set the property as follows with "xxxxxxxx...." shown below with right values:
props.setProperty("mail.store.protocol","imaps");
props.setProperty("mail.imap.auth.plain.disable","true"); -- "true" within quotes
props.setProperty("mail.imap.host","xxxxxxxxxxx");
props.setProperty("mail.imap.port","993");
props.setProperty("mail.imap.user","xxxxxxx");
props.setProperty("mail.imap.pwd","xxxxxx");
props.setProperty("mail.imap.debug","true");
props.setProperty("mail.imap.ssl.protocols","SSL");
props.setProperty("mail.imap.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
props.setProperty("mail.imap.socketFactory.fallback", "false");
props.setProperty("mail.imap.socketFactory.port", "993");
Still i couldn't get AUTH:PLAIN disabled and trying to get AUTH:NTLM enabled.
DEBUG: setDebug: JavaMail version 1.4.1
DEBUG: getProvider() returning javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc]
DEBUG: mail.imap.fetchsize: 16384
* OK Microsoft Exchange Server 2007 IMAP4 service ready
A0 CAPABILITY
* CAPABILITY IMAP4 IMAP4rev1 AUTH=NTLM AUTH=GSSAPI AUTH=PLAIN IDLE NAMESPACE LITERAL+
A0 OK CAPABILITY completed.
IMAP DEBUG: AUTH: NTLM
IMAP DEBUG: AUTH: GSSAPI
IMAP DEBUG: AUTH: PLAIN
DEBUG: protocolConnect login, host=xxxxxxxxxxx, user=xxxxxxx, password=<non-null>
A1 AUTHENTICATE PLAIN
+
NzM0NjE1NTk5NAA3MzQ2MTU1OTk0AE5ld3Bhc3N3MHJk
A1 NO AUTHENTICATE failed.
caught exception: javax.mail.AuthenticationFailedException: AUTHENTICATE failed.
javax.mail.AuthenticationFailedException: AUTHENTICATE failed.
at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:566)
at javax.mail.Service.connect(Service.java:288)
at javax.mail.Service.connect(Service.java:169)
at edu.umich.mais.mail.testssl.main(testssl.java:59)
Please help!!! thanks in advance.

Hi,
NTLM is not supported by Java Mail , i am wondering how my previous Java mail 1.3.3 program worked with other mail server (not microsoft exchange server) and produced the following result which seemed to use AUTH=NTLM:
* OK IMAP4rev1 UMSG-WEB03.UMSG.xxxxx.umich.edu CTI2 interceptor 3.500016100 Service Ready
A0 CAPABILITY
* CAPABILITY IMAP4 IMAP4rev1 IDLE LOGIN-REFERRALS MAILBOX-REFERRALS NAMESPACE LITERAL+ UIDPLUS CHILDREN AUTH=NTLM
A0 OK CAPABILITY completed.
IMAP DEBUG: AUTH: NTLM
A1 LOGIN xxxxx xxxxxxx
A1 OK LOGIN completed.
A2 LIST "" INBOX
* LIST (\Marked \HasNoChildren) "/" INBOX
A2 OK LIST completed.
DEBUG: connection available -- size: 1
A3 EXAMINE INBOX
The IMAP4 capability of exchange server 2007 supporting AUTH mechanisms are as follows --
A0 CAPABILITY
* CAPABILITY IMAP4 IMAP4rev1 AUTH=NTLM AUTH=GSSAPI AUTH=PLAIN IDLE NAMESPACE LITERAL+
A0 OK CAPABILITY completed.
IMAP DEBUG: AUTH: NTLM
IMAP DEBUG: AUTH: GSSAPI
IMAP DEBUG: AUTH: PLAIN
If NTLM doesn't work with java mail , any other suggestions to make it work ??
Thanks

Similar Messages

  • Can't disable plain login on imap

    I'm trying to write a program that retrieves mail from an imap server. The user name and password won't validate. If I try to connect via pop3 it connects. The mail adminstrator says that I should be able to connect via imap and I am able to using Eudora. The mail adminstrator says we use a cleartext login. I am unable to force imap to use the login method. I have the following line in my properties file to disable Authentication plain.
              prop.put("mail.imap.auth.plain.disable",true);
    But it still tries to Authenticate plain. Can somebody tell me what I am doing wrong? Here is my code along with the stack trace.
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class ImapRead
         Properties prop = null;
         public ImapRead()
              prop = new Properties();
              prop.put("server", "mail.company.com");
              prop.put("mail.imap.host", "mail.company.com");
              prop.put("mail.imap.auth.plain.disable",true);
         public void imapRun()
              String host = prop.getProperty("server");
              String username = prop.getProperty("username");
              String password = prop.getProperty("password");
              try {
                   Authenticator auth = new MailAuthenticator();
                   Session session = Session.getInstance(prop,auth);
                   session.setDebug(true);
                   Store store = session.getStore("imap");
                   store.connect(host,username,password);
                   store.close();
              } catch (Exception ex) {
                   ex.printStackTrace();
                   System.exit(0);
         public static void main(String[] args)
              ImapRead mread = new ImapRead();
              mread.imapRun();
    Authenticator class
    mport javax.mail.*;
    import java.util.*;
    public class MailAuthenticator extends Authenticator
         public PasswordAuthentication getPasswordAuthentication()
              String username = "[email protected]";
              String password = "password";
              return new PasswordAuthentication(username,password);
    DEBUG: setDebug: JavaMail version 1.4
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc]
    DEBUG: mail.imap.fetchsize: 16384
    * OK IMAP4 Server (IMail 8.22)
    A0 CAPABILITY
    * CAPABILITY IMAP4 IMAP4rev1 UIDPLUS AUTH=CRAM-MD5 AUTH=PLAIN AUTH=LOGIN
    A0 OK CAPABILITY completed
    IMAP DEBUG: AUTH: CRAM-MD5
    IMAP DEBUG: AUTH: PLAIN
    IMAP DEBUG: AUTH: LOGIN
    DEBUG: protocolConnect login, host=mail.ikano.com, user=rlawtest, password=<non-null>
    A1 AUTHENTICATE PLAIN
    +
    cmxhd3Rlc3QAcmxhd3Rlc3QAcmxAdzczNTc=
    A1 NO AUTHENTICATE Invalid userid/password
    * OK IMAP4 Server (IMail 8.22)
    A0 CAPABILITY
    * CAPABILITY IMAP4 IMAP4rev1 UIDPLUS AUTH=CRAM-MD5 AUTH=PLAIN AUTH=LOGIN
    A0 OK CAPABILITY completed
    IMAP DEBUG: AUTH: CRAM-MD5
    IMAP DEBUG: AUTH: PLAIN
    IMAP DEBUG: AUTH: LOGIN
    DEBUG: protocolConnect login, host=mail.ikano.com, [email protected], password=<non-null>
    A1 AUTHENTICATE PLAIN
    +
    cmxhd3Rlc3RAbWFpbC5pa2Fuby5jb20Acmxhd3Rlc3RAbWFpbC5pa2Fuby5jb20AcmxAdzczNTc=
    A1 NO AUTHENTICATE Invalid userid/password
    javax.mail.AuthenticationFailedException: AUTHENTICATE Invalid userid/password
         at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:474)
         at javax.mail.Service.connect(Service.java:297)
         at javax.mail.Service.connect(Service.java:156)
         at com.ikano.mail.ImapRead.imapRun(ImapRead.java:37)
         at com.ikano.mail.ImapRead.main(ImapRead.java:61)

    Hi,
    I am trying experiencing a similar issue with IMAP and trying hard to disable AUTH: PLAIN.
    I set the property as follows with "xxxxxxxx...." shown below with right values:
    props.setProperty("mail.store.protocol","imaps");
         props.setProperty("mail.imap.auth.plain.disable","true"); -- "true" within quotes as yu see
         props.setProperty("mail.imap.host","xxxxxxxxxxx");
         props.setProperty("mail.imap.port","993");
         props.setProperty("mail.imap.user","xxxxxxx");
         props.setProperty("mail.imap.pwd","xxxxxx");
         props.setProperty("mail.imap.debug","true");
    Still i couldn't get AUTH:PLAIN disabled and trying to get AUTH:NTLM enabled.
    DEBUG: setDebug: JavaMail version 1.4.1
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc]
    DEBUG: mail.imap.fetchsize: 16384
    * OK Microsoft Exchange Server 2007 IMAP4 service ready
    A0 CAPABILITY
    * CAPABILITY IMAP4 IMAP4rev1 AUTH=NTLM AUTH=GSSAPI AUTH=PLAIN IDLE NAMESPACE LITERAL+
    A0 OK CAPABILITY completed.
    IMAP DEBUG: AUTH: NTLM
    IMAP DEBUG: AUTH: GSSAPI
    IMAP DEBUG: AUTH: PLAIN
    DEBUG: protocolConnect login, host=xxxxxxxxxxx, user=xxxxxxx, password=<non-null>
    A1 AUTHENTICATE PLAIN
    +
    NzM0NjE1NTk5NAA3MzQ2MTU1OTk0AE5ld3Bhc3N3MHJk
    A1 NO AUTHENTICATE failed.
    caught exception: javax.mail.AuthenticationFailedException: AUTHENTICATE failed.
    javax.mail.AuthenticationFailedException: AUTHENTICATE failed.
         at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:566)
         at javax.mail.Service.connect(Service.java:288)
         at javax.mail.Service.connect(Service.java:169)
         at edu.umich.mais.mail.testssl.main(testssl.java:59)
    Please help!!! thanks in advance.

  • Can't disable automatic login (wifi) in Mt. Lion 10.8.4

    Dear all, why i can't disable automatic login in Mt. Lion 10.8.4??
    i'm using a MBP 2.4Ghz/Intel core i5 / late 2011 model, running 10.8.4
    each time i turn the wifi on and select the name of network, it will automatically login without asking my password, (I just want it ask me for password every time coz i don't want the password stay on the computer!)
    and i had did the following already but the nightmare still go on, please kindly let me know if the issue can be fix? thanks a lot!!!
    1. network panel : click advance and remove all network names in the window, and unchecked the box "Remember networks this computer has joined".
    2. Security Panel : selected "Disable automatic login"
    3. Users & Groups panel : Automatic login : selected "off"
    4.inside the Library / Preferences folder : "com.apple.loginwindow.plist", "com.apple.airport.preferences.plist" & " NetworkInterfaces.plist" all are deleted
    thanks again!!!

    Open Keychain Access and locate the entry for the network logon, select the entry and press the Delete key. That will remove the password from your Keychain and the system will have to request your password to log onto the network. Note: keychain entries are securely encrypted so even if someone has access to your computer, it would be highly unlikely they would be able to retrieve the network password.

  • How can i disable remote login on a RV082 router?

    how can i disable remote login on a RV082 router?

    Please check the below link for configuration.
    http://sbkb.cisco.com/CiscoSB/GetArticle.aspx?docid=dc6301cd85194d7f967710344f16f990_General_Firewall_Setting_on_RV042_VPN_Router.xml&pid=2&converted=0

  • How can i disable my login?

    I'm trying to disable my login so that everytime i walk away from my computer briefly, i don't have to log back in.  i don't want to disable it for downloads though...

    I like this App, Caffeine. It overrides the sleep and screensaver settings with one simple click in the menubar.
    You can have it launch on startup, in either mode too (on or off).
    http://www.lightheadsw.com/caffeine/

  • [Solved]can't disable auto login after upgrade to gnome 2.28

    Prior to upgrading gnome to the latest version I had set gdm up to auto log me in. Since the upgrade I can't figure out how to disable auto login. I would like to be able to disable auto login, can anyone on here please help me out here? Thanks for any help provided.
    Last edited by daedalusman (2009-11-03 05:06:05)

    anonymous_user wrote:Look in your /etc/gdm/custom.conf file.
    Ah, thanks a bunch. This had been bothering me for awhile now, just finely got around to trying to fix it. Thanks again.
    Ranguvar wrote:
    You can't.  Using the advanced AI now in 2.28, GNOME has decided you are too stupid to log in yourself, and is now in User Protection Mode(TM).
    tongue xD
    Sorry, I have no constructive advice.  Just poking fun.
    No problem, you actually made me laugh out loud, so thanks for that.

  • How can I disable the login query in the music and podcast apps?

    This is really annoying. If I go to listen to something, I get a "Sign in to iTunes Store" and I have to find the Cancel button which is a pain in the car or in sunshine. I'd like to remove this permanently. Thanks

    Instead of canceling enter your passcode for your Apple ID. It should then stop asking.

  • Using Java mail API from JSPDynPage

    Hi Experts,
    I am working on a Portal Assignment that requiresto sent work flow mails on the basis of error conditions.
    Can u please suggest if at all I can use Java Mail APIs from JSP page within the JSP DYN Page Framework.
    If at all Java Mail can be used could u please suugest some help docs on the same.
    Thanks for the help.
    Manab C Ghosh
    EP Consultant
    Kolkata INDIA
    +919830603327

    Hi Experts,
    Thanks for all the responses to my Mail question(mailing from JSPDynPage).
    I have found the solution.
    Here is how I have got the things: (pls note there are other solns)
    Using Java Mail APIs;
    Create a Java file in the scr.core / src.api
    MailSender.java
    * Created on Jul 21, 2005
    * To change the template for this generated file go to
    * Window>Preferences>Java>Code Generation>Code and Comments
    package com.mailsend.test;
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.Multipart;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    * Edited on Jul 24, 2005
    * @author Manab C Ghosh
    public class MailSender {
         public String sendMessage(){
            String msg ="Hello mail Test";
            String smtpServer ="mySMTPServer";
            String smtpSender = "senderemailaddress";
            String smtpRecipient="receipientemailaddress";
            String stBody =  msg ;
            //String stDate = new Date().toString() ;
            String stSubject = "Mail Test ";
            Send(     smtpServer,          //SMTPServer
                      smtpSender,          //Sender
                      smtpRecipient,     //Recipient
                      stSubject,          //Subject
                      stBody               //Body
                        );               //Attachments                    
         return "Mail Success";
    public static void Send(String SMTPServer,
                                  String From,
                                  String To,
                                  String Subject,
                                  String msgText1
            // Error status;
            int ErrorStatus = 0;
            // create some properties and get the default Session
            Properties props = System.getProperties();
            props.put("mail.smtp.host", SMTPServer);
            Session session = Session.getDefaultInstance(props, null);     
            try {
                 // create a message
                 MimeMessage msg = new MimeMessage(session);
                 msg.setFrom(new InternetAddress(From));
                 InternetAddress[] address = {new InternetAddress(To)};
                 msg.setRecipients(Message.RecipientType.TO, address);
                 msg.setSubject(Subject);
                 // create and fill the first message part
                 MimeBodyPart mbp1 = new MimeBodyPart();
                 mbp1.setText(msgText1);
                 // create the Multipart and its parts to it
                 Multipart mp = new MimeMultipart();
                 mp.addBodyPart(mbp1);
                 //mp.addBodyPart(mbp2);
                 // add the Multipart to the message
                 msg.setContent(mp);
                 // set the Date: header
                 msg.setSentDate(new Date());
                 // send the message
                 Transport.send(msg);
            } catch (MessagingException mex) {
    Call this file from the JSP page (which is set at JSPDynPage controller)
    one important thing-----
    Create a dir under PORTAL-INF and import the following jars-- activation.jar, mail.jar,imap.jar,smtp.jar, mailapi.jar.
    This works..
    Thanks once again to the Experts.
    happy mailing
    Manab Ghosh.
    INDIA (+919830603327)

  • Reading Mail through Java Mail using IMAP

    When i tried to connect to IMAP server am getting the following error like Ntlm class not found
    Am using JAvaMAIL API version 1.4.3.
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/mail/auth/Ntl
    m
    at com.sun.mail.imap.protocol.IMAPProtocol.authntlm(IMAPProtocol.java:56
    1)
    at com.sun.mail.imap.IMAPStore.login(IMAPStore.java:667)
    at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:596)
    at javax.mail.Service.connect(Service.java:291)
    at javax.mail.Service.connect(Service.java:172)
    at FetchMailUsage.main(FetchMailUsage.java:35)
    Caused by: java.lang.ClassNotFoundException: com.sun.mail.auth.Ntlm
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    I searched this clas in the all the jar in the java mail api.Appreciate your earlier help

    I assume you're not actually trying to use NTLM authentication.
    A bug in JavaMail 1.4.3 can cause failures related to NTLM in some cases, although I don't think
    it should show up as the failure you're seeing. To work around, set the session property
    "mail.imap.auth.ntlm.disable" to "true".
    If that doesn't solve your problem, make sure you don't have more than one set of JavaMail
    classes in your CLASSPATH.

  • Mail can't get my mail via IMAP

    Apple Mail 6.6 does not connect to my Mail account via IMAP. It keeps telling me that my passwort is wrong however, it definitely is not.
    I can connect to my mail account (a gandi.net account) via thunderbird, via my android phone and via the terminal on my Mac. Any ideas what the problem might be?
    Thanx!

    Hi Barney,
    thanks for the answer.
    Connection doctor says passwort or username incorrect which is both impossibe. See details below.
    There is no entry in the keychain. Every time I want to get my mail, it asks me for my password over and over again even though I entered it in the preferences.
    INITIATING CONNECTION Sep 15 17:15:52.921  -- host:mail.gandi.net -- port:143 -- socket:0x0 -- thread:0x7fb39acec2c0
    INITIATING CONNECTION Sep 15 17:15:52.921  -- host:mail.gandi.net -- port:25 -- socket:0x0 -- thread:0x7fb39db2e270
    CONNECTED Sep 15 17:15:52.993 [kCFStreamSocketSecurityLevelNone]  -- host:mail.gandi.net -- port:143 -- socket:0x7fb39b8c0b30 -- thread:0x7fb39acec2c0
    CONNECTED Sep 15 17:15:52.999 [kCFStreamSocketSecurityLevelNone]  -- host:mail.gandi.net -- port:25 -- socket:0x7fb39d94aae0 -- thread:0x7fb39db2e270
    READ Sep 15 17:15:53.040 [kCFStreamSocketSecurityLevelNone]  -- host:mail.gandi.net -- port:143 -- socket:0x7fb39b8c0b30 -- thread:0x7fb39acec2c0
    * OK [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID ENABLE STARTTLS AUTH=PLAIN] Dovecot ready.
    WROTE Sep 15 17:15:53.046 [kCFStreamSocketSecurityLevelNone]  -- host:mail.gandi.net -- port:143 -- socket:0x7fb39b8c0b30 -- thread:0x7fb39e118650
    1.9 STARTTLS
    READ Sep 15 17:15:53.047 [kCFStreamSocketSecurityLevelNone]  -- host:mail.gandi.net -- port:25 -- socket:0x7fb39d94aae0 -- thread:0x7fb39db2e270
    220 relay4-d.mail.gandi.net ESMTP Postfix
    WROTE Sep 15 17:15:53.080 [kCFStreamSocketSecurityLevelNone]  -- host:mail.gandi.net -- port:25 -- socket:0x7fb39d94aae0 -- thread:0x7fb39db2e270
    EHLO [192.168.2.100]
    READ Sep 15 17:15:53.093 [kCFStreamSocketSecurityLevelNone]  -- host:mail.gandi.net -- port:143 -- socket:0x7fb39b8c0b30 -- thread:0x7fb39e118650
    1.9 OK Begin TLS negotiation now.
    READ Sep 15 17:15:53.126 [kCFStreamSocketSecurityLevelNone]  -- host:mail.gandi.net -- port:25 -- socket:0x7fb39d94aae0 -- thread:0x7fb39db2e270
    250-relay4-d.mail.gandi.net
    250-PIPELINING
    250-SIZE 25600000
    250-VRFY
    250-ETRN
    250-STARTTLS
    250-AUTH PLAIN LOGIN
    250-ENHANCEDSTATUSCODES
    250-8BITMIME
    250 DSN
    WROTE Sep 15 17:15:53.129 [kCFStreamSocketSecurityLevelNone]  -- host:mail.gandi.net -- port:25 -- socket:0x7fb39d94aae0 -- thread:0x7fb39db2e270
    STARTTLS
    WROTE Sep 15 17:15:53.152 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:mail.gandi.net -- port:143 -- socket:0x7fb39b8c0b30 -- thread:0x7fb39b8c0c50
    2.9 CAPABILITY
    READ Sep 15 17:15:53.181 [kCFStreamSocketSecurityLevelNone]  -- host:mail.gandi.net -- port:25 -- socket:0x7fb39d94aae0 -- thread:0x7fb39db2e270
    220 2.0.0 Ready to start TLS
    WROTE Sep 15 17:15:53.237 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:mail.gandi.net -- port:25 -- socket:0x7fb39d94aae0 -- thread:0x7fb39db2e270
    EHLO [192.168.2.100]
    READ Sep 15 17:15:53.288 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:mail.gandi.net -- port:143 -- socket:0x7fb39b8c0b30 -- thread:0x7fb39b8c0c50
    * CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID ENABLE SORT SORT=DISPLAY THREAD=REFERENCES THREAD=REFS MULTIAPPEND UNSELECT IDLE CHILDREN NAMESPACE UIDPLUS LIST-EXTENDED I18NLEVEL=1 CONDSTORE QRESYNC ESEARCH ESORT SEARCHRES WITHIN CONTEXT=SEARCH LIST-STATUS QUOTA AUTH=PLAIN
    2.9 OK Capability completed.
    WROTE Sep 15 17:15:53.295 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:mail.gandi.net -- port:143 -- socket:0x7fb39b8c0b30 -- thread:0x7fb39ac94a70
    3.9 ID ("name" "Mac OS X Mail" "version" "6.6 (1510)" "os" "Mac OS X" "os-version" "10.8.5 (12F37)" "vendor" "Apple Inc.")
    READ Sep 15 17:15:53.343 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:mail.gandi.net -- port:143 -- socket:0x7fb39b8c0b30 -- thread:0x7fb39ac94a70
    * ID NIL
    3.9 OK ID completed.
    WROTE Sep 15 17:15:53.360 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:mail.gandi.net -- port:143 -- socket:0x7fb39b8c0b30 -- thread:0x7fb39dd15c30
    4.9 AUTHENTICATE PLAIN
    READ Sep 15 17:15:53.373 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:mail.gandi.net -- port:25 -- socket:0x7fb39d94aae0 -- thread:0x7fb39db2e270
    250-relay4-d.mail.gandi.net
    250-PIPELINING
    250-SIZE 25600000
    250-VRFY
    250-ETRN
    250-AUTH PLAIN LOGIN
    250-ENHANCEDSTATUSCODES
    250-8BITMIME
    250 DSN
    WROTE Sep 15 17:15:53.389 [kCFStreamSocketSecurityLevelTLSv1SSLv3]  -- host:mail.gandi.net -- port:25 -- socket:0x7fb39d94aae0 -- thread:0x7fb39db2e270
    QUIT

  • How can I disable the Mail program from starting automatically on boot?

    Why everytime I start my computer, the Mail program start automatically?...how can I disable this?
    Thanks!

    Control-click its Dock icon and set it not to open at login, or remove it from the list of login items for your user account in the Accounts pane of System Preferences.
    (40415)

  • Can i use java mail APIs to read Unix mail

    hi
    can i use java mail APIs to read Unix mail?
    Unix has "mail" command which can be used to access mails on the Unix system.
    is it possible to execute mail & access unix mails remotely using POP/IMAP
    thanks in advance

    There are JavaMail providers that allow you to access the Unix mail spool files directly. Alternatively the standard JavaMail API can access a POP or IMAP server, if one is installed.

  • How can I disable Firefox from automatically opening on system startup on my Mac - unchecking the "open at login" does not work?

    We have Firefox 10.o on our Macbook Pro OS X 10.5.8. I prefer using Firefox as my browser but my husband prefers Safari for now because of a long history of bookmarks and saved information he doesn't have time to re-do. He is tired of Firefox automatically opening when we start up the laptop, and even when we uncheck the "open at login" it still opens at login every time. He is about to uninstall it because of this. How can we disable? It does NOT show up in our account on the Mac OS as an application that starts at login, so we can't disable it there.

    For those of you running Windows, I found this on another site. (Unfortunately, not before getting totally disgusted and switching to chrome.)
    1. click start (or the windows flag button at the bottom left) 2. in the "search programs and files" or the RUN dialog box, enter "msconfig.exe" or "msconfig". 3. That should open the system configuration program. 4. click the "Startup" tab at the top of the opened program. 5. Under the "startup item" column, look for Mozilla firefox. 6. uncheck that one. 7. Click OK or apply. 8. click "exit without restart". 9. you're good to go.

  • Can java mail be used for distributed exchange server?

    H,
    I am trying to connect to MS Exchange Server to read my mails using Java Mail API.
    I have a questions about using it with Exchange server.
    We have 6-7 exchange servers in our company and different users have mailboxes on different servers. My internet mail application will be used by everybody in the company.
    But while connecting to exchange server using java mail I can only cnnnect to one server and port. What happens when user mailbox is not on that server. How can I use javamail in this scenario where user mailboxes are on separate servers??
    Thanks
    [email protected]

    You said that you can connect to Exchange server my you help me with this because i cant connect to Exchange server, mayby you can post me a code example? Thanks

  • How can i access gmail's smtp server using java mail api

    i m using java mail api to access gmails pop and smtp service to receive and send mail from ur gmail account. I m able to access gmails pop server using the ssl and port 995 , but i can not use its smtp server to which i m connecting using ssl on 465 port. It requires authentication code.
    if anybody can help me in this regard i m thnkful to him/her.
    thnks in advance.
    jogin desai

    Here's an example of using SSL + Authentication
    http://onesearch.sun.com/search/onesearch/index.jsp?qt=ssl+authentication&subCat=siteforumid%3Ajava43&site=dev&dftab=siteforumid%3Ajava43&chooseCat=javaall&col=developer-forums

Maybe you are looking for

  • Wrong Exchange rate in PO

    Hi All While creating PO system automatically picking the exchange rate 44.17 (indirect quote) for Euro, which is maintained in OB08 under exchange rate type EURX. But in OB08 we have also maintained EUR exchange rate under exchange rate type "M" for

  • What is the Transtion Code in R/3 to see BAPI list

    Hi, Any body have idea how to see Available list of BAPI'S on backbend SAPR/3 System i want to import Plant Maintenance related BAPI to XI system thanks in advance. Thanks kiran.B

  • Registering custom payload

    First of all i had a media file from which i could generate a perfectly fine output when run from a local file. Then i finally managed to to configure the VLC-player as RTSP/RTP Server and tried to request that same media file via those protocols, Un

  • Can't change cell's type on a non-empty cell!

    Can't change cell's type on a non-empty cell! I need to empty cell, then change the type, then retype the value of a cell. Number 3 on Maverics. File was created on Numbers 2.3 Thank you.

  • Repeating same song one after another from same album.

    Hey there, I'm using my iPhone as a playlist for a Cinema I work in, on the iPhone it has some advertisements, but I want it so that it doesn't repeat another advert if it's just played one. How can I do this? Kind Regards