Added sponsoring disclaimer.

This commit is contained in:
Antoine Nguyen
2024-04-09 13:21:08 +02:00
parent e76d7d5c28
commit 748ac2087f

13
run.py
View File

@@ -276,6 +276,19 @@ def main(input_args):
"Restore complete! You can enjoy Modoboa at https://{} (same credentials as before)" "Restore complete! You can enjoy Modoboa at https://{} (same credentials as before)"
.format(config.get("general", "hostname")) .format(config.get("general", "hostname"))
) )
utils.success(
"\n"
"Modoboa is a free software maintained by volunteers.\n"
"You like the project and want it to be sustainable?\n"
"Then don't wait anymore and go sponsor it here:\n"
)
utils.printcolor(
"https://github.com/sponsors/modoboa\n",
utils.YELLOW
)
utils.success(
"Thank you for your help :-)\n"
)
if __name__ == "__main__": if __name__ == "__main__":