Ubuntu :: Can't Edit Mime Types In Thunderbird

Feb 18, 2010

associate html attachment in emails with Firefox and tried to edit mime type extensions in Thunderbird through Edit/Preferences/Attachments/Download Actions/View & Edit Actions but it is empty and there is no way to add extensions there. Is there a different way to do it? I tried to choose Firefox while opening the attachment. It works but does not remember it for further actions.

View 2 Replies


ADVERTISEMENT

Ubuntu :: Edit Mime Types To Remove A File Type Association?

Oct 30, 2010

I installed a trial copy of Anquet Map V06 under Wine then decided to remove it. Afterwards I could find many remnants associated with the Anquet program which I've deleted. Except what remains is an association between my .gpx files with Anquet and that includes and any new gpx file I download. My interpretation is that during the install process an association has been created with the gpx file type and the Anquet map program. This is what I want to stop. If I download a .gpx file and look at it's properties I see- Type: GPX File -Anquet Mapsv06 (application/x-wine-extension-gpx) I found this file and it's contents-

/.local/share/mime/application/x-wine-extension-gpx.xml
<mime-type type="application/x-wine-extension-gpx">

<!--

[code]....

Running "sudo update-mime-database /usr/share/mime" and rebooting didn't remove the association. How can I stop the Anquet name making as association with my gpx files?

View 9 Replies View Related

Ubuntu :: Applications Ignoring Mime Types?

May 24, 2011

Files downloaded with Firefox, Chromium, Miro etc. will not open correctly. Clicking to open the file (e.g. jpg or ogg) should result in the file opening with eog or audacious. Results - from Nautilus this works correctly, however from other applications the result is a Nautilus window. Placing a file 'test.torrent' on the desktop and using terminal to do

Code:
gnome-open test.torrent
or
Code:
xdg-open test.torrent
results in the same behaviour. However, simply clicking the file in Nautilus opens it in Deluge (correct behaviour).

View 4 Replies View Related

Ubuntu :: MIME Types Setup For Apache / MediaWiki

Jan 28, 2010

I'm trying on getting the MIME types setup correctly for Apache/MediaWiki. I think I've modified every config file known to man to no avail. Here's some info on what I've got going on. I'm trying to get the Office 2007 MIME types configured for MediaWiki 1.14 so that we can upload/download the files. Out of frustration/lack of need I went the less secure route and I modified the LocalSettings.php config file to disable MIME type verification for uploads.

Code:
$wgVerifyMimeType = false;

This works great for the uploads, and I can upload .DOCX, .XLSX, and .PPTX all day long, however when downloading them, they download as a .ZIP file with all the XML info inside of it. No biggie for me personally as I can just rename .ZIP to .DOCX and it works fine, however for the average user it's not going to fly. So, I figured that MIME types would be the source of my pain and started doing some research.

I have modified the following config files to include the MIME types listed below.
/etc/mime.types
/var/www/.htaccess (created to try and force them)
/var/www/mediawiki-1.14.0/.htaccess (created to try and force them)
/var/www/mediawiki-1.14.0/includes/mime.types

Code:
application/vnd.ms-word.document.macroEnabled.12 .docm
application/vnd.openxmlformats-officedocument.wordprocessingml.document docx
application/vnd.openxmlformats-officedocument.wordprocessingml.template dotx
application/vnd.ms-powerpoint.template.macroEnabled.12 potm
application/vnd.openxmlformats-officedocument.presentationml.template potx
application/vnd.ms-powerpoint.addin.macroEnabled.12 ppam
application/vnd.ms-powerpoint.slideshow.macroEnabled.12 ppsm
application/vnd.openxmlformats-officedocument.presentationml.slideshow ppsx
application/vnd.ms-powerpoint.presentation.macroEnabled.12 pptm
application/vnd.openxmlformats-officedocument.presentationml.presentation pptx
application/vnd.ms-excel.addin.macroEnabled.12 xlam
application/vnd.ms-excel.sheet.binary.macroEnabled.12 xlsb
application/vnd.ms-excel.sheet.macroEnabled.12 xlsm
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx
application/vnd.ms-excel.template.macroEnabled.12 xltm
application/vnd.openxmlformats-officedocument.spreadsheetml.template xltx
It doesn't seem to matter where I put the code, I can't get the MIME types to register with Apache/MediaWiki.

