How to get replying to have same previous headers as forwarding?

I'm trying to figure out how to have my reply's send the same headers from the previous mail as the forwarding function does (and how replying from other mail clients do)
Reply/ReplyAll gives this:
On [DATE], at [Time], [PreviousSender] wrote:
|
| [msg]
whereas (much preferred) forwarding gives this:
| From: [PreviousSender]
| Date: [Date] [Time]
| To: [PreviousRecipient(s)]
| Cc: [PreviousCopied...]
| Subject: [Subject]
|
| [Msg]
I'd like the reply to give that same header to the last mail in the thread, is it possible?

I feel like it has to be possible...
http://discussions.apple.com/thread.jspa?messageID=8928988
I see there is an bundle to do so, but since i'm probably upgrading to snow leopard this week - that doesn't seem like an optimal solution.

Similar Messages

  • Could somebody please tell me how to get audiobooks to have their positions remembered?

    could somebody please tell me how to get audiobooks to have their positions remembered?
    please.

    Hey john cummin1,
    Thanks for the question. The following article outlines audiobooks playback on iPod shuffle:
    iPod shuffle: Playing audiobooks and podcasts
    http://support.apple.com/kb/ht1831
    Bookmarks
    iPod shuffle allows you to bookmark audiobooks purchased from Audible.com (files with a .aa extension) and the iTunes Store (files with a .M4B extension). If you stop or pause one of these spoken word files, iPod shuffle will automatically bookmark that spot. The next time you play that file, it will start playing from the bookmarked spot.
    Bookmarks sync to and from iTunes, meaning you can listen to an audiobook on iPod shuffle or in iTunes from where you last stopped listening. The bookmarked spot that is further along, whether in iPod shuffle or iTunes, becomes the effective bookmark.
    To force iTunes to set the bookmark, play an audiobook in iTunes, play another song in iTunes, and then update iPod shuffle.
    Bookmarks are not available for audiobooks or spoken word files in any other file format (such as MP3) than the two formats mentioned.
    Chapter Marks
    Some audiobooks feature chapter marks that allow you to navigate through chapters while listening in iTunes. iPod shuffle (3rd generation) allows you to navigate through an audiobook using these chapter marks.  Simply select the playlist that iPod shuffle creates for the specific audiobook you'd like to listen to and while listening, double-click the Center button to go to the next chapter or triple-click the Center button (within 6 seconds of the start of the chapter) to go to the previous chapter. See HT3458 for additional controls using the remote. iPod shuffle (1st and 2nd generation) does not support chapter marks.
    Note: Chapter marks will be ignored if the audiobook playing is in a mixed playlist that you created (such as one that contains other songs or podcasts).
    Thanks,
    Matt M.

  • White line appears on jpeg export in indesign CS6? How to get rid of the same?

    White line appears on jpeg export in indesign CS6? How to get rid of the same?

    Please find attached actual jpeg and the screen shot of settings at which the jpeg is exported.

  • Column Link - how to get back to the same row on previous form

    Using Apex 3.2.1
    I've created a column link on an updateable report which opens up another page for data entry. This is working fine but when you return to the originating page, is there a way to get back to the same row you were on before linking.
    The user enters a number in the AMOUNT field. A validation trigger says they need to enter an EXPLANATION. They link to the EXPLANATION page. But when they return to the first page, they don't know which row they were on AND the value they originally entered in AMOUNT is back to the database value. So is there a way to preserve the AMOUNT value and rowid from the originating page?
    Hope this makes sense and appreciate any and all help!
    Sandie

    Hi Sandie,
    I may not be understanding the requirements completely, but one thing that strikes me off the bat is it sounds like what you need isn't really a "validation" per se. The data the user is entering may be perfectly valid, it's just that in certain circumstances additional information is required. I only mention this because an ApEx validation by definition shouldn't allow changes to be made to the database - but in your case it sounds like the information entered up to that point can be saved (as long as it satisfies actual data validation rules), but then additional information for certain rows is required.
    One thing you might consider is having the Explanation page pop-up in a new window. So user is on tabular form with current row visible - user clicks on explanation link which pops up a new page - user enters explanation and clicks "submit" - pop-up page disappears leaving user right where he/she was.
    Hope this helps,
    John
    If you find this information useful, please remember to mark the post "helpful" or "correct" so that others may benefit as well.

  • How to get a summ of all previous values

    Hello ALL,
    Could you please give an advice on how to find the sums of all previous values in 1 select without using dynamic sql. Cross join is not a variant because of a huge response time.
    OR may be there are any other ideas on how to find first rows with total sum equals to some general value? My idea is to find a sum of all preceding values and the first of such sums that would be equal to the general value or greater it is a necessary result.
    For example we have goods receipts:
    MATERIAL | BATCH | QTY
    material1 batch1 1
    material1 batch2 2
    material1 batch3 3
    material1 batch4 4
    material1 batch5 5
    material1 batch6 6
    and general qty is 7 - it's our current stock. So I should take material from [batch1 to batch4] to get necessary QTY >=7 (1+2+3+4=10>7) So our current stock consists of batch1,batch2,batch3 and remains of batch4.
    Thanks in advance!
    Edited by: user9321926 on Jun 18, 2010 3:56 AM

    Some thing like:
      1  select
      2     empno,
      3     sal,
      4     (select sum(sal) from emp b where  b.empno <= a.empno) running_total
      5* from (select * from emp order by empno) a
    SQL> /
         EMPNO        SAL RUNNING_TOTAL
          7369        800           800
          7499       1600          2400
          7521       1250          3650
          7566       2975          6625
          7654       1250          7875
          7698       2850         10725
          7782       2450         13175
          7788       3000         16175
          7839       5000         21175
          7844       1500         22675
          7876       1100         23775
         EMPNO        SAL RUNNING_TOTAL
          7900        950         24725
          7902       3000         27725
          7934       1300         29025
    14 rows selected.
    SQL>

  • UDF: how to get a value in the previous record when lopping over records?

    Hello
    I have this challenge:
    Source message:
    <row>
      <ID>111</ID>
      <Score>200</Score>
      <Date>2010-01-01</Date>
    </row>
    <row>
      <ID>111</ID>
      <Score>230</Score>
      <Date>2010-01-02</Date>
    </row>
    <row>
      <ID>112</ID>
      <Score>230</Score>
      <Date>2010-01-03</Date>
    </row>
    etc...
    Now the case is, that IF the value of ID of the current record (row) is equal to the value of the ID of the previous record AND the Score value of the current record is bigger than the Score value of the previous record THEN a record in the target message must be created with these values:
    Target Message:
    <row>
      <ID_target> value of source ID </ID_target>
      <Score_yesterday> Score value of previous record (day) </Score_yesterday>
      <Score_current_date> Score value of current record </Score_current_date>
      <Date_current> Date of current record  </Date_current>
    </row>
    I am thinking of using GlobalContainer to store the previous values but am note sure how to maintain these previous values. In addition, I am thinking about using a UDF on the target row record, which will just create the row, if conditions are met (result.addValue("");) and then just make a simple mapping of the ID_target, Score_current_date and Date_current fields and make an other UDF for the Score_yesterday field where I get the Score for the previous record using the GlobalContainer value, that I stored in the other UDF.
    BUT:
    Should I use "All values of context" or "All values of Queues" in the UDF used on the row record and how do I make sure, that the Score_yesterday global container value is maintained correctly? I am planning of setting it in the UDF used on the Target row record but will it then be in sync with the consuming UDF of the Score_yesterday field?
    Java code to go into the UDF would be very much appreciated
    Mikael

    int tmp1;
    int tmp2;
    int len = ID.length;
    for(int i =0;i< len;i++)
         if( i!= len-1)
             tmp1 = Integer.parseInt(Score<i>);
             tmp2 = Integer.parseInt(Score[i+1]);
                   if(tmp2 >tmp1)
                     if (TARGET[0].equals("ROW"))
                              result.addValue("");
                          else if (TARGET[0].equals("ID_TARGET"))
                              result.addValue(ID[0]);
                         else if (TARGET[0].equals("SCORE_YDAY"))
                              result.addValue(Score<i>);
                         else if (TARGET[0].equals("SCORE_CDAY"))
                             result.addValue(Score[i+1]);
                         else
                             result.addValue(DT[i+1]);
    I got the following results for the set of data that you provided.
    Target-XML
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_TestingTGT xmlns:ns0="http://monsanto.com/CIC">
       <Row>
          <ID_TARGET>571515198310502207</ID_TARGET>
          <SCORE_YDAY>1000</SCORE_YDAY>
          <SCORE_CDAY>1010</SCORE_CDAY>
          <CURRENT_DATE>2010-03-02 00:00</CURRENT_DATE>
       </Row>
       <Row>
          <ID_TARGET>571515198310502207</ID_TARGET>
          <SCORE_YDAY>1000</SCORE_YDAY>
          <SCORE_CDAY>1050</SCORE_CDAY>
          <CURRENT_DATE>2010-03-04 00:00</CURRENT_DATE>
       </Row>
       <Row>
          <ID_TARGET>571515198310502207</ID_TARGET>
          <SCORE_YDAY>1050</SCORE_YDAY>
          <SCORE_CDAY>1080</SCORE_CDAY>
          <CURRENT_DATE>2010-03-05 00:00</CURRENT_DATE>
       </Row>
       <Row>
          <ID_TARGET>571515198310502108</ID_TARGET>
          <SCORE_YDAY>2000</SCORE_YDAY>
          <SCORE_CDAY>2040</SCORE_CDAY>
          <CURRENT_DATE>2010-03-03 05:00</CURRENT_DATE>
       </Row>
       <Row>
          <ID_TARGET>571515198310502108</ID_TARGET>
          <SCORE_YDAY>2000</SCORE_YDAY>
          <SCORE_CDAY>2040</SCORE_CDAY>
          <CURRENT_DATE>2010-03-05 05:00</CURRENT_DATE>
       </Row>
       <Row>
          <ID_TARGET>571515198310302203</ID_TARGET>
          <SCORE_YDAY>3000</SCORE_YDAY>
          <SCORE_CDAY>3020</SCORE_CDAY>
          <CURRENT_DATE>2010-03-05 00:00</CURRENT_DATE>
       </Row>
    </ns0:MT_TestingTGT>

  • How to get Last Day of a Previous Month

    Hi all,
    I need to get Last Day of the Previous Month. I am able to get Current Month Last Day using Calendar.getActualMaximum(Calendar.DATE)
    But I need previous Month's Last Day.
    Thanks
    Vamshi.

    Thanks all....
    I have been trying the same and could get it.....
    here is the code for that....
    SimpleDateFormat simpleDate = new SimpleDateFormat("MM/dd/yyyy");
    Calendar calendar = Calendar.getInstance();
    month = calendar.get(Calendar.MONTH);
    //year = calendar.get(Calendar.YEAR);
    calendar.set(Calendar.MONTH, month-1);
    calendar.set(Calendar.DATE, calendar.getActualMaximum(Calendar.DATE));
    //lastDayOfMonth = calendar.getActualMaximum(Calendar.DATE);
    System.out.Println("Previous Month End Date is :: " + simpleDate.format(calendar.getTime()));
    this works....
    thanks for ur replys....

  • How to get object which is created previously?

    Hi ,
    My question is that how to get reference of the object which is created previously using reflection API.
    that means,
    suppose i created one instance of class : ABC
    Class classAbc = Class.forname("ABC"); //load the class ABC.
    Object abcClassObject =classAbc.newInstance(); // create an instance of classABC.
    now how do i retrieve that object which is referred by ref. variable abcClassObject?
    expecting a favourable reply,
    Thanks & regards ,
    Swapnil

    My question is that how to get reference of the object which is created previously using reflection API.
    Object abcClassObject =classAbc.newInstance(); // create an instance of classABC.
    now how do i retrieve that object which is referred by ref. variable abcClassObject?abcClassObject is already a reference to it. Just use it. Nothing further required.

  • How to get a value from the previous element (XSLT/XPATH gurus ahoy!)

    Hi All,
    I am building an RTF template for a "letter of reference"-report. Sometimes there are several rows in the data, that need to be printed as one. This is due to consecutive temporary contracts, which will be printed out as one period of service.
    Here's a simplified data example to illustrate the problem.
    <ROW>
    <START_DATE>01-01-1980</START_DATE>
    <END_DATE>01-01-1988</END_DATE>
    </ROW>
    <ROW>
    <START_DATE>01-01-1988</START_DATE>
    <END_DATE>01-01-1990</END_DATE>
    </ROW>
    <ROW>
    <START_DATE>01-01-2000</START_DATE>
    <END_DATE>01-01-2005</END_DATE>
    </ROW>
    With the data above, I should print two lines:
    01-01-1980 - 01-01-1990
    01-01-2000 - 01-01-2005
    I need to compare START_DATE of an element (except for the first one) with the END_DATE of the previous element, to find out whether to print the END_DATE for that element or not. How can I get that value from the previous element?
    Thanks & Regards, Matilda

    use this to get the following End_date
    <?following-sibling::../END_DATE?>
    Try this
    <?for-each:/ROOT/ROW?>
    ==================
    Current StartDate <?START_DATE?>
    Current End Date <?END_DATE?>
    Next Start Date <?following-sibling::ROW/END_DATE?>
    Previous End Date <?preceding-sibling::ROW[1]/END_DATE?>
    ================
    <?end for-each?>
    o/p
    ==================
    Current StartDate 01-01-1980
    Current End Date 01-01-1988
    Next Start Date 01-01-1990
    Previous End Date
    ================
    ==================
    Current StartDate 01-01-1988
    Current End Date 01-01-1990
    Next Start Date 01-01-2005
    Previous End Date 01-01-1988
    ================
    ==================
    Current StartDate 01-01-2000
    Current End Date 01-01-2005
    Next Start Date
    Previous End Date 01

  • How to get firefox to return to previous link and not reload it

    When viewing content from a page in a tab, clicking the back button causes the previous page to reload in stead of just returning to it. That makes it impossible (without opening the info in a new tab) to return to a page and click the next item you want to view because it is no longer there.
    Also, sometimes you get the message that the previous page is not available with a "try again" button.
    I just want the back button to return to the previous page and NOT reload it.
    I'm hoping there's an about:config setting that fixes this.
    Version 32.0.3
    TIA

    In order to change your Firefox Configuration please do the following steps :
    # In the [[Location bar autocomplete|Location bar]], type '''about:config''' and press '''Enter'''. The about:config "''This might void your warranty!''" warning page may appear.
    # Click '''I'll be careful, I promise!''' to continue to the about:config page.
    browser.cache.check_doc_frequency
    Set how often to check accuracy of cached documents
    * 0 : Once per session
    * 1 : Each time
    * 2 : Never
    * 3 : When appropriate/automatically

  • How to get videos I have taken from my computer to my TV by using Xfinity X1.

    I have managed to get photos from computer to TV, but can't find how to get my videos from my computer to my TV. I am using Xfinity X1 and am Triple Play customer. Thanks

    jimhuskey2 wrote:
    I have managed to get photos from computer to TV, but can't find how to get my videos from my computer to my TV. I am using Xfinity X1 and am Triple Play customer. Thanksthere is a feature to get video from your smartphone to the TV, the xFinity Share app. Possible to transfer to phone first?

  • How to get two fields with same tech name in LIS Extractors?

    Hi Experts,
    I need "ERDAT" field from two structures (QMSM & QMFE) in 2LIS_18_IOTASK extractor.
    In LBWE first I moved ERDAT from QMSM. When I moved ERDAT from QMFE it gives an error:
    "Field with same technical name is already available in the Extract Structure".
    I don't want to create Append Structure as we need to write User exit.
    Can any one tell me how to get this field added in the extractor from QMSM and QMFE?
    Thanks for your help.
    Regards,
    Sree

    this is not possible as the all those fields are put in one structure. per definition you can't put the same field name twice in a structure, table in the data dictionary...
    hence, you really need to use an append and fill via user exit
    M.

  • How to get replied date & time of an email

    I am using MS outlook 2010 from this month (August 2014), So i work on so many emails from different persons and I want to see time taken to on each email from the time I recieved it till the time I replied. Once I get a column with replied time details;
    I can export it to excel so as to report to my manager about my TaT (turn around time), I am new to this forum and this is my first post, please help thanks. (I have browsed here for the same but couldn't get what I need)

    Hi,
    Several suggestions to find the replied date & time:
    1. We can find related emails in Outlook, then find the replied date & time from the related emails:
    Right click on the message in the list, Select "Find Related" -> "Messages in This Conversation" from the menu that comes up.
    2. View tab -> Conversations -> check "Show as conversations", then we can easily find other emails in the conversation, then find the replied date & time.
    Anyway, both methods above are manual and based on your request description, I don't think the whole process can be performed with the build-in feature automatically. However, the whole process may be realized via VBA, if you can accept a VBA method, I suggest
    you post the detailed request in Outlook for Developers forum:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=outlookdev
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How to get songs that are in "previous iTunes Libraries" folders ??

    I am unable to play scores and scores of songs that were on my iTunes 4.9 playlists now that I have "upgraded" to 7.0 I have a strange icon to the left of the song on my song list and when I go to play the song I get a message that the song cannot be located. The following notes come from iTunes help (see below) and I am wondering if anyone else has lost music and if so.....are they really lost or just misplaced? I would hate to think Apple would insist on an upgrade to buy more iTunes if they are going to scrub away hundreds of your other songs.
    HELP PLEASE
    Note: The library file name for versions of iTunes prior to 4.9 was "iTunes 4 Music Library" for Mac OS X and "iTunes 4 Music Library.itl" for Windows. After upgrading to iTunes 4.9 or later, the older library files are moved to a "Previous iTunes Libraries" folder.

    If the strange icon you refer to is an exclamation point, the problem is that the song files are not in the location the iTunes Library files are saying they are.
    Note that the iTunes Library files do not contain the actual song files but rather a list of references that point iTunes to where the songs are (or rather should be) located.
    So the first thing I'd do is find out just where the files are on your computer. Have a look at this article in the Apple Knowledge Base for some ideas on how to do so.
    Post back and let us know if you're able to find the song files.

  • How to get pictures organised the same way on the iPad as they are on the PC?

    When syncing pictures from my PC to my iPad the same albums are shown on my iPad as on my PC, but the pictures seems to be organised in random order within the albums, i.e. they are not organised the same way as on my PC. I've named all pictures on my PC and organised them based on name. Does anyone know how I can get iTunes/the iPad to sync the pictures in the same order?
    Best regards,
    Cecilie

    Are you syncing the photos by selecting folders or by selecting a photo app that you have on your computer ? If you are syncing folders then they will be sorted by their 'date modified' fields (I assume that still applies on iOS 8), not by their filenames - so you will need to amend their 'modified' fields to be in the order that you want them to show in.
    Or there are third-party photo management apps such as Photo Manager Pro (help pages) - you can copy photos to/from that app and your computer, and you can change the sort order of albums within the app.

Maybe you are looking for

  • LiveCycle Data Services ES Express - Broken Link

    Hi All, I am trying to download the above from the Adobe site but the link appears to be broken. I am using URL = http://www.adobe.com/cfusion/tdrc/index.cfm?product=livecycle%5Fdataservices I created an Adobe account in order to download the "Window

  • How can I run Google Analytics on my site being hosted in Business Catalyst?

    Hi, I already have an existing website which is hosted, and of course I am the domain owner. I have created a new modified site in Adobe Muse CC and will wish to upload this new site to my domain once completed. I will need to run Google Webmaster to

  • Really Transparent Windows...

    I saw lots of examples to fake a transparent window, thats fine for me... but what i couldn?t find out is if there is any way to make the "transparent" parts NOT clickable... when the user clicks the transparent part of the frame it passes this event

  • Regarding Validation on Charactersticites of given Configurable Material.

    Hi All,            I am working on BDC in whcih I am getting the charactersticites of the configurable materials in Flat File. Now the Problem I am facing is that when a particular characterstic is not associated with that configurable material the p

  • How is NETVAL_FLT calculated in CUHD/CUIT?

    Hello, I have been trying to figure out why NETVAL_FLT has a value sometimes but mostly not.  I cannot seem to find where it can be calculated. Does anyone know this? Regards, Dean.