Problem in notificaion to send mails

hello all
I am having a problem in notification.i am able to create examples using notificaions and i can also deploy it.once i create an instance the visual flow indicates that the process is complete, but i do not reveive mails .infact i can see that the mails will be sent once i shut down the server.If in case i dont stop the serever i get an allert from the antivirus email scanner that the mails have not been sent...why is it that i will have to stop the server and then the mails start to be sent from my pc .
Thank you.

I got the same problem with symantec antivirus. I disabled the antivirus and worked fine. I dont know the real workaround for this problem but disabling the antivirus for testing purpose does not hurt. Also weird enough, the first time i try to send an email i got a rollback porcess erorr, but the following process instances worked flawlesly.
One recomendation is not to disable the whole antivirus, but disable the check email on send.

Similar Messages

  • Problem polling Inbox with Sender Mail adapter

    Hi,
    I have a funny problem with Sender Mail adapter (IMAP Protocol)
    It was working fine previously.
    Now, when I poll the Inbox, 2 things happen. After re-activation:
    1. If there is a new mail in the Inbox, the Communication channel marks the mail as read, but still keeps reading the same mail into XI.
    2. If there are no new mails in the Inbox, it reads the already read mails in the Inbox one by one. So all old mails start entering XI.
    This problem exists only with the Inbox. It works fine with other folders for the same mail ID.
    Any inputs as to why this is happening?
    Regards,
    Puloma.

    Hi,
    We re-started the server and problem was solved. But we don't know why the Adapter Engine was behaving erratically.
    Regards,
    Puloma.

  • Problem with openURL when sending Mail

    Hi All
    I am trying to send mail from my app using
    [[UIApplication sharedApplication] openURL: [NSURL URLWithString:emailData]];
    emailData contains a google URL that i want to send via email:
    http://maps.google.com/maps?f=d&saddr=45.578982,-73.565698&daddr=45.578982,-73.5 65698
    my problem is that on Mail app it is showing on the following portion
    http://maps.google.com/maps?f=d
    i did a couple of tests and find out that the problem is with the "&" i tried & or & did not work cause as soon as it finds teh "&" it drop the whole string that comes after it.
    Any help on how I should format this string to appear correctly on my email will be greatly appreciated
    thx for your help

    You missed the point of my reply. You need to escape anything that you send. When you send 'http://maps.google.com/maps?f=d&saddr=45.578982,-73.565698&daddr=45.578982,-73 .565698' it's just not going to work. As mentioned, you need to Google how to escape variables when sent via GET. Not to mention, your openURL command is wrong as well:
    [UIApplication sharedApplication openURL: NSURL URLWithString:emailData];
    Where emailData is:
    http://maps.google.com/maps?f=d&saddr=45.578982,-73.565698&daddr=45.578982,-73.565698
    will absolutely never work. Check the docs for how to use openURL for sending an email using the mailto: protocol. Also, if the emailData that you send using openURL: doesn't look like the escaped string from this tool: http://www.xs4all.nl/~jlpoutre/BoT/Javascript/Utils/endecode.html you aren't properly escaping your URL params.

  • HT201320 when i send an email using my hotmail address through outlook my contacts do not receive the mail. when i send the same mail through my iPad or iPhone no problem my contacts receive the mail. this only problem happens when i send mail with my mac

    I have a hotmail email address. I compose my mail useing MS outlook. when i send the mail to my contacts useing my macbook air,my contacts tell me there have not received the mail.
    when i send the same message with my ipad or iphone no problem my contacts receive the mail.
    what is the problem?

    Blair84 wrote:
    Double check your contacts email, and if its incorrect, go to their contact and change it and save it or you can delete the email you put in, and manually type it in.
    Hope this helps.
    How would that help the original poster?

  • Problem in script output sending mail

    hi ,
    I have a problem sending a mail with script output as attachment . I have searched in the forum for the answers but none is solved my question.
    I am sending the data to the otf and it is getting the otfdata. but it is not showing  the data on the script when it is sent as an attachment to the email , but it is showing only script with null values filled.( means i am getting the mail with attachment but in that attachment there is no data filled in the script send).
    the code is like this ..
    here i am filling the otfdata and i am exporting the otfdata
    CALL FUNCTION 'ZMM_ARRANG_ENTRY_ABR_NATRAB'
        EXPORTING
          i_nast       = nast
          i_fonam      = tnapr-fonam
          i_xscreen    = pi_xscreen
          i_arc_params = arc_params
          i_toa_dara   = toa_dara
        IMPORTING
          e_retcode    = px_retcode
        EXCEPTIONS
          OTHERS       = 1.
      IF ( sy-subrc <> 0 ).                "Fehler
        MOVE sy-subrc TO px_retcode.
        IF ( pi_xscreen = 'X' ).           "Ausgabe auf Bildschirm
          MESSAGE ID     sy-msgid
                  TYPE   sy-msgty
                  NUMBER sy-msgno
                  WITH   sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ELSE.
    *---Import OTFDATA from the memory
        IMPORT  it_otfdata FROM MEMORY ID 'OTF'.
      ENDIF.
      wa_maildata-obj_name = 'EMAIL'.
      wa_maildata-obj_descr = 'Settlement Details'.
    *-----mail contents
      it_mailtext-line = 'Sub-sequent settlement Details'.
      APPEND it_mailtext.
      DESCRIBE TABLE it_mailtext LINES v_lines.
      READ TABLE it_mailtext INDEX v_lines.
      wa_maildata-doc_size = ( v_lines - 1 ) * 255 + STRLEN( it_mailtext ).
    *Creation of the entry for the compressed document
      CLEAR it_mailpack-transf_bin.
      it_mailpack-head_start = 1.
      it_mailpack-head_num   = 0.
      it_mailpack-body_start = 1.
      it_mailpack-body_num   = v_lines.
      it_mailpack-doc_type   = 'RAW'.
      APPEND it_mailpack.
    *-----Get OTF data
      LOOP AT it_otfdata.
        it_mailcont-line = it_otfdata.
        APPEND it_mailcont.
      ENDLOOP.
    *---Move  OTF data into binary table
      LOOP AT it_mailcont.
        MOVE-CORRESPONDING it_mailcont TO it_mailbin.
        APPEND it_mailbin.
      ENDLOOP.
    *---Get no of lines in Binary data table
      DESCRIBE TABLE it_mailbin LINES v_lines.
    *---Fill name of the header of email
      it_mailhead = 'Subsequent Settlement Details.OTF'.
      APPEND it_mailhead.
    *---Creation of the entry for the compressed attachment
      it_mailpack-transf_bin   = 'X'.
      it_mailpack-head_start   = 1.
      it_mailpack-head_num     = 1.
      it_mailpack-body_start   = 1.
      it_mailpack-body_num     = v_lines.
      it_mailpack-doc_type     = 'OTF'.
      it_mailpack-obj_name     = 'EMAIL'.
      it_mailpack-obj_descr    = 'Settlement Details'.
      it_mailpack-doc_size     = v_lines * 255.
      APPEND it_mailpack.
    *----Get email address from the address number of vendor
      CALL FUNCTION 'ADDR_GET_REMOTE'
        EXPORTING
          addrnumber = l_adrnum
        TABLES
          adsmtp     = it_adsmtp.
    *----Get mail address
      READ TABLE it_adsmtp WITH KEY remark = 'AP_SUB_SETT'.
      IF sy-subrc = 0.
        it_mailrec-receiver   = it_adsmtp-smtp_addr.
        it_mailrec-rec_type   = 'U'.
        it_mailrec-com_type   = 'EXT'.
        APPEND it_mailrec.
    *---Send email with PDF attachment
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
            document_data = wa_maildata
            put_in_outbox = 'X'
            COMMIT_WORK   = 'X'
          TABLES
            packing_list  = it_mailpack
            object_header = it_mailhead
            contents_bin  = it_mailbin
            contents_txt  = it_mailtext
            receivers     = it_mailrec.
      ELSE.
        MESSAGE 'No email id Exist for the vendor' TYPE 'E'.
      ENDIF.
    please suggest me with your valuable answers .
    Regards,
    Venkat Appikonda.

    Hi venkat
    Just check if this helps you.
    The following part of the code does exactly that.
    Selecting details from the spool request table.
      SELECT * FROM tsp01 INTO TABLE tb_spool
               WHERE rqowner = sy-uname.
      IF sy-subrc EQ 0.
        SORT tb_spool DESCENDING BY rqcretime.
        CLEAR : tb_spool.
        READ TABLE tb_spool INDEX 1.
    convert spool into PDF format.
        CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
             EXPORTING
                  src_spoolid = tb_spool-rqident
             TABLES
                  PDF         = tb_lines.
      ENDIF.
    After this, on execution we get the below mentioned message.
    This indicates that a PDF of the SAP Script has been created which is in the format u201C132-long stringsu201D.
    In order to send the mail across, the mailing format of the PDF supports u201C255-long stringsu201D. So, the present u201C132-long stringsu201D needs to be converted into u201C255-long stringsu201D. This along with the mail code is mentioned below.
      DATA: lv_receiver(50) TYPE c.
      REFRESH: tb_obj_txt,
               tb_obj_bin,
               tb_obj_head,
               tb_paklist,
               tb_receiver.
      CLEAR: tb_obj_txt,
             tb_obj_bin,
             tb_paklist,
             tb_obj_head,
             tb_receiver.
      CLEAR: tb_adrc.
    IF NOT tb_adrc[] IS INITIAL.
    Reading the address table with the key as address number.
        READ TABLE tb_adrc WITH KEY addrnumber = tb_kna2-adrnr.
        IF sy-subrc EQ 0.
    Vendor Email ID.
          SELECT SINGLE smtp_addr
             FROM adr6
             INTO wf_mailaddr
             WHERE addrnumber = tb_adrc-addrnumber.
          IF sy-subrc EQ 0.
    Moving the mail address to the receiver itab
            MOVE wf_mailaddr TO tb_receiver-receiver.
            tb_receiver-rec_type = text-011.
            APPEND tb_receiver.
          ELSE.
            CONCATENATE text-004 tb_kna2-kunnr text-005 INTO lv_receiver
                                       SEPARATED BY space.
    If pa_call is initial, the receiver ID is printed; else an INVALID E-mail ID    message gets flashed.
            IF pa_call IS INITIAL.
              WRITE :/ lv_receiver.
            ENDIF.
            CLEAR: itab.
            itab-kunnr = tb_kna2-kunnr.
            itab-message = lv_receiver.
            APPEND itab.
            EXIT.   u201CNo mailing for invalid Email id
          ENDIF.
        ENDIF.
      ENDIF.
      wf_name = sy-uname.
      wf_year = tb_main-bldat(4).
      wf_mon = tb_main-bldat+4(2).
    *This FM gives the name of the months. 
    CALL FUNCTION 'MONTH_NAMES_GET'
           EXPORTING
                language    = sy-langu
           TABLES
                month_names = tb_months.
      IF sy-subrc EQ 0.
        READ TABLE tb_months WITH KEY mnr = wf_mon.
        IF sy-subrc EQ 0.
          wf_name = tb_months-ktx.
        ENDIF.
      ENDIF.
      CLEAR: tb_contp.
    IF NOT tb_contp[] IS INITIAL.
    *Reading the contp itab as per the customer entered on the selection screen.
        READ TABLE tb_contp WITH KEY bukrs = pa_bukrs
                                     kunnr =  tb_kna2-kunnr.
        IF sy-subrc EQ 0.
        CONCATENATE text-006 text-008 tb_contp-contp text-008 tb_kna2-kunnr
                              text-008 wf_name text-008 wf_year INTO wf_sub.
        ENDIF.
      ELSE.
        CONCATENATE text-006 text-008 tb_kna2-kunnr text-008 wf_name
                                        text-008 wf_year INTO wf_sub.
      ENDIF.
    Subject and Description
      CLEAR wa_docdata.
      wa_docdata-obj_name  = text-007.
      wa_docdata-obj_descr = wf_sub.
      wa_docdata-obj_langu = sy-langu.
    Write main body
      tb_obj_txt = text-009.
      APPEND tb_obj_txt.
      CLEAR tb_obj_txt.
      CLEAR  tb_paklist.
      tb_paklist-head_start = 1.
      tb_paklist-head_num   = 3.
      tb_paklist-body_start = 1.
      tb_paklist-body_num   = 60.
      tb_paklist-doc_type   = text-012.
      APPEND tb_paklist.
      CLEAR  tb_paklist.
    create PDF file
    Transfer the 132-long strings to 255-long strings
      LOOP AT tb_lines.
        TRANSLATE tb_lines USING ' ~'.
        CONCATENATE wf_buffer tb_lines INTO wf_buffer.
      ENDLOOP.
      TRANSLATE wf_buffer USING '~ '.
      DO.
        tb_obj_bin = wf_buffer.
        APPEND tb_obj_bin.
        SHIFT wf_buffer LEFT BY 255 PLACES.
        IF wf_buffer IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
      DESCRIBE TABLE tb_obj_bin LINES lv_lines.
      READ TABLE tb_obj_bin INDEX lv_lines.
      lv_size = ( lv_lines - 1 ) * 255 + STRLEN( tb_obj_bin ).
    Create attachment notification
      tb_paklist-transf_bin = co_x.
      tb_paklist-head_start = 1.
      tb_paklist-head_num   = 0.
      tb_paklist-body_start = 1.
      tb_paklist-body_num   = lv_lines.
      tb_paklist-doc_type   = text-013.
      tb_paklist-obj_descr  = text-010.
      tb_paklist-obj_name   = text-010.
      tb_paklist-doc_size   = lv_size.
      APPEND tb_paklist.
    *mail the PDF to the receiver.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = wa_docdata
                sender_address             = wf_name
                sender_address_type        = text-014
           TABLES
                packing_list               = tb_paklist
                object_header              = tb_obj_head
                contents_bin               = tb_obj_bin
                contents_txt               = tb_obj_txt
                receivers                  = tb_receiver
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
      IF sy-subrc <> 0.
        CONCATENATE text-003 tb_kna2-kunnr text-005 INTO lv_receiver
                                SEPARATED BY space.
        CLEAR: itab.
        itab-kunnr = tb_kna2-kunnr.
        itab-message = lv_receiver.
        APPEND itab.
        IF pa_call IS INITIAL.
          WRITE :/ lv_receiver.
        ENDIF.
      ELSE.
        CONCATENATE text-002 tb_kna2-kunnr text-005 INTO lv_receiver
                                SEPARATED BY space.
        CLEAR: itab.
        itab-kunnr = tb_kna2-kunnr.
        itab-message = lv_receiver.
        APPEND itab.
        IF pa_call IS INITIAL.
          WRITE :/ lv_receiver.
        ENDIF.
      ENDIF.
    Hope this helps.
    Harsh

  • Problem in workflow (Selfitem) send mail

    Hi,
    The workflow I am working on requires sending of a notification email to the administrator. For that I have been asked to use the Object type as “SELFITEM” and method as “SENDTASKDESCRIPTION”.
    1) Can anyone give me the documentation that automatically configures the mail using Selfitem.
    2) What are the fields I need to pass to the “SENDTASKDESCRIPTION” method?
    Please help.
    Thanks in advance...
    Regards,
    Abhishek

    Hi,
    It is simple. Here you will have to go to tcode pftc.Since sending the mail is a standard task you will create a standard task. U will then add the BOR object type  in the screen area  as SELFITEM and the method as SendTaskDescription.U also need to trigger this task if its a standalone task. If it is being called as a step in the workflow builder then you will create a step in workflow template as send email.double click on the step it will take u to a new screen there u enter the task created above in pftc and assign appropriate reciver in your case the administrator.
    Hope this helps.
    Reward useful answerrs.
    Regards,
    Shrita.

  • Sender Mail Adapter problem

    Hi,
    I am having problems to get my sender mail adapter running.
    I configured it with the following parameters:
    <i>Transport protocol: POP3
    Message Protocol: XIALL
    Adapter Engine: Integration Server
    URL: pop://server
    username + pw
    poll intervall: 1 Min.</i>
    The adapter is active and if I look into the adapter monitoring everything seems to be fine (green light).
    But the adapter doesn't poll the messages from the mail account and I cannot see any activity in the message monitoring.
    If I try the same configuration with Thunderbird everthing works fine. Also my receiving mail adapter works without any problems for the same account.
    Do you have any idea what the problem could be or how I could find out what my mail adapter is doing?
    Thanks,
    Andreas

    Hi all, hi Andreas,
    have you solved you problem? Could you please describe how you did it.
    I have the same situation and I haven't any ideas how can I manage it.
    I checked all parameters and compared they with documentation. Everything seems to be ok.
    I didn't see any messages in the message monitoring, but in the chanel monitoring I found follows:
    exception caught during processing mail message; java.net.ConnectException: Connection refused: connect
    I tried the same configuration with email client and it worked. I tried change POP on IMAP with URL imap://server/folder. It didn't work also.
    Could you please help me?
    Thank you in advance,
    Anna

  • Problem in sending mail to external id from customer exit

    Hello All,
    I have a problem that I am sending mail to supervisor. I have written code and it is working correctly in se38 program.
    This code If I keep in an exit and run tcode then it is not working and it is giving message no mail sent.
    Why is this so? The same code is working in SE38 program and not working in an EXIT.
    Pls give me solution as soon as possible.
    Thanks in advance.
    nallani

    >>Why is this so? The same code is working in SE38 program and not working in an EXIT.
    It is because the Email function has a COMMIT WORK statement & you cannot/should not COMMIT inside a User exit.. to avoid this conflict, simply SUBMIT the Report ie pla cethe email function omdule inside a Report program & call it from the User exit using the SUBMIT statement.
    ~Suresh

  • When sending e-mail, a message says that the sent folder is full,-- even though it is not-- however the mail still gets sent. No problem sending mail to myself

    I am running Thunderbird version 33.1 Recently, when sending e-mail, I get an error message indicating that the sent folder is full and that I should empty or compress it to fix the problem-- so I emptied it-- problem remains. Also, there is no record of sending the e-mail in the sent folder, even though the mail has been sent. No such problems occur when I send mail to myself.
    Any suggestions ???

    If you deleted some of the messages you have done one half of the process. Deleting a message just marks it for deletion and hides it from view. You have to COMPACT the folder to actually delete the messages and free up the space.
    I agree that Thunderbird did a poor job naming this process because it is the subject of much misunderstanding.
    Read about compacting here.
    http://kb.mozillazine.org/Thunderbird_:_Tips_:_Compacting_Folders
    I suggest that you also read this article about maintaining your email system to help prevent problems.
    http://kb.mozillazine.org/Keep_it_working_-_Thunderbird

  • Problem sending mail from DynPage

    Dear Experts,
    I am new to Portal development and am facing problem while trying to send mail using SMTP from my DynPage Application.
    The code is as follows:
    public boolean sendMailNotification(String from,String to,String subject,String body){
                String host="host";
              InitialContext ctx = null;
              MimeBodyPart bodyPart = null;
              Address[] address = null;
              Message msg = null;
              Transport tr = null;
              Session sess = null;
                try{
                   ctx = new InitialContext();
                   sess = (Session) javax.rmi.PortableRemoteObject.narrow(ctx.lookup("java:comp/env/mail/MailSession"), Session.class);
                   msg = new MimeMessage(sess);
                   msg.setFrom(new InternetAddress(from));
                   msg.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
                   msg.setSubject(subject);
                   if ((body != null) && (body.length()>0)) {
                        msg.setContent(body, "text/plain");
                   } else {
                        msg.setContent("", "text/plain");
                   msg.setSentDate(new GregorianCalendar().getTime());
                   msg.saveChanges();
                tr = sess.getTransport("smtp");
                   tr.connect(host, "", "");
                   address = msg.getAllRecipients();
                   tr.sendMessage(msg, address);
                   tr.close();     
                }catch(Exception ex){
                     return false;
                return true;
    The code is working on the portal examples "sendmail using java"
    When i upload the par file onto the portal and try to execute, the following exception is thrown:
    #1.5#001279D91F2B002A0000000400000C5C000428DC632C84FC#1170826928718#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#200057#361846#####SAPEngine_Application_Thread[impl:3]_20##0#0#Error#1#/System/Server#Java###Exception ID:11:12_07/02/07_0108_1861750
    [EXCEPTION]
    #1#com.sapportals.portal.prt.runtime.PortalRuntimeException: PortalRuntimeException
    at com.sapportals.portal.prt.core.PortalRequestManager.handleRequestException(PortalRequestManager.java:921)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:803)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:159)
    <b>Caused by: java.lang.NoClassDefFoundError: javax/mail/Message</b>
    at com.videocon.dqr.DQRPresidentReport.getPage(DQRPresidentReport.java:46)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.getPage(PageProcessorComponent.java:193)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doOnNodeReady(PageProcessorComponent.java:62)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.handleEvent(AbstractPortalComponent.java:388)
    at com.sapportals.portal.prt.pom.ComponentNode.handleEvent(ComponentNode.java:252)
    at com.sapportals.portal.prt.pom.PortalNode.fireEventOnNode(PortalNode.java:369)
    at com.sapportals.portal.prt.pom.AbstractNode.addChildNode(AbstractNode.java:340)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:642)
    ... 21 more
    Plz. Reply as soon as possible.
    any help will be duly appriciated the SDN Way.
    Thanks and Regards,
    Gaurav Modgil

    Hey Gaurav,,
    Try copying the mail.jar in
    dist/PORTAL-INF/lib
    Rebuild
    Its prefered if you also copy all jars which you are using in the project to this  folder.
    2.Try to add javax.mail
    when you using the variables in your code.
    like ..,msg.setRecipient(<b>javax.mail.</b>Message.RecipientType.TO, new InternetAddress(to));
    I donno its weird do to this after including it in classpath
    But many times the PRT doesnt recognise the jar at all.
    So always best to spoonfeed it evrytime:-)
    It worked this way for me
    Thanks,
    Swathi

  • Sender Mail adapter encounters MalformedInputException

    I have a sender mail adapter that processes the attached .csv file.  All is working fine.  I use FCC in module to convert the attachment and pass to an IDOC adapter for processing in SAP system.
    My problem is sometimes the sender mail CC fails with ...........
    exception caught during processing mail message[1]; com.sap.aii.af.mp.module.ModuleException: Transform: failed to execute the transformation: com.sap.aii.messaging.adapter.trans.TransformException: Error converting Message: 'sun.io.MalformedInputException'; nested exception caused by: sun.io.MalformedInputException caused by: com.sap.aii.messaging.adapter.trans.TransformException: Error converting Message: 'sun.io.MalformedInputException'; nested exception caused by: sun.io.MalformedInputException
    It only fails with some files.  At the moment when we test we FORWARD the email to our email account.  If I detach the failed email attachment and attach it to a NEW email it will then work.
    So why does it not work when forwarding emails?  But it works when I attach the same file to a new email and send?
    Other threads for this error seem to point to encoding.  But how do I know which to use.  I currently use the following in my module config:
    Transfer.ContentType     application/octet-stream;charset="ISO-8859-1"

    I have this in my configuration:
    localejbs/AF_Modules/PayloadSwapBean   on local
    TRANSFORM
    localejbs/AF_Modules/MessageTransformBean   on local
    txtxml
    TRANSFORM   swap.keyName   payload-name
    TRANSFORM   swap.keyValue   MailAttachment-1
    txtxml   Transfer.ContentType   application/octet-stream;charset="ISO-8859-1"
    txtxml   Transform.Class   com.sap.aii.messaging.adapter.Conversion
    txtxml   Transform.ContentDescription   MailAttachment-1
    txtxml   Transform.ContentDisposition   attachment;filename="MailAttachment-1.bin"
    txtxml   xml.conversionType   SimplePlain2XML
    txtxml   xml.documentName   MT_BCD_INVOICES
    txtxml   xml.documentNamespace   urn://federalmogul.com/BCDTRAVEL/FINGLOBCD001/00
    txtxml   xml.fieldNames   COST_CENTRE,EMPLOYEE_ID,PRODUCT_GROUP,COMP_CODE,BCD_ACCOUNT,INVOICE_DATE,TRAVELER_NAME,TRAVELER_FIRST_NAME,INVOICE_NO,AMOUNT_EXCL_VAT,CURRENCY1,AMOUNT_VAT,CURRENCY2,AMOUNT_DOC_CURRENCY,CURRENCY3
    txtxml   xml.fieldSeparator   ;
    txtxml   xml.lastFieldsOptional   YES
    txtxml   xml.processFieldNames  fromConfiguration
    txtxml   xml.structureTitle   RECORDSET

  • Unable to send Mail from POP account

    I have an Iphone 4 and have upgraded the IOS from 5-1 to 6.1.3. Since then I have been receiving all my mails but i have been unable to send mails from my POP account. the notification "Cannot Send Mail. A copy has been placed in your Outbox. The receipient, "xxyyzz @ gmail . com " was rejected by the server" displayed. Please Help. the same thing happens when I configure my POP account on my Son's Iphone4, and there is no problem in receiving and sending mails from my Outlook. Please Help!!!!!
    Can i revert back to IOS5.1.1?????

    Contact your email provider and get the correct settings to use for the outgoing mail server (SMTP) on a mobile device. If it's email provided by your ISP, they have likely blocked email from outside their network from relaying to prevent spam.

  • TS4002 Anybody having icloud server problems today? No incoming mail

    Dear all,
    I'm not receiving any mail guz Icloud tells me it has a server problem. I can send mail but not receive any. I can send myself a message using gmail sending it to my own gmail adres and I receive in my Mail program, no problem, it's just the ME account that does not work on any of my apple devices. I've checked the setting in the prefference from the Mail program, they all seam normal......ANY tips???
    Thank you so much,
    Simon

    Most inconvenient... trying to run a business and I made the mistake of using my me.com acct. for business rather than the old Yahoo acct.   I haven't been able to receive email all day either.
    Seeing that it's affecting less than 1% of it's customers, really is annoying for some reason. 

  • How to send mail from a query

    Hi,
    I met a problem, it was about send mail from a query.
    Scenario: First  make an exception in one query , and if the query trigger the exception , it can send a mail.

    Hi Tino,
    If you are in 7.0, you can use Broadcasting by Exception:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/81/0799413985ad5fe10000000a1550b0/frameset.htm

  • I can send mail but can't receive mail on thunderbird

    I am using Thunderbird since 2 years ago and im getting a new problem. I can send mail but cant receive any mail . When pressed GET mail i receive 'connecting to mail.gandi.net' only. that's all.
    Can you please help.
    below is my troubleshoot information:
    Application Basics
    Name: Thunderbird
    Version: 31.3.0
    User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0
    Profile Folder: Show Folder
    (Local drive)
    Application Build ID: 20141127140543
    Enabled Plugins: about:plugins
    Build Configuration: about:buildconfig
    Memory Use: about:memory
    Mail and News Accounts
    account1:
    INCOMING: account1, , (none) Local Folders, plain, passwordCleartext
    account2:
    INCOMING: account2, , (pop3) mail.gandi.net:995, SSL, passwordCleartext
    OUTGOING: mail.gandi.net:465, SSL, passwordCleartext, true
    account3:
    INCOMING: account3, , (pop3) mail.gandi.net:995, SSL, passwordCleartext
    OUTGOING: mail.gandi.net:465, SSL, passwordCleartext, true
    account4:
    INCOMING: account4, , (pop3) mail.gandi.net:995, SSL, passwordCleartext
    OUTGOING: mail.gandi.net:465, SSL, passwordCleartext, true
    account5:
    INCOMING: account5, , (pop3) mail.gandi.net:995, SSL, passwordCleartext
    OUTGOING: mail.gandi.net:465, SSL, passwordCleartext, true
    account6:
    INCOMING: account6, , (pop3) mail.gandi.net:995, SSL, passwordCleartext
    OUTGOING: mail.gandi.net:465, SSL, passwordCleartext, true
    account11:
    INCOMING: account11, , (rss) Feeds, plain, passwordCleartext
    account13:
    INCOMING: account13, , (rss) Feeds-2, plain, passwordCleartext
    account14:
    INCOMING: account14, , (pop3) mail.gandi.net:995, SSL, passwordCleartext
    OUTGOING: mail.gandi.net:465, SSL, passwordCleartext, true
    Crash Reports
    http://crash-stats.mozilla.com/report/index/bp-0490c01b-d20a-4d94-89fa-de36f2141208 (12/8/2014)
    http://crash-stats.mozilla.com/report/index/bp-01ec1457-2d47-4bde-838d-e381a2141205 (12/5/2014)
    http://crash-stats.mozilla.com/report/index/bp-b0b8fa7c-5dc9-4dc5-8d8d-4aae12141205 (12/5/2014)
    http://crash-stats.mozilla.com/report/index/bp-660baa33-28ce-47c6-8fb4-1b5682141205 (12/5/2014)
    http://crash-stats.mozilla.com/report/index/bp-4a7623a9-b2b5-42c4-9f49-73aa52141204 (12/4/2014)
    Extensions
    Lightning, 3.3.1, true, {e2fda1a4-762b-4020-b5ad-a41df1933103}
    Quick Translator, 1.0, true, {5C655500-E712-41e7-9349-CE462F844B19}
    Simple Locale Switcher, 0.8.4, true, simplels@nohamelin
    Important Modified Preferences
    Name: Value
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 409600
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.disk.smart_size_cached_value: 358400
    extensions.lastAppVersion: 31.3.0
    font.internaluseonly.changed: false
    font.name.monospace.el: Consolas
    font.name.monospace.tr: Consolas
    font.name.monospace.x-baltic: Consolas
    font.name.monospace.x-central-euro: Consolas
    font.name.monospace.x-cyrillic: Consolas
    font.name.monospace.x-unicode: Consolas
    font.name.monospace.x-western: Consolas
    font.name.sans-serif.el: Calibri
    font.name.sans-serif.tr: Calibri
    font.name.sans-serif.x-baltic: Calibri
    font.name.sans-serif.x-central-euro: Calibri
    font.name.sans-serif.x-cyrillic: Calibri
    font.name.sans-serif.x-unicode: Calibri
    font.name.sans-serif.x-western: Calibri
    font.name.serif.el: Cambria
    font.name.serif.tr: Cambria
    font.name.serif.x-baltic: Cambria
    font.name.serif.x-central-euro: Cambria
    font.name.serif.x-cyrillic: Cambria
    font.name.serif.x-unicode: Cambria
    font.name.serif.x-western: Cambria
    font.size.fixed.el: 14
    font.size.fixed.tr: 14
    font.size.fixed.x-baltic: 14
    font.size.fixed.x-central-euro: 14
    font.size.fixed.x-cyrillic: 14
    font.size.fixed.x-unicode: 14
    font.size.fixed.x-western: 14
    font.size.variable.el: 17
    font.size.variable.tr: 17
    font.size.variable.x-baltic: 17
    font.size.variable.x-central-euro: 17
    font.size.variable.x-cyrillic: 17
    font.size.variable.x-unicode: 17
    font.size.variable.x-western: 17
    gfx.blacklist.suggested-driver-version: 6.1400.1000.5218
    gfx.direct3d.last_used_feature_level_idx: 0
    mail.openMessageBehavior.version: 1
    mail.winsearch.firstRunDone: true
    mailnews.database.global.datastore.id: f06768f2-32d9-440c-bc02-f0414c2d7f3
    mailnews.database.global.views.conversation.columns: {"threadCol":{"visible":true,"ordinal":"1"},"flaggedCol":{"visible":true,"ordinal":"3"},"attachmentCol":{"visible":false…
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1418013595
    places.history.expiration.transient_current_max_pages: 104858
    plugin.importedState: true
    plugin.state.java: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_bgcolor: false
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_bgimages: false
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_colorspace:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_command:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_downloadfonts: false
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_duplex: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_edge_bottom: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_edge_left: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_edge_right: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_edge_top: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_evenpages: true
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_footercenter:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_footerleft: &PT
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_footerright: &D
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_headercenter:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_headerleft: &T
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_headerright: &U
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_in_color: true
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_margin_bottom: 0.5
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_margin_left: 0.5
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_margin_right: 0.5
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_margin_top: 0.5
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_oddpages: true
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_orientation: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_page_delay: 50
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_paper_data: 9
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_paper_height: 11.00
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_paper_name:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_paper_size_type: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_paper_size_unit: 1
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_paper_width: 8.50
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_plex_name:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_resolution: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_resolution_name:
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_reversed: false
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_scaling: 1.00
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_shrink_to_fit: false
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_to_file: false
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_unwriteable_margin_bottom: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_unwriteable_margin_left: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_unwriteable_margin_right: 0
    print.printer_RICOH_Aficio_MP_C2030_RPCS.print_unwriteable_margin_top: 0
    security.default_personal_cert: Select Automatically
    security.disable_button.openCertManager: false
    security.disable_button.openDeviceManager: false
    Graphics
    Adapter Description: Intel(R) HD Graphics Family
    Vendor ID: 0x8086
    Device ID: 0x0116
    Adapter RAM: Unknown
    Adapter Drivers: igdumd64 igd10umd64 igd10umd64 igdumdx32 igd10umd32 igd10umd32
    Driver Version: 8.15.10.2291
    Driver Date: 1-27-2011
    Adapter Description (GPU #2): NVIDIA GeForce GT 525M
    Vendor ID (GPU #2): 0x10de
    Device ID (GPU #2): 0x0df5
    Adapter RAM (GPU #2): 1024
    Adapter Drivers (GPU #2): nvd3dumx,nvwgf2umx,nvwgf2umx nvd3dum,nvwgf2um,nvwgf2um
    Driver Version (GPU #2): 8.17.12.6721
    Driver Date (GPU #2): 2-18-2011
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.1.7601.17514)
    ClearType Parameters: ClearType parameters not found
    WebGL Renderer: false
    GPU Accelerated Windows: 1/1 Direct3D 10
    AzureCanvasBackend: direct2d
    AzureSkiaAccelerated: 0
    AzureFallbackCanvasBackend: cairo
    AzureContentBackend: direct2d
    JavaScript
    Incremental GC: 1
    Accessibility
    Activated: 0
    Prevent Accessibility: 0
    Library Versions
    Expected minimum version
    Version in use
    NSPR
    4.10.6
    4.10.6
    NSS
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS Util
    3.16.2.3
    3.16.2.3
    NSS SSL
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS S/MIME
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC

    Here is what I did to resolve the problem:
    In Mail/preferences/accounts/account information/ and at the bottom of the box there is a toggle arrow up and down to edit the outgoing mail server, check the box "use only this server" and  hit this toggle button and select "edit SMTP Server List" at the very bottom of the email names.
    Select Advanced tab.  Correct and/or add usernames and passwords as needed for each email account.  Be sure to select OK each time to get the passwords to hold!  Some changes don't seem to hold unless you click OK before you move on.
    To test:       Window/activity (a little windows will pop up showing activity bars)   and then "get mail" button.  This should show any problems
    Another test:  window/connection doctor
    This shouldl fix both pop and imap.  so far it worked on yahoo, mobile me, gmail, hotmail, and others.  Of course, you will need to know the incoming and outgoing mail server info, user name, and passwords.
    Too bad we have to go though hoops to use an email program that used to work well.  Worse yet, many may not know for days that their email isn't working.
    This is easy method of setting up your email accounts but may not allow enough detail to make the mail accounts function properly in Mail 5.0:
    system preferences/internet and wireless/mail, contacts, calendars/ add account
    shyannlindy listening to the outdoor concert from
    Cheyenne Frontier Days, the Worlds' Largest Outdoor Rodeo

Maybe you are looking for

  • How to generate PDF output from OracleXMLQuery

    I want to generate a PDF out put from XML by using JSP. For this i writen jsp and xsl. My jsp code works fine if i include html formated xsl and it displays as a text when i pass pdf formated xls. Here i am providing my jsp code. I don't want to use

  • Do I need to buy a licensed copy of windows 7 or 8 to install it on mac book air/pro 2013?

    I am planning to buy Mac Pro 2013 Retina display 13" and I need to know if I have to buy a windows 7 licensed software to install it on my Mac or does it come with boot camp? Also I would like to know if the windows I run on boot camp will be able to

  • When does LabVIEW actually close object references?

    I wanted to find out how LabVIEW manages references to objects when a reference is distributed among more than one property node located within different structures. So I created a little test where I passed a reference into a for loop, modified the

  • Jaxb unmarshalling and setvalidating()

    I am using jaxb 1.0 with jdk1.4 , i am trying to unmarshall the incoming request which a xml. It has a element called attachment list which is mandatory as per the schema. but i dont want my unmarshaller to validate request and throw error instead i

  • Reg:WAD Report

    Dear Sir, I am working in ECC 5.0 & WAD 3.5 x environment. Just i want to know while executing my WAD  report i designed Generic navigation block also. Just i want to know the while executing my WAD report i am  giving the input values in 'Force disp