What is my exchange server address?

This is absolutely killing me. I successfully set up my exchange account on my iphone 3g before - but then i dropped it in water, had to get a new one and now i don't know how i set it up.
i have owa access with https://server2.southeast.net/owa
my username is shea
i don't use a domain when i sign in, but in case it is southeast.
i type in all my info, and when it asks for server, no matter what i type in always says exchange account verification failed.
please help! btw, i'm using exchange 2007.

Read this and post back if you have trouble.
http://www.techsack.com/2008/08/19/getting-your-iphone-to-work-with-exchange-act ive-sync-ssl-certificate/

Similar Messages

  • How do I know what my Microsoft Exchange server (incoming) is?

    I don't know where to check for this info (other than the IT guy), if anyone knows where I can find this online? Much appreciated.

    *" How do I know what my Microsoft Exchange server (incoming) is? "*
    Ask your systems/network administrators.

  • Querying exchange server address book

    Hello guys
    How can I retrieve information in microsoft exchange server address book using jdbc?
    Thanks for any help.

    IMO, I'd use Address Book. I tried Entourage for a while, but prefer the separate mail, iCal, and Address Book apps.
    And I've had few problems keeping my work and home macs, as well as my Nokia, sync'd in the two years I've been a subscriber.
    - Wayne
    PowerMac G5   Mac OS X (10.4.8)  

  • Mail is changing my Exchange server address

    So I work offsite from my office and the office has it's own Exchange 2007 server.  When I add my email to Mail.app, it autodiscovers my settings and properly sets up my account. 
    The issue happens when I exit the app and re-open the app, I start getting errors and find that Mail.app has changed my internal server address to something different, and I have to change it back again to the right one, ie:
    Correct address:
    mobile.xxxxxxxxxx.com
    Wrong one that Mail.app changes the address to:
    exchange.xxxxxxxxxx.com
    Anyone know how to keep it from doing that?

    Figured it out. 
    I let Mail.app change the internal server to the exchange.xxxxxxxx.com address, and added the mobile.xxxxxxx.com address to the external server field, and everything works without errors now.

  • Whats SMTP/POP3  host server address in JavaMail

    Hello friends,
    I came to know that we could send mail through Java through JavaMail
    I downloaded some eg code ( for sending mail to some one )
    I downloaded the mail.jar and activation.jar (and put it in right palce where it was asked to)
    I am using java 1.6 SE
    what i could not understand is what is
    POP3 server
    SMTP server
    How / What to put server address in the code
    Please help me. Here is the below code
    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);
            /// System.out.println(" 1");
             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="pop3.mydomain.com";
    String from="[email protected]";
    String to = "[email protected]";
    String subject="Test";
    String message="Testing";
    String[] filenames =
    {"c:\\somefile.txt"};
    client.sendMail(server,from,to,subject,message,filenames);
    System.out.println(" Mail Has been sent");
    catch(Exception e)
    e.printStackTrace(System.out);
    } and the error i get after running this is
    javax.mail.MessagingException: Could not connect to SMTP host: pop3.mydomain.com, port: 25;
      nested exception is:
         java.net.ConnectException: Connection timed out: connect
         at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1391)
         at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:412)
         at javax.mail.Service.connect(Service.java:288)
         at javax.mail.Service.connect(Service.java:169)
         at javax.mail.Service.connect(Service.java:118)
         at javax.mail.Transport.send0(Transport.java:188)
         at javax.mail.Transport.send(Transport.java:118)
         at MailClient.sendMail(MailClient.java:39)
         at MailClient.main(MailClient.java:76)
    Caused by: java.net.ConnectException: Connection timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:233)
         at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:189)
         at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1359)
         ... 8 more
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I followed ur Advice
    I got another code which works perfecty as i wanted
    this uses Gmail SMTP
    Thanks
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    public class Main
        String  d_email = "[email protected]",
                d_password = "password",
                d_host = "smtp.gmail.com",
                d_port  = "465",
                m_to = "[email protected]",
                m_subject = "Testing",
                m_text = "Hey, this is the testing email.";
        public Main()
            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(d_email));
                msg.addRecipient(Message.RecipientType.TO, new InternetAddress(m_to));
                Transport.send(msg);
            catch (Exception mex)
                mex.printStackTrace();
        public static void main(String[] args)
            Main blah = new Main();
        private class SMTPAuthenticator extends javax.mail.Authenticator
            public PasswordAuthentication getPasswordAuthentication()
                return new PasswordAuthentication(d_email, d_password);
    }

  • What/where is the "server address" for the My Cloud NAS?

    I recently purchased a 2TB My Cloud NAS to store my FLAC music files (many thousands of them). I'm trying to use JRiver as a media controller but I can't find a path to the files. I'm using a Macbook Air (osx 10.10.4). The controller program asks for a "server address" and I have no idea what it is or where I may find an address. The music files are in the Public folder and there is no other identiification for it as far as I know. One forum suggested the following link : http://wdc.custhelp.com/app/answers/detail/a_id/2686/~/how-to-map-a-wd-network-drive-on-a-mac This link offers several suggestions for a server address, but they are for My Book units and of course they don't work. Where, or how do I get a server address for my files on a My Cloud unit? I'm lost. I would appreciate any help. Thank you for your time.     Bill

    Welcome to the Community.
    In most cases, the Server Address is the current path that leads to the devices and/or shared folders. This means the IP address of your unit or your device name, and depending on your system, the exact location to the share with your data. You can obtain the current IP address used by your WD My Cloud in your router and also in your NAS's admin page.

  • What is my exchange server adress

    im trying to add my hotmail account to my note on the macbook also seeing if that will bring all my notes back onto my note book as all notes have been lost is there anyway to get them back , i know i have not deleted any of them

    Read this and post back if you have trouble.
    http://www.techsack.com/2008/08/19/getting-your-iphone-to-work-with-exchange-act ive-sync-ssl-certificate/

  • Exchange Server 2008 and Apple Mail App

    My place of employment recently hired a 3rd party company to handle setting up and managing our servers. This includes our email, which is now run on Microsoft Exchange Server 2008.
    I am the only user in the office that uses Macs, and we are having an impossible time of figuring out what could be wrong that Apple Mail is not letting us connect to the Exchange server to receive/send email. We can ping the Exchange server just fine from Terminal.
    Does anyone have any experience with this? Anyone know of work-arounds? I'm using 10.4.11 at the moment. Mail is version 2.1.3.
    I read all the other Exchange-related topics in here and none were able to help me.
    Thank you!
    Message was edited by: JTelcontar (typo!)

    Well that's bizarre, since I have the opposite problem. I can connect to the Exchange Server using Entourage 2004 no problem. However I do not use the Outlook http:// type access, I simply typed in the Exchange server address something like SEBNN-EX002. Then Entourage went off and established all the connections et voila.!
    But there are issues however. Entourage could not connect to the address server, so I think that's an LLDP problem but I'm not too bothered about that. Also I think some of the Calender implementations have a few bugs. For example, you can't drag-and-drop a mail item onto the calender icon to create an event, you have to right-click and use the built-in scripts to do it. Also, inviting attendees to a meeting is a bit hit/miss.
    I would actually like to use Apple Mail instead, but have never been able to configure it to run - it always gets the "cannot connect to exchange server" error. An y advice would be welcome.

  • Exchange Server help

    Hi
    I had a 9300 before and had no problem syncing my mail.
    Now I have a e70 and things seem more difficult.
    I see that I have to download mail for exchange And have exchange server installed. Can someone please explain in layman's terms how I do this.
    I am just a single home user and do not work for a company that has a mail server. I do have a always on LAN & Wireless Internet connection at home.
    The main problems that I have is: Where do I find Exchange Server. I have Office XP Pro. Is it included in that package or is it extra software that I need to purchase.
    How do i know what version of Exchange Server I should have.
    If it is installed how do I set up a Exchange Server mailbox.
    I do not have a System Administrator to answer my questions.
    Where do I get the login & account details. I do not use a login or password to enter Windows.
    I would like to access my mail , calender & other details through the internet.
    I would like to sync with my Outlook mailbox on my computer & not my service provider mailbox as those mails will already be downloaded to my computer at home.
    I would like to have my mailbox on my phone exactly the same as my mailbox on my computer, So when I delete stuff on either my phone or computer it will sync up and have both the same.
    Thank you
    Ivan

    Hi,
    If your email system supports OMA, then you should be able to get the correct settings (server address, domain etc) from your server administrator.

  • Exchange server name not changing in mail profile after migration from 2010 to 2013

    Following a migration from 2010 to 2013 we are finding that for a number of users the old exchange server address stays in the mail profile (control panel -> mail -> e-mail accounts) which causes Outlook not to load.
    We are able to go into control panel -> mail -> e-mail accounts and change this manually to the new exchange 2013 server address but we have quite a number of users and don't really want to do it manually.
    Shouldn't it be updating automatically and if so why is it?

    Hi,
    Yes, it should be changed by autodiscover. Does this issue occur to all the migrated users?
    I have seen this kind of issues before when migrating from Exchange 2003/2007 to Exchange 2010. The most efficient way is to rebuild the Outlook profile.
    Thanks,
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Simon Wu
    TechNet Community Support

  • Can't set up Exchange Server with 3G

    I'm very frustrated. I upgraded primarily so I can get push email / calendar from my work. It doesn't seem to be able to set me up. Could this be a port or settings issue at work? I was told that this shouldn't be an issue.
    Yes, I've put in my email and password correctly. After clicking next it asks me for my exchange server address which I supply. It then says "verification failed". I've tried every possible combination.
    We do also use exchange access through webmail. Should I use this instead of my rather long exchange address? Could it be an issue with multiple servers?
    Am I the only one having problems?

    make sure you're entering it correctly, sounds daft but if your webmail address is
    http://mail.company.com/exchange
    then all you enter on the phone is
    mail.company.com
    Hope this helps

  • Apple Mail random messages disappear Exchange Server 2007

    I've had this problem for several months and have been biting the bullet. I am a tech at ASU.
    Seemingly random messages don't appear in my inbox. From any source or domain.
    I have noticed some consistency in that messages are more likely to disappear if I have viewed them with a blackberry. Also, after a reply, I am more likely to not see the original message.
    *I think the problem is related to synching, not sure if it's on the Mail client or an exchange server setting.*
    I have tried rebuilding everything, changing my settings to not delete or move things --no rules etc.
    I have observed this phenomena when the blackberry is out of the equation. I have observed it after a fresh install of Leopard. It has been close to a year. Out exchange admins are not familiar with AppleMail and are not inclined to change any settings to be more Mail friendly.
    I am willing to keep my exchange mailbox down to a certain size, apply whatever changes or third party synch clients if it will resolve the issue. This is clearly a incompatibility with Exchange and Mail, but the rest of my peers at the University do not have this issue :/
    Your help and advice would be sooooo appreciated, you have no idea. Thanks ~Steve

    I have the latest version of Snow Leopard, 6.1, installed. I've been trying to hook up Mail to our Exchange 2003 server for a few days with no luck. Any hints? I've trying to use the same settings I have in my Entourage account. No dice. I've tried both Exchange 2007 and Exchange IMAP.
    Anything I should know besides our Exchange server address? I've tried from within the Company and from my home. The message I get is always the same:
    +"The Exchaange IMAP server "xxx" is not responding. Try checking the network connection, and that the server name is correct. Otherwise, the server might be temporarily unavailable. If you continue, you might not be able to receive messages"+
    Maybe something needs to be done at the server end to accept Apple Mail?
    Anyway, any hints are welcome.
    Thank you, Cerrense

  • HT2623 iCloud SMPT server address

    what is the SMTP server address for icloud? I cannot send out emails from my Mac mini suddenly and iCloud in the preference is not working...

    Thanks mende1!
    I added smtp.mail.me.com to additional SMTP - and after a while - it started to work both ways (iCloud and smtp.mail.me.com) ... weird. Thanks again

  • Mail won't auto complete Exchange email addresses after Lion

    Hi there. I tried to lookup a solution for this problem on the support communities but wasn't able to. Since upgrading to Lion, the auto complete feature for email addresses in my University Exchange server won't work. Mail only completes addressees contained locally in my Mac. The feature worked fine with Snow Leopard and continues to work on both my iPhone and iPad. It's worth noting that setting up the exchange server itself wasn't a straight forward task either as the auto setup didn't work and I had to enter the exchange server address manually in Mail. Any help on this would be much appreciated.

    The screenshot below is from SL, not Lion, but see if you can find something similar to this.
    In Mail prefs, click on 'Composing', and look for the 'Configure LDAP' button. Click on that and add your server with the little '+' button.

  • What the heck is brute-forcing our exchange server?

    Hello all,
    We have been getting FLOOODED with (what seems like) brute force attacks on our server. We use RDP a lot for remote connecting but our firewall (Sonicwall) is setup to block IPs that aren't ours (I've seen this resolve RDP brute-force attacks first-hand).
    The problem is that i'm used to seeing the "Failure Audit" logs with "Logon Type 10" and an IP that was attempting the connection, but now we're being flooded with "Logon Type 8". The issue that has me concerned is that i'm now
    seeing a LARGE amount (438 entries) of failed login attempts with no IP address to indicate where it's coming from.
    Now, as much as I love Batman, I know for a fact noone on our end was trying to login under this account (or the hundreds of other accounts that attempted logins). I copied one of the event viewer logs below and literally ALL of the events are identical
    with the exception of the Account Name (the acct name is different and always something blatantly fake).
    My guess is that there is some type of bot trying to authenticate using OWA to get email access, however I could be 100% wrong (the logic comes from the fact that an exchange file is listed on every event). ANNNNY input / advice on this matter is appreciated!!!
    An account failed to log on.
    Subject:
    Security ID: NETWORK SERVICE
    Account Name: <serverHostname, Edited out for security>
    Account Domain: <our domain>
    Logon ID: 0x3e4
    Logon Type: 8
    Account For Which Logon Failed:
    Security ID: NULL SID
    Account Name: baseball <This is different across the events>
    Account Domain:
    Failure Information:
    Failure Reason: Unknown user name or bad password.
    Status: 0xc000006d
    Sub Status: 0xc0000064
    Process Information:
    Caller Process ID: 0x2f3c
    Caller Process Name: C:\Program Files\Microsoft\Exchange Server\V14\Bin\EdgeTransport.exe
    ^this is what leads us to believe it's coming from OWA / email login attempts
    Network Information:
    Workstation Name: <servername>
    Source Network Address: -
    Source Port: -
    Detailed Authentication Information:
    Logon Process: Advapi
    Authentication Package: MICROSOFT_AUTHENTICATION_PACKAGE_V1_0
    Transited Services: -
    Package Name (NTLM only): -
    Key Length: 0
    This event is generated when a logon request fails. It is generated on the computer where access was attempted.
    The Subject fields indicate the account on the local system which requested the logon. This is most commonly a service such as the Server service, or a local process such as Winlogon.exe or Services.exe.
    The Logon Type field indicates the kind of logon that was requested. The most common types are 2 (interactive) and 3 (network).
    The Process Information fields indicate which account and process on the system requested the logon.
    The Network Information fields indicate where a remote logon request originated. Workstation name is not always available and may be left blank in some cases.
    The authentication information fields provide detailed information about this specific logon request.
    - Transited services indicate which intermediate services have participated in this logon request.
    - Package name indicates which sub-protocol was used among the NTLM protocols.
    - Key length indicates the length of the generated session key. This will be 0 if no session key was requested.

    Hi,
    logontype 8 is the same as logontype 3 -network logon except for the fact the password is sent in clear text.
    I think your OWA is publicly available and someoen is trying to access it. The fact the logontype is 8 indicates you might use basic authentication on the website- which is quite insecure. it migh lso be some other servcies (like smb) are available from
    the internet and abused.
    make sure the server is only reachable on the web on the needed ports 443 for the website, 25 for smtp. You firewall should block all the rest!
    For rdp (and other management tools) I would recommend blocking access over the internet and configuring some vpn solution.
    MCP/MCSA/MCTS/MCITP
    Thank you! This goes along with what we were thinking so it's very nice to see someone else saying it. We are looking more into the firewall rules and most likely getting an updated firewall altogether. With any luck we will be ok after setting up the new
    wall with all fresh Rules while keeping the threat in mind. Lots of rules currently and limited security options since it's ancient.
    Thanks for the response!

