Go to file
Daniel Kessler 5988689392
Use string when comparing with info_get
Currently the "detached" setting for `notify_when` does not detect attached relays, since it compares 0 to '0'. This PR fixes that by using string equality.
2018-01-10 13:33:38 -08:00
LICENSE.txt 2017-02-10 19:01:01 +01:00
pushjet.py Use string when comparing with info_get 2018-01-10 13:33:38 -08:00
README.md 2017-02-10 19:01:01 +01:00

weechat-pushjet

A WeeChat plugin that sends highlights and/or private message notifications through Pushjet.

Installation

In WeeChat install the script by typing the following:

/script install pushjet.py

If you're using the public push server, all you have to do is set the secret option in the configuration.

Options

The plugin allows you to set a few options through the normal WeeChat settings system.
You'll find all of them under plugins.var.python.pushjet, and all of them have helpful descriptions.

To set them use /set plugins.var.python.pushjet.foo bar or through the iset.pl plugin.

  • host
  • secret
    • secret for the pushjet api (default: "")
  • level
    • severity level for the message, from 1 to 5 (low to high) (default: 4)
  • timeout
    • timeout for the message sending in seconds (>= 1) (default: 30)
  • separator
    • separator between nick and message in notifications (default: ": ")
  • notify_on_highlight
    • push notifications for highlights in buffers (on/off) (default: "on")
  • notify_on_privmsg
    • push notifications for private messages (on/off) (default: "on")
  • notify_when
    • when to push notifications (away/detached/always/never) (default: "always")
  • ignore_buffers
    • comma-separated list of buffers to ignore (default: "")
  • ignore_nicks
    • comma-separated list of users to not push notifications from (default: "")

Issues

  • The currently available version of Pushjet is sending the wrong error codes for errors.
    This means that if your settings are invalid it's very hard to find out exactly what is wrong.
  • Away status can't be checked when receiving private messages