consistent example email address

This commit is contained in:
missytake 2023-10-08 16:54:08 +02:00
parent fa9128f65f
commit 4fcc99a891

View file

@ -32,7 +32,7 @@ with an email address
you want to use as a team: you want to use as a team:
``` ```
teams-bot init --email das_synthikat@systemli.org --password p455w0rD teams-bot init --email helpdesk@example.org --password p455w0rD
``` ```
This command will show a QR code; This command will show a QR code;
@ -44,7 +44,7 @@ Now to run it,
simply execute: simply execute:
``` ```
teams-bot init --email das_synthikat@systemli.org --password p455w0rD teams-bot init --email helpdesk@example.org --password p455w0rD
``` ```
The bot only works as long as this command is running. The bot only works as long as this command is running.
@ -63,7 +63,7 @@ from teams_bot.pyinfra import deploy_teams_bot
deploy_teams_bot( deploy_teams_bot(
unix_user='root', # an existing UNIX user (doesn't need root or sudo privileges) unix_user='root', # an existing UNIX user (doesn't need root or sudo privileges)
bot_email='team@example.org', # the email address your team wants to use bot_email='helpdesk@example.org', # the email address your team wants to use
bot_passwd='p4ssw0rd', # the password to the email account bot_passwd='p4ssw0rd', # the password to the email account
) )
``` ```