E-mail error occured

Hi following is my coding
the scenario is like....i have created one form which contain  'SUBMIT'  button when i will click that submit pushbutton...email should go to specific mail id
i have called function module.  'so_new_document_att_api1'
following is my coding...i am not able to send mail...please help me and tel me coding is right or not
PROGRAM  ZFEEDBACK5.
TABLES:ZCUSTMR1,ZFDBCK.
DATA:BEGIN OF ST,
     CUSTOMER TYPE ZCUSTMR1-CUSTOMER,
     NAME TYPE ZCUSTMR1-NAME,
     CITY TYPE ZCUSTMR1-CITY,
     TELEPHONENO TYPE ZCUSTMR1-TELEPHONENO,
     COUNTRY TYPE ZCUSTMR1-COUNTRY,
     SERVICE_DATE TYPE ZFDBCK-SERVICE_DATE,
     SERVICE TYPE ZFDBCK-SERVICE,
     FEEDBACK TYPE ZFDBCK-FEEDBACK,
     END OF ST.
DATA:SFCUSTOMER TYPE ZCUSTMR1-CUSTOMER,
     SFNAME TYPE ZCUSTMR1-NAME,
     SFCITY TYPE ZCUSTMR1-CITY,
     SFTELEPHONENO TYPE ZCUSTMR1-TELEPHONENO,
     SFCOUNTRY TYPE ZCUSTMR1-COUNTRY,
     SFSERVICE_DATE TYPE ZFDBCK-SERVICE_DATE,
     SFSERVICE TYPE ZFDBCK-SERVICE,
     SFFEEDBACK TYPE ZFDBCK-FEEDBACK.
DATA:WA1 LIKE ZCUSTMR1 OCCURS 0 WITH HEADER LINE,
     WA2 LIKE ZFDBCK OCCURS 0 WITH HEADER LINE.
     DATA:CONFIRMATION.
*&      Module  USER_COMMAND_0100  INPUT
      text
MODULE USER_COMMAND_0100 INPUT.
CASE SY-UCOMM.
WHEN 'ZFEEDBACK'.
     MESSAGE i888(sabapdocu) WITH sdyn_conn-EXCELLENT.
ENDCASE.
*ENDMODULE.
  WHEN 'DISP'.
    SELECT DISTINCT ZCUSTMR1~CUSTOMER ZCUSTMR1~NAME ZCUSTMR1~CITY ZCUSTMR1~TELEPHONENO zcustmr1~country
    ZFDBCK~SERVICE_DATE ZFDBCK~SERVICE
    INTO CORRESPONDING FIELDS OF ST FROM ZCUSTMR1
                INNER JOIN ZFDBCK ON ZCUSTMR1~CUSTOMER = ZFDBCK~CUSTOMERNO
               WHERE ZFDBCK~CUSTOMERNO = SFCUSTOMER.
            ENDSELECT.
      IF SY-SUBRC <> 0.
        MESSAGE ID 'messege' type 'E000' NUMBER
                 '000' WITH ' NO RECORDS AVAILABLE'.
      ELSE.
      SFCUSTOMER     = ST-CUSTOMER.
      SFNAME         = ST-NAME.
      SFCITY         = ST-CITY.
      SFTELEPHONENO  = ST-TELEPHONENO.
      SFCOUNTRY      = ST-COUNTRY.
      SFSERVICE_DATE = ST-SERVICE_DATE.
      SFSERVICE      = ST-SERVICE.
      SFFEEDBACK     = ST-FEEDBACK.
      MESSAGE ID '' TYPE 'I000' NUMBER
                   '001'  WITH     'are you sure?'
                              'records will get inserted'.
      ENDIF.
*WHEN 'SUBMIT'.
*CALL FUNCTION 'SO_OBJECT_SEND'.
    WHEN 'INSR'.
      CLEAR ST.
      ST-CUSTOMER = SFCUSTOMER.
      MOVE ST-CUSTOMER TO WA1-CUSTOMER.
      ST-NAME = SFNAME.
      MOVE ST-NAME TO WA1-NAME.
      ST-CITY  = SFCITY .
      MOVE ST-CITY TO WA1-CITY.
      ST-TELEPHONENO   = SFTELEPHONENO.
      MOVE ST-TELEPHONENO TO WA1-TELEPHONENO.
      ST-COUNTRY  = SFCOUNTRY.
      MOVE ST-COUNTRY TO WA2.
      ST-SERVICE_DATE = SFSERVICE_DATE.
      MOVE ST-SERVICE_DATE TO WA2-SERVICE_DATE.
      ST-SERVICE = SFSERVICE.
      MOVE ST-SERVICE TO WA2-SERVICE.
      INSERT INTO ZCUSTMR1 VALUES WA1.
      INSERT INTO ZFDBCK VALUES WA2.
      IF SY-SUBRC <> 0.
        MESSAGE ID 'zmsgs' TYPE 'E000' NUMBER
           '001' WITH ' RECORDS NOT INSERTED'.
      ELSE.
        MESSAGE ID 'zmsgs' TYPE 'I000' NUMBER
           '002' WITH ' RECORDS INSERTED'.
      ENDIF.
     WHEN 'BACK'.
      CALL FUNCTION 'COPO_POPUP_TO_GOON'
        EXPORTING               
        TEXTLINE1 = 'Any modifications will be lost!'
        TEXTLINE2 = 'Are you sure?'     
        TITEL = 'Exit The Program'     
        IMPORTING               
        ANSWER = CONFIRMATION.
IF CONFIRMATION = 'G'.
LEAVE PROGRAM.
ENDIF.
    WHEN 'EXIT'.
      LEAVE TO SCREEN 0.
DATA: RECLIST LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
DATA: OBJCONT LIKE SOLISTI1 OCCURS 5 WITH HEADER LINE.
DATA: DOC_CHNG LIKE SODOCCHGI1.
DATA: ENTRIES LIKE SY-TABIX,
      CHECK   LIKE SY-TABIX,
      V_NO(3) TYPE C,
      V_D(10) TYPE C.
CLEAR RECLIST.
        RECLIST-REC_TYPE = 'U'.  "Internet-adress
        RECLIST-RECEIVER = 'EMAIL ADDRESS'.
        RECLIST-EXPRESS = 'X'.
        APPEND RECLIST.
    WHEN 'SUBMIT'.
  CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
     EXPORTING
          DOCUMENT_TYPE              = 'RAW'
          DOCUMENT_DATA              = DOC_CHNG
         PUT_IN_OUTBOX              = 'X'
     TABLES
          OBJECT_CONTENT             = OBJCONT
          RECEIVERS                  = RECLIST
     EXCEPTIONS
          TOO_MANY_RECEIVERS         = 1
          DOCUMENT_NOT_SENT          = 2
          OPERATION_NO_AUTHORIZATION = 4
          OTHERS                     = 99.
  IF SY-SUBRC <> 0.
        MESSAGE ID 'zmsgs' TYPE 'E000' NUMBER
           '003' WITH ' messege NOT sent'.
      ELSE.
        MESSAGE ID 'zmsgs' TYPE 'I000' NUMBER
           '004' WITH ' messege sent'.
endif.
  ENDCASE.
ENDMODULE.                 " USER_COMMAND_0100  INPUT
*&      Module  STATUS_0100  OUTPUT
      text
MODULE status_0100 OUTPUT.
  SET PF-STATUS 'ZFEEDBACK_100'.
  SET TITLEBAR  'ZFEEDBACK_100'.
  ENDMODULE.   " STATUS_0100  OUTPUT
