docs: Use correct headings
fix: Use localPart
docs: Add more links
A Deno module that can access Migadu's API.
There is also an CLI available. More documentaion is coming.
The following is not yet implemented:
[!WARNING]
Use at own risk. There are no confirmations when deleting mailboxes and identities
Remember to set environment variables:
MIGADU_DOMAIN
MIGADU_USER
MIGADU_USER_TOKEN
import { Mailbox } from "https://deno.land/x/migadu/mod.ts";
const mailboxes = await Mailbox.list("example.org");
console.log(mailboxes);
[!NOTE]
You cannot update a mailbox or identity, yet. This is work in progress.
deno install -A https://deno.land/x/migadu/src/cli/cli.ts \
-n migadu
# List all mailboxes for domain
migadu mbox list --domain example.org
# Get mailbox from domain
migadu mbox get myName --domain example.org
# See help for all available commands
migadu --help