config: sort account folders

directory list depends on these being sorted
This commit is contained in:
Chris Kinniburgh 2019-06-05 12:48:00 -05:00 committed by Drew DeVault
parent 0771eaf24c
commit 6c6bb4c893
1 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,7 @@ import (
"os/exec"
"path"
"regexp"
"sort"
"strings"
"unicode"
@ -122,7 +123,9 @@ func loadAccountConfig(path string) ([]AccountConfig, error) {
}
for key, val := range sec.KeysHash() {
if key == "folders" {
account.Folders = strings.Split(val, ",")
folders := strings.Split(val, ",")
sort.Strings(folders)
account.Folders = folders
} else if key == "source-cred-cmd" {
account.SourceCredCmd = val
} else if key == "outgoing" {