Show
Ignore:
Timestamp:
03/01/08 19:49:54 (9 months ago)
Author:
rats
Message:

* Updated all Docs. Some are still with ToDo?
* Fixed #1070: FreeBSD, ispcp-setup uses group which does not exist
* Updated all languages
* Inproved: Update SQL with IGNORE statement
* Update PHPmyAdmin to version 2.11.5
* Updated all distributions
* Dropped support of Suse Enterprise Linux Server (SELS) - Please use OpenSuse? files

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/configs/dists/opensuse/postfix/mta-cfg-setup.sh

    r885 r1026  
    11#!/bin/bash 
     2 
     3# ispCP ω (OMEGA) a Virtual Hosting Control Panel 
     4# Copyright (c) 2001-2006 by moleSoftware GmbH 
     5# http://www.molesoftware.com 
     6# Copyright (c) 2006-2007 by isp Control Panel 
     7# http://isp-control.net 
     8# 
     9# 
     10# License: 
     11#    This program is free software; you can redistribute it and/or 
     12#    modify it under the terms of the MPL Mozilla Public License 
     13#    as published by the Free Software Foundation; either version 1.1 
     14#    of the License, or (at your option) any later version. 
     15# 
     16#    This program is distributed in the hope that it will be useful, 
     17#    but WITHOUT ANY WARRANTY; without even the implied warranty of 
     18#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     19#    MPL Mozilla Public License for more details. 
     20# 
     21#    You may have received a copy of the MPL Mozilla Public License 
     22#    along with this program. 
     23# 
     24#    An on-line copy of the MPL Mozilla Public License can be found 
     25#    http://www.mozilla.org/MPL/MPL-1.1.html 
     26# 
     27# 
     28# The ispCP ω Home Page is at: 
     29# 
     30#    http://isp-control.net 
     31# 
    232 
    333MTA_CONF_DIR=/etc/postfix 
    434 
    535MTA_SYSTEM_CONF_DIR=/etc/postfix/ispcp 
    6  
    736 
    837 
     
    1645 
    1746 
    18  
    1947${CMD_CP} ./main.cf ${MTA_CONF_DIR} 
    2048 
     
    2351${CMD_MKDIR} -p ${MTA_SYSTEM_CONF_DIR} 
    2452 
    25 ${CMD_CP} ./working/{aliases,domains,mailboxes,transport} ${MTA_SYSTEM_CONF_DIR} 
     53${CMD_CP} ./working/aliases ${MTA_SYSTEM_CONF_DIR} 
     54${CMD_CP} ./working/domains ${MTA_SYSTEM_CONF_DIR} 
     55${CMD_CP} ./working/mailboxes ${MTA_SYSTEM_CONF_DIR} 
     56${CMD_CP} ./working/sender-access ${MTA_SYSTEM_CONF_DIR} 
     57${CMD_CP} ./working/transport ${MTA_SYSTEM_CONF_DIR} 
    2658 
    27 ${CMD_POSTMAP} ${MTA_SYSTEM_CONF_DIR}/{aliases,domains,mailboxes,transport} 
     59${CMD_POSTMAP} ${MTA_SYSTEM_CONF_DIR}/aliases 
     60${CMD_POSTMAP} ${MTA_SYSTEM_CONF_DIR}/domains 
     61${CMD_POSTMAP} ${MTA_SYSTEM_CONF_DIR}/mailboxes 
     62${CMD_POSTMAP} ${MTA_SYSTEM_CONF_DIR}/sender-access 
     63${CMD_POSTMAP} ${MTA_SYSTEM_CONF_DIR}/transport 
    2864 
    2965${CMD_NEWALIASES} 
    30