mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
4a1855f0a4
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
13 lines
465 B
Bash
13 lines
465 B
Bash
#!/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 $?
|