aboutsummaryrefslogtreecommitdiffstats
path: root/commands/account/import-mbox.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/account/import-mbox.go')
-rw-r--r--commands/account/import-mbox.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/commands/account/import-mbox.go b/commands/account/import-mbox.go
index 7aa393b6..e326edce 100644
--- a/commands/account/import-mbox.go
+++ b/commands/account/import-mbox.go
@@ -11,6 +11,7 @@ import (
"git.sr.ht/~rjarry/aerc/app"
"git.sr.ht/~rjarry/aerc/commands"
+ "git.sr.ht/~rjarry/aerc/lib/xdg"
"git.sr.ht/~rjarry/aerc/log"
"git.sr.ht/~rjarry/aerc/models"
mboxer "git.sr.ht/~rjarry/aerc/worker/mbox"
@@ -48,6 +49,8 @@ func (i ImportMbox) Execute(args []string) error {
return errors.New("No directory selected")
}
+ i.Filename = xdg.ExpandHome(i.Filename)
+
importFolder := func() {
defer log.PanicHandler()
statusInfo := fmt.Sprintln("Importing", i.Filename, "to folder", folder)