# Définition des accès FTP 
# pour les modules Scribe et Horus
%if %%getVar('ftp_perso_ele', 'non') == 'oui'
<Directory /home/*/*>
    <Limit ALL>
        Order Allow,Deny
        Allow ALL
    </Limit>
</Directory>
%else
<Directory ~/.ftp>
    <Limit ALL>
        Order Allow,Deny
        Allow ALL
    </Limit>
</Directory>
<Directory ~/perso>
    <Limit ALL>
        Order Allow,Deny
        Allow ALL
    </Limit>
</Directory>
<Directory /home/workgroups>
    <Limit ALL>
        Order Allow,Deny
        Allow ALL
    </Limit>
</Directory>
%end if
