Created
November 11, 2013 21:52
-
-
Save drscream/7421106 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/bash | |
## Load configuration information from USBKey | |
. /lib/svc/share/smf_include.sh | |
. /lib/sdc/config.sh | |
load_sdc_sysinfo | |
load_sdc_config | |
## Set the PATH environment because of other commands in /usr | |
PATH=/usr/bin:/usr/sbin:${PATH} | |
## Sendmail configuration for SmartHost setup | |
if [[ ${CONFIG_mail_smarthost} ]]; then | |
cp /etc/mail/{submit.cf,sendmail.cf} /tmp/ | |
sed "s:^DS$:DS[${CONFIG_mail_smarthost}]:g" /tmp/submit.cf > /etc/mail/submit.cf | |
sed "s:^DS$:DS[${CONFIG_mail_smarthost}]:g" /tmp/sendmail.cf > /etc/mail/sendmail.cf | |
svcadm refresh sendmail-client | |
svcadm refresh sendmail | |
fi | |
if [[ ${CONFIG_mail_auth_user} ]]; then | |
echo 'AuthInfo:'${CONFIG_mail_smarthost}' "U:'${CONFIG_mail_auth_user}'" "I:'${CONFIG_mail_auth_user}'" "P:'${CONFIG_mail_auth_pass}'"' \ | |
> /etc/mail/default-auth-info | |
echo -e 'Kauthinfo hash /etc/mail/default-auth-info | |
O AuthMechanisms=EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN | |
Sauthinfo | |
R$*\t\t\t$: <$(authinfo AuthInfo:$&{server_name} $: ? $)> | |
R<?>\t\t$: <$(authinfo AuthInfo:$&{server_addr} $: ? $)> | |
R<?>\t\t$: <$(authinfo AuthInfo: $: ? $)> | |
R<?>\t\t$@ no no authinfo available | |
R<$*>\t\t$# $1' \ | |
| tee -a /etc/mail/sendmail.cf >> /etc/mail/submit.cf | |
makemap hash /etc/mail/default-auth-info < /etc/mail/default-auth-info | |
chgrp smmsp /etc/mail/default-auth-info.db | |
fi | |
## Redirect all root emails to admin address | |
if [[ ${CONFIG_mail_adminaddr} ]]; then | |
echo "root: ${CONFIG_mail_adminaddr}" >> /etc/mail/aliases | |
newaliases | |
fi | |
## Delete all temp files created | |
rm /tmp/{hosts,submit.cf,sendmail.cf} |
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
# Mail configuration for SmartHost: | |
mail_smarthost= | |
mail_auth_user= | |
mail_auth_pass= | |
mail_adminaddr= |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment