Mail attachment image caching problem

Using C7-00 and Mail for Exchange with up to date software. I received two Mobile Boarding Pass emails from Lufthansa for my flights. These emails contain barcode.gif as an attachment that one can show at the gate when boarding. Now the two emails contain attachment with same name (barcode.gif) and the images are equal in size too. The problem is that for the second mail the phone shows the attachment of the first email!
I have read that Symbian^3 has for performance reasons aggressive image caching feature. But in this case this causes a real nasty bug!
 - Juha

I have found a solution.
In the IMG src tag we had been using /images/gfx/image.gif
By changing this to /./images/gfx/image.gif the images are no longer cached and update immediately when changed.
PQ

Similar Messages

  • Mail attachment image caching problem with C7

    Using C7-00 and Mail for Exchange with up to date software. I received two Mobile Boarding Pass emails from Lufthansa for my flights. These emails contain barcode.gif as an attachment that one can show at the gate when boarding. Now the two emails contain attachment with same name (barcode.gif) and the images are equal in size too. The problem is that for the second mail the phone shows the attachment of the first email!
    I have read that Symbian^3 has for performance reasons aggressive image caching feature. But in this case this causes a real nasty bug!
     - Juha

    I have found a solution.
    In the IMG src tag we had been using /images/gfx/image.gif
    By changing this to /./images/gfx/image.gif the images are no longer cached and update immediately when changed.
    PQ

  • Can the email attachment image cache be disabled?

    I receive email with attached images from a security system with four cameras on a detected alarm event. No problems before update to ios 5. Now the first attachment image received becomes the default image for all camera emails. If I delete the first alarm email, power cycle phone, the next email attachment image becomes the default image. All images are time stamped jpg so no duplicate names to cache on. Because I use Imap, I can go to other computers and the images are correct on those machines. I have another different system that emails attachment jpg images that come through correctly. Only those images are slightly larger in size. 30k versus 19k for the problem emails.

    Same problem on ipad mail. Received 5 emails with each one different photo. Imap zimbra mail client shows each photo ok, ipad shows always the same photo. Cache problem ? Moved the files to different imap dirs, reboot ipad, played with options ... No workaround. How can we submi a bug report ?

  • 5.0.1 email image cache problems

    I have two different email accounts that I check on my iPhone 4 with the 5.0.1 update. One is a Google account. The other is a private account. I receive images from a remote security system at a warehouse I monitor when motion is triggered. The device sends 3 images to both accounts. When I open my email on my Mac laptop or desktop, I can see the current images just fine, but whenI view them on my iPhone, it sends what appears to be an old cached version of the image on both accounts. If I compare the emails on the computer, timestamps, image numbers, etc., it is obvious that my desktop and laptop are working correctly, but the iPhone email accounts are not displaying the images correctly. When I view on the iPhone with the new update, I get a reating old image no matter how many times the alarm is triggered. It is like the image was an old cache version from days ago set on a loop that it cannot get past. I experienced NO problems prior to the update. Any suggestions on how to clear the cache on iPhone email if there is such a thing?

    I did receive a response and they did elevate it to their top engineers within 3 days. Bottom line...they are blaming Apple and said Apple needs to fix it.  Here is the reply to my post when I submitted my problem to Q-See.
    Subject
    I have the QT-428 system. Recently, Apple Inc. did some updates to their iPhone (iOS 5) and Mac Mail programs. As a result, images sent from QT-428 camera's no longer display correctly in Mac Mail. Instead of 3 attachments, it displays a...
    Discussion Thread
    Response Via Email (Rod Carrigan)
    11/21/2011 10:34 AM
    The factory is aware of this issue.
    Apple made changes to the email filtering in iOS5 and they need to create a work around to the changes.
    Response Via Email (Gordon Waughan)
    11/18/2011 12:59 PM
    I am going to forward this Incident number 111118-000290 to our Engineering level for further explanation. They will need to review an will contact you within a business day.  Incident number 111117-000501
    I have the QT-428 system. Recently, Apple Inc. did some updates to their iPhone (iOS 5) and Mac Mail programs. As a result, images sent from QT-428 camera's no longer display correctly in Mac Mail. Instead of 3 attachments, it displays as 1 attachment with 3 individual images. However, the images are ALL exactly the same. There are no time lapsed images. If you view in other programs such as Gmail in a web browser, the images come across as 3 individual attachments. I have spent several hours on the phone with Apple Tech support and have elevated the issue to their engineers, however, they believe the problem MIGHT be an issue relating to the Meta Data in the emails. I wanted to make your organization aware of this as there is actually considerable discussions on Apple's web boards about the issue and only Q-See camera systems appear to be affected. Other users with different camera systems are not experiencing any problems. Thanks for your time.
    Question Reference #111118-000290
    Product Level 1:
    CCTV Security Digital Video Recorders
    Date Created:
    11/18/2011 12:59 PM
    Last Updated:
    11/21/2011 10:34 AM
    Status:
    Work in Progress
    Question Type:
    Customer Response flag:
    No
    Purchase Location:
    Costco
    Routing Field:

  • Image cache problem

    I´ve loaded the image in a movie, made some changes to
    it (masking) saved it in a temp folder in server via php and a
    button to load the result in a different frame within the same
    movie. The problem is that the image shown in the movie will
    allways be the one saved before, as it is saved in cache´s
    browser in both IE and Firefox. If I put the image directly in the
    server´s temp folder, via ftp, then the browser will show the
    latest image sucessfully.
    Any way to prevent browser to load cached image while playing
    the movie at runtime?
    Thanks in advance.

    Hi,
    I´ve tried to append a random number to the loadMovie
    (in fact in my case I have to use the loadClip function, but I
    don´t think this makes a difference), nevertheless it keeps
    loading the cached image in the browser, here is my code:
    stop();
    this.createEmptyMovieClip("Bezier2",this.getNextHighestDepth());
    //receive vars from first frame to create masking shape
    with (this.Bezier2) {
    lineStyle(0,999999,100);
    beginFill(0xFF0000);
    moveTo(posi1x,posi1y);
    lineTo(posi3x,posi3y,posi2x,posi2y);
    lineTo(posi2x,posi2y,posi1x,posi1y);
    lineTo(posi1x,posi1y,posi3x,posi3y);
    lineStyle(0,0xFF0000);
    lineTo(posi2x,posi2y,posi4x,posi4y);
    lineStyle(0,999999,100);
    lineTo(posi4x,posi4y,posi1x,posi1y);
    //make mc and initialize loading of image
    var holder = this.createEmptyMovieClip('holder', 0);
    var mcl = new MovieClipLoader();
    var lstn = new Object();
    mcl.addListener(lstn);
    //apply mask before image loading
    lstn.onLoadInit = function(clip) {
    clip.setMask(Bezier2);
    mcl.loadClip('../image1.jpg?a="+Math.random(9999));',
    holder);
    Any guess? Thanks

  • Jsp and image cache problem

    Hello,
    In a jsp(running on tomcat) I switch two jpg files(1.jpg and 2.jpg) and redirect to the page that displays them.
    The problem is that the files are really changed, but the page which displayed them needs manual refresh to "know" they are inter-changed.
    What I have tried, but no success:
    1) In the page which displayed them, I have tried to setup header:
    response.setHeader("cache-control","no-cache, no-store,must-revalidate, max-age=-1");
    response.setHeader("pragma","no-cache, no-store");
    response.setDateHeader ("expires", -1);no difference, in both IE(6 and 7) and Firefox 2.
    Also no result with html:
    <meta http-equiv="Pragma" content="no-cache">
    <meta http-equiv="Expires" content="-1">2) I have tried to a add a fake param on the images, like
    <a href="1.jpg?<%=(new java.util.Date()).getTime() %">3) I have tried to add also a fake(time) parameter on the jsp which displayes the images, no result
    How can I force the browser to know that I have inter-changed the images?
    Any idea?
    Thank you.</a>

    to traja47 : could you be more specific about that post? Since there are 30,000 plus post about jsp and my sql, thank you very much.
    to jSweep :
    No exceptions.
    just when i ran it, the page is all empty, then I used the VIEW-SOURCE of IE to see the source of the result page, it showed:
    <html>
    <head>
    <title>Accessing data in a database</title>
    </head>
    <body>
    </body>
    </html>
    all the parts related to java are gone. don't know why.

  • Mailed attached images cannot be retrieved by PC Users

    For some of my PC user customers, not all, when I attach an image of any kind (not copy and paste), they view the image in there email program but cannot download it. One client says that he can download it if he goes directly to his gmail account but not out of Outlook. At first it was just one client, now it's spreading to others. I am having to send the images zipped. Is there something I am doing on my end to cause this? . . .Cliff

    Cliff,
    When sending to those using Outlook or Outlook Express, send only in Plain Text. As a test, choose a message you have already sent in the Sent mailbox, then click on Message in the menubar, choose Send Again, then click on Format in the menubar and choose Make Plain Text. Send again, and ask the result.
    The attachment is there, and if they were more adept, they could probably download. But using Plain Text is best for this. With AOL users who are using the AOL software rather than an email client, there can be a different problem, and zipping may be the best path to them.
    Ernie

  • E-mailed attached images from I-photo are always highly compressed

    When I attach an image (e.g. 2.5mb) to an e-mail then send it, the recipient finds it has been reduced to approx 50kb and is pixellated. How can I avoid this happening.

    Welcome to the Apple Discussions.
    What email application are you using? How are you sending the email to the application? If it's Apple's Mail app have you remembered to also set the size in the New Message Window?
    Uploaded with plasq's Skitch!
    Regards
    TD

  • Image cache problem in win mobile profile

    I've done an application which periodically reloads and shows an image from a web server because the image is also changing periodically. In applet and desktop profile the image reloads properly but in mobile profile the image only loads once and doesnt change in spite of the image is still changing in the web server.
    I supose this is happening because in mobile profile the image might get saved in cache although the aplication keeps asking the image to reload.
    I need the image to reload!!
    can anybody help me??
    here´s the source code:
    //this is the image by default
    var image: Image = Image{
    url: “{__DIR__}images/nodisponible2.jpg”;
    var cam: ImageView = ImageView {
    cache:false
    translateY:72;
    translateX:9;
    fitWidth:223;
    preserveRatio:true;
    image: imagen
    //a timeline calls a periodically a function that reloads the image
    var timeline: Timeline = Timeline{
    repeatCount: Timeline.INDEFINITE
    keyFrames:[
    KeyFrame{
    time : 0.25s
    action : renovarUrl
    //each time you call this function a new image variable is created, but win mobile always shows the same
    function renovarUrl() : Void{
    var imagen2: Image = Image{
    url: “http://127.0.0.1/map0/cam0/cam.jpg”;
    cam.image=imagen2;
    thanks!

    Hi,
    I´ve tried to append a random number to the loadMovie
    (in fact in my case I have to use the loadClip function, but I
    don´t think this makes a difference), nevertheless it keeps
    loading the cached image in the browser, here is my code:
    stop();
    this.createEmptyMovieClip("Bezier2",this.getNextHighestDepth());
    //receive vars from first frame to create masking shape
    with (this.Bezier2) {
    lineStyle(0,999999,100);
    beginFill(0xFF0000);
    moveTo(posi1x,posi1y);
    lineTo(posi3x,posi3y,posi2x,posi2y);
    lineTo(posi2x,posi2y,posi1x,posi1y);
    lineTo(posi1x,posi1y,posi3x,posi3y);
    lineStyle(0,0xFF0000);
    lineTo(posi2x,posi2y,posi4x,posi4y);
    lineStyle(0,999999,100);
    lineTo(posi4x,posi4y,posi1x,posi1y);
    //make mc and initialize loading of image
    var holder = this.createEmptyMovieClip('holder', 0);
    var mcl = new MovieClipLoader();
    var lstn = new Object();
    mcl.addListener(lstn);
    //apply mask before image loading
    lstn.onLoadInit = function(clip) {
    clip.setMask(Bezier2);
    mcl.loadClip('../image1.jpg?a="+Math.random(9999));',
    holder);
    Any guess? Thanks

  • Mail attachment problem with IP TUNNELING

    Hi
    We are an Isp and we have two links separatly from two different service provider, one is for Send traffic and another one for recive traffic, we use simple Gre tunnle and configure it in our router ,the tunnel is active and everything seems works fine ,but when users want to use mail attachment like yahoo mail attachment they have problem : yahoo ask them to attach files they can browse and choose files after that when they want to finish ,the yahoo attachment page process opened and never finish it s job !!!!!!!
    please help.
    Thanks.
    Reards Bahman mozaffari

    Hi,
    this sounds like you are having MTU problems due to the GRE overhead. You can try to fix this with the command
    ip tcp adjust-mss ! f.e. 1400
    on the tunnel interfaces. The riouter will intercept TCP MSS negotiation and allow only TCP segments small enough to fit through the tunnel.
    Hope this helps! Please rate all posts.
    Regards, Martin

  • Just moved my email from entourage to Mail. Having real problems with getting my signatures to work properly. When adding in a small company logo, windows computers only receive signature as an attachment. Am sending email as Rich Text. Any ideas on a fix

    Just moved my email from Entourage to Mail. Having real problems with getting my signatures to work properly despite sending email as Rich Text.
    When adding in a small company logo to the signature, PC's / windows computers only receive signature and logo as attachments.
    I've tried all possible fixes I can find including getting a PC user to format the logo but no joy. Has anyone experienced this and any ideas on a fix gratefully received.

    Send it as html so the signature is an image source URL

  • Mail attachment saving problem

    Hi,
    When I tried to save a Mail attachment today I got the following warning:
    Mail was unable to save the attachment “File.numbers” to disk. Please verify your downloads folder exists and is writable.
    The warning must be wrong because other attachments, even of the same kind, can be saved without problems. I observed that only such files are effected which contain subdirectories like numbers, keynote, etc. and my suspicion is, that the saving problems may come from wrong file reading/writing rights within these subdirectories, that the sender of the Mail may have imposed to prevent unwanted changes to his/her file. May this be so? Otherwise, what else?
    (MacOs X 10.5.6, Mail.app 3.5 and, in this particular case, Numbers08)
    Thanks for for help in advace!
    Joe.

    Hi Kappy,
    Nothing at all. No error message but no copying either, and no change in the curser appearance when dragging to the Desktop.
    When I go to Mail --> Message --> Forward as Attachment, the attachment in the composer window can be saved like a normal file and has an appropriate size, eg. the desired original file seems to be contained in there. However, I have no Idea how to extract the original .numbers file from that.
    Strange, isn't it?
    Thanks,
    Joe.

  • Problem in Reading Mail Attachement

    I'm facing a problem while reading mail attachments. Java-mail returns null disposition for the below message,but this message has attachment javamail is not considering the mail attachment .I'm using java-mail 1.3.Can anybody help me to solve this problem ?
    Return-Path: prvs=00548bd8bd=[email protected]
    Received: from PRODTM1.TRUST.UASC.AO ([172.28.2.143])
         by trust.uasc.net
         ; Mon, 14 Mar 2011 11:07:04 +0000
    X-TM-IMSS-Message-ID:<[email protected]>
    Received: from gw.northport.com.my ([202.188.31.130]) by trust.uasc.net ([172.28.2.144])
    with ESMTP (TREND IMSS SMTP Service 7.1) id 45727fb90003495a ; Mon, 14 Mar 2011 11:06:52 +0000
    Received: from [192.1.10.13] (port=59768 helo=nmbsmtp-01.northport.com.my)
         by gw.northport.com.my with esmtp (Exim 4.69)
         (envelope-from <[email protected]>)
         id 1Pz5bs-0003EO-0A; Mon, 14 Mar 2011 19:06:48 +0800
    X-CTCH-RefID: str=0001.0A090205.4D7DF6C8.0116,ss=1,fgs=0
    Date: Mon, 14 Mar 2011 19:05:50 +0800 (SST)
    From: AMTedi-Container Svcs <[email protected]>
    Message-ID: <[email protected]>
    Mime-Version: 1.0
    To: [email protected], [email protected],
    [email protected], [email protected]
    Subject: CODCT1UAS
    Content-Type: multipart/mixed; boundary="-"
    X-TM-AS-Product-Ver: IMSS-7.1.0.1394-6.5.0.1024-18010.003
    X-TM-AS-Result: No--4.942-5.0-31-1
    X-imss-scan-details: No--4.942-5.0-31-1

    If you were assuming that every message would have a valid body part
    and that they would tell you definitively which parts you should consider to
    be "attachments", ya, that won't work. The disposition is a hint at best.
    It can be wrong. It might not even be there.

  • New Line Character problem in mail attachment

    Hi all,
    my xi-box is in patch level 16. i need to send the mapped xml as a pipe delimited file(a lineitem per line) attachment to a mail id. so i use MTB to content convert the payload and attach the content as an attachment using a custom module and send the mail. Since the naming convention of the attachment (as per my requirement) says the file should be a .txt file, i 've used text/plain as the content-type.
    if i open the attachment in textpad or wordpad i can see one lineitem per line; but if i open it with notepad its not the case.lineitems do not appear in separate lines but appear continuously. i 'm seeing a box character as a separator between the lineitems. i'm not able to figure it out why.
    i used MTB in file adapter and content converted the payload and opened the file in notepad;it was fine.
    But i'm not able to figure out why its happening with the mail attachment. If you have come across such a problem please suggest me to solve this.
    Regards,
    Sundararamaprasad

    Is there any way you can send the file in an ASCII format instead of BINARY format. In many of my resolved cases I just change from binary to ascii and it works for eg., while doing FTP.
    thansk,
    rakesh

  • Some recipients receive my images attached to emails, some find they are embedded and difficult to impossible to separate. Just found out that if I remove my attached signature, the problem goes away. How to send images   signature reliably?

    Some recipients receive my images attached to emails, some find they are embedded and difficult to impossible to separate. Just found out that if I remove my attached signature, the problem goes away. How to send images plus signature reliably?

    When you attach things, make sure to check the box that says [√] Send Windows-Friendly attachments

Maybe you are looking for