NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
path_probe()

Does this Mailbox type recognise this path? More...

+ Collaboration diagram for path_probe():

Functions

static enum MailboxType comp_path_probe (const char *path, const struct stat *st)
 Is this a compressed Mailbox? - Implements MxOps::path_probe() -.
 
enum MailboxType imap_path_probe (const char *path, const struct stat *st)
 Is this an IMAP Mailbox? - Implements MxOps::path_probe() -.
 
enum MailboxType maildir_path_probe (const char *path, const struct stat *st)
 Is this a Maildir Mailbox? - Implements MxOps::path_probe() -.
 
enum MailboxType mbox_path_probe (const char *path, const struct stat *st)
 Is this an mbox Mailbox? - Implements MxOps::path_probe() -.
 
static enum MailboxType mh_path_probe (const char *path, const struct stat *st)
 Is this an mh Mailbox? - Implements MxOps::path_probe() -.
 
enum MailboxType nntp_path_probe (const char *path, const struct stat *st)
 Is this an NNTP Mailbox? - Implements MxOps::path_probe() -.
 
enum MailboxType nm_path_probe (const char *path, const struct stat *st)
 Is this a Notmuch Mailbox? - Implements MxOps::path_probe() -.
 
enum MailboxType pop_path_probe (const char *path, const struct stat *st)
 Is this a POP Mailbox? - Implements MxOps::path_probe() -.
 

Detailed Description

Does this Mailbox type recognise this path?

Parameters
pathPath to examine
ststat buffer (for local filesystems)
Return values
enumMailboxType, e.g. MUTT_IMAP
Precondition
path is not NULL

Function Documentation

◆ comp_path_probe()

static enum MailboxType comp_path_probe ( const char *  path,
const struct stat *  st 
)
static

Is this a compressed Mailbox? - Implements MxOps::path_probe() -.

Definition at line 893 of file compress.c.

894{
895 if (!st || !S_ISREG(st->st_mode))
896 return MUTT_UNKNOWN;
897
898 if (mutt_comp_can_read(path))
899 return MUTT_COMPRESSED;
900
901 return MUTT_UNKNOWN;
902}
bool mutt_comp_can_read(const char *path)
Can we read from this file?
Definition: compress.c:394
@ MUTT_COMPRESSED
Compressed file Mailbox type.
Definition: mailbox.h:53
@ MUTT_UNKNOWN
Mailbox wasn't recognised.
Definition: mailbox.h:44
+ Here is the call graph for this function:

◆ imap_path_probe()

enum MailboxType imap_path_probe ( const char *  path,
const struct stat *  st 
)

Is this an IMAP Mailbox? - Implements MxOps::path_probe() -.

Definition at line 2345 of file imap.c.

2346{
2347 if (mutt_istr_startswith(path, "imap://"))
2348 return MUTT_IMAP;
2349
2350 if (mutt_istr_startswith(path, "imaps://"))
2351 return MUTT_IMAP;
2352
2353 return MUTT_UNKNOWN;
2354}
@ MUTT_IMAP
'IMAP' Mailbox type
Definition: mailbox.h:50
size_t mutt_istr_startswith(const char *str, const char *prefix)
Check whether a string starts with a prefix, ignoring case.
Definition: string.c:242
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ maildir_path_probe()

enum MailboxType maildir_path_probe ( const char *  path,
const struct stat *  st 
)

Is this a Maildir Mailbox? - Implements MxOps::path_probe() -.

Definition at line 94 of file path.c.

95{
96 if (!st || !S_ISDIR(st->st_mode))
97 return MUTT_UNKNOWN;
98
99 char sub[PATH_MAX] = { 0 };
100 struct stat stsub = { 0 };
101 char *subs[] = { "cur", "new" };
102 for (size_t i = 0; i < mutt_array_size(subs); ++i)
103 {
104 snprintf(sub, sizeof(sub), "%s/%s", path, subs[i]);
105 if ((stat(sub, &stsub) == 0) && S_ISDIR(stsub.st_mode))
106 return MUTT_MAILDIR;
107 }
108
109 return MUTT_UNKNOWN;
110}
@ MUTT_MAILDIR
'Maildir' Mailbox type
Definition: mailbox.h:48
#define mutt_array_size(x)
Definition: memory.h:38
#define PATH_MAX
Definition: mutt.h:42

◆ mbox_path_probe()

enum MailboxType mbox_path_probe ( const char *  path,
const struct stat *  st 
)

Is this an mbox Mailbox? - Implements MxOps::path_probe() -.

Definition at line 1541 of file mbox.c.

