2016-06-03 09:24:12 +00:00
|
|
|
#!/bin/bash -eux
|
|
|
|
|
|
|
|
source /etc/environment
|
|
|
|
|
|
|
|
email=$1
|
|
|
|
cc_welcome_email=$2
|
2016-06-03 13:49:29 +00:00
|
|
|
quota=$3
|
2016-06-03 09:24:12 +00:00
|
|
|
|
|
|
|
password=`tr -dc A-Za-z0-9_ < /dev/urandom | head -c 10 | xargs`
|
|
|
|
local_part=`echo $email | cut -d@ -f1`
|
|
|
|
email_domain=`echo $email | cut -d@ -f2`
|
|
|
|
|
|
|
|
curl --data "username=${mail_username}&password=${mail_password}&login=Log+In&rememberme=0" -c /tmp/cookie.txt https://${mail_hostname}/auth/login
|
2016-07-04 19:39:23 +00:00
|
|
|
|
|
|
|
if ! curl -b /tmp/cookie.txt https://${mail_hostname}/domain | grep $email_domain | grep purge-domain | grep -o 'purge-domain-[0-9]*' | grep -o '[0-9]*' ; then
|
|
|
|
curl --data "backupmx=0&active=1&max_aliases=0&max_mailboxes=0&max_quota=0"a=0&transport=virtual&domain=${email_domain}" -b /tmp/cookie.txt https://${mail_hostname}/domain/add
|
|
|
|
fi
|
|
|
|
|
2016-06-03 09:24:12 +00:00
|
|
|
domain_id=`curl -b /tmp/cookie.txt https://${mail_hostname}/domain | grep $email_domain | grep purge-domain | grep -o 'purge-domain-[0-9]*' | grep -o '[0-9]*'`
|
|
|
|
curl --data "local_part=${local_part}&domain=${domain_id}&password=${password}&welcome_email=1&cc_welcome_email=${cc_welcome_email}" -b /tmp/cookie.txt https://${mail_hostname}/mailbox/add
|
|
|
|
|
|
|
|
rm /tmp/cookie.txt
|
|
|
|
|
2016-06-03 13:49:29 +00:00
|
|
|
curl -X PUT --user ${cloud_admin}:${cloud_pass} https://${cloud_hostname}/ocs/v1.php/cloud/users/${email} -d key="quota" -d value="${quota}"
|
|
|
|
|
2016-07-04 19:39:05 +00:00
|
|
|
#docker exec -it --user www-data `echo ${cloud_hostname}_app_1 |sed 's/-//g' | sed 's/\.//g'` bash -c "\
|
|
|
|
# php occ mail:account:create ${email} ${email} ${email} ${mail_hostname} 993 ssl ${email} ${password} ${mail_hostname} 587 tls ${email} ${password}"
|