Lines Matching defs:info
15 const char *info;
20 info = strrchr(fname, MAILDIR_INFO_SEP);
21 if (info == NULL || info[1] != '2' || info[2] != MAILDIR_FLAGS_SEP)
24 for (info += 3; *info != '\0' && *info != MAILDIR_FLAGS_SEP; info++) {
25 switch (*info) {
42 if (*info >= MAILDIR_KEYWORD_FIRST &&
43 *info <= MAILDIR_KEYWORD_LAST) {
46 idx = maildir_keywords_char_idx(ctx, *info);
98 const char *info, *oldflags;
101 /* remove the old :info from file name, and get the old flags */
102 info = strrchr(fname, MAILDIR_INFO_SEP);
103 if (info != NULL && strrchr(fname, '/') > info)
104 info = NULL;
107 if (info != NULL) {
108 fname = t_strdup_until(fname, info);
109 if (info[1] == '2' && info[2] == MAILDIR_FLAGS_SEP)
110 oldflags = info+3;