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

Similar Messages

  • Where do you put the  SMTP Server Name  ?

    I am trying to set up the email address of the SNMP.
    i can set up the Server SNMP Agents and the trap destinations, but can't find where to specifiy the SMTP Server Name i.e our company email address name [email protected]
    I looked in security realms can't find it.
    Any ideas

    Hi,
    Here is sample setup for AIX machine.
    SETUP:
    GC agent installed in AGENT_ORACLE_HOME
    RDBMS installed in RDBMS_ORACLE_HOME
    Database and listener up and running, monitored by Grid Control,
    this implies that the AGENT_ORACLE_HOME/sysman/emd/targets.xml contains the correct credentials for the database.
    The listener name given ion RDBMS_ORACLE_HOME/network/admin/listener.ora is identical to the name of that listener target in Grid Control.
    AGENT_ORACLE_HOME/network/admin/sqlnet.ora must exist.
    SETUP steps needed for operating system AIX:
    A. AIX is using its native snmp deamon pointing to the snmpdv3 deamon (this is the default on AIX5L):
    [hostname]/root> ls -l /usr/sbin/snmpd
    lrwxrwxrwx 1 root system 9 Jul 24 2009 /usr/sbin/snmpd@ -> snmpdv3ne*
    B. The script AGENT_ORACLE_HOME/network/snmp/peer/start_peer has needs to be corrected on AIX :
    1. the locations of "whoami" needs to be corrected from "/usr/ucb/whoami" to "/bin/whoami"
    2. the command starting the os snmp deamon must be changed to
    $SNMPD $SNMPD_OPTIONS -p $NEW_SNMPD_PORT >snmpd.out 2>&1 &
    Alternatively add two blocks for operating system AIX:
    elif [ "$uname" = "AIX" ] ; then
    USERID=`/bin/whoami`
    SNMPD=/usr/sbin/snmpd
    SNMPD_CONFIG=/etc/snmpdv3.conf
    SNMPD_OPTIONS=""
    BP="AIX"
    TRPCMD="exit 1"
    ENCAP_OPT="-s 1160"
    elif [ "$uname" = "AIX" ]
    then
    echo "Starting $SNMPD ..."
    echo "$SNMPD $SNMPD_OPTIONS -p $NEW_SNMPD_PORT >snmpd.out 2>&1 &"
    $SNMPD $SNMPD_OPTIONS -p $NEW_SNMPD_PORT >snmpd.out 2>&1 &
    Starting up emsubagent
    None of the following processes must be upp and running: snmpd, emsubagent, master_peer, encaps_peer
    The following ports must not be allocated: snmp, smux, 161, 1161, 199
    run as root:
    ORACLE_HOME= <full path to the AGENT_ORACLE_HOME>
    export ORACLE_HOME
    $ORACLE_HOME/network/snmp/peer/start_peer -a
    This must start the following processes as root: master_peer, encaps_peer, snmpd
    As agent ORACLE_HOME owner run
    AGENT_ORACLE_HOME/bin/emctl start subagent
    The snmp_*.ora files needs to be copied from AGENT_ORACLE_HOME/network/admin to RDBMS_ORACLE_HOME/network/admin
    Restart the listener, query the listener status
    "RDBMS_ORACLE_HOME/bin/lsnrctl status <listener_name>" must show: SNMP ON
    Regards,
    Kal

  • Regarding SMTP server name

    Friends,
                  I have configured mail transport for portal. In SMTP server name I have given its IP address. Is it right or i should give address like "smtp.xxx.xx". I am expecting some quick response.
    regards,
    M.Arunkumar.

    Hi Arunkumar
    It should work. Heres is a working example, I've used:
    JavaMailTransport, xxx.xxx.xxx.xxx, Sent Items, SMTP Server
    See help for full documentation:
    http://help.sap.com/saphelp_nw70/helpdata/en/36/eacfb72888e04eaf523f7236c0892f/frameset.htm
    Kind regards,
    Martin

  • About smtp server name

    Hi i had developed one application using java mail.
    when i run that it shows the could not connect . sendFailedException
    why it is?
    and how to know thw smtp server name in my machine?

    Read the JavaMail FAQ.

  • How to find SMTP server name on AIX 5.3 ?

    Hi All/Guru
    how can i find SMTP Server name on my aix server which i need to configure E-mail notification for database alerts.
    Thanks in advance.
    Tina

    Check in the file /etc/sendmail.cf

  • 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.

  • How to get default SMTP server name

    Hi,
    I want to know the name default SMTP server configured in machine. How i can get this through my java code.
    Help me on this

    You can find STMP server configured in hostname, in ask to dns of domain who is mailserver, you need to find MX records :
    - look a DNS config : NS (name server) , CNAME (Alias) , MX (mailexchange) etc...
    import java.util.ArrayList;
    import java.util.Hashtable;
    import javax.naming.*;
    import javax.naming.directory.*;
    public class MXLookup
         public static void main(String args[]) throws NamingException
              System.out.println(getMX("altern.org") + " mail servers");
         private static ArrayList getMX(String hostName) throws NamingException
              // Perform a DNS lookup for MX records in the domain
              Hashtable env = new Hashtable();
              env.put("java.naming.factory.initial", "com.sun.jndi.dns.DnsContextFactory");
              DirContext ictx = new InitialDirContext(env);
              Attributes attrs = ictx.getAttributes(hostName, new String[] { "MX" });
              Attribute attr = attrs.get("MX");
              // if we don't have an MX record, try the machine itself
              if ((attr == null) || (attr.size() == 0))
                   attrs = ictx.getAttributes(hostName, new String[] { "A" });
                   attr = attrs.get("A");
                   if (attr == null) throw new NamingException("No match for name '" + hostName + "'");
              ArrayList res = new ArrayList();
              NamingEnumeration en = attr.getAll();
              while (en.hasMore())
                   String x = (String) en.next();
                   String f[] = x.split(" ");
                   if (f[1].endsWith(".")) f[1] = f[1].substring(0, (f[1].length() - 1));
                   res.add(f[1]);
              return res;
    }

  • Mail loosing iCloud SMTP server name

    Recently I have found that when I go to create a new email I cannot send it as the Mail application does not have the SMTP server assigned to my iCloud account.  Then when I try to choose one from my existing list, iCloud is greyed out and showing as offline.
    I have to then go into Mail>Preferences>Accounts then highlight my iCloud account and pick the iCloud SMTP server, then Save this amendment.  I can then create a new email and its configured to work OK.
    Anyone else have this issue or offer a suggestion?
    Running 10.8.3. Thx.

    Anyone else having this issue?  It's still going on for me.  It only happend to me since the update to 10.8.3.

  • Where to find out my outgoing SMTP server name?

    Hi:
    I am trying to setup email notification method on OEM Grid Control, but what's the value for my SMTP server and port number , How can I find out?
    I am using OUTLOOK .
    Thanks for all the help.

    You will find it in the Email Account. Select Tools > Email account > View or Change Existing Accounts. Select and Open the email acoount and see it under Server Information.

  • Guessing the SMTP server name.

    If my ISP does not gives me the SMTP server address .
    Is there any method to guess that address.
    Please reply in detail because I am the beginner of JAVA
    MAIL as well as JAVA.
    Thank you very much.

    The the IP address of the server and telnet onto port 25
    i.e.
    www.myisp.co.uk
    nslookup myisp.co.uk
    gives:
    192.168.1.123
    Then..
    telnet 192.168.1.123 25
    If you get a SMTP message thats the ISPs SMTP server.
    They will prob not allow relays i.e. you to send mail using this server, but you should get a message saying 'relay not allowed' if this is the case.
    They will have a range of IP addresses you you need to follow the MX records, they will lead you to the SMTP server of your ISP...
    You can use
    host -t mx demon.net
    to get:
    demon.net mail is handled (pri=50) by relay-2.mail.demon.net
    demon.net mail is handled (pri=20) by internal.mail.demon.net
    demon.net mail is handled (pri=50) by relay-1.mail.demon.net
    Then use nslookup on relay-2.mail.demon.net to get the IP address if you want.
    see http://partyvibe.com/flavour/ntools-exp.htm for tools to lookup IPs and MX records.
    Hope this helps.
    Regards Gareth

  • Specified SMTP server name is replaced with localhost

    Hi,
    I am getting following error when I try to send email from a
    java program. The same program works on development server but
    gives following exeception on production. Somehow it is replacing
    the specified SMPT server with localhost while making the
    connection
    javax.mail.MessagingException: Could not connect to SMTP
    host: localhost, port: 25; nested exception is:
    java.net.ConnectException: Connection refused:
    Please let me know the cause.
    Thanks
    Mahesh

    Do you really have a SMTP server installed on your local machine?
    If it does, you should set "mail.smtp.host" as "localhost".
    props.put("mail.smtp.host", "localhost");
    javax.mail.Session mail_session = javax.mail.Session.getInstance(props, null);

  • How to use a ip address for pop & smtp server names when creating a new account

    My xp PC is on a lan behind a Freebsd os [IE. flavor of unix] which is not running a dns server. The only way to reach it is by ip address. I have configured the account with a ip address for pop & smtp. When I create and sent a email, Thunderbird shows a window saying it trying to connect and after 10 seconds it goes away with out showing the status window. There is no email in the sent folder. Is it possible to do this ???? I can accomplish this using ms/outlook so I know it is possible.

    I haven't tried this in years, but could you give this server a name and enter that into TB
    Then in C:\Windows\System32\drivers\etc\hosts you add that name and ip

  • Can't connect to SMTP Server

    Since upgrading to OS X Yosemite 10.10.3 I am no longer able to send email via my SMTP server. The SMTP server is the AWS SES service http://aws.amazon.com/ses/ and the smtp server name is email-smtp.eu-west-1.amazonaws.com.
    Apple Mail refuses to connect to the SMTP server. I have previously managed to resolve this issue by following the instructions described at part 2 of http://osxdaily.com/2014/10/28/fix-mail-smtp-sending-errors-os-x-mac/.
    However since upgrading to OS X Yosemite 10.10.3, if I modify the Accounts.plist file as described, Apple Mail just overwrites my changes as soon as I open it.
    I am certain that my SMTP credentials are correct as I was able to successfully connect to the SMTP server using these credentials prior to upgrading to version 10.10.3 of OS X Yosemite.
    As things stand I am unable to send any email via this SMTP server.
    Any help would be very much appreciated.
    Matthew

    Try this:
    Menu "Mail", select Preference
    Click on Accounts
    Near the bottom, click on the button "Server Settings"
    See if the check box for SSL is checked; if it is, try un-checking it, then close everything and try mail again.
    Explanation: When I'm at work, and use my Mail app as an IMAP account, I need to have SSL checked as we use SSL inside the building. When I travel, and use a hotel internet connection, some hotel ISPs won't allow SSL, so I have to un-check it to send email.
    Hope this helps...
    beadman

  • Error in SMTP server configuration 11gR2

    Hi Expertes,
    I have done the below steps for configurting the notification.
    1. Created an IT resource of type mail server.
    2. Provided the SMTP server name in the IT Resource.
    3. Modified the system configuration and set the XL.MailServer as the newly created IT resource.
    4. Logged in to em console.
    5.Disabled UMSEmailNotificationProviderMBean and enabled EmailNotificationProviderMBean
    6. Add mailservername in EmailNotificationProvider
    But mails are not getting triggered on password reset by admin and the following error is thrown in the logs:
    Error sending notifications oracle.security.am.common.exceptions.NAPException: Server reported that incorrect NAP version is being used.Error sending notifications oracle.security.am.common.exceptions.NAPException: Server reported that incorrect NAP version is being used.
    Thanks in advance

    Hi,
    I am new to this field.
    Kindly bear with me & guide me how to verify the password in SM59.
    I went there,but not sure of it.Please let me know.
    Regards,
    john.

  • Goldmine Contact Management and using Verizon as SMTP server

    One of our sales reps must use his personal Verizon settings to send his email in Goldmine.  His user name and password are correct and work with Verizon web mail.  When using his Verizon SMTP settings in Goldmine, server keeps rejecting as bad user and password.  Using port 465  SSL and Login type authentication.  Need to contact someone at Verizon, but can't locate anyone who can help me since this is not my account.

    For the sake of example, we are going to pretend that we are setting up fictional account "[email protected]" and the password for logging into that account in webmail is "fakepassword" - Again, this is a fictitious account for the sake of an example.
    The settings for using Verizon's SMTP (outgoing) server would be:
    Outgoing Server: smtp.verizon.net
    Server Requires Authentication: Yes
    Username: fakeacct
    Password: fakepassword
    Requires a Secure Connection (SSL): Yes
    Port: 465
    If you are given the option anywhere for Secure Password Authentication (SPA), set it to No, Normal, Plain, etc.
    These settings should work unless it is a Verizon/Yahoo account, in which case the SMTP server name is outgoing.yahoo.verizon.net
    If all of that is set up and it's still not working, your best bet is to provide a screenshot of the settings (with personal information blocked/removed) and any errors you are getting.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

Maybe you are looking for