Bokonon

Members
  • Posts

    7
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Bokonon's Achievements

Noob

Noob (1/14)

4

Reputation

  1. Adding the following to NotificationAgents.xml allows Telegram to work for notifications. Not the easiest process to setup though. First you have to send @BotFather a message '/newbot', after a few steps it sends you back your HTTP API. Then you need to start a conversation with your bot in order to get the Chat ID to send to. Not sure there is an easy way to integrate this into the settings page, I manually queried the API to get the chat ID. <Agent> <Name>Telegram</Name> <Variables> <Variable Help="The API key can be found [a href='https://core.telegram.org/bots/api' target='_blank'] [u]here[/u].[/a]" Desc="API key" Default="">API_KEY</Variable> <Variable Help="Chat ID [a href='https://core.telegram.org/bots/api' target='_blank'] [u]here[/u].[/a]" Desc="Chat ID" Default="">CHAT_ID</Variable> <Variable Help="Specify the fields which are included in the message body of the notification." Desc="Notification Message" Default="$DESCRIPTION">MESSAGE</Variable> </Variables> <Script> <![CDATA[ #!/bin/bash ########## {0} ########## MESSAGE=$(echo -e "$MESSAGE") URL=https://api.telegram.org/bot$(echo -e "$API_KEY") CHATID=$(echo -e "$CHAT_ID") curl -s -k -G \ --data-urlencode "text=$MESSAGE" \ $URL/sendMessage?chat_id=$CHATID ]]> </Script> </Agent> Edit: While looking for something else I noticed theres another way to get the chatid. Send '/getid' to IDBot @myidbot (https://telegram.me/myidbot) and it will reply with your chat id
  2. The file at https://raw.githubusercontent.com/limetech/unRAIDServer/master/unRAIDServer.plg is 6.2.1. I'm not sure if in 6.2.1 they changed the location where it downloads the file, I didn't see 6.2.2 released on github.com. After updating to 6.2.1, I see that they did change the location. Now it is grabbing the plugin from https://raw.github.com/limetech/webgui/6.2/plugins/unRAIDServer/unRAIDServer.plg So in theory, someone going from < 6.2.1 could download that plg file and drop it in /tmp/plugins and then update without having to go through multiple steps
  3. Thanks for the reply. I'm still running a 6.0 but will look into upgrading when I have a chance to do some testing. Definitely will be nice to not have to rebuild the kernel, though with how infrequent it really needs upgrading it wouldn't be a huge deal
  4. Haven't seen this in any of the 6.1 rc, any chance it can get included?
  5. Can the cdc_acm kernel module get included in the future? I'm rebuilding my own kernel to add it but I'd rather not have to do this every time. I'm trying to use my Aeon Labs Z-Wave USB stick with an OpenHAB docker.
  6. While I think running in Docker is a much cleaner solution, an application crashing should never bring your unraid server down.
  7. Is anyone still interested in Deluge? I prefer Deluge over Transmission so this morning I worked on getting it running on my unRAID box and was successful. If anyone is interested I could post my notes on what I did