2010-04-26 08:03:20 +00:00
|
|
|
#!/bin/sh
|
2010-04-26 08:04:24 +00:00
|
|
|
#
|
|
|
|
# 2010 Nico Schottelius (nico-nsbin at schottelius.org)
|
|
|
|
#
|
|
|
|
# This file is part of nsbin.
|
|
|
|
#
|
|
|
|
# nsbin is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# nsbin is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with nsbin. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Usage: $0 (outputs mapping)
|
|
|
|
#
|
|
|
|
|
2010-04-26 08:03:20 +00:00
|
|
|
|
|
|
|
prof_0="donaldk"
|
|
|
|
prof_1="alonso"
|
|
|
|
prof_2="tatbuln"
|
|
|
|
prof_3="roscoe"
|
|
|
|
|
|
|
|
ml_0="dbis"
|
|
|
|
ml_1="iks"
|
|
|
|
ml_2="adms"
|
|
|
|
ml_3="netos"
|
|
|
|
|
|
|
|
classes="staff stud guest"
|
|
|
|
extraclasses="other"
|
|
|
|
allclasses="$classes $extraclasses"
|
|
|
|
allprofs=""
|
|
|
|
|
|
|
|
i=0
|
|
|
|
while [ $i -lt 4 ]; do
|
|
|
|
eval prof=\$prof_$i
|
|
|
|
eval ml=\$ml_$i
|
|
|
|
allprofs="$prof $allprofs"
|
2010-05-21 07:44:25 +00:00
|
|
|
allmls="$ml $allmls"
|
2010-04-26 08:03:20 +00:00
|
|
|
|
|
|
|
for class in $classes; do
|
|
|
|
echo "# Create (automatic) mailinglist: ${ml}-${class}"
|
|
|
|
echo ou_tool -x mailing_list=${ml}-${class} --modify $class@$prof
|
|
|
|
done
|
|
|
|
echo "# Create extra (manual) mailinglist: ${ml}-other"
|
|
|
|
echo "# Create extra (umbrella) mailinglist (containing $allclasses): ${ml}-all"
|
|
|
|
i=$(($i+1))
|
|
|
|
done
|
|
|
|
|
|
|
|
for class in $allclasses; do
|
2010-05-21 07:44:25 +00:00
|
|
|
echo "# Create umbrella list systems-$class containing {${allmls}}-$class"
|
2010-04-26 08:03:20 +00:00
|
|
|
done
|
2010-04-26 08:14:02 +00:00
|
|
|
echo "# Create umbrella list systems-all containing {systems-{$allclasses}"
|