While composing emails, either a new email or replying to a received email, multiple partial versions of the same email appear in trash folder.  For a lengthy email, e.g. 2 pgs.  I may have as many as 100 partial versions of that email appear in trash.

The Mac has 2 profiles.  When composing an email in mail (gmail account), multiple versions of the same email appear in trash as you are composing the email.  Does not appear to be any specific attributes which trigger this.  When email is sent.  The entire email appears in sent folder, while you still have multiple versions in trash.  This same thing occurs if you create and save a draft email.
This only occurs on one of the two profiles.  Both profiles are administrators.  But this is the secondary profile.
We have compared all settings on the Mac for both profiles, gmail online, etc.
Anyone have any ideas?

Ick. So it can't just work sensibly? Sensible would be either autosave overwrites previously autosaved versions or all autosaved versions would be deleted when the message is finally sent. Allowing previous message versions to accumulate endlessly might be beneficial to someone, but does not seem like sensible default behavior.

Similar Messages

  • Why does Quicktime tell me it can't play certain videos created with my Phantom 2 v3 drone ? I fly it and switch back and forth from video to still pics and while I may have filmed four videos sometimes Quicktime tells me that one of them can't be pl

    Why does Quicktime tell me it can't play certain videos created with my Phantom 2 v3 drone ? I fly the drone and switch back and forth from video to still pics and while I may have filmed four videos , sometimes Quicktime tells me that one of them can't be played . Checking the info shows that each of the unplayed videos was saved in the same mp4 format as the playable ones yet some of my most important videos won't play . It's getting very frustrating .

    first; I use Perian, that helps even though it is no longer supported, (must have for avi files)
    the apple-cores at apple have gotten very sloppy -- quicktime is a bit finicky and flakey. 
      example,   occasionally (when copy file from quad's card to hard drive)  the avi will show up as a 'mov' file and qt plays it no problem and no conversion.
    but that is very occasionally,  most of the time qt won't convert the file,   -- iMovie won't open an avi without Perian installed  ,  I don't know how that effects qt.
    qt 7"pro" is no good either, (qt 10 does everything it does and for NOT the extra $35)  
    I have gone to VLC  and MPlayerX  for direct playback for drones and cameras.  

  • I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    The template is a document in itself, it is not applied to an existing document whether it is a Pages document or a Word document converted to a Pages document.
    You would need to either copy and paste content, using existing styles, or apply the styles to the converted Word document.
    You can Import the Styles from an existing document and those imported Styles can be used to override the current document's styles:
    Menu > Format > Import Styles
    The process is simplified if the styles use the same names, otherwise you will need to delete the style you don't want and replace it with the one that you do want when asked, then the substitution is pretty straightforward.
    Peter

  • An error occurred during local report processing.The definition of the report '' is invalid.The definition of this report is not valid or supported by this version of Reporting Services. he report definition may have been created with a later version of R

    Hi,
    I am trying to create rdlc file programmatically. Using Memory Table as dataset. Here is my code
    ' For each field in the resultset, add the name to an array listDim m_fields AsArrayList
      m_fields = NewArrayList()
      Dim i AsIntegerFor i = 0 To tbdataset.Tables(0).Columns.Count - 1
          m_fields.Add(tbdataset.Tables(0).Columns(i).ColumnName.ToString)
      Next i
      'Create Report 'http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition'http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition' Open a new RDL file stream for writingDim stream AsFileStream
      stream = File.OpenWrite("D:\MyTestReport2.rdlc")
      Dim writer AsNewXmlTextWriter(stream, Encoding.UTF8)
      ' Causes child elements to be indented
      writer.Formatting = Formatting.Indented
      ' Report element
      writer.WriteProcessingInstruction("xml", "version=""1.0"" encoding=""utf-8""")
      writer.WriteStartElement("Report")
      writer.WriteAttributeString("xmlns", Nothing, "http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition")
      writer.WriteAttributeString("xmlns:rd", "http://schemas.microsoft.com/SQLServer/reporting/reportdesigner")
      writer.WriteStartElement("ReportSections")
      writer.WriteStartElement("ReportSection")
      writer.WriteElementString("Width", "11in")
      writer.WriteStartElement("Body")
      writer.WriteElementString("Height", "5in")
      writer.WriteStartElement("ReportItems")
      writer.WriteStartElement("Tablix")
      writer.WriteAttributeString("Name", Nothing, "Tablix1")
      writer.WriteElementString("Top", ".5in")
      writer.WriteElementString("Left", ".5in")
      writer.WriteElementString("Height", ".5in")
      writer.WriteElementString("Width", (m_fields.Count * 1.5).ToString() + "in")
      writer.WriteStartElement("TablixBody")
      ' Tablix Columns
      writer.WriteStartElement("TablixColumns")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixColumn")
          writer.WriteElementString("Width", "1.5in")
          writer.WriteEndElement() ' TableColumnNext fieldName
      writer.WriteEndElement() ' TablixColumns' Header Row
      writer.WriteStartElement("TablixRows")
      writer.WriteStartElement("TablixRow")
      writer.WriteElementString("Height", ".25in")
      writer.WriteStartElement("TablixCells")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixCell")
          writer.WriteStartElement("CellContents")
          writer.WriteStartElement("Textbox")
          writer.WriteAttributeString("Name", Nothing, "Header" + fieldName)
          ' writer.WriteAttributeString("CanGrow",  True)' writer.WriteAttributeString("Keeptogether", True)
          writer.WriteStartElement("Paragraphs")
          writer.WriteStartElement("Paragraph")
          writer.WriteStartElement("TextRuns")
          writer.WriteStartElement("TextRun")
          writer.WriteElementString("Value", fieldName)
          writer.WriteStartElement("Style")
          writer.WriteElementString("TextDecoration", "Underline")
          writer.WriteElementString("PaddingTop", "0in")
          writer.WriteElementString("PaddingLeft", "0in")
          writer.WriteElementString("LineHeight", ".5in")
          ''writer.WriteElementString("Width", "1.5in")''writer.WriteElementString("Value", fieldName)
          writer.WriteEndElement() ' Style
          writer.WriteEndElement() ' TextRun
          writer.WriteEndElement() ' TextRuns
          writer.WriteEndElement() ' Paragraph
          writer.WriteEndElement() ' Paragraphs
          writer.WriteEndElement() ' TexBox
          writer.WriteEndElement() ' CellContents
          writer.WriteEndElement() ' TablixCellNext
      writer.WriteEndElement() ' TablixCells
      writer.WriteEndElement() ' TablixRow'writer.WriteEndElement() ' TablixRows          Do not close Rows tag here colse it after details'End of Headers'Details Rows'writer.WriteStartElement("TablixRows")         Since Rows tag in header is not closed not need to open fresh tag
      writer.WriteStartElement("TablixRow")
      writer.WriteElementString("Height", ".25in")
      writer.WriteStartElement("TablixCells")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixCell")
          writer.WriteStartElement("CellContents")
          writer.WriteStartElement("Textbox")
          writer.WriteAttributeString("Name", Nothing, fieldName)
          '  writer.WriteAttributeString("CanGrow", True)'  writer.WriteAttributeString("Keeptogether", True)
          writer.WriteStartElement("Paragraphs")
          writer.WriteStartElement("Paragraph")
          writer.WriteStartElement("TextRuns")
          writer.WriteStartElement("TextRun")
          'writer.WriteElementString("Value", fieldName)
          writer.WriteElementString("Value", "=Fields!" + fieldName + ".Value")
          writer.WriteStartElement("Style")
          writer.WriteElementString("TextDecoration", "Underline")
          writer.WriteElementString("PaddingTop", "0in")
          writer.WriteElementString("PaddingLeft", "0in")
          writer.WriteElementString("LineHeight", ".5in")
          ''writer.WriteElementString("Width", "1.5in")''writer.WriteElementString("Value", fieldName)
          writer.WriteEndElement() ' Style
          writer.WriteEndElement() ' TextRun
          writer.WriteEndElement() ' TextRuns
          writer.WriteEndElement() ' Paragraph
          writer.WriteEndElement() ' Paragraphs
          writer.WriteEndElement() ' TexBox
          writer.WriteEndElement() ' CellContents
          writer.WriteEndElement() ' TablixCellNext
      writer.WriteEndElement() ' TablixCells
      writer.WriteEndElement() ' TablixRow
      writer.WriteEndElement() ' TablixRows'End of Details Rows
      writer.WriteEndElement() ' TablixBody
      writer.WriteStartElement("TablixRowHierarchy")
      writer.WriteStartElement("TablixMembers")
      writer.WriteStartElement("TablixMember")
      ' Group
      writer.WriteElementString("KeepWithGroup", "After")
      writer.WriteEndElement() ' TablixMember' Detail Group
      writer.WriteStartElement("TablixMember")
      writer.WriteStartElement("Group")
      writer.WriteAttributeString("Name", Nothing, "Details")
      writer.WriteEndElement() ' Group
      writer.WriteEndElement() ' TablixMember
      writer.WriteEndElement() ' TablixMembers
      writer.WriteEndElement() ' TablixRowHierarchy
      writer.WriteStartElement("TablixColumnHierarchy")
      writer.WriteStartElement("TablixMembers")
      'writer.WriteStartElement("TablixMember")ForEach fieldName In m_fields
          writer.WriteStartElement("TablixMember")
          writer.WriteEndElement() ' TablixMemberNext' writer.WriteEndElement() ' TablixMember
      writer.WriteEndElement() ' TablixMembers
      writer.WriteEndElement() ' TablixColumnHierarchy
      writer.WriteElementString("DataSetName", "tbdataset")
      writer.WriteEndElement() ' Tablix
      writer.WriteEndElement() ' ReportItems
      writer.WriteEndElement() ' Body
      writer.WriteStartElement("Page")
      ' Page Header Element
      writer.WriteStartElement("PageHeader")
      writer.WriteElementString("Height", "1.40cm")
      writer.WriteStartElement("ReportItems")
      writer.WriteStartElement("Textbox")
      writer.WriteAttributeString("Name", Nothing, "Textbox1")
      writer.WriteStartElement("Paragraphs")
      writer.WriteStartElement("Paragraph")
      writer.WriteStartElement("TextRuns")
      writer.WriteStartElement("TextRun")
      writer.WriteElementString("Value", Nothing, "ABC CHS.")
      writer.WriteEndElement() ' TextRun
      writer.WriteEndElement() ' TextRuns
      writer.WriteEndElement() ' Paragraph
      writer.WriteEndElement() ' Paragraphs
      writer.WriteEndElement() ' TextBox
      writer.WriteEndElement() ' ReportItems
      writer.WriteEndElement() ' PageHeader
      writer.WriteEndElement() ' Page
      writer.WriteEndElement() ' ReportSection
      writer.WriteEndElement() ' ReportSections' DataSources
      writer.WriteStartElement("DataSources")
      writer.WriteStartElement("DataSource")
      writer.WriteAttributeString("Name", Nothing, "tbdata")
      writer.WriteStartElement("DataSourceReference")
      writer.WriteEndElement() ' DataSourceReference
      writer.WriteEndElement() ' DataSource
      writer.WriteEndElement() ' DataSources'DataSet
      writer.WriteStartElement("DataSets")
      writer.WriteStartElement("DataSet")
      writer.WriteAttributeString("Name", Nothing, "tbdataset")
      writer.WriteStartElement("Query")
      writer.WriteElementString("DataSourceName", Nothing, "tbdata")
      'writer.WriteElementString("CommandText", Nothing, "/* Local Query */")
      writer.WriteElementString("CommandText", Nothing, "TableDirect")
      writer.WriteEndElement() ' Query'Fields
      writer.WriteStartElement("Fields")
      ForEach fieldName In m_fields
          writer.WriteStartElement("Field")
          writer.WriteAttributeString("Name", Nothing, fieldName)
          writer.WriteElementString("DataField", fieldName)
          writer.WriteElementString("rd:TypeName", fieldName.GetType.ToString)
          writer.WriteEndElement() ' FieldNext
      writer.WriteEndElement() ' Fields' rd datasetinfo
      writer.WriteEndElement() ' DataSet
      writer.WriteEndElement() ' DataSets
      writer.WriteEndElement() ' Report' Flush the writer and close the stream
      writer.Flush()
      stream.Close()
      'Convert to StreamDim myByteArray AsByte() = System.Text.Encoding.UTF8.GetBytes("D:\MyTestReport2.rdlc")
      Dim ms AsNewMemoryStream(myByteArray)
      'Supply Stream to ReportViewer
      ReportViewer1.LocalReport.LoadReportDefinition(ms)
      ReportViewer1.LocalReport.Refresh()When I open rdlc in designer I get following error"Data at the root level is invalid."When I run the aspx I get following error
    An error occurred during local report processing.
    The definition of the report '' is invalid.
    The definition of this report is not valid or supported by this version of Reporting Services.
    The report definition may have been created with a later version of Reporting Services, or contain content that is not well-formed or not valid based on Reporting Services schemas.
    Details: Data at the root level is invalid. Line 1, position 1.
    Can anybody guide me?

    Hi Wendy Fu,
    Thanks for your feed back. I could see Microsoft.ReportViewer.ProcessingObjectModel.dll to add as reference to my project. Actually I can open generated rdlc in designer, at run time I get error. I could not make out where is the exact mistake out of three
    options flashed.
    The definition of this report is not valid or supported by this version of Reporting Services.
    The report definition may have been created with a later version of Reporting Services
    or contain content that is not well-formed or not valid based on Reporting Services schemas
    Details: Data at the root level is invalid
    My web config has following references
    <add assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
    <add assembly="Microsoft.ReportViewer.Common, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
    May be I have to change these versions to 9 or 10.
    First I will try adding Microsoft.ReportViewer.ProcessingObjectModel.dll .
    Once thanks for your reply.
    Races

  • HT1296 When I sync my iphone with Windows 7, the contact moves to my computer, but the contact is not complete. No phone numbers. What am I doing wrong? I have also tried sync-ing with Yahoo, and that doesn't work either.

    When I sync my iphone with Windows 7, the contact moves to my computer, but the contact is not complete. No phone numbers. What am I doing wrong? I have also tried sync-ing with Yahoo, and that doesn't work either.

    The music sync is one way - computer to iphone.  The only exception is itunes purchases.  File>Transfer Purchases
    It has always been very basic to always maintain a backup copy of your computer for just such an occasion.  Use your backup copy to move everything to your new computer.

  • Search in Mail yields multiple versions of the same email

    I wasn't able to find any other postings on this, but this has been bugging me for a while now . . . just not big enough of a deal to do anything about. Whenever I do a search in Mail, the results give me multiple versions of the same email, in different stages of completeness. Is there some setting that I have inadvertently turned on that keeps back ups of my draft emails every few seconds? Anyone else have this annoying problem?

    I too am having this problem. Doesn't seem to happen all the time though. No rhyme nor reason ? I am using an IMAP account if this helps ?
    Message was edited by: Visioneer

  • I cannot send or forward email but I do receive mail OK. All of the same settings work on my wife's IPhone and our Ipad. All are running on IOS 5.0.1. I get a message of your email has been put in your outbox because the receipent "%@" does not allow rela

    I cannot send or forward email but I do receive mail OK. All of the same settings work on my wife's IPhone and our Ipad. All are running on IOS 5.0.1. I get a message of your email has been put in your outbox because the receipent "%@" does not allow relaying.

    Try deleting the mail account and setting it back up again.

  • I want to have Mail list Received e-mails chronologically without attaching new e-mails received to older e-mails from the same recipient.  Is their a Preferences setting or a toggle to set this?

    I want to have Mail list Received e-mails chronologically without attaching new e-mails received to older e-mails from the same recipient/with the same title.  Is there a Preferences setting or a toggle to set this?

    View menu.
    Uncheck "Organize by Conversation."
    Regards,
    Barry
    BTW: Mail is part of the bundled "System software" and is discussed in the community for your version of OS X:
    Mac OS X v10.7 Lion
    The link will take you there.
    Edit: I see someone has requested a transfer, and this conversation is now in the correct space.
    Barry

  • While browsing in Releaselog, I can't open a new Tab from a link(Ctrl left button). It opens in the same Tab and has just started happening

    While browsing in Releaselog, I can't open a new Tab from a link(Ctrl left button). It opens in the same Tab and has just started happening this week. All other websites are ok.

    You're welcome

  • Got an email stating my Creative Cloud Membership ends tonight, yet I'm all paid up and the card I'm using to pay for it is good.  I have two very important projects going on and can't afford to have CC go down.  Please help!

    got an email stating my Creative Cloud Membership ends tonight, yet I'm all paid up and the card I'm using to pay for it is good.  I have two very important projects going on and can't afford to have CC go down.  Please help!

    You have 3 CC under same Adobe ID out of which one purchased on has expired, you are getting notification due to this.
    Creative Cloud Photography plan (one-year)
    Desktop Subscription
    Mar 30, 2015
    The other two are active, however it is advisable to have one CC under one Adobe ID.
    Regards
    Rajshree

  • How to delete the many versions of the same song?

    Help please, how do I delete old versions of a song? When I add to or tweak a piece, I first save it with a new name, like song 1, then song 2, etc. so that I have a copy of every change. This takes up space when I have 50 versions each of 10 songs. Now my hard drive is down to 7.4 and I was told to keep it in the double digits. I went to Logic,
    chose the song from the next column, then in the next column filled with versions of the same song, I selected one, like old version 1, hit delete and nothing happened. I held down the apple key too and hit delete. Nothing. HELP please. I have not used this before but my 1-1 has ended since Apple won't allow renewals anymore. Also. I have all versions saved on 2 external hard drives.
    D

    Hi,
    now first you'll need the right permissions for the folder where your songs are stored. I assume that you have the read/write permissions (or supervisor permissions).
    Let's assume your songs are named "songxversiony.logic". They will reside in a main folder named "songx" containing all the "songxversiony.logic" files, and there will be subfolders called "audio files" "bounces" "Fade files" "Project File Backups" "Sampler Instruments" (maybe) and "Undo Data" and maybe one or two others.
    1st: Usually, Logic stores your songs in /(your username)/music/Logic/... , so please open your finder and look if they are there.
    2nd: You can delete all unneeded "songxversiony.logic" files from the finder. This should be possible by hitting the delete button. Otherwise check your permissions.
    3rd: Now getting rid of the Song file (xy.logic) won't delete the really big Disk-Hogs, which are the Audio Files you used in earlier versions (but don't need them anymore). They still reside in the "Audio Files" subfolder.
    4th: Fire up Logic, load your Project. Tap the "B" key to open the Bin and there you'll have all the audio files that ever were used in your project. Now many of them aren't needed anymore. So *within the bin* hit Shift-U to select all unused Audio files (or in the menu: edit -> select all unused). Hit DEL to remove them from the bin.
    5th: Now these hogs are *still there* (what the...? ) To finally get rid of them, go to Logic's Menu bar: File -> Project -> clean up. You will be asked if you really want to delete the unused files, and yes, off they go to the trash.
    You may also look inside the bounces folder if there are old bounces you don't need anymore.
    Problem solved.
    Fox

  • Can I have two versions of the same original live in separate projects?

    I am not an Aperature or photography expert.
    I scanned in a ton of old family photos with multiple snaphots on a page and in a single file. Then I imported into Aperature, created new versions, one for each snapshot, then cropped each snapshot, so each snapshot is seperate in Aperature. (I could have learned Spanish with all the time that this took.)
    Then, I tried to organize the ton of photos into projects and it won't let multiple versions of the same original photo be in separate projects. I found a way to change the filenames through Batch Change, but that didn't fix the problem.
    I would like to organize the ton of files, but from what I can tell my only option would be to go back to the scanned files, make copies from Finder as needed, once for each snapshot, reimport into Aperature and recrop each individual snapshot.
    Oh my, I have kids and a job and a husband and I like to sleep at night. Is there any easier way to organize the photos?
    Thank you for your time.
    Carol

    Carol,
    William Lloyd said it all, but perhaps Kirby Krieger's User Tip will explain a bit more the different uses of albums and projects:
                       The Well-Trod Path: a Beginner's Guide to how Aperture's major parts inter-relate
    Then I imported into Aperature, created new versions, one for each snapshot, then cropped each snapshot, so each snapshot is seperate in Aperature.
    You want to find each snapshot separately in Aperture? Perhaps you could explain more, how you want to organize your photos. William pointed out albums to group versions of an image. You could also assign keywords to mark special occasions like birthdays, weddings, etc.  You could assign faces to find photos of persons by name. You can use the search field in the browser to search for photos by face, date, keyword, etc.  Aperture is really great for accessing images in many different ways. There must be a way to access the images in your Aperture library just like you want to.
    Then, I tried to organize the ton of photos into projects and it won't let multiple versions of the same original photo be in separate projects.
    That is, how Aperture works. All versions of an image need to be in the same project, because they are sharing the same imported original image file. Aperture tries to save your disk space, by by not creating image files for the edited versions. Versions are just a set of instructions how to produce the rendered image, when you want to edit it or to export it. Unless you are working with the version, it will live in limbo and it will not exist as an image file. So all versions are kept together in the same project with the original image file that is necessary to render them as an image.
    Léonie

  • Can I migrate multiple reports to a newer version at the same time?

    If I have an older version of Crystal Reports can I migrate them all to a newer version at the same time?  Is there some documentation that will provide instructions?  I dont' want to have to upgrade them one at a time.
    Thanks - Mike

    There is no utility that will do that for you. Not from SAP. Perhaps some 3rd party (google Ken Hamady), etc. Or, you could create an application in VS .NET or java to do it though.
    But depending on what you are migrating from and what you are migrating to, you may not need to do any updating at all...
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Hello there - I am sharing an iPhoto library across two accounts on the same computer - it works fine EXCEPT for Quicktime movies - they play on one account and claim I don't have the rights on the other - all permissions are on and ok?

    Hello there - I am sharing an iPhoto library across two accounts on the same computer - it works fine EXCEPT for Quicktime movies - they play on one account and claim I don't have the rights on the other - all permissions are on and ok?

    It should be in the Users/ Shared folder.
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Note the option to check and repair Library Permissions
    Regards
    TD

  • HT204053 can i have multiple iCloud accounts with the same Apple id

    Can i have multiple iCloud accounts with the same Apple id

    Welcome to the Apple Community.
    No, your ID is essentially your account. You can have email aliases and you can have multiple accounts, but I don't think that's what you are asking.

Maybe you are looking for

  • Can we retrieve Data of Single Dimension in multiplecolumns in Excel Add-in

    Hi All, I have strange requirement of having single dimension in two columns while retrieving data from essbase using Excel Add-In. Logically I feel it is not possible however we are looking if there is any possibilty of work arround for this require

  • Mixing Memory Speeds

    Apologies, wrong thread, please ignore. Message was edited by: Rhys Bethell

  • Performance issue in KM as a WebDAV client

    Hi all, I have configured KM as a WebDAV client.But there is a performance issue.Whenever i try accessing the folder,its been cached. Can some suggest how to avoid caching of data everytime. I am using a memory cache. thanx and regards, anuradha

  • NW Upgrade best practice

    Hi We will be upgrading our WAS 6.40 (and EP6) patch level from 17 to 21 and I want some advice as to which stage in the process would be ideal to upgrade NWDS from 17 to 21. By which stage, I would mean, at the end of the production upgrade, or when

  • Oracle equivalent for @@minuserid and @@maxuserid

    im migrating from sybase to oracle,.. and in some stored procedure this 2 global parameters are use: @@minuserid: min. user id @@maxuserid: maximum user id is there any equivalent in oracle 10g??