email-aberer

Read and send emails via IMAP/SMTP using 1Password credentials.

Updated Feb 21, 2026
One-click install
npx skills add https://github.com/abzhaw/juliaz_agents --skill email-aberer
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: email-aberer
Source: https://github.com/abzhaw/juliaz_agents/tree/main/julia/openclaw/skills/email-aberer
Command: npx skills add https://github.com/abzhaw/juliaz_agents --skill email-aberer

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This skill enables automated access to the Aberer email account for reading messages and sending replies using IMAP/POP and SMTP, without exposing credentials in logs.

Core Features & Use Cases

  • Read inbox messages from [email protected] via IMAP (with TLS).
  • Send emails via SMTP using credentials retrieved from 1Password at runtime.
  • Integrate with automation workflows and daily alerts through standard Python scripts.

Quick Start

Read messages with the included scripts and send an email using the provided environment variables.

Frequently Asked Questions about email-aberer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I send emails using Python smtplib and SMTP without hardcoding credentials?

You can send emails via SMTP by retrieving credentials securely at runtime from 1Password and passing them as environment variables like SMTP_HOST, SMTP_USER, and SMTP_PASS to standard Python smtplib scripts.

How do I read IMAP inbox messages with Python without exposing passwords in logs?

Read IMAP inbox messages by using standard Python imaplib scripts with TLS, supplying credentials dynamically via IMAP_HOST, IMAP_USER, and IMAP_PASS environment variables to prevent logging sensitive data.

Can I use 1Password to retrieve SMTP and IMAP credentials for automated email scripts?

Yes, automated email scripts can retrieve SMTP and IMAP credentials directly from 1Password at runtime, populating the necessary environment variables to authenticate mail servers securely without static configuration.

Does this email automation approach require any external Python libraries beyond the standard library?

No, this email automation approach relies exclusively on the Python standard library, specifically utilizing built-in modules like imaplib, smtplib, and email to handle IMAP and SMTP protocols without external dependencies.

What environment variables are needed to automate sending mail via SMTP and reading via IMAP?

To automate sending mail via SMTP and reading via IMAP, you need to configure IMAP_HOST, IMAP_USER, IMAP_PASS, SMTP_HOST, SMTP_USER, and SMTP_PASS environment variables for authentication and server connection.