Which name do I fill in for smtp server

for iCloud, which name have I to fill in for smtp

On your mac or iOS device, just begin by creating a new email account in the email client's preferences or settings and be sure to choose "icloud" for the type of account.  the smtp info is filled in automatically.

Similar Messages

  • Apple mail losing password for smtp server

    Macbook Pro 2.6ghz intel core 2 due 4 gb 667mhz ddr2 sdram OS X 10.5.7
    sbcglobal is mail server they are att.
    Must use password to retrieve and send email.
    Losing password for smtp server.
    Is it keychain or what?
    keychain is a PITB.
    thanks.

    Hi Linda,
    Launch the Mail application. Then from the Mail Menu Bar, click Mail/Preferences. Select the Accounts tab and then click the Account Information tab. Where you see: Incoming Mail Server ... make sure you password is available. It will be encrypted so all you will see are dots. If the field is empty, type in your password and close the Preferences window. The next time you send Mail, it might ask for the password but only to add to your Keychain. It shouldn't ask for it again.
    Hopefully that will do the trick...
    Carolyn

  • Adding authentication details for SMTP server?

    Hi,
    I know that I need to put the SMTP server name into fr_global.properties as follows:
    SMTPMailServer=serverName
    But does anyone know how to specify a username/password to log into the SMTP server?
    Thanks!

    I have installed Application Server 10g, Web Cache. I am facing the following problems regarding authentication...
    1) I am trying to open the server console, but it is asking for authentication details....(Username & Password)..what values must be used here?
    admin/welcome1 typically.
    2)I tried to open SQLPLUS that came along with 10g installation.But am not able to enter becoz of authentication failure. (Username, Password & Hoststring)??
    b2b/b2b or sysdba
    3)While triyng to install Oracle Integration B2B, it is asking for 4 parameters...
    (b2b Schema password...host:port...Servicename...ias_admin password)..
    b2b (please unlock the b2b user)
    b2b
    port : 1521
    servicename: Database service name
    ias_admin password : password given for midtier installation.

  • Settings for SMTP server

    Hi Team,
    Our SMTP server is not ready.. Can anyonne help me to setup the server.
    Thank you very much inn advance
    Hari

    Do you have a mail server (not SAP) that SAP app server can connect to (over network)?
    If yes, you can do it; if not you need to have a mail-server first.
    - SICF - activate the SMTP host/service
    - SCOT - follow the SMTP config section of this <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/5889">weblog</a>
    This is all you need to do.

  • How do I add an automatic user name and password fill-in for a website

    When first visiting a website that requires a login, Firefox provides an option to remember the login/password for the site. If this option isn't selected the first time, how does one get Firefox to remember the login/password at a later date?

    If you clicked "Not now" then Firefox will ask again on the next visit to that log in page.<br />
    If you clicked "Never" then you create an exception and you need to remove that exception.
    You can remove exceptions here: Tools > Options > Security: Passwords: Exceptions
    See also [[Remembering passwords]]
    http://kb.mozillazine.org/User_name_and_password_not_remembered

  • How to get SMTP server name and SMTP port

    hi
    i need to send a report to the use to his mail id
    while configuring the ibot in mail tab it is asking for SMTP server ,and SMTP port
    how we can get these two,.... ?:(
    do i have to purchase from vendors, can any one please tell me the process
    really i don;t knw, please help me out
    Thanks in advance

    Hi,
    To configure the Mail Server u need to have SMTP server details, which your using as the mail server,either from vendor side or u can use your's domain.For your info iam pasting the Gmail Smtp server details here,
    Incoming Mail (POP3) Server - requires SSL:      pop.gmail.com
    Use SSL: Yes
    Port: 995
    Outgoing Mail (SMTP) Server - requires TLS or SSL:      smtp.gmail.com (use authentication)
    Use Authentication: Yes
    Port for TLS/STARTTLS: 587
    Port for SSL: 465
    Account Name:      your full email address (including @gmail.com or @your_domain.com)
    Email Address:      your email address ([email protected] or username@your_domain.com)
    Password:      your Gmail password
    Thanks,
    Kumar.

  • SMTP Server Name

    Good Morning:
    I am installing Mid Tier of OCS. Could you guys give more information about the SMTP Server Name asked during installation: guidelines says: "SMTP server name for Subscriber Administrator and Users access thier passwords and log into Oracle Files". Should be this Server name the same host in wich I am installing MNidTier, or ?
    Thanks in advance for any explanation.

    Hi!
    This is asked during the files configuration. The files component will send out an email to the admin when users are synchronized and when other issues arise in the files environment. The mail server could be the one you just installed but you might choose a different one as well.
    cu
    Andreas

  • Need Authentication for SMTP Access

    I have this Java program (SendMail.java) for sending email; however, my ISP requires authentication for SMTP server access, i.e. I receive a 550 Authentication Required error. Does anyone know how to go about coding authentication into a program like SendMail so that the userID and password can be sent back to the server?
    * SendMail.java
    * Created on July 13, 2005, 8:09 PM
    * To change this template, choose Tools | Options and locate the template under
    * the Source Creation and Management node. Right-click the template and choose
    * Open. You can then make changes to the template in the Source Editor.
    * @author Owner
    // SendMail by Tony Swain.
    // Send mail via SMTP
    // To do Appletisize it.
    import java.io.BufferedReader;
    import java.io.FileInputStream;
    import java.io.InputStreamReader;
    import java.io.PrintStream;
    import java.net.Socket;
    import java.util.StringTokenizer;
    import java.net.Authenticator;
    import java.net.*;
    // To do. Finish multiThreading &| write que Thread.
    // this programs sends mail Via SMTP as defined in RFC 821.
    // ftp://ftp.isi.edu/in-notes/rfc821.txt
    public class SendMail   
    Object mailLock              = null;  //In case we want a multi-threaded mailer
    public String mailServerHost = "";
    public String from           = "";
    public String to             = "";
    public String replyTo        = "";
    public String subject        = "Java is Fun";
    public String mailData       =
       "HyperSendMail";
    public String errorMsg = "";
    public Socket mailSendSock = null;
    public  BufferedReader inputStream = null;
    public PrintStream outputStream    =  null;
    public String serverReply          = "";
    SendMail()
       // Doesn't do anything but we need this for extension purposes.
    // Server, from,to,subject, data
    SendMail(String server,String tFrom,String tTo,String sub,String sendData)
       mailServerHost = server;
       mailLock=this; // Thread Monitor passed constructor later. Default this Monitor.
       from = tFrom;
       to   = tTo;
       if(sendData != null)
          mailData = sendData; 
    /*  Just a note to remind myself to add this for cross app./Applet & Runnable.
       & Threadsafe readLine()  I'm too lazy ATM
    SendMail()
       if(mailLock != null)
          if(mailLock instanceof Applet)
             Applet app = (Applet)
    public void send()
       if(!open())          //Yikes! get out of here.
          return;    
       try
          outputStream.println("HELO sendMail");
          serverReply = inputStream.readLine(); 
       catch(Exception e0)
          e0.printStackTrace();
       try
          outputStream.println("MAIL FROM: "+from);
          serverReply = inputStream.readLine();
            // I cheat and don't look for the whole 550
            // we know 5 is an error anyway. Add it in if you want.
          if(serverReply.startsWith("5"))
             close("FROM: Server error :"+serverReply);
             return;
       // Note the switch here. we could get mail from somewhere and by
       // pre setting replyTo reply somewhere else :)
          if(replyTo == null)
             replyTo = from;
          outputStream.println("RCPT TO: <"+to+">");
           // Ya got me! I didn't look for any  250 OK messages. Add it in if you really want.
           // A real programmer will spend 30 hours writing self modifying code in order
           // to save 90 nano seconds ;)  we assume if it did't give an error it must be OK.
          serverReply = inputStream.readLine();
          if(serverReply.startsWith("5"))
             close("Reply error:"+serverReply);
             return;
          outputStream.println("DATA");
          serverReply = inputStream.readLine();
          if(serverReply.startsWith("5"))
             close("DATA Server error : "+serverReply);
             return;
          outputStream.println("From: "+from);
          outputStream.println("To: "+to);
          if(subject != null)
             outputStream.println("Subject: "+subject);
          if(replyTo != null)
             outputStream.println("Reply-to: "+replyTo);
          outputStream.println("");
          outputStream.println(mailData);
          outputStream.print("\r\n.\r\n");
          outputStream.flush();
          serverReply = inputStream.readLine();
          if(serverReply.startsWith("5"))
             close("DATA finish server error: "+serverReply);
             return;
          outputStream.println("quit");
          serverReply = inputStream.readLine();
          if(serverReply.startsWith("5"))
             close("Server error on QUIT: "+serverReply);
             return;
          inputStream.close();
          outputStream.close();
          mailSendSock.close();
       catch(Exception any)
          any.printStackTrace();
          close("send() Exception");
       close("Mail sent");
    public boolean open()
       synchronized(mailLock)
          try
             mailSendSock = new Socket(mailServerHost, 25);
             outputStream = new PrintStream(mailSendSock.getOutputStream());
             inputStream = new BufferedReader(new InputStreamReader(
              mailSendSock.getInputStream()));
             serverReply = inputStream.readLine();
             if(serverReply.startsWith("4"))
                errorMsg = "Server refused the connect message : "+serverReply;
                return false;
          catch(Exception openError) 
             openError.printStackTrace();
             close("Mail Socket Error");
             return false;
          System.out.println("Connected to "+mailServerHost);
          return true;
    public void close(String msg)
              //try to close the sockets
       System.out.println("Close("+msg+")");
       try
          outputStream.println("quit");
          inputStream.close();
          outputStream.close();
          mailSendSock.close();
       catch(Exception e)
          System.out.println("Close() Exception");
         // We are closing so see ya later anyway
    public static void main(String Args[])
    SendMail sm = new
    // * NOTE:
    // Erase these values right away! Just to show you how it is done.
    // Whatever you do don' release it with my mail server hardcoded.
    // last thing I need is 10 million Java mail test spams :)
    SendMail(
              "outgoing.myISP.net",         //Mail Server
              "[email protected]",       // sender
              "[email protected]",       // Recipient
              "Java mail test",               // Subject
              "test test test!");             // Message Data
              sm.send();                      // Send it!
    }

    There is no one in the forum who can shed some light on my problem?

  • Remove X-Smtp-Server from Header in Mail

    I'm having an issue with Mail (7.3) leaking my personal email address in outgoing email.
    Background:
    I have a grandfathered free google apps account and use [email protected] to handle my personal email. Under this same user in google apps, I also have an alias setup using the name [email protected] (I use the alias for non-personal correspondence). Per a discussion over on google's forums (thanks Warren Chang and Goldy Arora) when I set up the alias under the 'Accounts' tab on google, I deselected 'Treat as an alias' and selected 'Send through mydomain.com SMTP servers' for outgoing mail. I then filled in the SMTP server settings with 'smtp.gmail.com' instead of 'smtp.mydomain.com'. For username and password I used [email protected] and its corresponding password.
    After doing this when I send email using the google web interface and [email protected], everything goes as desired and the following is an example of a header on an outgoing message (notice [email protected] does not appear):
    MIME-Version: 1.0
    Received: by XXX.XXX.XXX.XXX with HTTP; Fri, 5 Sep 2014 19:23:46 -0700 (PDT)
    X-Originating-IP: [YYY.YYY.YYY.YYY]
    Date: Fri, 5 Sep 2014 19:23:46 -0700
    Delivered-To: [email protected]
    Message-ID: <[email protected]>
    Subject: Header Test Google
    From: My Name <[email protected]>
    To: Recipient Name <[email protected]>
    Content-Type: multipart/alternative; boundary=STRING
    --STRING
    Content-Type: text/plain; charset=UTF-8
    --STRING
    Content-Type: text/html; charset=UTF-8
    <div dir="ltr"><br></div>
    --STRING--
    In Apple's Mail I set up a Google IMAP account with the following settings:
    Email Address: [email protected], [email protected]
    Incoming Mail Server: imap.gmail.com
    Username: [email protected]
    Outgoing Mail Server: smtp.gmail.com
    Username: [email protected]
    Problem:
    When I compose an email in Apple Mail, select [email protected] in the 'From' dropdown and send the email, a look at the header shows this:
    From: My Name <[email protected]>
    Content-Type: text/plain
    Content-Transfer-Encoding: 7bit
    X-Smtp-Server: smtp.gmail.com:[email protected]
    Subject: Header Test Apple Mail
    Message-Id: <[email protected]>
    X-Universally-Unique-Identifier: STRING
    Date: Fri, 5 Sep 2014 19:22:50 -0700
    To: My Name <[email protected]>
    Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\))
    This is not ideal because it is leaking my personal email address to anyone I send an email to using [email protected].
    I also have an alias set up in Mail on my iOS devices using the generic IMAP account option under 'Mail, Contacts, Calendars' and have found the desired behavior in sent emails:
    Return-Path: <[email protected]>
    Received: from [192.168.0.3] (pool-YYY-YYY-YYY-YYY.lsanca.fios.verizon.net. [YYY.YYY.YYY.YYY])
            by mx.google.com with ESMTPSA id STRING
            for <[email protected]>
            (version=TLSv1 cipher=STRING);
            Fri, 05 Sep 2014 19:32:53 -0700 (PDT)
    From: My Name <[email protected]>
    Content-Type: text/plain;
      charset=us-ascii
    Content-Transfer-Encoding: 7bit
    Mime-Version: 1.0 (1.0)
    Subject: Header Test iOS
    Message-Id: <[email protected]>
    Date: Fri, 5 Sep 2014 19:32:53 -0700
    To: My Name <[email protected]>
    X-Mailer: iPhone Mail (11D257)
    Are there any options for removing the X-Smtp-Server line in the header from emails sent from Apple Mail so that my personal email isn't exposed? Or is there a better way to configure the account in Mail? I'd rather use Apple's Mail client across the board and not use Thunderbird or another mail client that might be more configurable.
    Thanks in advance for any insight.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this test is to determine whether the problem is localized to your user account. Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault in OS X 10.7 or later, then you can’t enable the Guest account. The "Guest User" login created by "Find My Mac" is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.

  • Mailing without SMTP-Server

    Hello Forum,
    in the cf8-Administrator I can configure a SMTP-Server with
    Username and Password for sending Mails via CF.
    Is there a way to connect to a simple Mail-Account with
    pop..... and smtp.... , because I don't want to administrate a
    mailserver on my webserver.
    Or do you now a free (or cheap) mailserver-provider, which I
    can configure with: smtp-server-name,etc.
    Thank you for any help!
    uwe

    Solution:
    Sorry for asking such a stupid question!!!
    I don't need a complete Mailserver. I have filled in the
    smtp-Server-address, accountname and password of my
    personal-mailbox at my provider.
    IT WORKS!

  • Installing Transparency Flattener Preset for Indesign Server CS4

    I'm trying to figure out how to install a transparency flattener preset for InDesign Server CS4.
    I can see how they are installed for the InDesign app.  Edit -> Transparency Flattener Presets...
    But I'm not sure which directory to install these on for the server.
    I've seen a post that mentions:
    C:\Documents and Settings\<UserName>\Application Data\Adobe\InDesign\Version 6.0\en_US\Transparency Flattener Presets
    /Users/<UserName>/Library/Preferences/Adobe InDesign/Version 6.0/en_US/Transparency Flattener Presets
    for the Desktop version.  But when I place files here even for the CS4 Desktop, they don't seem to show up in the UI.
    Any help would be appreciated,
    Thanks,
    Dennis

    Thanks, to get this working in a server script, I ended up just programmatically creating the flattener preset, rather than worrying about the .flst files.  (Java code below)
      //Setup Transparency Flattener (if not in application)
      FlattenerPreset flattenerPreset = app.getNamedChildFlattenerPreset("Test");
      if (flattenerPreset == null) {
          flattenerPreset = app.addFlattenerPreset();
          flattenerPreset.setName("Test");
          flattenerPreset.setRasterVectorBalance(VariableTypeUtils.createLong(100));
          flattenerPreset.setLineArtAndTextResolution(2400.0);
          flattenerPreset.setGradientAndMeshResolution(400.0);
          flattenerPreset.setConvertAllTextToOutlines(false);
          flattenerPreset.setConvertAllStrokesToOutlines(false);
          flattenerPreset.setClipComplexRegions(false);
      pdfPreset.setAppliedFlattenerPreset(flattenerPreset);

  • Why is Mail asking me for the name of an smtp server for an email address that doesn't exist?

    I've migrated from Snow Leopard to Mountain Lion on a new Mac, but in trying to use Mail on ML, it keeps asking me for the name of an smtp server for an email address that's never existed. The addy has my user name correct, but the server part of the address doesn't exist, or at least I've never used an email address with that provider. On ML there's no plist file for Mail, so nothing to delete there. What else can I do to get Mail working? The only other option I have is to abandon Mail as being crippled and useless, and use Postbox, which for it's price (US$9.95) is an attractive option. OTOH, I've paid for Mail after all, so it really ought to work. Any clues as to what I can do to stop its nonsensical behaviour? How do I file a bug report?
    TIA.
    Pauline

    Amasis wrote:
    On ML there's no plist file for Mail, so nothing to delete there.
    ~/Library/Containers/com.apple.mail/Container.plist
    (Go to your Finder "Go" menu hold the option key to choose "Library", since the ~/Library is hidden on ML)

  • HT3775 hello guys, i m just wondering that which software would be the best for my macbook pro. whenever i try to open those video, it says '(video name)avi' cant open. that will be appreciable if anyone can help me out. thanks.

    hello guys, i m just wondering that which software would be the best for my macbook pro. whenever i try to open those video, it says '(video name)avi' cant open. that will be appreciable if anyone can help me out. thanks.

    I think that VLC Media Player will play avi files.
    Regards,
    Clinton

  • The user name or password for SMTP is incorrect

    With my new iPhone, I am unable to change my password in trying to rectify the command "the username or password for SMTP is incorrect ....
    Any suggestions ?

    Don't know whose problem it is but I did this...
    Had the same problem just started last week after I changed my AOL password.  Entering the new password into iPhone 4S AOL account did not fix anything.   Went to the AOL captcha link noted previously and did that.  Still no luck on sending mail.  Could always receive tho...  Could not change password in outgoing mail server on iPhone.  Solution was to add NEW server smtp.aol.com, username without @aol.com, new password.  Did this for each AOL email account on iPhone (2) then turned off both OLD aol smtp.....and it works fine.  Can now send emails. 

  • 1. Mail update for v.2.1.3 for Tiger  2. OS10.5 3. SMTP server intermittent

    1. Is there any Mail update for OS 10.4.11 users beyond v. 2.1.3?
    2. Is there any version of OS 10.5 (Leopard) installable on G4s described below? I know OS 10.5.6 needs a faster processor so cannot be installed.
    3. MAIN QUESTION: I have concluded after months of apparent SMTP server problems that the cause lies with neither my main ISP (ATT-Uverse) nor with the 2 email accounts we have a local dial-up/DSL ISP now owned by Cincinnati Bell from which we POP and send (SMTP) server. ATT-Uverse has approved, and disabled filters to prevent, this unusual practice for one of their customers to use a 3rd party's SMTP server and the Cinbell firm also has no problem.
    Nevertheless, multiple times a day, my password is refused and 'Mail Connection Doctor' reports that 'trying to log into this SMTP account failed.' The result is that I can only send mail to addresses in the same mail domain ['@name.type']. Both ISPs, however, report that all my settings are correct, are working, are pingable, etc. Sometimes just quitting and restarting Mail clears up the problem for a while. Anyway for many months and many reasons, I always assumed the problem lay with the ISP or with connections between my computers & the POP & SMTP Mail serving ISP. This ISP sent a technical manager to my location who set up a PC computer using Outlook with _my settings_ and with an ethernet connection to my ATT-Uverse Router. He had no problem using Outlook for sending or receiving test messages.
    So after much effort by various IT technical support staff from two different ISPs, I am forced to think that the problem while described as the SMTP server's refusal to accept my established passwork is really internal to Mail v.2.1.3 and the settings I have to use. In this case, to enable SMTP service on Port 25, I do need to use extended authentication (i.e. full email address in one field and password in another.
    Has this issue been reported by others and is there a fix or workaround. I would prefer to continue using Apple's Mail client & to use POP mail rather than another client or a ;cloud; connection like Google Mail.
    Thanks.
    Message was edited by: Wylieman

    1. Is there any Mail update for OS 10.4.11 users beyond v. 2.1.3?
    No.
    2. Is there any version of OS 10.5 (Leopard) installable on G4s described below? I know OS 10.5.6 needs a faster processor so cannot be installed.
    It'll run fine, you just can't Install it... LOL
    There are a couple of workarounds though, installing it on a fast enough PPC Mac to an External Firewire Drive, or editing the check for that CPU Speed, but you'll have to search for, like....
    http://lowendmac.com/osx/leopard/unsupported.html
    3. MAIN QUESTION: I have concluded after months of apparent SMTP server problems that the cause lies with neither my main ISP (ATT-Uverse)
    Hmmm, I don't think I've ever read of anyone having more problems than ATT!?
    So after much effort by various IT technical support staff from two different ISPs, I am forced to think that the problem while described as the SMTP server's refusal to accept my established passwork is really internal to Mail v.2.1.3 and the settings
    Hmmmm,
    Open Keychain Access in Utilities, use Keychain First Aid under the Menu item, then either check the Password under that item, change it, or delete it and start over.
    Resetting your keychain in Mac OS X...
    If Keychain First Aid finds an issue that it cannot repair, or if you do not know your keychain password, you may need to reset your keychain.
    http://support.apple.com/kb/TS1544
    Drag this file to the desktop and reboot...
    /Users/YourUserName/Library/Preferences/com.apple.keychainaccess.plist
    Re: Keychain is no longer able to update itself when I upgrade an application...
    http://unsanity.org/archives/2007_01.php

Maybe you are looking for

  • How to create a video page, several videos (not youtube), with button triggers.

    How do you set up a page for videos, with a common target area, each video loaded with a different button trigger (not youtube videos)?

  • Enhancing Middleware Between CRM and R/3

    Hi Every body! I have some issue. I added some custom fields in CRM through EEWB Tool which are already there in my R/3. I need to map those fileds from CRM to R3. Is there any structure to map the fields. or Can u send me the details How to map thes

  • Change Sales Order

    Hello, I have a piece of code in userexit_save_document_prepare which gets triggered. A user gets into an already existing Sales Order. The user makes some changes to the header text in the sales order and saves it. Is there any way we can figure out

  • Re-installing Acrobat 9

    I recently needed to reset my windows 8.1 laptop. I have reinstalled all of my programs apart from Acrobat 9. I purchased this in 2009 as a download. The program is listed in my Adobe Profile with a serial number. I tried to download version 9 from t

  • Monitoring CSS11155 using MRTG

    We are load balancing two web servers using two CSS11155 on a box-to-box redundant configuration. To be able to monitor the behaviour of the solution we configured SNMP on the devices and are using MRTG to retrieve some MIB variables values relevant