Changeset 973


Ignore:
Timestamp:
01/17/08 11:49:47 (4 years ago)
Author:
rats
Message:

Fixed #464: Errors in SuSE Installation " yast -i cat ./docs/SuSE/suse-packages"
Fixed #515: fastcgi module OpenSuse 10.2
Fixed #797: Error in package list for Suse
Fixed #814: named db dir setting in ispcp fedora
Fixed #725: Problem with autoresponder and amavis

Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/CHANGELOG

    r970 r973  
    66|                               * to fix: no errors on adding user (custom HP)    | 
    77\_________________________________________________________________/ 
     8 
     92008-01-17 Benedikt Heintel 
     10        - DISTROS: 
     11                * Fixed #464: Errors in SuSE Installation " yast -i `cat ./docs/SuSE/suse-packages`" 
     12                * Fixed #515: fastcgi module OpenSuse 10.2 
     13                * Fixed #797: Error in package list for Suse 
     14                * Fixed #814: named db dir setting in ispcp fedora 
     15        - ENGINE: 
     16                * Fixed #725: Problem with autoresponder and amavis 
    817 
    9182008-01-15 Benedikt Heintel 
  • trunk/Makefile.opensuse10

    r969 r973  
    55endif 
    66 
    7 HOST_OS=opensuse10 
     7HOST_OS=opensuse103 
    88 
    99ROOT_CONF=$(INST_PREF)/etc 
  • trunk/configs/dists/fedora/ispcp.conf

    r878 r973  
    138138BIND_CONF_FILE = /var/named/chroot/etc/named-ispcp.conf 
    139139 
    140 BIND_DB_DIR = /var/named/chroot/var/named/data 
     140BIND_DB_DIR = /var/named/data 
    141141 
    142142SECONDARY_DNS = 
  • trunk/configs/dists/opensuse10/Makefile

    r885 r973  
    44install: 
    55 
    6         if test $(HOST_OS) = opensuse103 ; then \ 
     6        if test $(HOST_OS) = opensuse10 ; then \ 
    77                cp ./ispcp.conf $(SYSTEM_CONF) ; \ 
    88                cd ./apache && $(MAKE) install ; cd .. ; \ 
     
    1919uninstall: 
    2020 
    21         if test $(HOST_OS) = opensuse103 ; then \ 
     21        if test $(HOST_OS) = opensuse10 ; then \ 
    2222                rm -rf $(SYSTEM_CONF)/ispcp.conf ;  \ 
    2323                cd ./apache && $(MAKE) uninstall ; cd .. ; \ 
  • trunk/configs/dists/opensuse10/ispcp.conf

    r885 r973  
    181181APACHE_MODS_DIR = /etc/apache2/modules.d 
    182182 
    183 APACHE_SITES_DIR = /etc/apache2/vhosts.d/ 
     183APACHE_SITES_DIR = /etc/apache2/vhosts.d 
    184184 
    185185APACHE_SUEXEC_USER_PREF = vu 
  • trunk/docs/SuSE/INSTALL

    r784 r973  
    6464        # yast upgrade 
    6565        # yast -i `cat ./docs/SuSE/suse-packages` 
     66 
     67        Install, the following packages, too 
     68        perl-Term-ReadPassword & perl-Crypt-PasswdMD5 from: http://repos.opensuse.org/home:/netmax/ 
     69        e.g. SuSE 10.2, x86_64: http://repos.opensuse.org/home:/netmax/openSUSE_10.2/x86_64/ 
     70 
     71        perl-Term-ReadPassword-0.07-1.suse100.i586.rpm 
     72        perl-Crypt-PasswdMD5-1.3-1.suse100.i586.rpm 
     73 
     74        proftpd (and the mysql-module for it) from: http://repos.opensuse.org/server:/ftp/ 
     75        e.g. - add this URL to the Sources in Yast in SuSE 10.2: http://repos.opensuse.org/server:/ftp/openSUSE_10.2/ 
     76 
     77        proftpd-1.2.93_1.3.0rc3-0.suse100.i586.rpm 
    6678 
    67794. Now there are two ways of install ISPCP ω 
  • trunk/docs/SuSE/suse-packages

    r511 r973  
    153153xntp 
    154154patch 
    155  
    156 # externe pakete 
    157 perl-Term-ReadPassword & perl-Crypt-PasswdMD5 from: 
    158 http://repos.opensuse.org/home:/netmax/ 
    159 e.g. SuSE 10.2, x86_64: 
    160 http://repos.opensuse.org/home:/netmax/openSUSE_10.2/x86_64/ 
    161 perl-Term-ReadPassword-0.07-1.suse100.i586.rpm 
    162 perl-Crypt-PasswdMD5-1.3-1.suse100.i586.rpm 
    163  
    164 and proftpd (and the mysql-module for it) from: 
    165 http://repos.opensuse.org/server:/ftp/ 
    166 e.g. - add this URL to the Sources in Yast in SuSE 10.2: 
    167 http://repos.opensuse.org/server:/ftp/openSUSE_10.2/ 
    168 proftpd-1.2.93_1.3.0rc3-0.suse100.i586.rpm 
     155rkhunter 
  • trunk/engine/messager/ispcp-arpl-msgr

    r765 r973  
    790790 
    791791 
    792                         $ref = @$ref[0]; my $auto_message = @$ref[0]; 
    793  
    794                                 if($auto_message ne '_no_') { 
    795  
    796                                         if($name) { $mail_to = "\"".$name."\" "."<".$to_ma->address.">"; } 
    797  
    798                                         else{ $mail_to = $to_ma->address; } 
     792                        $ref = @$ref[0]; 
     793                                my $auto_message = @$ref[0]; 
     794 
     795                                if ($auto_message ne '_no_' && length($auto_message) > 0) { 
     796 
     797                                        if ($name) { 
     798                                                $mail_to = "\"".$name."\" "."<".$to_ma->address.">"; 
     799                                        } 
     800 
     801                                        else { 
     802                                                $mail_to = $to_ma->address; 
     803                                        } 
    799804 
    800805 
Note: See TracChangeset for help on using the changeset viewer.