Index: php/admin/templates/service.tpl =================================================================== RCS file: /home/kroupware/jail/kolabrepository/server/kolab-webadmin/kolab-webadmin/php/admin/templates/service.tpl,v retrieving revision 1.12 diff -c -r1.12 service.tpl *** php/admin/templates/service.tpl 19 Dec 2006 19:57:32 -0000 1.12 --- php/admin/templates/service.tpl 3 Jan 2007 11:35:05 -0000 *************** *** 10,16 ****

{tr msg="Administrative email addresses"}

!

{tr msg="You have not yet set up a receiving account for the administrative email addresses hostmaster@yourdomain.tld, postmaster@yourdomain.tld, MAILER-DAEMON@yourdomain.tld, abuse@yourdomain.tld and virusalert@yourdomain.tld. Enter the email address of a kolab account below and press the button to create a distribution list for each of those addresses. Later you can add or remove people from the lists like any other distribution list"}

{section name=id loop=$systemaliasconf}
--- 10,16 ----

{tr msg="Administrative email addresses"}

!

{tr msg="You have not yet set up a receiving account for the administrative email addresses hostmaster@yourdomain.tld, postmaster@yourdomain.tld, mailer-daemon@yourdomain.tld, abuse@yourdomain.tld and virusalert@yourdomain.tld. Enter the email address of a kolab account below and press the button to create a distribution list for each of those addresses. Later you can add or remove people from the lists like any other distribution list"}

{section name=id loop=$systemaliasconf}
Index: www/admin/index.php.in =================================================================== RCS file: /home/kroupware/jail/kolabrepository/server/kolab-webadmin/kolab-webadmin/www/admin/index.php.in,v retrieving revision 1.2 diff -c -r1.2 index.php.in *** www/admin/index.php.in 22 Feb 2006 00:36:27 -0000 1.2 --- www/admin/index.php.in 3 Jan 2007 11:35:05 -0000 *************** *** 43,49 **** !exists_group( 'postmaster@'.$domain ) || !exists_group( 'abuse@'.$domain ) || !exists_group( 'virusalert@'.$domain ) || ! !exists_group( 'MAILER-DAEMON@'.$domain ) ) { // Ok, user did not set up system aliases $maincontent = 'systemaliasnagscreen.tpl'; } --- 43,49 ---- !exists_group( 'postmaster@'.$domain ) || !exists_group( 'abuse@'.$domain ) || !exists_group( 'virusalert@'.$domain ) || ! !exists_group( 'mailer-daemon@'.$domain ) ) { // Ok, user did not set up system aliases $maincontent = 'systemaliasnagscreen.tpl'; } Index: www/admin/service/index.php.in =================================================================== RCS file: /home/kroupware/jail/kolabrepository/server/kolab-webadmin/kolab-webadmin/www/admin/service/index.php.in,v retrieving revision 1.2 diff -c -r1.2 index.php.in *** www/admin/service/index.php.in 22 Feb 2006 00:36:27 -0000 1.2 --- www/admin/service/index.php.in 3 Jan 2007 11:35:05 -0000 *************** *** 99,105 **** if( !$dn ) { $errors[] = sprintf(_("No account found for email address %s"), $mail); } else { ! foreach( array( 'postmaster', 'hostmaster', 'abuse', 'virusalert', 'MAILER-DAEMON' ) as $group ) { $gadr = $group.'@'.$domain; $attrs = array( 'objectClass' => array( 'top', 'kolabGroupOfNames' ), 'cn' => $gadr, --- 99,105 ---- if( !$dn ) { $errors[] = sprintf(_("No account found for email address %s"), $mail); } else { ! foreach( array( 'postmaster', 'hostmaster', 'abuse', 'virusalert', 'mailer-daemon' ) as $group ) { $gadr = $group.'@'.$domain; $attrs = array( 'objectClass' => array( 'top', 'kolabGroupOfNames' ), 'cn' => $gadr, *************** *** 327,333 **** !exists_group( 'postmaster@'.$domain ) || !exists_group( 'abuse@'.$domain ) || !exists_group( 'virusalert@'.$domain ) || ! !exists_group( 'MAILER-DAEMON@'.$domain ) ) { // Ok, user did not set up system aliases $systemaliasconf[] = array( 'n'=>$domain_count, 'domain'=>$domain ); } --- 327,333 ---- !exists_group( 'postmaster@'.$domain ) || !exists_group( 'abuse@'.$domain ) || !exists_group( 'virusalert@'.$domain ) || ! !exists_group( 'mailer-daemon@'.$domain ) ) { // Ok, user did not set up system aliases $systemaliasconf[] = array( 'n'=>$domain_count, 'domain'=>$domain ); }