Maybe you are looking for

  • How to copy a plugin from one application to another,  is there an export possibility?

    I am using Apex 4.2.2 with 10g and OHS. There is a Gantt chart plugin in the Sample Calendar packaged application. I couldn't find that plugin for download. When I open it (Application Builder>Application 76373>Shared Components>Plug-ins>Create / Edi

  • Ipod Touch no longer syncing/backing up automatically

    I recently had to get my laptop "cleaned" due to a nasty virus, I had to reinstall Itunes but when I plug in my ipod nothing happens, itunes no longer syncs or backs up automatically, although it does recognise my ipod and everything is just the same

  • Invoice posting for the PO from Non-SAP system

    Dear Friends, I have one requirement like from Non-SAP system PO details will be accessed from SAP and after certain calculations Invoice will be posted for the same PO back to SAP. Everything needs to be done in Non-SAP system by accessing SAP syste

  • How can i build a portlet with multi-record fields

    Hi I am building an application and some of my forms need to capture multi-records fields,for example like Developer Forms does with Grids Can anybody send me an example to do this?. Thanks

  • White Balance and Colour Tints

    Hi, Well, I've had some time to sit and play with Aperture a little bit more, trying to get used to the interface and adjustment tools. I have to admit that once you get used to them, they work quite well. Unfortunately, the documention that comes wi