SMTP Bug in Mail using Gmail?

I have numerous gmail accounts set up in Mail and I've noticed some strange behavior since installing ML.  In Lion, I could click the reply button and the message would automatically be sent from the address the sender had initially sent it to. 
Now I've noticed since ML, I have to make sure to verify that the SMTP is the same as the account I'm sending from or else it will be sent from another gmail account besides the one the message was originally sent to.  I went into the account settings and made adjustments for every single gmail account and selected the same SMTP server as the selected account and checked the "use only this server box".
I sent several messages to someone earlier from the default account I normally use to correspond with them (let's call it gmail A) and when that person responded it went to the gmail account that somehow ML now thinks is the default account (gmail B) although I have Mail set up to "send new messages from the account of selected mailbox."
I noticed before I made the changes that the SMTP for all of the gmail accounts showed "Gmail (Offline)" which made me think that it was defaulting to any gmail account Mail could make a connection to, even though the following was the case:
I verified that went I sent the message that it was from the exact account I wanted it to be sent from (gmail A) and it is listed in "sent mail" as being sent from the desired account (gmail A) but the response came to gmail B and it showed that I'd originally sent it from gmail B, even though sent shows I sent it from gmail A.
I find it perplexing that Mail doesn't seem to stick to the same account like before and I do not want people to be receiving mail from me using that one particular address because I infrequently use that account.  I guess the only option is to disable it in Mail so that it's not active and be forced to access it on the Gmail site itself?
I'm thinking there is some kind of buggy behavior with Mail in ML and wondered if others are seeing something similar?
Just to make sure that I've made myself clear, this is what I am trying to say:
In other words, before ML, if I sent a message using Mail to someone from gmail acct X, their response would come back to me at X.  Now after ML, Mail will send gmail from Y or one of the other gmail numerous accounts I have, even though I have X selected in the inbox.  After making adjustments to attempt to "force" gmail X to use SMTP server X, I have noticed that an outgoing message was sent from X but the reply came back to Y.
I'm just curious if anyone else has managed to fix a similar problem?

I guess I wasn't hallucinating since an article was just written about this very issue:
http://www.mcelhearn.com/2012/08/02/bug-in-mountain-lion-mail-sends-replies-usin g-incorrect-accounts/
[quote]
I’m on a few e-mail mailing lists, and I’ve noticed that Mail, in OS X 10.8, has been doing something odd. Generally, if you have multiple e-mail accounts, when you reply to a message, your reply uses the same account the message was sent to. But I’ve been finding that Mail does not correctly choose the account, and have seen a number of messages bouncing because the selected account is not a member of the mailing lists.
[/quote]

Similar Messages

  • How do I send e-mail using gmail?

    How do I send an e-mail using gmail?

    Via your GMail account that you setup on your iPad.
    Or using webmail with a browser.

  • Can't send mail using gmail in Mail 2.1.3 (OSX 10.4.11)

    Hi, it seems like I can receive mail but I get the following error message when I try to send mail:
    Cannot send message using the server (null)
    The server response was: 5.7.0 From address is not one of your address
    I did set up the account information for outgoing mail server (smtp): smtp.gmail.com: username
    CAn anyone help me?

    Hi, did you set up according to these Standard instructions:
    http://mail.google.com/support/bin/answer.py?hl=en&answer=13287
    Especially the...
    Please note that if your client does not support SMTP authentication, you won't be able to send mail through your client using your Gmail address.
    Also, if you're having trouble sending mail but you've confirmed that encyrption is active for SMTP in your mail client, try to configure your SMTP server on a different port: 465 or 587.

  • Javamail using Gmail SMTP 465 port!

    I am trying to send mail using JAVAMAIL API with GMAIL SMTP on port 465.
    Now, I setup my outlook smtp.gmail.com with port 465 and I was able to send e-mail using outlook. So, I am sure it can be done using javamail as well. However, when I tried the same with javamail, I keep getting the following authentication error: Coud someone please let mne know how to get rid of this error and make my code work?I appreciate your help.
    Thanks,
    Venkat
    Error:
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Su
    n Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth false
    DEBUG SMTP: trying to connect to host "smtp.gmail.com", port 465, isSSL false
    220 mx.gmail.com ESMTP i20sm2352180wxd
    DEBUG SMTP: connected to host "smtp.gmail.com", port: 465
    EHLO vkat
    250-mx.gmail.com at your service
    250-SIZE 20971520
    250-8BITMIME
    250-AUTH LOGIN PLAIN
    250 ENHANCEDSTATUSCODES
    DEBUG SMTP: Found extension "SIZE", arg "20971520"
    DEBUG SMTP: Found extension "8BITMIME", arg ""
    DEBUG SMTP: Found extension "AUTH", arg "LOGIN PLAIN"
    DEBUG SMTP: Found extension "ENHANCEDSTATUSCODES", arg ""
    DEBUG SMTP: use8bit false
    MAIL FROM:<[email protected]>
    530 5.7.0 Authentication Required i20sm2352180wxd
    com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.0 Authentication Required i20sm2352180wxd
    at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1333)
    Following is the snippet of my code:
    Properties p = new Properties();
    p.put("mail.smtp.user", "[email protected]");
         p.put("mail.smtp.host", mailhost);
         p.put("mail.smtp.port", "465");
         p.put("mail.smtp.starttls.enable","true");
         p.put( "mail.smtp.auth ", "true ");
         p.put("mail.smtp.debug", "true");
         p.put("mail.smtp.socketFactory.port", "465");
    p.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
    p.put("mail.smtp.socketFactory.fallback", "false");
         SecurityManager security = System.getSecurityManager();
    System.out.println("Security Manager" + security);
    try {
         Authenticator auth = new SMTPAuthenticator();
              Session session = Session.getInstance(p, auth);
              session.setDebug(true);
         //session = Session.getDefaultInstance(p);
              MimeMessage msg = new MimeMessage(session);
              msg.setText(text);
              msg.setSubject(subject);
              Address fromAddr = new InternetAddress("[email protected]");
              msg.setFrom(fromAddr);
              Address toAddr = new InternetAddress(_to);
              msg.addRecipient(Message.RecipientType.TO, toAddr);
              System.out.println("Message: " + msg.getContent());
              Transport.send(msg);
    catch (Exception mex) {            // Prints all nested (chained) exceptions as well
    System.out.println("I am here??? ");
              mex.printStackTrace();
    private class SMTPAuthenticator extends javax.mail.Authenticator {
              public PasswordAuthentication getPasswordAuthentication() {
                   return new PasswordAuthentication("[email protected]", "xxxxxxxxxxx"); // password not displayed here, but gave the right password in my actual code.
         }

    Hi!
    I tried the following code:
    String mailhost = "smtp.gmail.com";
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    Properties props = new Properties();
    props.setProperty("mail.transport.protocol", "smtp");
    props.setProperty("mail.host", mailhost);
    props.put("mail.smtp.auth", "true");
    props.put("mail.smtp.port", "465");
    props.put("mail.smtp.socketFactory.port", "465");
    props.put("mail.smtp.socketFactory.class",
    "javax.net.ssl.SSLSocketFactory");
    props.put("mail.smtp.socketFactory.fallback", "false");
    props.setProperty("mail.smtp.quitwait", "false");
    Session session = Session.getDefaultInstance(props, new javax.mail.Authenticator() {
    protected PasswordAuthentication getPasswordAuthentication() {
    return new PasswordAuthentication("username", "password");
    MimeMessage message = new MimeMessage(session);
    message.setSender(new InternetAddress(from));
    message.setSubject("test");
    message.setContent("hello!", "text/plain");
    InternetAddress[] addressTo = new InternetAddress[recipients.length];
    for (int i = 0; i < recipients.length; i++)
    addressTo[i] = new InternetAddress(recipients);
    message.setRecipients(Message.RecipientType.TO, addressTo);
    Transport.send(message);
    } catch (AddressException ex) {
    ex.printStackTrace();
    out.print(ex);
    } catch (MessagingException ex) {
    ex.printStackTrace();
    out.print(ex);
    }catch(Exception ex){
    out.print(ex);
    But I get following error:
    javax.mail.AuthenticationFailedException: 535-5.7.1 Username and Password not accepted. Learn more at 535 5.7.1 http://mail.google.com/support/bin/answer.py?answer=14257 b12sm2275215rvn.22
    Kindly let me know the code to send mails using Gmail SMTP server through JavaMail. I am using Win XP.
    The JavaMail code which was working in Win 7 is:
    try {          
    String username=null;
    String password=null;
    boolean debug = true;
    //Set the host smtp address
    Properties props = new Properties();
    //props.put("mail.smtp.host", "smtp.live.com");
    String host="smtp.gmail.com";
    props.put("mail.smtp.auth", "true");
    //props.put("mail.smtp.port","587");
    // props.put("mail.smtp.port","465");
    //props.put("mail.smtp.port","995");
    //props.put("mail.smtp.port","8084");
    // Authenticator a1= new PopupAuthenticator();
    // create some properties and get the default Session
    Session session1 = Session.getDefaultInstance(props, null);
    session1.setDebug(debug);
    // create a message
    Message msg = new MimeMessage(session1);
    // set the from and to address
    //InternetAddress addressFrom = new InternetAddress(from);
    //msg.setFrom(addressFrom);
    InternetAddress[] addressTo = new InternetAddress[recipients.length];
    for (int i = 0; i < recipients.length; i++)
    addressTo[i] = new InternetAddress(recipients[i]);
    msg.setRecipients(Message.RecipientType.TO, addressTo);
    // Setting the Subject and Content Type
    msg.setSubject("test");
    msg.setContent("hello!", "text/plain");
    //msg.setText(message);
    //Transport.send(msg);
    username = from;
    password = pwd;
    Transport t = session1.getTransport("smtps");
    try {
    t.connect(host, username, password);
    //t.connect(host, username);
    msg.saveChanges();
    t.sendMessage(msg, msg.getAllRecipients());
    catch (Exception ex) {
    //ex.printStackTrace();
    out.println(ex);
    finally {
    t.close();
    } catch (Exception ex) {
    ex.printStackTrace();
    out.println(ex);
    /* Email Sent*/
    Unfortunately this code does not work in Win XP. Following exception is generated in Win XP:
    javax.mail.MessagingException: can't determine local email address
    It wuld be great if somebody could help me out with this issue in Win XP asap.

  • Multiple POP/SMTP Accounts Bug - Mail uses wrong 'from' address

    I've be scratching my head over this but can't see anything else wrong so I figure it must be a bug with Mail 4.2:
    I have multiple POP3/SMTP accounts configured, lets say:
    [email protected], to receive on pop.blah1.com and send on smtp.blah1.com
    [email protected], to receive on pop.blah2.com and send on smtp.blah2.com
    If I create emails sourced from [email protected], they are sent just fine.
    However if I try to email from [email protected], I get a pop-up telling me that smtp.blah2.com is offline and I need to select another SMTP server.
    I checked the server settings a hundred times over and also resorted to telnetting to port 25 of blah2.com to ensure it was full working (yes it was!).
    [Even Connection Doctor thinks the servers are all good]
    So next I try telling emails sourced from [email protected] to send via smtp.blah1.com - Eureka, it works!
    But this is a little odd - so I check the received email headers and compare these with the 'Sent' header.
    It appears that mail thinks its sending the email from [email protected] but the email actually ends up being sourced from [email protected]!
    So I can only presume that Mail is marking the smtp.blah2.com server as down because it is trying to use the wrong source address when sending a message and therefore being refused by the SMTP relay.
    Has anyone else seen this?

    Thanks chaps,
    The other accounts are direct POP3/SMTP to my hosted servers - they are not passing through GMail and so it couldn't cause the issue.
    I have, however, found the problem inadvertently while trying to run a comparison with Thunderbird - the good news is, its not Mail as such, though it does raise a couple of other questions...
    Basically, whichever SMTP server is running on my hosted servers, it does not allow a message with no text in the body, while Google's SMTP implementation clearly does.
    As my test messages only had a subject line, they were failing on my servers but working OK with GMail.
    The questions therefore are:
    1. Shouldn't Mail pad an empty message to ensure it goes (MS Outlook works fine with empty messages but interestingly Thunderbird also doesn't)
    2. Even assuming its OK to use GMail's SMTP as a relay, shouldn't Mail use the correct source address rather than making it look like the emails came from my GMail account?
    - I'm not sure if this is 'allowed' with modern SMTP from a security perspective but I think that some services support it.
    Thanks for all your input!
    J

  • Apple Mail and gmail bug when sending attachment?

    Hi,
    And now for my own Mail question. Wondering if others have run into this bug?
    Mac OS 10.5 MacBook Pro.
    There seems to be a bug when trying to send Mail with an attachment (via a gmail account).
    Over and over, Mail just hangs there.
    But it works when:
    1. Using Mail, the same email can be sent when I Remove the attachment.
    2. Skipping Mail, and using gmail itself, the email and attachment are sent within seconds.
    2. Email with attachment can also be sent from another email service (such as Earthlink).
    Only when I am using Apple Mail, sending via gmail, With an attachment, is there a hitch.
    Thanks again for your attention,
    - Ross

    Perhaps this problem is confined to Mail 3.0 and later, and Leopard. I cannot send attachments using gmail as the smtp server. I can log in to my gmail account, download an attachment, and send, with no problem as Ross has experienced. I get an eternal hang when trying to send the same message with an attachment from Mail. Any solutions yet? Thanks!

  • Getting error when sending SMTP mail using javamail api

    hi all
    i am new to javamail api...and using it first-time....i'v used the following code
    <%
    String mailHost="mail.mastsale.com";
    String mailText="Hello this is a test msg";
    String to="<a href="mailto:[email protected]">[email protected]</a>";
    String subject="jsp test mail";
    try
    String from="<a href="mailto:[email protected]">[email protected]</a>";
    String mailhost = "mail.mastsale.com";
    Properties props = System.getProperties();
    props.put("mail.smtp.host", mailhost);
    // Get a Session object
    Authenticator auth = new SMTPAuthenticator( "<a href="mailto:[email protected]">[email protected]</a>", "abcd" );
    Session session1 = Session.getInstance(props,auth);
    //Session.setDebug(true);
    //construct message
    Message msg = new MimeMessage(session1);
    msg.setFrom(new InternetAddress(from,"Your Name"));
    msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse(to, false));
    msg.setSubject(subject);
    msg.setText(mailText);
    //msg.setHeader("X-Mailer",mailer);
    msg.setSentDate(new Date());
    msg.saveChanges();
    //Send the message
    out.println("Sending mail to " + to);
    Transport.send(msg);
    catch (MessagingException me)
    out.println("Error in sending message for messaging exception:"+me);
    %>
    and
    SMTPAuthenticator.java
    import java.io.*;
    import java.util.*;
    import java.lang.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class SMTPAuthenticator extends javax.mail.Authenticator {
    private String fUser;
    private String fPassword;
    public SMTPAuthenticator(String user, String password) {
    fUser = user;
    fPassword = password;
    public PasswordAuthentication getPasswordAuthentication() {
    return new PasswordAuthentication(fUser, fPassword);
    Now getting error as: Error in sending message for messaging exception:javax.mail.SendFailedException: Invalid Addresses; nested exception is: com.sun.mail.smtp.SMTPAddressFailedException: 550-(host.hostonwin.com) [208.101.41.106] is currently not permitted to relay 550-through this server. Perhaps you have not logged into the pop/imap server 550-in the last 30 minutes or do not have SMTP Authentication turned on in your 550 email client.
    Can anyone help me?

    i got the following error while using the below code,
    -----------registerForm----------------
    DEBUG: setDebug: JavaMail version 1.3.2
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth true
    :::::::::::::::::::::::::::::::::<FONT SIZE=4 COLOR="blue"> <B>Error : </B><BR><HR> <FONT SIZE=3 COLOR="black">javax.mail.AuthenticationFailedException<BR><HR>
    -----------registerForm----------------
    public class SendMailBean {
    public String send(String p_from, String p_to, String p_cc, String p_bcc,
    String p_subject, String p_message, String p_smtpServer,String FilePath) {
    String l_result = "";
    // Name of the Host machine where the SMTP server is running
    String l_host = p_smtpServer;
    //for file attachment
    String filename = FilePath;
    // Gets the System properties
    Properties l_props = System.getProperties();
    // Puts the SMTP server name to properties object
    l_props.put("mail.smtp.host", l_host);
    l_props.put("mail.smtp.auth", "true");
    // Get the default Session using Properties Object
    Session l_session = Session.getDefaultInstance(l_props, null);
    l_session.setDebug(true); // Enable the debug mode
    try {
    MimeMessage l_msg = new MimeMessage(l_session); // Create a New message
    l_msg.setFrom(new InternetAddress(p_from)); // Set the From address
    // Setting the "To recipients" addresses
    l_msg.setRecipients(Message.RecipientType.TO,
    InternetAddress.parse(p_to, false));
    // Setting the "Cc recipients" addresses
    l_msg.setRecipients(Message.RecipientType.CC,
    InternetAddress.parse(p_cc, false));
    // Setting the "BCc recipients" addresses
    l_msg.setRecipients(Message.RecipientType.BCC,
    InternetAddress.parse(p_bcc, false));
    l_msg.setSubject(p_subject); // Sets the Subject
    // Create and fill the first message part
    MimeBodyPart l_mbp = new MimeBodyPart();
    //123
    ///////l_mbp.setText(p_message);
    l_mbp.setContent(p_message,"text/html");
    // Create the Multipart and its parts to it
    Multipart l_mp = new MimeMultipart();
         //l_mp.setContent(html,"text/html");
    l_mp.addBodyPart(l_mbp);
    // Add the Multipart to the message
    l_msg.setContent(l_mp,"text/html");
    // Set the Date: header
    l_msg.setSentDate(new Date());
    //added by cibijaybalan for file attachment
         // attach the file to the message
    //Multipart l_mp1 = new MimeMultipart();
         if(!filename.equals(""))
                   String fname = filename;
                   MimeBodyPart mbp2 = new MimeBodyPart();
                   FileDataSource fds = new FileDataSource(fname);
                   mbp2.setDataHandler(new DataHandler(fds));
                   mbp2.setFileName(fds.getName());
                   l_mp.addBodyPart(mbp2);
              // add the Multipart to the message
              l_msg.setContent(l_mp);
    //ends here
         l_msg.setSentDate(new java.util.Date());
    // Send the message
    Transport.send(l_msg);
    // If here, then message is successfully sent.
    // Display Success message
    l_result = l_result + "Mail was successfully sent to : "+p_to;
    //if CCed then, add html for displaying info
    //if (!p_cc.equals(""))
    //l_result = l_result +"<FONT color=green><B>CCed To </B></FONT>: "+p_cc+"<BR>";
    //if BCCed then, add html for displaying info
    //if (!p_bcc.equals(""))
    //l_result = l_result +"<FONT color=green><B>BCCed To </B></FONT>: "+p_bcc ;
    //l_result = l_result+"<BR><HR>";
    } catch (MessagingException mex) { // Trap the MessagingException Error
    // If here, then error in sending Mail. Display Error message.
    l_result = l_result + "<FONT SIZE=4 COLOR=\"blue\"> <B>Error : </B><BR><HR> "+
    "<FONT SIZE=3 COLOR=\"black\">"+mex.toString()+"<BR><HR>";
    } catch (Exception e) {
    // If here, then error in sending Mail. Display Error message.
    l_result = l_result + "<FONT SIZE=4 COLOR=\"blue\"> <B>Error : </B><BR><HR> "+
    "<FONT SIZE=3 COLOR=\"black\">"+e.toString()+"<BR><HR>";
    e.printStackTrace();
    }//end catch block
    //finally {
    System.out.println(":::::::::::::::::::::::::::::::::"+l_result);
    return l_result;
    } // end of method send
    } //end of bean
    plz help me

  • After installing the new Yosemite OS on my iMac I can no longer send email. I can receive email, but not send. I use gmail and can send email on the gmail (google) site, but not on "mail" on my iMac. Any others with this problem? What should we do?

    After installing the new Yosemite OS on my iMac I can no longer send email. I can receive email, but not send. I use gmail and can send email on the gmail (google) site, but not on "mail" on my iMac. Any others with this problem? What should we do?

    My gmail, which is correctly configured for Mail with gmail SMTP and Google IMAP, works for awhile on Mail, which I leave open while working on other applications. But several times a day I get msg from Google: "We recently blocked a sign-in attempt to your Google Account" . . . and requiring me to verify my account details, re-enter passwords, confirm security settings (or change them from "disable" to "enable less secure methods" and so on). In Mail I also have tried "taking all accounts online", and re-entering my gmail password inside Mail account settings. These steps successfully re-set comms between gmail and Mail ... for awhile, then it happens again. Enough occurrences over a work day that I just quit Mail and revert to accessing gmail directly. Apple Care advisor and an Apple knowledge base article say that Apple can't deal with this, as gmail is third-party app, and they refer me to gmail, and so far I've found nothing helpful there.
    From today I also have several instances of a window saying "Mail has unexpectedly closed" and asking me to Re-open it.
    I also use Yahoo mail, which stops working with Mac Mail at the same time as gmail, but I do not receive notices to re-verify from Yahoo.
    I recently upgraded from Mavericks to Yosemite. The Mail problem happened occasionally with Mavericks but is far more frequent with Yosemite.

  • I want to use Gmail with ACT! by Sage. Can I configure Firefox 3.6 to use POP3 and SMTP features of Gmail so I can send emails directly from ACT!? Thank you.

    # 1: I am quite unsophisticated with digital technology--some would call me ignorant in this regard, just so you know.
    I use contact manager ACT! by Sage. I have upgraded to a version that allows emailing from within the ACT! application. I would like to use my gmail account and Firefox to send emails from ACT! The people at ACT! say I can use any email service that offiers POP3 and SMTP. I checked and gmail has both. However, gmail says that they do not have instructions for configuring Mozilla Firefox for use with (if I understand correctly) gmail's POP3 and SMTP. So what I want to know is: has anyone done the ACT1, gmail, Firefox connecting and can they send me step-by-step instructions on how to do it? Thank you.

    Thanks. I've made progress. I have set up ACT! to to use my gmail account. But a problem arose. Do you know if ACT! is set up for SSL related to POP3? I completed the first two items on the test email and failed the last two.
    Also, I went back to Tools Preferences E-mail tab and clicked E-mail system set up the window is blank (my gmail account is gone) and I cannot get to Page 3.
    Any thoughts?

  • Please help with setting up native mail app using Gmail with alternate email address

    I have an alternative email address setup such as [email protected] configured to use with my online Gmail account.  In the online account, I use the alternate email services smtp server so emails are sent correctly from that alias.
    Is there a way to setup the native mail app to use Gmail for mail, contacts, and calendar and use an alternate email address as the sender?  Right now I am syncing contacts and the calendar through the native mail app and using the Gmail mail app for my email.  It allows you to select from all of the emails setup on the Gmail account. 
    But for simplicity sake, I would like to consolidate to the native email app for all of my accounts - I also have an Exchange based work account.
    Thank you for the help.

    iCloud Help
    Creating an iCloud account- Frequently Asked Questions
    Apple IDs and iCloud
    iCloud: What version of Windows software am I using for iCloud?

  • How to configure sap to use gmail as smtp server?

    Hi experts,
    I need to know how to configure gmail as my smtp server. In the scot transaction I don't see anywhere where to specify whether it is a ssh connection, ports for secure smtp, username, password.
    Does anyone know how to configure sap to use gmail as the smtp server?
    I've seen some similar threads about this, but they are of no help. Although they are classified as answered, in most cases the reason they are answered is because the person who made the query dropped the cause trying to make it work. I'd like to know for sure is this is possible or not.

    Hi Camilo,
    You can't set up gmail as your smtp server to handle this. gmail is an email server which generally are based on POP protocol. now for SAP to send mail to gmail, you would need one SMTP capable server which can relay those message received from SAP to configured email address.
    As of WAS 6.10 SAP kernel supports SMTP without more components. i.e e-mails can be sent (or received) from the SAP system to each SMTP-compatible mail server. see SAP note 455140 for more details.
    Hope this clarifies your doubt.
    http://en.wikipedia.org/wiki/SMTP_server
    Regards,
    Debasis.

  • Scan to email using gmail as SMTP

    I have an HP Office Jet Pro 8600 N911g printer.  I have this currently setup with the scan to network folder working great.  I would like to set the scan to email.  As the corporate office uses exchange I have to use another service for SMTP.  I setup a Gmail account and puched in the appropriate settings, but the unit fails to connect to gmail.  I've tried multiple ports without success, I've also tried setting up the email server settings, again trying multiple ports without success.  I've tried using every combination using SSL and SMTP authentication, but nothing seems to connect.
    Does gmail actually work, I've seen some say yes, others say no.  Is there another service that would work outside my corporate network or do I need to setup an internal email server, just so I can scan to emails?
    This question was solved.
    View Solution.

    Hi,
    Try following the exact steps below and check if that may help:
    Click the network setting on the printer and locate its IP Address.
    Type that IP  from the browser on your PC to access its EWS page.
    Click the Scan tab.
    Under Scan to E-mail click Outgoing Email Profiles.
    Click New.
    Type your email address and any selected Display name, then click Next.
    Note: be sure to take a note of the specific Display Name.
    Fill the mail settings as following:
    - smtp.gmail.com
    - 465
    - Check the box next to SSL
    - Check the box next to the SMTP Authentication option
    - Type your full gmail address as teh user name and type the gmail password.
    Click Next and dontinue following the steps till teh Summary, then click Save and Test.
    If the Test fails for any connectivity issue continmue following the steps below:
    Click the Network tab.
    Under the active connection type section click IPv4 (Wired / Wireless).
    Keep the IP Address Configuration as exists, under the DNS Address Configuration check the box next to Manual DNS Server.
    Set the Preferred DNS as 8.8.8.8
    Set the Alternate DNS as 8.8.4.4
    Click the Scan tab and click on Outgoing Email Profiles again.
    Click the Test button next to the Display Name configured earlier and check foir any difference.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • CQ mail configuration using GMail ssl

    Hi ,
    I done all configurations in Apache console Day cq Mail service .
    smtp.gmail.com
    465
    ssl= true
    username
    password
    .fromaddress
    1. Can you help me, how can i get those configurations in my class.
    2. For that i followed
    http://blogs.adobe.com/learningwem/2011/11/27/cq5-4-workflow-process-to-send-an-email-usin g-messagegateway/
    But i am getting messageGatewayService is null in error log.
    Regards
    Ravindra

    Hi Sharam, thank you for using our forum, my name is Johnnatan I am part of the Small business Support community. I apologize for the delay of this response; this information could help you, I will share with you a link from other forum explaining why SMTP doesn´t work with gmail . https://supportforums.cisco.com/thread/2101910
    I hope you find this answer useful,
    *Please mark the question as Answered or rate it so other users can benefit from it"
    Greetings,
    Johnnatan Rodriguez Miranda.
    Cisco Network Support Engineer.

  • I am running OS10.6.8 and have a mail box duplication. I use gmail and when I open my mail I have both the Apple Mail and another set of boxes for Gmail. Both get all mail and when I delete from one, it deletes from the other. How can I get rid of the dup

    I am running OS10.6.8 and have a mail box duplication. I use gmail and when I open my mail I have both the Apple Mail and another set of boxes for Gmail. Both get all mail and when I delete from one, it deletes from the other. How can I get rid of the dup

    Hi,
    According to your descriptioin, I don't think this is system problem, it should be Intel driver problem. It would be contact Intel to confirm this issue whether this is their driver problem.
    Roger Lu
    TechNet Community Support

  • How to Use Gmail With Apple's Mail?

    Answer:
    Now Itis not a Problem, Please go to this link and know how to solve this problem, Ihave configuir this in my mac pro. Have enjoy.
    http://picturemuseum.blogspot.com/2011/08/how-to-use-gmail-with-apple-mail.html
    http://mobilesuggestion.blogspot.com/2011/08/how-to-use-gmail-with-apples-mail.h tml

    I notice that it's possible to have sticky posts in these forums. See
    http://forum.java.sun.com/forum.jspa?forumID=534
    the Concurrency forum for an example. Posting a link to the FAQ in a sticky post might reduce the number of FAQs asked here by maybe 1%? Or posts like this one might do well as a sticky?

Maybe you are looking for

  • Error running Reports 6i using OAS4.0.8

    Hi, We have the following architecture: 1. DB Server - Oracle 8.1.7 on W2K server 2. Reports Server - Oracle Reports Server 6.0.8 on W2K server 3. Web Server - OAS 4.0.8 on W2K server When trying to execute report over the web (using Web CGI setup),

  • How do I re-register my MacBook in my name, rather than the previous owner?

    I just purchased a older MacBook, i've reinstalled the OS X Yosemite and did the whole factory reset thing, the previous owner's account, apps and information has all been completely wiped.. How ever I think the MacBook is still some how registered t

  • Wierdness w/ Runtime().getRuntime().exec between 8.1.6 and 8.1.7

    A Java SP that executes OS commands runs fine in 8.1.6, but doesn't run in 8.1.7 when a window is generated as a result of the call. The Java class follows: package com.crtinc.oracle.util.osrun; import java.io.*; public class SimpleRunner extends Obj

  • Af:tree skin selectors in JDeveloper 10.1.3.3

    Hi, i've read that in JDeveloper release 10.1.3.3 the af:tree component can now be skinned. Does anyone know of any documentation or examples in relation to this? The af:treeTable component is documented in http://www.oracle.com/technology/products/j

  • How to make your application multilanguage

    Hi, i have an application under jdev 11g that uses resources bundle for the multilanguage. In my main page the user can choose the language to see. <af:selectOneChoice id="language" value="#{view.locale}" contentStyle="width:16em;"> <f:selectItems va