+++ /dev/null
-#
-# Automatically use entries from mailcap to view these MIME types
-#
-#auto_view text/richtext text/html text/x-sgml text/x-vcard text/x-sh \
-# text/x-csrc text/tex text/-xtex text/english \
-# application/x-tex application/x-dvi \
-# application/x-gzip-dvi application/x-diff-gzip application/x-gzip \
-# application/x-gunzip application/x-bzip2 \
-# application/x-cpio application/x-gtar \
-# application/x-tar application/x-tar-gz application/x-rar-compressed \
-# application/x-zip-compressed application/zip application/x-csh \
-# application/x-sh application/x-script application/x-shellscript \
-# application/x-latex application/x-tex application/x-shar \
-# application/x-troff application/x-troff-man application/x-troff-me \
-# application/msword \
-# application/ms-tnef application/ms-word application/rtf \
-# application/octet-stream application/x-tcl application/x-perl \
-# application/x-debian-package message/partial \
-# application/octet-stream text/x-vcard text/x-c \
-# application/x-perl application/rtf
-#
-#
-#alternative_order text/enriched text/plain text/html
-auto_view text/x-vcard
-auto_view text/html
+++ /dev/null
-#
-# Bind
-# NB 04.09.01 bind generic "\e<" first-entry # emacs-like bindings for moving to top/bottom
-# NB 04.09.01 bind generic \e> last-entry
-bind generic { top-page
-bind generic } bottom-page
-bind generic \177 last-entry
-bind pager G bottom # just like vi and less
-
-# casse ou lie les threads
-# NB 03.09.01 prochaine version!!! bind index ½ break-thread # for 1.3.x patched
-# NB 03.09.01 prochaine version!!! bind index & link-threads # for 1.3.x patched
+++ /dev/null
-charset-hook windows-1250 CP1250
-charset-hook windows-1251 CP1251
-charset-hook windows-1252 CP1252
-charset-hook windows-1253 CP1253
-charset-hook windows-1254 CP1254
-charset-hook windows-1255 CP1255
-charset-hook windows-1256 CP1256
-charset-hook windows-1257 CP1257
-charset-hook windows-1258 CP1258
-
-# charset-hook x-unknown iso-8859-15
-# NB 04.12.17 set charset="utf-8"
-# NB 04.12.17 set assumed_charset="utf-8"
-# NB 04.12.17 set locale="en_US.UTF-8"
-# NB 04.12.17 set config_charset="utf-8"
-# NB 04.12.17 set send_charset="utf-8"
-set rfc2047_parameters
-
-# Use sendmail-s flag "-B8BITMIME"
-set use_8bitmime
-
-# Ascii instead of curses
-set ascii_chars
+++ /dev/null
-# couleurs generales
-#color hdrdefault black white
-#color normal black white
-# selection
-#color indicator brightyellow red
-
-color indicator black cyan
-# etat
-color status white blue
-# email
-#color header brightblue default "[^<@ :]+@[a-zéèàûô]+\.[a-z]"
-#color body brightblue default "[^<@ :]+@[a-zéèàûô]+\.[a-z]"
-# url
-#color body brightblue default "\\w+://[^ \\'\\>]+"
-#color header brightblue default "\\w+://[^ \\'\\>]+"
-
-## Color definitions
-#color normal white black
-color normal default default
-#color hdrdefault red default
-#color quoted brightblue default
-#color quoted1 cyan black
-#color quoted2 green black
-#color quoted3 cyan black
-color signature red default
-
-#color error brightred default
-#color tree magenta default # the thread tree in the index menu
-#color tilde magenta default
-#color message brightcyan default
-#color markers brightcyan default
-color attachment brightblue default
-#color search default green # how to hilite search patterns in the pager
-#
-color header brightyellow default ^(From):
-color header brightmagenta default ^(To):
-color header brightmagenta default ^(Delivered-To)
-color header brightred default ^(Subject):
-color header brightgreen default ^(x-mailer)
-color header brightblue default ^(X-Spam-)
-color body brightblue default "(ftp|http|https)://[^ ]+" # point out URLs
-color body brightblue default [-a-z_0-9.]+@[-a-z_0-9.]+ # e-mail addresses
-#color underline brightgreen default
-#
-#color index magenta black '(~n 1-1)'
-#color index green black '(~n 2-2)'
-#color index white black '(~n 3-7)'
-#color index brightblue black '(~n 8-8)'
-#color index brightred black '(~n 9-9)'
-#color index red black '(~n 10-99)'
-#
-## Colour mutt-dev CVS commit emails brightblue on black
-## color index brightblue black '(~s"\[\d4-\d2-\d2\] CVS commit messages")'
-#
-## gnupg coloring (source: kris kennaway <kris@obsecurity.org>)
-#color body green black "^gpg: Good signature from"
-#color body brightred black "^gpg: Bad signature from"
-#color body brightred black "^gpg: BAD signature from"
-#color body brightred black "^gpg: Note: This key has expired!"
-#color body brightyellow black "^gpg: WARNING: This key is not certifi ed with a trusted signature!"
-#color body brightyellow black "^gpg: There is no indication that the signature belongs to the owner."
-#color body brightyellow black "^gpg: can't handle these multiple signatures"
-#color body brightyellow black "^gpg: signature verification suppressed"
-#color body brightyellow black "^gpg: invalid node with packet of type"
+++ /dev/null
-#!/bin/bash
-tmp="/tmp/decode-charset.sh.$$.tmp"
-if [ -z "$1" ]; then
- cat > $tmp
- file=$tmp
-else
- file=$1
-fi
-
-if [ -z "$2" ]; then
- charsetO="utf-8"
- #charsetO="iso-8859-1"
-else
- charsetO=$2
-fi
-
-charsetI=`file "$file"|perl -pe 's/^.*?: //;$_=lc($_)'`
-echo $charsetI
-
-cmd="cat"
-case $charsetI in
- *$charsetO*) ;;
- *iso-8859*) cmd="iconv -f iso-8859-1 -t $charsetO" ;;
- # *ascii*) cmd="iconv -f iso-8859-1 -t $charsetO" ;;
- # *ascii*) cmd="iconv -f utf-8 -t iso-8859-1" ;;
- *utf-8*) cmd="iconv -f utf-8 -t $charsetO" ;;
- #*utf-8*) cmd="iconv -f utf-8 -t $charsetO" ;;
- *) cmd="iconv -f iso-8859-1 -t $charsetO" ;;
- #*) echo Unknow: $charsetI ;;
-esac
-$cmd $file
-#$cmd $file|head
-echo "$0: [$charsetI => $charsetO]: $cmd $file" >> /tmp/debug
-
-rm -f $tmp
+++ /dev/null
-#Type: boolean
-#Default: yes
-#
-#Controls the display of wrapped lines in the internal pager. If set, a
-#``+'' marker is displayed at the beginning of wrapped lines. Also see the
-#``$smart_wrap'' variable.
-unset markers
-
-# essaye de 'wrapper' de maniere intelligente
-set smart_wrap
-
-# ne pas passer au message suivant a la fin du message
-set pager_stop
-
-# Sort Mode
-set sort=reverse-date
-#set sort=date
-#set sort=threads/reverse-date
-
-# scroll plutot que par pages
-set menu_scroll
-
-# Progress bar when opening/closing mailboxes
-set read_inc=25
-set write_inc=25
-
-# inclut tout le header
-#set header
-
-# NB remplace hdr_format
-#set hdr_format="%4C %Z [%-2M] %{%d/%m} %-15.15F (%4c) %s"
-#set hdr_format="%Z %3C %{%b %d} %-15t %-19.19L (%5c) %s"
-
-#set index_format="%Z %3C %{%d/%m} %-30.30t %-30.30a (%5c) %s"
-#set index_format="%Z %3C %{%d/%m} %-30.30a %5c %s"
-
-set index_format="%3C %Z %{%d/%m} %-30.30a %-30.30t %s"
-
-#set folder_format="%2C %N [ %-20f ] [ %2d ] [ %-8s ]"
-
-set forw_format="fwd: %s"
-
-set date_format = "!%a, %b %d, %Y at %I:%M:%S%p"
-
-set attribution = "On %d, %n wrote:"
-#set attribution = "Le %d, %n a écrit:"
-
-# NB 03.09.01 prochaine version!!! set attach_format="%u%D%t%2n %T%.40d%> [%.7m/%.10M, %.6e, %s] "
-
-# Page bottom line
-set status_format="[box%f] [new=%n | delete=%d | tagged=%t | size=%l] %> (%P) [%M/%m messages]"
-
-# Msg bottom line
-set pager_format="[%C/%m | %c] (%s) %> [%lL]"
-
-# Top "help" line
-set help=no
+++ /dev/null
-# Editor
-set editor="vim -c 'set noautoindent tw=72'"
-
-# Go directly in editor when new email
-set autoedit
-
-# Let me edit the message header when composing
-set edit_headers
-
-# Virtuals lines are transform as ~ in vim
-set tilde
+++ /dev/null
-#
-# GPG
-#
-#
-# decode application/pgp
-set pgp_decode_command="gpg %?p?--passphrase-fd 0? --no-verbose --batch --output - %f"
-
-# verify a pgp/mime signature
-set pgp_verify_command="gpg --no-verbose --batch --output - --verify %s %f"
-
-# decrypt a pgp/mime attachment
-set pgp_decrypt_command="gpg --passphrase-fd 0 --no-verbose --batch --output - %f"
-
-# create a pgp/mime signed attachment
-set pgp_sign_command="gpg --no-verbose --batch --output - --passphrase-fd 0 --armor --detach-sign --textmode %?a?-u %a? %f"
-
-# create a application/pgp signed (old-style) message
-set pgp_clearsign_command="gpg --no-verbose --batch --output - --passphrase- fd 0 --armor --textmode --clearsign %?a?-u %a? %f"
-
-# create a pgp/mime encrypted attachment
-set pgp_encrypt_only_command="pgpewrap gpg -v --batch --output - --encrypt --textmode --armor --always-trust -- -r %r -- %f"
-
-# create a pgp/mime encrypted and signed attachment
-set pgp_encrypt_sign_command="pgpewrap gpg --passphrase-fd 0 -v --batch --output - --encrypt --sign %?a?-u %a? --armor --always-trust -- -r %r -- %f"
-
-# import a key into the public key ring
-set pgp_import_command="gpg --no-verbose --import -v %f"
-
-# export a key from the public key ring
-set pgp_export_command="gpg --no-verbose --export --armor %r"
-
-# verify a key
-set pgp_verify_key_command="gpg --no-verbose --batch --fingerprint --check-sigs %r"
-
-# read in the public key ring
-set pgp_list_pubring_command="gpg --no-verbose --batch --with-colons --list-keys %r"
-
-# read in the secret key ring
-set pgp_list_secring_command="gpg --no-verbose --batch --with-colons --list-secret-keys %r"
-
-# receive key from keyserver:
-set pgp_getkeys_command=""
+++ /dev/null
-#
-# HEADER
-# vire tout
-ignore *
-# mais montre moi ça
-unignore from:
-unignore to
-unignore cc
-unignore bcc
-unignore subject
-unignore date
-unignore organization
-unignore x-mailer
-unignore user-agent
-unignore x-url
-unignore X-GPG-Fingerprint
-unignore X-PGP-Fingerprint
-unignore X-Spam-
-unignore Delivered-To
-
-# spécifie l'ordre des headers dans les messages
-# supprime tout
-# NB 03.09.01 prochaine version!!! unhdr_order *
-# mais montre ça
-hdr_order date from subject to cc bcc
-
-my_hdr X-Operating-System: `uname`/`uname -r` (`uname -m`)
+++ /dev/null
-# bZip2
-open-hook \\.bz2$ "bzip2 -cd %f > %t"
-close-hook \\.bz2$ "bzip2 -c %t > %f"
-append-hook \\.bz2$ "bzip2 -c %t >> %f"
-
-# Gzip
-open-hook \\.gz$ "gzip -cd %f > %t"
-close-hook \\.gz$ "gzip -c %t > %f"
-append-hook \\.gz$ "gzip -c %t >> %f"
+++ /dev/null
-#
-# macros
-macro index \cb |urlview\n # simulate the old browse-url function
-# NB 03.09.01 ne fonctionne pas!!! macro compose I '<enter-command>set ispell="aspell --language-tag=fr -c --mode=email" <enter><ispell>' 'Run aspell with French dictionary'
-
-macro index S s+spam\n
-macro pager S s+spam\n
-
-macro attach S <save-entry><bol>~/tmp/attach/<eol>
+++ /dev/null
-application/octet-stream; mutt.octet.filter %s; copiousoutput
-
-
-#################################################################################
-#
-# HTML
-#
-#text/html; links -dump %s; copiousoutput; nametemplate=%s.html
-#application/x-html; links -dump %s; copiousoutput; nametemplate=%s.html
-
-text/html ; lynx -hiddenlinks=ignore -assume_charset=%{charset} -width=$(stty size|awk '{print $2-10}') -dump %s; copiousoutput; nametemplate=%s.html
-application/x-html; lynx -hiddenlinks=ignore -assume_charset=%{charset} -width=$(stty size|awk '{print $2-10}') -dump %s; copiousoutput nametemplate=%s.html
-
-#################################################################################
-#
-# Office
-#
-
-# RTF
-application/octet-stream; unrtf %s; exts=rtf,RTF; copiousoutput
-
-# DOC
-application/octet-stream; catdoc %s; exts=doc,DOC; copiousoutput
-application/msword; catdoc %s; copiousoutput
-# NB 31.10.13 application/octet-stream; xplay %s; exts=doc,DOC
-# NB 31.10.13 application/msword; xplay %s
-
-# XLS
-application/octet-stream; `echo "$NB_ROOT"`/etc/mutt/view.sh xls %s; exts=xls,XLS; copiousoutput
-application/msexcell; `echo "$NB_ROOT"`/etc/mutt/view.sh xls %s; copiousoutput
-application/msexcel; `echo "$NB_ROOT"`/etc/mutt/view.sh xls %s; copiousoutput
-application/vnd.ms-excell; `echo "$NB_ROOT"`/etc/mutt/view.sh xls %s; copiousoutput
-application/vnd.ms-excel; `echo "$NB_ROOT"`/etc/mutt/view.sh xls %s; copiousoutput
-
-#application/vnd.ms-powerpoint; ppt2txt.sh %s; copiousoutput
-#application/octet-stream; ppt2txt.sh %s; exts=ppt,PPT; copiousoutput
-application/vnd.ms-powerpoint; xplay %s; exts=ppt,PPT
-application/octet-stream; xplay %s; exts=ppt,PPT
-unknown/unknown; xplay %s; exts=ppt,PPT
-
-application/rar; rar v %s; copiousoutput
-
-#################################################################################
-#
-# TXT
-#
-application/x-sh; cat %s; copiousoutput
-application/x-tex; cat %s; copiousoutput
-text/x-c; cat %s; copiousoutput
-
-#################################################################################
-#
-# PDF
-#
-#application/octet-stream; xplay %s -; exts=pdf,PDF
-#application/pdf; xplay %s
-#application/postscript; xplay %s
-application/octet-stream; pdftotext %s -; exts=pdf,PDF; copiousoutput
-application/pdf; pdftotext %s -; copiousoutput
-application/postscript; gv %s
-
-#################################################################################
-#
-# Images
-#
-application/octet-stream; xplay %s; exts=gif,GIF,jpg,JPG,jpeg,JPEG,png,PNG,bmp,BMP
-image/gif; xplay %s
-image/pjpeg; xplay %s
-image/jpeg; xplay %s
-image/jpg; xplay %s
-image/png; xplay %s
-image/bmp; xplay %s
-
-#################################################################################
-#
-# Media
-#
-application/octet-stream; xplay %s; exts=mp3,MP3,ogg,OGG,mpeg,MPEG,mpg,MPG,wma,WMA,mp4,MP4,wav,WAV,wmv,WMV
-audio/mp3;xplay %s
-audio/mp4;xplay %s
-audio/mpeg;xplay %s
-video/mpeg;xplay %s
-audio/mpegurl;xplay %s
-audio/scpls;xplay %s
-audio/x-mp3;xplay %s
-audio/x-mpeg;xplay %s
-audio/x-mpegurl;xplay %s
-audio/x-scpls;xplay %s
-audio/x-wav; xplay %s; exts=wav,WAV
-video/x-ms-wmv; xplay %s; exts=wmv,WMV
-
-
-#################################################################################
-#
-# ZIP
-#
-
-application/x-tar-gz; tar tzf %s; copiousoutput
-application/x-gzip; gunzip -c %s; copiousoutput
-
-application/octet-stream; unzip -l %s; exts=zip,ZIP; copiousoutput
-application/x-zip-compressed; unzip -l %s; copiousoutput
-application/x-zip; unzip -l %s; copiousoutput
-application/x-unknown-content-type-WinZip; unzip -l %s; copiousoutput
-application/zip; unzip -l %s;copiousoutput
-
-application/octet-stream; rar v %s; exts=rar,RAR; copiousoutput
-
-#################################################################################
-#
-# Others
-#
-
-# NB 12.06.13 application/octet-stream; less %s; exts=log
-application/octet-stream; xplay %s
-
-text/x-vcard; mutt.vcard.filter; copiousoutput
-#text/x-vcard; cat %s; copiousoutput
-#text/x-vcard; /usr/bin/mutt.vcard.filter; copiousoutput
-
-#application/pgp-signature; cat %s; copiousoutput
-#application/x-perl; cat %s; copiousoutput
+++ /dev/null
-# voir http://mutt.org/doc/manual/manual-4.html#pattern pour les expressions
-
-
-#score ~fcedric.gavage@unixtech\.be 8
-#score ~fbenoit.joseph@teledisnet\.be 9
-#score ~fdash@linuxbe\.org 9
-#score ~fbinny@baby-linux\.net 10
-#score ~fbinny@freegates\.be 10
-
-#score ~s'bug#' 2
-#score ~s'"CVS commit messages"' 2
+++ /dev/null
-Nicolas Boisselier
+++ /dev/null
-#!/usr/bin/env bash
-#################################################################################
-#
-# NB 25.10.13 - (C) 2013 Nicolas Boisselier
-# ~/.mutt/view.sh
-#
-#################################################################################
-TYPE="$1"
-FILE="$2"
-
-case "$TYPE" in
-
- xls)
- xls2csv -q 0 -d utf-8 -c $'\t' "$FILE"
- ;;
-
- *)
- echo "Unknow type: $TYPE at $0!" >&2
- exit -1
- ;;
-
-esac
+++ /dev/null
-##############################################################################
-#
-# ~/.muttrc
-#
-##############################################################################
-# Reset previous copnfig
-reset all
-
-set use_from = yes
-
-# for 'From" and "Return-Path" header
-set envelope_from="yes"
-
-# Edit mail
-set fast_reply
-
-set sendmail="/usr/sbin/sendmail -oem -oi"
-
-# Stop asking to "move read messages to mbox"!
-set move = no
-
-# curseur sur message selectione
-# remplacer la grande barre par ->
-set noarrow_cursor
-
-# ispell
-set ispell="/usr/bin/ispell --mode=email check"
-
-# ne pas me rendre cingle avec 100000 confirmations laisser a no, pour que les
-# messages non lu ne soient pas efface à la sortie de mutt
-# No confirmation to delete no readed messages at exit
-set noconfirmappend
-
-# keep copy of sent emails in 'outbox'
-set copy=yes
-
-# purge deleted messages without confirmation
-set delete=yes
-
-# Always include the message in replied email
-set include
-
-# use message/rfc822 lors des replies/fwd
-set mime_forward
-#set mime_forward_decode
-
-# et fwd le reste
-#set mime_forward_rest
-
-# faut-il mettre le $indent_string lors d'un fwd ?
-set noforward_quote #= no
-
-# pour signaler le message original
-set indent_string="> "
-
-# pour signaler la fin du message original
-#set post_indent_string='---end quoted text---'
-
-# comment identifier les replies par le sujet
-set reply_regexp='^((([Rr][Ee])(\[[0-9]+\])?: *)?(\[[^]]+\] *)?)*'
-#set reply_regexp="^((([Rr][Ee])([\\[0-9\\]+])*|aw):[ \t]*)+[ \t]*"
-
-# ne pas marquer qu'un mail est vieux
-set nomark_old
-
-# la duree entre les checks de nouveaux messages
-set mail_check=10
-
-# ne pas m'inclure lors d'un reply
-set metoo
-set nofollowup_to #=no
-
-#
-# PRINT
-# me demander la confirmation
-set print=ask-yes
-# utiliser muttprint pour imprimer
-#set print_command="muttprint"
-#set print_command="/home/binny/.mutt/emailprint.pl"
-
-# ask me for a command after the external pager exits (?)
-set noprompt_after
-
-# toujours utiliser l'adresse reply-to si presente
-set reply_to
-
-# utiliser mon adresse comme elle apparait dans les message
-set reverse_name
-
-# supprimer la boite quand il n'y a pas de mail dedans
-set save_empty
-# NB 04.09.01 set nosave_empty
-
-set sig_dashes # = yes
-
-# NB 15.02.12 set sort=threads
-# NB 15.02.12 set sort_aux = reverse-date
-# NB 15.02.12 set strict_threads
-
-# comment montrer les sous-threads
-set sort_aux=reverse-date-received
-
-# Specifies how to sort entries in the file browser. By default, the entries are sorted alphabetically.
-set sort_browser=alpha
-
-# ne pas mettre les adresses locales avec le domaine
-set nouse_domain
-
-#
-# GPG
-# NB 03.09.01 a reactiver!!! source `echo "$NB_ROOT"`/etc/mutt/gpg.rc
-# 'autosigne' les mails
-#set pgp_autosign=yes
-# verifier les signatures
-# NB 03.09.01 prochaine version!!! set pgp_verify_sig=yes
-# crypte lors d'une reponse à un mail crypte
-# NB 03.09.01 prochaine version!!! set pgp_replyencrypt
-# signe lors d'une reponse à un mail signe
-# NB 03.09.01 prochaine version!!! set pgp_replysign
-# signe avec cet ID
-# NB 03.09.01 prochaine version!!! set pgp_sign_as=0x4CF164F5
-# hop, un petit timeout sur la passphrase
-# NB 03.09.01 prochaine version!!! set pgp_timeout=300
-
-# comment mutt doit faire les recherches "simples"
-set simple_search = "~f %s | ~s %s"
-
-# ne pas marquer les nouveaux mails non-lus comme etant vieux
-set nomark_old #= no
-
-# si le thread est ferme, mutt ouvrira le thread & jumpera jusqu'au mail non lu
-# NB 03.09.01 prochaine version!!! set uncollapse_jump = yes
-
-# ferme les threads si ils ne contiennent pas de mails non lus
-# NB 03.09.01 prochaine version!!! set collapse_unread = yes
-
-set mailcap_path=`echo "$NB_ROOT"`/etc/mutt/mailcap
-#
-# Sources
-#
-source `echo "$NB_ROOT"`/etc/mutt/charset
-source `echo "$NB_ROOT"`/etc/mutt/editor
-source `echo "$NB_ROOT"`/etc/mutt/display
-source `echo "$NB_ROOT"`/etc/mutt/header
-source `echo "$NB_ROOT"`/etc/mutt/color
-source `echo "$NB_ROOT"`/etc/mutt/bind
-source `echo "$NB_ROOT"`/etc/mutt/macros
-source `echo "$NB_ROOT"`/etc/mutt/autoview
-source `echo "$NB_ROOT"`/etc/mutt/score
-source `echo "$NB_ROOT"`/etc/mutt/hook
-
-# NB 27.04.18: Fix warning message in debian stretch "GPGME: CMS protocol not available"
-set crypt_use_gpgme=no