This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo apt-get update | |
sudo debconf-set-selections <<EOF | |
postfix postfix/root_address string pi | |
postfix postfix/main_mailer_type select Internet Site | |
postfix postfix/mailname string raspberry.pi | |
postfix postfix/mynetworks string | |
postfix postfix/recipient_delim string | |
postfix postfix/protocols select all | |
postfix postfix/destinations string | |
EOF | |
sudo apt-get install -q -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" postfix mutt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment