SAP to Exchange 2003 Mail Server

Hi,
We have upgraded our exchange servers to 2003 but when  I point SCOT at the new SMTP node I am getting an error message on a couple of lines inthe trace:
<b>[email protected] 806
806=501 5.5.4 Invalid Address</b>when I look in SOST.
I can telnet onto the exchange server from I-series without problem.
Is there any difference in set up for an Exchange 2003 server from SAP ? We can use SMTP to this server from non-SAP.
Many Thanks
David

Hi David,
We configured SMTP on WAS 6.40 based on Note 455140 long time ago. When the exchanged server was upgraded to 2003, we simply changed the hostname in SCOT, just like what you did, and it worked.
Note 751332 says that kernel upgrade is needed to a similar message, but it was very low patch level.
One time I reconfigured the whole thing to fix an issue I don't remember now... Or make the new node look like original one by keeping same hostname/IP address?
Good luck,
Victor

Similar Messages

  • My macbook air cannot sync with my office microsoft exchange 2010 mail server

    My macbook air cannot sync with my office microsoft exchange 2010 mail server.
    It used to work perfectly, and then I lost connection and was never able to establish one. I re-istalled my e-mail account several times, no success.

    I am sure all of you got your email issues sorted out by now but i was having trouble settings up exchange email on my Iphone 5S, and the problem i found was to go to settings, icloud, then log into icloud with your apple id first (before setting up the exchange email).  Once i logged into my icloud account on my Phone 5S, the exchange server email starting working and synching right away.
    to confirm this worked, i even deleted my email account and deleted my Icloud accounts both from my iphone was able to simulated the same exact problem (exchange server would not sync with my Iphone 5S) until i logged back into my Icloud account on my 5S.
    Again once i logged into Icloud, the exchange server issues went completely away.
    Just wanted to post this so anyone else having the issue could see.

  • Exchange 2003 & Mail not syncing

    All,
    In Leopard Mail, I have a .Mac account as well as an Exchange account set up with the Exchange server where I work. The .Mac account works great, does everything I want it to do; the Exchange account, however, simply will NOT sync email & what I do with it with Exchange.
    For the Exchange account setup, I have Mail set up to "Move Deleted Messages to the Trash Mailbox" checked, to "Store Deleted Messages on the Server," and to "Permanently Erase Deleted Messages When: Quitting Mail."
    So during the day, I'll move some messages to the Exchange folders that Mail did set up correctly, delete messages I don't want anymore, and then I'll hit "Synchronize All Accounts." When that's done, I quit Mail.
    About 5 minutes or so later, I'll log in to Windows using Parallels, open up Outlook, and see that the ENTIRE DAY'S MESSAGES are still in the Outlook inbox. They're shown as "read," but none of the messages that I'd moved to other folders in Mail or the ones I deleted in Mail are appropriately placed where they should be (either in their respective folders or in the "Deleted Items" folder in Outlook).
    Is anyone else having this problem?
    I do have a copy of Entourage 2008 with Exchange support, and that works fine (though it tends to crash 2-3 times per week). The thing is, I don't really like Entourage, am used to Mail, and prefer it to Entourage...and badly wish I could get Mail to work correctly with Exchange (2003).
    BTW, our Exchange server does have IMAP turned on, which works great with the iPhone. But Mail just simply won't work with Exchange no matter what I try.
    Any hints/ideas/something obvious I'm overlooking?

    We are having problems where I work as well. The problem is that Mail is constantly syncing with the server and takes FOREVER to complete it. I've tried every combination of settings you could do in Mail, and we've had both Mac & PC IT guys in that can't figure out why it takes so long to sync, and why it feels it's necessary to sync when I simply click on my Sent folder, or Trash folder...any little click causes the program to want to sync something. Even my calendar events of which i have zero, take 10 - 15 minutes to sync.
    Can anyone suggest a fix to my problem or the original poster's problem?
    Thanks in advance.

  • Querying Exchange 2013 Mail server for email items using c# and Exchange Web Services

    I am trying to upgrade an existing application that reads Exchange 2003 using WebDAV. The mail server is to be upgraded to Exchange 2013, so I am checking how I can use EWS.
    I have a problem in that although I know the inbox has unread items with attachments, the query I am running against the
    FindItems object is returning empty (results.totalCount=0)
    Here is my code snippet:
    private static void GetAttachments(ExchangeService service)
    // Return a single item.
    ItemView view = new ItemView(100);
    ServicePointManager.ServerCertificateValidationCallback = CertificateValidationCallBack;
    ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);// .Exchange2007_SP1);
    service.UseDefaultCredentials = true;
    service.AutodiscoverUrl("[email protected]", RedirectionUrlValidationCallback);
    ItemView view = new ItemView(1);
    string querystring = "HasAttachments:true Subject:'ATTACHMENT TEST' Kind:email";
    // Find the first email message in the Inbox that has attachments.
    // This results in a FindItem operation call to EWS.
    FindItemsResults<Item> results = service.FindItems(WellKnownFolderName.Inbox, querystring, view);
    //FindItemsResults<Item> results = service.FindItems(WellKnownFolderName.Inbox, new ItemView(50));
    if (results.TotalCount > 0)
    // looping through all the emails
    for (Int16 iDx = 0; iDx < results.TotalCount-1; iDx++)
    EmailMessage email = results.Items[iDx] as EmailMessage;
    if (email.IsRead == false) {
    // Request all the attachments on the email message. This results in a GetItem operation call to EWS.
    email.Load(new PropertySet(EmailMessageSchema.Attachments));
    foreach (Attachment attachment in email.Attachments)
    if (attachment is FileAttachment)
    FileAttachment fileAttachment = attachment as FileAttachment;
    What I am supposed to be doing is reading all the unread emails in the target inbox (only one Exchange server) and taking the attachments on disk so I can then add them as attachments as new cases on SalesForce.
    Where am I going wrong?
    Also, this line:
    ItemView view = new ItemView(100);
    was:
    ItemView view = new ItemView(1);
    Surely that will only look for one email item, right?

    thanks, do you know why I would be getting an error message like 'The specified object was not found in the store'
    here is my code:
    ServicePointManager.ServerCertificateValidationCallback = CertificateValidationCallBack;
    ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);// .Exchange2007_SP1);
    service.Url = new Uri("https://sgexc.bocuk.local/EWS/Exchange.asmx");
    //creates an object that will represent the desired mailbox
    Mailbox mb = new Mailbox(@"[email protected]");
    //creates a folder object that will point to inbox folder
    FolderId fid = new FolderId(WellKnownFolderName.Inbox, mb);
    //this will bind the mailbox you're looking for using your service instance
    Folder inbox = Folder.Bind(service, fid);
    FindItemsResults<Item> findResults = service.FindItems(new FolderId(WellKnownFolderName.Inbox, new Mailbox("[email protected]")),new ItemView(10));
    it's happening on this line:
    Folder inbox = Folder.Bind(service, fid);
    and if I try to use AutoDiscoverURL then I just see my own inbox.

  • Relay issue from Unix across Exchange 2003 OWA server in Exchange 2010 environment

    Hi,
    I'm trying to resolve an issue.  We have one Exchange 2003 server left in our environment. The rest is now Exchange 2010.  We are working to decommission this server. Monitoring the SMTP logs, I am working with the various groups to get the traffic
    off this server and onto the Exchange 2010 environment.
    The issue we are finding is with a work flow. This Java app for eBis sends email to users. This is done correctly through Exchange 2010 and gets delivered from our HUB/CAS servers to the target user mailbox. This email has several links the user must click
    for approving or rejecting requests. Upon clicking Approve, a new email window opens (we use Outlook 2010).  The TO address is in the format of [email protected]  Upon clicking Send, our Exchange 2010 HUB/CAS servers accept the
    email, because one of our send connectors has, as address space, *.domain.corp.  However, the email address being used it not an alias on any Exchange 2010 mailbox, so it appears Exchange 2010 is sending this email on to the Exchange 2003 server, which
    also is an SMTP server.  I *think* this server is looking at the address after @ to determine where to send it (ebisserver.domain.corp, which is valid in our DNS), and sends it on to that server, where the java "listener" program intercepts
    the mail, processes it and then saves it to a file somewhere.
    We are at a loss as to how to get Exchange 2010 to do this instead of Exchange 2003... once this traffic is eliminted from Exchange 2003, I can proceed with decommission of this server.  Any help troubleshooting this issue is appreciated.

    The only reason the Exchange 2010 server would route outbound mail through an Exchange 2003 server is that you have an SMTP Connector defined on the Exchange 2003 server that has a more specific domain than you have on the Exchange 2010 server.  You
    should be able to see all your Send Connectors (an SMTP Connector on Exchange 2003 looks like a Send Connector in Exchange 2010) by running Get-SendConnector.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • SAPCONNECT  - RFC between SAP BW system and Mail Server

    Hello Everybody,
    Iam trying to enable <b>Information Broadcasting</b> feature in SAP BW System i.e; i want the queries to be send to users from BW system to their Email Ids for which i have made configurations for SMTP node in SICF and SCOT transactions.My problem is that do i need to create an RFC between BW system and Mail Server ,if yes iam not getting the way to do this and wt all parameters need to be set there .If somebody can plz guide me with the parameters that need to be set for SAPCONNECT or send me some good guide which details the creation of RFC ,I shall be highly obliged.Iam struggling with this issue since many days,You can send the guide to me on my email Id [email protected] .Your help shall be of gr8 support.Kindly revert at earliest.
    regards,
    Saumya

    Hi,
    My understanding is -
    you need to following setting to send mails-
    http://help.sap.com/saphelp_nw04/helpdata/en/66/9c25413fabef23e10000000a155106/content.htm
    Need this, if planning to use fax, SMs etc-
    http://help.sap.com/saphelp_nw04/helpdata/en/2b/d925bf4b8a11d1894c0000e8323c4f/content.htm
    hope it helps
    regards
    Vikash

  • Exchange 2010 MBX with a Exchange 2003 Frontend server. Coexist?

    We currently have a exchange 2003 environment with 5 mailbox server and 1 front end server. We would like to introduce a 2010 Exchange MBX server. Is that possible? Do we just install the MBX role with CAS/HT? 
    Thnaks, 

    Hi 
    You need to have MBX,CAS and HUB all the three in Exchange 2010 else they wont be functioning without any one of them.
    You can introduce Exchange 2010 server in Exchange 2003 server environment 
    Ensure you have at-least Exchange server 2003 SP2 else the it wont allow you to install Exchange 2010 
    You can only deploy Exchange 2010 in an Exchange 2003 organization that operates in native mode
    Below article for your reference 
    http://technet.microsoft.com/en-us/library/aa998604(v=exchg.141).aspx
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you.
    Regards,
    Sathish

  • Dpm 2012 email notification using a non-exchange smtp mail server

    Has anyone successfully been able to configure DPM 2012 to send email notifications to a standard SMTP mail server (NON-EXCHANGE)?

    Hi Happy,
    I try with IIS6 SMTP server with Anonymous Access.
    From DPM side, settings for "Authentificated SMTP Server: Username/password" :
    1- Leave blank =>ID 2013 : logon failure : unknow user name or bad password.
    2- DPMServerName\UserAccount => Works :)
    Network trace with Wireshark :
    1- Nothing => Most likely blocked by DPM console : Authentificated SMTP Server must be fill.
    2- See full SMTP connection, mail send.
    Could you do network trace to see what's happen ?
    Stephane
    Please remember to click “Mark as Answer” on the post that helps you. This posting is provided "AS IS" with no warranties. knowledge is valid only if it is shared by All.
    My DPM blog Yet Another DPM Blog

  • Sap enterprsie integration with mail server

    hi
       Is it possible to integrate sap with mailserver without the use of any connector (ie with smtp or any other protocal).please suggest.
    regards
    ravi

    assume you want SAP internet mail gateway
    1. download ML_xxx from sap market place under kernel folder(SAP internet mail gateway) and configure mailgw.ini
    2. if you are using windows OS then install sendmail for windows (indigo mail can be purchased US$49/license), otherwise if UNIX, maybe sendmail already installed or use qmail.
    your server should be ready to talk to a SMTP mail server.

  • Exchange 2003 legacy server

    Hi
    We have 2010 exch currently and would like to upgrade to 2013.
    before proceeding I have a question about exch 2003.
    when exch 2003 was removed and decommissioned its not entirely gone yet we still see exch 2003 exists in organisation and we want to total remove this now.
    can you please assist or suggest something please. thank you.
    p.s. we currently decommissioning exch 2007 as well.
    regards
    KB

    Hello,
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Cara Chen
    TechNet Community Support

  • Exchange 2003, SBS Server, Outlook 2010, User Over Limit, 2 GIgs

    I have a user's who's account is over limit. I have recently done a clean install of Windows 7 Professional and Office 2010. I keep trying to have his computer archive old emails but in the process the machine keeps hanging. I try to crash out Outlook
    but the outlook.exe process will not let me shut it down telling me access denied. The only way to recover is to completely shut down the computer (which I cannot do VIA the regular shutdown option because of outlook hanging). What do I have to do to resolve
    this problem? Kind of urgent as it's affecting his receiving emails.
    Vern

    Hello,
    According to your description, the issue seems to be related to outlook profile or your PC. I recommend you check if the issue occurs when other users use the PC. If the issue doesn't occurs, it means your outlook profile should be problem.
    If the issue persists, please check if there is related error in application log.
    If there is any update, please free let me know.
    If you have any feedback on our support, please click
    here
    Cara Chen
    TechNet Community Support

  • IOS 4 / Exchange 2003 No longer works

    I just upgraded my iPhone 3G to iOS 4.0. We did not have any problems with connectivity with an Exchange 2003 mail server. Now my Inbox no longer works. My calendar and contacts work just fine. I make an update on my phone and it is pushed to Exchange. We are running Exchange 2003 and ISA Server 2004. I checked the firewall logs and everything is clean. My other external emails are just fine. Any ideas?

    I had 3 users show up with iPhone 4s. 2 of the 3 synced fine against Exchange 2003. The third would attempt to sync but eventually time out and get a server connection failed error after adding the account. All three users were previously syncing fine with iPhone 3GS phones against the same Exchange 2003 setup.
    Upon further inspection I noticed that the account was successfully connecting and retrieving the mailbox subfolders that the user had created and that the user was able to send mail from his phone. This led me to believe that there was nothing wrong with the account but rather the phone was having trouble enumerating all of the mail in the user's mailbox.
    Turns out the user had around 40,744 items in his main inbox folder. Upon creating subfolders for 2004/2005/2006/2007/2008 and moving all older mail into these subfolders, the user was left with approximately 13,000 items in his main inbox from 2009-2010. Immediately after archiving the older mail, the phone began successfully syncing again.
    Hope this helps

  • Can't send replies using Exchange 2003 account - smtp works fine if I type an address?

    We have new IPad users trying to connect to an Exchange 2003 Mail Server.  Everything works well EXCEPT if they try to REPLY TO any message - it brings up a generic "check your mail settings" error every time.
    If we compose mail by hand, it sends OK
    If we use a contact, send mail to them, it works fine.
    We also have IPad users connected to a 2010 Exchange Server, no such problems.
    Anyone have similar issues?  Any advice on a fix?

    I've got 38 iPhones deployed running the 3.1.2 OS against an Exchange 2007 server. Several of my users complain about the same issue, and I've seen it myself. I have found a workaround of sorts - I've found that if I've sent a message with an attachment and I get a failure to send, if I manually browse down to the Sent Items folder, that forces a replication of the Sent Items. The next time I do a manual sync, the e-mail with the attachment will go.
    I presume this has something to do with Exchange trying to put a copy of the e-mail in to your Sent Items at the same time the iPhone is trying to send the message.
    Potentially, this might be solved by turning off the option to always store your sent e-mails in the Sent Items. I have not yet tested that as a workaround as from a corporate standpoint and an ease-of-use standpoint, we want that e-mail in the Sent Items for reference.
    If anyone has any success with this fix, please let me know.

  • Problem with IOS7.1 and zip file on Exchange 2003

    After the update to IOS 7.1 an mail from Exchange 2003 mail server with a zip file.
    the zip file cannot unzipped by any app.

    There's a patch available for this problem.
    Contact [email protected] or wait until next SP goes to GA.
    Kumar
    Niranjan Soni wrote:
    >
    Hi
    I am facing few problems when i try to start my WLS 5.1 with Java 1.3
    When i try to start my Weblogic Server from Start Menu it gives me following
    error :--
    The dynamic link library javai.dll could not be found in the specified path
    D:\Weblogic\bin;;C:\WINNT\System32;C:\WINNT\System;C:\WINNT;d:\jdk1.3\jre\bi
    n;
    d:\Weblogic\bin;d:\Weblogic\bin;C:\WINNT\System32;C:\WINNT;d:\jdk1.3\bin;d:\
    Weblogic\bin;
    Also as per the installation document, it says to set java system path, java
    system classpath,
    Weblogic Classpath, weblogic.properties file, weblogic.policy file and
    licenese.
    Do i need to make above changes even if i decide to Start my Weblogic Server
    from Start Menu
    or as NT Service and not start it from Command line.
    If i run WLS5.1 from Start Menu.. do i need to make any specific changes in
    terms of path and classpath.
    I read the installation doc but i got quite confused with that as i am new
    to Weblogic...that's why i am posting the query over here.
    There is another problem that i am facing..it not related to WLS Start
    up......but it is of setting the
    classpath from java command line argument...I am running on NT and when i
    type in the following
    java -classpath -v c:/Weblogic/classes/boot
    it says "Unable to initial threads : Can not find class java/lang/thread"
    i have set the java classpath in my Classpath Environment Variable.
    Any help ??
    Thanks to all
    Niranjan

  • Connecting Exchange 2003 to Apple Mail on Mac OS 10.5.8

    Having trouble connecting apple mail to Microsoft exchange server 2003 on this Mac. Currently Entourage is in use (Office 2004) and working. Apple Support and our IT man have tried to solve it together, filling in all relevant fields of the account information. The only questionable field was "Outlook Web Access Server" which we first left blank then filled in later. This should work but does not. Resulting in mail sitting in the outbox while trying to send. Connection Doctor confirms that "Mail was unable to connect to the internet" while both the "Incoming Exchange" and "Mail Server" are trying to connect to the server. Anyone got any clues.
    NB we don't have an "Outlook Web Access Server".
    Steve

    owa must be enabled on Exchange server, also entourage use the same protocol (http and webdav, if entourage works OWA is yet enabled)
    OWA is a feature integrated in exchange 2003.
    what address you set on mail client like exchange server? is an ip address or you use a URL?
    there is only one ex2003 or you have many servers in your infrastructure?

