Updated login

This commit is contained in:
Tracker-Friendly 2023-11-20 00:37:33 +00:00
parent 9f1ab53385
commit 9b85c8fdbd
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ def create_email_account(username, password):
file.write(password)
# Pass the file through a shell command
cmd = ["cat", "tmp/password.tmp", "|", "doas", "-u", "maddy", "maddy", "creds", "create", f"{username}@hectabit.org"]
cmd = ["cat", "tmp/password.tmp", "|", "maddy", "creds", "create", f"{username}@hectabit.org"]
# Run and determine the result of the shell command
result = subprocess.run(" ".join(cmd), shell=True, check=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)