Initial commit
This commit is contained in:
commit
d3c6e29902
202 changed files with 3909 additions and 0 deletions
23
generate_mutt_mailboxes
Executable file
23
generate_mutt_mailboxes
Executable file
|
|
@ -0,0 +1,23 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Nico Schottelius <nico@schottelius.(net|org)>
|
||||
# Date: June 2003
|
||||
# Last Modified: 13 Mar 2004
|
||||
#
|
||||
# generate mutt compatibel mailboxe entries
|
||||
# usage: generate_mutt_mailboxes > ~/.mutt/mailboxes
|
||||
# (and 'source ~/.mutt/mailboxes' in .muttrc)
|
||||
#
|
||||
|
||||
echo 'set folder="~/Maildir"'
|
||||
|
||||
if [ -f ~/.mutt/important_mailboxes ]; then
|
||||
cat ~/.mutt/important_mailboxes
|
||||
fi
|
||||
|
||||
find ~/Maildir/ -type d -name new | \
|
||||
sed -e "s,$HOME/Maildir/,mailboxes +,g" \
|
||||
-e 's,new$,,g' \
|
||||
-e s'/mailboxes +postponed\///g' \
|
||||
-e 's/mailboxes +$//g' | \
|
||||
grep -v '^$'
|
||||
Loading…
Add table
Add a link
Reference in a new issue