Maybe you are looking for

  • Solaris 10 Unable to use "Dumb" KVM (Avocent SwitchView USB 4-Port)

    I have two Sun Blade 150 clients, one loaded with Solaris 8, the other Solaris 10. I noticed that if I put the clients on a "dumb" KVM (Avocent SwitchView USB 4-Port), that the Solaris 8 machine works when switching between KVM channels (the /var/adm

  • TS1646 Problem with updating payment information with iTunes

    I have tried multiple times to put my DEBIT card information into iTunes and it is still not taking it. I have also tried to add my mom's and it is telling me the same thing. That the "credit card does not match bank records." Does iTunes not take de

  • Login popup when trying to view the KM documents

    Hello Everybody, We have uploaded some of the Word documents on KM in portal and created links in the KM fo rthe same documents. Now, we have creted KM link iview on portal to display these links on the screen. The purpose of above to provide the hel

  • No Sound Effects after 6.1 upgrade

    I upgraded my iPad (third generation) to 6.1 and I have no sound effects. What can I do to get them back?

  • Cache Invalidation using Invalidation Rule -not working

    Hi, I am caching a JSP using servlet caching by specifying it in the cachespec.xml. I am setting a dependency id for the cache entry and have also set an invalidation rule saying if the dependency id comes as a parameter for "xyz" then invalidate the