search for: maildir_is_valid_create_name

Displaying 1 result from an estimated 1 matches for "maildir_is_valid_create_name".

2007 Jul 25
2
Allowing tilde at start of mailbox names
In lib-storage/index/maildir/maildir-storage.c maildir_is_valid_create_name() and maildir_is_valid_existing_name() the following sequence of tests appear but I don't really understand why if ((storage->flags & MAIL_STORAGE_FLAG_FULL_FS_ACCESS) != 0) return TRUE; if (*name == '~' || strchr(name, '/') != NULL) return FALSE; If MAIL_STORAGE...