9300i email attachments are .dat files

When I download emails to my 9300i from from my POP3 server (BT), the word and excel attachments come through as .dat files. can anyone help?

Joel,
In addition to Allan's very appropriate question, see those I asked of Charles in the topic at:
http://discussions.apple.com/message.jspa?messageID=3386412#3386412
Ernie

Similar Messages

  • PC users receive my email attachments as .dat files...

    ....and CANNOT open them.
    I've done a cursory search on this board to find a fix for this problem, but cannot.
    Any assistance I might receive in fixing this issue would be great.
    Cheers,
    Joel DuBay
    www.readyacoustics.com

    Joel,
    In addition to Allan's very appropriate question, see those I asked of Charles in the topic at:
    http://discussions.apple.com/message.jspa?messageID=3386412#3386412
    Ernie

  • Some users are experiencing difficulty opening certain docx files sent as email attachments. These files contain content controls to protect data in the document. Could someone please confirm that the content controls are the reason the files won't open.

    Some users are experiencing difficulty opening certain docx files sent as email attachments. These files contain content controls to protect data in the document. Could someone please confirm that the content controls are the reason the files won't open.
    These files open correctly when sent as doc files.
    Thanks

    Congrats to Saeid, Ronen, and Ricardo! Big thank you to all our contributors!
     Transact-SQL Technical Guru - February 2015  
    Saeid Hasani
    T-SQL: How the Order of Elements in the ORDER BY Clause Implemented in the Output Result
    Durval Ramos: "Very well structured and with examples that clarify how a T-SQL statement can change the data output order."
    Richard Mueller: "Good use of Wiki guidelines and great examples."
    Ronen Ariely
    Free E-Books about SQL and Transact-SQL languages
    Richard Mueller: "An excellent collection and a great idea."
    Durval Ramos: "A good initiative. Very useful !!!"
    Ricardo Lacerda
    Declare Cursor (Transact-SQL) versus Window with Over - Running Totals
    - Accumulated Earnings
    Durval Ramos: "The "Window function" sample was well presented, but it was unclear how the chart was generated."
    Richard Mueller: "A new idea that can be very useful. Grammar needs work"
    Also worth a mention were the other entries this month:
    [T-SQL] Retrieve Table List with Number of Rows by
    Emiliano Musso
    Richard Mueller: "Short but sweet solution to basic question."
    Durval Ramos: "A simple T-SQL script, but useful."
    [T-SQL] Search for Missing Values within a Numerical Sequence by
    Emiliano Musso
    Richard Mueller: "Clever solution with good code examples."
    Durval Ramos: "You need add more details about development of the idea and create a "Conclusion" section to easy understanding."
    [T-SQL] Converting Multiple Rows into HTML Format single ROW by
    Maheen Khizar (Bint-e-Adam)
    Durval Ramos: "In some situations, It's need to consume and format HTML tags for a UI, but It's important to remember that Best Practices recommend this formatting process preferably in Presentation Layer"
    Richard Mueller: "A great new idea. Some features need more explanation. Avoid first person."
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Unrecocognisable email attachments WINMAIL.DAT

    my N95-8Gb sometimes receive unrecocognisable email attachments (WINMAIL.DAT). I can read maybe 1st line of the email msg but unable to view anymore than this. From what I can gather is that msgs seem to be in a format that my n95-8Gb cannot decipher and it just renames the file.
    As I read I generally read all my emails in the html, this is very frustrating....
    Anybody got any ideas, help
    N95 8GB is the Best.

    http://support.microsoft.com/kb/138053
    http://support.microsoft.com/kb/278061
    http://support.microsoft.com/kb/197064

  • BESX SP3 MR6 - Email attachments are now ALWAYS Auto-download - not good with duplicate attachment names

    Does anybody else see where email attachments are now always auto-download on all devices. The policy option was phased out in 5.0 but the default at that time was no (to auto-download). Now they all auto-download.
    1. PDF will not display because they must stay as attachment to render on Blackberry device. Says
    “This attachment type cannot be viewed on your device”
    2. Phone messages attached as voicemail.wav - first one works, but since no longer the "Preview" option second says "Fielname exists - Rename?" Some devcies you can save and go back - others you can't.

    Surely there's an expert on this forum who can help?

  • Auto saving email attachments using date email received as the name of the attachment file

    I would like to be able to batch save hundreds of email attachments in my inbox to a specified folder and use the date and time email was received as the name of the file.  i found sample script that would give it timestamp but would prefer date and time of receipt.  any help would be greatly appreciated.
    thanks.

    I found the below script online but it does not seem to be naming correctly.  it appears that the month always defaults to 12.  perhaps somehow could suggest a fix?
    set theAttachmentPath to (path to desktop) as text
    tell application "Mail"
              set a to selection
    end tell
    repeat with s in a
              tell application "Mail"
                        set current_date to date received of s
                        set CurrentSender to sender of s
              end tell
              set current_date to AppleScriptDateToString(current_date)
              tell application "Mail" to set Attached to mail attachments of s
              repeat with ThisAttach in Attached
                        tell application "Mail" to set FileName to name of ThisAttach
                        if FileName ends with ".pdf" then
                                  set FileName to current_date & " from " & CurrentSender & ".pdf" as text
                                  set FileName to checknamewith_pdfsuffix(FileName, theAttachmentPath, false)
                                  tell application "Mail" to save ThisAttach in theAttachmentPath & (FileName)
                        end if
              end repeat
    end repeat
    on AppleScriptDateToString(a)
              set b to current date
              set monthnames to {}
              repeat with i from 1 to 12
                        set month of b to i
                        set monthnames to monthnames & {(month of b) as text}
              end repeat
              set Y to (year of b)
              set M to 0
              repeat with t in monthnames
                        set M to M + 1
                        if t as text = (month of b) as text then
                                  exit repeat
                        end if
              end repeat
              set M to Twodigits(M)
              set D to Twodigits(day of b)
              set hh to Twodigits(hours of b)
              set mm to (minutes of b)
              set ss to Twodigits(seconds of b)
              return Y & "-" & M & "-" & D as text
    end AppleScriptDateToString
    on Twodigits(a)
              return (characters -2 through -1 of (("0" & a) as text)) as text
    end Twodigits
    on checknamewith_pdfsuffix(n, D, looped)
              tell application "Finder"
                        set thefiles to name of every item of (D as alias)
              end tell
              if thefiles contains n then
                        if looped = false then
                                  set n to ((characters 1 through -5 of n) & " 1" & (characters -4 through -1 of n)) as text
      checknamewith_pdfsuffix(n, D, true)
                        else
                                  set tmp to (last word of ((characters 1 through -5 of n) as text) as integer)
                                  set tmpcount to (count of characters of (tmp as text)) + 5
                                  set tmp to tmp + 1
                                  set n to ((characters 1 through (-1 * tmpcount) of n) & tmp & (characters -4 through -1 of n)) as text
      checknamewith_pdfsuffix(n, D, true)
                        end if
              else
                        return n
              end if
    end checknamewith_pdfsuffix

  • Suddenly, my Word docs are showing up on IPAD email as winmail.dat files

    I've been sending myself word docs from Windows Outlook desktop email so I can work on documents on my IPAD while away from home. Worked fine until yesterday, and now my word2003 attached docs on Ipad email are showing up as unopenable winmail.dat files. I've done nothing different, so am not sure what is happening. Other people's emails with Word docx files are opening fine as are pdfs

    Sorry, I can't help with why it is happening but there is an app available to read them.
    http://itunes.apple.com/us/app/winmail-file-viewer/id379500151?mt=8#&partnerId=3 0&siteID=X3Th4gZiiQ-4P6Ir4jNicgEJftJadY3g

  • What does the attached files I email turn into dat files

    when I send email or receive email with attachments such as pdf or .docx, the files are unreadable on my iphone and become dat files.

    I have the same problem.  I found that by saving the file to FILENAME.pdf and reopening with Preview or Adobe it works.  I saw another post that suggested that long filenames that are forwarded to others are renamed with a .dat extension.  I never had this problem until I upgraded to the latest MAC OS.  Could that be the problem?

  • Not receiving email with ETP.DAT file

    I have two users that are not receiving the email from the blackberry.net domain that has the ETP.DAT file attached. I set a new activation password on my blackberry and received the email. I have tried activating these guys a dozen time. I deleted them from the BES and re-entered their BES profile still nothing. I am only having problems with these two. When I activated myself I was able to trace the email through our SMTP Server right to my mail box. We are a Lotus Notes camp. Can anyone think of something I can try?

    1)  Apple ID: All about Apple ID security questions
    2)  See Here... ask to speak with the Account Security Team...
    Apple ID: Contacting Apple for help with Apple ID account security

  • Email attachments are converted to HTML

    I have a G4 ibook I rarely use and a G5 that I use daily both have recently begun to automatically download and convert all email attachments to .html, which when opened are gibberish.
    What can I do to fix this?
    When and if I can get Explorer to open I dont have this problem.

    comments?
    Firefox and IE simply ignore the MIME part (it's probably more complicated than that - I'd guess they have a list of 'known' file extension types they trust over what the webserver claims for them, and then fall back to the MIME type specified for more esoteric ones).
    Safari changed sometime around 1.2 -> 1.3 to use the MIME types more. Why? I have no idea, but I'm pretty sure that's the cause.
    If you have a URL to one of your attachments in the webmail site, try typing this in the Terminal:
    curl -I [your URL]
    In the output, the MIME type is indicated by the 'Content-Type: xxxxxx/yyyyyy' entry.

  • Aperture Email Attachments are Embedded in the Email Sent to Windows PC's

    I've searched the forum and have run across this problem discussed previously.  When sharing photos from Aperture 3.4.3 using the Email preset, the jpg's show up embedded in the body of the email when sent to people using PC's and running Outlook.  Oftentimes, the jpgs actually appear as thumbnails as well, and not full size.  I've tried the suggestions found here in this forum without any success.  In Mail, I have "windows friendly attachments" checked, although that particular menu item is greyed out, and can't either be selected or de-selected.  I've also formatted the email as "Plain Text".  Still photos attached don't show up on the Windows PC's as attachments.  I even exported a photo from Aperture to my desktop, then attached that jpg to an email, and got the same results.  I'm not sure if this is an Aperture problem, or a Mail problem.  I'm using Aperture 3.4.3 and OS 10.7 .  Am I missing something?  Thanks in advance.

    Hi,
    I have experimented extensively with this issue.  It is related to the recipitants email app, but in previous versions of Mail could be made successful by clicking on Format/Make Plain Text prior to sending.  In Mail in Lion and ML, this change does not stick, and the message utlimately gets sent in Rich Text/HTML which is why the MS apps have problems.
    The Make Plain Text strangely enough endures if you add a Signature following the attachments that is EMPTY but composed as text only plain text.  This 'tricks" Mail and OSX to not change it back.  I cooresponded with Apple engineering about this, and they say the use of Rich Text is necessary and helpful with Exchange Accounts.  But this does not help the many who are not in Exchange Account Situations.
    See:
    https://discussions.apple.com/message/17550705#17550705
    The use of Attachment Tamer in general can help this, but I don't use it, and it is not clear to me how it would work when invoking Mail sending from within Aperture (or iPhoto which suffers the same issue).
    MS could probably solve the problem, but at last check even RTF produced in Outlook could be problematic to those using Outlook Express, or vice-versa.
    Ernie

  • EMail Attachments using PDF file

    Hi guys
    I have developed an application using Oracle 8i and forms 6i. There is a report developed in 6i repors and saved as PDF format. this file I have to send as attachemnts to the employees.
    Is there any way to send PDF file as attachemnts using forms 6i.
    REgards
    Linga Murthy Mudigonda

    The easiest way (and OS independent, so you don't need Outlook or blat or something like that) is to send the email and attachment from the database. Package utl_smtp won't let you do that, but with Java mail you can. So, after you generated your report, you can mail it using Java mail.
    Everything is described very clearly in note 120994.1 on Metalink (How to Send E-mail With Attachments from PL/SQL Using Java Stored Procedures).

  • SCCM Subscription Email Attachments Are Wrong

    Hello,
    I have set up some subscritions for reports within SCCM. The problem I have is when they are emailed to me the filetype is wrong on the attached report.
    For example:
    pdf reports come as: .applicationpdf
    excel reports come as: .applicationvnd.ms-excel
    Any help as to how I can fix this?
    Cheers

    Hi,
    There are too many things affecting the attachments. You could try to use OWA test if the format of attachments will be changed.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • .pdf, Word, and Excel email attachments are not recognized

    I have something very weird happen. For the past 2 weeks or so, when I recieve a pdf file as an email attachment, and I try to open it I get a message that the file is corrupt. If I go to my husband's PC, I can open the file, which means it is not corrupt. I have tried with Preview (and Acrobat Adobe Pro 9.2.0) to double-click the file, no result. I have also saved on the desktop, and double-clicked; lastly, I tried to open from within both Preview and Acrobat. Nothing makes the files open. I had some of the files resent, as I wanted to make sure, nothing works.
    Does anyone have an idea what's going on? Also, files I have saved on the HD a while back open without any problems whatsoever.
    Thanks for any feedback.

    If they're really PDF files have whoever's sending them zip them first. BTW, what's with the Word and Excel files in the title? You didn't say anything about those.

  • Email attachments are resizing

    When I send a file it is resizing. Both in mac mail and by using an outside email like gmail. Any idea why this is happening? A 1mb file will send as 300kb.
    thanks

    When you attach or drag-and-drop an image into an email in the Mail.app, a drop down will appear in the lower right corner of the composition window. This is set to something other than 'Actual Size'. To retain the original size of the attachment, choose "Actual Size".

Maybe you are looking for

  • Getting error while connecting to AS400 DB through Jdeveloper

    I am using Jdeveloper 11.1.2.4.0 and Connecting AS400 DB using the Driver com.ibm.as400.access.AS400JDBCDriver and I put the jt400.jar in classpath : :\JDeveloper\system11.1.2.4.39.64.36.1\DefaultDomain\lib\jt400.jar. Now I am able to test the connec

  • System software updates possible?

    recently whwnever I try to opdate my system software from the finder the App Store app comes up. Is this the new way or .... it never says my system needs updating nor does it update my 4S, 3gs, iPad, Macbook Pro or this imac.

  • Photos upload too small on the internet!!!!!

    when i upload photos from iphoto onto myspace/facebook the photos upload smaller then they are in iphoto, is there a way i can fix this??

  • Getting PDF into iBooks from Mail with IOS 7?

    OK, on my iPad 3......pre IOS 7, someone coud emal me a PDF and I would click it in Mail and it would give me the "OPTION" to view or open in iBooks. Because I wanted it in iBooks, I would click that and all was good. NOW with IOS 7.....I get this "P

  • Resize question for gallery

    I need to run a slide show in "kiosk" mode where the image takes up as much of the screen as possible. The screen will be set to 1024 x 768, so basically I need to make sure the images either show at 100% because they fit, or reduced to about 85% bec