I changed
# Check hardware architecture.
arch="$(uname -m)"
case $arch in
i[3456]86) export ARCH='i386' ;;
x86_64|amd64) export ARCH='x86_64' ;;
armv5tel) export ARCH='armel ;;
*)
by
# Check hardware architecture.
arch="$(uname -m)"
case $arch in
i[3456]86) export ARCH='i386' ;;
x86_64|amd64) export ARCH='x86_64' ;;
armv5tel) export ARCH='armv6l' ;;
*)
Still not work, always the same message..
Your architecture is not supported yet: armv6l.
Armel, i386 and x86_64 are supported by iRedMail.
Thanks
Edit : Have to change "armv5tel" to "armv6l" too to pass this verification step.