diff options
Diffstat (limited to 'mail/mailagent/scripts/pre-configure')
-rw-r--r-- | mail/mailagent/scripts/pre-configure | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/mail/mailagent/scripts/pre-configure b/mail/mailagent/scripts/pre-configure deleted file mode 100644 index a08a67bcb6ba..000000000000 --- a/mail/mailagent/scripts/pre-configure +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -# Pre-configure script for mailagent. -# This script asks for information specific to the machine and writes -# given values to work/mailagent-3.0/config.sh to set the default -# values for COnfigure script so that Configure doesn't request any -# input. - -while [ X$addr = X ]; do - read -p "Enter your complete E-mail address> " addr -done - -while [ X$host = X ]; do - read -p "Enter fully qualified name of this host (`hostname`)> " host - if [ X$host = X ]; then - host=`hostname` - fi -done - -maildomain=`echo $addr | awk -F@ '{printf("%s", $2)}'` -if [ `echo $maildomain | tr A-Z a-z` = `echo $host | tr A-Z a-z` ]; then - d_hidnet=undef - hiddennet='' -else - d_hidnet=define - hiddennet=$maildomain -fi - -read -p "Enter the name of your organization> " orgname - -cat >${WRKSRC}/config.sh <<EOM -#!/bin/sh -cf_email='$addr' -d_flockonly='define' -d_hidnet='$d_hidnet' -hiddennet='$hiddennet' -orgname='$orgname' -EOM |