From de9637c9d2e672a04d08e63d9e76eab82c04d908 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Mon, 1 Jun 2015 09:04:46 -0700 Subject: [PATCH] fix the path to find --- .muttrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.muttrc b/.muttrc index 57afd9b..4e69717 100644 --- a/.muttrc +++ b/.muttrc @@ -488,10 +488,10 @@ macro generic ,an my_hdr "From: Don Armstrong " ## and to allow replying to them with the command "list-reply". ## The first part of the address (up to the @) should be used here. unlists * # remove old entries first -lists `find Mail/lists Mail/bugs -mindepth 1 -maxdepth 1 -type d -printf '%f\n'` +lists `find ~/Mail/lists Mail/bugs -mindepth 1 -maxdepth 1 -type d -printf '%f\n'` unsubscribe * -subscribe `find Mail/lists Mail/bugs -mindepth 1 -maxdepth 1 -type d -printf '%f\n'` +subscribe `find ~/Mail/lists Mail/bugs -mindepth 1 -maxdepth 1 -type d -printf '%f\n'` ## "mailboxes" defines the list of folders to be checked for new mail ## Mutt both can show the number of mailboxes with new mail in the index and @@ -502,8 +502,8 @@ mailboxes +bdo_role mailboxes +buildd_don mailboxes +0_ldo_role mailboxes +oftc -mailboxes `find ~Mail/lists -mindepth 1 -maxdepth 1 -type d -printf '+lists/%f\n'` -mailboxes `find ~Mail/bugs -mindepth 1 -maxdepth 1 -type d -printf '+bugs/%f\n'` +mailboxes `find ~/Mail/lists -mindepth 1 -maxdepth 1 -type d -printf '+lists/%f\n'` +mailboxes `find ~/Mail/bugs -mindepth 1 -maxdepth 1 -type d -printf '+bugs/%f\n'` # integration with org mode macro index \eR "|~/bin/remember_mail\n" -- 2.39.5