From ea8a9585ec7ee149d4c411bc45b05756cb4c8f65 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 27 Nov 2022 08:09:17 -0300 Subject: bin/{msg,tmp,xmpp}: Change euandreh.xyz -> euandre.org --- bin/xmpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin/xmpp') diff --git a/bin/xmpp b/bin/xmpp index b08a783..50c55ba 100755 --- a/bin/xmpp +++ b/bin/xmpp @@ -26,9 +26,9 @@ Send a one-off XMPP message. Examples: - Send a message to eu@euandreh.xyz: + Send a message to eu@euandre.org: - $ xmpp -m 'Hello, XMPP!' eu@euandreh.xyz""" + $ xmpp -m 'Hello, XMPP!' eu@euandre.org""" class SendMsgBot(slixmpp.ClientXMPP): def __init__(self, jid, password, on_start): @@ -43,7 +43,7 @@ class SendMsgBot(slixmpp.ClientXMPP): def main(): logging.basicConfig(level=logging.INFO) - from_ = "bot@euandreh.xyz" + from_ = "bot@euandre.org" message = "" for s in sys.argv: @@ -84,7 +84,7 @@ def main(): print(USAGE, file=sys.stderr) sys.exit(2) - passcmd = "pass show VPS/kuvira/XMPP/" + from_ + " | head -n1 | tr -d '\\n'" + passcmd = "pass show from_ | head -n1 | tr -d '\\n'" password = os.popen(passcmd).read() def on_start(self): -- cgit v1.2.3