cruxports/mblaze
2024-09-17 11:26:33 +00:00
..
.footprint added 60 ports 2022-02-05 15:39:19 -05:00
.signature mblaze: clean up README 2024-09-17 11:26:33 +00:00
mailshow added 60 ports 2022-02-05 15:39:19 -05:00
mcom.patch mblaze: clean up README 2024-09-17 11:26:33 +00:00
mdelete.1 added 60 ports 2022-02-05 15:39:19 -05:00
mdeliver.patch mblaze: 1.2 -> 1.3 2024-09-14 19:53:07 +00:00
mmime.patch mblaze: 1.2 -> 1.3 2024-09-14 19:53:07 +00:00
Pkgfile mblaze: 1.2 -> 1.3 2024-09-14 19:53:07 +00:00
README mblaze: clean up README 2024-09-17 11:26:33 +00:00

Set LANG to something other than "en_*" if you want to keep the original
design, quoted-printable encoding, instead of this repository's preference, 
format=flowed. The patched mmime.c is best accompanied by adjustments in
your editor to ensure that trailing whitespace is in the right place. For
example, in ~/.vimrc:

function! FixIndented()
	" remove spaces at end of indented lines
	silent! %s/^\s.*\zs \+$//
endfunction

function! TextFlowed()
	setl tw=72
	setl fo+=w
	setl nojs
	setl nosmartindent
	setl list
	set listchars=trail:•
endfunction

autocmd BufRead,BufNewFile */sent/cur/* call TextFlowed()
autocmd BufRead,BufWritePre */sent/cur/* call FixIndented()