1542{
1543 if (!st)
1544 return MUTT_UNKNOWN;
1545
1546 if (S_ISDIR(st->st_mode))
1547 return MUTT_UNKNOWN;
1548
1549 if (st->st_size == 0)
1550 return MUTT_MBOX;
1551
1552 FILE *fp = mutt_file_fopen(path, "r");
1553 if (!fp)
1554 return MUTT_UNKNOWN;
1555
1556 int ch;
1557 while ((ch = fgetc(fp)) != EOF)
1558 {
1559 /* Some mailbox creation tools erroneously append a blank line to
1560 * a file before appending a mail message. This allows neomutt to
1561 * detect type for and thus open those files. */
1562 if ((ch != '\n') && (ch != '\r'))
1563 {
1564 ungetc(ch, fp);
1565 break;
1566 }
1567 }
1568
1569 enum MailboxType type = MUTT_UNKNOWN;
1570 char tmp[256] = { 0 };
1571 if (fgets(tmp, sizeof(tmp), fp))
1572 {
1573 if (mutt_str_startswith(tmp, "From "))
1574 type = MUTT_MBOX;
1575 else if (mutt_str_equal(tmp, MMDF_SEP))
1576 type = MUTT_MMDF;
1577 }
1578 mutt_file_fclose(&fp);
1579
1580 const bool c_check_mbox_size = cs_subset_bool(NeoMutt->sub, "check_mbox_size");
1581 if (!c_check_mbox_size)
1582 {
1583 /* need to restore the times here, the file was not really accessed,
1584 * only the type was accessed. This is important, because detection
1585 * of "new mail" depends on those times set correctly. */
1586#ifdef HAVE_UTIMENSAT
1587 struct timespec ts[2] = { { 0 }, { 0 } };
1590 utimensat(AT_FDCWD, path, ts, 0);
1591#else
1592 struct utimbuf times = { 0 };
1593 times.actime = st->st_atime;
1594 times.modtime = st->st_mtime;
1595 utime(path, &times);
1596#endif
1597 }
1598
1599 return type;
1600}
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
Definition: helpers.c:48
MailboxType
Supported mailbox formats.
Definition: mailbox.h:41
@ MUTT_MMDF
'mmdf' Mailbox type
Definition: mailbox.h:46
@ MUTT_MBOX
'mbox' Mailbox type
Definition: mailbox.h:45
void mutt_file_get_stat_timespec(struct timespec *dest, struct stat *st, enum MuttStatType type)
Read the stat() time into a time value.
Definition: file.c:1576
#define mutt_file_fclose(FP)
Definition: file.h:147
#define mutt_file_fopen(PATH, MODE)
Definition: file.h:146
@ MUTT_STAT_ATIME
File/dir's atime - last accessed time.
Definition: file.h:64
@ MUTT_STAT_MTIME
File/dir's mtime - last modified time.
Definition: file.h:65
#define MMDF_SEP
Definition: lib.h:62
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
Definition: string.c:654
size_t mutt_str_startswith(const char *str, const char *prefix)
Check whether a string starts with a prefix.
Definition: string.c:230
Container for Accounts, Notifications.
Definition: neomutt.h:41
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:45
Time value with nanosecond precision.
Definition: file.h:51
+ Here is the call graph for this function:

◆ mh_path_probe()

static enum MailboxType mh_path_probe ( const char *  path,
const struct stat *  st 
)
static

Is this an mh Mailbox? - Implements MxOps::path_probe() -.

Definition at line 1199 of file mh.c.

1200{
1201 if (!st || !S_ISDIR(st->st_mode))
1202 return MUTT_UNKNOWN;
1203
1204 char tmp[PATH_MAX] = { 0 };
1205
1206 snprintf(tmp, sizeof(tmp), "%s/.mh_sequences", path);
1207 if (access(tmp, F_OK) == 0)
1208 return MUTT_MH;
1209
1210 snprintf(tmp, sizeof(tmp), "%s/.xmhcache", path);
1211 if (access(tmp, F_OK) == 0)
1212 return MUTT_MH;
1213
1214 snprintf(tmp, sizeof(tmp), "%s/.mew_cache", path);
1215 if (access(tmp, F_OK) == 0)
1216 return MUTT_MH;
1217
1218 snprintf(tmp, sizeof(tmp), "%s/.mew-cache", path);
1219 if (access(tmp, F_OK) == 0)
1220 return MUTT_MH;
1221
1222 snprintf(tmp, sizeof(tmp), "%s/.sylpheed_cache", path);
1223 if (access(tmp, F_OK) == 0)
1224 return MUTT_MH;
1225
1226 /* ok, this isn't an mh folder, but mh mode can be used to read
1227 * Usenet news from the spool. */
1228
1229 snprintf(tmp, sizeof(tmp), "%s/.overview", path);
1230 if (access(tmp, F_OK) == 0)
1231 return MUTT_MH;
1232
1233 return MUTT_UNKNOWN;
1234}
@ MUTT_MH
'MH' Mailbox type
Definition: mailbox.h:47

◆ nntp_path_probe()

enum MailboxType nntp_path_probe ( const char *  path,
const struct stat *  st 
)

Is this an NNTP Mailbox? - Implements MxOps::path_probe() -.

Definition at line 2758 of file nntp.c.

2759{
2760 if (mutt_istr_startswith(path, "news://"))
2761 return MUTT_NNTP;
2762
2763 if (mutt_istr_startswith(path, "snews://"))
2764 return MUTT_NNTP;
2765
2766 return MUTT_UNKNOWN;
2767}
@ MUTT_NNTP
'NNTP' (Usenet) Mailbox type
Definition: mailbox.h:49
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ nm_path_probe()

enum MailboxType nm_path_probe ( const char *  path,
const struct stat *  st 
)

Is this a Notmuch Mailbox? - Implements MxOps::path_probe() -.

Definition at line 2457 of file notmuch.c.

2458{
2460 return MUTT_UNKNOWN;
2461
2462 return MUTT_NOTMUCH;
2463}
@ MUTT_NOTMUCH
'Notmuch' (virtual) Mailbox type
Definition: mailbox.h:51
const char NmUrlProtocol[]
Protocol string for Notmuch URLs.
Definition: notmuch.c:101
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ pop_path_probe()

enum MailboxType pop_path_probe ( const char *  path,
const struct stat *  st 
)

Is this a POP Mailbox? - Implements MxOps::path_probe() -.

Definition at line 1157 of file pop.c.

1158{
1159 if (mutt_istr_startswith(path, "pop://"))
1160 return MUTT_POP;
1161
1162 if (mutt_istr_startswith(path, "pops://"))
1163 return MUTT_POP;
1164
1165 return MUTT_UNKNOWN;
1166}
@ MUTT_POP
'POP3' Mailbox type
Definition: mailbox.h:52
+ Here is the call graph for this function:
+ Here is the caller graph for this function: