From 88152b2eb8ec5556db7b05da364e49a83de95e56 Mon Sep 17 00:00:00 2001 From: Steven Mondji-Lerider Date: Tue, 19 Feb 2013 14:59:53 +0000 Subject: [PATCH] Updating vhost template to use login@fqdn in the sendmail php_admin_value. Since postfix alias this address to the one in the member information --- src/update_domains.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/update_domains.sh b/src/update_domains.sh index 524c3757..2e3ff1ac 100644 --- a/src/update_domains.sh +++ b/src/update_domains.sh @@ -66,9 +66,9 @@ done # sub_domaines.web_action = update and sub_domains.only_dns = false IFS="$NEWIFS" mysql_query " -select concat_ws('$IFS',lower(sd.type), if(length(sd.sub)>0,concat_ws('.',sd.sub,sd.domaine),sd.domaine), m.mail, sd.valeur ) -from sub_domaines sd,membres m -where sd.compte=m.uid and sd.web_action ='UPDATE' +select concat_ws('$IFS',lower(sd.type), if(length(sd.sub)>0,concat_ws('.',sd.sub,sd.domaine),sd.domaine), concat_ws('@',m.login,v.value), sd.valeur ) +from sub_domaines sd,membres m,variable v +where sd.compte=m.uid and sd.web_action ='UPDATE' and v.name='mailname_bounce' ;" | while read type domain mail valeur ; do host_create "$type" "$domain" "$mail" "$valeur" mysql_query "update sub_domaines sd set web_action='OK',web_result='$?' where lower(sd.type)='$type' and if(length(sd.sub)>0,concat_ws('.',sd.sub,sd.domaine),sd.domaine)='$domain' and sd.valeur='$valeur'; "