SimplePush: "SimplePush is currently disabled on this system"
Closed this issue ยท 7 comments
๐ฃ Notification Service(s) Impacted
SimplePush
๐ Describe the bug
Error / Message not delivered...
๐ก Screenshots and Logs
Matt-Packwoods-iMac:~ $ apprise -vv -t "Test Message Title" -b "Test Message Body" --tag spush_trigger
2023-12-25 11:26:50,195 - INFO - Loaded 28 entries from file:///Users/mattpackwood/.config/apprise.yml?encoding=utf-8&cache=yes
2023-12-25 11:26:50,195 - WARNING - SimplePush is currently disabled on this system.
๐ป Your System Details:
- OS: macOS 14.2.1
- Python Version: Python 3.12.1
๐ฎ Additional context
Service is working when triggered thought "their" cli....
That's not a bug,
Your system likely doesn't have cryptography
installed on it.
pip3 install cryptography
Disabled plugins are explained why with:
apprise --details
I forgot about
apprise --details
But
I already had cryptography
installed and I am getting:
- SimplePush
Python Packages Required:
- cryptography
when I run:
Matt-Packwoods-iMac:~ $ pip3 install cryptography
Requirement already satisfied: cryptography in /Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages (41.0.7)
Requirement already satisfied: cffi>=1.12 in ./Library/Python/3.12/lib/python/site-packages (from cryptography) (1.16.0)
Requirement already satisfied: pycparser in ./Library/Python/3.12/lib/python/site-packages (from cffi>=1.12->cryptography) (2.21)
Can you open a Python terminal and run the following for me:
from cryptography.hazmat.primitives import padding
from cryptography.hazmat.primitives.ciphers import Cipher
from cryptography.hazmat.primitives.ciphers import algorithms
from cryptography.hazmat.primitives.ciphers import modes
from cryptography.hazmat.backends import default_backend
These are the imports that determines if the plugin can be enabled or not.
Perhaps the newer versions of cryptography changed the location around for these.
Please share any import error you may get
Of course!
No errors! See below...
Python 3.12.1 (v3.12.1:2305ca5144, Dec 7 2023, 17:23:38) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from cryptography.hazmat.primitives import padding
>>> from cryptography.hazmat.primitives.ciphers import Cipher
>>> from cryptography.hazmat.primitives.ciphers import algorithms
>>> from cryptography.hazmat.primitives.ciphers import modes
>>> from cryptography.hazmat.backends import default_backend
>>> exit()
Matt-Packwoods-iMac:~ $
I just spent a few minutes looking into this, and it is definitely related to your environment.
apprise -vv -b "body" "spush=spush://user:pass@naCLB2?event=test"
2023-12-27 21:17:19,112 - INFO - Sent SimplePush notification.
# Even verifification shows that i recelive it and command line properly returns expected code
echo $?
0
I believe you may be installing cryptography
in one environment, but sending your apprise notifications from another (one that still does not have cryptography installed on it)
Let me "have a dig".
Ah, the issue is I am installing Apprise through Homebrew, what I should have done is:
brew install python-cryptography
I have cleaned up my Python install and moved all my Apprise "Stuff" to Homebrew