mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
37 lines
1.7 KiB
JSON
37 lines
1.7 KiB
JSON
[{
|
|
"id": "migrate_user_email_to_mail_email",
|
|
"name": "Migrate all user email with seafile domain to main user email",
|
|
"command": "bash scripts/actions",
|
|
"user": "root",
|
|
"accepted_return_codes": [0],
|
|
"description": {
|
|
"en": "Hight level function : Change automatically the email for the user authentication to a the main user email. This function should be run when you migrate from seafile 6 to seafile 7.\nBy example 'toto@seafile-domain.tld' will be renamed to the new email 'toto-main-email@main-yunohost-domain.tld'. Note that when do you this change the email need to be also changed in all client !!"
|
|
}
|
|
},
|
|
{
|
|
"id": "change_user_email",
|
|
"name": "Change user email of user",
|
|
"command": "bash scripts/actions",
|
|
"user": "root",
|
|
"accepted_return_codes": [0],
|
|
"description": {
|
|
"en": "Low level function : Change manually the email for the user authentication to a other email.\nBy example 'toto@seafile-domain.tld' will be renamed to the new email 'toto@main-yunohost-domain.tld'. Note that when do you this change the email need to be also changed in all client !!"
|
|
},
|
|
"arguments": [
|
|
{
|
|
"name": "old_email",
|
|
"type": "string",
|
|
"ask": {
|
|
"en": "Old user email"
|
|
},
|
|
"example": "toto@seafile-domain.tld"
|
|
}, {
|
|
"name": "new_email",
|
|
"type": "string",
|
|
"ask": {
|
|
"en": "New user email"
|
|
},
|
|
"example": "toto@main-yunohost-domain.tld"
|
|
}
|
|
]
|
|
}]
|