mirror of https://github.com/SeanOMik/znc-push.git
parent
e418634485
commit
dd432247f8
21
push.cpp
21
push.cpp
|
@ -265,6 +265,23 @@ class CPushMod : public CModule
|
|||
params["notification[message]"] = short_message;
|
||||
params["notification[source_url]"] = uri;
|
||||
}
|
||||
else if (service == "nma")
|
||||
{
|
||||
if (options["secret"] == "")
|
||||
{
|
||||
PutModule("Error: secret not set");
|
||||
return;
|
||||
}
|
||||
|
||||
service_host = "www.notifymyandroid.com";
|
||||
service_url = "/publicapi/notify";
|
||||
|
||||
params["apikey"] = options["secret"];
|
||||
params["application"] = app;
|
||||
params["event"] = title;
|
||||
params["description"] = short_message;
|
||||
params["url"] = uri;
|
||||
}
|
||||
else if (service == "prowl")
|
||||
{
|
||||
if (options["secret"] == "")
|
||||
|
@ -875,6 +892,10 @@ class CPushMod : public CModule
|
|||
{
|
||||
PutModule("Note: Boxcar requires setting the 'username' option");
|
||||
}
|
||||
else if (value == "nma")
|
||||
{
|
||||
PutModule("Note: NMA requires setting the 'secret' option");
|
||||
}
|
||||
else if (value == "prowl")
|
||||
{
|
||||
PutModule("Note: Prowl requires setting the 'secret' option");
|
||||
|
|
Loading…
Reference in New Issue