aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/importer/importer.go')
-rw-r--r--pkg/importer/importer.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkg/importer/importer.go b/pkg/importer/importer.go
index a989238..379332c 100644
--- a/pkg/importer/importer.go
+++ b/pkg/importer/importer.go
@@ -14,7 +14,9 @@ func FullImport() {
return err
}
if !info.IsDir() && getDepth(path, config.MailDirPath()) >= 1 {
- importMail(info.Name(), path, config.MailDirPath())
+ if isPublicList(path) {
+ importMail(info.Name(), path, config.MailDirPath())
+ }
}
return nil
})