2017-07-07 20:59:25 +02:00
#!/bin/bash
set -e
MAILHOST = $1
2018-01-28 10:31:20 +01:00
if [ " $MAILHOST " = "" ] ; then
echo " Usage: echo example.com example.org | $0 mailcow.example.com "
exit 1
fi
2017-07-07 20:59:25 +02:00
cd $( dirname $0 )
2020-10-07 20:18:19 +02:00
wget -O connector.tar.gz https://github.com/inverse-inc/sogo-connector/archive/sogo-connector-68.0.1.tar.gz
2017-07-07 20:59:25 +02:00
2019-10-20 10:01:54 +02:00
mkdir -p connector
2017-07-07 20:59:25 +02:00
tar --strip-components= 1 -C connector -xf connector.tar.gz
2019-10-20 10:01:54 +02:00
# build custom connector
2017-07-07 20:59:25 +02:00
while read DOMAINS; do
for DOMAIN in $DOMAINS ; do
2019-10-20 10:01:54 +02:00
echo " Building SOGo Connector for $DOMAIN hosted on $MAILHOST "
cd connector
2017-07-07 20:59:25 +02:00
mkdir -p custom/${ DOMAIN }
cp -r custom/sogo-demo/* custom/${ DOMAIN } /
2019-10-20 10:01:54 +02:00
sed -i " s/http:\/\/sogo-demo\.inverse\.ca/https:\/\/ ${ MAILHOST } /g " custom/${ DOMAIN } /chrome/content/sogo-connector/global/extensions.rdf
sed -i " s/plugins\/updates\.php[?]/thunderbird-plugins.php?domain= ${ DOMAIN } \&/g " custom/${ DOMAIN } /chrome/content/sogo-connector/global/extensions.rdf
echo > custom/${ DOMAIN } /defaults/preferences/site.js
echo 'pref("sogo-connector.autocomplete.server.urlid", "' ${ DOMAIN } '");' > custom/${ DOMAIN } /defaults/preferences/site.js
2017-07-07 20:59:25 +02:00
echo 'pref("mail.collect_email_address_outgoing", false);' >> custom/${ DOMAIN } /defaults/preferences/site.js
2019-10-20 10:11:01 +02:00
#sed -i 's/<\/Seq>/<li><Description em:id="sieve@mozdev.org" em:name="Sieve"\/><\/li><li><Description em:id="imap-acl@sirphreak.com" em:name="Imap-ACL-Extension"\/><\/li><\/Seq>/g' custom/${DOMAIN}/chrome/content/sogo-connector/global/extensions.rdf
2017-07-07 20:59:25 +02:00
make build = ${ DOMAIN }
2019-10-20 10:01:54 +02:00
CONNECTOR_VER = $( grep em:version install.rdf | awk -F '"' '{print $2}' )
CONNECTOR_MIN_VER = $( grep em:minVersion install.rdf | grep -Eo '[0-9\.]+' | head -n 1)
mv sogo-connector-*.xpi ../sogo-connector-${ CONNECTOR_VER } -${ DOMAIN } .xpi
2017-07-07 20:59:25 +02:00
cd ..
done
done
2019-10-20 10:11:01 +02:00
# if you add any other plugins below, you need to add them into extensions.rdf as in the line commented out above
2019-10-20 10:01:54 +02:00
# # download Sieve plugin
# SIEVE_RELEASES=$(wget --header="Accept: application/vnd.github.v3+json" -qO - https://api.github.com/repos/thsmi/sieve/releases)
# SIEVE_VER=$(echo "$SIEVE_RELEASES" | grep -o '"tag_name": *"[^"]*"' | head -n 1 | awk -F '"' '{print $4}')
# SIEVE_URL=$(echo "$SIEVE_RELEASES" | grep -o '"browser_download_url": *"[^"]*"' | head -n 1 | awk -F '"' '{print $4}')
# wget -O sieve-${SIEVE_VER}.xpi ${SIEVE_URL}
# unset SIEVE_RELEASES
#
# # download ACL plugin
# IMAP_ACL_RELEASES=$(wget -qO - 'https://addons.thunderbird.net/en-US/thunderbird/addon/imap-acl-extension/')
# IMAP_ACL_VER=$(echo "$IMAP_ACL_RELEASES" | grep version-number | awk -F '[<>]' '{print $3}' | head -n 1)
# IMAP_ACL_URL=$(echo "$IMAP_ACL_RELEASES" | grep -o 'https://.*\.xpi' | head -n 1)
# wget -O imap_acl_extension-${IMAP_ACL_VER}-tb.xpi ${IMAP_ACL_URL}
# unset IMAP_ACL_RELEASES
2017-07-07 20:59:25 +02:00
# update version file
2019-10-20 10:01:54 +02:00
echo " sogo-connector@inverse.ca; ${ CONNECTOR_VER } ;sogo-connector- ${ CONNECTOR_VER } -__DOMAIN__.xpi; ${ CONNECTOR_MIN_VER } " > version.csv
# echo "sieve@mozdev.org;${SIEVE_VER};sieve-${SIEVE_VER}.xpi" >> version.csv
# echo "imap-acl@sirphreak.com;${IMAP_ACL_VER};imap_acl_extension-${IMAP_ACL_VER}-tb.xpi" >> version.csv
2017-07-07 20:59:25 +02:00
2019-10-20 10:01:54 +02:00
rm -rf connector *.tar.gz