Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
8677051073 | |||
16af2e2e8c | |||
0e016c9ec2 | |||
f5e21bfaf2 | |||
ec3ec224f7 |
26
debian/changelog
vendored
Normal file
26
debian/changelog
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
pqm (0.3-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* move display_list_item fn to Mail.print
|
||||||
|
* add "forward-to" command to forward mails in the queue and their verbose state as attachment to given recipients
|
||||||
|
|
||||||
|
-- Stefan Bühler <stefan.buehler@tik.uni-stuttgart.de> Tue, 09 Jan 2024 12:00:39 +0100
|
||||||
|
|
||||||
|
pqm (0.2-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* fix json stream decode performance issue
|
||||||
|
* add __slots__ to most classes
|
||||||
|
* require python >= 3.10
|
||||||
|
|
||||||
|
-- Stefan Bühler <stefan.buehler@tik.uni-stuttgart.de> Sat, 07 Oct 2023 12:11:28 +0200
|
||||||
|
|
||||||
|
pqm (0.1-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Initial release.
|
||||||
|
|
||||||
|
-- Stefan Bühler <stefan.buehler@tik.uni-stuttgart.de> Thu, 12 Jan 2023 10:14:06 +0100
|
||||||
|
|
||||||
|
pqm (0.1-0) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Initial release (fake ITP).
|
||||||
|
|
||||||
|
-- Stefan Bühler <stefan.buehler@tik.uni-stuttgart.de> Thu, 12 Jan 2023 10:14:05 +0100
|
21
debian/control
vendored
Normal file
21
debian/control
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Source: pqm
|
||||||
|
Section: mail
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Stefan Bühler <stefan.buehler@tik.uni-stuttgart.de>
|
||||||
|
Rules-Requires-Root: no
|
||||||
|
Build-Depends:
|
||||||
|
debhelper-compat (= 13),
|
||||||
|
Standards-Version: 4.6.1
|
||||||
|
Homepage: https://git-nks-public.tik.uni-stuttgart.de/mail/pqm
|
||||||
|
|
||||||
|
Package: pqm
|
||||||
|
Architecture: all
|
||||||
|
Depends:
|
||||||
|
python3:any (>= 3.10),
|
||||||
|
python3-trio,
|
||||||
|
python3-pyparsing,
|
||||||
|
python3-yaml,
|
||||||
|
${misc:Depends},
|
||||||
|
Description: postfix (cluster) queue manager
|
||||||
|
CLI tool to manage postfix queues (optionally across multiple hosts through
|
||||||
|
ssh).
|
28
debian/copyright
vendored
Normal file
28
debian/copyright
vendored
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
Source: https://git-nks-public.tik.uni-stuttgart.de/mail/pqm
|
||||||
|
Upstream-Name: pqm
|
||||||
|
|
||||||
|
Files:
|
||||||
|
*
|
||||||
|
Copyright:
|
||||||
|
2023 Universität Stuttgart <no-support-by-mail@uni-stuttgart.de>
|
||||||
|
License: MIT
|
||||||
|
|
||||||
|
License: MIT
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
.
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
.
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
5
debian/gbp.conf
vendored
Normal file
5
debian/gbp.conf
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[DEFAULT]
|
||||||
|
debian-branch = debian
|
||||||
|
upstream-branch = main
|
||||||
|
upstream-tag = v%(version)s
|
||||||
|
pristine-tar = False
|
2
debian/pqm.docs
vendored
Normal file
2
debian/pqm.docs
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
README.md
|
||||||
|
pqm.example.yaml
|
1
debian/pqm.install
vendored
Normal file
1
debian/pqm.install
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
pqm /usr/bin
|
1
debian/pqm.lintian-overrides
vendored
Normal file
1
debian/pqm.lintian-overrides
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
pqm: no-manual-page [usr/bin/pqm]
|
4
debian/rules
vendored
Executable file
4
debian/rules
vendored
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
3.0 (quilt)
|
1
debian/source/options
vendored
Normal file
1
debian/source/options
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
extend-diff-ignore = "(^|/)(venv|.mypy_cache)(/|$)"
|
Loading…
Reference in New Issue
Block a user