Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.2.0 #14

Merged
merged 12 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
msmtp-yaqi (0.2.0-5) experimental; urgency=medium

* Implement daemon mode.
* Various small improvements.

-- Christian Schrötter <[email protected]> Mon, 29 Apr 2024 14:23:51 +0200

msmtp-yaqi (0.1.1-1) experimental; urgency=medium

* Hotfix: Hold mails with retry-counter 0.
Expand Down
4 changes: 2 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ Homepage: https://github.com/froonix/msmtp-yaqi
Package: msmtp-yaqi
Architecture: all
Multi-Arch: foreign
Provides: msmtpq, msmtp-queue
Depends: ${misc:Depends}, ${shlibs:Depends}, msmtp
Provides: msmtpq, msmtp-queue, msmtp-queue-daemon
Depends: ${misc:Depends}, ${shlibs:Depends}, msmtp, inotify-tools
Description: Yet Another Queue Implementation for MSMTP
5 changes: 3 additions & 2 deletions debian/postinst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ case "${1}" in
;;

configure)
update-alternatives --install /usr/bin/msmtpq msmtpq /usr/bin/msmtp-yaqi 100
update-alternatives --install /usr/bin/msmtp-queue msmtp-queue /usr/bin/msmtp-yaqi 100
update-alternatives --install /usr/bin/msmtpq msmtpq /usr/bin/msmtp-yaqi 100
update-alternatives --install /usr/bin/msmtp-queue msmtp-queue /usr/bin/msmtp-yaqi 100
update-alternatives --install /usr/bin/msmtp-queue-daemon msmtp-queue-daemon /usr/bin/msmtp-yaqi 100
;;

*)
Expand Down
1 change: 1 addition & 0 deletions msmtp-queue-daemon
Loading