Socket
Socket
Sign inDemoInstall

alfred-simple-email-fetcher

Package Overview
Dependencies
212
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    alfred-simple-email-fetcher

Fetch new emails in Alfred


Version published
Maintainers
1
Created

Readme

Source

✉️ alfred-simple-email-fetcher

License NPM Release

Fetch new emails in Alfred

📌 Prerequisite

  • Node JS higher than 11.7.0

  • Alfred powerpack

🔨 How to install

  1. Install package through npm
$ npm install --global alfred-simple-email-fetcher
  1. Run em > config and setup account settings

  2. Set the imap settings for the account you added. May you can refer to the documents

📍 Configuration

You can configure detailed settings by editing your config.json.

Example:

{
    "autoMarkSeen": false,
    "providerPrefix": true,
    "subtitle": "date-from",
    "maxEmailsCount": 50,
    "sorting": "provider-timedesc",
    "accounts": {
        "google": {
            "enabled": true,
            "icon": "google.png",
						"link": "https://mail.google.com/mail/",
            "imap": {
                "user": "user@gmail.com",
                "password": "account_password",
                "host": "imap.gmail.com",
                "port": 993,
                "tls": true,
                "authTimeout": 3000
            }
        },
        "naver": {
            "enabled": true,
            "icon": "naver.png",
						"link": "https://mail.naver.com/",
            "imap": {
                "user": "user@naver.com",
                "password": "account_password",
                "host": "imap.naver.com",
                "port": 993,
                "tls": true,
                "authTimeout": 3000
            }
        }
    }
}

autoMarkSeen

Type: Boolean

Mark seen when fetch emails

providerPrefix

Type: Boolean

Append email provider name to email record.

subtitle

Type: String (enum)

date or from or date-from or from-date or account or default

default value shows account, date, from.

maxEmailsCount

Type: Number

Set the maximum number of emails to display.

sorting

Type: String (enum)

Sorts and returns search results.

  • subject (mail title)
  • provider-subject (sort provider first and subject)
  • timeDesc (recent email first)
  • timeAsec (old email first)
  • provider-timeAsec
  • provider-timeDesc

accounts

Type: Array of object

You can register multiple email accounts.

this workflow use worker_thread at each imap connection.

enabled

Type: Boolean

If this value is false, this account is ignored.

icon

Type: String

Show this icon on this account's emails.

icon files should be placed within icons folder.

imap

Type: Object

imap configuration object used by node-imap.

imap's default port value is 993.

you could find out host value in your account's imap setting page.

keepalive option will be set false in script, you can set other options in config file.

📗 How to use

emu

Fetch and show emails on UNSEEN state from registered accounts.

emau

Select one provider and fetch only the account's UNSEEN emails.

You can fetch emails which account's enabled is false by this method.

Open the config.json file through your editor.

Keywords

FAQs

Last updated on 15 Apr 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc