A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/elie222/inbox-zero below:

elie222/inbox-zero: The world's best AI personal assistant for email. Open source app to help you reach inbox zero fast.

Inbox Zero - Your AI Email Assistant

Open source email app to reach inbox zero fast.
Website · Discord · Issues

There are two parts to Inbox Zero:

  1. An AI email assistant that helps you spend less time on email.
  2. Open source AI email client.

If you're looking to contribute to the project, the email client is the best place to do this.


Learn more in our docs.

To request a feature open a GitHub issue, or join our Discord.

Getting Started for Developers

We offer a hosted version of Inbox Zero at https://getinboxzero.com. To self-host follow the steps below.

Here's a video on how to set up the project. It covers the same steps mentioned in this document. But goes into greater detail on setting up the external services.

Make sure you have the above installed before starting.

The external services that are required are (detailed setup instructions below):

Updating .env file: secrets

Create your own .env file from the example supplied:

cp apps/web/.env.example apps/web/.env
cd apps/web
pnpm install

Set the environment variables in the newly created .env. You can see a list of required variables in: apps/web/env.ts.

The required environment variables:

When using Vercel with Fluid Compute turned off, you should set MAX_DURATION=300 or lower. See Vercel limits for different plans here.

Updating .env file with Google OAuth credentials:

Go to Google Cloud. Create a new project if necessary.

Create new credentials:

  1. If the banner shows up, configure consent screen (if not, you can do this later)

    1. Click the banner, then Click Get Started.
    2. Choose a name for your app, and enter your email.
    3. In Audience, choose External
    4. Enter your contact information
    5. Agree to the User Data policy and then click Create.
    6. Return to APIs and Services using the left sidebar.
  2. Create new credentials:

    1. Click the +Create Credentials button. Choose OAuth Client ID.
    2. In Application Type, Choose Web application
    3. Choose a name for your web client
    4. In Authorized JavaScript origins, add a URI and enter http://localhost:3000
    5. In Authorized redirect URIs enter:
    1. Click Create.
    2. A popup will show up with the new credentials, including the Client ID and secret.
  3. Update .env file:

    1. Copy the Client ID to GOOGLE_CLIENT_ID
    2. Copy the Client secret to GOOGLE_CLIENT_SECRET
  4. Update scopes

    1. Go to Data Access in the left sidebar (or click link above)
    2. Click Add or remove scopes
    3. Copy paste the below into the Manually add scopes box:
    https://www.googleapis.com/auth/userinfo.profile
    https://www.googleapis.com/auth/userinfo.email
    https://www.googleapis.com/auth/gmail.modify
    https://www.googleapis.com/auth/gmail.settings.basic
    https://www.googleapis.com/auth/contacts
    
    1. Click Update
    2. Click Save in the Data Access page.
  5. Add yourself as a test user

    1. Go to Audience
    2. In the Test users section, click +Add users
    3. Enter your email and press Save
Updating .env file with Microsoft OAuth credentials:

Go to Microsoft Azure Portal. Create a new Azure Active Directory app registration:

  1. Navigate to Azure Active Directory

  2. Go to "App registrations" in the left sidebar or search it in the searchbar

  3. Click "New registration"

    1. Choose a name for your application
    2. Under "Supported account types" select "Accounts in any organizational directory (Any Azure AD directory - Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
    3. Set the Redirect URI:
      • Platform: Web
      • URL: http://localhost:3000/api/auth/callback/microsoft
    4. Click "Register"
    5. In the "Manage" menu click "Authentication (Preview)"
    6. Add the Redirect URI: http://localhost:3000/api/outlook/linking/callback
  4. Get your credentials:

    1. The "Application (client) ID" shown is your MICROSOFT_CLIENT_ID
    2. To get your client secret:
      • Click "Certificates & secrets" in the left sidebar
      • Click "New client secret"
      • Add a description and choose an expiry
      • Click "Add"
      • Copy the secret Value (not the ID) - this is your MICROSOFT_CLIENT_SECRET
  5. Configure API permissions:

    1. In the "Manage" menu click "API permissions" in the left sidebar

    2. Click "Add a permission"

    3. Select "Microsoft Graph"

    4. Select "Delegated permissions"

    5. Add the following permissions:

      • openid
      • profile
      • email
      • User.Read
      • offline_access
      • Mail.ReadWrite
      • Mail.Send
      • Mail.ReadBasic
      • Mail.Read
      • Mail.Read.Shared
      • MailboxSettings.ReadWrite
      • Contacts.ReadWrite
    6. Click "Add permissions"

    7. Click "Grant admin consent" if you're an admin

  6. Update your .env file with the credentials:

    MICROSOFT_CLIENT_ID=your_client_id_here
    MICROSOFT_CLIENT_SECRET=your_client_secret_here
    
