strip $HOME and ~ from Mailbox paths

This commit is contained in:
Oswald Buddenhagen 2004-04-26 14:09:46 +00:00
parent 2e8181a8d8
commit 7ff8eef06c

View File

@ -119,6 +119,13 @@ load_config( const char *path, config_t ***stor )
cfg = **stor = nfmalloc( sizeof(config_t) );
*stor = &cfg->next;
memcpy( cfg, &global, sizeof(config_t) );
if (val[0] == '~' && val[1] == '/')
val += 2;
else {
int l = strlen( Home );
if (!memcmp( val, Home, l ) && val[l] == '/')
val += l + 1;
}
/* not expanded at this point */
cfg->path = nfstrdup( val );
} else if (!strcasecmp( "OneToOne", cmd )) {