Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matteoguadrini/followmail
Postfix log parser to follow a mail address
https://github.com/matteoguadrini/followmail
log logging logparser maillog postfix postfixadmin python python3
Last synced: about 1 month ago
JSON representation
Postfix log parser to follow a mail address
- Host: GitHub
- URL: https://github.com/matteoguadrini/followmail
- Owner: MatteoGuadrini
- License: gpl-3.0
- Created: 2024-05-24T09:44:02.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-11T07:14:45.000Z (6 months ago)
- Last Synced: 2024-11-13T20:44:19.433Z (about 1 month ago)
- Topics: log, logging, logparser, maillog, postfix, postfixadmin, python, python3
- Language: Python
- Homepage:
- Size: 67.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# `followmail`
_followmail_ is a command line utility that parse a postfix log file (also gzipped) and follow pathway of specific mail,
in **to** or **from** fields.## Installation
To install _followmail_, follow this:
```console
# With pypi
pip install followmail# With git
git clone https://github.com/MatteoGuadrini/followmail.git && cd followmail
pip install .
```## Command arguments
`followmail` have many command line arguments. They are explained in this table:
| short | long | description | args |
|-------|---------------|-----------------------------------|---------------|
| -v | --verbose | Print with verbosity | |
| -t | --to | Email address into **to** field | Mail address |
| -f | --from | Email address into **from** field | Mail address |
| -l | --maillog | Input maillog file | File path |
| -q | --queue | Name of postfix queue | Name of queue |
| -m | --max-lines | Max lines to print | Number |
| -D | --sortby-date | Sort lines by date | |
| -c | --csv | Print in csv format | |
| -j | --json | Print in json format | |## Examples
1. Search into **to** field the email [email protected]_:
```bash
followmail -t [email protected]
```2. Search into **from** field the email [email protected]_:
```bash
followmail -f [email protected]
```3. Search both **from** and **to** fields:
```bash
followmail -f [email protected] -t [email protected]
```
4. Filter per queue```bash
followmail -f [email protected] -t [email protected] -q "postfix/in"
```
5. Select archived log```bash
followmail -f [email protected] -t [email protected] -l "/var/log/maillog-20240709.tar.gz"
```
6. Select archived log```bash
followmail -f [email protected] -t [email protected] -m 20
```7. Sort results by date
```bash
followmail -f [email protected] -t [email protected] -D
```8. Print result in CSV format
```bash
followmail -f [email protected] -t [email protected] -c
```9. Print result in JSON format
```bash
followmail -f [email protected] -t [email protected] -j
```10. Debugging
```bash
followmail -f [email protected] -t [email protected] -v
```## Open source
_followmail_ is an open source project. Any contribute, It's welcome.
**A great thanks**.
For donations, press this
For me
[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.me/guos)
For [Telethon](http://www.telethon.it/)
The Telethon Foundation is a non-profit organization recognized by the Ministry of University and Scientific and
Technological Research.
They were born in 1990 to respond to the appeal of patients suffering from rare diseases.
Come today, we are organized to dare to listen to them and answers, every day of the year.[Adopt the future](https://www.ioadottoilfuturo.it/)
## Treeware
This package is [Treeware](https://treeware.earth). If you use it in production,
then we ask that you [**buy the world a tree**](https://plant.treeware.earth/matteoguadrini/mkpl) to thank us for our
work.
By contributing to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.[![Treeware](https://img.shields.io/badge/dynamic/json?color=brightgreen&label=Treeware&query=%24.total&url=https%3A%2F%2Fpublic.offset.earth%2Fusers%2Ftreeware%2Ftrees)](https://treeware.earth)
## Acknowledgments
Thanks to Mark Lutz for writing the _Learning Python_ and _Programming Python_ books that make up my python foundation.
Thanks to Kenneth Reitz and Tanya Schlusser for writing the _The Hitchhiker’s Guide to Python_ books.
Thanks to Dane Hillard for writing the _Practices of the Python Pro_ books.
Special thanks go to my wife, who understood the hours of absence for this development.
Thanks to my children, for the daily inspiration they give me and to make me realize, that life must be simple.Thanks, Python!