TABLES: ZDROPDOWN.
*DATA   ok_code TYPE sy-ucomm.
Global data
*TYPES: BEGIN OF type_EXCELLENT,
        EXCELLENT TYPE ZDROPDOWN-EXCELLENT,
        GOOD TYPE ZDROPDOWN-GOOD,
        SATISFACTORY TYPE ZDROPDOWN-SATISFACTORY,
        AVERAGE TYPE ZDROPDOWN-AVERAGE,
        POOR TYPE ZDROPDOWN-POOR,
      END OF TYPE_EXCELLENT.
*DATA itab_carrid TYPE STANDARD TABLE OF type_EXCELLENT.
**& Processing Blocks called by the Runtime Environment                 *
Event Block START-OF-SELECTION
*START-OF-SELECTION.
CALL SCREEN 100.
Dialog Module PBO
**MODULE status_0100 OUTPUT.
SET PF-STATUS 'SCREEN_100'.
**ENDMODULE.
Dialog Modules PAI
*MODULE cancel INPUT.
LEAVE PROGRAM.
*ENDMODULE.
**MODULE user_command_0100 INPUT.
CASE ok_code.
   WHEN 'ZFEEDBACK'.
     MESSAGE i888(sabapdocu) WITH sdyn_conn-EXCELLENT.
ENDCASE.
**ENDMODULE.
Dialog Module POV
*MODULE create_dropdown_box INPUT.
SELECT  EXCELLENT GOOD SATISFACTORY AVERAGE POOR
               FROM ZDROPDOWN
               INTO CORRESPONDING FIELDS OF TABLE zdropdown.
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
      EXPORTING

Hi rohan,
what message the system is giving you "messgage not sent " or its giving any dump.
IF SY-SUBRC 0.
MESSAGE ID 'zmsgs' TYPE 'E000' NUMBER
'003' WITH ' messege NOT sent'.
if sy-subrc 0 means success. after sending the document successfully you r displaying the message" message not Sent".
Regards,
Chinna