View 1 Replies View Related

Software :: Wine Set It As Default Handler For Many Mime-types?

Dec 24, 2010

I don't have wine installed. But I use teamviewer [URL] to remote support my friends. Teamviewer provide an "linux version" using wine wrapper. Every time I run it, some mime types such as .jpg, .wmv, .txt, .ini, v.v... was set to be handle by a "A Wine application". So, nothing happen when I open those file, I have to reset their handler to proper linux application.

1. How can I completely remove those "A wine application" handler? Is there a tool, or a settings applet in gnome that allow me to do that. Currently, I have to find those files in nautilus, right click and change the open with settings, that's frustrated.

2. Can I lock mime type handling settings from being changed by some application? Or even lock it from any changed at all? I don't mind remove the write permission from some settings file, I won't likely to change my current mime type handling settings in near future.

View 4 Replies View Related

Debian Multimedia :: Freedekstop MIME Types Versus Update Alternatives

Aug 15, 2010

I would like to know if there exists an article explaining how update-alternatives integrates with Freedesktop.org MIME. How do these systems coexist? How do they cooperate? Lately KDE and GNOME apps seemed to agree on default applications more and more; it seems there still exists an ordering problem [URL] , section Default application ordering), but things are generally working.

However, now I notice that some applications (which I've known for a long time to not be very Linux desktop friendly, I'm looking at Mozilla first, but this time I can't blame them without reason) use some totally different system, Alternatives. The example that comes to mind now is Icedove. Is there going to be a consensus on the default system or we'le have different applications using different systems?

View 3 Replies View Related

Server :: Technology For Detecting Types Of Traffic And Allowing To Run Multiple Types?

Apr 9, 2011

I would like port 80 to have a small daemon running on it that detects HTTP traffic and sends a small redirect response, and any other traffic begins streaming data from my VPN daemon. I was wondering if this has already been made, or any kind of technology for detecting types of traffic and allowing you to run multiple types of servers on the same port.

View 4 Replies View Related

Programming :: Conflicting Type Declarations Between Sys/types.h And Linux/types.h

Sep 12, 2010

I'm trying to use "netlink" to get ip address of a Linux box. But the linux/types.h included from "linux/rtnetlink.h" introduced many conflicting type declarations with "sys/types.h".

#include <rtnetlink.h>
#include <sys/types.h>
#include <sys/socket.h>
int main (int argc, char *argv[])
{
return 0;
}

The program will demonstrate such type conflicts.

View 3 Replies View Related

Ubuntu :: Grsync - Filtering File Types / Getting Only Some File Types Getting Included And Not Others?

Sep 1, 2011

I'm using Grsync and I want to be able to plug in any drive into my laptop and run rsync on it to back up all the user documents on there to another external hdd and to exclude everything else. Working on the principle that user documents don't always appear where we'd expect I want rsync to look through the whole drive and filter what it backs up by file type. I am only having partial success, however.

I am using the 'filter' option in the 'additional options' box. I am using the command
Code:
filter='merge /home/tim/Desktop/filter'
and I am attaching the filter file I have written. (I have added the .txt extention to upload it).

I have tested this script on my home folder and here's what's going wrong. Rsync will copy the entire directory structure regardless of whether there are any files to be copied over in those directories. I am also getting only some file types getting included and not others. .odt and .ods files are copied, for instance, but not .doc or .rtf.

View 3 Replies View Related

Ubuntu :: Can't Import Address Book From Thunderbird To Thunderbird

Aug 26, 2010

Thanks to Lucid not working properly on i845, i855 and other 8xx chips, had to re-install Karmic on my mum's computer.I saved all the data from her old install and I ve managed to get all her old emails from thunderbird, but I cant import her address book.In Thunderbird/tools/import/addressbooks it only allows importing of LDIF, .tab, .csv and .txt files, but I cant find any of these files in any of the Thunderbird, .Thunderbird, Mozilla-Thunderbird or Mozilla folders in Home folder or anywhere, all I can find is "abook.mab" which IS supposed to be her address book, but when I try and import it the entries are blank and/or indecipherable (prob cos not a compatible file type).

Its one of those "simple" things to do, thats taken hours and hours of time, but that I cant actually find out how to do.

View 1 Replies View Related

Software :: Importing Thunderbird Settings From Portable Apps Thunderbird

Sep 13, 2010

I had a portable apps version of Thunderbird (windows) that runs off a thumb drive and wanted to take the settings and transfer them to my Thunderbird that's on my Linux computer.

This is what I did:

First, I installed thunderbird on my Ubuntu 10.04 Linux box and opened it, and closed it (so that it would create the /home/<username>/.thunderbird folder in the user account).

Then, I renamed the linux /home/<username>/.thunderbird folder to .thunderbird_ORIGINAL

Then, I created a new /home/<username>/.thunderbird folder

Then, I took the windows e:ThunderbirdPortableDataprofile folder and copied it to the /home/<username>/.thunderbird folder.

Then, I looked into the /home/<username>/.thunderbird_ORIGINAL folder and wrote down the name of the folder with the ".default" extension.

Then, I renamed the profile folder (that came from the windows e:ThunderbirdPortableData folder) "<name-I-wrote-down>.default".

And then, I copied the profiles.ini folder from /home/<username>/.thunderbird_ORIGINAL to the /home/<username>/.thunderbird folder.

I opened up Thunderbird in Linux and everything seems fine! (I'll definitely be keeping a backup just in case)

My question is: is this fine and dandy, or a recipe for disaster?

View 2 Replies View Related

Ubuntu :: Use Mime Type Instead Of Thumbnails For .pdf?

Nov 12, 2010

I installed faenza icon theme and would like to have for my pdf docs only mime type (included in mime types/ icon theme), not a thumbnail. Is there some easy way to change this system wide?
I tried this and similar suggestions found on net, but no go:
http://ubuntuforums.org/showthread.php?t=770142

Using Ubuntu 10.04 64bit (Gnome)

View 3 Replies View Related

Ubuntu Security :: Iptables How To Filter SMTP W/o S/MIME

Jul 10, 2011

Does anyone know the iptables statement that will block inbound SMTP messages that are NOT S/MIME encrypted?

View 1 Replies View Related

General :: What Is Mime Source Factory

Jan 27, 2011

what is mime source factory?

View 1 Replies View Related

Ubuntu :: Unable To Locate Encoding Profile For Mime-type?

Feb 7, 2010

I am trying to transfer extracted music files from a CD into Rhythm Box music library, and I get the response, "Unable to locate encoding profile for mime-type"

View 2 Replies View Related

Ubuntu :: Script To Rename File Based On Mime Type?

Jan 9, 2011

I have a folder containing the output from Windows XP "File and Settings Transfer Wizard" - the folder refuses to be imported into any flavour of Windows and the original windows system is no more - so I found a little program called fastconv [URL] which extracted all the files but fails to rename them - been working on this solidly for 3 days now, there are 47,000 files in 20gb, so naturally the customer is very concerned.

I noticed that Ubuntu cleverly recognises the type of file, assuming its looking at the contents of the file rather than the extension.

Is there any way I can automatically rename the files based on the mime type?

View 2 Replies View Related

Server :: 8-bit-mime Apparently Not Being Advertised By SMTP?

Jan 5, 2010

I have a user that is reporting the following error on a bounced message:

Quote:

smtp;554 5.6.1 Body type not supported by Remote Host

He is forwarding emails from his exchange server to a recipient in Germany relaying through our smtp server using Surgemail as the MTA.

He called a senior tech specialist at Microsoft to get help thinking the problem was on his end (exchange server). According to this "specialist", he said the problem was that our smtp server was not advertising 8BitMIME in its 250 statement. I tested this myself by log in on to the smtp server and doing typing the following:

Code:
EHLO localhost
250-smtp.<mycompanyname>.com. Hello localhost (127.0.0.1)
250-AUTH PLAIN LOGIN
250-DSN

[Code]....

As you can see, 250-8BITMIME is not listed here. From the bit of research I made, I found that most MTAs send this by default. Is it possible that the characters from the German language are causing this problem?

NOTE: This problem did not exist or was never reported until now. No one has made any changes on any settings on the server.

View 2 Replies View Related

Programming :: Get Program Based On Mime-type In C

Feb 10, 2010

I need to launch programs in my program and the program can be a script, a Linux executable or even a Windows executable. The first thing i tried is to use xdg-open from my program, but i can't pass arguments to it, otherwise it would have worked perfectly. Is there maybe a way to determine which program is set as default according to the mime-type of the program i want to launch? I also tried kfmclient and gnome-open, they don't allow arguments either.

View 2 Replies View Related

Debian :: Processing Triggers For Shared MIME Info

Sep 30, 2010

After entering an aptitude command: Processing triggers for shared-mime-info ...
Unknown media type in type 'all/all'
Unknown media type in type 'all/allfiles'
Unknown media type in type 'uri/mms'
Unknown media type in type 'uri/mmst'
Unknown media type in type 'uri/mmsu'
Unknown media type in type 'uri/pnm'
Unknown media type in type 'uri/rtspt'
Unknown media type in type 'uri/rtspu'
Unknown media type in type 'fonts/package'
Unknown media type in type 'interface/x-winamp-skin'

Note that '/usr/share' is not in the search path set by the XDG_DATA_HOME and XDG_DATA_DIRS
environment variables, so applications may not be able to find it until you set them. The
directories currently searched are:
- /root/.local/share
- /opt/kde/share
- /opt/kde/share
-
Processing triggers for hicolor-icon-theme ...

View 4 Replies View Related

OpenSUSE :: Changing MIME/application Association For Firefox In KDE?

Jun 1, 2011

How can I change the MIME/application associations in KDE so that Firefox and other GTK apps see these settings. Right now in Firefox, PDFs open in GIMP and directories in easytag.

View 9 Replies View Related

Server :: Apache MIME Icons Is Missing - Slackware 13.1

Mar 5, 2011

Apache 2.2 on Slackware 13.1 seems to be missing the MIME icons when i visit a directory containing files.

This command returned nothing related to httpd

Code:
find | grep /icons

Where do i find the icons and how do i enable them ?

View 2 Replies View Related

Slackware :: Mime Type Associations For Office Files

Oct 22, 2009

I installed MS office 2003 via wine on Slackware 13. I need to know how to associate files with the right Office (msword, msexcel, msppt) program. I made launcher scripts that can launches office files from the CL, but the user on this computer will want to be able to just double click a file in dolphin and have the right office program come up.For some reason all office files show up as x-ole-storage instead of application/msword or something similar. So, even if I tell Excel to associate with that file, it will do it for Word and PowerPoint files as well.

.ppt, .doc, and .xls extensions were configured via the KDE file associations panel, but this did not help. I played around with the raw files under ~/.local/share, but I did not find the solution.The version of WINE is 1.1.24 (built from SBo SlackBuild).

View 2 Replies View Related

CentOS 5 :: MIME Lite Installation Always Produces Error

Mar 18, 2009

I'm still a newbie when it comes to *nixes so these might be easy for some of you here is my problem I tried installing MIME::Lite using CPAN but it always produces an error so it doesn't continue, any other way to install it...

View 1 Replies View Related

CentOS 5 :: Run Software Update And It Can't Find Magic.mime / Where Does It Need To Be?

Aug 3, 2009

This should be simple. I am trying to run the software update. It goes through and finds the dependencies,
but comes back and says it can't find magic.mime. I see it in two locations under /usr/share. Where does it
need to be?

View 1 Replies View Related

CentOS 5 :: Java GNOME Mime Installation Error

Jan 8, 2011

I am experiencing issues when installing a software package, receiving the following error codes within .../install/logs/log.txt

"percent complete: 98%"
"...../JDK/jre.pak/repository/package.java.jre/java/jre/lib/desktop/icons/HighContrastInverse/16x16/mimetypes/gnome-mime-application-x-java-archive.png (No such file or directory)
"The file java/jre/lib/desktop/icons/HighContrastInverse/16x16/mimetypes/gnome-mime-application-x-java-archive.png could not be replaced"

From looking in the specified directory I can see that this file does not exist, however I am unable to simply create or copy a file with the required name to resolve this issue. Is this a known error, or is my install package simply missing the needed files; even though I managed to successfully install this package a few days earlier onto the same system.

View 1 Replies View Related

Ubuntu Security :: There Is No Application Installed For PGP / MIME-encrypted Message Header Files

May 22, 2010

I recently had to reinstall ubuntu, so I backed up both my ~.gnupgp and ~.gnome2 folders and copied them over in the new installation. My old keys show up just fine in the password manager, but when I attempt to open a file encrypted with one of them, I get the error: "Could not display (name of file): There is no application installed for PGP/MIME-encrypted message header files"

View 1 Replies View Related

Ubuntu :: Xdg-mime - Change The Current Association For MS Word Documents From Kword To Openoffice

Jan 11, 2011

I am trying to change the current association for MS word documents from Kword to openoffice. I guess I'm following closely the indicated step in the manual, i.e.: ~ xdg-mime default openoffice.org-writer.desktop application/msword but when I check it I get this: ~ xdg-mime query default application/msword kword.desktop

View 1 Replies View Related

Ubuntu :: (GNOME) Thunderbird For Two Users - "Thunderbird Is Already Running But Is Not Responding"

Sep 9, 2010

I run version 10.04 GNOME. My problem is (after substantial searching) that I need to have both users ('juliusz' and 'sarah') running Thunderbird but with the same profile (settings, email, accounts etc. preferably of 'juliusz'). The only results on the internet are share Thunderbird between Windows and Ubuntu.

I have two users juliusz and sarah. I need either of them to have the same profile, always in synch whenever they logon to own account. When I tried to edit sarah's /home/sarah/.mozilla-thunderbird/profile.ini by inserting: Path=/home/juliusz/.mozilla-thunderbird/xxxxxxx.default after i run Thunderbird for 'sarah' I get message: "Thunderbird is already running, but is not responding. To open a new window, you must first close the existing Thunderbird process, or restart your system." I checked with "ps aux" there is no Thunderbird running in sarah's session. There is no Thunderbird running in juliusz's session when I reloged to juliusz.

View 5 Replies View Related

Software :: Extract Mime-encoded From Broken Email Messages ?

May 6, 2010

Within Evolution, the message body is blank but there is an attachment. This attachment may itself be blank or broken in some way.

If I can alter settings as recipient so that these fractured messages don't happen, terrific. If there is some SaveAs & filter that will let me extract the content, that is good too. If there are settings that the sender might enable on their end, I could always ask, but I'd still need that filter.

I routinely get email with "attachments" . These attachments are supposed to be other messages being forwarded to me. These 2nd, 3rd, ... level messages are routinely broken somehow so that I cannot read them with Evolution or Thunderbird. I can save as mumble.eml and scan with a text editor, but then I find large block of mime-encoded content that is often some sort of image file: JPG, PNG, PDF etc.

View 2 Replies View Related

Slackware :: Mime Type Error Opening Dolphin And Other Kde 4.4 Applications

Feb 11, 2010

I did a clean installation of KDE 4.4 Alien bob`s packages and when I open the dolphin, for example, appears this error:

The icons and directories are all on blank...

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved