1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/k8scat-ForMaiR

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
Внести вклад в разработку кода
Синхронизировать код
Отмена
Подсказка: Поскольку Git не поддерживает пустые директории, создание директории приведёт к созданию пустого файла .keep.
Loading...
README.md

ForMaiR - auto Forward eMails with custom Rules

CodeFactor

GitHub | 码云

Quick start using Docker

Refer config: template/config.yaml

docker run -d --rm \
-v /path/to/config.yaml:/formair/conf/config.yaml \
k8scat/formair:latest

Installation

Install using pip

python3 -m pip install --user formair

Install using git

git clone git@github.com:k8scat/ForMaiR.git
cd ForMaiR
python3 setup.py install

Usage

Refer config: template/config.yaml

formair # load config from ./config.yaml

formair /path/to/config.yaml # load config from /path/to/config.yaml

Custom rules

Emails which meet follow rules will be auto forwarded to to_addrs.

  • Email from_addr[1] in from_addrs
  • Email subject meet subject_pattern
  • Email plain_content or html_content meet content_pattern
rules:
  -
    to_addrs:
      - 't1@example.com'
      - 't2@example.com'
    from_addrs:
      - 'f1@example.com'
      - 'f2@example.com'
    subject_pattern: ''
    content_pattern: ''
  -
    to_addrs:
      - 't1@example.com'
      - 't2@example.com'
    from_addrs:
      - 'f1@example.com'
      - 'f2@example.com'
    subject_pattern: ''
    content_pattern: ''

Only forwarding the new emails

Support forwarding new emails in the specified range.

  • Get last_email_index from the index_file (default 0 if not exists)
  • Get email_count from pop3_server.stat
for index in range(last_email_index+1, email_count+1):
    pass

Docs

https://formair.io

Комментарии ( 0 )

Вы можете оставить комментарий после Вход в систему

Введение

Инструмент для автоматического переадресации электронных писем по пользовательским правилам. Развернуть Свернуть
MIT
Отмена

Обновления

Пока нет обновлений

Участники

все

Недавние действия

Загрузить больше
Больше нет результатов для загрузки
1
https://api.gitlife.ru/oschina-mirror/k8scat-ForMaiR.git
git@api.gitlife.ru:oschina-mirror/k8scat-ForMaiR.git
oschina-mirror
k8scat-ForMaiR
k8scat-ForMaiR
master