-
|
I have mailrise to send apprise notifications from apps that only support email notifications. I have a couple of different services (pushbullet, discord and matrix.org) that all work fine from there. The app sends the email to my homelab mailrise server, and the notification goes out as expected. But when I use those URLs in apprise commandline v1.9.7, none work. This is a problem for me because I am writing an app to use apprise, and I noticed that my matrix.org url wouldn't work there. So I started testing with the command line, and sure enough, it didn't work there either. I have several URL types in my mailrise that all work fine, but just to show a sample, here's a couple:
Anyone have any ideas for me? Bottom line, I don't really care that much about it working or not working with the command line, but for sure it has to be pointing to some other issue??? C:\github-projects\racecarr>apprise -vv --debug -t "Title Thing" -b "This is a test notification from apprise CLI" 'matrixs://mymatrixusername:2lxINVALIDx5@matrix.org/!rVNQxxINVALIDxxUYWFS:matrix.org'
2026-02-15 10:59:21,543 - DEBUG - Language set to en
2026-02-15 10:59:21,794 - DEBUG - Module exception raised from C:\Users\skip\AppData\Roaming\Python\Python314\site-packages\apprise\plugins\syslog.py (name=apprise.plugins.syslog) No module named 'syslog'
2026-02-15 10:59:21,856 - DEBUG - Notification Plugin 125(s) and 173 Schema(s) loaded in 0.3097s
2026-02-15 10:59:21,858 - DEBUG - Loaded Matrix URL: matrixs://mymatrixusername:****@matrix.org/%21rVNQxxINVALIDxxUYWFS%3Amatrix.org%27?image=no&mode=off&version=3&msgtype=text&discovery=yes&format=text&overflow=upstream
2026-02-15 10:59:21,859 - WARNING - Ignoring illegally formed room !rVNQxxINVALIDxxUYWFS:matrix.org' from Matrix server list.
2026-02-15 10:59:21,859 - WARNING - Could not join Matrix room !rVNQxxINVALIDxxUYWFS:matrix.org'. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Try using double quotes, you can see that the channel it's trying to join is Microsoft PowerShell isn't as graceful as the Linux shell. It appears to be passing in what to you're sharing verbatim. Double quotes should let it work for you; especially if it's working with Mailrise |
Beta Was this translation helpful? Give feedback.
-
|
OMG, that was it! Thanks! |
Beta Was this translation helpful? Give feedback.
Try using double quotes, you can see that the channel it's trying to join is
!rVNQxxINVALIDxxUYWFS:matrix.org'. Note the single quote at the end.Microsoft PowerShell isn't as graceful as the Linux shell. It appears to be passing in what to you're sharing verbatim.
Double quotes should let it work for you; especially if it's working with Mailrise