diff options
author | Luke Smith <luke@lukesmith.xyz> | 2019-02-16 13:14:14 -0500 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2019-02-16 13:14:14 -0500 |
commit | 542ae0081ff3f127689caa0b98fa3543532ce0f3 (patch) | |
tree | 875f0937921b1e88e9980846411e6eb40b841efb /mutt-wizard.sh | |
parent | 8a5ee90a1c481c908e95e887f26051407fe58903 (diff) | |
parent | 76cd73a11e037cde8131e5f645d70522f0e4a6c9 (diff) |
remove msmtprc entry on del
Diffstat (limited to 'mutt-wizard.sh')
-rwxr-xr-x | mutt-wizard.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mutt-wizard.sh b/mutt-wizard.sh index 95ad232..4b8a075 100755 --- a/mutt-wizard.sh +++ b/mutt-wizard.sh @@ -128,7 +128,9 @@ removeAccount() { sed -ie " rm "$muttdir"/accounts/$1.muttrc rm "$muttdir"/credentials/$1.gpg rm -rf "$muttdir"/accounts/$1 - sed -i "/$1.muttrc/d" "$muttdir"/personal.muttrc ;} + sed -i "/$1.muttrc/d" "$muttdir"/personal.muttrc + # Delete from the line matching the account name, until the next account or empty line + sed -i "/account $1/,/^\(\s*$\|account\)/d" ~/.msmtprc ;} manual() { \ imap=$( dialog --inputbox "Insert the IMAP server for your email provider (excluding the port number)" 10 60 3>&1 1>&2 2>&3 3>&- ) |