diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-02-19 20:43:28 -0500 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-02-19 20:43:28 -0500 |
commit | f2d27d543d77d290b551df03086efb54db990956 (patch) | |
tree | ca24c33673146ab2965d3c9104f1d917b3f7817a /.homeinstall | |
parent | 1db3409f36f408bfc49816e1fab3df4b53b8f19e (diff) | |
download | volse-hubzilla-f2d27d543d77d290b551df03086efb54db990956.tar.gz volse-hubzilla-f2d27d543d77d290b551df03086efb54db990956.tar.bz2 volse-hubzilla-f2d27d543d77d290b551df03086efb54db990956.zip |
Added sendmail installation to .homeinstall script so that hub can send email notifications
Diffstat (limited to '.homeinstall')
-rwxr-xr-x | .homeinstall/hubzilla-setup.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.homeinstall/hubzilla-setup.sh b/.homeinstall/hubzilla-setup.sh index 1a584b49c..caa46950c 100755 --- a/.homeinstall/hubzilla-setup.sh +++ b/.homeinstall/hubzilla-setup.sh @@ -225,6 +225,11 @@ function install_curl { nocheck_install "curl" } +function install_sendmail { + print_info "installing sendmail..." + nocheck_install "sendmail" +} + function install_php { # openssl and mbstring are included in libapache2-mod-php5 # to_to: php5-suhosin @@ -823,6 +828,7 @@ sslconf=/etc/apache2/sites-available/default-ssl.conf check_config update_upgrade install_curl +install_sendmail install_apache install_php install_mysql |