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

questions: is there plan to provide a #87

Open
a-detiste opened this issue Oct 15, 2023 · 2 comments
Open

questions: is there plan to provide a #87

a-detiste opened this issue Oct 15, 2023 · 2 comments
Labels
enhancement New feature or request

Comments

@a-detiste
Copy link

is there plan to provide a /usr/sbin/sendmail CLI interface,
to enable use of mailrise without a daemon ?

https://en.wikipedia.org/wiki/Message_submission_agent

@YoRyan YoRyan added the enhancement New feature or request label Oct 17, 2023
@YoRyan
Copy link
Owner

YoRyan commented Oct 17, 2023

No plans at the moment, but that's an interesting idea. It's just nice to be able to piggyback on existing Unix software that can queue messages for network outages, etc.

@a-detiste
Copy link
Author

Here's the adaptator script I use for my project:

#!/bin/sh
from=
subject=
while read -r header rest; do
        case "$header" in
                ""      )       break           ;;
                From:   )       from="$rest"    ;;
                Subject:)       subject="$rest" ;;
        esac
done
exec apprise -vv -t "$subject – $from" -b "$(cat)"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants