Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion shared/dovecot/dovecot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ else
sudo touch /etc/dovecot/local.conf
echo -e 'mail_location = mbox:~/mail' | sudo tee -a /etc/dovecot/local.conf
echo -e 'disable_plaintext_auth = no' | sudo tee -a /etc/dovecot/local.conf
sudo restart dovecot
service dovecot restart
fi

#TODO
Expand Down
2 changes: 1 addition & 1 deletion shared/vsftpd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ if which vsftpd > /dev/null; then
else
sudo apt-get install -y vsftpd
echo -e 'write_enable=YES' | sudo tee -a /etc/vsftpd.conf
sudo restart vsftpd
service vsftpd restart
fi