Similar Messages

  • Cannot download information from e-mail /error occured

    Downloading/Volume/Firefox/3pwmztfn.expe.part could not be saved,because unknown error occured. Try saving to different location.
    This notice pops up every timeI try to download, and I do no know how to correct it. HELP PLEASE.
    [email protected]

    Hi rohan,
    what message the system is giving you "messgage not sent " or its giving any dump.
    IF SY-SUBRC 0.
    MESSAGE ID 'zmsgs' TYPE 'E000' NUMBER
    '003' WITH ' messege NOT sent'.
    if sy-subrc 0 means success. after sending the document successfully you r displaying the message" message not Sent".
    Regards,
    Chinna

  • File To Mail  - Error in sender CC

    Hi All,
    I am trying out a File to mail scenario following the Blog /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    I am getting the following error in the File Sender Comm Channel :
    Mail: error occurred: com.sap.aii.af.mp.module.ModuleException caused by: com.sap.aii.messaging.srt.BubbleException: Failed to call the endpoint  [null "null"]; nested exception caused by: java.io.IOException: no sender address specified
    I could also see the payload is empty in the Receiver Mail CC
    Now can anybody help getting me the mail ...
    Thanks in advance

    Hi Bhavesh,
    I get a checkered flag in Moni ,
      But the response has only SOAP header and Body with out payload  , I Mail package is checked and base64 is selected ..
        <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Response
      -->
    - <SAP:Trace xmlns:SAP="http://sap.com/xi/XI/Message/30">
      <Trace level="1" type="T">Party normalization: sender</Trace>
      <Trace level="1" type="T">Sender scheme external = XIParty</Trace>
      <Trace level="1" type="T">Sender agency external = http://sap.com/xi/XI</Trace>
      <Trace level="1" type="T">Sender party external =</Trace>
      <Trace level="1" type="T">Sender party normalized =</Trace>
      <Trace level="1" type="T">Party normalization: receiver</Trace>
      <Trace level="1" type="T">Receiver scheme external =</Trace>
      <Trace level="1" type="T">Receiver agency external =</Trace>
      <Trace level="1" type="T">Receiver party external =</Trace>
      <Trace level="1" type="T">Receiver party normalized =</Trace>
      <Trace level="1" type="B" name="CL_XMS_HTTP_HANDLER-HANDLE_REQUEST" />
    - <!--  ************************************
      -->
      <Trace level="1" type="T">XMB was called with URL /sap/xi/engine?type=entry</Trace>
      <Trace level="1" type="T">COMMIT is done by XMB !</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-ENTER_XMS" />
    - <!--  ************************************
      -->
      <Trace level="1" type="B" name="CL_XMS_MAIN-SET_START_PIPELINE" />
    - <!--  ************************************
      -->
      <Trace level="1" type="B" name="SXMBCONF-SXMB_GET_XMB_USE" />
      <Trace level="1" type="B" name="CL_XMS_TROUBLESHOOT-ENTER_PLSRV" />
      <Trace level="1" type="T">****************************************************</Trace>
      <Trace level="1" type="T">* *</Trace>
      <Trace level="1" type="T">* *</Trace>
      <Trace level="1" type="T">XMB entry processing</Trace>
      <Trace level="1" type="T">system-ID = XIL</Trace>
      <Trace level="1" type="T">client = 002</Trace>
      <Trace level="1" type="T">language = E</Trace>
      <Trace level="1" type="T">user = PIAFUSER</Trace>
      <Trace level="1" type="Timestamp">2006-09-14T09:48:04Z CET</Trace>
      <Trace level="1" type="T">* *</Trace>
      <Trace level="1" type="T">* *</Trace>
      <Trace level="1" type="T">****************************************************</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_UC_EXECUTE" />
    - <!--  ************************************
      -->
      <Trace level="1" type="T">Message-GUID = 1DC20B0043D611DBC937000D60D4EDB5</Trace>
      <Trace level="1" type="T">PLNAME = CENTRAL</Trace>
      <Trace level="1" type="T">QOS = EO</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PIPELINE_ASYNC" />
    - <!--  ************************************
      -->
      <Trace level="1" type="T">Get definition of external pipeline = CENTRAL</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-LOOKUP_INTERNAL_PL_ID" />
      <Trace level="1" type="T">Get definition of internal pipeline = SAP_CENTRAL</Trace>
      <Trace level="1" type="T">Queue name : XBTI0009</Trace>
      <Trace level="1" type="T">Generated prefixed queue name = XBTI0009</Trace>
      <Trace level="1" type="T">Schedule message in qRFC environment</Trace>
      <Trace level="1" type="T">Setup qRFC Scheduler OK!</Trace>
      <Trace level="1" type="T">----
    </Trace>
      <Trace level="1" type="T">Going to persist message</Trace>
      <Trace level="1" type="T">NOTE: The following trace entries are always lacking</Trace>
      <Trace level="1" type="T">- Exit WRITE_MESSAGE_TO_PERSIST</Trace>
      <Trace level="1" type="T">- Exit CALL_PIPELINE_ASYNC</Trace>
      <Trace level="1" type="T">Async barrier reached. Bye-bye !</Trace>
      <Trace level="1" type="T">----
    </Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_TO_PERSIST" />
    - <!--  ************************************
      -->
      <Trace level="1" type="B" name="CL_XMS_MAIN-PERSIST_READ_MESSAGE" />
      <Trace level="1" type="T">Note: the following trace entry is written delayed (after read from persist)</Trace>
      <Trace level="1" type="B" name="SXMS_ASYNC_EXEC" />
    - <!--  ************************************
      -->
      <Trace level="1" type="T">----
    </Trace>
      <Trace level="1" type="T">Starting async processing with pipeline CENTRAL</Trace>
      <Trace level="1" type="T">system-ID = XIL</Trace>
      <Trace level="1" type="T">client = 002</Trace>
      <Trace level="1" type="T">language = E</Trace>
      <Trace level="1" type="T">user = PIAFUSER</Trace>
      <Trace level="1" type="Timestamp">2006-09-14T09:48:04Z CET</Trace>
      <Trace level="1" type="T">----
    </Trace>
    - <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PIPELINE_SYNC">
      <Trace level="1" type="T">Get definition of external pipeline CENTRAL</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-LOOKUP_INTERNAL_PL_ID" />
      <Trace level="1" type="T">Corresponding internal pipeline SAP_CENTRAL</Trace>
    - <Trace level="1" type="B" name="PLSRV_RECEIVER_DETERMINATION">
    - <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV">
    - <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV_LOCAL">
    - <Trace level="1" type="B" name="CL_RD_PLSRV-ENTER_PLSRV">
      <Trace level="1" type="T">R E C E I V E R - D E T E R M I N A T I O N</Trace>
      <Trace level="1" type="T">Cache Content is up to date</Trace>
      </Trace>
      </Trace>
      </Trace>
      </Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_LOG_TO_PERSIST" />
    - <Trace level="1" type="B" name="PLSRV_INTERFACE_DETERMINATION">
    - <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV">
    - <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV_LOCAL">
    - <Trace level="1" type="B" name="CL_ID_PLSRV-ENTER_PLSRV">
      <Trace level="1" type="T">I N T E R F A C E - D E T E R M I N A T I O N</Trace>
      <Trace level="1" type="T">Cache Content is up to date</Trace>
      </Trace>
      </Trace>
      </Trace>
      </Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_LOG_TO_PERSIST" />
      <Trace level="1" type="B" name="PLSRV_RECEIVER_MESSAGE_SPLIT" />
    - <!--  ************************************
      -->
    - <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV">
    - <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV_LOCAL">
      <Trace level="1" type="B" name="CL_XMS_PLSRV_RECEIVER_SPLIT-ENTER_PLSRV" />
    - <!--  ************************************
      -->
      <Trace level="1" type="T">number of receivers: 1</Trace>
      <Trace level="1" type="T">Single-receiver split case</Trace>
      <Trace level="1" type="T">Post-split internal queue name = XBTO3___0001</Trace>
      <Trace level="1" type="T">----
    </Trace>
      <Trace level="1" type="T">Persisting single message for post-split handling</Trace>
      <Trace level="1" type="T" />
      <Trace level="1" type="T">Going to persist message + call qRFC now...</Trace>
      <Trace level="1" type="T">NOTE: The following trace entries are always lacking</Trace>
      <Trace level="1" type="T">- Exit WRITE_MESSAGE_TO_PERSIST</Trace>
      <Trace level="1" type="T">Async barrier reached. Bye-bye !</Trace>
      <Trace level="1" type="T">----
    </Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_TO_PERSIST" />
    - <!--  ************************************
      -->
      <Trace level="1" type="B" name="CL_XMS_MAIN-PERSIST_READ_MESSAGE" />
      <Trace level="1" type="T">Note: the following trace entry is written delayed (after read from persist)</Trace>
      <Trace level="1" type="B" name="SXMS_ASYNC_EXEC" />
    - <!--  ************************************
      -->
      <Trace level="1" type="T">----
    </Trace>
      <Trace level="1" type="T">Starting async processing with pipeline CENTRAL</Trace>
      <Trace level="1" type="T">system-ID = XIL</Trace>
      <Trace level="1" type="T">client = 002</Trace>
      <Trace level="1" type="T">language = E</Trace>
      <Trace level="1" type="T">user = PIAFUSER</Trace>
      <Trace level="1" type="Timestamp">2006-09-14T09:48:04Z CET</Trace>
      <Trace level="1" type="T">----
    </Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PIPELINE_SYNC" />
    - <!--  ************************************
      -->
      <Trace level="1" type="T">Get definition of external pipeline CENTRAL</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-LOOKUP_INTERNAL_PL_ID" />
      <Trace level="1" type="T">Corresponding internal pipeline SAP_CENTRAL</Trace>
      <Trace level="1" type="T">Start with pipeline element PLEL= 5EC3C53B4BB7B62DE10000000A1148F5</Trace>
    - <Trace level="1" type="B" name="PLSRV_MAPPING_REQUEST">
    - <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV">
    - <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV_LOCAL">
    - <Trace level="1" type="B" name="CL_MAPPING_XMS_PLSRV3-ENTER_PLSRV">
      <Trace level="1" type="T">Interface Mapping http://sap.com/xi/XI/Mail/30 GK_File2Mail_IM</Trace>
      </Trace>
      </Trace>
      </Trace>
      </Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_LOG_TO_PERSIST" />
    - <Trace level="1" type="B" name="PLSRV_OUTBOUND_BINDING">
    - <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV">
    - <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV_LOCAL">
      <Trace level="1" type="B" name="CL_XMS_PLSRV_OUTBINDING-ENTER_PLSRV" />
      </Trace>
      </Trace>
      </Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_LOG_TO_PERSIST" />
    - <Trace level="1" type="B" name="PLSRV_CALL_ADAPTER">
      <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV" />
    - <!--  ************************************
      -->
      <Trace level="1" type="B" name="CL_XMS_MAIN-CALL_PLSRV_LOCAL" />
    - <!--  ************************************
      -->
    - <Trace level="1" type="B" name="CL_XMS_PLSRV_IE_ADAPTER-ENTER_PLSRV">
      <Trace level="1" type="B" name="CL_XMS_PLSRV_CALL_XMB-CALL_XMS_HTTP" />
      </Trace>
      </Trace>
      </Trace>
      </Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_LOG_TO_PERSIST" />
      </Trace>
      <Trace level="1" type="T">----
    </Trace>
      <Trace level="1" type="T">Async processing completed OK.</Trace>
      <Trace level="1" type="T">system-ID = XIL</Trace>
      <Trace level="1" type="T">client = 002</Trace>
      <Trace level="1" type="T">language = E</Trace>
      <Trace level="1" type="T">user = PIAFUSER</Trace>
      <Trace level="1" type="Timestamp">2006-09-14T09:48:05Z CET</Trace>
      <Trace level="1" type="T">----
    </Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_TO_PERSIST" />
    - <!--  ************************************
      -->
      </SAP:Trace>

  • File to Mail error

    Hi,
      I am doing file to mail scenario. I got an error
    "failed to send mail: java.io.IOException: invalid content type for SOAP:
    TEXT/HTML"..
       How to solve.
    regards,
    Ansar.

    Hi Bhavesh,
       I done like that but still it is coming...
    This is the process of Communication channel
    2006-12-29 11:42:46 Success Mail: Receiver adapter entered with qos ExactlyOnce
    2006-12-29 11:42:46 Success Mail: calling the adpter for processing
    2006-12-29 11:42:46 Success Mail: call failed
    2006-12-29 11:42:46 Success Mail: sending a delivery error ack ...
    2006-12-29 11:42:46 Success Mail: sent a delivery error ack
    2006-12-29 11:42:46 Error Mail: error occured: java.io.IOException: invalid content type for SOAP: TEXT/HTML
    2006-12-29 11:42:46 Error Exception caught by adapter framework: Failed to call the endpoint
    2006-12-29 11:42:46 Error Delivery of the message to the application using connection AFW failed, due to: Failed to call the endpoint.
    2006-12-29 11:42:46 Success The message status set to WAIT.
    2006-12-29 11:42:46 Success The asynchronous message was successfully scheduled to be delivered at Fri Dec 29 11:47:46 GMT+05:30 2006.
    regards,
    Ansar.

  • Since switching to Firefox this week, when I click on a hyperlink in an e-mail in Outlook, I get this message, "General failure. An error occurred in sending the command to the application." It doesn't open a new window or do anything.

    Since switching to Firefox this week, when I click on a hyperlink in an e-mail in Outlook, I get this message, "General failure. An error occurred in sending the command to the application." It doesn't open a new window or do anything. Any work around to fix this?

    See this lnk for a fix, it worked for me!
    http://www.pcworld.com/article/200103/fix_outlook_general_failure_error_for_email_links.html

  • Installing Mavericks produced "a connection error occurred" in Mail and "connection failed" in App Store

    Dear Apple Support Community!
    I installed Mavericks OS X on my iMac immediately after it was released. I was soon starting to experience trouble with logging in to Mail and App Store. After contacting Apple Support and trying various tips and tricks to no avail, like re-installing Mavericks for instance, I just decided to wait for an update of the OS X to see if that would solve my problems. Unfortunately, that didn't help either.
    I therefore turn to the Apple Support Communities in hope of expert help that will solve my problems.
    Here are the actions that result in error messages:
    Mail > Choose a mail account to add > Google > Continue > Name/Email Address/Password > Set Up > A connection error occurred.
    App Store > Sign In > Apple ID/Password > Sign In > Connection failed.
    I have three accounts on my computer:
    System Administrator, Guest Account and Other.
    I use the “Other” account as my regular account. When I log in to the System Administrator or Guest Account I don’t experience any problems; Mail and App Store work as they should.
    Booting in safe mode does not solve the problem:
    I disconnected all wired peripherals except those needed for the test, and removed all aftermarket expansion cards. I booted in safe mode and logged in to the account with the problem.
    I tested the said actions while in safe mode. The problems were the same.
    After testing, I rebooted as usual (i.e., not in safe mode) and verified that I still had the problems.
    Info about my Mac:
    iMac
    24-inch Mid 2007
    Processor  2,8 GHz Intel Core 2 Duo
    Memory  4 GB 667 MHz DDR2 SDRAM
    Graphics  ATI Radeon HD 2600 Pro 256 MB
    Serial Number  xxxxxxxxxxx
    Software  OS X 10.9.1 (13B42)
    Console System Logs
    Console log – All Messages
    Action:
    Mail > Choose a mail account to add > Google > Continue > Name/Email Address/Password > Set Up > A connection error occurred.
    02.02.14 12:41:38,030 SafariNotificationAgent[43964]: Error calling realpath on the home directory.
    02.02.14 12:41:38,032 com.apple.launchd.peruser.0[166]: (com.apple.SafariNotificationAgent[43964]) Exited with code: 1
    02.02.14 12:41:38,032 com.apple.launchd.peruser.0[166]: (com.apple.SafariNotificationAgent) Throttling respawn: Will start in 10 seconds
    02.02.14 12:41:38,231 com.apple.internetaccounts[66431]: +[IAGoogleAuthTokenManager keychainEntryForUserName:] [359] -- Failed to fetch keychain item for "xxxxxx@xxxxxx" (code -67674)
    02.02.14 12:41:38,234 com.apple.internetaccounts[66431]: +[IAGoogleAuthTokenManager setKeychainEntry:ForUserName:] [380] -- *** Failed to store token in keychain for "xxxxxx@xxxxxx" (code -67674)
    02.02.14 12:41:38,263 sandboxd[91]: ([66431]) com.apple.intern(66431) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,270 sandboxd[91]: ([66431]) com.apple.intern(66431) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,282 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,291 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,300 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,309 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,318 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,352 Mail[43640]: CFNetwork SSLHandshake failed (-67674)
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,426 Mail[43640]: CFNetwork SSLHandshake failed (-67674)
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,430 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,000 kernel[0]: Sandbox: Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:41:38,497 Mail[43640]: CFNetwork SSLHandshake failed (-67674)
    02.02.14 12:41:38,498 Mail[43640]: NSURLConnection/CFURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -67674)
    02.02.14 12:41:38,498 Mail[43640]: -[IAAccountAuthenticator connection:didFailWithError:] [172] -- *** error: Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo=0x6000001b36a0 {NSURLErrorFailingURLPeerTrustErrorKey=<SecTrust 0x7fdf23579d20 [0x7fff75b66eb0]>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, NSUnderlyingError=0x60000084b220 "An SSL error has occurred and a secure connection to the server cannot be made.", NSErrorPeerCertificateChainKey=(
        "<SecCertificate 0x7fdf2357bf90 [0x7fff75b66eb0]>",
        "<SecCertificate 0x7fdf23579ae0 [0x7fff75b66eb0]>",
        "<SecCertificate 0x7fdf23578e00 [0x7fff75b66eb0]>"
    ), NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://www.google.com/accounts/ClientLogin, NSErrorFailingURLStringKey=https://www.google.com/accounts/ClientLogin, NSErrorClientCertificateStateKey=0}
    Full report of the following incident:
    02.02.14 12:41:38,270 sandboxd[91]: ([66431]) com.apple.intern(66431) deny file-write-data /private/var/db/mds/system/mds.lock
    com.apple.intern(66431) deny file-write-data /private/var/db/mds/system/mds.lock
    Process:         com.apple.intern [66431]
    Path:            /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/XPCServ ices/com.apple.internetaccounts.xpc/Contents/MacOS/com.apple.internetaccounts
    Load Address:    0x101a8b000
    Identifier:      com.apple.internetaccounts
    Version:         1 (1.0)
    Build Info:      1-InternetAccountsFramework_executables~192000000000000
    Code Type:       x86_64 (Native)
    Parent Process:  launchd [1]
    Date/Time:       2014-02-02 12:41:38.232 +0100
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  8
    Thread 0:
    0   libsystem_kernel.dylib                  0x00007fff888ce5da __open + 10
    1   Security                                0x00007fff8573d2af Security::MDSSession::updateDataBases() + 693
    2   Security                                0x00007fff8578feef Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 145
    3   Security                                0x00007fff8578fde3 mds_DbOpen(long, char const*, cssm_net_address const*, unsigned int, cssm_access_credentials const*, void const*, long*) + 211
    4   Security                                0x00007fff8573ccd7 Security::MDSClient::Directory::cdsa() const + 93
    5   Security                                0x00007fff857f995b Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 39
    6   Security                                0x00007fff8573c7b2 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 234
    7   Security                                0x00007fff85761ca5 Security::KeychainCore::DynamicDLDBList::_load() + 329
    8   Security                                0x00007fff85761b29 Security::KeychainCore::DynamicDLDBList::searchList() + 29
    9   Security                                0x00007fff8587b2b5 Security::KeychainCore::StorageManager::getSearchList(std::__1::vector<Security ::KeychainCore::Keychain, std::__1::allocator<Security::KeychainCore::Keychain> >&) + 163
    10  Security                                0x00007fff8587da18 Security::KeychainCore::StorageManager::optionalSearchList(void const*, std::__1::vector<Security::KeychainCore::Keychain, std::__1::allocator<Security::KeychainCore::Keychain> >&) + 88
    11  Security                                0x00007fff85754f5c SecKeychainSearchCreateFromAttributes + 142
    12  Security                                0x00007fff858930a8 _CreateSecItemParamsFromDictionary(__CFDictionary const*, int*) + 3493
    13  Security                                0x00007fff8588fca7 SecItemCopyMatching_osx(__CFDictionary const*, void const**) + 133
    14  Security                                0x00007fff8588f95d SecItemCopyMatching + 390
    15  InternetAccounts                        0x00007fff900ad7c5 +[IAGoogleAuthTokenManager keychainEntryForUserName:] + 215
    16  InternetAccounts                        0x00007fff900ad604 +[IAGoogleAuthTokenManager googleTokenForEmailAddress:shouldCreateToken:] + 48
    17  com.apple.internetaccounts              0x0000000101a95c83
    18  CoreFoundation                          0x00007fff8c991dec __invoking___ + 140
    19  CoreFoundation                          0x00007fff8c991c54 -[NSInvocation invoke] + 308
    20  Foundation                              0x00007fff844b5af6 -[NSXPCConnection _decodeAndInvokeMessageWithData:] + 1469
    21  Foundation                              0x00007fff844b26be message_handler + 381
    22  libxpc.dylib                            0x00007fff90ef6510 _xpc_connection_call_event_handler + 58
    23  libxpc.dylib                            0x00007fff90ef5123 _xpc_connection_mach_event + 2124
    24  libdispatch.dylib                       0x00007fff86e1aafe _dispatch_client_callout4 + 9
    25  libdispatch.dylib                       0x00007fff86e1b3b8 _dispatch_mach_msg_invoke + 143
    26  libdispatch.dylib                       0x00007fff86e19633 _dispatch_queue_drain + 359
    27  libdispatch.dylib                       0x00007fff86e1a69e _dispatch_mach_invoke + 154
    28  libdispatch.dylib                       0x00007fff86e19633 _dispatch_queue_drain + 359
    29  libdispatch.dylib                       0x00007fff86e1a9dd _dispatch_queue_invoke + 110
    30  libdispatch.dylib                       0x00007fff86e18fa3 _dispatch_root_queue_drain + 75
    31  libdispatch.dylib                       0x00007fff86e1a193 _dispatch_worker_thread2 + 40
    32  libsystem_pthread.dylib                 0x00007fff8c5ceef8 _pthread_wqthread + 314
    33  libsystem_pthread.dylib                 0x00007fff8c5d1fb9 start_wqthread + 13
    Binary Images:
           0x101a8b000 -        0x101a9efff  com.apple.internetaccounts (1.0 - 1) <fedaf54b-d9b6-3da1-b4bc-e2cef64a8491> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/XPCServ ices/com.apple.internetaccounts.xpc/Contents/MacOS/com.apple.internetaccounts
        0x7fff8441b000 -     0x7fff8471afff  com.apple.Foundation (6.9 - 1056) <d608edfd-9634-3573-9b7e-081c7d085f7a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85738000 -     0x7fff85990ff1  com.apple.security (7.0 - 55471) <233831c5-c457-3ad5-afe7-e3e2de6929c9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff86e16000 -     0x7fff86e30fff  libdispatch.dylib (339.1.9) <46878a5b-4248-3057-962c-6d4a235eef31> /usr/lib/system/libdispatch.dylib
        0x7fff888b9000 -     0x7fff888d5ff7  libsystem_kernel.dylib (2422.1.72) <d14913db-47f1-3591-8daf-d4b4ef5f8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8c5cc000 -     0x7fff8c5d3ff7  libsystem_pthread.dylib (53.1.4) <ab498556-b555-310e-9041-f67ec9e00e2c> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8c958000 -     0x7fff8cb3dff7  com.apple.CoreFoundation (6.9 - 855.11) <e22c6a1f-8996-349c-905e-96c3bbe07c2f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff90096000 -     0x7fff900e5ff7  com.apple.framework.internetaccounts (2.1 - 210) <c77069c7-928c-315c-aa61-d90543901f20> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff90eeb000 -     0x7fff90f0ffff  libxpc.dylib (300.1.17) <4554927a-9467-365c-91f1-5a116989dd7f> /usr/lib/system/libxpc.dylib
    Full report of the following incident:
    02.02.14 12:41:38,282 sandboxd[91]: ([43640]) Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    Mail(43640) deny file-write-data /private/var/db/mds/system/mds.lock
    Process:         Mail [43640]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Load Address:    0x10c586000
    Identifier:      com.apple.mail
    Version:         1827 (7.1)
    Build Info:      5-Mail~1827000000000000
    Code Type:       x86_64 (Native)
    Parent Process:  launchd [166]
    Date/Time:       2014-02-02 12:41:38.276 +0100
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  8
    Thread 0:
    0   libsystem_kernel.dylib                  0x00007fff888ce5da __open + 10
    1   Security                                0x00007fff8573d2af Security::MDSSession::updateDataBases() + 693
    2   Security                                0x00007fff8578feef Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 145
    3   Security                                0x00007fff8578fde3 mds_DbOpen(long, char const*, cssm_net_address const*, unsigned int, cssm_access_credentials const*, void const*, long*) + 211
    4   Security                                0x00007fff8573ccd7 Security::MDSClient::Directory::cdsa() const + 93
    5   Security                                0x00007fff857f995b Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 39
    6   Security                                0x00007fff8573c7b2 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 234
    7   Security                                0x00007fff85761ca5 Security::KeychainCore::DynamicDLDBList::_load() + 329
    8   Security                                0x00007fff85761b29 Security::KeychainCore::DynamicDLDBList::searchList() + 29
    9   Security                                0x00007fff8587b2b5 Security::KeychainCore::StorageManager::getSearchList(std::__1::vector<Security ::KeychainCore::Keychain, std::__1::allocator<Security::KeychainCore::Keychain> >&) + 163
    10  Security                                0x00007fff85787bc2 SecIdentityCopyPreference + 319
    11  CFNetwork                               0x00007fff87b4f3e5 HTTPProtocolSSLSupport::getSSLCertsCached(__CFString const*) + 235
    12  CFNetwork                               0x00007fff87b4f073 HTTPProtocol::setupSSLPropertiesOnStream(_CFURLRequest const*) + 363
    13  CFNetwork                               0x00007fff87b3c234 HTTPProtocol::openStream() + 80
    14  CFNetwork                               0x00007fff87b3b67a HTTPProtocol::useNetConnectionForRequest(NetConnection*, __CFHTTPMessage*, unsigned char) + 1750
    15  CFNetwork                               0x00007fff87b3aeae HTTPConnectionCacheEntry::dispatchConnectionToProtocol(NetConnection*, HTTPProtocol*, HTTPRequestMessage*, unsigned char) + 276
    16  CFNetwork                               0x00007fff87b3ac6d HTTPConnectionCacheEntry::notifyNextProtocolOfOpenConnection(NetConnection*, unsigned char) + 301
    17  CFNetwork                               0x00007fff87b37fcf HTTPConnectionCacheEntry::enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 685
    18  CFNetwork                               0x00007fff87b379cc HTTPConnectionCache::_onqueue_enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 178
    19  CFNetwork                               0x00007fff87b378f1 ___ZN19HTTPConnectionCache25enqueueRequestForProtocolEP12HTTPProtocolP15__CFHTT PMessage_block_invoke + 26
    20  CFNetwork                               0x00007fff87b2e3fc ___ZNK17CoreSchedulingSet13_performAsyncEPKcU13block_pointerFvvE_block_invoke + 25
    21  CoreFoundation                          0x00007fff8c9a2e94 CFArrayApplyFunction + 68
    22  CFNetwork                               0x00007fff87b2e2db RunloopBlockContext::perform() + 115
    23  CFNetwork                               0x00007fff87b2e183 MultiplexerSource::perform() + 269
    24  CFNetwork                               0x00007fff87b2dfb2 MultiplexerSource::_perform(void*) + 72
    25  CoreFoundation                          0x00007fff8c9d78f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    26  CoreFoundation                          0x00007fff8c9c9062 __CFRunLoopDoSources0 + 242
    27  CoreFoundation                          0x00007fff8c9c87ef __CFRunLoopRun + 831
    28  CoreFoundation                          0x00007fff8c9c8275 CFRunLoopRunSpecific + 309
    29  Foundation                              0x00007fff84482907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    30  Foundation                              0x00007fff8448270b __NSThread__main__ + 1318
    31  libsystem_pthread.dylib                 0x00007fff8c5cd899 _pthread_body + 138
    32  libsystem_pthread.dylib                 0x00007fff8c5cd72a _pthread_struct_init + 0
    33  libsystem_pthread.dylib                 0x00007fff8c5d1fc9 thread_start + 13
    Binary Images:
        0x7fff8441b000 -     0x7fff8471afff  com.apple.Foundation (6.9 - 1056) <d608edfd-9634-3573-9b7e-081c7d085f7a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85738000 -     0x7fff85990ff1  com.apple.security (7.0 - 55471) <233831c5-c457-3ad5-afe7-e3e2de6929c9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff87b07000 -     0x7fff87c77ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42cfc3db-35c8-3652-af37-4bcc73d8bdef> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff888b9000 -     0x7fff888d5ff7  libsystem_kernel.dylib (2422.1.72) <d14913db-47f1-3591-8daf-d4b4ef5f8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8c5cc000 -     0x7fff8c5d3ff7  libsystem_pthread.dylib (53.1.4) <ab498556-b555-310e-9041-f67ec9e00e2c> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8c958000 -     0x7fff8cb3dff7  com.apple.CoreFoundation (6.9 - 855.11) <e22c6a1f-8996-349c-905e-96c3bbe07c2f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Console log – All Messages
    Action:
    App Store > Sign In > Apple ID / Password > Sign In > Connection failed.
    02.02.14 12:51:07,365 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,372 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,377 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,384 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,390 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,396 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,402 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,409 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:07,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:08,000 kernel[0]: Sandbox: App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    02.02.14 12:51:09,730 SafariNotificationAgent[44337]: Error calling realpath on the home directory.
    02.02.14 12:51:09,732 com.apple.launchd.peruser.0[166]: (com.apple.SafariNotificationAgent[44337]) Exited with code: 1
    02.02.14 12:51:09,732 com.apple.launchd.peruser.0[166]: (com.apple.SafariNotificationAgent) Throttling respawn: Will start in 10 seconds
    Full report of the following incident:
    02.02.14 12:51:07,365 sandboxd[91]: ([44259]) App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    App Store(44259) deny file-write-data /private/var/db/mds/system/mds.lock
    Process:         App Store [44259]
    Path:            /Applications/App Store.app/Contents/MacOS/App Store
    Load Address:    0x107a6d000
    Identifier:      com.apple.appstore
    Version:         201 (1.3)
    Build Info:      61-Firenze~201000000000000
    Code Type:       x86_64 (Native)
    Parent Process:  launchd [166]
    Date/Time:       2014-02-02 12:51:07.307 +0100
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  8
    Thread 0:
    0   libsystem_kernel.dylib                  0x00007fff888ce5da __open + 10
    1   Security                                0x00007fff8573d2af Security::MDSSession::updateDataBases() + 693
    2   Security                                0x00007fff8578feef Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 145
    3   Security                                0x00007fff8578fde3 mds_DbOpen(long, char const*, cssm_net_address const*, unsigned int, cssm_access_credentials const*, void const*, long*) + 211
    4   Security                                0x00007fff8573ccd7 Security::MDSClient::Directory::cdsa() const + 93
    5   Security                                0x00007fff857f995b Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 39
    6   Security                                0x00007fff8573c7b2 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 234
    7   Security                                0x00007fff85761ca5 Security::KeychainCore::DynamicDLDBList::_load() + 329
    8   Security                                0x00007fff85761b29 Security::KeychainCore::DynamicDLDBList::searchList() + 29
    9   Security                                0x00007fff8587b2b5 Security::KeychainCore::StorageManager::getSearchList(std::__1::vector<Security ::KeychainCore::Keychain, std::__1::allocator<Security::KeychainCore::Keychain> >&) + 163
    10  Security                                0x00007fff85787bc2 SecIdentityCopyPreference + 319
    11  CFNetwork                               0x00007fff87b4f3e5 HTTPProtocolSSLSupport::getSSLCertsCached(__CFString const*) + 235
    12  CFNetwork                               0x00007fff87b4f073 HTTPProtocol::setupSSLPropertiesOnStream(_CFURLRequest const*) + 363
    13  CFNetwork                               0x00007fff87b3c234 HTTPProtocol::openStream() + 80
    14  CFNetwork                               0x00007fff87b3b67a HTTPProtocol::useNetConnectionForRequest(NetConnection*, __CFHTTPMessage*, unsigned char) + 1750
    15  CFNetwork                               0x00007fff87b3aeae HTTPConnectionCacheEntry::dispatchConnectionToProtocol(NetConnection*, HTTPProtocol*, HTTPRequestMessage*, unsigned char) + 276
    16  CFNetwork                               0x00007fff87b3ac6d HTTPConnectionCacheEntry::notifyNextProtocolOfOpenConnection(NetConnection*, unsigned char) + 301
    17  CFNetwork                               0x00007fff87b37fcf HTTPConnectionCacheEntry::enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 685
    18  CFNetwork                               0x00007fff87b379cc HTTPConnectionCache::_onqueue_enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 178
    19  CFNetwork                               0x00007fff87b378f1 ___ZN19HTTPConnectionCache25enqueueRequestForProtocolEP12HTTPProtocolP15__CFHTT PMessage_block_invoke + 26
    20  CFNetwork                               0x00007fff87b2e3fc ___ZNK17CoreSchedulingSet13_performAsyncEPKcU13block_pointerFvvE_block_invoke + 25
    21  CoreFoundation                          0x00007fff8c9a2e94 CFArrayApplyFunction + 68
    22  CFNetwork                               0x00007fff87b2e2db RunloopBlockContext::perform() + 115
    23  CFNetwork                               0x00007fff87b2e183 MultiplexerSource::perform() + 269
    24  CFNetwork                               0x00007fff87b2dfb2 MultiplexerSource::_perform(void*) + 72
    25  CoreFoundation                          0x00007fff8c9d78f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    26  CoreFoundation                          0x00007fff8c9c9062 __CFRunLoopDoSources0 + 242
    27  CoreFoundation                          0x00007fff8c9c87ef __CFRunLoopRun + 831
    28  CoreFoundation                          0x00007fff8c9c8275 CFRunLoopRunSpecific + 309
    29  Foundation                              0x00007fff84482907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    30  Foundation                              0x00007fff8448270b __NSThread__main__ + 1318
    31  libsystem_pthread.dylib                 0x00007fff8c5cd899 _pthread_body + 138
    32  libsystem_pthread.dylib                 0x00007fff8c5cd72a _pthread_struct_init + 0
    33  libsystem_pthread.dylib                 0x00007fff8c5d1fc9 thread_start + 13
    Binary Images:
        0x7fff8441b000 -     0x7fff8471afff  com.apple.Foundation (6.9 - 1056) <d608edfd-9634-3573-9b7e-081c7d085f7a> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85738000 -     0x7fff85990ff1  com.apple.security (7.0 - 55471) <233831c5-c457-3ad5-afe7-e3e2de6929c9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff87b07000 -     0x7fff87c77ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42cfc3db-35c8-3652-af37-4bcc73d8bdef> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff888b9000 -     0x7fff888d5ff7  libsystem_kernel.dylib (2422.1.72) <d14913db-47f1-3591-8daf-d4b4ef5f8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8c5cc000 -     0x7fff8c5d3ff7  libsystem_pthread.dylib (53.1.4) <ab498556-b555-310e-9041-f67ec9e00e2c> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8c958000 -     0x7fff8cb3dff7  com.apple.CoreFoundation (6.9 - 855.11) <e22c6a1f-8996-349c-905e-96c3bbe07c2f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation

    I have had somewhat similar problems as Øystein Ange since upgrading from Snow Leopard to Mavericks in January. But fortunately, I have been able to solve many of them after a lot of trial & error, frustration and sweat! I now long for the more than 2 years of previous Snow Leopard usage when problems were small, few and far between, and quickly solvable. I feel as if Apple has cut me adrift and left me to struggle on my own with the seemingly numerous problems of getting the performance of Mavericks to finally stabilize on my iMac.
    Øystein's Feb. 8th post asks some of the same Mavericks questions that I still have. It would be very helpful to me, and to others I'm sure, if someone/anyone has specific suggestions or solutions on what one could/should do to fix specific problems with newly installed Mavericks OSs, short of a clean, full re-install of the OS.
    I have one admin account plus the guest account on my iMac Mavericks. Does this mean my admin account is a/the root account?! How can one tell whether or not they are logging in with a root account?! What's the distinction between the root account, a user's admin account, and other standard users' accounts?! Could someone please recommend a definitive Apple document describing all the various types of Mavericks accounts, in detail, and how/when/where/why each type should be used before or along with any of the others?
    Why is it suddenly a no-no to log on to Mavericks via the root user account, when previous OS versions had no problem with this?! What's the purpose of the root user account if not to use it to log on to the computer?! If it's so dangerous, why isn't it internally safeguarded from inadvertent logins by casual users?! What damage or harm are we talking about, and why weren't personal-use customers given a big warning about this apparent "booby trap" in Mavericks?! Saying NEVER DO THAT is like closing the barn door after the horse has already bolted, and it explains nothing to the casual user.
    We can't just do a clean re-install every time something in Mavericks hiccups?! Based on my recent experience, and on what I'm seeing in this thread, I would have had to re-installed it a half dozen times in the past 2 months alone!! That's nonsensical. There's got to be a better way of fixing a newly installed Mavericks OS than doing a re-install over and over again. Why don't the Mac diagnostic and troubleshooting tools work in Mavericks' case, as they have done for me on many occasions on earlier OS versions?! What is it about Mavericks that makes it different this time?! Could it possibly have something to do with integration of Mavericks and iCloud; and, if so, what specific cautions should the casual user observe to make sure they don't jeopardize the integrity of Mavericks by doing something similar to logging in from the root account?!
    Many customers need to be brought in out of the dark! Is there an Apple Mavericks expert out there who can advise the customer community on specifically how to apply the existing repair tools to solve specific Mavericks teething problems, without having to revert to multiple OS re-installs?

  • Acrobat 9 Pro  " An error occurred while sending mail"

    Dear Gurus:
    Free ice cream to the person with the answer that works.      I use Vista OS, 32 bit;    IE (Primary) and Mozilla;   Outlook E-mail (primary) and Windows Mail.  The preceding has been the case for the last two years so "nothing has changed".    I used Adobe Acrobat 9 Pro for two years and designed a number of interactive forms and used the functionality as much as possible.   Overall a good experience with Pro 9
    Case in point, I designed an interactive employment application that was regularly used, updated and re-released over a period of about two years without incident.  It was set up to be completed online by employment applicants.  Once completed, they would click to  "e-mail the office"  the completed application then close the document.    It was set up with the button to send a form, and more precisely to send the form as .FDF to the mailto: address#1; address #2.   Again it worked fine using either Mozilla or IE until last week.      As usual, I made some minor edits to the existing body fields and left the buttons alone sine there was no need to bother them.
    I emailed  the revised  .PDF document to   "the web guy" who added it to the website- like all the times before.     I went online to  "test it" as usual so I filled it out.   When I click the button to send form to office, the option comes up to select the email client.   I use Outlook so I selected "Desktop E-mail Application",  click  OK  and then I immediately get the message  "An error has occurred while sending mail".      In the past without fail, the Outlook would open after 1-3 seconds and attach the   .FDF file with the normal  .FDF and data jargon.  no problem...      Also, I am aware of extending features to Reader and the licensing issue, but I doubt that is an issue.....
    So, before I posted here I tried a few things:
    A-  I tried opening the source  .PDF application locally on my PC and filled it out. I clicked the button to "sent the file" to myself.    To be clear this was not posted on the website, but it did open Outlook, create the email, add the .FDF and sent it to me.       HHHMMMM so it works locally....
    B-  Next, I started fresh with a blank adobe document page and added two items:  1- a text field and a new email submit button I created to send the data via FDF.    I set it up, it worked fine when I tested it locally on the PC and created the .FDF file and the Outlook email and I sent it to myself.     Then  I took this same little test file and added it to a different website I have access to, I re-published the site,  ccessed the form and  no dice......    I got the same message,  " an error occurred while sending mail"  when I clicked OK to use the Desktop Email Application.
    C- I read other posts and Googled for about 6 hours yesterday and  now I am missing clumps of hair.
    So, it seems something "happened" that will not let the email be created from an existing form; or a NEW form that are available for use on a website;  but BOTH  work just fine if accessed on a local PC. 
    Please , and thank you..
    Brian P.

    Hi Bill,
    Thank you for your follow up.       I'm not sure what you mean by,  "did I do a comparison to the original".    If you're asking whether I'm sure the .PDF and the .FDF are the "same" documents, they are...  however the problem is even if they were entirely different forms, my issue is once the submit form button is clicked, Outlook fails to initialize and attach the   .FDF file .
    I mentioned how I tried to recreate the "error" by building a new form from scratch in order to eliminate all the possible variables of having a bug in the form that had been updated so many times before without incident.   Even with the new form having just one text field and one submit form button,  it worked as needed when I used the .PDF file locally right from my PC by  filling out the field and submitting the form's  .FDF data to myself.      It opened the Outlookprogram, created the mail and attached the .FDF file.     I clicked "send" and away it goes  from "me" to "me" and I was able to open the email, click the .FDF then browse to the .PDF source form so the files could extract into the   .PDF.    All normal and all Okay ,  like 100 times before using the WEB, but not now... .
    Today,  even that simple form with one field and one submit button encounters the same  "An error has occurred while sending mail"  message upon clicking on the web based submit button.     The option comes up to let me select the email server and when I click  "OK" , the error notice comes up...    grrrrrrrrrrrrr
    In short, when the form is used in a website environment, it doesn't want to create the outgoing email with the .FDF file attachment.      Normally, it worked like a peach.
    ?? I dunno
    BP

  • An error occurred while sending mail. The mail server responded: 5.7.1 [P4] Message blocked due to spam content in message

    I have been using Thunderbird for a couple of years. On Friday 10 Apr my home email account stopped sending either new messages or replying to incoming emails. In addition I have Thunderbird get my work email and I can send and receive email just fine. I can also send email from my android phone and via the web.
    The message that has started coming up is the following:
    An error occurred while sending mail. The mail server responded: 5.7.1 [P4] Message blocked due to spam content in the message.. Please check the message and try again.
    I have tried reinstalling Thunderbird but nothing changed, I tried changing the port from 25 to 587 to 465 but nothing changed. I do not understand what is going on as on Wednesday Apr 8 everything was working just fine.

    I have just tried ringing RCN and they tell me that because I am not using an RCN email as such they can not help but he suggested that it was a filter in Thunderbird but I have not set any filters and can not see if there are any or how to change them. The only way sending my website url right now is to make it not look like a url. Where do I need to look to solve this as I first wrote last week everything was fine.

  • Mail Adapter Error occured in Adapter Monitoring....

    Hi
    I have done the Mail>XI>File senario.... the xi server is sometimes its picking up the mails but some times its not picking... i have give trasport protocol as IMAP4 and url as pop://ipaddress.... I have created the asyncronus message types...n i have given the quality service as Exactly Once... when ever the server is picking file from mail inbox its sending file to the destination directory successfully but in destination side i am getting only the complex tags like the following
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:File_Message_Type xmlns:ns0="http://mailtofiledemo.com/ravi"></ns0:File_Message_Type>
    i am not getting any nodes inside those tags.... In adapter monitoring i am getting the following error:
    error occured: [2006-06-05T05:44:06Z] 0 new messages found; no action takenexception caught during processing mail message; com.sap.aii.af.mp.module.ModuleException caused by: com.sap.aii.af.ra.ms.api.DeliveryException: XIServer:NO_RECEIVER_CASE_BE:
    I am using SquirrelMail(webmail) server... so please help me...
    I have tried with pop3 alos but its not working
    Thanks & Regards
    Ravi Shankar B
    Message was edited by: RaviShankar B

    Hi,
    Try giving POP3.
    and correct address.. pop3://etc... Remember to give the name of the folder from where the message have to be picked.
    Regards
    Suraj
    Message was edited by: S.R.Suraj

  • Error occured while sending mail SO_OBJECT_SEND

    Hi all,
    While using ME23n for print preview of a PO I m getting the below error :
    Error occured while sending mail SO_OBJECT_SEND,return code Z8.
    The problem is this FM : SO_OBJECT_SEND is not explicitly used in the Driver program.
    In debugging mode if I set a Break-point at SO_OBJECT_SEND, it shows BREAKPOINT set,
    but doesnt stop at that place.
    If any one of you know the solution or if you can suggest some points regarding this problem,
    it will be of great help...
    Thanks & Regards,
    Ramya

    Hi,
    If it is not stoping means may be the so_document_object is calling based on any condtion.
    Y u can't you go ur driver program and search for the FM.
    Otherwise put the break point at the statement 'CALL FUNCTION'.
    Thanks,

  • I have suddenly got the following message An (SMTP) error occurred while sending mail. The server responded: Requested action aborted: This mail account has se

    Having been on Thunderbird for some years I have suddenly got the following message when trying to send mail.
    An (SMTP) error occurred while sending mail. The server responded: Requested action aborted: This mail account has sent too many messages in a short amount of time. Please try later..
    I have checked the SMTP server settings in tools, account settings and they are as they have always been. Is there something I have missed?

    Sending through web mail is totally irrelevant to using an SMTP server. The message even says it is from the server. Why do you think this is a Thunderbird problem.
    The provider has put in place measures to keep people from spamming other email recipients using thier SMTP server. You have seen the result of those measures.

  • I get this error msg. "An error occurred while sending. The mail sever responded: From address is not valid [R0107001]. My email address is correct. Why?

    Can't send email. Get error: "An error occurred while sending. The mail sever responded: From address is not valid [R0107001]. Please verify your email address is correct in your Mail Preference and try again."
    My email ([email protected]) is correct.
    After receiving the error message I try to resend. Get second error message. BUT AFTER ABOUT SIX TRYS THE MESSAGE IS SENT.
    What shall I do???

    problem solved. an update thunderbird message showed up, did update and now works. WOW!

  • An error occured while sending mail: SMTP server error.  The server responded: (null)

    I'm getting this set of error messages intermittantly:
    <P>
    An error occured while sending mail: smtp server error
    the server responded: (null) contact email admin
    for assistance
    other message
    an error occured while sending mail: smtp server error
    the server responded: intermail,
    end with quote.quote contact email admin
    for assistance
    <P>
    This problem may occur at low-use times when Messaging is installed with the
    Trend virus protection software on the same system.
    <P>
    Change the version of the Trend software from 3.0 to the older 2.62 version.

    It's possible that your provider has made a change.
    I think STARTTLS usually is used with port 587, instead of the standard SSL port 465.
    Could you look up your provider's current SMTP settings to see whether your "Outgoing Server" settings need to be updated? If it's difficult to translate between your provider's help page and Thunderbird's dialog controls, you could provide a link to your provider's help page.

  • An error occurred while updating mail preferences

    Hi guys, i get this error "An error occurred while updating mail preferences" when try to enable vacation message in uwc.....any idea? is a hosted domain uwc...

    hi jay,
    mmp 2005q1 patched 118207-42
    uwc 2005q1 patched 118540-21
    there is 2 ldap servers running master replica
    but when i tried on MMP's Messenger Express (webmail), i managed to do it, but not able when using uwc. ( anyway, Messager Express is not using since there is uwc)

  • I can't send an e-mail from thunderbird, it was working well, suddenly it says the following message:An error occurred while sending mail. The mail server respo

    i can't send an e-mail from thunderbird, it was working well though , suddenly it says the following message:An error occurred while sending mail. The mail server responded An error occurred while sending mail. The mail server responded: (Alis-MacBook-Air.local) [46.138.187.135]:51054 is currently not permitted
    OR
    i have changed the port from 587 to 465 but still cannot send e-mail, it keep sending and sending for 5 minutes and respond is time out?

    Can you post your Troubleshooting Information?
    Help (Alt-H) - Troubleshooting Information

Maybe you are looking for

  • Select query. pls help

    Hi all i am new to abap I have the following requirement. kindly help me how to write the select queries to achieve it. its urgent pls help me thanks in advance In June of year 1, new budget prices must be determined for the following year (year 2).

  • Firefox is only showing index of certain web sites

    going to a web site it is only showing the index of the page not the page. showing that it is not completely loading the page. the circle keeps going around and never completely loads. its almost like i am making a web page. not doing it on all sites

  • Is it possible to use Prepaid-Creditcard like Visa or MasterCard?

    Is it possible to open an iCloud-Account with Prepaid-Creditcards? Cards like VISA or MasterCard with a pre paid cash. No iTunes-Cards. Thanks for your analer.

  • Exporting components from multisim to ultiboard

    I would like to export my design from multisim to ultiboard. I have multiple pages in my schematic in multisim and I when I export it to ultiboard, I would like the components in a page to be placed near each other in ultiboard. What should I do ? So

  • Date Picker for Query Variable

    Hello, I have a query, which has a input variable as date. For the Query Variables when i drag and create an input form, i have the field as input field. How do i change this field to a date picker drop down...I do not get any option to make it as a