Questions tagged [mime]

Multipurpose Internet Mail Extensions (MIME) is an Internet standard that extends the format of email to support text in character sets other than ASCII, non-text attachments, message bodies with multiple parts, and header information in non-ASCII character sets

Multipurpose Internet Mail Extensions (MIME) is an Internet standard that extends the format of email to support:

  • Text in character sets other than ASCII
  • Non-text attachments
  • Message bodies with multiple parts
  • Header information in non-ASCII character sets

MIME is specified in six linked RFC memoranda: RFC 2045, RFC 2046, RFC 2047, RFC 4288, RFC 4289 and RFC 2049, which together define the specifications. File name encoding is defined in .

1867 questions
0
votes
0 answers

camel-mail : can't send a mail with attachments

EDIT : If anybody comes here with a similar problem looking for an answer, sorry I don't have any helpful advice, I just gave up and wrote everything in "pure" Java with the org.apache.commons.mail library. The Apache Camel route is just detecting…
Alef
  • 101
  • 1
  • 10
0
votes
1 answer

MIME "From:" header with national characters

What is the correct format of "From:" header when From Name contains national characters and dot (.) character? We generate (using C# Chilkat lib) this: From: =?utf-8?Q?Micha=C5=82_from_domain.com?= (where From Name = Michał…
Marcin
  • 1
  • 2
0
votes
2 answers

Can mysql decode inside the query?

I have a database that have a copy of all emails from an imap server. So I have a column name that is the sender's address, sometimes like this: =?utf-8?B?UmVwb3J0Z and others without encoding, and others with others…
Alvaro Hernandorena
  • 422
  • 1
  • 4
  • 17
0
votes
1 answer

Json mimetype in html

I have written a HTML/Javascript application to generate JSON Content. The structure is valid but the mimetype is stuck in default text/html. Can someone please advise how to set to application/json. My latest attempt is: Blockquote …
water_man
  • 31
  • 5
0
votes
1 answer

Changing MIME type with Meteor

When I'm running my app on localhost, I get 2 warnings concerning MIME type. This is one of them: Resource interpreted as Stylesheet but transferred with MIME type text/html: "http://localhost:3000/BootstrapEssentials/bootstrap.css". The other…
0
votes
1 answer

JMeter: How do I upload an Image file in JMeter?

I have a scenario where its required to upload 10,000 image files. File path is D:\ImagesToBeUploaded\Images I would like to know what input should I provide to Parameter Name and "File Path" in HTTP Request. Can a File Path be:…
Anonymous
  • 798
  • 2
  • 20
  • 45
0
votes
1 answer

Difficulty updating mime types in installshield web site project

I have a web application that is installed on several client servers. The new upgrade of the application requires the addition of two mime types in the virtual directories. This doesn't seem to be working in my installscript (Installshield 2011…
peg_leg
  • 73
  • 1
  • 7
0
votes
1 answer

Perl MIME::Entity: Avoid multiline content-type

If I am using MIME::Entity and set a custom content-type, then it is multiline. my $mime = MIME::Entity->build (Type => "multipart/related; myid=\"max123\"; type=\"xml\";", "X-Mailer" => ""); produces ... Content-Length: 1111 Content-Type:…
chris01
  • 8,111
  • 7
  • 35
  • 65
0
votes
1 answer

Set up MIME::Lite on Windows 7 without Outlook

I run ActiveState's ActivePerl on my Windows 7 box. I just installed the MIME::Lite module using the PPM (Perl Package Manager). The installation went fine. However, as I try to run a very simple script use strict; use MIME::Lite; my $msg =…
Zhang18
  • 4,031
  • 8
  • 43
  • 61
0
votes
1 answer

Replacement for sun.net.www.MimeTable mimeTable & sun.net.www.MimeEntry

I Wants to replace sun.net.www.MimeTable and sun.net.www.MimeEntry from code since getting warning "MimeTable is internal proprietary API and may be removed in a future release". Please help me with which new API replaced it and which one I should…
ashrafi iqbal
  • 59
  • 1
  • 9
0
votes
1 answer

How to deliver email attachments to message on NodeJs using Express, Jade, Imap

I'm currently developing email client to our NodeJs application. I got everything working, (List messages, open message etc..), except attachments. How I should deliver attachments to page so 'cid:someId' source will render it to correct place. I…
EspeH
  • 1,236
  • 1
  • 16
  • 31
0
votes
2 answers

Remove two hyphens from MimeBodyPart javax.mail.message

I create a s/mime using javax.mail 1.5.5 Unsigned mime message as follows: As you see there is a two hyphens at the end of part I create s/mime then two hyphens are removed so signed value is different public class TestKepSignStackOf { private…
Winston
  • 1,650
  • 2
  • 18
  • 29
0
votes
1 answer

Create EML file from MIME Message Information

I am having webmail access to IBM Lotus Notes and wanted to export the emails from the webclient. Since there is no tool provided by the company, I have decided to create a tool mechanism to export the important mails in EML format. I have access to…
Kunal Jha
  • 1,912
  • 4
  • 22
  • 34
0
votes
1 answer

MIME Multipart being sent as "noname" on Python 3

I had a script made on Python 2.7 that would send an email. The following code worked perfectly on it: msg = MIMEMultipart( From = "Name ", To = "Name ", Date=formatdate(localtime=True), …
Pedro Carvalho
  • 515
  • 1
  • 4
  • 22
0
votes
1 answer

Python-Parse email Body and truncate MIME headers

I have an email body which looks somewhat like . Now I want to remove all the header from it and just have the conversation email text. How can I do it in python? I tried email.parser module but that isn't giving me the result which I want. Please…
sangeet
  • 1
  • 1