From ea1f10183960c7b12913a3173fb5b69cd2c256cc Mon Sep 17 00:00:00 2001 From: Robin van Genderen Date: Wed, 6 Feb 2019 12:55:44 +0100 Subject: [PATCH] Move to own folder and add webapp-admin --- dump_webapp_signatures/readme.md | 12 ++++ readme.md | 103 ------------------------------- 2 files changed, 12 insertions(+), 103 deletions(-) create mode 100644 dump_webapp_signatures/readme.md delete mode 100644 readme.md diff --git a/dump_webapp_signatures/readme.md b/dump_webapp_signatures/readme.md new file mode 100644 index 0000000..41606f2 --- /dev/null +++ b/dump_webapp_signatures/readme.md @@ -0,0 +1,12 @@ + + +dump_webapp_signatures.py +========================= +Dumps all the signatures in a users Webapp to seperate files, meant as companion to the script setdefaultsignature.py as delivered with Webapp (see /usr/share/doc/kopano-webapp/scripts/signatures/ on your Webapp server.) +The files will be written in the current directory. + +#### Usage: +``` +python dump_webapp_signatures.py --user user +``` + diff --git a/readme.md b/readme.md deleted file mode 100644 index f2ab657..0000000 --- a/readme.md +++ /dev/null @@ -1,103 +0,0 @@ -manage_recipients.py -==================== -Manage recipients in webapp - - -#### Usage: - -###### List recipients - -```python -python remove_recipients.py --user --list -``` -###### Remove recipient -Remove options is searching in display_name, smtp_address or email_address. - -```python -python remove_recipients.py --user --remove -``` - -###### Clear history - -```python -python remove_recipients.py --user --remove-all -``` - -#### Example - -Remove all recipients that have example.com in there display_name, smtp_address or email_address - -```python -python remove_recipients.py --user user --remove example.com -``` - - -webapp_settings.py -================== - -#### Usage: - - -###### Backup - -```python -python webapp_settings.py --user user --backup -``` - - -###### Restore - -```python -python webapp_settings.py --user user --restore -``` - -dump_webapp_signatures.py -========================= -Dumps all the signatures in a users Webapp to seperate files, meant as companion to the script setdefaultsignature.py as delivered with Webapp (see /usr/share/doc/kopano-webapp/scripts/signatures/ on your Webapp server.) -The files will be written in the current directory. - -#### Usage: -``` -python dump_webapp_signatures.py --user user -``` - -webapp_switch_locale.py -========================= -List or change the locale currently set in the user's WebApp settings. - -#### Usage: -###### List locale -``` -python switchlocale.py --user user1 -Original locale: nl_NL.UTF-8 -``` -###### Change locale -``` -python switchlocale.py --user user1 --locale de_DE.UTF-8 -Original locale: nl_NL.UTF-8 -Setting locale to: de_DE.UTF-8 -``` - -# set_webapp_default_signature.py - -Add and set a Default signature in Webapp for user(s), will overwrite any other default. -Please use a signature as dumped with dump_webapp_signatures.py - -## Examples - -### Set signature of a local user on the local server -``` -./set_webapp_default_signature.py -u user1 -f user2-signature.sig -``` - -### Set signature multiple local users on the local server -``` -./set_webapp_default_signature.py -u user1 -u user3 -f user2-signature.sig -``` - -### Set signature for all local users on the local server -``` -./set_webapp_default_signature.py -a -f user2-signature.sig -``` - -