Updating .env file with LLM parameters

You need to set an LLM, but you can use a local one too:

For the LLM, you can use Anthropic, OpenAI, or Anthropic on AWS Bedrock. You can also use Ollama by setting the following enviroment variables:

OLLAMA_BASE_URL=http://localhost:11434/api
NEXT_PUBLIC_OLLAMA_MODEL=phi3

Note: If you need to access Ollama hosted locally and the application is running on Docker setup, you can use http://host.docker.internal:11434/api as the base URL. You might also need to set OLLAMA_HOST to 0.0.0.0 in the Ollama configuration file.

You can select the model you wish to use in the app on the /settings page of the app.

If you are using local ollama, you can set it to be default:

DEFAULT_LLM_PROVIDER=ollama

If this is the case you must also set the ECONOMY_LLM_PROVIDER environment variable.

We use Postgres for the database. For Redis, you can use Upstash Redis or set up your own Redis instance.

You can run Postgres & Redis locally using docker-compose

docker-compose up -d # -d will run the services in the background

To run the migrations:

To run the app locally for development (slower):

Or from the project root:

To build and run the app locally in production mode (faster):

pnpm run build
pnpm start

Open http://localhost:3000 to view the app in your browser.

Many features are available only to premium users. To upgrade yourself, make yourself an admin in the .env: ADMINS=hello@gmail.com Then upgrade yourself at: http://localhost:3000/admin.

Set up push notifications via Google PubSub to handle emails in real time

Follow instructions here.

  1. Create a topic
  2. Create a subscription
  3. Grant publish rights on your topic

Set env var GOOGLE_PUBSUB_TOPIC_NAME. When creating the subscription select Push and the url should look something like: https://www.getinboxzero.com/api/google/webhook?token=TOKEN or https://abc.ngrok-free.app/api/google/webhook?token=TOKEN where the domain is your domain. Set GOOGLE_PUBSUB_VERIFICATION_TOKEN in your .env file to be the value of TOKEN.

To run in development ngrok can be helpful:

ngrok http 3000
# or with an ngrok domain to keep your endpoint stable (set `XYZ`):
ngrok http --domain=XYZ.ngrok-free.app 3000

And then update the webhook endpoint in the Google PubSub subscriptions dashboard.

To start watching emails visit: /api/watch/all

Watching for email updates

Set a cron job to run these: The Google watch is necessary. Others are optional.

  "crons": [
    {
      "path": "/api/watch/all",
      "schedule": "0 1 * * *"
    },
    {
      "path": "/api/resend/summary/all",
      "schedule": "0 16 * * 1"
    },
    {
      "path": "/api/reply-tracker/disable-unused-auto-draft",
      "schedule": "0 3 * * *"
    }
  ]

Here are some easy ways to run cron jobs. Upstash is a free, easy option. I could never get the Vercel vercel.json. Open to PRs if you find a fix for that.

Contributing to the project

You can view open tasks in our GitHub Issues. Join our Discord to discuss tasks and check what's being worked on.

ARCHITECTURE.md explains the architecture of the project (LLM generated).


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4