No copy in 'Sent' - is this a bug?

I recently stumbled onto something that looks like a bug. I would like someone else's opinion before I submit it to Apple.
I am using an iPhone 3G with my MobileMe account. On both my iMac and my iPhone, I chose to store 'Sent', 'Drafts' and 'Trash' folders on the server, so that the Mac and the iPhone are always synchronized.
Up until today everything worked as intended. When I sent a message from the iMac, it appeared in the 'Sent' folders on the Mac, on the iPhone and on MobileMe's web site. Similarly, when I deleted a message or saved a draft the same message appeared in all three platforms - Web, Mac and iPhone.
Recently, though, I found an exception.
I started replying to a message on my Mac, then I had to leave. I saved my reply as a draft. Later on I checked my iPhone. My draft reply was in the Drafts folder (as expected), so I finished writing and I sent it. To my surprise, it did not show up in the Sent folders on any platform (Web, Mac or iPhone). What's more, the original message did not have the symbol that means you replied (the small arrow curved to the left).
I was able to reproduce this behavior several times. I confirmed that the message is actually sent (the recipient gets it), but no trace is left.
Looks like a bug to me. Has anyone else seen it? Do you have an explanation for it?
- thanks -

Never mind - I figured it out.
I have two email accounts on the iPhone. I was sending out messages from the other account, not from MobileMe. Problem solved.

Similar Messages

  • Is this a bug?: copied movie clip has wrong frame rate and ruins the main movie's sync

    Hello,
    I am trying to copy a movieclip with a frame rate of 30 frames per second to a movie that has a frame rate of 30 frames per second. Both movies are actionscript 3 movies. When I do this, my copied movie clip's frame rate reverts to 12 frames per second and all my audio synched animation is trashed. Then when I change it back manually to 30 frames per second it makes my main movie's stage animation go crazy at full possible speed and the audio is all out of sync. I have not set export for sharing or action script on this movie clip. I've tried other movie clips that are 30 frames per second and it is all crazy!
    Is this a bug? What can I do? I've got 100s of movie clips I need to make. I can't keep remaking them just because flash has a screw loose. I'll go crazy!
    -theGibler

    Oh sorry I goofed! My main time line is 12 fps! I can't belive I didn't see this before.

  • Is this a bug of Outlook 2007 about images displaying in signature?

    I've done many tests and researched on website or MS KB. But still got no solution.
    My issue is:
    I make a signature with images linking from website which can be easily accessed.
    I setup this signature in Outlook 2007, when I compose a new mail, and choose the signature I set. It won't show the images with a high percentage rate, meanwhile, I try to get into "Signature"-"Signature...", 
    Outlook2007 gets stuck, then you can not close Outlook or open Internet Explorer unless you kill the process of OUTLOOK.exe.
    1. Test are done under a clean XP system and Office 2007 standard fresh installed. Also there are some other staffs who help me test the signature that report the same issue on Office 2007.
    2. Images are rendered in 96dpi. They are all in very small size stored on website, can be easily accessed without network connctivity problem.
    3. The signature is made by simple HTML language not by Outlook signature setup wizard. but in this case,  you can ignore which method I use to create the signature. The images in signature can be displayed well in Outlook 2003 &
    2010. Also I have tried insert images using "link to file" in Outlook signature setup wizard, got same issue.
    4. Don't suggest me to store the images locally. These images should be updated after a period. You can not ask the company staffs to update these images manually by themselves. and even if the images are stored locally, the images won't be shown
    in Outlook 2007 with a high percentage rate.
    5. I've tried setup signature with or without an account profile, got same issue.
    6. I 've tried without an accout profile, just copy the signature file to Outlook signature folder, unplug the network cable, and "new mail" then load the signature, of course, the images won't be shown because network connection doesn't exist,
    and then when I try to get into "Signature"-"Signature...",  the Outlook interface also gets stuck. So I think Outlook 2007 may have some problem on detecting the network connectivity.
    7. It is not possible to upgrate the version of Office. Since Office 2007 isn't out of date and is powerful enough for us, no one want to pay more money just to avoid this issue.
    I don't know why I cannot upload a screenshot for troubleshooting. If needed. I can send a mail with screenshot attached.
    So far to now, I still get no solution, I think this is a bug of Outlook 2007, because the same signature, there is no problem on Outlook 2003 & 2010. Hope someone of MS staff can see this article and report to technical support center.
    I would appriciate anyone's kindly help but please consider that you understand what I am talking about. I don't want to waste time for each of us.
    thanks in advanced.

    What kind of problem about the display image in signature?
    How do you add the image into the message body when you send the message?
    Does it show correct through Web-based access?
    Outlook 2007 doesn't support some of Style Element, you may reference the link as below:
    http://www.campaignmonitor.com/css/
    Thanks.
    Tony Chen
    TechNet Community Support
    Thanks for your reply,  I know that some Style Elements won't be supported in Outlook, but this is not the reason.
    Please refer to my post previously, I post it but get no response.
    http://social.technet.microsoft.com/Forums/office/en-US/481170b1-f23f-4d46-9914-823326491846/is-this-a-bug-of-outlook-2007-about-images-displaying-in-signature?forum=outlook

  • Is this a bug or a simple Newbie mistake?

    Hi.
    I'm brand new to JavaFX, so I'm probably misunderstanding something. I've searched the web looking for information concerning it, but since it involves the 'new' operator, it's hard to filter down.
    Anyhow, here is the problem:
    I'm getting different results when I instantiate an object
    using the 'new' operator vs. the declaring it the more
    accepted JavaFX way.
    This is how I found the "problem".
    In order to learn how to program in JavaFX, I found a simple game from the Internet, "Blasteroids", to look at (http://www.remwebdevelopment.com/dev/a41/Programming-Games-in-JavaFX-Part-1.html). I copied and pasted this into:
    NetBeans IDE 6.9 (Build 201006101454)
    JavaFX 1.3 and got the game to work.
    In playing around with it, I converted instantiating an object from the "normal" way:
        var a: Asteroid = Asteroid
            type: type
            posX: x
            posY: y
            moveAngle: moveAngle
            velocityX: Math.sin(Math.toRadians(moveAngle))
                * randomVelocity
            velocityY: -Math.cos(Math.toRadians(moveAngle))
                * randomVelocity
            rotation_increment: rotation_increment
            active: true;
            return a;To using the "new" operator:
            var a:Asteroid = new Asteroid();
            a.type = type;
            a.posX = x;
            a.posY = y;
            a.moveAngle = moveAngle;
            a.velocityX = Math.sin(Math.toRadians(moveAngle)) * randomVelocity;
            a.velocityY = -Math.cos(Math.toRadians(moveAngle))* randomVelocity;
            a.rotation_increment = rotation_increment;
            a.active = true;
            return a;This is the only changes I made. I would "toggle" back and forth between the two, and I would always get the same results.
    When I did this conversion, the ship would show up, but the asteroids were gone. Actually, I think they were invisible because every once and a while, my ship would "blow up" and get reset to it's starting position. I tried adding:
    a.visible = true;
    But that didn't help.
    Indecently, I did the same thing with defining the "Stage" using a new operator, and got differing results:
    1. the window would open in the bottom right of my screen (vs filling up
    most of my screen. I would have to drag it up to play.
    2. it had a regular windows border with the minimize, maximize, close
    buttons in the top right (vs. a non-movable, border less window with no
    maximize, minimize, close buttons.)
    Is this a bug, or am I doing something wrong?
    Thank you

    I suspect you've run into bugs in the Blasteroids program and possibly in Stage in the JavaFX runtime.
    For simple cases one would think there should be no difference between this:
    var so = SomeObject {
        a: 1
        b: 2
        c: 3
    }and this:
    var so = SomeObject { }; // or var so = new SomeObject();
    so.a = 1;
    so.b = 2;
    so.c = 3;However, these cases do run through different code paths. In the first case, the init-block of SomeObject sees all the values provided by the caller. In the second case, the triggers on the a, b, and c variables would have to modify the internal state of the object appropriately. If the object has a lot of complex state, the result at the end of setting the three variables (and running their triggers) might not be identical to the object literal after initialization. This is most likely a bug. If an object isn't prepared to have its state variables modified after initialization, it should make them public-init instead of public.
    Depending on the object, though, initializing things via an object literal vs. setting variables after initialization might actually have different semantics. This seems to be the case with Stage. The Stage's size is established by its contents at initialization time, and its location at initialization time is determined by using its contents' size and the screen size to center the Stage on the screen. If you create the Stage empty, and then later add contents, the sizing/centering calculations will be based on an empty Stage and will thus give a different result.
    Using the object literal technique is idiomatic JavaFX Script, and it's probably more efficient than setting variables after initialization, so I'd recommend sticking with object literals.

  • Mail does not create new emails based on the highlighted mailbox, but rather the receiving mailbox of whatever individual email happens to be highlighted. This was not the case prior to Lion. Is this a bug or an error on my part?

    Mail does not create new emails based on the highlighted mailbox, but rather according the receiving mailbox of whatever individual email happens to be highlighted. This was not the case prior to Lion. Is this a bug or an error on my part? (I do have the setting for creating new emails from the highlighted mailbox checked.)

    The questions about time was not only because of thinking about the Time Machine, but also possible impact on recognizing which messages remaining on a POP server (doesn't apply to IMAP) have been already downloaded. In the Mail folder, at its root level, in Mail 3.x there is a file named MessageUidsAlreadyDownloaded3 that should prevent duplicate downloading -- some servers may not communicate the best with respect to that, and the universal index must certainly be involved in updating that index file. If it corrupts, it can inhibit proper downloading. However, setting the account up in a New User Account and having the same problem does not point that way, unless your POP3 server is very different from most.
    That universal index is also typically involved when messages are meant to be moved from the Inbox to another mailbox -- in Mail 3.x the message does not move, but rather is copied, and then erased from the origin mailbox. That requires updating the Envelope Index to keep track of where the message is, and should keep track of where it is supposed to have been removed after the "Move".
    Ernie

  • Is this a bug in the xy-Graph?

    Hi Forum,
    I came across this problem while working on this (http://forums.ni.com/ni/board/message?board.id=170&message.id=478607#M478607) thread.
    I add values from 0 to 1 to a XY-graph as in the picture below. (And only this way!)
    When the user presses print a reference of the graph is handled to a sub vi.
    In this SubVI there is another XY-Graph.
    Now I copy all important properties of the MainVI-XY-Graph to the SubVI-XY-Graph.
    This happens inside another SubVI, but this does not matter. The copy process could also happen inside the first subVI. Just a space saver.
    Then the Image of the SubVI-XY-Graph is printed via a method node.
    What I found is :
    Run the MainVI (SubVI MUST NOT BE OPENED)
    Change the scaling of the x-Axis (eg from scale the x-axis from 0.0 to 0.1)
    Press Print
    The file c:\pic.bmp will contain the graph, but the scaling will be from 0 to 1 not from 0.0 to 0.1 !!!!
    If you run with the subVI showing itself, this will not happen. 
    And if you define the xy-Graph contents like this:the error does not occur.
    For those who followed me until here:
    Is this only in my mind or IS THIS A BUG ??????????????????
    Thanks for reading
    Christian
    Solved!
    Go to Solution.
    Attachments:
    MainVI.vi ‏70 KB
    subVI.vi ‏81 KB
    Copy_all_important_Properties.vi ‏22 KB

    Properties applied to hidden objects (or objects on screens that are not open) are generally "noops" for performance reasons. If you think i have mis-read your description please post back.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How do i leave a copy off sent emails on the server with mac mail

    How do i leave a copy off sent emails on the server with mac mail.
    Pop account

    Check your mail preferences. The example below is from the mail app that comes with mac. In my case I'm using yahoo mail which is a POP3 account. POP stands for post office protocol which is the set of rules used by a POP mail account to transfer mail. You can learn more about it here if interested. If the box below is checked, all the mail will be downloaded to your computer when you check your mail using the built in mail app and removed from the mail server. Here is another page to help you set up your hotmail account for use the the mac mail application. Hope this clears things up.

  • Copy of sent messages?

    Is it possible to set up Mail to keep a second copy of a sent message, other than the one in the "Sent" folder? Specifically, I'd like to have a second copy placed into a separate folder. There are other family members who use Mail and who inadvertently delete some of my sent messages when deleting their own, before I've had a chance to go into the Sent folder and manually move the ones I want to keep.
    While I know Mail rules don't apply to outgoing mail, I was hoping maybe there was another way to tell it keep a secondary copy of sent messages.
    If not, is there anyway to retrieve sent messages if they have been deleted (and also deleted from the Trash folder), other than software like FileSalvage?
    Thanks
    Michael
    iMac PowerPC   Mac OS X (10.4.8)   iMac 400MHz slot-loading 120GB

    Thanks for the input....I don't think that's the right solution for me at this point, but I appreciate the advice.
    How about creating a separate computer login/user
    account for each family member that uses your
    computer so no one else accesses your messages or
    email accounts or other any data stored in your Home
    folder/directory?
    Besides a Smart Mailbox (which is not an actual
    mailbox), there is no way that I'm aware of to keep a
    2nd copy of sent messages in a separate mailbox and
    even if possible, what will prevent other family
    members from deleting messages from this 2nd mailbox
    also?
    Separate computer login accounts without admin
    privileges and disabling automatic login is your
    answer.

  • Suddenly cannot place image or resize file without losing resolution quality. Is this a bug?

    I have CS3 and have been using Photoshop for several years. Today I randomly encountered a problem I have never had before.
    I created a new file, 468 x 60 pixels with a resolution of 200. I then placed a file of a 4.95MB photo in this file. The size of the photo is quite large (resolution also 200)  and I should have had to resize it way down to fit in small 468 x 60 space I had.
    Instead, it placed the photo as a much smaller image, almost like a thumbnail of the original. When I went to resize the photo to make it larger, the resolution was terrible.
    So then I went to the original file of the photo, copied it, went back to the 468 x 60 file and pasted it. It pasted it as the true size, but when I decreased the size, the resolution went bad. How does that even make sense?
    So then I went back to the original file of the photo again and resized it down from there. The resolution went downhill again!
    I have tried this with multiple other photos and file sizes and dimensions. I cannot place any large photo file and keep its accurate dimensions/resolutions. I also cannot resize any photo down without losing pixel quality.
    The only thing weird that showed up right at the beginning of this whole process was that the pixel aspect ratio window kept popping up even before I'd open a file (it has been set to square).
    I have reset all PS preferences through ctrl-alt-shift. I have gone through the Adobe update process. I have done disk clean-up and cleared off nearly 10GB of room on my hard drive. I have restarted over and over. I have also tried this process in Illustrator and had no problems.
    Is this a bug? A memory problem? Never have I run into this issue before and I feel like I'm going crazy!

    You could make the top layer active and then Cmd-Shift-Option-E
    (stamp visible).
    Do the trim and crop and then delete the top layer afterwords.
    MTSTUNER

  • Over-riding automatic save/copy of "sent" e-mail ??

    Is there any way to over-ride (for a single message) the automatic save/copy of "sent" e-mail ?? ie there are occasions when I DON'T want to keep a copy.....

    As far as I'm aware, you can choose to either save a copy or not.
    This is set up in your Account Settings> copies & folders for the mail account.
    I'm not aware of any method that lets you preselect to not save a particular email. Other than changing the Account Settings prior to creating the email and then resetting them again after sending.
    The only option would be to save all as auto and delete what you do not want.

  • Help with Rules to Copy all Sent and Received Mail

    Friends:
    1. I have created a rule to copy all sent mail to a folder as follows:
    mail>prefs>rules>add rule>description:All Sent Mail>To Contains @>Coppy Message to All Sent Mail folder
    Is there a better way to do this?
    2. Similarly I tried the above for a folder "All Received Mail" replacing "To" to "From" but it doesn't work. What is a good way to copy all sent mail?
    Thanks amigos,
    Migs

    I have been using
    If Any Account is <Account in question> then Copy message to <local archive folder>
    It has its quirks (I have it as the last rule in the list) but for the most part is sort of working to make copies of incoming mails.
    It does not copy outgoing mails.
    It would be nice if Mail offered some sort of "copy on send, copy on receive" functionality in the preferences for those of us who don't trust the "cloud" to not reach into our computers and delete our mail (as happened when our IMAP server ran out of disk space once).

  • Hai team,  I found problem on iPhone 4S IOS 6.1.2 , whether this is bug?? Or normal?? I see "time since last full charge" can't showing time. Sory if my english very bad.

    Hai team,
    I found problem on iPhone 4S IOS 6.1.2 , whether this is bug?? Or normal?? I see my iPhone in setting->general->usage "time since last full charge"!!! Can't showing time.
    Sory if my english very bad
    Sent from iPhone

    A good read. Have you done anything at all to resolve your problem. Reset? Restore?
    By the way - "your products"... nobody here produced the iPhone, we are all just users. Apple is not here.

  • Multiple Mail Forwards not marked-is this a bug?

    This week I noticed, almost by mistake, that users can combine multiple inbox messages into one forward. That's a handy, Good Thing.
    For instance, if I have two replies to a question I sent to someone, and I want to forward both to someone else, I highlight both replies in the message list pane, click forward, and a new message window comes up with both messages quoted in the new message. Still, good.
    But after sending, the curvy arrow forwarded mail icon does not appear next to the two messages, as it would if I forwarded them in two separate emails. Not good.
    Is this a bug? is there a way to make the combined forwards reflect that they've been forwarded?
    Thanks!
    dave

    It does not look like timezone issue because of '-u' option for 'date'.
    From "man date" (GNU coreutils 8.5 February 2011):
    %W     week number of year, with Monday as first day of week (00..53)
    However I get:
    date -u +%W
    00
    Good that
    info coreutils 'date invocation'
    has valuable addition:
    Days in a new year preceding the first Monday are  in week zero.
    So, it registration does not calculate correct week number. They probably do not use posted expression, or their tool uses is of different version. Probably this issue happens only at the beginning of new year before first Monday.
    Still this could be a hidden quiz for new users...

  • Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Same problem here (no graphics in header or footer) and the problem has been reported months ago. It is another bug/feature lost when Apple moves from 09 to the iCloud-compatible versions.  Complain to Apple, you may have better chance than me and they may finally listen to their users....

  • "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    lots of people seem to be havgin a problem sending email from iCloud webmail.
    does your email address have uppercase characters in it?
    if so, try creating an alias in lowercase (go to preferences in iCloud webmail and select 'accounts') and see if email sends okay from that

Maybe you are looking for

  • !Question about EventReaderToWriter

    I am trying to store the content from a query result result to a document, I do like this: // write the start document and root element xWriter.writeStartDocument(NULL, NULL, NULL); // no XML decl xWriter.writeStartElement((const unsigned char *)"_ro

  • Safari fails to start and crashes

    Today I tried to open a link from an Apple ap-store email and Safari failed to open and reported a crash error message, It worked great yesterday? I searched through the forums and tried a few of the listed fixes but nothing has worked for me. So far

  • Error in deploying, EAR file does not contain SAP_MANIFEST.MF

    I just upgraded to SAP Netweaver Developer Studio 7.1 from 7.0, and the process of creating and deploying an EJB archive seems to be quite different. Here are the steps I am following: (1) I create and build an EJB Project called foo. (2) Export the

  • Can't set alarm, type of alarm isn't even visible

    My alarms worked a month ago and now I can't even set one because the pulldown menu is grayed out. And the option to select what type of alarm I want isn't showing up at all. I just downloaded and reinstalled 1.5.5 but no help. Any ideas? Sherry

  • Compression through process chain

    Hi Gurus, I have 76 cubes in my producation system. I want compress all cubes through process chain in every weekend. adding all cubes in one process chain... pls suggest me , thanks,alex