Tech recruiter auto reply bot using JMAP
Project description
wafflesbot: Email auto reply bot for JMAP mailboxes
wafflesbot sends form replies to unreplied emails in a JMAP mailbox (such as Fastmail).
wafflesbot excels at automatically asking tech recruiters for compensation information.
Built on:
Installation and usage with Docker
A Docker container is provided which runs wafflesbot to reply to emails via JMAP server events. JMAP API authentication and reply details should be configured using environment variables.
Example docker-compose.yaml
:
version: "3.7"
secrets:
jmap_api_token:
file: path/to/file/with/your/jmap_api_token
services:
waffles:
image: ghcr.io/smkent/waffles:latest
environment:
JMAP_HOST: jmap.example.com
JMAP_API_TOKEN: /run/secrets/jmap_api_token
WAFFLES_MAILBOX: folder-or-label-name
WAFFLES_REPLY_FILE: /autoreply.html
# WAFFLES_DRY_RUN: "true" # Uncomment to log actions but not send email
# WAFFLES_DEBUG: "true" # Uncomment to increase log verbosity
# Set TZ to your time zone. Often same as the contents of /etc/timezone.
TZ: PST8PDT
restart: unless-stopped
volumes:
- path/to/your/reply/content.html:/autoreply.html:ro
secrets:
- jmap_api_token
Start the container by running:
docker-compose up -d
Debugging information can be viewed in the container log:
docker-compose logs -f
Installation from PyPI
wafflesbot is available on PyPI:
pip install wafflesbot
Usage
wafflesbot provides the waffles
command, which can either:
- Run as a service and reply to emails received via JMAP server events (the default)
- Run as a script to examine recent emails (such as interactively or via a cronjob)
Environment variables:
JMAP_HOST
: JMAP server hostnameJMAP_API_TOKEN
: JMAP account API token
Required arguments:
-m/--mailbox
: Name of the folder to process-r/--reply-content
: Path to file with an HTML reply message
Optional arguments:
-d/--debug
: Enable debug logging-l/--limit
: Maximum number of emails replies to send (only valid with-s/--script
)-n/--days
: Only process email received this many days ago or newer (only valid with-s/--script
)-p/--pretend
: Print messages to standard output instead of sending email-s/--script
: Set to run as a script instead of an event-driven service
Invocation examples
Listen for new emails, and reply to unreplied messages that appear in the
"Recruiters" folder with the message in my-reply.html
:
JMAP_HOST=jmap.example.com \
JMAP_API_TOKEN=ness__pk_fire \
waffles \
--mailbox "Recruiters" \
--reply-content my-reply.html
Run as a script and reply to unreplied messages in the "Recruiters" folder with
the message in my-reply.html
:
JMAP_HOST=jmap.example.com \
JMAP_API_TOKEN=ness__pk_fire \
waffles \
--script \
--mailbox "Recruiters" \
--reply-content my-reply.html
Development
Poetry installation
Via pipx
:
pip install pipx
pipx install poetry
pipx inject poetry poetry-dynamic-versioning poetry-pre-commit-plugin
Via pip
:
pip install poetry
poetry self add poetry-dynamic-versioning poetry-pre-commit-plugin
Development tasks
- Setup:
poetry install
- Run static checks:
poetry run poe lint
orpoetry run pre-commit run --all-files
- Run static checks and tests:
poetry run poe test
Created from smkent/cookie-python using cookiecutter
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wafflesbot-0.1.20.tar.gz
.
File metadata
- Download URL: wafflesbot-0.1.20.tar.gz
- Upload date:
- Size: 22.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 956323957834717ca91dc453f7f32d00ec6fc8b56c147f660853b59945dc7340 |
|
MD5 | cb0efbc978affb9dc916813d894defcd |
|
BLAKE2b-256 | c8645ce9833693371825c1f56b79621d2333aca42940589b8f60ed5d2175123e |
File details
Details for the file wafflesbot-0.1.20-py3-none-any.whl
.
File metadata
- Download URL: wafflesbot-0.1.20-py3-none-any.whl
- Upload date:
- Size: 22.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4611859b8407da30c925890c477849db7e826d00763746c86af5b307cf4bbb1b |
|
MD5 | 15fcc02ceb597e6616a225296b571036 |
|
BLAKE2b-256 | 81a7119050104bcb51aa6189efed93186973a667749eb8615279dbdec5524477 |