shutdown threema transport

This commit is contained in:
genofire 2020-05-13 12:52:46 +02:00
parent 6353c21ffd
commit bf571f9135
3 changed files with 16 additions and 11 deletions

View File

@ -1,5 +1,5 @@
--- ---
title: "Threema (and IRC) Transports" title: "IRC (and Threema) Transports"
date: "2019-06-01T01:52:54+02:00" date: "2019-06-01T01:52:54+02:00"
type: post type: post
--- ---
@ -8,6 +8,8 @@ Hello together,<br/>
we run for [chat.sum7.eu](https://chat.sum7.eu) already an IRC-XMPP-transport.<br/> we run for [chat.sum7.eu](https://chat.sum7.eu) already an IRC-XMPP-transport.<br/>
So every person is able to join any IRC chat(room) without another IRC client. So every person is able to join any IRC chat(room) without another IRC client.
## IRC-Transport
Join a chatroom _#ROOM%SERVERNAME@irc.chat.sum7.eu/MYNICKNAME_, by replacing _MYNICKNAME_ with your nickname.<br/> Join a chatroom _#ROOM%SERVERNAME@irc.chat.sum7.eu/MYNICKNAME_, by replacing _MYNICKNAME_ with your nickname.<br/>
e.g. [#card10badge%irc.freenode.net@irc.chat.sum7.eu](xmpp:#card10badge%irc.freenode.net@irc.chat.sum7.eu?join) or [#ffhb%irc.hackint.org@irc.chat.sum7.eu](xmpp:#ffhb%irc.hackint.org@irc.chat.sum7.eu?join) e.g. [#card10badge%irc.freenode.net@irc.chat.sum7.eu](xmpp:#card10badge%irc.freenode.net@irc.chat.sum7.eu?join) or [#ffhb%irc.hackint.org@irc.chat.sum7.eu](xmpp:#ffhb%irc.hackint.org@irc.chat.sum7.eu?join)
@ -16,13 +18,16 @@ A single person could be contact by using _NICKNAME%irc.freenode.net@irc.chat.su
We use the software [biboumi](https://biboumi.louiz.org/) for it. We use the software [biboumi](https://biboumi.louiz.org/) for it.
**Be careful**, IRC-Transport stores by default logs of the IRC channels to deliver them after you got online again.<br/>
(This could be disabled by changing the default settings persistent and history with your client [see](https://doc.biboumi.louiz.org/user.html#history))
By the way _irc.hackint.org_ run his own transport, so you do not have to trust us, to keep the logs safe.<br/> By the way _irc.hackint.org_ run his own transport, so you do not have to trust us, to keep the logs safe.<br/>
Like [#ffhb@irc.hackint.org](xmpp:#ffhb@irc.hackint.org?join) with your normal xmpp username as nickname on irc. Like [#ffhb@irc.hackint.org](xmpp:#ffhb@irc.hackint.org?join) with your normal xmpp username as nickname on irc.
--- **Be careful**, IRC-Transport stores by default logs of the IRC channels to deliver them after you got online again.<br/>
(This could be disabled by changing the default settings persistent and history with your client [see](https://doc.biboumi.louiz.org/user.html#history))
## Threema Transport
**Update:**
- __2020-05-13__ Sadly the REST API of Threema changed, to register new IDS. So we descided to shutdown the threema-Transport
Now we start to develop a Threema-XMPP-Transport, it is a really early state.<br/> Now we start to develop a Threema-XMPP-Transport, it is a really early state.<br/>
The current version is deployed at _threema.chat.sum7.eu_. The current version is deployed at _threema.chat.sum7.eu_.
@ -31,7 +36,7 @@ If you like to try it add [threema.chat.sum7.eu](xmpp:threema.chat.sum7.eu) and
Afterwards, you get could write any person by use _THREEMAID@threema.chat.sum7.eu_ like [ECHOECHO@threema.chat.sum7.eu](xmpp:ECHOECHO@threema.chat.sum7.eu)-Bot. Afterwards, you get could write any person by use _THREEMAID@threema.chat.sum7.eu_ like [ECHOECHO@threema.chat.sum7.eu](xmpp:ECHOECHO@threema.chat.sum7.eu)-Bot.
So we like persons which test it and help us to improve the software.<br/> So we like persons which test it and help us to improve the software.<br/>
Do not be shy to open an issue under [dev.sum7.eu/genofire/thrempp](https://dev.sum7.eu/genofire/thrempp). Do not be shy to open an issue under [dev.sum7.eu/sum7/thrempp](https://dev.sum7.eu/sum7/thrempp).
For **Thrempp** we use the library of [o3ma](https://github.com/o3ma/o3) and [go-xmpp](https://gosrc.io/xmpp) for it.<br/> For **Thrempp** we use the library of [o3ma](https://github.com/o3ma/o3) and [go-xmpp](https://gosrc.io/xmpp) for it.<br/>
The current structure of **Thrempp** makes it possible to add other transports, later. The current structure of **Thrempp** makes it possible to add other transports, later.

View File

@ -3,7 +3,7 @@
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<title>{{ if ne .URL "/" }}{{ .Title }} &middot; {{ end }}{{ .Site.Title }}</title> <title>{{ if ne .RelPermalink "/" }}{{ .Title }} &middot; {{ end }}{{ .Site.Title }}</title>
<link rel="apple-touch-icon" sizes="180x180" href="{{ .Site.BaseURL }}/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="180x180" href="{{ .Site.BaseURL }}/apple-touch-icon.png">

View File

@ -1,9 +1,9 @@
<nav id="nav-below" class="navigation" role="navigation"> <nav id="nav-below" class="navigation" role="navigation">
{{if .HasNext}}<div class="older"> {{if .HasNext}}<div class="older">
<a href="{{ .Next.URL }}">&laquo; Older Posts</a> <a href="{{ .Next.RelPermalink }}">&laquo; Older Posts</a>
</div>{{end}} </div>{{end}}
{{if .HasPrev}}<div class="newer"> {{if .HasPrev}}<div class="newer">
<a href="{{ .Prev.URL }}">Newer Posts &raquo;</a> <a href="{{ .Prev.RelPermalink }}">Newer Posts &raquo;</a>
</div>{{end}} </div>{{end}}
<div class="clearfix"></div> <div class="clearfix"></div>
<div class="pagination">Page {{ .PageNumber }} of {{.TotalPages}}</div> <div class="pagination">Page {{ .PageNumber }} of {{.TotalPages}}</div>