Browse Source

Set mailname at the same time as hostname

Bob Mottram 8 years ago
parent
commit
2f5deb0c01
2 changed files with 1 additions and 2 deletions
  1. 0
    2
      src/freedombone-base-email
  2. 1
    0
      src/freedombone-utils-dns

+ 0
- 2
src/freedombone-base-email View File

671
         return
671
         return
672
     fi
672
     fi
673
 
673
 
674
-    echo "$DEFAULT_DOMAIN_NAME" > /etc/mailname
675
-
676
     apt-get -y remove postfix
674
     apt-get -y remove postfix
677
     apt-get -y install exim4 sasl2-bin swaks libnet-ssleay-perl procmail xinetd
675
     apt-get -y install exim4 sasl2-bin swaks libnet-ssleay-perl procmail xinetd
678
 
676
 

+ 1
- 0
src/freedombone-utils-dns View File

184
 
184
 
185
     echo "$DEFAULT_DOMAIN_NAME" > /etc/hostname
185
     echo "$DEFAULT_DOMAIN_NAME" > /etc/hostname
186
     hostname $DEFAULT_DOMAIN_NAME
186
     hostname $DEFAULT_DOMAIN_NAME
187
+    echo "$DEFAULT_DOMAIN_NAME" > /etc/mailname
187
 
188
 
188
     if grep -q "127.0.1.1" /etc/hosts; then
189
     if grep -q "127.0.1.1" /etc/hosts; then
189
         sed -i "s/127.0.1.1.*/127.0.1.1       $DEFAULT_DOMAIN_NAME/g" /etc/hosts
190
         sed -i "s/127.0.1.1.*/127.0.1.1       $DEFAULT_DOMAIN_NAME/g" /etc/hosts