You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
John McQuah e6ebc99bf6
mblaze: remove the 'Packager' line
10 months ago
..
.footprint added 60 ports 1 year ago
.signature mblaze: remove the 'Packager' line 10 months ago
Pkgfile mblaze: remove the 'Packager' line 10 months ago
README added 60 ports 1 year ago
mailshow added 60 ports 1 year ago
mblaze-delete.patch mblaze: version bump 11 months ago
mblaze-fofl.patch mblaze: version bump 11 months ago
mdelete.1 added 60 ports 1 year ago
reuse-sent.patch mblaze: remove the 'Packager' line 10 months ago

README

If you use the patched mmime to generate format=flowed emails, the

following code added to ~/.vimrc will give you a quick visual check that
the trailing whitespace is in the right place. Adjust the last two
autocommands if you configured a different maildir for drafts of outgoing
messages.

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()