diff options
author | Eray Aslan <eras@gentoo.org> | 2021-12-27 08:34:48 +0300 |
---|---|---|
committer | Eray Aslan <eras@gentoo.org> | 2021-12-27 08:34:48 +0300 |
commit | 1a1eb2dfdfd41ba2eb9a5416e1b6f445fe00028d (patch) | |
tree | e2530bfd32d889bd8ff66b8930c2a58be13d9468 /net-mail/mailbase/files | |
parent | dev-python/typing-extensions: Remove old (diff) | |
download | gentoo-1a1eb2dfdfd41ba2eb9a5416e1b6f445fe00028d.tar.gz gentoo-1a1eb2dfdfd41ba2eb9a5416e1b6f445fe00028d.tar.bz2 gentoo-1a1eb2dfdfd41ba2eb9a5416e1b6f445fe00028d.zip |
net-mail/mailbase: remove wildcards from mailcap
as noted in mailcap(5):
Note that wildcards may only be specified in the subtype (e.g.
"*" or "*/*" do not work), and as the entire subtype (e.g.
"application/x-*" does not work)
wildcards were introduced in the hope that they might be useful for some
programs. however, some mailers reportedly error out with:
s-nail: $MAILCAPS: /etc/mailcap: skip due to error: invalid MIME type: */*
so, just remove */* wildcards from mailcap
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Eray Aslan <eras@gentoo.org>
Diffstat (limited to 'net-mail/mailbase/files')
-rw-r--r-- | net-mail/mailbase/files/mailcap-r3 | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-mail/mailbase/files/mailcap-r3 b/net-mail/mailbase/files/mailcap-r3 new file mode 100644 index 000000000000..fe717f34e0b0 --- /dev/null +++ b/net-mail/mailbase/files/mailcap-r3 @@ -0,0 +1,30 @@ +# Database binding MIME types to programs that can process them. +# This file is generally used by mail clients to view attachments. +# +# Users should add their own rules to their ~/.mailcap file. That file will be +# processed first before falling back to this one. +# +# For more information, see the mailcap(5) man page. + +# NB: Do not quote %s. Clients will handle expanding it with proper quoting, +# so adding quotes ourselves just confuses things. + +application/pdf; xdg-open %s; needsterminal +application/postscript; xdg-open %s; needsterminal +application/x-info; info --subnodes -o /dev/stdout -f %s 2>/dev/null; copiousoutput; description=GNU Info document +application/x-gtar; tar tvzf -; print=tar tvzf - | print text/plain:-; copiousoutput +application/x-tar; tar tvf -; print=tar tvf - | print text/plain:-; copiousoutput +application/x-troff-man; nroff -mandoc -Tutf8; copiousoutput; print=nroff -mandoc -Tutf8 | print text/plain:- +# It'd be nice to limit this to compressed formats (e.g. x-*), but the file +# format doesn't support that, and less has good fallbacks already. +application/*; less %s; copiousoutput; needsterminal + +audio/*; xdg-open %s; needsterminal +image/*; xdg-open %s; needsterminal + +text/html; lynx -dump -assume_charset=%{charset} %s; copiousoutput; description=HTML Text; nametemplate=%s.html +text/troff; man -l %s; needsterminal; description=Man page +text/*; less %s; needsterminal +text/*; gview %s; edit=gvim -f %s; compose=gvim -f %s; test=test "$DISPLAY" != "" +text/*; view %s; edit=vim %s; compose=vim %s; needsterminal +text/*; more %s; needsterminal |