diff options
author | B. Watson <yalhcru@gmail.com> | 2022-02-18 12:46:52 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-19 12:09:28 +0700 |
commit | 4a1855f0a4df62d63a68733837c8fa813470290d (patch) | |
tree | 336fc01714b8e56061486fae4fdbd8ed1fbae156 /office/SOGo/getdocs.sh | |
parent | b089b0e37a8b840793594687d359f3fddbbdeb61 (diff) |
office/SOGo: Make the optional docs truly optional.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'office/SOGo/getdocs.sh')
-rw-r--r-- | office/SOGo/getdocs.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/office/SOGo/getdocs.sh b/office/SOGo/getdocs.sh new file mode 100644 index 000000000000..cdbbc6513c99 --- /dev/null +++ b/office/SOGo/getdocs.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +# 20220218 bkw: download the PDF docs for SOGo. upstream site does +# user-agent checking, so we pretend to be an ancient version of +# firefox. + +wget --user-agent 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)' \ + https://sogo.nu/files/docs/SOGoInstallationGuide.pdf \ + https://sogo.nu/files/docs/SOGoMozillaThunderbirdConfigurationGuide.pdf \ + https://sogo.nu/files/docs/SOGoOutlookConnectorConfigurationGuide.pdf + +md5sum -c docs.md5sums +exit $? |