R/larger-than.R
larger_than.Rd
Criterion constructor function to be combined in a custom search statement
larger_than(size, negate = FALSE)
size | An integer specifying the number of seconds to be used as search criterion. |
---|---|
negate | If |
Other custom search:
AND()
,
ImapCon
,
OR()
,
before()
,
flag()
,
older_than()
,
on()
,
sent_before()
,
sent_on()
,
sent_since()
,
since()
,
smaller_than()
,
string()
,
younger_than()
if (FALSE) { # select folder & search con$select_folder(name = "INBOX") # search for messages containing the string "XYZ@k-state.edu" in the # "FROM" field OR those that are LARGER than 512KB. res <- con$search(request = OR(string(expr = "XYZ@k-state.edu", where = "FROM"), larger_than(size = 512000))) }