Questions tagged [mime]
The mime tag has no usage guidance.
62 questions
0
votes
1
answer
1k
views
multipart/mixed content type and boundary refused by Amavis
I'm writing a Ruby script that send SMTP email. The email is divided onto 3 parts: headers, body and attachment. Unfortunatly, I'm struggling to satisfy an Amavis requirement: properly writing the ...
0
votes
0
answers
77
views
OSS Server Written in Javascript, Linux Based Needs MIME Configuration
Scenario:
There is a popular OSS application named Potree, hosted in GitHub. I am getting minimum support from its author, a very talented but busy guy who does not know much Linux or Apache. This is ...
0
votes
1
answer
1k
views
MIME database file on Windows Server 2019
I'm working with IIS 10, on a Windows Server 2019 and I'm trying to export the MIME database to another WS-2019.
Is there any path where the database is stored? I can't find anything similar in ...
0
votes
1
answer
777
views
nginx, wrong MIME type after rewrite removing file extension
I have a storage where files are stored with filename corresponding to their MD5 hash. The files are stored like this:
...
/srv/storage/25/
/srv/storage/25/25D6D1AD130E4EB7D11F6AB48C09414E
...
/srv/...
2
votes
1
answer
573
views
8bit to Quoted-Printable encoding in Exim
Is it at all possible, and how, to configure the Exim4 mail server to convert outgoing messages (or message parts) from 8bit encoding to Quoted-Printable (or Base64, although I'd prefer QP) before ...
0
votes
1
answer
1k
views
SPF check MIME FROM - how does the header differ and do I want to enable it?
On our email gateway SPF checks are enabled. There is an option though called SPF Check MIME FROM that I am unfamiliar with and what exactly it will do if the box is checked (enabled). I have ...
-1
votes
1
answer
389
views
Pass ASP as PHP on nginx
I have been trying to parse .ASP files as PHP, but no matter what I try (for hours), it just doesn't work. None of the tutorials/notes I find seem to work for me!
Either file(s) get downloaded with ...
0
votes
1
answer
4k
views
Nginx serves php files as plain text (Mod_Rewrite)
There is no .htaccess (Mod_Rewrite) in Nginx.. So I've converted my .htaccess to a format which can be read and placed in the default.conf.
Original htaccess:
Options -Indexes
RewriteEngine on
...
1
vote
1
answer
524
views
Under what conditions in Apache installations is AddHandler application/x-httpd-php .php required?
I am a security researcher who has been running into multiple cases where file upload forms can be exploited, allowing attacker-controlled PHP code to be interpreted by the server, leading to remote ...
0
votes
0
answers
138
views
Incorrect mime type for CSV returned by file -i
On debian the file -i command is returning incorrect information for CSV files, when I run it the mime type is returned as below.
$ file -i courses.csv
courses.csv: text/plain; charset=utf-8
I've ...
0
votes
1
answer
3k
views
How to correct the MIME type from being recognized as text/x-asm to text/css?
The styles.css file is not loading on my web page, and I am hosting on Amazon S3. It appears that my styles.css file is being recognized as text/x-asm instead of text/css as stated in my index.html ...
13
votes
2
answers
37k
views
nginx mime types and gzip
Nginx allows you to map file extensions to mime types. As the documentation says, it even comes with a pre built list of mime types (pasted at the end of the question).
I've always trusted this ...
1
vote
1
answer
2k
views
Forcing apache to send correct Content-Type for docx files
This seems to be an old problem: Users retrieving docx files from apache are receiving them with a Content-Type header which claims they're zip archives.
After a good deal of searching for solutions ...
1
vote
2
answers
1k
views
Can I use regex or wildcard to set Apache's AddType Directive?
I manage an internal Apache2 system enabling HTTP browsing and downloads of a connected file system. I do not have control of the files, file types, or file names of the content being uploaded by the ...
1
vote
2
answers
4k
views
Applying Transport Rule only if the mail is text/plain and another if it is text/html
I've been at this for quite some time now, not really getting it to work. Unfortunately I am only able to test on our Office365 account and changes take forever to propagate so I can test after ...
0
votes
1
answer
976
views
How can you send mime encoded emails on systems that do only support uuencode
If you use e.g. Solaris without additional installed software to send MIME mails: how can you send mails with MIME attachments with standard command line tools?
0
votes
1
answer
2k
views
Do SMTP servers implement 8BITMIME with anything other than UTF-8?
RFC 5321 specifies that the body of an email be encoded as 7 bit, US-ASCII. The 8BITMIME extension allow the body to be encoded as 8 bit. An SMTP server can advertise that it supports 8BITMIME in ...
2
votes
1
answer
5k
views
Incorrect MIME type - pulling my hair out
I have a problem with CSS files being incorrectly marked text/html by Apache. The file type is mismatched in the browser, and is ignored causing display failures.
I'm using Apache 2.2.3 on a RHEL 5 ...
3
votes
2
answers
4k
views
Server reporting incorrect mime type for css files
We have a VPS server that we host our websites on. I have written a CMS using CodeIgniter. On one of the interfaces, I am attempting to upload a css file to the system. This worked correctly when we ...
11
votes
1
answer
43k
views
Apache delivering CSS and JS files, but browsers don't render them
A webpage is being hosted by apache2, CentOS 6.2.
It Gets HTML, CSS, JS files ok to the client side. But CSS and JS don't render, What can be hapenning?
Since they should run 100% on client side...
11
votes
3
answers
22k
views
Does the presence of a Content-ID header in an email MIME mean that the attachment must be embedded?
Two different third-party email products we have are reacting differently to the presence of a content-id header in the MIME source of an email. This is resulting in an inconsistent user experience ...
0
votes
0
answers
7k
views
What is the mime type for ashx
I am trying to move a legacy app to iis7. I have found hundreds of posts on how to setup mime types, but not one on what exaclty the mime type for .ashx is.
Also, I don't understand how aspx is being ...
1
vote
2
answers
3k
views
Cannot load IMG without specifying extension
I just moved to a new server. All my site is including images without extensions. () but the new server doesn't seem to recognize this files unless I add each file's extension which I don't know so I ...
4
votes
2
answers
4k
views
Is there a command line MIME extractor shipped with RHEL 5?
It looks like mpack is not shipped with RHEL. Is there a command line MIME extractor (i.e. something that can be used from a shell script) shipped with RHEL 5 that does not require installing a third ...
1
vote
1
answer
660
views
Perl sendmail attach log files match date format
I want to send log files matching date format, e.g. YYYY-MM-DD-*.log as attachments in Perl script. In BASH, this can be easily done by:
[ -f $DIR/explog/$(date "+%Y-%m-%d")-*-host1.log ] && ...
1
vote
1
answer
2k
views
How can I edit web.config to have a different MIME type for a single XML file not others?
I am trying to set the MIME type for Flash's cross domain file in web.config. Since this file has an extension of .XML the following command will edit the MIME type of all XML documents in my site (...
1
vote
0
answers
546
views
How to specify proper mime for javascript in apache?
I'm trying to set up mod_mime for javascript. My webserver returns this content-type for js files:
Content-Type:application/x-javascript; charset=utf-8
so obviously the directive
ExpiresByType ...
20
votes
3
answers
16k
views
Making libmagic/file detect .docx files
As seen elsewhere, docx, xlsx and pttx are ZIPs. When uploading them to my web application, file (via libmagic andpython-magic) detects them as being ZIP.
I store the contents of the file as a blob ...
2
votes
3
answers
5k
views
Apache returning text/html on some png files
I have an Apache web server that has a sub folder for images.
For some reason, a few of the .png files are returned as text/html and not as image/png.
There is nothing indicating a permission ...
1
vote
1
answer
2k
views
Get MIME type of files served by Apache
I use an Apache server to make available J2ME application files (namely a *.jad file and a *.jar archive).
Now I know that to properly serve these files you need to tell Apache what their MIME type ...
5
votes
2
answers
7k
views
Delivery status notification, invalid header: bad MIME
Each email that is generated by the shop web application is returning:
Delivery status notification, invalid header: bad MIME
From looking at the error message it look like it is complaining about ...
1
vote
1
answer
2k
views
Outlook Meeting Requests Not Being Re-encoded from Base 64 by Receiving Clients
Exchange 2010 + Outlook 2007. Users send outlook meeting request to a list of recipients both interanlly and externally to the organisation. Some recipients report receiving 'garbled' messages instead ...
0
votes
1
answer
459
views
How to make IIS7 recognize specific file extensions?
I'm attempting to embed .mp4 and .webm video files in a webpage and IIS doesn't appear to be recognizing the file extensions.
I read that I needed to add the MIME types for each extension in IIS.
I ...
0
votes
1
answer
6k
views
How can I make all unrecognized file types as binary in Apache2?
I'm building a web server distributing variety kind of binary files. (with Ubuntu) They have vary extensions and sometimes has wrong extension. But currently, my Apache server serves unknown files as ...
5
votes
1
answer
7k
views
What MIME type should I put for Windows shortcut file (.URL)
If I want to have a Windows shortcut file (foo.URL) to be saved for the users, what MIME type should I assign for it?
Default text/plain causes Windows to suggest it to be saved with .txt added as ...
3
votes
3
answers
4k
views
Set MIME type of PHP generated JavaScript file
I have a dynamically created .js file by PHP. For this to work I added the following to an Apache .htaccess file:
AddHandler application/x-httpd-php .js
AddType application/javascript .js
But the ....
2
votes
3
answers
5k
views
What are the default MIME types for IIS 7?
Is there a list of the default MIME types for IIS 7 somewhere?
The one I am most concerned with right now is that for .zip files.
I know application/zip will work, but IIS 7 has something else by ...
1
vote
1
answer
572
views
Do file extensions matter if you're sending the right MIME type?
I vaguely recall reading that for some audio and video file types, some browsers check not only the HTTP Content-Type header but also the file extension in the URL. Is that so? And what would happen ...
1
vote
1
answer
734
views
ogg files return wrong mime apache. breaks firefox audio player
Hi my site is server ogg files with the mime application/x-unknown-content-type instead of application/ogg which breaks firefox's audio player. How do i get apache to serve the right mime? would it be ...
11
votes
3
answers
6k
views
nginx, x-accel-redirect and mime types
In my nginx 0.8.34 setup I'm using the X-Accel-Redirect feature to control file downloads in the application code while not having the application handle the download itself.
After much pain this now ...
2
votes
1
answer
8k
views
Considering MIME Expansion bloat, how does that affect settings for Exchange 2003/2007/2010 message size limits?
Since the mime encoding can increase a message's size by 33%, what is the correct math I need to do to filter messages larger than 45Mb? Is the math needed at all?
Does the math change among ...
2
votes
2
answers
8k
views
Space a valid delimiter for email addresses in email header?
Is it syntactically correct to delimit multiple email recipients in the "To" header of an email with spaces only or do I need to use another delimiter (a semicolon or the like)?
Example (MIME data ...
1
vote
1
answer
541
views
Does Microsoft Exchange automatically rewrite incoming HTML e-mails as multipart/alternative?
Given:
If you're sending an HTML e-mail, and you'd like to avoid spam filters, it's advisable to compose your e-mail as a multi-part message and include a plain text version.
My Question:
Does ...
2
votes
1
answer
3k
views
Adding a signature with an image/logo and *not* creating an attachment icon
My company uses Outlook 2003/2007 on Exchange, and they want to standardize on a signature format.
What is the best way to add an image to a signature with these features (in order of priority):
Not ...
6
votes
6
answers
5k
views
Why are MIME types needed if we can identify file types by their extensions?
If people's computers can decide what to do with files based on their extensions (.pdf, .mp3, .docx, .dotx, etc.), why do web servers and email apps need to also specify a MIME type?
I can see this ...
1
vote
2
answers
4k
views
Wrong MIME-type while uploading files
I have a problem with MIME-type while uploading a file to server from the web-interface. I used CI as engine for my website. I have FreeBSD with Apache 2.2.15 on the board.
The problem is:
While i ...
0
votes
1
answer
2k
views
Force Tomcat6 to server all *.manifest files as text/cache-manifest?
How do I configure tomcat to server all .manifest files as text/cache-manifest? I'm trying to create an offline cache, and this is tripping me up.
0
votes
1
answer
543
views
Difference between adding MIME types in IIS via Websites vs Local Computer?
What is the difference between adding MIME types in these 2 different situations?
When in IIS 6 manager...
Right click on the computer name (local computer) > properties > mime types
Right click on ...
0
votes
3
answers
3k
views
.docx issue in Apache servers
What I have to write to the .htaccess file so that the visitors will be able to download .docx files?
0
votes
2
answers
4k
views
Apache2 MIME types for js and xml
Would there be any functionality/serving problems on an Apache2 by changing the following default MIME types...
.js : application/x-javascript
.xml : application/xml
To this...
.js : text/...