-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
1,297 additions
and
425 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[report] | ||
exclude_lines = | ||
pragma: no cover | ||
|
||
[run] | ||
omit = | ||
*/.local/share/virtualenvs/* | ||
tests/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
pymailq - Simple mail queue management | ||
========================================= | ||
====================================== | ||
|
||
Contact: Denis Pompilio (jawa) <[email protected]> | ||
https://github.com/outini/pymailq | ||
|
||
== v0.6.0 16/08/2017 === | ||
* Pqshell now have usage and options | ||
* Pqshell can now show pymailq package version | ||
* Pqshell can now be started in debug mode | ||
* Improved shell completion with suggests and modifiers | ||
* Implentation of the "mails by date" selector | ||
* Reworked postsuper commands handling | ||
* Better pep8 support | ||
* Unit testing for python2.7 and python3 | ||
* Using code coverage | ||
|
||
== v0.5.3 19/10/2014 === | ||
* Complete support for python2.7 and python3 | ||
* Project renamed to PyMailq | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
pymailq - Simple Postfix queue management | ||
========================================== | ||
|
||
* *Author:* Denis 'jawa' Pompilio <[email protected]> | ||
* *Contact:* Denis 'jawa' Pompilio <[email protected]> | ||
* *Sources:* https://github.com/outini/pymailq/ | ||
|
||
A full content documentation, is online at http://outini.github.io/pymailq/. | ||
|PythonPIP|_ |PythonSupport|_ |License|_ |Codacy|_ |Coverage|_ | ||
|
||
The pymailq module makes it easy to view and control Postfix mails queue. It | ||
provide several classes to store, view and interact with mail queue using | ||
Postfix command line tools. This module is provided for automation and | ||
monitoring developments. | ||
pymailq - Simple Postfix queue management | ||
========================================= | ||
|
||
| **Contact:** Denis 'jawa' Pompilio <[email protected]> | ||
| **Sources:** https://github.com/outini/pymailq/ | ||
| | ||
| A full content documentation, is online at http://outini.github.io/pymailq/. | ||
| | ||
| The pymailq module makes it easy to view and control Postfix mails queue. It | ||
| provide several classes to store, view and interact with mail queue using | ||
| Postfix command line tools. This module is provided for automation and | ||
| monitoring developments. | ||
Installation | ||
------------ | ||
|
||
Install pymailq module:: | ||
Install pymailq module from https://pypi.python.org:: | ||
|
||
pip install pymailq | ||
|
||
Install pymailq module from sources:: | ||
|
||
python setup.py install | ||
|
||
A SPECS file is also provided for RPM builds, thanks to Nils Ratusznik | ||
<[email protected]> (*https://github.com/ahpnils*). | ||
A SPEC file is also provided for RPM builds (currently tested only on Fedora), | ||
thanks to Nils Ratusznik (https://github.com/ahpnils). | ||
|
||
Requirements | ||
------------ | ||
|
@@ -35,22 +40,19 @@ module, *readline* is highly recommended to access shell's full features. A | |
full documentation on shell's usage is available at | ||
http://outini.github.io/pymailq/pqshell.html | ||
|
||
**Used Python modules:** | ||
|
||
* **os** *(https://docs.python.org/2/library/os.html)* | ||
* **sys** *(https://docs.python.org/2/library/sys.html)* | ||
* **datetime** *(https://docs.python.org/2/library/datetime.html)* | ||
* **functools** *(https://docs.python.org/2/library/functools.html)* | ||
* **subprocess** *(https://docs.python.org/2/library/subprocess.html)* | ||
* **gc** *(https://docs.python.org/2/library/gc.html)* | ||
* **re** *(https://docs.python.org/2/library/re.html)* | ||
* **cmd** *(https://docs.python.org/2/library/cmd.html)* | ||
* **shlex** *(https://docs.python.org/2/library/shlex.html)* | ||
* **email** *(https://docs.python.org/2/library/email.html)* | ||
* **collections.Counter** | ||
*(https://docs.python.org/2/library/collections.html#collections.Counter)* | ||
|
||
License | ||
------- | ||
|
||
"GNU GENERAL PUBLIC LICENSE" (Version 2) *(see LICENSE file)* | ||
|
||
|
||
.. |PythonPIP| image:: https://badge.fury.io/py/pymailq.svg | ||
.. _PythonPIP: https://pypi.python.org/pypi/pymailq/ | ||
.. |PythonSupport| image:: https://img.shields.io/badge/python-2.7,%203.4-blue.svg | ||
.. _PythonSupport: https://github.com/outini/pymailq/ | ||
.. |License| image:: https://img.shields.io/badge/license-GPLv2-green.svg | ||
.. _License: https://github.com/outini/pymailq/ | ||
.. |Codacy| image:: https://api.codacy.com/project/badge/Grade/8444a0f124fe463d86a91d80a2a52e7c | ||
.. _Codacy: https://www.codacy.com/app/outini/pymailq | ||
.. |Coverage| image:: https://api.codacy.com/project/badge/Coverage/8444a0f124fe463d86a91d80a2a52e7c | ||
.. _Coverage: https://www.codacy.com/app/outini/pymailq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.5.3 | ||
0.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Sphinx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.