How to fetch Errors in Workflow E-Mail

Hi All :-)
Just a short Question.
We´re using OWB 10.1.0.4.0 and Workflow 2.6.x.
Now i try to use the E-Meil Activity in a Workflow.
Everything works fine, Mails delivered correct.
So far so good...
Now i want to fetch the evantually appearing Errors in the E-Mail Message-Body.
I´ve still reag something in a Blog about using a Self made Procedure....
Does anybody know what´s simply the best Way to fetch the Errors?
Stii, in the Oracle Technologie Network Documetations i couldn´t found something
concretely.
Thanks in Advance
Lone

Hi All :-)
Just a short Question.
We´re using OWB 10.1.0.4.0 and Workflow 2.6.x.
Now i try to use the E-Meil Activity in a Workflow.
Everything works fine, Mails delivered correct.
So far so good...
Now i want to fetch the evantually appearing Errors in the E-Mail Message-Body.
I´ve still reag something in a Blog about using a Self made Procedure....
Does anybody know what´s simply the best Way to fetch the Errors?
Stii, in the Oracle Technologie Network Documetations i couldn´t found something
concretely.
Thanks in Advance
Lone

Similar Messages

  • How to fetch Error message

    Hi folks,
    I am new to c/c++.
    And i am finding it difficult to figure it out ..............
    char* APIParser::parseDocument(const char *xmlInput) {
              XMLParser parser;
              const char *doc;
              uword ecode;
              doc = xmlInput;
              if(doc == NULL)
    //Return XML output
                   return getDefaultXMLOutput(-1, 0, "XML input document is null");
              if (ecode = parser.xmlinit()) {
                   cout << "Failed to initialize XML parser, error " << ecode;
                   //return ecode;
                   return getDefaultXMLOutput(-1, 0, "Failed to initialize XML parser");
              if (ecode = parser.xmlparseBuffer((oratext *) doc, strlen(xmlInput), (oratext *) 0,
                   XML_FLAG_DISCARD_WHITESPACE)) {
                   cout << "Parse failed, error " << ecode << "\n";
                   //          return 3;
                   return getDefaultXMLOutput(-1, 0, "Parse failed");
              if (ecode = schema.initialize(&parser))     {
                   cout << "Failed, code " << ecode << "!\n";
                   //return 4;
                   return getDefaultXMLOutput(-1, 0, "Error in initialize Schema");
              root = parser.getDocumentElement();
              if (ecode = schema.validate(root, NULL )){
                   cout << "Validation failed, error " << ecode << "\n";
                   ub4* ub4;
                   unsigned char** path;
                   int i=0;
                   boolean value;
                   while((value = parser.xmlwhere(ub4, path, i++))){
                        cout<<ub4<<endl;
                        cout<<ub4<<path;
                   cout<<value;
                   schema.terminate();
                   //return 5;
                   return getDefaultXMLOutput(-1, 0, "Validation failed");
              return "";
    Where i am passing xmlInput which is a char*.
    Things work fine.
    I need to send back exact error message to client to debug the messages.
    How to fetch the messages, line number etc.
    By seing docs i wont be able to figure it out.
    Can any one send piece of code to fetch the error messages.

    If you access the FacesContext you find a method called
    getMessages()
    Return an Iterator over the FacesMessages that have been queued, whether or not they are associated with any specific client identifier.

  • How to schedule restart of Workflow notification mailer?

    We are facing this issue in all environments including production;
    Inbound IMAP Notification emails are pending in the INBOX folder of the mail box. These moves to PROCESS folder only after restart of the 'WORKFLOW NOTIFICATION MAILER' every 3 to 4 hours.
    I have raised an SR with Oracle support for a solution.
    For this temporary workaround of restarting the Notificaiton mailer, I want to know how can I schedule the automatic restart of the 'WORKFLOW NOTIFICATION MAILER', Please advice.

    Sami,
    See (Note: 466927.1 - How to Schedule Events for the Workflow Notification Mailer).
    Regards,
    Hussein

  • How to fetch attachments in workflows to Outlook

    Dear colleagues,
    We have purchase requisition (PR) workflow in use and integration between SAP and Outlook; workflows are approved via Outlook or Blackberry.
    Now there is such a requirement that when a document is linked to PR by using service object in PR I need to fetch this document as an attachment of Outlook mail. Before adding document(s) to PR(s), initially we create document info record (DIR) using SAP EDMS and link DIR with PR.
    I know that data about documents are stored in tables DR* and original path of a document is stored in table DRAW- FILEP.
    Any suggestion would be appreciated
    Kind regards
    Melih

    HI Melih,
    Check table DRAW-FILEP  is there any like between PR and attachement .
    if you get the link between PR and attachemt by using below function module you can  send the mail with PR detarls and as well attachement aslo .
    you have to  develop one custom function module in this function module you have  to write all this logic
    step-1
    create one custom function module input paremeteri is PR
    step-2
    create a custom method then  call this  custom Function module in that method
    step-3
    create one back ground activiy task with this  method .
    here is the sample code for custom fm
    FUNCTION ZSEND_MAIL.
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(SUBJECT) TYPE  CHAR50
    *"  TABLES
    *"      TO_LIST STRUCTURE  ZMAIL_ADDRESS
    *"      CC_LIST STRUCTURE  ZMAIL_ADDRESS OPTIONAL
    *"      BODY STRUCTURE  SOLI
    *"  EXCEPTIONS
    *"      NO_DATA
      DATA: wa_docdata TYPE sodocchgi1.   " Document data
      DATA: t_objpack  TYPE STANDARD TABLE OF sopcklsti1. " Packing list
      DATA: wa_objpack TYPE sopcklsti1.   " Packing list
      DATA: w_tab_lines TYPE i.
      DATA: t_objtxt     TYPE STANDARD TABLE OF solisti1.   " Message body
      DATA: t_objhead    TYPE STANDARD TABLE OF solisti1.   " Header
      DATA: i_receivers  TYPE TABLE OF somlreci1 WITH HEADER LINE.  " Receipient list
      DATA : it_mailtext         LIKE soli  OCCURS 0 WITH HEADER LINE.
      CLEAR wa_docdata.
      wa_docdata-obj_name = 'MAIL'.
      wa_docdata-obj_descr = subject.
      wa_docdata-obj_langu = sy-langu.
    MOVE sy-datum  TO i_receivers-rcdat .
    MOVE sy-uzeit  TO i_receivers-rctim.
    MOVE '1'       TO i_receivers-sndpri.
    MOVE 'X'       TO i_receivers-sndex.
    MOVE 'U-'      TO i_receivers-recnam.
    MOVE 'U'       TO i_receivers-recesc.
    MOVE 'INT'     TO i_receivers-sndart.
    *Build Receivers list
      CLEAR i_receivers.
      i_receivers-rec_type  = 'U'.
    Send Mail To
      LOOP AT to_list.
        CLEAR i_receivers-receiver.
        i_receivers-receiver = to_list-mail_id.
        APPEND i_receivers.
      ENDLOOP.
    Build CC List
      LOOP AT cc_list.
        i_receivers-receiver = cc_list-mail_id.
        i_receivers-copy = 'X'.
        APPEND i_receivers.
      ENDLOOP.
      LOOP AT body.
        IF body-line IS INITIAL.
          CONTINUE.
        ENDIF.
        it_mailtext-line = body-line.
        APPEND it_mailtext.
        CLEAR body.
      ENDLOOP.
      t_objtxt[] = it_mailtext[].
      t_objhead[] = it_mailtext[].
    Document data
      DESCRIBE TABLE t_objtxt      LINES w_tab_lines.
    Packing data
      CLEAR wa_objpack-transf_bin.
      wa_objpack-head_start = 1.
      wa_objpack-head_num   = 0.
      wa_objpack-body_start = 1.
      wa_objpack-body_num   = w_tab_lines.
      wa_objpack-doc_type   = 'HTML' . "'RAW'.    " .
      APPEND wa_objpack TO t_objpack.
      CLEAR wa_objpack.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = wa_docdata
          commit_work                = 'X'
        TABLES
          packing_list               = t_objpack
          object_header              = t_objhead
          contents_txt               = t_objtxt
          receivers                  = i_receivers
        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.
    ENDFUNCTION.
    Regards
    RameshG
    Edited by: RameshG on Nov 5, 2010 1:18 AM

  • How to send error message via a mail to the customers email id

    HI experts ,
    i have a requirement,In idoc where i have to send the error message via email to a perticular emailid?
    please help me n tell also which fm is used for that?
    Thanks
    RAhul Sisodia

    Hi ,
    Check this Link..
    [sending an email with multiple attachments;
    Regards,
    Sachin M M

  • Before Workflow Notification Mailer fails sends failure alert.

    Hi,
    We are using Oracle E-Business Suit R12. It happens few times that Workflow Notification Mailer fails (unknown reason), thus stopping all the upcoming alerts.
    1). Please tell me if there is way to identify those unknown reasons?
    2). Secondly is there any way that before Workflow Notification Mailer fails generate an alert on just before failure?
    Regards,
    Farooq Khan.

    We are using Oracle E-Business Suit R12. It happens few times that Workflow Notification Mailer fails (unknown reason), thus stopping all the upcoming alerts.
    1). Please tell me if there is way to identify those unknown reasons?Please check the Workflow log file for details about the error.
    How to Troubleshoot when the Workflow Services Go Down [ID 564394.1]
    How to Perform a Meaningful SMTP Telnet Test to Troubleshoot Java Mailer For Sending Email Notifications [ID 75384
    How To Troubleshoot Java-based Workflow Notification Mailer [ID 242941.1]
    A Guide For Troubleshooting Workflow Notification Emails - Inbound and Outbound [ID 831982.1]
    Oracle Workflow FAQ [ID 465887.1]
    Workflow Scripts [ID 183643.1]
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Workflow+AND+Troubleshoot&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Workflow+AND+Diagnostics&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    2). Secondly is there any way that before Workflow Notification Mailer fails generate an alert on just before failure?https://forums.oracle.com/forums/search.jspa?threadID=&q=Workflow+AND+Monitoring&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Workflow Notification Mailer

    Hi
    Can anyone advise as to how I would set up Workflow Notification Mailer to simply send mails to a single account as opposed to EVERYONE?
    I need to do this for both INBOUND and OUTBOUND notifications.
    please help.
    Thanks

    969654 wrote:
    Hi
    Can anyone advise as to how I would set up Workflow Notification Mailer to simply send mails to a single account as opposed to EVERYONE?
    I need to do this for both INBOUND and OUTBOUND notifications.
    please help.
    ThanksUse an "Override Email Address" -- https://forums.oracle.com/forums/search.jspa?threadID=&q=Override+AND+Email&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • URGENT !!! How to fecth the content of the mail

    HI All,
    I having a problem regarding how to fetch the body of the mail as well as attachment of the mail.
    i get sender name, subject but i having the problem how to fetch the content of the mail.
    i used
    System.out.println(message[msgno].getContentType());
    but it showing
    javax.mail.internet.MimeMultipart@480457
    it won't showing the content.
    How can i fetch the content !!!!
    Please help
    I fetching accessing the mail server using "imap"
    By
    Ravi
    email : [email protected]

    Code which i used
    import java.io.*;
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.lang.*;
    import java.lang.Object;
    public class GetMessageExample
         public static void main(String args[]) throws Exception
              String host = "...";
              String username = "....";
              String password = ".....";
              // Create empty properties
              Properties props = new Properties();
              // Get session
              Session session = Session.getDefaultInstance(props, null);
              // Get the store
              Store store = session.getStore("imap");
              // Connect to store
              store.connect(host, username, password);
              // Get folder
              Folder folder = store.getFolder("INBOX");
              // Open read-only
              folder.open(Folder.READ_ONLY);
              // Get directory
              Message message[] = folder.getMessages();
              for (int i = 0, n = message.length; i < n; i++)
                   // Display from field and subject
                   System.out.println("From : "+message[0].getFrom()[0]);
                   System.out.println("Subject :"+message[0].getSubject());
                   // Display message content     
                   System.out.println("ContentType :"+message[0].getContentType());
                   System.out.println("Content :"+message[0].getContent());
              // Close connection
              folder.close(false);
              store.close();
    i got this output :
    From : Ravi Lal <[email protected]>
    Subject :Testing
    ContentType :multipart/alternative;
    boundary="----=_Part_63386_12145160.1189402168311"
    Content :javax.mail.internet.MimeMultipart@480457
    As i having only one mail in my inbox.
    I able to fetch everything from, subject but i fails to get the content i.e text of the mail.......
    What i do ????????
    !!! Help Me !!!
    Ravi
    Edited by: Ravi_InSun on Sep 13, 2007 10:51 AM

  • SSHR -- how to configure email with workflow notifications

    Hi,
    I need to send email to the workflow approvers.
    Can you please tellme the steps in setting up the same.

    Pl post details of OS, database and EBS versions.
    Pl see these documents
    How Does One Configure Oracle Applications Workflow Notification Mailer And where Are The Documentat          (Doc ID 1051562.1)
    Configuring the Oracle Workflow 2.6/11i.OWF.H Java-based Notification Mailer with Oracle Application          (Doc ID 268085.1)
    Example Of Configuring Workflow Java Notification Mailer With Oracle Applications 11.5.x          (Doc ID 249957.1)
    How To Troubleshoot Java-based Workflow Notification Mailer          (Doc ID 242941.1)
    Configuring the Oracle Workflow 2.6 Java-based Notification Mailer with Oracle Applications 11i          (Doc ID 231286.1)
    HTH
    Srini

  • Workflow Notification Mailer error

    Hi all,
    I am logged in Application Manager and it shows that Mailer "Stopped with error".
    Service Instances for Generic Service Component Container shown as running.
    Here is what I see in Mailer Details:
    Definition
         ID          10006          Name          Workflow Notification Mailer
         Startup Mode          Automatic          Container Type          Oracle Applications GSM
         Inbound Agent          Workflow Notification In Queue          Outbound Agent          Workflow Notification Out Queue
         Correlation ID                              
         Status Information          This automatic Service Component has been restarted the maximum of 10 times after stopping with error. Thus, it has been system deactivated -> oracle.apps.fnd.cp.gsc.SvcComponentContainerException: Could not start component; performing rollback -> oracle.apps.fnd.cp.gsc.SvcComponentException: Validation failed for the following parameters -> {OUTBOUND_SERVER=Unable to make a network connection.}. Parameters were -> {INBOUND_MAX_IGNORE_SIZE=1000, INBOUND_MAX_LOOKUP_CACHE_SIZE=100, ATTACH_IMAGES=Y, ALLOW_FORWARDED_RESPONSE=Y, INBOUND_UNSOLICITED_THRESHOLD=2, NODENAME=WFMAIL, AUTOCLOSE_FYI=N, INBOUND_PROTOCOL=IMAP, PROCESSOR_READ_TIMEOUT_CLOSE=Y, ATTACHED_URLS=WFMAIL:ATTACHED_URLS, TEST_ADDRESS=, EXPUNGE_ON_CLOSE=Y, PROCESSOR_OUT_THREAD_COUNT=1, ATTACH_STYLESHEET=Y, OUTBOUND_CONNECTION_TIMEOUT=120, INBOUND_MAX_RET_EMAIL_SIZE=100, MAX_INVALID_ADDR_LIST_SIZE=100, PROCESSOR_MAX_LOOP_SLEEP=60, SEND_ACCESS_KEY=N, PROCESSOR_IN_THREAD_COUNT=1, FRAMEWORK_APP=1, CLOSED=WFMAIL:CLOSED, INBOUND_FETCH_SIZE=100, SUMMARY=WFMAIL:SUMMARY, ENABLE_STYLESHEET=N, PROCESSOR_ERROR_LOOP_SLEEP=60, OPEN_MAIL_FYI=WFMAIL:OPEN_MAIL_FYI, FRAMEWORK_RESP=20420, ALTERNATE_EMAIL_PARSER=oracle.apps.fnd.wf.mailer.DirectEmailParser, INBOUND_PASSWORD=_6#986$!0# `+$!**^^A8&@^8^00@%!0&B8%B}#A*|^#, RESET_NLS=N, HTTP_USER_AGENT=Mozilla/4.76, PROCESS=Process, OPEN_MAIL_DIRECT=WFMAIL:OPEN_MAIL_DIRECT, PROCESSOR_LOOP_SLEEP=5, MESSAGE_FORMATTER=oracle.apps.fnd.wf.mailer.NotificationFormatter, [email protected], FRAMEWORK_USER=0, CANCELED=WFMAIL:CANCELED, OUTBOUND_PROTOCOL=SMTP, DISCARD=Discard, ACCOUNT=spi\workflow, FROM=Workflow Mailer, PROCESSOR_DEFER_EVTDATA_READ=Y, WARNING=WFMAIL:WARNING, PROCESSOR_MAX_ERROR_COUNT=10, INBOUND_CONNECTION_TIMEOUT=120, HTMLAGENT=http://finappstest01kt.seattlepacificindustries.com:8001/pls/SPIUAT, INBOX=Inbox, OPEN_INVALID_MORE_INFO=WFMAIL:OPEN_INVALID_MORE_INFO, INBOUND_SERVER=10.0.4.44, OPEN_MORE_INFO=WFMAIL:OPEN_MORE_INFO, INLINE_ATTACHMENT=N, OPEN_INVALI
    Where do I need to look for a resolution?
    Thanks,
    Eugene

    Hi,
    Have a look at the following documents.
    Note: 463354.1 - How to troubleshoot 'Validation failed' errors when starting mailer
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=463354.1
    Note: 753845.1 - How to Perform a Meaningful SMTP Telnet Test to Troubleshoot Java Mailer Issues
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=753845.1
    Note: 257723.1 - Error SvcComponentContainer
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=257723.1
    Regards,
    Hussein

  • Error in workflow mailer configuration - Inbound Email Server

    Hi
    I have Windows 2000 SP4.
    I have installed Oracle Workflow 2.6.3 Standalone as below
    I have installed Oracle Database 10gR1 and Oracle Workflow Server 2.6.3 in same oracle home.
    I have installed Apache HTTP Server 9.0.4 and Workflow Middle Tier in the same oracle home.
    I have finished installation and configuration successfully.
    Now I want to configure mailer parameters.
    I have started Workflow Component Container and Workflow Management Container.
    When I try to enter paramters for mailer I get error in Inbound EMail Account Server Name.
    The error says: Unable to make a network connection.
    I do not want to configure Inbound Mail Server but I need to enter these parameters as they are mandatory.
    I set Inbound Thread Count = 0 so that configuration does not consider parameters for IMAP server.
    My mail server is SMTP server.
    Any idea how to overcome this error and continue with notification mailer configuration?
    Thanks

    You would need to modify all the parameters listed in this script. This script updates each of the mailer and agent listener parameter. You may edit the script to remove all API calls OTHER THAN those for "Workflow Notification Mailer".
    Then update ALL the parameters for "Workflow Notification Mailer" with appropriate values with Inbound Thread Count to 0 and Outbound Thread Count to 1. Inbound Server Name, Account, Inbox, Discard and Processed values can be ignored. Make sure Outbound Server Name is valid SMTP Server name.
    Values like From, HTML Agent should point appropriately as per your env.
    Hope this helps
    Vijay

  • My 10.8.3 update did not install properly citing an 'Unknown Error'. Now, my Mail and Mac App Store aren't working. What went wrong and how do i fix it ?

    My 10.8.3 update did not install properly citing an 'Unknown Error'. Now, my Mail and Mac App Store aren't working. What went wrong and how do i fix it ?

    I tried this and still have the same problems. If I open Address book or the Mac App Store I get the library rebuild popup and a hang. I created a fresh user and then things are better apart from the printing issue. Its clearly some 3rd party software issue but the crash logs are meningless to me. I used the excellent Etre check app from http://www.etresoft.com/etrecheck so I have a list of what is being loaded and can compare clean and crashed user info but as I cant work out which of the startup items, launch agents, launch daemons etc that  are causing the problem.
    I have eliminated Dropbox, Mac Keeper and Witness, and it isnt related to my exterrnal LED cinema dispay or my external thunderbolt drives, or any USB devices if thats any help to anyone else. Info from Etrecheck follows -
    Kernel Extensions:
              com.oxsemi.driver.OxsemiDeviceType00          Version: 1.28.7
              com.rogueamoeba.InstantOn          Version: 6.0.2
              com.rogueamoeba.InstantOnCore          Version: 6.0.2
              com.Cycling74.driver.Soundflower          Version: 1.5.3
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
                 [not loaded] com.adobe.fpsaud.plist
                 [not loaded] com.adobe.SwitchBoard.plist
                 [not loaded] com.bombich.ccc.plist
                 [not loaded] com.dymo.pnpd.plist
                 [not loaded] com.intego.BackupManagerPro.daemon.plist
                 [not loaded] com.micromat.TechToolProDaemon.plist
                 [not loaded] com.microsoft.office.licensing.helper.plist
                 [not loaded] com.orbicule.witnessd.plist
                 [not loaded] com.sierrawireless.SwitchTool.plist
                 [not loaded] com.stclairsoft.AppTamerAgent.plist
                 [not loaded] org.macosforge.xquartz.privileged_startx.plist
                 [not loaded]          pcloudd.plist
    Launch Agents:
                     [loaded] com.divx.dms.agent.plist
                     [loaded] com.divx.update.agent.plist
                     [loaded] com.epson.epw.agent.plist
                     [loaded] com.lacie.raidmonitor.daemon.plist
                     [loaded] com.lacie.safemanager.daemon.plist
                     [loaded] com.micromat.TechToolProAgent.plist
                     [loaded] com.orbicule.WitnessUserAgent.plist
                     [loaded] org.macosforge.xquartz.startx.plist
    User Launch Agents:
                 [not loaded]          .DS_Store
                     [loaded] com.adobe.AAM.Updater-1.0.plist
                     [loaded] com.adobe.ARM.202f4087f2bbde52e3ac2df389f53a4f123223c9cc56a8fd83a6f7ae.plist
                     [loaded] com.digitalrebellion.SoftwareUpdateAutoCheck.plist
                     [loaded] com.divx.agent.postinstall.plist
                     [loaded] com.google.keystone.agent.plist
                     [loaded] com.propaganda.dejavu.dvmonitor.plist
                     [loaded] com.valvesoftware.steamclean.plist
                     [loaded] com.zeobit.MacKeeper.Helper.plist
    User Login Items:
              iTunesHelper
              Synergy
              TomTomHOMERunner
              Dropbox
    3rd Party Preference Panes:
              Déjà Vu
              Flash Player
              Flip4Mac WMV
              GR-55
              Paragon NTFS for Mac ® OS X
              Perian
              Printopia
              TechTool Protection
              Witness

  • How to configure Workflow Notification Mailer for oracle alert in R12

    Hi all....,
    How to configure Workflow Notfication mailer for oracle Alert in R12. Please provide the complete steps.. Its urgent.. Plz help me..
    Regards ,
    Madhan

    Duplicate thread (please post only once)
    plz help me...!!!! Workflow Notification Mailer
    plz help me...!!!! Workflow Notification Mailer

  • How to enable workflow notification mailer and how can it help me?

    Hello
    I am on 12.0.6
    I want to know how to enablke workflow notification mailer and how it can help me?
    Do i need to seperately license it?
    is there any patch that i have to apply in order to use it
    Please advice and help me with my query

    Hi,
    I want to know how to enablke workflow notification mailer and how it can help me?See the documents referenced in this thread.
    Workflow Configuration and Troubleshoot
    Workflow Configuration and Troubleshoot
    Do i need to seperately license it?No.
    is there any patch that i have to apply in order to use itSee the thread referenced above.
    Regards,
    Hussein

  • How to fetch forgotten mails from the server

    Possibly due to aborted fetch cycles some mails are left on my GMX-POP account and will not be fetched when I poll my mails next time. This happens only since some weeks but since there three times. Possibly something changed either in the Apple Mail program or how the server behaves? Is there a way to fetch this lost mails?
    Obviously mails saves the time of the last poll. How can I reset this time to a date older the last unfetched mail to refetch all mails inclusive the lost ones? For sure then I will have duplicated mails. Is there a way to easily remove this duplicates without deleting it individually?
    Many thanks for your help,
    Werner

    Ernie,
    thanks for your suggestions. It seems my problem can't be solved in a smart way. To your question: My server space is limited ( 1 GB ), I use currently about 2/3 of it.
    I have access to the mails via the web interface and therefore I could forward the mails to my account but I would like to have all mails local on my Mac with the original time stamps and format. But that's not the case for forwarded mails. In addition for sure the problem is not solved, if I cure the current symptoms and I have no idea if it's caused by an update of my Mac or by the server.
    Werner

Maybe you are looking for