CMWS CANNOT SEND EXTERNAL MAIL WITH EXCHANGE 2013

Hi, all. i have integrated the cmws 1.5 server with exhcange 2013 mail server , now the webex can send mail to the user which in exchange, but cannot send mail to external mail server, how can i  fix this trouble? thank you.

Hi Bin,
Please look into exchange configuration, as it is not allowing emails from CWMS to be relayed to the Internet. This is not due to CWMS configuration.
Thanks,
Derek Johnson
Conferencing TAC

Similar Messages

  • Send External mail with Attchment from SAP

    Hi All,
    OUR REQUIREMENT: We need to send EXTERNAL MAIL with ATTACHMENT(Excel) form SAP .
    We have developed a function module which converts the internal table data into Excel Format and sends it as an attachment to External Mail.
    ISSUE : But our issue is we are unable to open that document using GOOGLE DOCS Could any one help me how to do this.
    it was thriughing error like
    Error log is .
    ''Sorry, we are unable to generate a view of the document at this time. Please try again later.
    You can also try to download the original document by clicking here. Alternatively, you can view the plain HTML (automatically redirecting).
    Regards
    Venkat .
    Edited by: venkata pradeep on Mar 5, 2012 10:26 AM
    Edited by: venkata pradeep on Mar 5, 2012 10:28 AM

    Is the excel file recognized by MS Excel? If not, then issue is you have wrongly converted your attachment and/or your FM to create an excel file was wrongly coded or you have passed it wrongly to your mail code.
    If you consider an OOP approach in sending external mail, refer to this link:
    http://wiki.sdn.sap.com/wiki/display/Snippets/SendingmailwithattachmentusingObjectOriented+Approach

  • Cannot send Internet Mail with Netscape Messenger 4.2 on Windows 2000 Server

    I can send internal mail with all my users and receive external mail, but when I try to reply or send to an external address, they just get SMTP Deffered and never get sent. What am I doing wrong?

    Netscape Messaging Server 4.15 is not supported on Windows 2000. Only on Windows NT.
    Sorry.

  • Cannot send e-mail with attachments. have aol mail.

    i have aol mail. everytime i try to send mail with pictures, i get an error message saying server
    http,smtp cannot be found. seems like i cannot send any attachments.
    == This happened ==
    A few times a week
    == March

    Hello Andy.
    First of all, and although possibly not related to your problem, I will remind you that the version of Firefox you are using at the moment as been discontinued and is no longer supported. Furthermore, it has known bugs and security problems. I urge you to update to the latest version of Firefox, for maximum stability, performance, security and usability. You can get it for free, as always, at [http://www.getfirefox.com www.getfirefox.com].
    As for your problem, read this support article. Hopefully it will be helpful:
    http://support.mozilla.com/en-US/kb/Websites+look+wrong

  • Sending external mail with excel attachment from SAP

    Hi All,
    I am trying to send a external mail from SAP. Mail is getting posted correctly with attachment having type excel. If attach file has more than 1 records then in mail it is coming in a single lines. it is not getting wrap.
    e.g. my attach internal table has records like LINE1
                                                                      LINE2
                                                                      LINE3
    output in attach excel file is : LINE1         LINE2          LINE3
    in attach file it should come line by line.
    source code of my function module is as follows :
    FUNCTION ZXI_SEND_MAIL_WITH_ATTACHMENT.
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(SUBJECT) TYPE  SO_OBJ_DES OPTIONAL
    *"     REFERENCE(ATTACH_NAME1) TYPE  SOOD-OBJDES
    *"     REFERENCE(EXT1) TYPE  SOODK-OBJTP
    *"     REFERENCE(MAIL_ID) TYPE  ADR6-SMTP_ADDR
    *"  TABLES
    *"      IT_CONTENT TYPE  SOLI_TAB OPTIONAL
    *"      IT_ATTACH TYPE  SOLI_TAB OPTIONAL
      DATA: send_request       TYPE REF TO cl_bcs.
      DATA: document           TYPE REF TO cl_document_bcs.
      DATA: sender             TYPE REF TO cl_sapuser_bcs.
      DATA: recipient          TYPE REF TO if_recipient_bcs.
      DATA: exception_info     TYPE REF TO if_os_exception_info,
      bcs_exception      TYPE REF TO cx_document_bcs.
      DATA i_attachment_size TYPE sood-objlen.
    Creates persistent send request
      send_request = cl_bcs=>create_persistent( ).
      TRY.
    *****Create txt mail document**************************
          document = cl_document_bcs=>create_document(
                                        i_type    = 'RAW'
                                        i_text = it_content[]
                                        i_subject = subject ).
    **************Creates Attachment 1***********************
          CALL METHOD document->add_attachment
            EXPORTING
              i_attachment_type    = ext1
              i_attachment_subject = attach_name1
              i_att_content_text   = it_attach[].
    Add document to send request
          CALL METHOD send_request->set_document( document ).
    Get sender object
          sender = cl_sapuser_bcs=>create( sy-uname ).
    Add sender
          CALL METHOD send_request->set_sender
            EXPORTING
              i_sender = sender.
          recipient = cl_cam_address_bcs=>create_internet_address(
                               i_address_string = mail_id ).
          CALL METHOD send_request->add_recipient
            EXPORTING
              i_recipient  = recipient
              i_express    = 'U'
              i_copy       = ' '
              i_blind_copy = ' '
              i_no_forward = ' '.
    **********Trigger e-mails immediately****************************
          send_request->set_send_immediately( 'X' ).
          CALL METHOD send_request->send( ).
          COMMIT WORK.
        CATCH cx_document_bcs INTO bcs_exception.
      ENDTRY.
    ENDFUNCTION.
    please suggest me a solution and thanks in advance.
    Thanks&Regards,
    Sachin

    See the sample code  for sending attachment as Mail
    Mailing with Attachment by ABAP Coding  
    Refer this link:
    Mail with attachment.
    FORM send_list_to_basis .
      DATA: w_path      LIKE rlgrap OCCURS 0 WITH HEADER LINE,
            lt_index    TYPE sy-tabix,
            doc_type(3) TYPE c,
            descr       LIKE it_objpack_basis-obj_descr,
            temp_data   LIKE w_path,
            temp1       TYPE string,
            tab_lines   TYPE i,
            langu(15)   TYPE c,
            expirydate  TYPE so_obj_edt,
            L_FILE1(100).
      CONCATENATE 'C:\' sy-repid '_' sy-datum '.XLS' INTO L_FILE1.
      W_PATH-FILENAME = L_FILE1.
      APPEND w_path.
      CLEAR w_path.
      wa_doc_chng-obj_descr  = 'User List not logged on for 180 days'.
      wa_doc_chng-obj_langu  = 'E'.
      wa_doc_chng-obj_expdat = sy-datum.
      CLEAR w_subject.
      CONCATENATE 'Please find attached document with list of users'
                  'not logged on for 180 days for client' sy-mandt
                  INTO w_subject SEPARATED BY space.
      it_objtxt_basis-line = w_subject.
      APPEND it_objtxt_basis.
      CLEAR it_objtxt_basis.
      it_objtxt_basis-line = text-004.
      APPEND it_objtxt_basis.
      CLEAR it_objtxt_basis.
      CLEAR w_tab_line.
      DESCRIBE TABLE it_objtxt_basis LINES w_tab_line.
      READ TABLE it_objtxt_basis INDEX w_tab_line  INTO l_cline.
      wa_doc_chng-doc_size =
       ( w_tab_line - 1 ) * 255 + STRLEN( l_cline ).
      CLEAR it_objpack_basis-transf_bin.
      it_objpack_basis-head_start = 1.
      it_objpack_basis-head_num   = 0.
      it_objpack_basis-body_start = 1.
      it_objpack_basis-body_num   = w_tab_line.
      it_objpack_basis-doc_type   = 'RAW'.
      APPEND it_objpack_basis.
      CLEAR it_objpack_basis.
      LOOP AT w_path.
        temp1 = w_path.
        descr = w_path.
        CALL FUNCTION 'STRING_REVERSE'
          EXPORTING
            string  = descr
            lang    = 'E'
          IMPORTING
            rstring = descr.
        CALL FUNCTION 'STRING_SPLIT'
          EXPORTING
            delimiter = '\'
            string    = descr
          IMPORTING
            head      = descr
            tail      = temp_data.
        CALL FUNCTION 'STRING_REVERSE'
          EXPORTING
            string  = descr
            lang    = 'E'
          IMPORTING
            rstring = descr.
        CALL FUNCTION 'STRING_SPLIT'
          EXPORTING
            delimiter = '.'
            string    = descr
          IMPORTING
            head      = temp_data
            tail      = doc_type.
        CALL FUNCTION 'GUI_UPLOAD'
          EXPORTING
            filename      = temp1
            filetype      = 'BIN'
            header_length = 0
            read_by_line  = 'X'
            replacement   = '#'
          TABLES
            data_tab      = it_upload.
        DESCRIBE TABLE it_upload LINES tab_lines.
        DESCRIBE TABLE it_objbin_basis LINES lt_index.
        lt_index = lt_index + 1.
        LOOP AT it_upload.
          wa_objbin_basis-line = it_upload-line.
          APPEND wa_objbin_basis TO it_objbin_basis.
          CLEAR wa_objbin_basis.
        ENDLOOP.
        it_objpack_basis-transf_bin = 'X'.
        it_objpack_basis-head_start = 0.
        it_objpack_basis-head_num   = 0.
        it_objpack_basis-body_start = lt_index.
        it_objpack_basis-body_num   = tab_lines.
        it_objpack_basis-doc_type   = doc_type.
        it_objpack_basis-obj_descr  = descr.
        it_objpack_basis-doc_size   = tab_lines * 255.
        APPEND it_objpack_basis.
        CLEAR it_objpack_basis.
      ENDLOOP.
      it_reclist_basis-receiver = '[email protected]'.
      it_reclist_basis-rec_type = 'U'.
      APPEND it_reclist_basis.
      CLEAR it_reclist_basis.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = wa_doc_chng
          put_in_outbox              = 'X'
          commit_work                = 'X'
        TABLES
          packing_list               = it_objpack_basis
          contents_txt               = it_objtxt_basis
          contents_bin               = it_objbin_basis
          receivers                  = it_reclist_basis
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          operation_no_authorization = 4
          OTHERS                     = 99.
      IF sy-subrc EQ 0.
        SUBMIT rsconn01 WITH mode = 'INT' AND RETURN.
      ENDIF.
    ENDFORM.                    " send_list_to_basis
    Reward points if useful
    Regards
    Anji

  • Cannot send e-mail with SO00 transaction

    Hi everyone,
    I'm trying to config my BW system to send e-mail.
    We have R/3 e-mail system working fine and I can send an e-mail by transaction SO00 as a test without any problems,
    I've managed to config my BW SMTP node in transaction SCOT with the same configs but when running transaction SO00 I receive an error message saying:
    Recipient                                          Result     Document     Date
    my_address@any_domain.com        You do not have a sender address in the chosen communication method     asd     05.11.2008
    Any ideas what config I'm missing?
    Thank you,
    Diogo.

    Hi Diogo,
    It is in yellow state? You have to shedule a job to send the emails.
    Go to SCOT t-code, and then enter in Settings->send jobs. There create a periodic job (maybe every 10 minutes), for example, to INT type and monitorize it.
    Can you try it?
    Kind regards.

  • Cannot send e-mail with attachment.

    can not send an E-mail with an attachment

    No, the senders are in most case sending from corporate servers which are almost certainly not Mac based. Also, remember this happens when I send or receive. So if I send something with an attachment, the attachment will go through, but the sent box will not show the paper clip icon so that I can distinguish the emails sent with attachments versus the emails sent without attachments. I receive the attachments as well, but again the paper clip icon does not show up so that I can distinguish the emails that I have received that contain attachments. Recipients of my e-mails have complianed that when they receive an attachment from me they do not see the paper clip icon which alerts them to the fact that the email contains an attachment.

  • Cannot send E-Mail with new BT Mail ...

    I have just been converted to BT Mail and have had various problems, most of which
    seem to be related to having to link my E-Mail address to a My BT ID.
    I can now use the BT Mail webmail application but only to read e-mails.
    As soon as I attempt to reply or forward an e-mail I get a small dialog box pop up
    saying "connection lost". This is *NOT* true, I still have an active internet connection. 
    I seem to get dropped out of the wemail application but I still have internet access
    and if I click on the mail icon on the main BT page I get straight back into webmail.
    This is my main e-mail address and this was the one I had greatest problems with
    when trying to link to a BT ID. It almost looks as if the link between the email and
    the BT ID is not setup correctly and I can only use BT Mail in what appears to read-only
    mode.
    Has anyone else seen this yet and what steps can I take to resolve it ?
    Thank you.
    Solved!
    Go to Solution.

    Hi headcrash and welcome.
    I think we'll need to take a closer look at this for you. Can you drop me an email with the details. You'll find the "contact us" form in the about me section of my profile. 
    Cheers
    David
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • Send External Mail Through One Exchange Server Only

    Hello,
    I'm very stuck on something & new to exchange.  I have two Exchange Servers:
    MAIL1: Windows Server 2003 & Exchange 2007 SP2
    MAIL2: Windows Server 2008 R2 & Exchange 2007 SP3
    All accounts are going to move eventually to MAIL2.  Until then, I would like any external emails sent, to be sent through MAIL1.
    So far all all internal mail can be sent & received, and any external mail received.  But I cannot send external mail from mailboxes on MAIL2 (just mine on MAIL2 at the minute).  MAIL1 works fine for everything.
    Can someone kindly explain what I should do to get all external mail sent through MAIL1?
    Thanks,
    Stacy

    Hi Stacy,
    We can just remove mail2 server from the mail2's send connector and add mail1 server to it.
    Then we can send mails to outside via mail1.
    Hope it is helpful
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Cannot send mail from Exchange 2013 to Exchange 2007

    I have an
    Exchange 2007server with all roles in the same server (Version:
    08.03.0327.001 ) on a Windows 2008 R2 server. I have now installed two Exchange 2013 servers both with CAS and MBX roles on Windows 2012 servers
    (full patched). There is also a DAG between the new servers. All mail goes through a BorderWare besides the internal mail.
    I can send mail from both environments to the Internet. I can also send internal mail from Exchange 2007 to Exchange 2013.But the problem is that I am unable to send from Exchange 2013 to Exchange 2007. I've debugged, but not solved the problem and there are
    few articles on the Internet.
    Any suggestions?

    These two sentences are in conflict : "I can also send
    internal mail
    from Exchange
    2007 to
    Exchange 2013. But
    the problem is
    that I am unable
    to send from Exchange
    2007 to
    Exchange 2013. "
    Can you describe what is your real problem? Flow from E2007->E2013? Or vice versa?
    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. Thank you! Damir

  • Empty email body and cannot send mails with exchange

    Hi,
    we moved from SBS 2003 to SBS 2010 and now people wiht iPhones have problems receving mails. The Problem is, that the mail body us empty, though in the preview I can see part of the content (see pictures sorry they are in German)
    Contacts, Calender content is synched without a problem.  Sending a mail over exchange is resulting in an error as well.
    I already have tried several suggestions from other like power of the phone, deleting the profile. I even restored it to the factory settings in itunes. No luck so far.
    There is an error entry in the iPhone Configuration Utility Console
         Jun  5 08:02:12 geraldfs-iPhone MobileMail[91] <Warning>: DA|Yikes: got an unhandled top level error 110
         Jun  5 08:02:12 geraldfs-iPhone MobileMail[91] <Warning>: EAS|ASSendMailTask failed: Error Domain=DAErrorDomain Code=110 "The operation      couldn’t be completed. (DAErrorDomain error 110.)"
    which indicates a problm, but I have no idea how to solve it.
    I have an guess, that it might be related to the certificate stored on the phone. Since we use dyndns to connect to exchange like (domain.dyndns.org) the domain name stayed the same, but the certificate changed. Since in the beginning I configured the phones manually I assume, that the certificate from the old server is still installed on the phone, and might clash wiht the new saver on the same domain (domain.dyndns.org).
    Does anyone has an idea how to tackle this issue?
    thanks
    Gerald

    Problem Solved.
    By chance the problem is linked to the problem, that you cannot reply on emails in Exchange OWA. The issue is caused by spaces in a name property in exchange.
    The solution is documented here:
    http://social.technet.microsoft.com/Forums/en/exchangesvrmobility/thread/321eae5 1-9cbd-4a5e-85c1-68d8f7b523c3 
    regards
    Gerald

  • Problem with Mavericks Mail and Exchange 2013

    Hello,
    I have just updated to Mavericks a few days ago. Now I have a strange problem.
    The setup with Exchange 2013 works fine ... so I can send&receive mails.
    The problem: I only get new mails. All (few thausand) mails stored on the Exchange account are not synced to mail?!
    Maybe anyone has an idea how to solve this ...
    Thanks,
    Marc

    Some problems with Exchange mail have been solved by disabling Autodiscovery. If that doesn't work, see below.
    Back up all data. Delete the Exchange account from the Internet Accounts preference pane and add it back. If there's still no improvement, continue.
    Quit Mail. Force quit if necessary.
    Back up all data. That means you know you can restore the Mail database, no matter what happens.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Mail/V2/MailData
    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. Paste into the box that opens (command-V), then press return.
    A folder window will open. Inside it there should be files with names as follows:
    Envelope Index
    ExternalUpdates.storedata
    Move those files to the Desktop, leaving the window open. Other files in the folder may have longer names that begin as above. Move those files, if any, to the Trash.
    Log out and log back in. Relaunch Mail. It should prompt you to re-import your messages. You may get a warning that the index is damaged and that Mail has to quit. Click OK.
    Test. If Mail now works as expected, you can delete the files you moved to the Desktop. Otherwise, post your results.

  • How to send e-mails with attachments using microsoft exchange servers?

    I was wondering if there was a way to send e-mails with attached data files.  The e-mail server utilizes a Microsoft Exchange Server.  I would appreciate any help that is provided.

    What version and type of development system of LabVIEW do you have. You have the SMTP Email Send File and SMTP Email Send Multiple Attachments in all except the base package.

  • Cannot write email body in OWA with Exchange 2013 SP1 CU6

    Hi,
    I have a problem with Exchange 2013 SP1 with CU6.
    All of OWA user cannot write in the body of email. They can write the Object and the recipient but they cannot select body and write the body message. We have try with multiple Web brother and desactivate all Add-on but the problem still there...
    The only way that works is to respond to an email, and in that case, it's working, we can write normally in the body of email.
    Have you an idea ?
    Thanks in advance!
    Sebastien

    Hi, 
    After contacting Microsoft support, we have found the solution.
    The problem appear after we have recently install the patch described in this KB 2997209:
    https://support.microsoft.com/kb/2997209?wa=wsignin1.0
    But on 2013 Mailbox Server, Echange is not installed in the default path C:\ but on D:\
    So we have to manually copy the content of folder D:\Program Files\Microsoft\Exchange Server\V15\ClientAccess\Owa\prem\15.0.995.29 in the folder 15.0.995.31 (MAKE a BACKUP of FOLDER BEFORE!)
    No need to reboot, or restart IIS, it's working after that!
    @+
    Sébastien

  • Outlook 2013 with Exchange 2013 keeps giving read receipts

    Hello experts,
    We have an Exchange 2013 server. All users are joint to the domain, except one user (Windows 8.1) which is in a Workgroup, and using Outlook 2013 with IMAP protocol. 
    This particular user is having a problem. When he send's any email from Outlook and requests a read receipt, after that he keeps getting hundreds of read receipts in his inbox. I have tried disabling (for temporarily) the Windows server 2012 firewall,  but
    still having the same issue. 
    Is this a known bug in Outlook 2013 with Exchange 2013? Any help troubleshooting this?

    Hi,
    According to your description, I understand that IMPA account get hundreds of read receipts while he requests a read receipt.
    If I misunderstand you concern, please do not hesitate to let me know.
    Whether are all account or some special user experience this question? Please do a test in external with IMAP account to double confirm.
    How about the “Request a Delivery Receipt”?
    Also, please run message tracking log to get more details about message mail flow:
    Get-MessageTrackingLog –Server “mailbox server” –Sender “[email protected]” –Recipient “[email protected]” –MessageSubject “Read: message subject” | Select Timestamp, ClientHostname,ServerHostname,Source,EventID,Recipients,RecipientStatus,Sender | ConvertTo-Html > “C:\Test\Test.xml”
    Thanks
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Allen Wang
    TechNet Community Support

Maybe you are looking for

  • How do I put a new Apple id into the iPhone?

    I moved and changed my email address.  In itunes, I changed my Apple id to the new email.  When I try to download an app to the iphone the old email address comes up and can't figure out how to put the new info in the phone? Help appreciated!

  • Lightroom 5 Printing under Mac OS 10.8 - crashes

    I have been using  Adobe Lightroom for several years - no problems. Recently I installed LR 5 on my imac  running OS 10.8. Two days ago I was able to print files. Suddenly Lightroom 5 crashed as it exceutes the print script. Have re-installed LR5 ser

  • One Purchase Requisition for One Maintenance Order

    Dear Consultants, We have implemented mySAP ECC 6.0.   We have more than 20 line items in one Maintenance order for  Item category N. Curently system is generating Purchase requisitions by line itemwise for Item category N(Non-stock items). Our clien

  • How do I restore a song that partially downloaded?

    I purchased David Bowie: Best of Bowie. Came to find "Young Americans" only plays for almost a minute then skips to the next song. Kind of frustrated.

  • How to store JcomboBox n textfield into textfile? Urgent!!!

    How to store JcomboBox n textfield into textfile? import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.text.*; import javax.swing.event.*; import javax.swing.border.*; import java.text.DecimalFormat; import java.io.*;