├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── test-coverage.yaml ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── AND.R ├── OR.R ├── R6.R ├── add-flags-int.R ├── adjust-folder-name.R ├── adjust_repeated_filenames.R ├── before.R ├── check-args.R ├── clean-fetch-results.R ├── clean-msg-text.R ├── config-con-handle-and-params.R ├── configure-imap.R ├── copy-msg-int.R ├── create-folder-int.R ├── decode-base64-text-if-needed.R ├── decode-mime-header.R ├── decode-mime-text.R ├── decode-quoted-printable-header.R ├── decode-quoted-printable-text.R ├── define-searchrequest-custom.R ├── define-searchrequest-date.R ├── define-searchrequest-flag.R ├── define-searchrequest-period.R ├── define-searchrequest-size.R ├── define-searchrequest-string.R ├── define-searchrequest-within.R ├── delete-msg-int-new.R ├── delete-msg-int.R ├── esearch-count-int.R ├── esearch-max-id-int.R ├── esearch-min-id-int.R ├── examine-folder-int.R ├── execute-attachment-fetch.R ├── execute-complementary-operations.R ├── execute-fetch-loop.R ├── execute-search.R ├── expunge-int.R ├── extract-MIME-level-and-filenames.R ├── fetch-attachments-int.R ├── fetch-attachments-list-int.R ├── fetch-body-int.R ├── fetch-header-int.R ├── fetch-metadata-int.R ├── fetch-text-int.R ├── fix-search-stripping.R ├── flag.R ├── get-attachments-int.R ├── has-attachment.R ├── larger-than.R ├── list-attachments.R ├── list-flags-int.R ├── list-mail-folders-int.R ├── list-server-capabilities-int.R ├── metadata-options.R ├── modify-con-handle.R ├── move-msg-int.R ├── older-than.R ├── on.R ├── pipe.R ├── remove-flags-int.R ├── rename-folder-int.R ├── replace-flags-int.R ├── response-error-handling.R ├── search-before-int.R ├── search-flag-int.R ├── search-int.R ├── search-larger-than-int.R ├── search-older-than-int.R ├── search-on-int.R ├── search-period-int.R ├── search-sent-before-int.R ├── search-sent-on-int.R ├── search-sent-period-int.R ├── search-sent-since-int.R ├── search-since-int.R ├── search-smaller-than-int.R ├── search-string-int.R ├── search-younger-than-int.R ├── select-folder-int.R ├── sent-before.R ├── sent-on.R ├── sent-since.R ├── serialize-filename.R ├── since.R ├── smaller-than.R ├── string.R ├── younger-than.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── docs ├── apple-touch-icon-120x120.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon.png ├── articles │ ├── basics.html │ ├── code_migration.html │ ├── figures │ │ └── xoauth │ │ │ ├── step1_1.png │ │ │ ├── step1_1x.png │ │ │ ├── step2_1x.png │ │ │ ├── step2_2x.png │ │ │ ├── step2_3.png │ │ │ ├── step2_x1.png │ │ │ ├── step2_x2.png │ │ │ ├── step2_x3x.png │ │ │ ├── step2_x4.png │ │ │ ├── step2_x5.png │ │ │ └── step2_x6.png │ ├── index.html │ └── xoauth2.0.html ├── authors.html ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── link.svg ├── logo.png ├── news │ └── index.html ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── AND.html │ ├── ImapCon.html │ ├── OR.html │ ├── before.html │ ├── configure_imap.html │ ├── decode_mime_header.html │ ├── figures │ ├── aol1.png │ ├── aol2.png │ ├── aol3.png │ ├── gmail1.png │ ├── logo.png │ ├── yahoo1.png │ ├── yahoo2.png │ └── yahoo3.png │ ├── flag.html │ ├── index.html │ ├── larger_than.html │ ├── list_attachments.html │ ├── mRpostman-package.html │ ├── metadata_options.html │ ├── older_than.html │ ├── on.html │ ├── pipe.html │ ├── sent_before.html │ ├── sent_on.html │ ├── sent_since.html │ ├── since.html │ ├── smaller_than.html │ ├── string.html │ └── younger_than.html ├── inst └── CITATION ├── mRpostman.Rproj ├── man ├── AND.Rd ├── ImapCon.Rd ├── OR.Rd ├── before.Rd ├── clean_msg_text.Rd ├── configure_imap.Rd ├── decode_mime_header.Rd ├── figures │ ├── aol1.png │ ├── aol2.png │ ├── aol3.png │ ├── gmail1.png │ ├── logo.png │ ├── yahoo1.png │ ├── yahoo2.png │ └── yahoo3.png ├── flag.Rd ├── larger_than.Rd ├── list_attachments.Rd ├── mRpostman-package.Rd ├── metadata_options.Rd ├── older_than.Rd ├── on.Rd ├── pipe.Rd ├── sent_before.Rd ├── sent_on.Rd ├── sent_since.Rd ├── since.Rd ├── smaller_than.Rd ├── string.Rd └── younger_than.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico └── vignettes ├── .gitignore ├── basics.Rmd ├── code_migration.Rmd ├── figures ├── basics │ ├── attach1.png │ ├── attach2.png │ └── fetchbody.png └── xoauth │ ├── step1_1.png │ ├── step1_1x.png │ ├── step1_2.png │ ├── step2_1.png │ ├── step2_1x.png │ ├── step2_2.png │ ├── step2_2x.png │ ├── step2_3.png │ ├── step2_4.png │ ├── step2_x1.png │ ├── step2_x2.png │ ├── step2_x3.png │ ├── step2_x3x.png │ ├── step2_x4.png │ ├── step2_x5.png │ └── step2_x6.png ├── xoauth2.0 └── xoauth2.0.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/AND.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/AND.R -------------------------------------------------------------------------------- /R/OR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/OR.R -------------------------------------------------------------------------------- /R/R6.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/R6.R -------------------------------------------------------------------------------- /R/add-flags-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/add-flags-int.R -------------------------------------------------------------------------------- /R/adjust-folder-name.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/adjust-folder-name.R -------------------------------------------------------------------------------- /R/adjust_repeated_filenames.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/adjust_repeated_filenames.R -------------------------------------------------------------------------------- /R/before.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/before.R -------------------------------------------------------------------------------- /R/check-args.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/check-args.R -------------------------------------------------------------------------------- /R/clean-fetch-results.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/clean-fetch-results.R -------------------------------------------------------------------------------- /R/clean-msg-text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/clean-msg-text.R -------------------------------------------------------------------------------- /R/config-con-handle-and-params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/config-con-handle-and-params.R -------------------------------------------------------------------------------- /R/configure-imap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/configure-imap.R -------------------------------------------------------------------------------- /R/copy-msg-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/copy-msg-int.R -------------------------------------------------------------------------------- /R/create-folder-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/create-folder-int.R -------------------------------------------------------------------------------- /R/decode-base64-text-if-needed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/decode-base64-text-if-needed.R -------------------------------------------------------------------------------- /R/decode-mime-header.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/decode-mime-header.R -------------------------------------------------------------------------------- /R/decode-mime-text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/decode-mime-text.R -------------------------------------------------------------------------------- /R/decode-quoted-printable-header.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/decode-quoted-printable-header.R -------------------------------------------------------------------------------- /R/decode-quoted-printable-text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/decode-quoted-printable-text.R -------------------------------------------------------------------------------- /R/define-searchrequest-custom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/define-searchrequest-custom.R -------------------------------------------------------------------------------- /R/define-searchrequest-date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/define-searchrequest-date.R -------------------------------------------------------------------------------- /R/define-searchrequest-flag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/define-searchrequest-flag.R -------------------------------------------------------------------------------- /R/define-searchrequest-period.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/define-searchrequest-period.R -------------------------------------------------------------------------------- /R/define-searchrequest-size.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/define-searchrequest-size.R -------------------------------------------------------------------------------- /R/define-searchrequest-string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/define-searchrequest-string.R -------------------------------------------------------------------------------- /R/define-searchrequest-within.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/define-searchrequest-within.R -------------------------------------------------------------------------------- /R/delete-msg-int-new.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/delete-msg-int-new.R -------------------------------------------------------------------------------- /R/delete-msg-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/delete-msg-int.R -------------------------------------------------------------------------------- /R/esearch-count-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/esearch-count-int.R -------------------------------------------------------------------------------- /R/esearch-max-id-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/esearch-max-id-int.R -------------------------------------------------------------------------------- /R/esearch-min-id-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/esearch-min-id-int.R -------------------------------------------------------------------------------- /R/examine-folder-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/examine-folder-int.R -------------------------------------------------------------------------------- /R/execute-attachment-fetch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/execute-attachment-fetch.R -------------------------------------------------------------------------------- /R/execute-complementary-operations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/execute-complementary-operations.R -------------------------------------------------------------------------------- /R/execute-fetch-loop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/execute-fetch-loop.R -------------------------------------------------------------------------------- /R/execute-search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/execute-search.R -------------------------------------------------------------------------------- /R/expunge-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/expunge-int.R -------------------------------------------------------------------------------- /R/extract-MIME-level-and-filenames.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/extract-MIME-level-and-filenames.R -------------------------------------------------------------------------------- /R/fetch-attachments-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/fetch-attachments-int.R -------------------------------------------------------------------------------- /R/fetch-attachments-list-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/fetch-attachments-list-int.R -------------------------------------------------------------------------------- /R/fetch-body-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/fetch-body-int.R -------------------------------------------------------------------------------- /R/fetch-header-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/fetch-header-int.R -------------------------------------------------------------------------------- /R/fetch-metadata-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/fetch-metadata-int.R -------------------------------------------------------------------------------- /R/fetch-text-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/fetch-text-int.R -------------------------------------------------------------------------------- /R/fix-search-stripping.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/fix-search-stripping.R -------------------------------------------------------------------------------- /R/flag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/flag.R -------------------------------------------------------------------------------- /R/get-attachments-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/get-attachments-int.R -------------------------------------------------------------------------------- /R/has-attachment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/has-attachment.R -------------------------------------------------------------------------------- /R/larger-than.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/larger-than.R -------------------------------------------------------------------------------- /R/list-attachments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/list-attachments.R -------------------------------------------------------------------------------- /R/list-flags-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/list-flags-int.R -------------------------------------------------------------------------------- /R/list-mail-folders-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/list-mail-folders-int.R -------------------------------------------------------------------------------- /R/list-server-capabilities-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/list-server-capabilities-int.R -------------------------------------------------------------------------------- /R/metadata-options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/metadata-options.R -------------------------------------------------------------------------------- /R/modify-con-handle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/modify-con-handle.R -------------------------------------------------------------------------------- /R/move-msg-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/move-msg-int.R -------------------------------------------------------------------------------- /R/older-than.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/older-than.R -------------------------------------------------------------------------------- /R/on.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/on.R -------------------------------------------------------------------------------- /R/pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/pipe.R -------------------------------------------------------------------------------- /R/remove-flags-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/remove-flags-int.R -------------------------------------------------------------------------------- /R/rename-folder-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/rename-folder-int.R -------------------------------------------------------------------------------- /R/replace-flags-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/replace-flags-int.R -------------------------------------------------------------------------------- /R/response-error-handling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/response-error-handling.R -------------------------------------------------------------------------------- /R/search-before-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-before-int.R -------------------------------------------------------------------------------- /R/search-flag-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-flag-int.R -------------------------------------------------------------------------------- /R/search-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-int.R -------------------------------------------------------------------------------- /R/search-larger-than-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-larger-than-int.R -------------------------------------------------------------------------------- /R/search-older-than-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-older-than-int.R -------------------------------------------------------------------------------- /R/search-on-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-on-int.R -------------------------------------------------------------------------------- /R/search-period-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-period-int.R -------------------------------------------------------------------------------- /R/search-sent-before-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-sent-before-int.R -------------------------------------------------------------------------------- /R/search-sent-on-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-sent-on-int.R -------------------------------------------------------------------------------- /R/search-sent-period-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-sent-period-int.R -------------------------------------------------------------------------------- /R/search-sent-since-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-sent-since-int.R -------------------------------------------------------------------------------- /R/search-since-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-since-int.R -------------------------------------------------------------------------------- /R/search-smaller-than-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-smaller-than-int.R -------------------------------------------------------------------------------- /R/search-string-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-string-int.R -------------------------------------------------------------------------------- /R/search-younger-than-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/search-younger-than-int.R -------------------------------------------------------------------------------- /R/select-folder-int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/select-folder-int.R -------------------------------------------------------------------------------- /R/sent-before.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/sent-before.R -------------------------------------------------------------------------------- /R/sent-on.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/sent-on.R -------------------------------------------------------------------------------- /R/sent-since.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/sent-since.R -------------------------------------------------------------------------------- /R/serialize-filename.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/serialize-filename.R -------------------------------------------------------------------------------- /R/since.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/since.R -------------------------------------------------------------------------------- /R/smaller-than.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/smaller-than.R -------------------------------------------------------------------------------- /R/string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/string.R -------------------------------------------------------------------------------- /R/younger-than.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/younger-than.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | url: ~ 2 | 3 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/cran-comments.md -------------------------------------------------------------------------------- /docs/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/articles/basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/basics.html -------------------------------------------------------------------------------- /docs/articles/code_migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/code_migration.html -------------------------------------------------------------------------------- /docs/articles/figures/xoauth/step1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/figures/xoauth/step1_1.png -------------------------------------------------------------------------------- /docs/articles/figures/xoauth/step1_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/figures/xoauth/step1_1x.png -------------------------------------------------------------------------------- /docs/articles/figures/xoauth/step2_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/figures/xoauth/step2_1x.png -------------------------------------------------------------------------------- /docs/articles/figures/xoauth/step2_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/figures/xoauth/step2_2x.png -------------------------------------------------------------------------------- /docs/articles/figures/xoauth/step2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/figures/xoauth/step2_3.png -------------------------------------------------------------------------------- /docs/articles/figures/xoauth/step2_x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/figures/xoauth/step2_x1.png -------------------------------------------------------------------------------- /docs/articles/figures/xoauth/step2_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/figures/xoauth/step2_x2.png -------------------------------------------------------------------------------- /docs/articles/figures/xoauth/step2_x3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/figures/xoauth/step2_x3x.png -------------------------------------------------------------------------------- /docs/articles/figures/xoauth/step2_x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/figures/xoauth/step2_x4.png -------------------------------------------------------------------------------- /docs/articles/figures/xoauth/step2_x5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/figures/xoauth/step2_x5.png -------------------------------------------------------------------------------- /docs/articles/figures/xoauth/step2_x6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/figures/xoauth/step2_x6.png -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/xoauth2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/articles/xoauth2.0.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/AND.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/AND.html -------------------------------------------------------------------------------- /docs/reference/ImapCon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/ImapCon.html -------------------------------------------------------------------------------- /docs/reference/OR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/OR.html -------------------------------------------------------------------------------- /docs/reference/before.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/before.html -------------------------------------------------------------------------------- /docs/reference/configure_imap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/configure_imap.html -------------------------------------------------------------------------------- /docs/reference/decode_mime_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/decode_mime_header.html -------------------------------------------------------------------------------- /docs/reference/figures/aol1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/figures/aol1.png -------------------------------------------------------------------------------- /docs/reference/figures/aol2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/figures/aol2.png -------------------------------------------------------------------------------- /docs/reference/figures/aol3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/figures/aol3.png -------------------------------------------------------------------------------- /docs/reference/figures/gmail1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/figures/gmail1.png -------------------------------------------------------------------------------- /docs/reference/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/figures/logo.png -------------------------------------------------------------------------------- /docs/reference/figures/yahoo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/figures/yahoo1.png -------------------------------------------------------------------------------- /docs/reference/figures/yahoo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/figures/yahoo2.png -------------------------------------------------------------------------------- /docs/reference/figures/yahoo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/figures/yahoo3.png -------------------------------------------------------------------------------- /docs/reference/flag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/flag.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/larger_than.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/larger_than.html -------------------------------------------------------------------------------- /docs/reference/list_attachments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/list_attachments.html -------------------------------------------------------------------------------- /docs/reference/mRpostman-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/mRpostman-package.html -------------------------------------------------------------------------------- /docs/reference/metadata_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/metadata_options.html -------------------------------------------------------------------------------- /docs/reference/older_than.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/older_than.html -------------------------------------------------------------------------------- /docs/reference/on.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/on.html -------------------------------------------------------------------------------- /docs/reference/pipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/pipe.html -------------------------------------------------------------------------------- /docs/reference/sent_before.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/sent_before.html -------------------------------------------------------------------------------- /docs/reference/sent_on.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/sent_on.html -------------------------------------------------------------------------------- /docs/reference/sent_since.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/sent_since.html -------------------------------------------------------------------------------- /docs/reference/since.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/since.html -------------------------------------------------------------------------------- /docs/reference/smaller_than.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/smaller_than.html -------------------------------------------------------------------------------- /docs/reference/string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/string.html -------------------------------------------------------------------------------- /docs/reference/younger_than.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/docs/reference/younger_than.html -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/inst/CITATION -------------------------------------------------------------------------------- /mRpostman.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/mRpostman.Rproj -------------------------------------------------------------------------------- /man/AND.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/AND.Rd -------------------------------------------------------------------------------- /man/ImapCon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/ImapCon.Rd -------------------------------------------------------------------------------- /man/OR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/OR.Rd -------------------------------------------------------------------------------- /man/before.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/before.Rd -------------------------------------------------------------------------------- /man/clean_msg_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/clean_msg_text.Rd -------------------------------------------------------------------------------- /man/configure_imap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/configure_imap.Rd -------------------------------------------------------------------------------- /man/decode_mime_header.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/decode_mime_header.Rd -------------------------------------------------------------------------------- /man/figures/aol1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/figures/aol1.png -------------------------------------------------------------------------------- /man/figures/aol2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/figures/aol2.png -------------------------------------------------------------------------------- /man/figures/aol3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/figures/aol3.png -------------------------------------------------------------------------------- /man/figures/gmail1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/figures/gmail1.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/yahoo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/figures/yahoo1.png -------------------------------------------------------------------------------- /man/figures/yahoo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/figures/yahoo2.png -------------------------------------------------------------------------------- /man/figures/yahoo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/figures/yahoo3.png -------------------------------------------------------------------------------- /man/flag.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/flag.Rd -------------------------------------------------------------------------------- /man/larger_than.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/larger_than.Rd -------------------------------------------------------------------------------- /man/list_attachments.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/list_attachments.Rd -------------------------------------------------------------------------------- /man/mRpostman-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/mRpostman-package.Rd -------------------------------------------------------------------------------- /man/metadata_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/metadata_options.Rd -------------------------------------------------------------------------------- /man/older_than.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/older_than.Rd -------------------------------------------------------------------------------- /man/on.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/on.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/sent_before.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/sent_before.Rd -------------------------------------------------------------------------------- /man/sent_on.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/sent_on.Rd -------------------------------------------------------------------------------- /man/sent_since.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/sent_since.Rd -------------------------------------------------------------------------------- /man/since.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/since.Rd -------------------------------------------------------------------------------- /man/smaller_than.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/smaller_than.Rd -------------------------------------------------------------------------------- /man/string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/string.Rd -------------------------------------------------------------------------------- /man/younger_than.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/man/younger_than.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | .httr-oauth 2 | -------------------------------------------------------------------------------- /vignettes/basics.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/basics.Rmd -------------------------------------------------------------------------------- /vignettes/code_migration.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/code_migration.Rmd -------------------------------------------------------------------------------- /vignettes/figures/basics/attach1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/basics/attach1.png -------------------------------------------------------------------------------- /vignettes/figures/basics/attach2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/basics/attach2.png -------------------------------------------------------------------------------- /vignettes/figures/basics/fetchbody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/basics/fetchbody.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step1_1.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step1_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step1_1x.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step1_2.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step2_1.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step2_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step2_1x.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step2_2.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step2_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step2_2x.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step2_3.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step2_4.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step2_x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step2_x1.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step2_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step2_x2.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step2_x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step2_x3.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step2_x3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step2_x3x.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step2_x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step2_x4.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step2_x5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step2_x5.png -------------------------------------------------------------------------------- /vignettes/figures/xoauth/step2_x6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/figures/xoauth/step2_x6.png -------------------------------------------------------------------------------- /vignettes/xoauth2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/xoauth2.0 -------------------------------------------------------------------------------- /vignettes/xoauth2.0.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allanvc/mRpostman/HEAD/vignettes/xoauth2.0.Rmd --------------------------------------------------------------------------------