-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Support XEP-0357: Push Notifications #1881
Conversation
This module tries to keep pending stream management sessions of push clients alive (as long as the disconnected clients are reachable via push notifications).
Finally :) |
357c014
to
65dd8d0
Compare
Whats missing for merging? |
@weiss just ping me when you think it's ready for merge. you may add other backends later after 17.08. |
Yes, I think this can be merged. |
where can i find the documentation for using mod_push with ejabberd? |
You can simply enable |
Thank you! |
We have been struggling to activate push notifications. Can anyone point me to the documentation as to how can I enable push notification with FCM the server. Also what do we need to do from the client application. |
See #2109 (comment) |
does it support Voip push? |
@gylraj no, whatever that means. |
@gylraj ejabberd sends a push request, it depends on your app and push server to register with Apple as a VoIP app to be able to get a VoIP push, else it will get a standard push. |
@fingertips-solutions this concerns ejabberd how? What push server do you use for your app? |
Apple apns
…
On Feb 4, 2019 at 6:53 PM, <Licaon_Kter ***@***.***)> wrote:
@fingertips-solutions (https://github.com/fingertips-solutions) this concerns ejabberd how? What push server do you use for your app?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub (#1881 (comment)), or mute the thread (https://github.com/notifications/unsubscribe-auth/Aiw-swRREV23rT-Z2s3zLhaWQsHR-iH6ks5vKDt3gaJpZM4Ofe5D).
|
@fingertips-solutions, from the docs:
|
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
This adds two modules (and a few helper functions to other modules):
mod_push
implements (the XMPP server part of) XEP-0357: Push Notifications, with the business rules suggested by Daniel Gultsch.mod_push_keepalive
tries to keep the XEP-0198 session alive for disconnected (but reachable) push clients, mostly to make push notifications work for standard MUC rooms. The idea is to not let the session expire unless the client failed to resume it after a push notification. (Large servers might want to disable this to save resources.)SQL/Riak support is still missing.