Browse Source

Merge pull request #279 from kubuntux/patch-1

Fixed line 59 - should append the account only
Serghey Rodin 11 years ago
parent
commit
4406e814f2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bin/v-add-mail-account-fwd-only

+ 1 - 1
bin/v-add-mail-account-fwd-only

@@ -56,7 +56,7 @@ fi
 
 # Adding account to fwd_only
 if [[ "$MAIL_SYSTEM" =~ exim ]]; then
-    echo "$account" > $HOMEDIR/$user/conf/mail/$domain/fwd_only
+    echo "$account" >> $HOMEDIR/$user/conf/mail/$domain/fwd_only
     chown -R $MAIL_USER:mail $HOMEDIR/$user/conf/mail/$domain/fwd_only
 fi