Probe from the SMTP server

When sending a message using SMTP server how to find the appropriate SMTP server given the e-mail address ?
for example if I try to send an e-mail to this address
[email protected]
How do I find the name of the smtp server associated with the "someserver.com". I tried using
smtp.someserver.com but it did not work for all servers.

When sending a message using SMTP server how to find
the appropriate SMTP server given the e-mail address
for example if I try to send an e-mail to this
address
[email protected]
How do I find the name of the smtp server associated
with the "someserver.com". I tried using
smtp.someserver.com but it did not work for all
servers. Please check the following:
http://forum.java.sun.com/thread.jsp?forum=43&thread=381655&tstart=0&trange=15
Just to add to this, after you query the DNS server, it may return you a whole set of ip addresses with priorities. You must start with the highest priority and go ahead.
cheers
Projyal

Similar Messages

  • I changed my password on my aol account but it did not change on the SMTP server which is preventing me from answering email.  Help

    I changed my aol password but the SMTP server password did not change so I can't send mail.  How can I change the SMTP password?

    Go into Settings > Mail, Contacts, Calendars and select the account, then tap the account on the popup that you should get, and then tap on the SMTP server name

  • Generating a PDF and then Email it from the report server.....

    All,
    This is my first post on this forum and I have the following question.....
    Please note I am not a DB expert nor a reporting expert but I have done my fair share of reporting using Oracle DB with Oracle Reports or Hyperion.
    I have a report that will be posted to the report server that a user can go out and run at there convenience.
    As a side note we have recently migrated our Database from ORACLE 8i to 10G and the report was created using Oracle ReportBuilder 10.1.
    This report was also mimicked by a Oracle package and emailed out through I believe some PL SQL(?). This is a plain text report in the email.
    As I recently did some big changes to the Original report they want this email report to match as well.
    Well After looking at what they want in the email its basically the exact same thing as the version the user would see on the web. This seems like a waste of time for myself to edit this Package (For the email report - plaint text) and to have a oracle report available on the web server not to mention the DB dealing with the PLSQL..
    So I am asking is there a way to set up Oracle reports to mail a generated PDF or a HTML results file out from the reporting server at a specified time?
    If so how is this accomplished?
    I see that in the help file in Report Builder that you can set rwbuilder.conf file with the SMTP server but how do I set the email address and the time to run the report.
    Thanks for all the help,
    Chris

    Hello,
    Maybe I am not understanding something but we have a reporting server where they basically select the report in a drop down web control and they fill in the necessary parameters and then the report is ran.
    The web links refer to report builder and how to email from it. I am in a web environment that they select the report and its ran. Is this web form a standard product with Oracle for reporting?
    I have seen how to do accomplish my task from the command line. Is this another way of accomplishing this task?
    I think what I am also looking for is a confirmation that what I want to do is possible and that someone has accomplished this task before.
    Thanks,
    Chris

  • How to setup the SMTP server in Oracle apps?

    Hi,
    How to setup the SMTP server in Oracle Apps? Is it mandatory to keep the SMTP server on the same host where the Oracle data base is installed? Also can someone help how we can set up the SMTP server on different host (not the Database server) and we can use the same for Workflow notification mailer.
    Thanks,
    Bijoy
    Edited by: user12070886 on Feb 6, 2013 4:26 AM
    Edited by: user12070886 on Feb 6, 2013 4:27 AM

    How to setup the SMTP server in Oracle Apps? Is it mandatory to keep the SMTP server on the same host where the Oracle data base is installed? No, it is not mandatory. Also please note that the mails are sent out from concurrent manager mode. Not from the database node.
    Also can someone help how we can set up the SMTP server on different host (not the Database server) and we can use the same for Workflow notification mailer.
    >
    It depends on the operating system you are using. If you are using *nix then sendmail needs to be configured.
    Thanks

  • The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
                    SmtpServer.UseDefaultCredentials = true;
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    When i m run this part of code it throw an Ecxeption                                                          
            Given Below is the Error.. 
        The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Bikky Kumar

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
    SmtpServer.UseDefaultCredentials = true;    ///Set it to false, or remove this line
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    Given Below is the Error..      The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Solution:
    The error might occur due to following cases.
    case 1: when the password is wrong
    case 2: when you try to login from some App
    case 3: when you try to login from the domain other than your time zone/domain/computer (This
    is the case in most of scenarios when sending mail from code)
    There is a solution for each
    solution for case 1: Enter the correct password.
    Recomended: solution for case 2: go to
    security settings at the following link https://www.google.com/settings/security/lesssecureapps and
    enable less secure apps . So that you will be able to login from all apps.
    solution 1 for case 3: (This might be helpful) you need to review the activity. but reviewing the activity will not be helpful due to latest security
    standards the link will not be useful. So try the below case.
    solution 2 for case 3: If you have hosted your code somewhere on production server and if you have access to the production server, than take remote
    desktop connection to the production server and try to login once from the browser of the production server. This will add exception for login to google and you will be allowed to login from code.
    But what if you don't have access to the production server. try
    the solution 3
    solution 3 for case 3: You have to enable
    login from other timezone / ip for your google account.
    to do this follow the link https://g.co/allowaccess and
    allow access by clicking the continue button.
    And that's it. Here you go. Now you will be able to login from any of the computer and by any means of app to your google account.
    Regards,
    Nabeel Arif

  • How to configure the smtp server..

    i had an error when running the java mail program..
    this is my program
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    import java.io.*;
    import java.util.Properties;
    public class MailClient
    public void sendMail(String mailServer, String from, String to,
    String subject, String messageBody,
    String[] attachments) throws
    MessagingException, AddressException
    // Setup mail server
    Properties props = System.getProperties();
    props.put("mail.smtp.host", mailServer);
    // Get a mail session
    Session session = Session.getDefaultInstance(props, null);
    // Define a new mail message
    Message message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
    message.setSubject(subject);
    // Create a message part to represent the body text
    BodyPart messageBodyPart = new MimeBodyPart();
    messageBodyPart.setText(messageBody);
    //use a MimeMultipart as we need to handle the file attachments
    Multipart multipart = new MimeMultipart();
    //add the message body to the mime message
    multipart.addBodyPart(messageBodyPart);
    // add any file attachments to the message
    // addAtachments(attachments, multipart);
    // Put all message parts in the message
    message.setContent(multipart);
    // Send the message
    Transport.send(message);
    protected void addAtachments(String[] attachments, Multipart multipart)
    throws MessagingException, AddressException
    for(int i = 0; i<= attachments.length -1; i++)
    String filename = attachments;
    MimeBodyPart attachmentBodyPart = new MimeBodyPart();
    //use a JAF FileDataSource as it does MIME type detection
    DataSource source = new FileDataSource(filename);
    attachmentBodyPart.setDataHandler(new DataHandler(source));
    //assume that the filename you want to send is the same as the
    //actual file name - could alter this to remove the file path
    attachmentBodyPart.setFileName(filename);
    //add the attachment
    multipart.addBodyPart(attachmentBodyPart);
    public static void main(String[] args)
    try
    MailClient client = new MailClient();
    String server="smtp.canvasindia.com";
    String from="[email protected]";
    String to = "[email protected]";
    String subject="Test";
    String message="Testing";
    String[] filenames ={"c:/A.java"};
    client.sendMail(server,from,to,subject,message,filenames);
    catch(Exception e)
    e.printStackTrace(System.out);
    the error is .................
    javax.mail.SendFailedException: Invalid Addresses;
    nested exception is:
    com.sun.mail.smtp.SMTPAddressFailedException: 553 Attack detected from p
    ool 59.144.8.116. <http://unblock.secureserver.net/?ip=59.144.8.*>
    at com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1196)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:584)
    at javax.mail.Transport.send0(Transport.java:169)
    at javax.mail.Transport.send(Transport.java:98)
    at MailClient.sendMail(MailClient.java:47)
    at MailClient.main(MailClient.java:84)
    Caused by: com.sun.mail.smtp.SMTPAddressFailedException: 553 Attack detected fro
    m pool 59.144.8.116. <http://unblock.secureserver.net/?ip=59.144.8.*>
    at com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1047)
    ... 5 more
    how to configure the smtp server in my machine..
    please guide me...

    This uses gmail account, and gmail smtp
    * MailSender.java
    * Created on 14 November 2006, 17:07
    * This class is used to send mails to other users
    package jmailer;
    * @author Abubakar Gurnah
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    public class MailSender{
        private String d_email,d_password;
         * This example is for gmail, you can use any smtp server
         * @param d_email --> your gmail account e.g. [email protected]
         * @param d_password  --> your gmail password
         * @param d_host --> smtp.gmail.com
         * @param d_port --> 465
         * @param m_to --> [email protected]
         * @param m_subject --> Subject of the message
         * @param m_text --> The main message body
        public String send(String d_email,String d_password,String d_host,String d_port,
                String m_from,String m_to,String m_subject,String m_text ) {
            this.d_email=d_email;
            this.d_password=d_password;
            Properties props = new Properties();
            props.put("mail.smtp.user", d_email);
            props.put("mail.smtp.host", d_host);
            props.put("mail.smtp.port", d_port);
            props.put("mail.smtp.starttls.enable","true");
            props.put("mail.smtp.auth", "true");
            //props.put("mail.smtp.debug", "true");
            props.put("mail.smtp.socketFactory.port", d_port);
            props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
            props.put("mail.smtp.socketFactory.fallback", "false");
            SecurityManager security = System.getSecurityManager();
            try {
                Authenticator auth = new SMTPAuthenticator();
                Session session = Session.getInstance(props, auth);
                //session.setDebug(true);
                MimeMessage msg = new MimeMessage(session);
                msg.setText(m_text);
                msg.setSubject(m_subject);
                msg.setFrom(new InternetAddress(m_from));
                msg.addRecipient(Message.RecipientType.TO, new InternetAddress(m_to));
                Transport.send(msg);
                return "Successful";
            } catch (Exception mex) {
                mex.printStackTrace();
            return "Fail";
        //public static void main(String[] args) {
        //    MailSender blah = new MailSender();
        private class SMTPAuthenticator extends javax.mail.Authenticator {
            public PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(d_email, d_password);
    }

  • Can not specify the SMTP server port, username and password for my SharePoint 2013 web application

    We have our SMTP server under port number 141 and we should add username and password. but inside SharePoint 2013, I can only define the SMTP server name , from email, reply-to . But there are not fields to define the port number , the username and password.
    So can anyone advice from where I can define the port number and other field settings for the SMTP server ?
    Thanks

    i am no sure about user name and password. i never saw that option.
    check this guide:
    http://blogs.technet.com/b/tirumals/archive/2012/03/17/step-by-step-configuration-of-outgoing-emails-from-sharepoint-to-microsoft-online.aspx
    http://blog.fpweb.net/configuring-an-smtp-server-for-sharepoint/#.UuANoxAo6M8
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog
    thanks for the reply, but in our case the SMTP is  a separate server , and to connect to it i need to define the ; server IP /Name , port number, username & password. but in SharePoint there is no option to define the port number , and the links you
    provide are regarding configuring SMTP server, while we already have an SMTP server but i need to connect SP with it . can you advice please?

  • Why do we have separate selectors for "from" and "smtp server" these days?

    A while back we shifted our email from our own domain and virtual server to gmail.  As was the case using our own domain, we still have two seperate "from" names in a selector above the body of an email being composed, but now the selector for the SMTP server has two possibilities, both "smtp.gmail.com" but one ending with ":[email protected]" and the other ":[email protected]".  So now we have the possibility of sending emails with the email addresses "crossed" between the two selections.  Since both accounts use "smtp.gmail.com", is there a way to reconfigure the Apple Mail accounts so that there's only the "from" selector and not two entries in the server selector?

    Open up Mail's preferences. Under the Accounts tab, highlight one of the accounts. Each account should have their own SMTP server with the correct user I'd and password. If not, create one for each by editing the SM TP list. With the correct server shown in the list for the account highlighted, check the box to use only that server for that account. Repeat for the other account. You will still have 2 accounts in the server list, but it will automatically send from the correct server unless you have problems. If so, you will be given the option to use the other.
    Under the composing tab, select the appropriate account to send new messages from. You will probably want it set to send from the selected account.
    There is another way with gmail. You can go into gmail's settings. In settings for one account, you can add the other address to it for sending messages and set it to show the correct account it is sent from. I haven't had a gmail account in years, so you will have to explore that option for yourself if you wish to use it. Then you can use the same server for both accounts.
    You can also go in to settings for the second account and add the other to it. That way it will always show the correct address no matter which server an account uses.

  • 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

  • Where are the SMTP Server services, please?

    Hello
    Not sure this is the correct forum but can't see anything else.
    I use Visual Studio with IIS Express server. I wish to set up and configure the SMTP services so that I can test STMP email scripts.
    The SMTP server has to be set up from the Control Panel of my Win 7 PC (Windows Features), under Internet Information Services, but all I can see is this:
    Windows Features
    There is no reference to SMTP services. Likewise, if I go to Internet Information Services Manager (right-click on Computer and choose Manage), I cannot see SMTP Services, either:
    Manager
    Thank you for any advice. Please note that I do not have the Windows 7 installation CD (the Packard Bell PC I have came with Windows already installed).
    Thank you.

    Hi bluenose_ted,
    Thank you for visiting the MSDN forum. I’m afraid that it is not the correct forum about this issue, since this forum is to discuss and ask questions about the setup and deployment of .NET Framework.I am moving your question to the moderator forum ("Where
    is the forum for..?"). The owner of the forum will direct you to a right forum. Thanks for your understanding.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Fixing the SMTP server of localhost

    I have installed the role of the SMTP server in my VPS and it's okay as you see there is a red mark on.
    screenshot : prntscr .com/46tup6 
    (remove the space in the link between the "r" and ".", my account is not verified to post links) i want to fix this problem and need tomake the SMTP working normal.
    I think only can you can help me fix this hope you answer me soon!
    Thanks,

    Hi MalikMax,
    Did you confirm your SMTP configuration completed? You can refer the following related third party article to complete your configuration first.
    How to set up an Internal SMTP Service for Windows Server 2012 Essentials
    http://blog.powerbiz.net.au/exchange/how-to-set-up-an-internal-smtp-service-for-windows-server-2012-essentials/
    More about the IIS question please post to the IIS forum.
    IIS support forum
    http://forums.iis.net/
    Thanks for your understanding and support
    Hope this helps.
    *** This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites;
    therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure
    that you completely understand the risk before retrieving any software from the Internet. ***
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Can't send mail, get message: the smtp server rejected the password. I tried lock and unlock keychain. I tried unlock captcha. Gmail works okay, it is Mail that does not. Help!! :(

    Can't send mail, get message: the smtp server rejected the password. I tried lock and unlock keychain. I tried unlock captcha. Gmail works okay, it is Mail that does not. Help!!

    Hi
    You need to check with your ISP whether or not the send mail server (SMTP) requires a password.  Some do, but many do not.  When you know the correct password to send mail, then you need to tell Mail as follows:
    Mail menu > Preferences > Accounts > Select the account
    Click on the Outgoing Mail Server (SMTP) combo box, and select Edit SMTP Server List...
    In the Account Information tab put the server name
    In the Advanced Tab, set up the authentication information from your ISP.
    Good luck
    Bob

  • VD-4280: The SMTP server cound not be connected to

    I am trying to configure Email Notifications through OMS. When I hit the test button I get follwing message "VD-4280: The SMTP server cound not be connected to". I have given the correct IP address of our mail server for smtp Mail Gateway option. I have even added "OMS.VDM.SMTP.LINESEPARATOR=CRLF
    " in omsconfig.properties file as advised by metalink note 302828.1 but still i am unable to get rid of the above message.

    From the SQL*Plus prompt type "host" and go to an operating system terminal window. Can you ping the mail server?
    Did you set the SMTP_OUT_SERVER = <port_number> initialization parameter?
    Did you identify the mail server? For example:
    ALTER SYSTEM SET smtp_out_server = 'smtp.psoug.org' SCOPE=BOTH;
    Hopefully one of these will help.

  • Cannot edit the smtp server list in Mail (Yosemite)

    I am trying to edit the smtp server list in Mail.  I am running Yosemite on my MacBook Pro and always get this message.
    "The servers marked with alert icons are in conflict and cannot be saved. Two servers cannot share the same address and authentication settings. Resolve the conflicts and try again."
    There are no alert icons displayed!!! And I can not  delete a server.
    I need to change some smtp-settings and cannot edit anything.
    Any ideas?

    Back up all data before proceeding.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Mail/V2/MailData/Accounts.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Quit the application if it's running. Move the selected item to the Desktop, leaving the window open. Relaunch the application and try to recreate the account settings. If there's no change, quit again and put the item you moved back where it was, overwriting the one that may have been created in its place. Otherwise, delete the item you moved.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • 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

Maybe you are looking for