Moderator: ScalixSupport
Code: Select all
omdelaci -l handheld -g default
Code: Select all
omaddaci -l handheld -n "User Name" -c read
Code: Select all
ommaddaci -l handheld -n "handheld" -c read
Code: Select all
ommaddaci -l handheld -g "handheld" -c read
Code: Select all
#!/bin/sh
echo "Removing ACI privilges from PDL for local and default groups."
/opt/scalix/bin/omdelaci -l <pdlname> -g local
/opt/scalix/bin/omdelaci -l <pdlname> -g default
echo "Removing all non-manager ACI privileges from PDL."
/opt/scalix/bin/omshowaci -l cn=<pdlname> | /usr/bin/grep -v " modify" | /usr/bin/grep " read$" | sed -e '/\s*read$/s//;/' | awk -F';' '{system("/opt/scalix/bin/omdelaci -l cn=<pdlname> -n \"" $1 "\"")}'
echo "Adding read privileges for PDL members."
/opt/scalix/bin/omshowpdln -l cn=<pdlname> | awk -F'\n' '{system("/opt/scalix/bin/omaddaci -l cn=<pdlname> -n \"" $1 "\" -c +read")}'
echo "Done."
Code: Select all
#!/bin/sh
PDLNAME=$1
echo "Removing ACI priveleges from PDL $PDLNAME for local and default groups."
/opt/scalix/bin/omdelaci -l cn="$PDLNAME" -g local
/opt/scalix/bin/omdelaci -l cn="$PDLNAME" -g default
echo "Removing ACI priveleges from PDL (for members with only read privelege)."
/opt/scalix/bin/omshowaci -l cn=$PDLNAME | /usr/bin/grep -v " modify" | /usr/bin/grep " read$" | sed -e '/\s*read$/s//;/' | awk -F';' '{system("/opt/scalix/bin/omdelaci -l cn=\"'"$PDLNAME"'\" -n \"" $1 "\"")}'
echo "Adding read priveleges for PDL members."
/opt/scalix/bin/omshowpdln -l cn=$PDLNAME | awk -F'\n' '{system("/opt/scalix/bin/omaddaci -l cn=\"'"$PDLNAME"'\" -n \"" $1 "\" -c +read")}'
echo "Done."
Code: Select all
----------------------------- ERROR REPORT ----------------------------- Message could not be delivered to the following recipient:
/ internet
DDT1=RFC-822; DDV1=test@example.com;
because: 'Recipient name not found at destination' [OM 9300]
Supplementary Information:
550 5.1.1 <test@example.com>... User unknown
The message was forwarded to the local Error Manager:
sxadmin / testserver/CN=sxadmin
------------------------------------------------------------------------
Code: Select all
# omshowaci -l <pdl>
Scalix Administrators config modify read remove
Local Users modify read remove
Default none
schmoe90 wrote:Check the ACI:Code: Select all
# omshowaci -l <pdl>
Code: Select all
<each user in group> modify read
Scalix Administrators config modify read remove
Local Users read
Default none
Return to “Scalix Management Services”
Users browsing this forum: No registered users and 0 guests