From: ms Date: Sun, 23 Sep 2007 16:09:22 +0000 (+0000) Subject: Umfassend am Mailserver gearbeitet: X-Git-Tag: v2.3-beta1~359 X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=commitdiff_plain;h=fc4ac7acab40e5f82d444c1144ed0a60f0a3b3ff Umfassend am Mailserver gearbeitet: - Unnuetze Patches aus dem cyrusimapd raus - Eine Konfiguration und Datenbank fuer openmailadmin erstellt. - Konfiguration von Postfix und Cyrus ein wenig optimiert. - 2 Threads des saslauthd muessen reichen fuer kleine Mailserver. Kleines Problem mit den Dateiberechtigungen in den Pakfire-Paketen gehabt und hoffentlich behoben. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@918 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8 --- diff --git a/config/cyrusimap/cyrus.conf b/config/cyrusimap/cyrus.conf index f8c58e7849..306808b35b 100644 --- a/config/cyrusimap/cyrus.conf +++ b/config/cyrusimap/cyrus.conf @@ -16,11 +16,11 @@ SERVICES { sieve cmd="timsieved" listen="127.0.0.1:2000" prefork=0 # at least one LMTP is required for delivery - lmtp cmd="lmtpd" listen="127.0.0.1:24" prefork=0 - lmtpunix cmd="lmtpd" listen="/var/imap/socket/lmtp" prefork=0 + #lmtp cmd="lmtpd" listen="127.0.0.1:24" prefork=0 + #lmtpunix cmd="lmtpd" listen="/var/imap/socket/lmtp" prefork=0 # this is only necessary if using notifications -# notify cmd="notifyd" listen="/var/imap/socket/notify" proto="udp" prefork=1 + notify cmd="notifyd" listen="/var/imap/socket/notify" proto="udp" prefork=1 } EVENTS { diff --git a/config/openmailadmin/config.local.inc.php b/config/openmailadmin/config.local.inc.php new file mode 100644 index 0000000000..0b8a6040e9 --- /dev/null +++ b/config/openmailadmin/config.local.inc.php @@ -0,0 +1,21 @@ + 'mysql://root:mysqlfire@localhost/mail', + 'PREFIX' => '', +); +$cfg['Servers']['IMAP'][] = array( + 'TYPE' => 'cyrus', + 'HOST' => 'localhost', + 'PORT' => 143, + 'ADMIN' => 'cyrus', + 'PASS' => 'ipfire', + 'VDOM' => '' +); +?> \ No newline at end of file diff --git a/config/openmailadmin/mail.dump b/config/openmailadmin/mail.dump new file mode 100644 index 0000000000..b65fdb9b9c --- /dev/null +++ b/config/openmailadmin/mail.dump @@ -0,0 +1,158 @@ +-- MySQL dump 10.10 +-- +-- Host: localhost Database: mail +-- ------------------------------------------------------ +-- Server version 5.0.24a + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `domains` +-- + +DROP TABLE IF EXISTS `domains`; +CREATE TABLE `domains` ( + `ID` int(10) unsigned NOT NULL auto_increment, + `domain` varchar(64) NOT NULL default '', + `categories` varchar(100) NOT NULL default 'all', + `owner` varchar(16) NOT NULL default '', + `a_admin` text, + `neu` tinyint(1) NOT NULL default '1', + PRIMARY KEY (`ID`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `domains` +-- + + +/*!40000 ALTER TABLE `domains` DISABLE KEYS */; +LOCK TABLES `domains` WRITE; +UNLOCK TABLES; +/*!40000 ALTER TABLE `domains` ENABLE KEYS */; + +-- +-- Table structure for table `imap_demo` +-- + +DROP TABLE IF EXISTS `imap_demo`; +CREATE TABLE `imap_demo` ( + `mailbox` varchar(250) NOT NULL default '', + `used` int(10) unsigned NOT NULL default '0', + `qmax` int(10) unsigned NOT NULL default '0', + `ACL` text, + PRIMARY KEY (`mailbox`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `imap_demo` +-- + + +/*!40000 ALTER TABLE `imap_demo` DISABLE KEYS */; +LOCK TABLES `imap_demo` WRITE; +INSERT INTO `imap_demo` VALUES ('shared',0,0,'anyone lrswipcda'); +UNLOCK TABLES; +/*!40000 ALTER TABLE `imap_demo` ENABLE KEYS */; + +-- +-- Table structure for table `user` +-- + +DROP TABLE IF EXISTS `user`; +CREATE TABLE `user` ( + `mbox` varchar(16) NOT NULL default '', + `person` varchar(100) NOT NULL default '', + `pate` varchar(16) NOT NULL default '', + `canonical` varchar(100) NOT NULL default '', + `password` varchar(40) NOT NULL default '', + `domains` varchar(100) NOT NULL default '', + `active` tinyint(1) NOT NULL default '0', + `created` int(10) unsigned NOT NULL default '0', + `last_login` int(10) unsigned NOT NULL default '0', + `max_alias` int(10) unsigned NOT NULL default '1', + `max_regexp` int(10) unsigned NOT NULL default '1', + `a_admin_domains` tinyint(4) NOT NULL default '0', + `a_admin_user` tinyint(4) NOT NULL default '0', + `a_super` tinyint(4) default '0', + PRIMARY KEY (`mbox`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `user` +-- + + +/*!40000 ALTER TABLE `user` DISABLE KEYS */; +LOCK TABLES `user` WRITE; +INSERT INTO `user` VALUES ('admin','Admin John Doe','admin','admin@example.com','mailfire','all',1,1190483338,1190558772,10000,100,2,2,2),('cyrus','cyrus','cyrus','--@example.com','ipfire','none',1,1190483338,0,0,0,0,0,1); +UNLOCK TABLES; +/*!40000 ALTER TABLE `user` ENABLE KEYS */; + +-- +-- Table structure for table `virtual` +-- + +DROP TABLE IF EXISTS `virtual`; +CREATE TABLE `virtual` ( + `address` varchar(255) NOT NULL default '', + `dest` text, + `owner` varchar(16) NOT NULL default '', + `active` tinyint(1) NOT NULL default '1', + `neu` tinyint(1) NOT NULL default '1', + PRIMARY KEY (`address`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `virtual` +-- + + +/*!40000 ALTER TABLE `virtual` DISABLE KEYS */; +LOCK TABLES `virtual` WRITE; +UNLOCK TABLES; +/*!40000 ALTER TABLE `virtual` ENABLE KEYS */; + +-- +-- Table structure for table `virtual_regexp` +-- + +DROP TABLE IF EXISTS `virtual_regexp`; +CREATE TABLE `virtual_regexp` ( + `ID` int(10) unsigned NOT NULL auto_increment, + `reg_exp` varchar(255) NOT NULL default '', + `dest` text, + `owner` varchar(16) NOT NULL default '', + `active` tinyint(1) NOT NULL default '0', + `neu` tinyint(1) NOT NULL default '1', + PRIMARY KEY (`ID`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; + +-- +-- Dumping data for table `virtual_regexp` +-- + + +/*!40000 ALTER TABLE `virtual_regexp` DISABLE KEYS */; +LOCK TABLES `virtual_regexp` WRITE; +UNLOCK TABLES; +/*!40000 ALTER TABLE `virtual_regexp` ENABLE KEYS */; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + diff --git a/config/pam/imap b/config/pam/imap index ed4ea94838..f8f411f3d4 100644 --- a/config/pam/imap +++ b/config/pam/imap @@ -1,4 +1,2 @@ -auth sufficient pam_mysql.so user=mail passwd=ipfire host=localhost db=mail table=accountuser usercolumn=username passwdcolumn=password crypt=1 logtable=log logmsgcolumn=msg logusercolumn=user loghostcolumn=host logpidcolumn=pid logtimecolumn=time -auth sufficient pam_unix_auth.so -account required pam_mysql.so user=mail passwd=ipfire host=localhost db=mail table=accountuser usercolumn=username passwdcolumn=password crypt=1 logtable=log logmsgcolumn=msg logusercolumn=user loghostcolumn=host logpidcolumn=pid logtimecolumn=time -account sufficient pam_unix_acct.so \ No newline at end of file +auth sufficient pam_mysql.so user=root passwd=mysqlfire host=localhost db=mail table=user usercolumn=mbox passwdcolumn=password crypt=0 sqlLog=0 +account required pam_mysql.so user=root passwd=mysqlfire host=localhost db=mail table=user usercolumn=mbox passwdcolumn=password crypt=0 sqlLog=0 diff --git a/config/pam/pop b/config/pam/pop index ed4ea94838..f8f411f3d4 100644 --- a/config/pam/pop +++ b/config/pam/pop @@ -1,4 +1,2 @@ -auth sufficient pam_mysql.so user=mail passwd=ipfire host=localhost db=mail table=accountuser usercolumn=username passwdcolumn=password crypt=1 logtable=log logmsgcolumn=msg logusercolumn=user loghostcolumn=host logpidcolumn=pid logtimecolumn=time -auth sufficient pam_unix_auth.so -account required pam_mysql.so user=mail passwd=ipfire host=localhost db=mail table=accountuser usercolumn=username passwdcolumn=password crypt=1 logtable=log logmsgcolumn=msg logusercolumn=user loghostcolumn=host logpidcolumn=pid logtimecolumn=time -account sufficient pam_unix_acct.so \ No newline at end of file +auth sufficient pam_mysql.so user=root passwd=mysqlfire host=localhost db=mail table=user usercolumn=mbox passwdcolumn=password crypt=0 sqlLog=0 +account required pam_mysql.so user=root passwd=mysqlfire host=localhost db=mail table=user usercolumn=mbox passwdcolumn=password crypt=0 sqlLog=0 diff --git a/config/pam/sieve b/config/pam/sieve index ed4ea94838..f8f411f3d4 100644 --- a/config/pam/sieve +++ b/config/pam/sieve @@ -1,4 +1,2 @@ -auth sufficient pam_mysql.so user=mail passwd=ipfire host=localhost db=mail table=accountuser usercolumn=username passwdcolumn=password crypt=1 logtable=log logmsgcolumn=msg logusercolumn=user loghostcolumn=host logpidcolumn=pid logtimecolumn=time -auth sufficient pam_unix_auth.so -account required pam_mysql.so user=mail passwd=ipfire host=localhost db=mail table=accountuser usercolumn=username passwdcolumn=password crypt=1 logtable=log logmsgcolumn=msg logusercolumn=user loghostcolumn=host logpidcolumn=pid logtimecolumn=time -account sufficient pam_unix_acct.so \ No newline at end of file +auth sufficient pam_mysql.so user=root passwd=mysqlfire host=localhost db=mail table=user usercolumn=mbox passwdcolumn=password crypt=0 sqlLog=0 +account required pam_mysql.so user=root passwd=mysqlfire host=localhost db=mail table=user usercolumn=mbox passwdcolumn=password crypt=0 sqlLog=0 diff --git a/config/pam/smtp b/config/pam/smtp index ed4ea94838..f8f411f3d4 100644 --- a/config/pam/smtp +++ b/config/pam/smtp @@ -1,4 +1,2 @@ -auth sufficient pam_mysql.so user=mail passwd=ipfire host=localhost db=mail table=accountuser usercolumn=username passwdcolumn=password crypt=1 logtable=log logmsgcolumn=msg logusercolumn=user loghostcolumn=host logpidcolumn=pid logtimecolumn=time -auth sufficient pam_unix_auth.so -account required pam_mysql.so user=mail passwd=ipfire host=localhost db=mail table=accountuser usercolumn=username passwdcolumn=password crypt=1 logtable=log logmsgcolumn=msg logusercolumn=user loghostcolumn=host logpidcolumn=pid logtimecolumn=time -account sufficient pam_unix_acct.so \ No newline at end of file +auth sufficient pam_mysql.so user=root passwd=mysqlfire host=localhost db=mail table=user usercolumn=mbox passwdcolumn=password crypt=0 sqlLog=0 +account required pam_mysql.so user=root passwd=mysqlfire host=localhost db=mail table=user usercolumn=mbox passwdcolumn=password crypt=0 sqlLog=0 diff --git a/config/postfix/main.cf b/config/postfix/main.cf index 10d3727aad..ea2ff15183 100644 --- a/config/postfix/main.cf +++ b/config/postfix/main.cf @@ -4,24 +4,29 @@ queue_directory = /var/spool/postfix command_directory = /usr/sbin daemon_directory = /usr/lib/postfix +manpage_directory = /usr/share/man +sample_directory = /etc/postfix +html_directory = no +readme_directory = no + +sendmail_path = /usr/sbin/sendmail +newaliases_path = /usr/bin/newaliases +mailq_path = /usr/bin/mailq + mail_owner = postfix +setgid_group = postdrop + #myhostname = host.domain.tld -#mydomain = domain.tld -#myorigin = $myhostname -#myorigin = $mydomain +myorigin = $myhostname + inet_interfaces = all #proxy_interfaces = -mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, mysql:/etc/postfix/mysql-mydestination.cf -#local_recipient_maps = unix:passwd.byname $alias_maps -#local_recipient_maps = proxy:unix:passwd.byname $alias_maps -#local_recipient_maps = +mydestination = $myhostname, localhost.$mydomain, localhost, mysql:/etc/postfix/mysql-mydestination.cf unknown_local_recipient_reject_code = 550 -#ynetworks_style = class -#mynetworks_style = subnet -#mynetworks_style = host -#mynetworks = 168.100.189.0/28, 127.0.0.0/8 -#mynetworks = $config_directory/mynetworks -#mynetworks = hash:/etc/postfix/network_table + +mynetworks_style = host +mynetworks = 127.0.0.0/8 + #relay_domains = $mydestination #relayhost = $mydomain #relayhost = [gateway.my.domain] @@ -33,31 +38,15 @@ unknown_local_recipient_reject_code = 550 alias_maps = hash:/etc/aliases alias_database = hash:/etc/aliases #recipient_delimiter = + -#home_mailbox = Mailbox -#home_mailbox = Maildir/ -#mail_spool_directory = /var/mail -#mail_spool_directory = /var/spool/mail -#mailbox_command = /some/where/procmail -#mailbox_command = /some/where/procmail -a "$EXTENSION" -mailbox_transport = procmail -#fallback_transport = lmtp:unix:/file/name -#fallback_transport = cyrus -#fallback_transport = -#luser_relay = $user@other.host -#luser_relay = $local@other.host -#luser_relay = admin+$local -#header_checks = regexp:/etc/postfix/header_checks + +mailbox_transport = cyrus + +header_checks = regexp:/etc/postfix/header_checks #fast_flush_domains = $relay_domains + smtpd_banner = $myhostname ESMTP $mail_name ($mail_version) #local_destination_concurrency_limit = 2 #default_destination_concurrency_limit = 20 -sendmail_path = /usr/sbin/sendmail -newaliases_path = /usr/bin/newaliases -mailq_path = /usr/bin/mailq -setgid_group = postdrop -html_directory = no -manpage_directory = /usr/share/man -sample_directory = /etc/postfix -readme_directory = no + virtual_alias_maps = hash:/etc/postfix/virtual, mysql:/etc/postfix/mysql-virtual.cf -sender_canonical_maps = hash:/etc/postfix/canonical, mysql:/etc/postfix/mysql-canonical.cf \ No newline at end of file +sender_canonical_maps = hash:/etc/postfix/canonical, mysql:/etc/postfix/mysql-canonical.cf diff --git a/config/postfix/mysql-canonical.cf b/config/postfix/mysql-canonical.cf index d6ed3e9e9d..2f51e35ffb 100644 --- a/config/postfix/mysql-canonical.cf +++ b/config/postfix/mysql-canonical.cf @@ -1,15 +1,8 @@ -# Host der Datenbank -hosts = localhost -# Benutzername und Passwort der Datenbank -user = mail -password = ipfire - -# Der Datenbankname -table = virtual +hosts = localhost +user = root +password = mysqlfire +table = user dbname = mail - -select_field = alias -where_field = username - -# Das erste Ergebniss zurückliefern -additional_conditions = and status = '1' limit 1 +select_field = canonical +where_field = mbox +additional_conditions = and active = '1' limit 1 diff --git a/config/postfix/mysql-mydestination.cf b/config/postfix/mysql-mydestination.cf index 0b409fd72e..99924241ad 100644 --- a/config/postfix/mysql-mydestination.cf +++ b/config/postfix/mysql-mydestination.cf @@ -1,15 +1,7 @@ -# Host der Datenbank -hosts = localhost - -# Benutzername und Passwort der Datenbank -user = mail -password = ipfire - -# Der Datenbankname +hosts = localhost +user = root +password = mysqlfire dbname = mail - -# Der Tabellenname -table = domain - -select_field = domain_name -where_field = domain_name \ No newline at end of file +table = domains +select_field = domain +where_field = domain diff --git a/config/postfix/mysql-virtual.cf b/config/postfix/mysql-virtual.cf index c1bc265e96..d133592acd 100644 --- a/config/postfix/mysql-virtual.cf +++ b/config/postfix/mysql-virtual.cf @@ -1,13 +1,8 @@ -# Host der Datenbank -hosts = localhost -# Benutzername und Passwort der Datenbank -user = mail -password = ipfire - -# Der Datenbankname +hosts = localhost +user = root +password = mysqlfire dbname = mail table = virtual - select_field = dest -where_field = alias -additional_conditions = and status = '1' +where_field = address +additional_conditions = and active = '1' diff --git a/doc/ChangeLog b/doc/ChangeLog index f28d95c47f..02eba72fe4 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,110 +1,314 @@ ------------------------------------------------------------------------ -r880 | maniacikarus | 2007-09-08 16:30:48 +0400 (Sat, 08 Sep 2007) | 2 lines +r917 | ms | 2007-09-23 13:45:47 +0200 (Sun, 23 Sep 2007) | 2 lines + +Eine Downloadseite und einige CD-Cover von Maniac zur Webseite hinzugefuegt. + +------------------------------------------------------------------------ +r916 | ms | 2007-09-23 10:18:51 +0200 (Sun, 23 Sep 2007) | 2 lines + +rc.local... + +------------------------------------------------------------------------ +r915 | maniacikarus | 2007-09-23 10:12:07 +0200 (Sun, 23 Sep 2007) | 3 lines + +Meine Platte zur hddtemp.db hinzugefuegt +hddshutdown Routine verbessert + +------------------------------------------------------------------------ +r914 | ms | 2007-09-23 10:01:21 +0200 (Sun, 23 Sep 2007) | 2 lines + +Die hddtemp.db ins SVN gepackt und aktualisiert. + +------------------------------------------------------------------------ +r913 | ms | 2007-09-22 22:28:12 +0200 (Sat, 22 Sep 2007) | 2 lines + +Mal die Releasenummern zurueckgesetzt. + +------------------------------------------------------------------------ +r912 | ms | 2007-09-22 22:18:53 +0200 (Sat, 22 Sep 2007) | 2 lines + +Restart des Proxies bei Verbindung... + +------------------------------------------------------------------------ +r911 | ms | 2007-09-22 21:38:13 +0200 (Sat, 22 Sep 2007) | 2 lines + +de-latin1-nodeadkeys ist die default-Tastatur. + +------------------------------------------------------------------------ +r910 | maniacikarus | 2007-09-22 21:35:04 +0200 (Sat, 22 Sep 2007) | 2 lines + +MPFire und Samba Pakete angepasst + +------------------------------------------------------------------------ +r909 | ms | 2007-09-22 13:49:10 +0200 (Sat, 22 Sep 2007) | 2 lines + +Im Setup werden nun zuerst die Passwoerter und dann das Netzwerk konfiguriert. + +------------------------------------------------------------------------ +r908 | ms | 2007-09-22 13:41:27 +0200 (Sat, 22 Sep 2007) | 2 lines + +Der pppd wurde einfach gekillt, auch wenn er noch die Verbindung beendet hat. + +------------------------------------------------------------------------ +r907 | maniacikarus | 2007-09-22 13:22:51 +0200 (Sat, 22 Sep 2007) | 2 lines + +MPFire Fix um ggf den mpd zu starten + +------------------------------------------------------------------------ +r906 | ms | 2007-09-22 12:48:09 +0200 (Sat, 22 Sep 2007) | 5 lines + +Pakfire an den neuen Server angepasst. +Die Pakete wurden nicht richtig gebaut, da die speiziellen Scripts nicht beruecksichtigt wurden. +Fix in der mpfire makefile. +syslogdctrl sollte nun die Direktiven besser ersetzen. + +------------------------------------------------------------------------ +r905 | ms | 2007-09-22 12:20:27 +0200 (Sat, 22 Sep 2007) | 2 lines + +Favicon zur Webseite hinzugefuegt. + +------------------------------------------------------------------------ +r904 | maniacikarus | 2007-09-22 10:10:41 +0200 (Sat, 22 Sep 2007) | 4 lines + +hddshutdown mit sonderbehandlung f?\195?\188r SATA +makegraphs um -d ata ergaenzt +MPFire Paket angepasst + +------------------------------------------------------------------------ +r903 | ms | 2007-09-20 22:27:22 +0200 (Thu, 20 Sep 2007) | 2 lines + +sdparm gleich mal aktualisiert. + +------------------------------------------------------------------------ +r902 | ms | 2007-09-20 21:36:09 +0200 (Thu, 20 Sep 2007) | 3 lines + +Die Homepage auf neue Links aktualisiert. +Firewall-Service.com ist wieder bei den "friends" ;) + +------------------------------------------------------------------------ +r901 | ms | 2007-09-20 21:29:29 +0200 (Thu, 20 Sep 2007) | 3 lines + +sdparm eingebaut. +badblocks in die ISO gepackt. + +------------------------------------------------------------------------ +r900 | maniacikarus | 2007-09-18 19:33:42 +0200 (Tue, 18 Sep 2007) | 4 lines + +Neuer Versuch fuer Syslog +Index Refresh bei Shutdown und Reboot angepasst +hddshutdown umgeschrieben + +------------------------------------------------------------------------ +r899 | ms | 2007-09-17 22:19:32 +0200 (Mon, 17 Sep 2007) | 2 lines + +Die restlichen Eintraege des grubbatch entfernt. + +------------------------------------------------------------------------ +r898 | ms | 2007-09-16 22:27:42 +0200 (Sun, 16 Sep 2007) | 2 lines + +Die Core-Updates brauchen wir ja nichtmehr. + +------------------------------------------------------------------------ +r897 | ms | 2007-09-16 22:18:30 +0200 (Sun, 16 Sep 2007) | 3 lines + +MySQL als Paket angelegt. +Grub-install finalisiert. + +------------------------------------------------------------------------ +r896 | ms | 2007-09-16 19:52:37 +0200 (Sun, 16 Sep 2007) | 2 lines + +Habe die Webseite nach UTF8 kodiert. + +------------------------------------------------------------------------ +r895 | ms | 2007-09-16 19:45:18 +0200 (Sun, 16 Sep 2007) | 2 lines + +Mirror 3 rausgenommen, da der offline ist. + +------------------------------------------------------------------------ +r894 | ms | 2007-09-16 00:41:44 +0200 (Sun, 16 Sep 2007) | 2 lines + +Anderer Mailserver. + +------------------------------------------------------------------------ +r893 | ms | 2007-09-15 23:27:36 +0200 (Sat, 15 Sep 2007) | 2 lines + +Pakfire aktualisiert jetzt die Pakete nichtmehr in der Schleife. + +------------------------------------------------------------------------ +r892 | ms | 2007-09-15 21:10:07 +0200 (Sat, 15 Sep 2007) | 2 lines + +Netzwerkinstallation und PXE ausgebaut. + +------------------------------------------------------------------------ +r891 | ms | 2007-09-15 20:18:23 +0200 (Sat, 15 Sep 2007) | 4 lines + +Openmailadmin integriert. +Webcyradm ist dagegen rausgefallen. +vhosts fuer openmailadmin und phpaj gemacht. + +------------------------------------------------------------------------ +r890 | ms | 2007-09-15 15:27:54 +0200 (Sat, 15 Sep 2007) | 2 lines + +Ein Fix fuer das Hochladen der Dateien auf unseren Source-FTP-Server. + +------------------------------------------------------------------------ +r889 | ms | 2007-09-15 15:07:07 +0200 (Sat, 15 Sep 2007) | 2 lines + +Ein kleiner Fix fuer das VideoLan-Paket. + +------------------------------------------------------------------------ +r888 | ms | 2007-09-15 13:36:05 +0200 (Sat, 15 Sep 2007) | 2 lines + +Videolan-Client gebaut. + +------------------------------------------------------------------------ +r887 | ms | 2007-09-14 16:30:13 +0200 (Fri, 14 Sep 2007) | 5 lines + +Cron Logging deaktiviert +Language Fix fuer Shutdown und Reboot +Ovpn on system start +kleine Korrektur am Snort Skript + +------------------------------------------------------------------------ +r886 | ms | 2007-09-13 17:57:29 +0200 (Thu, 13 Sep 2007) | 2 lines + +kleiner Fix am Logwatch, es sollte jetzt gehen + +------------------------------------------------------------------------ +r885 | ms | 2007-09-11 19:10:49 +0200 (Tue, 11 Sep 2007) | 4 lines + +Der logwatch. +Gnump-Fix. +mpd-restart-Script. + +------------------------------------------------------------------------ +r884 | maniacikarus | 2007-09-11 18:18:48 +0200 (Tue, 11 Sep 2007) | 2 lines + +Anpassungen am MPFire + +------------------------------------------------------------------------ +r883 | casemaster | 2007-09-09 10:56:58 +0200 (Sun, 09 Sep 2007) | 2 lines + +Vorbelegung Gr?\195?\188n+Rot funktioniert jetzt. + +------------------------------------------------------------------------ +r882 | maniacikarus | 2007-09-08 16:34:01 +0200 (Sat, 08 Sep 2007) | 2 lines + +Korrektur im Outgoing Firewall Skript + +------------------------------------------------------------------------ +r881 | maniacikarus | 2007-09-08 15:46:50 +0200 (Sat, 08 Sep 2007) | 3 lines + +nochmal kleine Anpassung am Logwatch ggf fehlt noch der Confiy Symlink +Snort Init angepasst, damit die logs von nobody ausgelesen werden k?\195?\182nnen + +------------------------------------------------------------------------ +r880 | maniacikarus | 2007-09-08 14:30:48 +0200 (Sat, 08 Sep 2007) | 2 lines Ohne Webinterface is doof ------------------------------------------------------------------------ -r879 | maniacikarus | 2007-09-08 15:56:37 +0400 (Sat, 08 Sep 2007) | 2 lines +r879 | maniacikarus | 2007-09-08 13:56:37 +0200 (Sat, 08 Sep 2007) | 2 lines Gnump Perl Module gefixt ------------------------------------------------------------------------ -r878 | maniacikarus | 2007-09-08 12:29:01 +0400 (Sat, 08 Sep 2007) | 2 lines +r878 | maniacikarus | 2007-09-08 10:29:01 +0200 (Sat, 08 Sep 2007) | 2 lines Kleine Pfadanpassung fuer logwatch ------------------------------------------------------------------------ -r877 | ms | 2007-09-06 22:55:37 +0400 (Thu, 06 Sep 2007) | 2 lines +r877 | ms | 2007-09-06 20:55:37 +0200 (Thu, 06 Sep 2007) | 2 lines Weitere Improvements am MPFire. ------------------------------------------------------------------------ -r876 | maniacikarus | 2007-09-04 13:03:55 +0400 (Tue, 04 Sep 2007) | 2 lines +r876 | maniacikarus | 2007-09-04 11:03:55 +0200 (Tue, 04 Sep 2007) | 2 lines MPFire nochmal konrrigiert ------------------------------------------------------------------------ -r875 | maniacikarus | 2007-09-03 13:18:10 +0400 (Mon, 03 Sep 2007) | 4 lines +r875 | maniacikarus | 2007-09-03 11:18:10 +0200 (Mon, 03 Sep 2007) | 4 lines MPFire Copyright korrigiert Tripwire Samba und MPFire mit Ankern versehen Graph Cgi mit Back Button ------------------------------------------------------------------------ -r874 | ms | 2007-09-02 23:53:09 +0400 (Sun, 02 Sep 2007) | 3 lines +r874 | ms | 2007-09-02 21:53:09 +0200 (Sun, 02 Sep 2007) | 3 lines Einige Dateien zur ISO hinzugefuegt. Dem Postfix fehlte auch eine. ------------------------------------------------------------------------ -r873 | ms | 2007-09-02 23:03:33 +0400 (Sun, 02 Sep 2007) | 4 lines +r873 | ms | 2007-09-02 21:03:33 +0200 (Sun, 02 Sep 2007) | 4 lines MP3-Tag und MP3-Info entfernt, da der MPFire sie nichtmehr benoetigt. Benutzerrechte der Dateien vom mldonkey stimmen nicht. Pakfire wartet jetzt bei Cronjobs eine zufaellige Anzahl an Sekunden. (Bei Upgrades max. 1h, bei Updates max. 1 Minute.) ------------------------------------------------------------------------ -r872 | maniacikarus | 2007-09-02 17:16:38 +0400 (Sun, 02 Sep 2007) | 2 lines +r872 | maniacikarus | 2007-09-02 15:16:38 +0200 (Sun, 02 Sep 2007) | 2 lines MPFire Version 2 begonnen ------------------------------------------------------------------------ -r871 | ms | 2007-09-01 15:10:47 +0400 (Sat, 01 Sep 2007) | 2 lines +r871 | ms | 2007-09-01 13:10:47 +0200 (Sat, 01 Sep 2007) | 2 lines Falscher Name... ------------------------------------------------------------------------ -r870 | ms | 2007-09-01 14:48:01 +0400 (Sat, 01 Sep 2007) | 3 lines +r870 | ms | 2007-09-01 12:48:01 +0200 (Sat, 01 Sep 2007) | 3 lines Die letzten "missing_rootfile"s berichtigt und angelegt. NFS-Paket geschnuert. ------------------------------------------------------------------------ -r869 | ms | 2007-09-01 14:03:25 +0400 (Sat, 01 Sep 2007) | 2 lines +r869 | ms | 2007-09-01 12:03:25 +0200 (Sat, 01 Sep 2007) | 2 lines Php5-Konfuguration im Apache angepasst. ------------------------------------------------------------------------ -r868 | ms | 2007-09-01 13:38:05 +0400 (Sat, 01 Sep 2007) | 2 lines +r868 | ms | 2007-09-01 11:38:05 +0200 (Sat, 01 Sep 2007) | 2 lines Fehler im WebCyradm-Paket. ------------------------------------------------------------------------ -r867 | ms | 2007-09-01 02:40:26 +0400 (Sat, 01 Sep 2007) | 2 lines +r867 | ms | 2007-09-01 00:40:26 +0200 (Sat, 01 Sep 2007) | 2 lines Libid3tag... und PHP-Rootfile. ------------------------------------------------------------------------ -r866 | ms | 2007-08-31 17:50:23 +0400 (Fri, 31 Aug 2007) | 2 lines +r866 | ms | 2007-08-31 15:50:23 +0200 (Fri, 31 Aug 2007) | 2 lines CoreUpdate 3! ------------------------------------------------------------------------ -r865 | ms | 2007-08-31 16:09:23 +0400 (Fri, 31 Aug 2007) | 3 lines +r865 | ms | 2007-08-31 14:09:23 +0200 (Fri, 31 Aug 2007) | 3 lines Amavisd-new und PHP aktualisiert. Neues Startscript fuer den Applejuice. ------------------------------------------------------------------------ -r864 | ms | 2007-08-31 14:25:13 +0400 (Fri, 31 Aug 2007) | 3 lines +r864 | ms | 2007-08-31 12:25:13 +0200 (Fri, 31 Aug 2007) | 3 lines Postfix- und WebCyradm-Paket geschnuert. Einige Initscripts hinzugefuegt. ------------------------------------------------------------------------ -r863 | ms | 2007-08-31 13:20:15 +0400 (Fri, 31 Aug 2007) | 4 lines +r863 | ms | 2007-08-31 11:20:15 +0200 (Fri, 31 Aug 2007) | 4 lines MP3Blaster ist geflogen. MPC dazugekommen. Die Beschreibung aller Pakete entfernt. ------------------------------------------------------------------------ -r862 | ms | 2007-08-31 01:37:54 +0400 (Fri, 31 Aug 2007) | 2 lines +r862 | ms | 2007-08-30 23:37:54 +0200 (Thu, 30 Aug 2007) | 2 lines MPD. ------------------------------------------------------------------------ -r861 | ms | 2007-08-31 01:22:19 +0400 (Fri, 31 Aug 2007) | 5 lines +r861 | ms | 2007-08-30 23:22:19 +0200 (Thu, 30 Aug 2007) | 5 lines Postfix-Update dnsmasq-Update @@ -112,162 +316,162 @@ Syntaxfehler in der crontab cyrusimap-Paket ------------------------------------------------------------------------ -r860 | maniacikarus | 2007-08-31 01:19:25 +0400 (Fri, 31 Aug 2007) | 3 lines +r860 | maniacikarus | 2007-08-30 23:19:25 +0200 (Thu, 30 Aug 2007) | 3 lines Displayfix in der Samba CGI Disksize Rechnung im Installer angepasst ------------------------------------------------------------------------ -r859 | casemaster | 2007-08-30 17:19:02 +0400 (Thu, 30 Aug 2007) | 2 lines +r859 | casemaster | 2007-08-30 15:19:02 +0200 (Thu, 30 Aug 2007) | 2 lines Damit die USB-Images auch auf Ubuntu-Maschinen gebuat werden koennen. ------------------------------------------------------------------------ -r858 | maniacikarus | 2007-08-30 11:39:37 +0400 (Thu, 30 Aug 2007) | 2 lines +r858 | maniacikarus | 2007-08-30 09:39:37 +0200 (Thu, 30 Aug 2007) | 2 lines Pakfire Gui Update und Language fixes ------------------------------------------------------------------------ -r857 | ms | 2007-08-29 22:52:21 +0400 (Wed, 29 Aug 2007) | 2 lines +r857 | ms | 2007-08-29 20:52:21 +0200 (Wed, 29 Aug 2007) | 2 lines Den Mailer ausgetauscht, da der Perl-Mailer sich immer weggehangen hat. ------------------------------------------------------------------------ -r856 | maniacikarus | 2007-08-29 22:51:14 +0400 (Wed, 29 Aug 2007) | 2 lines +r856 | maniacikarus | 2007-08-29 20:51:14 +0200 (Wed, 29 Aug 2007) | 2 lines Fix am Urlfilter damit nur die gewuenschten Sperrkategorie gesperrt wird ------------------------------------------------------------------------ -r855 | ms | 2007-08-29 20:40:20 +0400 (Wed, 29 Aug 2007) | 2 lines +r855 | ms | 2007-08-29 18:40:20 +0200 (Wed, 29 Aug 2007) | 2 lines Syntaxfehler. ------------------------------------------------------------------------ -r854 | ms | 2007-08-29 20:24:16 +0400 (Wed, 29 Aug 2007) | 3 lines +r854 | ms | 2007-08-29 18:24:16 +0200 (Wed, 29 Aug 2007) | 3 lines Gateway wurde bei fester IP-Vergabe nicht gesetzt. Danke an "walter" fuer das Finden des Bugs. ------------------------------------------------------------------------ -r853 | ms | 2007-08-29 17:25:32 +0400 (Wed, 29 Aug 2007) | 2 lines +r853 | ms | 2007-08-29 15:25:32 +0200 (Wed, 29 Aug 2007) | 2 lines Ein Paar Dateien fuer die GPLv3 angepasst. ------------------------------------------------------------------------ -r852 | ms | 2007-08-29 14:14:06 +0400 (Wed, 29 Aug 2007) | 2 lines +r852 | ms | 2007-08-29 12:14:06 +0200 (Wed, 29 Aug 2007) | 2 lines Pakfire laedt die Listen jetzt besser und hat eine veraenderte Oberflaeche bekommen. ------------------------------------------------------------------------ -r851 | maniacikarus | 2007-08-28 15:27:08 +0400 (Tue, 28 Aug 2007) | 2 lines +r851 | maniacikarus | 2007-08-28 13:27:08 +0200 (Tue, 28 Aug 2007) | 2 lines Graph.pl gefixt, damit die CGIs sich trotz fehlender Mbmon Daten aufbauen ------------------------------------------------------------------------ -r850 | maniacikarus | 2007-08-28 15:03:30 +0400 (Tue, 28 Aug 2007) | 2 lines +r850 | maniacikarus | 2007-08-28 13:03:30 +0200 (Tue, 28 Aug 2007) | 2 lines Erster Versuch fuer Update Booster und Apple ------------------------------------------------------------------------ -r849 | maniacikarus | 2007-08-28 14:47:06 +0400 (Tue, 28 Aug 2007) | 4 lines +r849 | maniacikarus | 2007-08-28 12:47:06 +0200 (Tue, 28 Aug 2007) | 4 lines Openswan patch fuer Fehler im Realsetup Remote CGI fuer ssh tempstart fertig kleine Korrektur der sshctrl und syslogdctrl ------------------------------------------------------------------------ -r848 | ms | 2007-08-28 12:59:34 +0400 (Tue, 28 Aug 2007) | 2 lines +r848 | ms | 2007-08-28 10:59:34 +0200 (Tue, 28 Aug 2007) | 2 lines IRC-Verweis auf der Hauptseite erstellt. ------------------------------------------------------------------------ -r847 | ms | 2007-08-27 23:32:30 +0400 (Mon, 27 Aug 2007) | 2 lines +r847 | ms | 2007-08-27 21:32:30 +0200 (Mon, 27 Aug 2007) | 2 lines Kleinen Fehler bereinigt. ------------------------------------------------------------------------ -r846 | ms | 2007-08-27 23:31:19 +0400 (Mon, 27 Aug 2007) | 2 lines +r846 | ms | 2007-08-27 21:31:19 +0200 (Mon, 27 Aug 2007) | 2 lines Update Nummer 2 ------------------------------------------------------------------------ -r845 | ms | 2007-08-27 20:43:30 +0400 (Mon, 27 Aug 2007) | 2 lines +r845 | ms | 2007-08-27 18:43:30 +0200 (Mon, 27 Aug 2007) | 2 lines Homepage aktualisiert. ------------------------------------------------------------------------ -r844 | maniacikarus | 2007-08-27 19:41:44 +0400 (Mon, 27 Aug 2007) | 2 lines +r844 | maniacikarus | 2007-08-27 17:41:44 +0200 (Mon, 27 Aug 2007) | 2 lines Qos Service Graphen zeigen jetzt auch Werte ------------------------------------------------------------------------ -r843 | maniacikarus | 2007-08-27 17:23:29 +0400 (Mon, 27 Aug 2007) | 2 lines +r843 | maniacikarus | 2007-08-27 15:23:29 +0200 (Mon, 27 Aug 2007) | 2 lines Red Fix fuer PPP mit der Option PAP or CHAP ------------------------------------------------------------------------ -r842 | maniacikarus | 2007-08-27 14:54:17 +0400 (Mon, 27 Aug 2007) | 2 lines +r842 | maniacikarus | 2007-08-27 12:54:17 +0200 (Mon, 27 Aug 2007) | 2 lines 3 Perlbase Module aktiviert und DHCP Init gefixt ------------------------------------------------------------------------ -r841 | ms | 2007-08-27 02:17:50 +0400 (Mon, 27 Aug 2007) | 3 lines +r841 | ms | 2007-08-27 00:17:50 +0200 (Mon, 27 Aug 2007) | 3 lines Die Updates fein gemacht... Min. Swapsize := 0. ------------------------------------------------------------------------ -r840 | ms | 2007-08-27 02:03:48 +0400 (Mon, 27 Aug 2007) | 3 lines +r840 | ms | 2007-08-27 00:03:48 +0200 (Mon, 27 Aug 2007) | 3 lines Clearsign fuer Metafiles, Armorsign fuer Packages. ------------------------------------------------------------------------ -r839 | ms | 2007-08-26 18:34:06 +0400 (Sun, 26 Aug 2007) | 4 lines +r839 | ms | 2007-08-26 16:34:06 +0200 (Sun, 26 Aug 2007) | 4 lines Swap-Abfrage gefixt. Prototyp der Core-Scripte. sshctrl gefixt. ------------------------------------------------------------------------ -r838 | ms | 2007-08-26 18:03:22 +0400 (Sun, 26 Aug 2007) | 4 lines +r838 | ms | 2007-08-26 16:03:22 +0200 (Sun, 26 Aug 2007) | 4 lines Serverliste musste signiert werden. Der Caller ueberprueft nun ob schon ein Prozess laeuft. ssh-keyput geadded. ------------------------------------------------------------------------ -r837 | ms | 2007-08-26 16:33:12 +0400 (Sun, 26 Aug 2007) | 2 lines +r837 | ms | 2007-08-26 14:33:12 +0200 (Sun, 26 Aug 2007) | 2 lines Einen kleinen Wrapper gebaut. ------------------------------------------------------------------------ -r836 | maniacikarus | 2007-08-26 13:17:39 +0400 (Sun, 26 Aug 2007) | 2 lines +r836 | maniacikarus | 2007-08-26 11:17:39 +0200 (Sun, 26 Aug 2007) | 2 lines Connection Scheduler korrigiert ------------------------------------------------------------------------ -r835 | ms | 2007-08-26 03:00:44 +0400 (Sun, 26 Aug 2007) | 2 lines +r835 | ms | 2007-08-26 01:00:44 +0200 (Sun, 26 Aug 2007) | 2 lines Die Listen wurden nicht signiert... ------------------------------------------------------------------------ -r834 | ms | 2007-08-26 02:03:50 +0400 (Sun, 26 Aug 2007) | 2 lines +r834 | ms | 2007-08-26 00:03:50 +0200 (Sun, 26 Aug 2007) | 2 lines Buildfix. ------------------------------------------------------------------------ -r833 | ms | 2007-08-26 01:56:48 +0400 (Sun, 26 Aug 2007) | 2 lines +r833 | ms | 2007-08-25 23:56:48 +0200 (Sat, 25 Aug 2007) | 2 lines Ices durch Icegenerator ersetzt. ------------------------------------------------------------------------ -r832 | ms | 2007-08-26 01:44:14 +0400 (Sun, 26 Aug 2007) | 2 lines +r832 | ms | 2007-08-25 23:44:14 +0200 (Sat, 25 Aug 2007) | 2 lines Diskgroessen angepasst. ------------------------------------------------------------------------ -r831 | ms | 2007-08-26 01:40:23 +0400 (Sun, 26 Aug 2007) | 6 lines +r831 | ms | 2007-08-25 23:40:23 +0200 (Sat, 25 Aug 2007) | 6 lines Dem Installer ne bessere Rechnung fuer die Diskgroessen bekommen. Ices-0 eingebaut. @@ -276,91 +480,91 @@ libmagic eingebaut fuer den mldonkey. Torrent braucht keine UDP-Ports. ------------------------------------------------------------------------ -r830 | ms | 2007-08-26 00:38:37 +0400 (Sun, 26 Aug 2007) | 2 lines +r830 | ms | 2007-08-25 22:38:37 +0200 (Sat, 25 Aug 2007) | 2 lines Hatte zum Testen eine Zeile auskommentiert, damit es schneller geht... ------------------------------------------------------------------------ -r829 | ms | 2007-08-26 00:26:52 +0400 (Sun, 26 Aug 2007) | 2 lines +r829 | ms | 2007-08-25 22:26:52 +0200 (Sat, 25 Aug 2007) | 2 lines Pakfire-Master-Branch eroeffnet. ------------------------------------------------------------------------ -r828 | ms | 2007-08-25 21:06:33 +0400 (Sat, 25 Aug 2007) | 2 lines +r828 | ms | 2007-08-25 19:06:33 +0200 (Sat, 25 Aug 2007) | 2 lines IPFireSeeder oeffnet automatisch Ports. ------------------------------------------------------------------------ -r827 | maniacikarus | 2007-08-25 20:49:41 +0400 (Sat, 25 Aug 2007) | 2 lines +r827 | maniacikarus | 2007-08-25 18:49:41 +0200 (Sat, 25 Aug 2007) | 2 lines Disk Berechnung im Installer umgestellt ------------------------------------------------------------------------ -r826 | ms | 2007-08-25 20:37:26 +0400 (Sat, 25 Aug 2007) | 2 lines +r826 | ms | 2007-08-25 18:37:26 +0200 (Sat, 25 Aug 2007) | 2 lines rtorrent hatte Probleme auf den VIA C3 Prozessoren. ------------------------------------------------------------------------ -r825 | maniacikarus | 2007-08-25 20:07:48 +0400 (Sat, 25 Aug 2007) | 2 lines +r825 | maniacikarus | 2007-08-25 18:07:48 +0200 (Sat, 25 Aug 2007) | 2 lines kleine Anpassungen am Installer ------------------------------------------------------------------------ -r824 | ms | 2007-08-25 17:06:25 +0400 (Sat, 25 Aug 2007) | 2 lines +r824 | ms | 2007-08-25 15:06:25 +0200 (Sat, 25 Aug 2007) | 2 lines Das ein wenige instabile Sender der Emails gefixt. ------------------------------------------------------------------------ -r823 | ms | 2007-08-25 16:38:30 +0400 (Sat, 25 Aug 2007) | 2 lines +r823 | ms | 2007-08-25 14:38:30 +0200 (Sat, 25 Aug 2007) | 2 lines Keepconnected muss geloescht werden. ------------------------------------------------------------------------ -r822 | maniacikarus | 2007-08-25 13:06:41 +0400 (Sat, 25 Aug 2007) | 4 lines +r822 | maniacikarus | 2007-08-25 11:06:41 +0200 (Sat, 25 Aug 2007) | 4 lines Languages Revert Pakfire und Remote CGI etwas angepasst Syslogctrl und SSHctrl korrigiert ------------------------------------------------------------------------ -r821 | ms | 2007-08-24 18:27:42 +0400 (Fri, 24 Aug 2007) | 2 lines +r821 | ms | 2007-08-24 16:27:42 +0200 (Fri, 24 Aug 2007) | 2 lines Die Beta1 getagt. ------------------------------------------------------------------------ -r820 | ms | 2007-08-24 17:27:18 +0400 (Fri, 24 Aug 2007) | 2 lines +r820 | ms | 2007-08-24 15:27:18 +0200 (Fri, 24 Aug 2007) | 2 lines Eine Beta-1 Einfuehrung gemacht. ------------------------------------------------------------------------ -r819 | ms | 2007-08-24 14:27:14 +0400 (Fri, 24 Aug 2007) | 2 lines +r819 | ms | 2007-08-24 12:27:14 +0200 (Fri, 24 Aug 2007) | 2 lines Beta-Announcement auf der Webseite erstellt. ------------------------------------------------------------------------ -r818 | ms | 2007-08-24 13:00:25 +0400 (Fri, 24 Aug 2007) | 2 lines +r818 | ms | 2007-08-24 11:00:25 +0200 (Fri, 24 Aug 2007) | 2 lines Typo in der credits.cgi. ------------------------------------------------------------------------ -r817 | ms | 2007-08-24 12:58:14 +0400 (Fri, 24 Aug 2007) | 2 lines +r817 | ms | 2007-08-24 10:58:14 +0200 (Fri, 24 Aug 2007) | 2 lines Nochmal 2 Fixes. ------------------------------------------------------------------------ -r816 | ms | 2007-08-24 11:45:35 +0400 (Fri, 24 Aug 2007) | 2 lines +r816 | ms | 2007-08-24 09:45:35 +0200 (Fri, 24 Aug 2007) | 2 lines Sytaxfehler un den ueblichen Sch*** ------------------------------------------------------------------------ -r815 | ms | 2007-08-23 23:52:52 +0400 (Thu, 23 Aug 2007) | 4 lines +r815 | ms | 2007-08-23 21:52:52 +0200 (Thu, 23 Aug 2007) | 4 lines BETA 1! Foomatic-Paket. Nochmal das DSL Script ueberarbeitet und nen kleinen Daemon geschrieben. ------------------------------------------------------------------------ -r814 | maniacikarus | 2007-08-23 23:09:31 +0400 (Thu, 23 Aug 2007) | 5 lines +r814 | maniacikarus | 2007-08-23 21:09:31 +0200 (Thu, 23 Aug 2007) | 5 lines Korrektur MPFire CGI Language nachgetragen @@ -368,186 +572,186 @@ Syslogctrl angepasst Tunerrd geloescht ------------------------------------------------------------------------ -r813 | ms | 2007-08-23 15:18:50 +0400 (Thu, 23 Aug 2007) | 2 lines +r813 | ms | 2007-08-23 13:18:50 +0200 (Thu, 23 Aug 2007) | 2 lines Ein paar Rootfiles bearbeitet. ------------------------------------------------------------------------ -r812 | maniacikarus | 2007-08-23 14:58:00 +0400 (Thu, 23 Aug 2007) | 2 lines +r812 | maniacikarus | 2007-08-23 12:58:00 +0200 (Thu, 23 Aug 2007) | 2 lines Alle Restartskripte umbenannt in CTRL Skripte ------------------------------------------------------------------------ -r811 | ms | 2007-08-23 11:04:09 +0400 (Thu, 23 Aug 2007) | 2 lines +r811 | ms | 2007-08-23 09:04:09 +0200 (Thu, 23 Aug 2007) | 2 lines Buildfix ------------------------------------------------------------------------ -r810 | maniacikarus | 2007-08-23 02:25:36 +0400 (Thu, 23 Aug 2007) | 2 lines +r810 | maniacikarus | 2007-08-23 00:25:36 +0200 (Thu, 23 Aug 2007) | 2 lines Languages bereinigt ------------------------------------------------------------------------ -r809 | ms | 2007-08-23 01:33:52 +0400 (Thu, 23 Aug 2007) | 2 lines +r809 | ms | 2007-08-22 23:33:52 +0200 (Wed, 22 Aug 2007) | 2 lines PPTP-Client entfernt. ------------------------------------------------------------------------ -r808 | ms | 2007-08-23 01:24:17 +0400 (Thu, 23 Aug 2007) | 2 lines +r808 | ms | 2007-08-22 23:24:17 +0200 (Wed, 22 Aug 2007) | 2 lines Logwatch Buildfix. ------------------------------------------------------------------------ -r807 | ms | 2007-08-23 00:46:18 +0400 (Thu, 23 Aug 2007) | 2 lines +r807 | ms | 2007-08-22 22:46:18 +0200 (Wed, 22 Aug 2007) | 2 lines Dialctrl.pl integriert. ------------------------------------------------------------------------ -r806 | ms | 2007-08-22 23:58:53 +0400 (Wed, 22 Aug 2007) | 3 lines +r806 | ms | 2007-08-22 21:58:53 +0200 (Wed, 22 Aug 2007) | 3 lines setfilters und setaliases entfernt. qosctrl Fix. ------------------------------------------------------------------------ -r805 | ms | 2007-08-22 23:00:23 +0400 (Wed, 22 Aug 2007) | 2 lines +r805 | ms | 2007-08-22 21:00:23 +0200 (Wed, 22 Aug 2007) | 2 lines Firewalloptions entfernt :D ------------------------------------------------------------------------ -r804 | ms | 2007-08-22 22:35:37 +0400 (Wed, 22 Aug 2007) | 2 lines +r804 | ms | 2007-08-22 20:35:37 +0200 (Wed, 22 Aug 2007) | 2 lines Connectionstatus-Funktion ueberarbeitet. ------------------------------------------------------------------------ -r803 | ms | 2007-08-22 22:07:20 +0400 (Wed, 22 Aug 2007) | 2 lines +r803 | ms | 2007-08-22 20:07:20 +0200 (Wed, 22 Aug 2007) | 2 lines QoS.cgi speichert jetzt die TOS-Bits nach dem editieren wieder richtig. ------------------------------------------------------------------------ -r802 | ms | 2007-08-22 21:24:39 +0400 (Wed, 22 Aug 2007) | 2 lines +r802 | ms | 2007-08-22 19:24:39 +0200 (Wed, 22 Aug 2007) | 2 lines Logwatch - Experimental. ------------------------------------------------------------------------ -r801 | ms | 2007-08-22 20:23:15 +0400 (Wed, 22 Aug 2007) | 2 lines +r801 | ms | 2007-08-22 18:23:15 +0200 (Wed, 22 Aug 2007) | 2 lines Grub hat wieder ein huebsches Splashimage. ------------------------------------------------------------------------ -r800 | ms | 2007-08-22 14:38:25 +0400 (Wed, 22 Aug 2007) | 2 lines +r800 | ms | 2007-08-22 12:38:25 +0200 (Wed, 22 Aug 2007) | 2 lines Squid, Samba und NTFS Update. ------------------------------------------------------------------------ -r799 | ms | 2007-08-22 14:26:55 +0400 (Wed, 22 Aug 2007) | 2 lines +r799 | ms | 2007-08-22 12:26:55 +0200 (Wed, 22 Aug 2007) | 2 lines Wieder einmal die Netzwerkscripts. ------------------------------------------------------------------------ -r798 | maniacikarus | 2007-08-22 12:06:33 +0400 (Wed, 22 Aug 2007) | 2 lines +r798 | maniacikarus | 2007-08-22 10:06:33 +0200 (Wed, 22 Aug 2007) | 2 lines Syslogeinstellungen fuer var log messages per GUI Einstellbar ------------------------------------------------------------------------ -r797 | maniacikarus | 2007-08-22 11:24:06 +0400 (Wed, 22 Aug 2007) | 2 lines +r797 | maniacikarus | 2007-08-22 09:24:06 +0200 (Wed, 22 Aug 2007) | 2 lines Swap Size verringert und kleine Aenderung im Mountsource ------------------------------------------------------------------------ -r796 | maniacikarus | 2007-08-21 21:11:33 +0400 (Tue, 21 Aug 2007) | 2 lines +r796 | maniacikarus | 2007-08-21 19:11:33 +0200 (Tue, 21 Aug 2007) | 2 lines Hddstatus auf der Media CGI nochmal ueberarbeitet ------------------------------------------------------------------------ -r795 | ms | 2007-08-21 15:42:44 +0400 (Tue, 21 Aug 2007) | 4 lines +r795 | ms | 2007-08-21 13:42:44 +0200 (Tue, 21 Aug 2007) | 4 lines Laedt die USB-Controller von allein... Das soll die Probleme mit den USB-Tastaturen beheben. Die mount*.sh-Scripts ordentlich formatiert. ------------------------------------------------------------------------ -r794 | maniacikarus | 2007-08-21 12:40:46 +0400 (Tue, 21 Aug 2007) | 2 lines +r794 | maniacikarus | 2007-08-21 10:40:46 +0200 (Tue, 21 Aug 2007) | 2 lines gleich die Korrektur hinterher ------------------------------------------------------------------------ -r793 | maniacikarus | 2007-08-21 12:36:40 +0400 (Tue, 21 Aug 2007) | 2 lines +r793 | maniacikarus | 2007-08-21 10:36:40 +0200 (Tue, 21 Aug 2007) | 2 lines Neue Mount Skripte fuer den Installer - Status untested ------------------------------------------------------------------------ -r792 | ms | 2007-08-21 01:05:15 +0400 (Tue, 21 Aug 2007) | 2 lines +r792 | ms | 2007-08-20 23:05:15 +0200 (Mon, 20 Aug 2007) | 2 lines Hddshutdown-Fixes. ------------------------------------------------------------------------ -r791 | maniacikarus | 2007-08-20 19:17:03 +0400 (Mon, 20 Aug 2007) | 2 lines +r791 | maniacikarus | 2007-08-20 17:17:03 +0200 (Mon, 20 Aug 2007) | 2 lines Neue Version von hddshutdown ------------------------------------------------------------------------ -r790 | ms | 2007-08-20 18:25:59 +0400 (Mon, 20 Aug 2007) | 2 lines +r790 | ms | 2007-08-20 16:25:59 +0200 (Mon, 20 Aug 2007) | 2 lines Netzwerkscripts: DHCP vollstaendig getestet und gefixt. ------------------------------------------------------------------------ -r789 | ms | 2007-08-20 17:21:16 +0400 (Mon, 20 Aug 2007) | 3 lines +r789 | ms | 2007-08-20 15:21:16 +0200 (Mon, 20 Aug 2007) | 3 lines Setup weiter ausgebaut. Initrd des Installationssystems verkleinert. ------------------------------------------------------------------------ -r788 | ms | 2007-08-20 13:01:12 +0400 (Mon, 20 Aug 2007) | 2 lines +r788 | ms | 2007-08-20 11:01:12 +0200 (Mon, 20 Aug 2007) | 2 lines Setup SegFault-Fix. ------------------------------------------------------------------------ -r787 | ms | 2007-08-20 01:55:19 +0400 (Mon, 20 Aug 2007) | 3 lines +r787 | ms | 2007-08-19 23:55:19 +0200 (Sun, 19 Aug 2007) | 3 lines dhcpcd.exe geschrieben. asterisk.cgis geloescht. ------------------------------------------------------------------------ -r786 | ms | 2007-08-20 01:39:43 +0400 (Mon, 20 Aug 2007) | 2 lines +r786 | ms | 2007-08-19 23:39:43 +0200 (Sun, 19 Aug 2007) | 2 lines Fuse bereinigt. ------------------------------------------------------------------------ -r785 | ms | 2007-08-20 01:21:25 +0400 (Mon, 20 Aug 2007) | 4 lines +r785 | ms | 2007-08-19 23:21:25 +0200 (Sun, 19 Aug 2007) | 4 lines Rudimentaere ISDN-Erkennung erstellt. ProbeHW optimiert weges des via-rhine-Problem. Grubs gfx-Menue entfernt wegen der Kompatibilitaet. ------------------------------------------------------------------------ -r784 | maniacikarus | 2007-08-20 00:18:59 +0400 (Mon, 20 Aug 2007) | 2 lines +r784 | maniacikarus | 2007-08-19 22:18:59 +0200 (Sun, 19 Aug 2007) | 2 lines Fix am Installer ------------------------------------------------------------------------ -r783 | maniacikarus | 2007-08-19 23:59:53 +0400 (Sun, 19 Aug 2007) | 2 lines +r783 | maniacikarus | 2007-08-19 21:59:53 +0200 (Sun, 19 Aug 2007) | 2 lines Nochmal kleine Korrekturen an den Sprachdateien und der Remote CGI ------------------------------------------------------------------------ -r782 | maniacikarus | 2007-08-19 23:35:46 +0400 (Sun, 19 Aug 2007) | 2 lines +r782 | maniacikarus | 2007-08-19 21:35:46 +0200 (Sun, 19 Aug 2007) | 2 lines Translations fuer den Installer gemacht ------------------------------------------------------------------------ -r781 | maniacikarus | 2007-08-19 11:21:46 +0400 (Sun, 19 Aug 2007) | 2 lines +r781 | maniacikarus | 2007-08-19 09:21:46 +0200 (Sun, 19 Aug 2007) | 2 lines Buildfix ------------------------------------------------------------------------ -r780 | maniacikarus | 2007-08-18 23:10:10 +0400 (Sat, 18 Aug 2007) | 4 lines +r780 | maniacikarus | 2007-08-18 21:10:10 +0200 (Sat, 18 Aug 2007) | 4 lines ARP Tabelle aus der DHCP CGI entfernt Pakfire CGI nochmal korrigiert SSH Zugriff mit Timer gebaut ------------------------------------------------------------------------ -r779 | maniacikarus | 2007-08-17 20:00:01 +0400 (Fri, 17 Aug 2007) | 5 lines +r779 | maniacikarus | 2007-08-17 18:00:01 +0200 (Fri, 17 Aug 2007) | 5 lines Debuginformationen aus den CGIs entfernt Hoffentlich die letzten Config Types bereinigt @@ -555,39 +759,39 @@ Samba und SSHd init Skripte angepasst Pakfire CGI optisch angepasst ------------------------------------------------------------------------ -r778 | ms | 2007-08-17 16:42:50 +0400 (Fri, 17 Aug 2007) | 2 lines +r778 | ms | 2007-08-17 14:42:50 +0200 (Fri, 17 Aug 2007) | 2 lines Noch zwei Netzwerkfixes... ------------------------------------------------------------------------ -r777 | ms | 2007-08-17 15:25:26 +0400 (Fri, 17 Aug 2007) | 2 lines +r777 | ms | 2007-08-17 13:25:26 +0200 (Fri, 17 Aug 2007) | 2 lines Code bereinigt... ------------------------------------------------------------------------ -r776 | ms | 2007-08-17 15:16:06 +0400 (Fri, 17 Aug 2007) | 2 lines +r776 | ms | 2007-08-17 13:16:06 +0200 (Fri, 17 Aug 2007) | 2 lines ISDN-Config geloescht. ------------------------------------------------------------------------ -r775 | ms | 2007-08-17 15:14:27 +0400 (Fri, 17 Aug 2007) | 3 lines +r775 | ms | 2007-08-17 13:14:27 +0200 (Fri, 17 Aug 2007) | 3 lines Fixes an den Netzwerkscripts und der Netzwerkroutine im Setup. Viele alte Patches entfernt. ------------------------------------------------------------------------ -r774 | ms | 2007-08-17 13:03:18 +0400 (Fri, 17 Aug 2007) | 2 lines +r774 | ms | 2007-08-17 11:03:18 +0200 (Fri, 17 Aug 2007) | 2 lines Ibod entfernt. ------------------------------------------------------------------------ -r773 | ms | 2007-08-17 13:01:02 +0400 (Fri, 17 Aug 2007) | 3 lines +r773 | ms | 2007-08-17 11:01:02 +0200 (Fri, 17 Aug 2007) | 3 lines Den Installer ordentlich abgespeckt. restartsyslogd entfernt. ------------------------------------------------------------------------ -r772 | ms | 2007-08-17 01:21:24 +0400 (Fri, 17 Aug 2007) | 5 lines +r772 | ms | 2007-08-16 23:21:24 +0200 (Thu, 16 Aug 2007) | 5 lines Capi-Utils entfernt. Green-only entfernt. @@ -595,172 +799,172 @@ Snortsnarf entfernt. Fritz-Card entfernt. ------------------------------------------------------------------------ -r771 | maniacikarus | 2007-08-17 01:07:38 +0400 (Fri, 17 Aug 2007) | 2 lines +r771 | maniacikarus | 2007-08-16 23:07:38 +0200 (Thu, 16 Aug 2007) | 2 lines PPP Menue angepasst ------------------------------------------------------------------------ -r770 | ms | 2007-08-15 23:23:14 +0400 (Wed, 15 Aug 2007) | 2 lines +r770 | ms | 2007-08-15 21:23:14 +0200 (Wed, 15 Aug 2007) | 2 lines Testversion foomatic... ------------------------------------------------------------------------ -r769 | ms | 2007-08-15 00:04:10 +0400 (Wed, 15 Aug 2007) | 2 lines +r769 | ms | 2007-08-14 22:04:10 +0200 (Tue, 14 Aug 2007) | 2 lines Einie Syntaxfehler bereinigt. ------------------------------------------------------------------------ -r768 | maniacikarus | 2007-08-14 22:55:35 +0400 (Tue, 14 Aug 2007) | 2 lines +r768 | maniacikarus | 2007-08-14 20:55:35 +0200 (Tue, 14 Aug 2007) | 2 lines Backup funktioniert jetzt auch via Webinterface ------------------------------------------------------------------------ -r767 | ms | 2007-08-14 22:31:45 +0400 (Tue, 14 Aug 2007) | 4 lines +r767 | ms | 2007-08-14 20:31:45 +0200 (Tue, 14 Aug 2007) | 4 lines isdn4k-Utils entfernt. Alte Scripts entfernt. firewall.local bekommt die richtigen Rechte ------------------------------------------------------------------------ -r766 | maniacikarus | 2007-08-14 22:10:09 +0400 (Tue, 14 Aug 2007) | 3 lines +r766 | maniacikarus | 2007-08-14 20:10:09 +0200 (Tue, 14 Aug 2007) | 3 lines QoS Graphen angepasst damit Bytes angezeigt werden Guardian Konfiguration in die IDS CGI eingebaut ------------------------------------------------------------------------ -r765 | ms | 2007-08-14 21:58:31 +0400 (Tue, 14 Aug 2007) | 2 lines +r765 | ms | 2007-08-14 19:58:31 +0200 (Tue, 14 Aug 2007) | 2 lines Neue und hoffentlich bessere Scripte fuer die Verwaltung der vielen Netzwerkschnittstellen... ------------------------------------------------------------------------ -r764 | ms | 2007-08-14 20:27:04 +0400 (Tue, 14 Aug 2007) | 2 lines +r764 | ms | 2007-08-14 18:27:04 +0200 (Tue, 14 Aug 2007) | 2 lines OpenSwan-Build-Fix. ------------------------------------------------------------------------ -r763 | ms | 2007-08-14 14:17:00 +0400 (Tue, 14 Aug 2007) | 2 lines +r763 | ms | 2007-08-14 12:17:00 +0200 (Tue, 14 Aug 2007) | 2 lines Minor-Kernel-Update auf 2.6.16.53. ------------------------------------------------------------------------ -r762 | ms | 2007-08-14 12:43:05 +0400 (Tue, 14 Aug 2007) | 3 lines +r762 | ms | 2007-08-14 10:43:05 +0200 (Tue, 14 Aug 2007) | 3 lines mtools reintegriert. Brauchen wir zum bauen der USB-Images. ------------------------------------------------------------------------ -r761 | ms | 2007-08-14 00:58:51 +0400 (Tue, 14 Aug 2007) | 3 lines +r761 | ms | 2007-08-13 22:58:51 +0200 (Mon, 13 Aug 2007) | 3 lines OpenSwan gefixt. Tippfehler im Pakfire-lib. ------------------------------------------------------------------------ -r760 | maniacikarus | 2007-08-12 12:32:30 +0400 (Sun, 12 Aug 2007) | 3 lines +r760 | maniacikarus | 2007-08-12 10:32:30 +0200 (Sun, 12 Aug 2007) | 3 lines Pakfire Remove Funktion in der CGI aktiviert Pakfire autorefresh bei install/uninstall eingebaut ------------------------------------------------------------------------ -r759 | ms | 2007-08-11 20:29:22 +0400 (Sat, 11 Aug 2007) | 3 lines +r759 | ms | 2007-08-11 18:29:22 +0200 (Sat, 11 Aug 2007) | 3 lines Zum Test alle Kernelmodule in das Installationssystem getan. PCI- und USB-IDs aktualisiert. ------------------------------------------------------------------------ -r758 | ms | 2007-08-11 17:15:05 +0400 (Sat, 11 Aug 2007) | 4 lines +r758 | ms | 2007-08-11 15:15:05 +0200 (Sat, 11 Aug 2007) | 4 lines mtools enfernt. Keyserver des Pakfire geaendert. ISDN aus dem Setup-Menue ausgebaut. ------------------------------------------------------------------------ -r757 | maniacikarus | 2007-08-11 16:40:01 +0400 (Sat, 11 Aug 2007) | 3 lines +r757 | maniacikarus | 2007-08-11 14:40:01 +0200 (Sat, 11 Aug 2007) | 3 lines Fixes an MPFire Syntaxfix am ipsec ------------------------------------------------------------------------ -r756 | ms | 2007-08-10 17:57:23 +0400 (Fri, 10 Aug 2007) | 2 lines +r756 | ms | 2007-08-10 15:57:23 +0200 (Fri, 10 Aug 2007) | 2 lines Kleiner Glibc-Fehler vom Detlef entdeckt. ------------------------------------------------------------------------ -r755 | ms | 2007-08-10 16:47:52 +0400 (Fri, 10 Aug 2007) | 2 lines +r755 | ms | 2007-08-10 14:47:52 +0200 (Fri, 10 Aug 2007) | 2 lines Homepage in die Versionskontrolle gebracht. ------------------------------------------------------------------------ -r754 | ms | 2007-08-09 23:34:46 +0400 (Thu, 09 Aug 2007) | 2 lines +r754 | ms | 2007-08-09 21:34:46 +0200 (Thu, 09 Aug 2007) | 2 lines Icecast... ------------------------------------------------------------------------ -r753 | ms | 2007-08-09 22:01:48 +0400 (Thu, 09 Aug 2007) | 2 lines +r753 | ms | 2007-08-09 20:01:48 +0200 (Thu, 09 Aug 2007) | 2 lines Grub ohne reiser4-Support, da der Probleme macht. ------------------------------------------------------------------------ -r752 | ms | 2007-08-09 21:12:34 +0400 (Thu, 09 Aug 2007) | 2 lines +r752 | ms | 2007-08-09 19:12:34 +0200 (Thu, 09 Aug 2007) | 2 lines Fix fuer Red-Static. ------------------------------------------------------------------------ -r751 | ms | 2007-08-09 20:04:04 +0400 (Thu, 09 Aug 2007) | 2 lines +r751 | ms | 2007-08-09 18:04:04 +0200 (Thu, 09 Aug 2007) | 2 lines Pakfire holt nun Systemupdates. ------------------------------------------------------------------------ -r750 | ms | 2007-08-09 17:14:55 +0400 (Thu, 09 Aug 2007) | 3 lines +r750 | ms | 2007-08-09 15:14:55 +0200 (Thu, 09 Aug 2007) | 3 lines Einige Root-Files noch erweitert/gekuerzt. Abhaengigkeiten hinzugefuegt. ------------------------------------------------------------------------ -r749 | ms | 2007-08-09 16:43:41 +0400 (Thu, 09 Aug 2007) | 2 lines +r749 | ms | 2007-08-09 14:43:41 +0200 (Thu, 09 Aug 2007) | 2 lines Mldonkey-Update. ------------------------------------------------------------------------ -r748 | ms | 2007-08-09 16:34:47 +0400 (Thu, 09 Aug 2007) | 2 lines +r748 | ms | 2007-08-09 14:34:47 +0200 (Thu, 09 Aug 2007) | 2 lines Wieder einige Pakete zur ISO/Pakfire hinzugefuegt. ------------------------------------------------------------------------ -r747 | ms | 2007-08-08 23:12:48 +0400 (Wed, 08 Aug 2007) | 3 lines +r747 | ms | 2007-08-08 21:12:48 +0200 (Wed, 08 Aug 2007) | 3 lines Einen im Kernel enthaltenen Treiber entfernt. Vorgerueckt auf Testing 5. ------------------------------------------------------------------------ -r746 | casemaster | 2007-08-08 22:49:25 +0400 (Wed, 08 Aug 2007) | 2 lines +r746 | casemaster | 2007-08-08 20:49:25 +0200 (Wed, 08 Aug 2007) | 2 lines Eine Realtak-Version des Gigabit-Treibers eingebaut ------------------------------------------------------------------------ -r745 | ms | 2007-08-08 00:42:12 +0400 (Wed, 08 Aug 2007) | 3 lines +r745 | ms | 2007-08-07 22:42:12 +0200 (Tue, 07 Aug 2007) | 3 lines Noch die PPP-Peers hinzugefuegt. Alpha 4! ------------------------------------------------------------------------ -r744 | maniacikarus | 2007-08-07 22:06:17 +0400 (Tue, 07 Aug 2007) | 4 lines +r744 | maniacikarus | 2007-08-07 20:06:17 +0200 (Tue, 07 Aug 2007) | 4 lines DMZ Pinholes korrigiert Kleine Anpassung am Guardian Skript -Samba init beim restart das sleep verlängert +Samba init beim restart das sleep verl?\195?\164ngert ------------------------------------------------------------------------ -r743 | ms | 2007-08-06 23:45:54 +0400 (Mon, 06 Aug 2007) | 2 lines +r743 | ms | 2007-08-06 21:45:54 +0200 (Mon, 06 Aug 2007) | 2 lines Ein kleiner Patch am Fritz-Treiber. ------------------------------------------------------------------------ -r742 | ms | 2007-08-06 20:24:39 +0400 (Mon, 06 Aug 2007) | 2 lines +r742 | ms | 2007-08-06 18:24:39 +0200 (Mon, 06 Aug 2007) | 2 lines Viele Pakete gemacht und ISO verkleinert. ------------------------------------------------------------------------ -r741 | ms | 2007-08-06 18:05:05 +0400 (Mon, 06 Aug 2007) | 5 lines +r741 | ms | 2007-08-06 16:05:05 +0200 (Mon, 06 Aug 2007) | 5 lines Rote IP wird auf der Hauptseite bei DHCP angezeigt. Neue Pakete gemacht. @@ -768,84 +972,84 @@ Ein Default-install.sh/uninstall.sh/upgrade.sh-Set erstellt damit da nicht so vi rumliegen. ------------------------------------------------------------------------ -r740 | ms | 2007-08-06 13:32:46 +0400 (Mon, 06 Aug 2007) | 3 lines +r740 | ms | 2007-08-06 11:32:46 +0200 (Mon, 06 Aug 2007) | 3 lines Wieder einige Fixes. Das System ist nun wieder auf dem letzten Stand vor unserem Unfall mit dem Kernel. ------------------------------------------------------------------------ -r739 | ms | 2007-08-06 01:17:31 +0400 (Mon, 06 Aug 2007) | 2 lines +r739 | ms | 2007-08-05 23:17:31 +0200 (Sun, 05 Aug 2007) | 2 lines Fix. ------------------------------------------------------------------------ -r738 | ms | 2007-08-06 00:27:46 +0400 (Mon, 06 Aug 2007) | 2 lines +r738 | ms | 2007-08-05 22:27:46 +0200 (Sun, 05 Aug 2007) | 2 lines mISDN auch im Kernel auf Version 1.1.5 gebracht. ------------------------------------------------------------------------ -r737 | ms | 2007-08-05 22:11:26 +0400 (Sun, 05 Aug 2007) | 2 lines +r737 | ms | 2007-08-05 20:11:26 +0200 (Sun, 05 Aug 2007) | 2 lines Eine Reihe an Paketen gemacht: ethereal, nmap, rsync, sox, mailx ------------------------------------------------------------------------ -r736 | ms | 2007-08-05 21:44:01 +0400 (Sun, 05 Aug 2007) | 2 lines +r736 | ms | 2007-08-05 19:44:01 +0200 (Sun, 05 Aug 2007) | 2 lines ... ------------------------------------------------------------------------ -r735 | ms | 2007-08-05 21:39:37 +0400 (Sun, 05 Aug 2007) | 2 lines +r735 | ms | 2007-08-05 19:39:37 +0200 (Sun, 05 Aug 2007) | 2 lines Den "neuen" Kernel entfernt. ------------------------------------------------------------------------ -r734 | ms | 2007-08-05 21:17:10 +0400 (Sun, 05 Aug 2007) | 2 lines +r734 | ms | 2007-08-05 19:17:10 +0200 (Sun, 05 Aug 2007) | 2 lines ... ------------------------------------------------------------------------ -r733 | ms | 2007-08-05 21:15:33 +0400 (Sun, 05 Aug 2007) | 2 lines +r733 | ms | 2007-08-05 19:15:33 +0200 (Sun, 05 Aug 2007) | 2 lines Pakfire Update. ------------------------------------------------------------------------ -r732 | ms | 2007-08-05 00:41:48 +0400 (Sun, 05 Aug 2007) | 3 lines +r732 | ms | 2007-08-04 22:41:48 +0200 (Sat, 04 Aug 2007) | 3 lines Kernel 2.6.22.1 - leider ohne OpenSwan. Sprung auf GPLv3. ------------------------------------------------------------------------ -r731 | ms | 2007-08-02 02:02:51 +0400 (Thu, 02 Aug 2007) | 3 lines +r731 | ms | 2007-08-02 00:02:51 +0200 (Thu, 02 Aug 2007) | 3 lines Die Farben im Pakfire sind nun abschaltbar. Hilfe erweitert. ------------------------------------------------------------------------ -r730 | ms | 2007-08-01 19:04:47 +0400 (Wed, 01 Aug 2007) | 4 lines +r730 | ms | 2007-08-01 17:04:47 +0200 (Wed, 01 Aug 2007) | 4 lines Udev-Tools letztendlich auch im Installationssystem bauen lassen. IPFireSeeder-Post-Install-Fix. Pakfire laesst sich nur aufrufen, wenn man auch "online" ist. ------------------------------------------------------------------------ -r729 | ms | 2007-08-01 18:32:50 +0400 (Wed, 01 Aug 2007) | 2 lines +r729 | ms | 2007-08-01 16:32:50 +0200 (Wed, 01 Aug 2007) | 2 lines Installationsfix fuer MPFire. ------------------------------------------------------------------------ -r728 | ms | 2007-08-01 18:24:47 +0400 (Wed, 01 Aug 2007) | 3 lines +r728 | ms | 2007-08-01 16:24:47 +0200 (Wed, 01 Aug 2007) | 3 lines Den Guardian mal korrigiert, einen Tippfehler korrigiert und versucht die Jetway GigaNics ans laufen zu bekommen mittels der neuen NAPI. ------------------------------------------------------------------------ -r727 | maniacikarus | 2007-07-31 21:19:06 +0400 (Tue, 31 Jul 2007) | 3 lines +r727 | maniacikarus | 2007-07-31 19:19:06 +0200 (Tue, 31 Jul 2007) | 3 lines Guardian spielt jetzt auch SSH-Watch 3mal falsches PW und dann gibts ein block Guardian blockt jetzt auf allen interfaces die IP ------------------------------------------------------------------------ -r726 | maniacikarus | 2007-07-29 21:55:20 +0400 (Sun, 29 Jul 2007) | 5 lines +r726 | maniacikarus | 2007-07-29 19:55:20 +0200 (Sun, 29 Jul 2007) | 5 lines Guardian in Snort eingebaut QoS CGI wegen den Language Anpassungen korrigiert @@ -853,12 +1057,12 @@ Tripwire Policy soll Snortregeln ignorieren Network Skript angepasst ------------------------------------------------------------------------ -r725 | maniacikarus | 2007-07-29 00:22:43 +0400 (Sun, 29 Jul 2007) | 2 lines +r725 | maniacikarus | 2007-07-28 22:22:43 +0200 (Sat, 28 Jul 2007) | 2 lines Ajax Speed Anzeige ncohmal veraendert ------------------------------------------------------------------------ -r724 | maniacikarus | 2007-07-28 21:03:50 +0400 (Sat, 28 Jul 2007) | 5 lines +r724 | maniacikarus | 2007-07-28 19:03:50 +0200 (Sat, 28 Jul 2007) | 5 lines Qosgraphen in das Standardschema gepackt Qosgraph CGI komplett neu @@ -866,61 +1070,61 @@ Qos CGI multilingual (ich hoffe das geht ueberhaupt noch was :D ) ------------------------------------------------------------------------ -r723 | maniacikarus | 2007-07-27 09:24:44 +0400 (Fri, 27 Jul 2007) | 2 lines +r723 | maniacikarus | 2007-07-27 07:24:44 +0200 (Fri, 27 Jul 2007) | 2 lines buildfix ------------------------------------------------------------------------ -r722 | maniacikarus | 2007-07-27 00:23:40 +0400 (Fri, 27 Jul 2007) | 2 lines +r722 | maniacikarus | 2007-07-26 22:23:40 +0200 (Thu, 26 Jul 2007) | 2 lines IDS nochmal angepasst ------------------------------------------------------------------------ -r721 | maniacikarus | 2007-07-26 21:17:06 +0400 (Thu, 26 Jul 2007) | 3 lines +r721 | maniacikarus | 2007-07-26 19:17:06 +0200 (Thu, 26 Jul 2007) | 3 lines IDS Rules wieder aktiviert OpenVPN Start/Stop on boot/shutdown ------------------------------------------------------------------------ -r720 | maniacikarus | 2007-07-25 22:02:01 +0400 (Wed, 25 Jul 2007) | 2 lines +r720 | maniacikarus | 2007-07-25 20:02:01 +0200 (Wed, 25 Jul 2007) | 2 lines Guardian Paket angefangen, zum Testen muss Snort funktionieren ... ------------------------------------------------------------------------ -r719 | ms | 2007-07-25 01:02:07 +0400 (Wed, 25 Jul 2007) | 3 lines +r719 | ms | 2007-07-24 23:02:07 +0200 (Tue, 24 Jul 2007) | 3 lines Sorry, aber so ist es deutlich schoener... Und es ist ja schon spaet :D ------------------------------------------------------------------------ -r718 | ms | 2007-07-25 00:57:19 +0400 (Wed, 25 Jul 2007) | 3 lines +r718 | ms | 2007-07-24 22:57:19 +0200 (Tue, 24 Jul 2007) | 3 lines Habe mal die Meldung geaendert, dass niemand die LFS-Leute informiert wenn er nen Fehler hat. Bei Errors wartet das System jetzt 3 Minuten und geht dann automatisch weiter, falls man per Remote neu startet... ------------------------------------------------------------------------ -r717 | ms | 2007-07-24 20:33:31 +0400 (Tue, 24 Jul 2007) | 2 lines +r717 | ms | 2007-07-24 18:33:31 +0200 (Tue, 24 Jul 2007) | 2 lines LFS-Scripts, die unbenutzt waren entfernt. ------------------------------------------------------------------------ -r716 | maniacikarus | 2007-07-23 22:13:41 +0400 (Mon, 23 Jul 2007) | 3 lines +r716 | maniacikarus | 2007-07-23 20:13:41 +0200 (Mon, 23 Jul 2007) | 3 lines Probleme mit dem Perl Modulen hoffentlich bereinigt MPFire liest jetzt auch Genre und Jahr aus ------------------------------------------------------------------------ -r715 | maniacikarus | 2007-07-21 21:23:57 +0400 (Sat, 21 Jul 2007) | 2 lines +r715 | maniacikarus | 2007-07-21 19:23:57 +0200 (Sat, 21 Jul 2007) | 2 lines Fixes am MPFire und an der backupctrl ------------------------------------------------------------------------ -r714 | ms | 2007-07-20 19:10:19 +0400 (Fri, 20 Jul 2007) | 2 lines +r714 | ms | 2007-07-20 17:10:19 +0200 (Fri, 20 Jul 2007) | 2 lines Pakfire und startklips Fixes. ------------------------------------------------------------------------ -r713 | ms | 2007-07-20 03:20:04 +0400 (Fri, 20 Jul 2007) | 7 lines +r713 | ms | 2007-07-20 01:20:04 +0200 (Fri, 20 Jul 2007) | 7 lines Tripwire-Policy gefixt. Backupctrl zur ISO gefuegt. @@ -930,14 +1134,14 @@ Unser IPSec-restart-Problem mit einem kleinem Patch behoben. Bitte testet dies noch einmal langfristig!!! ------------------------------------------------------------------------ -r712 | maniacikarus | 2007-07-19 21:08:25 +0400 (Thu, 19 Jul 2007) | 4 lines +r712 | maniacikarus | 2007-07-19 19:08:25 +0200 (Thu, 19 Jul 2007) | 4 lines Backupklamotte erweitert Fehler im Disk Graphen gefixt Kleine Anpassung am MPFire ------------------------------------------------------------------------ -r711 | ms | 2007-07-19 21:04:04 +0400 (Thu, 19 Jul 2007) | 6 lines +r711 | ms | 2007-07-19 19:04:04 +0200 (Thu, 19 Jul 2007) | 6 lines Asynchrones Syslogging aktiviert (Performancegruende) Cron.log deaktiviert. @@ -946,57 +1150,57 @@ Grosse Dateien und Logs des Pakfire werden ausgelagert auf /var. qosd sollte nun besser gekillt werden. Hartnaeckiger Bursche. ------------------------------------------------------------------------ -r710 | ms | 2007-07-19 20:18:32 +0400 (Thu, 19 Jul 2007) | 3 lines +r710 | ms | 2007-07-19 18:18:32 +0200 (Thu, 19 Jul 2007) | 3 lines Pakfire ist jetzt bunt und schoen zu bedienen. Es fehlt noch die Abhaengigkeitsaufloesung bei der Uninstallation. ------------------------------------------------------------------------ -r709 | ms | 2007-07-19 17:43:48 +0400 (Thu, 19 Jul 2007) | 2 lines +r709 | ms | 2007-07-19 15:43:48 +0200 (Thu, 19 Jul 2007) | 2 lines Buildreihenfolge geaendert, damit asterisk den chan_alsa baut. ------------------------------------------------------------------------ -r708 | ms | 2007-07-19 15:02:54 +0400 (Thu, 19 Jul 2007) | 3 lines +r708 | ms | 2007-07-19 13:02:54 +0200 (Thu, 19 Jul 2007) | 3 lines Das zttool benoetigt libnewt, welche aber noch nicht zur Verfuegung steht. Vielleicht kommen wir ja ohne das Tool aus. ------------------------------------------------------------------------ -r707 | ms | 2007-07-19 04:48:03 +0400 (Thu, 19 Jul 2007) | 4 lines +r707 | ms | 2007-07-19 02:48:03 +0200 (Thu, 19 Jul 2007) | 4 lines Und wieder den Packfire erweitert. Diesesmal: * Fortschrittsbalken beim Download * Einheitliche und strukturierte Fehler- und Logging-Meldungen ------------------------------------------------------------------------ -r706 | ms | 2007-07-19 02:03:07 +0400 (Thu, 19 Jul 2007) | 6 lines +r706 | ms | 2007-07-19 00:03:07 +0200 (Thu, 19 Jul 2007) | 6 lines -Die Mindestgröße des Dateisystems nochmal reduziert für die Installation +Die Mindestgr?\195?\182?\195?\159e des Dateisystems nochmal reduziert f?\195?\188r die Installation auf einer 1GB CompactFlash-IDE-Karte. Das hier erfordert nochmal eine genauere Untersuchung und die Umsetzung -einer besseren Berechnung der Mindestgrößen der Partitionen sowie einige +einer besseren Berechnung der Mindestgr?\195?\182?\195?\159en der Partitionen sowie einige erweiterte Einstellungen zur swap-Partition. ------------------------------------------------------------------------ -r705 | ms | 2007-07-18 19:55:47 +0400 (Wed, 18 Jul 2007) | 2 lines +r705 | ms | 2007-07-18 17:55:47 +0200 (Wed, 18 Jul 2007) | 2 lines n gaaaanz frischer Asterisk und n gut aufgemotzter Kernel ------------------------------------------------------------------------ -r704 | ms | 2007-07-18 14:04:26 +0400 (Wed, 18 Jul 2007) | 4 lines +r704 | ms | 2007-07-18 12:04:26 +0200 (Wed, 18 Jul 2007) | 4 lines Clamav-Update Einige Aenderungen rueckgaengig gemacht... Bisschen Pakfire gemacht... ------------------------------------------------------------------------ -r703 | maniacikarus | 2007-07-18 00:42:52 +0400 (Wed, 18 Jul 2007) | 2 lines +r703 | maniacikarus | 2007-07-17 22:42:52 +0200 (Tue, 17 Jul 2007) | 2 lines Kleine Commits um ein paar Fehlermeldungen zu unterdruecken ------------------------------------------------------------------------ -r702 | maniacikarus | 2007-07-17 23:39:18 +0400 (Tue, 17 Jul 2007) | 5 lines +r702 | maniacikarus | 2007-07-17 21:39:18 +0200 (Tue, 17 Jul 2007) | 5 lines MPFire erweitert Samba etwas angepasst @@ -1004,78 +1208,78 @@ Pakfire ueberfluessigen Text entfernt Tripwire Policy angepasst ------------------------------------------------------------------------ -r701 | ms | 2007-07-16 22:00:55 +0400 (Mon, 16 Jul 2007) | 2 lines +r701 | ms | 2007-07-16 20:00:55 +0200 (Mon, 16 Jul 2007) | 2 lines Ein Commit damit der Heiner weiterbauen kann... ------------------------------------------------------------------------ -r700 | ms | 2007-07-16 04:39:38 +0400 (Mon, 16 Jul 2007) | 2 lines +r700 | ms | 2007-07-16 02:39:38 +0200 (Mon, 16 Jul 2007) | 2 lines Ein ueberfluessiges Paket entfernt. ------------------------------------------------------------------------ -r699 | ms | 2007-07-16 04:32:00 +0400 (Mon, 16 Jul 2007) | 2 lines +r699 | ms | 2007-07-16 02:32:00 +0200 (Mon, 16 Jul 2007) | 2 lines Ein Syntax-Fix zum FTP-Upload. ------------------------------------------------------------------------ -r698 | ms | 2007-07-16 04:20:58 +0400 (Mon, 16 Jul 2007) | 2 lines +r698 | ms | 2007-07-16 02:20:58 +0200 (Mon, 16 Jul 2007) | 2 lines Fake-resolv.conf eingefuegt. ------------------------------------------------------------------------ -r697 | ms | 2007-07-16 04:12:10 +0400 (Mon, 16 Jul 2007) | 6 lines +r697 | ms | 2007-07-16 02:12:10 +0200 (Mon, 16 Jul 2007) | 6 lines Alte Buildroot-Dateien entfernt. -Kernelconfig erweitert für Flash-Devices. +Kernelconfig erweitert f?\195?\188r Flash-Devices. losetup ins Installationssystem kompiliert. -Das Buildscript kann nun selbstständig auch auf andere Ports als 21 +Das Buildscript kann nun selbstst?\195?\164ndig auch auf andere Ports als 21 hochladen... ------------------------------------------------------------------------ -r696 | maniacikarus | 2007-07-15 18:44:24 +0400 (Sun, 15 Jul 2007) | 3 lines +r696 | maniacikarus | 2007-07-15 16:44:24 +0200 (Sun, 15 Jul 2007) | 3 lines Makefile angepasst fuer backupctrl Menueeintraege fuer mpfire und backup ------------------------------------------------------------------------ -r695 | ms | 2007-07-15 18:16:07 +0400 (Sun, 15 Jul 2007) | 2 lines +r695 | ms | 2007-07-15 16:16:07 +0200 (Sun, 15 Jul 2007) | 2 lines Ich wuerde mal sagen, dass das ext3-Dateisystem nun geht. :D ------------------------------------------------------------------------ -r694 | ms | 2007-07-15 16:51:24 +0400 (Sun, 15 Jul 2007) | 2 lines +r694 | ms | 2007-07-15 14:51:24 +0200 (Sun, 15 Jul 2007) | 2 lines Clamav-Update und 2 Fixes. ------------------------------------------------------------------------ -r693 | ms | 2007-07-15 15:30:12 +0400 (Sun, 15 Jul 2007) | 2 lines +r693 | ms | 2007-07-15 13:30:12 +0200 (Sun, 15 Jul 2007) | 2 lines OpenSwan aktualisiert, da in der alten Version ein Fehler mit dem PPPoE vorlag. ------------------------------------------------------------------------ -r692 | ms | 2007-07-15 13:40:12 +0400 (Sun, 15 Jul 2007) | 3 lines +r692 | ms | 2007-07-15 11:40:12 +0200 (Sun, 15 Jul 2007) | 3 lines VPN-Watch ueberprueft nun ob der Tunnel da ist und nicht der ISAKMP. VPN-Restart gekillt. ------------------------------------------------------------------------ -r691 | ms | 2007-07-15 13:36:06 +0400 (Sun, 15 Jul 2007) | 2 lines +r691 | ms | 2007-07-15 11:36:06 +0200 (Sun, 15 Jul 2007) | 2 lines Nochma n Fix... ------------------------------------------------------------------------ -r690 | maniacikarus | 2007-07-15 12:37:20 +0400 (Sun, 15 Jul 2007) | 2 lines +r690 | maniacikarus | 2007-07-15 10:37:20 +0200 (Sun, 15 Jul 2007) | 2 lines Und wieder ein commit da ich heute so fleissig bin :D ------------------------------------------------------------------------ -r689 | maniacikarus | 2007-07-15 11:58:51 +0400 (Sun, 15 Jul 2007) | 2 lines +r689 | maniacikarus | 2007-07-15 09:58:51 +0200 (Sun, 15 Jul 2007) | 2 lines Doch noch ein paar alte Config Types gefunden ------------------------------------------------------------------------ -r688 | maniacikarus | 2007-07-15 11:33:07 +0400 (Sun, 15 Jul 2007) | 5 lines +r688 | maniacikarus | 2007-07-15 09:33:07 +0200 (Sun, 15 Jul 2007) | 5 lines Control Skripe korrigiert Pakfire 2sprachig gemacht @@ -1083,35 +1287,35 @@ MPFire Gui erweitert Language Missings bereinigt ------------------------------------------------------------------------ -r687 | ms | 2007-07-15 01:45:00 +0400 (Sun, 15 Jul 2007) | 3 lines +r687 | ms | 2007-07-14 23:45:00 +0200 (Sat, 14 Jul 2007) | 3 lines Fuer unsere speziellen IPCop-Freunde... Liebe Gruesse. ------------------------------------------------------------------------ -r686 | ms | 2007-07-15 00:45:36 +0400 (Sun, 15 Jul 2007) | 3 lines +r686 | ms | 2007-07-14 22:45:36 +0200 (Sat, 14 Jul 2007) | 3 lines Rollback des SSL, weils nen netten Fehler mit dem SSH gibt. Und noch das komische resetusb geloescht, was keine Funktion mehr besitzt. ------------------------------------------------------------------------ -r685 | casemaster | 2007-07-14 21:22:40 +0400 (Sat, 14 Jul 2007) | 2 lines +r685 | casemaster | 2007-07-14 19:22:40 +0200 (Sat, 14 Jul 2007) | 2 lines -Namen der Netzwerkkarten können jetzt geändert werden. +Namen der Netzwerkkarten k?\195?\182nnen jetzt ge?\195?\164ndert werden. ------------------------------------------------------------------------ -r684 | maniacikarus | 2007-07-14 16:25:46 +0400 (Sat, 14 Jul 2007) | 2 lines +r684 | maniacikarus | 2007-07-14 14:25:46 +0200 (Sat, 14 Jul 2007) | 2 lines Die beiden CTRL Dateien nochmal angepasst ------------------------------------------------------------------------ -r683 | maniacikarus | 2007-07-14 13:52:29 +0400 (Sat, 14 Jul 2007) | 3 lines +r683 | maniacikarus | 2007-07-14 11:52:29 +0200 (Sat, 14 Jul 2007) | 3 lines Aenderungen am VPN Watch Language Einstellungen in der Graph.pl ------------------------------------------------------------------------ -r682 | maniacikarus | 2007-07-13 22:49:27 +0400 (Fri, 13 Jul 2007) | 8 lines +r682 | maniacikarus | 2007-07-13 20:49:27 +0200 (Fri, 13 Jul 2007) | 8 lines Fuer den Urlfilter ein Background Image gemacht MPFire erweitert @@ -1122,91 +1326,91 @@ vpnmain die beiden SHA2 Crypts entfernt Snort init nochmal angepasst damit die PID alleine angelegt wird ------------------------------------------------------------------------ -r681 | maniacikarus | 2007-07-13 21:51:42 +0400 (Fri, 13 Jul 2007) | 2 lines +r681 | maniacikarus | 2007-07-13 19:51:42 +0200 (Fri, 13 Jul 2007) | 2 lines Die beiden Control Dateien angepasst ------------------------------------------------------------------------ -r680 | casemaster | 2007-07-13 02:57:26 +0400 (Fri, 13 Jul 2007) | 2 lines +r680 | casemaster | 2007-07-13 00:57:26 +0200 (Fri, 13 Jul 2007) | 2 lines Warteschleife entfernt. ------------------------------------------------------------------------ -r679 | casemaster | 2007-07-13 02:54:17 +0400 (Fri, 13 Jul 2007) | 2 lines +r679 | casemaster | 2007-07-13 00:54:17 +0200 (Fri, 13 Jul 2007) | 2 lines Vorbereitung am Installer/Setup um NIC-Namen umzubenennen. ------------------------------------------------------------------------ -r678 | ms | 2007-07-13 01:13:00 +0400 (Fri, 13 Jul 2007) | 2 lines +r678 | ms | 2007-07-12 23:13:00 +0200 (Thu, 12 Jul 2007) | 2 lines Den Pfad der mke2fs-Tools korrigiert. ------------------------------------------------------------------------ -r677 | ms | 2007-07-13 01:11:20 +0400 (Fri, 13 Jul 2007) | 3 lines +r677 | ms | 2007-07-12 23:11:20 +0200 (Thu, 12 Jul 2007) | 3 lines Large-File-Support eingeschaltet und noch ein bisschen Debugging aktiviert. ------------------------------------------------------------------------ -r676 | maniacikarus | 2007-07-12 00:30:21 +0400 (Thu, 12 Jul 2007) | 4 lines +r676 | maniacikarus | 2007-07-11 22:30:21 +0200 (Wed, 11 Jul 2007) | 4 lines kleine Korrektur in der Samba CGI IPFire Backup Loesung weiter gebaut kleiner fix im dhcp init Skript ------------------------------------------------------------------------ -r675 | ms | 2007-07-12 00:24:15 +0400 (Thu, 12 Jul 2007) | 2 lines +r675 | ms | 2007-07-11 22:24:15 +0200 (Wed, 11 Jul 2007) | 2 lines Uploads.cgi entfernt. Die war noch ueber. ------------------------------------------------------------------------ -r674 | ms | 2007-07-11 22:48:22 +0400 (Wed, 11 Jul 2007) | 3 lines +r674 | ms | 2007-07-11 20:48:22 +0200 (Wed, 11 Jul 2007) | 3 lines Irgendwie war da der falsche Patch noch drinne... Sowas von peinlich aber auch... ------------------------------------------------------------------------ -r673 | ms | 2007-07-11 17:50:35 +0400 (Wed, 11 Jul 2007) | 3 lines +r673 | ms | 2007-07-11 15:50:35 +0200 (Wed, 11 Jul 2007) | 3 lines Wir nehmen mal die Tools aus der Busybox zum formatieren des ext3. TESTING. ------------------------------------------------------------------------ -r672 | ms | 2007-07-11 17:17:37 +0400 (Wed, 11 Jul 2007) | 3 lines +r672 | ms | 2007-07-11 15:17:37 +0200 (Wed, 11 Jul 2007) | 3 lines DHCP-Client initialisiert nun die Firewall korrekt! Neues Wrapper-Script fuer multiple Redirectors im Squid. ------------------------------------------------------------------------ -r671 | ms | 2007-07-11 04:39:13 +0400 (Wed, 11 Jul 2007) | 2 lines +r671 | ms | 2007-07-11 02:39:13 +0200 (Wed, 11 Jul 2007) | 2 lines Udev-Rules im Installer sind nun identisch mit denen aus dem System. ------------------------------------------------------------------------ -r670 | ms | 2007-07-11 03:05:43 +0400 (Wed, 11 Jul 2007) | 2 lines +r670 | ms | 2007-07-11 01:05:43 +0200 (Wed, 11 Jul 2007) | 2 lines Devel-Version wird jetzt nichtmehr automatisch gebaut. ------------------------------------------------------------------------ -r669 | ms | 2007-07-10 02:57:32 +0400 (Tue, 10 Jul 2007) | 3 lines +r669 | ms | 2007-07-10 00:57:32 +0200 (Tue, 10 Jul 2007) | 3 lines OpenSSL-Update Light-Version gekillt. ------------------------------------------------------------------------ -r668 | ms | 2007-07-10 02:20:53 +0400 (Tue, 10 Jul 2007) | 3 lines +r668 | ms | 2007-07-10 00:20:53 +0200 (Tue, 10 Jul 2007) | 3 lines Xen-Support vorruebergehend wieder entfernt, da die Entwickler keine Reaktion zeigen. Vielleicht wirds ja was im naechsten Release. ------------------------------------------------------------------------ -r667 | ms | 2007-07-10 00:37:46 +0400 (Tue, 10 Jul 2007) | 3 lines +r667 | ms | 2007-07-09 22:37:46 +0200 (Mon, 09 Jul 2007) | 3 lines Pakete lassen sich nun definitv per Webinterface installieren. Backup-Tool mal direkt gefixt. ------------------------------------------------------------------------ -r666 | maniacikarus | 2007-07-09 20:51:43 +0400 (Mon, 09 Jul 2007) | 6 lines +r666 | maniacikarus | 2007-07-09 18:51:43 +0200 (Mon, 09 Jul 2007) | 6 lines Korrekturen im IDS System Division by 0 in den grafischen Firewallogs unterbunden @@ -1215,45 +1419,45 @@ fehlende Perl Module ins MPFire Paket eingebunden Writeipac auf neue Config Types angepasst ------------------------------------------------------------------------ -r665 | ms | 2007-07-09 18:13:24 +0400 (Mon, 09 Jul 2007) | 3 lines +r665 | ms | 2007-07-09 16:13:24 +0200 (Mon, 09 Jul 2007) | 3 lines Kleine Anpassung um die Treiber richtig zu initialisieren... Muss noch getestet werden... ------------------------------------------------------------------------ -r664 | ms | 2007-07-09 14:51:43 +0400 (Mon, 09 Jul 2007) | 2 lines +r664 | ms | 2007-07-09 12:51:43 +0200 (Mon, 09 Jul 2007) | 2 lines Downloadquelle der Mail-Tools korrigiert ------------------------------------------------------------------------ -r663 | casemaster | 2007-07-09 02:02:00 +0400 (Mon, 09 Jul 2007) | 2 lines +r663 | casemaster | 2007-07-09 00:02:00 +0200 (Mon, 09 Jul 2007) | 2 lines -Erkennung hinzugefügt, ob alle Netzwerkkarten konfiguriert wurden. +Erkennung hinzugef?\195?\188gt, ob alle Netzwerkkarten konfiguriert wurden. ------------------------------------------------------------------------ -r662 | maniacikarus | 2007-07-09 01:11:50 +0400 (Mon, 09 Jul 2007) | 2 lines +r662 | maniacikarus | 2007-07-08 23:11:50 +0200 (Sun, 08 Jul 2007) | 2 lines kleiner Snort Fix und fehlendes Icon nachgeliefert ------------------------------------------------------------------------ -r661 | ms | 2007-07-06 01:44:24 +0400 (Fri, 06 Jul 2007) | 4 lines +r661 | ms | 2007-07-05 23:44:24 +0200 (Thu, 05 Jul 2007) | 4 lines IPFire-Seeder gebaut... Pakfire erweitert... ctorrent geloescht. ------------------------------------------------------------------------ -r660 | maniacikarus | 2007-07-05 09:55:40 +0400 (Thu, 05 Jul 2007) | 2 lines +r660 | maniacikarus | 2007-07-05 07:55:40 +0200 (Thu, 05 Jul 2007) | 2 lines -IPSec Ctrl nochmal geändert damit VPN Watch ordentlich gestartet wird +IPSec Ctrl nochmal ge?\195?\164ndert damit VPN Watch ordentlich gestartet wird ------------------------------------------------------------------------ -r659 | maniacikarus | 2007-07-04 23:15:35 +0400 (Wed, 04 Jul 2007) | 2 lines +r659 | maniacikarus | 2007-07-04 21:15:35 +0200 (Wed, 04 Jul 2007) | 2 lines Snort wird jetzt ordentlich beendet ------------------------------------------------------------------------ -r658 | maniacikarus | 2007-07-03 23:59:13 +0400 (Tue, 03 Jul 2007) | 6 lines +r658 | maniacikarus | 2007-07-03 21:59:13 +0200 (Tue, 03 Jul 2007) | 6 lines MPFire Streaming beigebracht, zumindest m3u Files VPN-Watch nochmal angepasst @@ -1262,7 +1466,7 @@ UpdateBooster um ein paar Icons bereichert Favicon transparent gemacht, der FF will dennoch nicht damit ------------------------------------------------------------------------ -r657 | ms | 2007-07-02 01:41:27 +0400 (Mon, 02 Jul 2007) | 7 lines +r657 | ms | 2007-07-01 23:41:27 +0200 (Sun, 01 Jul 2007) | 7 lines DHCP und Squid-Initscripts optimiert fuer ein schnelleres starten und stoppen. Which und lsof zur ISO hinzugefuegt. @@ -1272,30 +1476,30 @@ UPnP aus dem Menue genommen. Samba-Symlinks korrigiert. ------------------------------------------------------------------------ -r656 | maniacikarus | 2007-07-01 15:50:48 +0400 (Sun, 01 Jul 2007) | 3 lines +r656 | maniacikarus | 2007-07-01 13:50:48 +0200 (Sun, 01 Jul 2007) | 3 lines DHCP Webseite angepasst damit beim speichern auch die rc links gesetzt werden MPFire um Quick Playlist Funktionen erweitert ------------------------------------------------------------------------ -r655 | ms | 2007-07-01 02:23:36 +0400 (Sun, 01 Jul 2007) | 2 lines +r655 | ms | 2007-07-01 00:23:36 +0200 (Sun, 01 Jul 2007) | 2 lines Ein kleines Paketchen aus dem MPFire geschnuert. ------------------------------------------------------------------------ -r654 | maniacikarus | 2007-07-01 00:47:32 +0400 (Sun, 01 Jul 2007) | 4 lines +r654 | maniacikarus | 2007-06-30 22:47:32 +0200 (Sat, 30 Jun 2007) | 4 lines -MPFire hinzugefügt - CGI mpg123 Frontend +MPFire hinzugef?\195?\188gt - CGI mpg123 Frontend Hardwaregraphs und Samba korrigiert -makegraphs für alle erweitert die ihr Gateway nicht pingen können -> geht jetzt auf ping.ipfire.org +makegraphs f?\195?\188r alle erweitert die ihr Gateway nicht pingen k?\195?\182nnen -> geht jetzt auf ping.ipfire.org ------------------------------------------------------------------------ -r653 | ms | 2007-06-30 21:25:13 +0400 (Sat, 30 Jun 2007) | 2 lines +r653 | ms | 2007-06-30 19:25:13 +0200 (Sat, 30 Jun 2007) | 2 lines Das alte "which" entfernt. ------------------------------------------------------------------------ -r652 | ms | 2007-06-30 21:21:34 +0400 (Sat, 30 Jun 2007) | 8 lines +r652 | ms | 2007-06-30 19:21:34 +0200 (Sat, 30 Jun 2007) | 8 lines QoS-Graphen wieder eingebaut. usbutils und which Paket gemacht. @@ -1306,19 +1510,19 @@ Java-paket verkleinert. Sambactrl gefixt. ------------------------------------------------------------------------ -r651 | ms | 2007-06-29 04:28:25 +0400 (Fri, 29 Jun 2007) | 4 lines +r651 | ms | 2007-06-29 02:28:25 +0200 (Fri, 29 Jun 2007) | 4 lines Dem Silvio ein Applejuice/Java-Paket gebaut. Bitte testen. Den Pakfire ein wenig weitergemacht... cURL-Libs in die ISO gepackt. ------------------------------------------------------------------------ -r650 | ms | 2007-06-28 03:53:47 +0400 (Thu, 28 Jun 2007) | 2 lines +r650 | ms | 2007-06-28 01:53:47 +0200 (Thu, 28 Jun 2007) | 2 lines Nochma nen anderen Torrent-Client versuchen... ------------------------------------------------------------------------ -r649 | ms | 2007-06-28 01:50:38 +0400 (Thu, 28 Jun 2007) | 10 lines +r649 | ms | 2007-06-27 23:50:38 +0200 (Wed, 27 Jun 2007) | 10 lines Samba-Update auf neues Patchlevel. Jaja, die Sicherheitsluecken oder sowas... Pakfire: @@ -1331,12 +1535,12 @@ Eine kleine Macke in der red/update gefixxt. Clamav-Postinstall-Prozess und noch so ein dummes Rechteproblem gefixxt. ------------------------------------------------------------------------ -r648 | maniacikarus | 2007-06-27 21:31:30 +0400 (Wed, 27 Jun 2007) | 2 lines +r648 | maniacikarus | 2007-06-27 19:31:30 +0200 (Wed, 27 Jun 2007) | 2 lines commit und geh weg ------------------------------------------------------------------------ -r647 | ms | 2007-06-26 03:26:43 +0400 (Tue, 26 Jun 2007) | 5 lines +r647 | ms | 2007-06-26 01:26:43 +0200 (Tue, 26 Jun 2007) | 5 lines OpenVPN gefixt. ctorrent hinzugefuegt. @@ -1344,42 +1548,42 @@ UpdateBooster/SquidGuard gefixt. Pakfire-Archiv geaendert. ------------------------------------------------------------------------ -r646 | maniacikarus | 2007-06-24 20:57:33 +0400 (Sun, 24 Jun 2007) | 2 lines +r646 | maniacikarus | 2007-06-24 18:57:33 +0200 (Sun, 24 Jun 2007) | 2 lines Graphen ueberarbeitet ------------------------------------------------------------------------ -r645 | maniacikarus | 2007-06-22 17:24:43 +0400 (Fri, 22 Jun 2007) | 2 lines +r645 | maniacikarus | 2007-06-22 15:24:43 +0200 (Fri, 22 Jun 2007) | 2 lines ipsecctrl gefixt und connections.cgi gefixt ------------------------------------------------------------------------ -r644 | maniacikarus | 2007-06-22 01:00:12 +0400 (Fri, 22 Jun 2007) | 2 lines +r644 | maniacikarus | 2007-06-21 23:00:12 +0200 (Thu, 21 Jun 2007) | 2 lines was kleines ------------------------------------------------------------------------ -r643 | maniacikarus | 2007-06-21 22:14:48 +0400 (Thu, 21 Jun 2007) | 2 lines +r643 | maniacikarus | 2007-06-21 20:14:48 +0200 (Thu, 21 Jun 2007) | 2 lines Einige CGI Fixes ------------------------------------------------------------------------ -r642 | ms | 2007-06-21 02:48:45 +0400 (Thu, 21 Jun 2007) | 2 lines +r642 | ms | 2007-06-21 00:48:45 +0200 (Thu, 21 Jun 2007) | 2 lines In den Pakfire nun auch das neuen Paketformat uebernommen. ------------------------------------------------------------------------ -r641 | casemaster | 2007-06-21 01:37:19 +0400 (Thu, 21 Jun 2007) | 2 lines +r641 | casemaster | 2007-06-20 23:37:19 +0200 (Wed, 20 Jun 2007) | 2 lines Korrektur zum speichern der 30-udev Datei. ------------------------------------------------------------------------ -r640 | maniacikarus | 2007-06-20 23:19:00 +0400 (Wed, 20 Jun 2007) | 2 lines +r640 | maniacikarus | 2007-06-20 21:19:00 +0200 (Wed, 20 Jun 2007) | 2 lines kleine Anpassung an ipsec ------------------------------------------------------------------------ -r639 | ms | 2007-06-19 22:40:52 +0400 (Tue, 19 Jun 2007) | 9 lines +r639 | ms | 2007-06-19 20:40:52 +0200 (Tue, 19 Jun 2007) | 9 lines Am Pakfire weitergearbeitet. CGI erweitert und mit neuen Funktionen versehen. @@ -1391,36 +1595,36 @@ DHCP-Server startet nach der Installation. Einen String im Installer verschoenert :D ------------------------------------------------------------------------ -r638 | ms | 2007-06-19 02:09:26 +0400 (Tue, 19 Jun 2007) | 3 lines +r638 | ms | 2007-06-19 00:09:26 +0200 (Tue, 19 Jun 2007) | 3 lines Kleine Fixes am Pakfire - brauche Binary. OpenVPN geht nach einem ersten Test... ------------------------------------------------------------------------ -r637 | maniacikarus | 2007-06-19 00:57:57 +0400 (Tue, 19 Jun 2007) | 2 lines +r637 | maniacikarus | 2007-06-18 22:57:57 +0200 (Mon, 18 Jun 2007) | 2 lines IPSecctrl fuer vpnwatch angepasst ------------------------------------------------------------------------ -r636 | ms | 2007-06-19 00:20:21 +0400 (Tue, 19 Jun 2007) | 2 lines +r636 | ms | 2007-06-18 22:20:21 +0200 (Mon, 18 Jun 2007) | 2 lines Ein Alsa-Initscript gebaut, was beim Herunterfahren die Lautstaerke speichert. ------------------------------------------------------------------------ -r635 | ms | 2007-06-18 00:58:08 +0400 (Mon, 18 Jun 2007) | 3 lines +r635 | ms | 2007-06-17 22:58:08 +0200 (Sun, 17 Jun 2007) | 3 lines Bleeding-Rules entfernt, da die Seite auf einmal nichtmehr existiert. ALSA eingebaut (und Pakete fuer vorbis, ogg, mp3blaster) ------------------------------------------------------------------------ -r634 | maniacikarus | 2007-06-17 13:02:50 +0400 (Sun, 17 Jun 2007) | 4 lines +r634 | maniacikarus | 2007-06-17 11:02:50 +0200 (Sun, 17 Jun 2007) | 4 lines Graphs Aenderung die ich gestern vergessen hatte Nettraffic monitor Skripte geloescht makegraphs bei Linequaltity auf 5 Ping und Gateway geaendert ------------------------------------------------------------------------ -r633 | maniacikarus | 2007-06-16 18:30:20 +0400 (Sat, 16 Jun 2007) | 6 lines +r633 | maniacikarus | 2007-06-16 16:30:20 +0200 (Sat, 16 Jun 2007) | 6 lines Ajax Speedmeter ist ueber Guioptions deaktivierbar -> friss gut CPU Connections CGI sollte die IPSec Verbindungen einfaerben @@ -1429,58 +1633,58 @@ QOS gefixt,viele kleine Fehler Squid Initskript setzt die Squid und Squidguard logs auch owner squid ------------------------------------------------------------------------ -r632 | ms | 2007-06-15 03:48:13 +0400 (Fri, 15 Jun 2007) | 3 lines +r632 | ms | 2007-06-15 01:48:13 +0200 (Fri, 15 Jun 2007) | 3 lines Mal richtig schnell ein kleines Python-Script geschrieben, welches die Paket-Datenbank aus den Metas generiert. (Fuer den Einsatz auf dem Server.) ------------------------------------------------------------------------ -r631 | ms | 2007-06-15 02:38:01 +0400 (Fri, 15 Jun 2007) | 3 lines +r631 | ms | 2007-06-15 00:38:01 +0200 (Fri, 15 Jun 2007) | 3 lines GnuPG in der "Vollversion" drin. Pakfire ein kleines wenig erweitert. Download-Funktionen angelegt, sodass ein naechster Mirror benutzt wird wenn der erste einen Fehler erzeugt. ------------------------------------------------------------------------ -r630 | maniacikarus | 2007-06-15 00:02:21 +0400 (Fri, 15 Jun 2007) | 2 lines +r630 | maniacikarus | 2007-06-14 22:02:21 +0200 (Thu, 14 Jun 2007) | 2 lines Nochmal einige CGI Aenderungen ------------------------------------------------------------------------ -r629 | maniacikarus | 2007-06-14 22:56:04 +0400 (Thu, 14 Jun 2007) | 2 lines +r629 | maniacikarus | 2007-06-14 20:56:04 +0200 (Thu, 14 Jun 2007) | 2 lines Einige CGIs gefixt, SNORT wird beim Systemstart gestartet ------------------------------------------------------------------------ -r628 | ms | 2007-06-14 13:41:09 +0400 (Thu, 14 Jun 2007) | 3 lines +r628 | ms | 2007-06-14 11:41:09 +0200 (Thu, 14 Jun 2007) | 3 lines Noch ein paar Rand-Cryptop-Engines aktiviert. Testing4. ------------------------------------------------------------------------ -r627 | maniacikarus | 2007-06-13 01:14:45 +0400 (Wed, 13 Jun 2007) | 2 lines +r627 | maniacikarus | 2007-06-12 23:14:45 +0200 (Tue, 12 Jun 2007) | 2 lines OpenVPN ------------------------------------------------------------------------ -r626 | casemaster | 2007-06-13 00:11:00 +0400 (Wed, 13 Jun 2007) | 3 lines +r626 | casemaster | 2007-06-12 22:11:00 +0200 (Tue, 12 Jun 2007) | 3 lines Die Datei "/etc/udev/rules.d/30-persistent-network.rules" wird jetzt -beim Verlassen der NW-Konfiguration in einen Stück geschrieben. +beim Verlassen der NW-Konfiguration in einen St?\195?\188ck geschrieben. ------------------------------------------------------------------------ -r625 | ms | 2007-06-11 03:52:02 +0400 (Mon, 11 Jun 2007) | 4 lines +r625 | ms | 2007-06-11 01:52:02 +0200 (Mon, 11 Jun 2007) | 4 lines Ein Haufen Buildfixes. Pakfire-Binary. Passwoerter werden nun in der shadow gespeichert. ------------------------------------------------------------------------ -r624 | ms | 2007-06-11 00:13:05 +0400 (Mon, 11 Jun 2007) | 2 lines +r624 | ms | 2007-06-10 22:13:05 +0200 (Sun, 10 Jun 2007) | 2 lines Bump auf Alpha3 ------------------------------------------------------------------------ -r623 | ms | 2007-06-10 23:10:01 +0400 (Sun, 10 Jun 2007) | 7 lines +r623 | ms | 2007-06-10 21:10:01 +0200 (Sun, 10 Jun 2007) | 7 lines Erstmal ein Commit: OpenVPN zurueck auf den Stand des alten gebracht. Wir bevorzugen die stabile Loesung. @@ -1490,17 +1694,17 @@ Snort-Initscript setzt die Berechtigung der PID auf 644. libxslt hinzugefuegt - Benoetigt vom mISDN-Script. ------------------------------------------------------------------------ -r622 | maniacikarus | 2007-06-10 16:17:52 +0400 (Sun, 10 Jun 2007) | 2 lines +r622 | maniacikarus | 2007-06-10 14:17:52 +0200 (Sun, 10 Jun 2007) | 2 lines CGI fuer DHCP gefixt und if Skripte zurueckgesetzt ------------------------------------------------------------------------ -r621 | ms | 2007-06-10 00:53:21 +0400 (Sun, 10 Jun 2007) | 2 lines +r621 | ms | 2007-06-09 22:53:21 +0200 (Sat, 09 Jun 2007) | 2 lines Eine neue Version des vpn-watch von Sven nachgeschoben. ------------------------------------------------------------------------ -r620 | ms | 2007-06-10 00:43:13 +0400 (Sun, 10 Jun 2007) | 6 lines +r620 | ms | 2007-06-09 22:43:13 +0200 (Sat, 09 Jun 2007) | 6 lines Padlock und DMA Patch fuer die VIA Boards hinzugefuegt. Ausgehende Firewall-Script gefixt. @@ -1509,77 +1713,77 @@ VPN-Watch aktualisiert - noch nicht getestet. IPSec sollte nun auch funzen. ------------------------------------------------------------------------ -r619 | maniacikarus | 2007-06-09 14:02:53 +0400 (Sat, 09 Jun 2007) | 3 lines +r619 | maniacikarus | 2007-06-09 12:02:53 +0200 (Sat, 09 Jun 2007) | 3 lines Red active wurde nur bei pptp erstellt -> gefixt dhcp bei ipup und ifdown eingefuegt ------------------------------------------------------------------------ -r618 | casemaster | 2007-06-08 01:33:42 +0400 (Fri, 08 Jun 2007) | 2 lines +r618 | casemaster | 2007-06-07 23:33:42 +0200 (Thu, 07 Jun 2007) | 2 lines Korrekturen bei der Erkennung der Netzwerkkarten am Installer vorgenommen. ------------------------------------------------------------------------ -r617 | maniacikarus | 2007-06-07 22:32:39 +0400 (Thu, 07 Jun 2007) | 2 lines +r617 | maniacikarus | 2007-06-07 20:32:39 +0200 (Thu, 07 Jun 2007) | 2 lines -Ajax Speed Anzeige geändert +Ajax Speed Anzeige ge?\195?\164ndert ------------------------------------------------------------------------ -r616 | ms | 2007-06-07 20:39:54 +0400 (Thu, 07 Jun 2007) | 2 lines +r616 | ms | 2007-06-07 18:39:54 +0200 (Thu, 07 Jun 2007) | 2 lines Ausgehende Firewall aktiviert, kann nun getestet werden. ------------------------------------------------------------------------ -r615 | maniacikarus | 2007-06-07 16:33:20 +0400 (Thu, 07 Jun 2007) | 2 lines +r615 | maniacikarus | 2007-06-07 14:33:20 +0200 (Thu, 07 Jun 2007) | 2 lines Outgoing Firewall CGI geschrieben, Proxy CGI verkleinert ------------------------------------------------------------------------ -r614 | ms | 2007-06-07 16:24:14 +0400 (Thu, 07 Jun 2007) | 4 lines +r614 | ms | 2007-06-07 14:24:14 +0200 (Thu, 07 Jun 2007) | 4 lines IPSec-Downgrade auf 2.4.8-STABLE Outgoing-Firewall quasi fertig gemacht. IPP2P gefixt. ------------------------------------------------------------------------ -r613 | maniacikarus | 2007-06-06 21:50:25 +0400 (Wed, 06 Jun 2007) | 2 lines +r613 | maniacikarus | 2007-06-06 19:50:25 +0200 (Wed, 06 Jun 2007) | 2 lines Squid gefixt damit auch andere auth meachanismen funktionieren ------------------------------------------------------------------------ -r612 | maniacikarus | 2007-06-06 21:09:21 +0400 (Wed, 06 Jun 2007) | 2 lines +r612 | maniacikarus | 2007-06-06 19:09:21 +0200 (Wed, 06 Jun 2007) | 2 lines Viele CGIs geaendert, einige Proxy Dateien hinzugefuegt, iptables aus dem menu geschmissen ------------------------------------------------------------------------ -r611 | casemaster | 2007-06-06 01:24:58 +0400 (Wed, 06 Jun 2007) | 2 lines +r611 | casemaster | 2007-06-05 23:24:58 +0200 (Tue, 05 Jun 2007) | 2 lines -Kleine Änderung beim erstellen der Auswahlzeile im Setup. +Kleine ?\195?\132nderung beim erstellen der Auswahlzeile im Setup. ------------------------------------------------------------------------ -r610 | ms | 2007-06-05 17:44:26 +0400 (Tue, 05 Jun 2007) | 2 lines +r610 | ms | 2007-06-05 15:44:26 +0200 (Tue, 05 Jun 2007) | 2 lines Pakfire erweitert. ------------------------------------------------------------------------ -r609 | ms | 2007-06-05 14:45:16 +0400 (Tue, 05 Jun 2007) | 2 lines +r609 | ms | 2007-06-05 12:45:16 +0200 (Tue, 05 Jun 2007) | 2 lines Nur Buildfixes. ------------------------------------------------------------------------ -r608 | ms | 2007-06-05 04:11:03 +0400 (Tue, 05 Jun 2007) | 4 lines +r608 | ms | 2007-06-05 02:11:03 +0200 (Tue, 05 Jun 2007) | 4 lines Unbenutztes Nash geloescht. Revert der tripwire.cgi mISDN-Tools eingebaut und im Kernel aktualisiert. ------------------------------------------------------------------------ -r607 | maniacikarus | 2007-06-04 23:37:49 +0400 (Mon, 04 Jun 2007) | 2 lines +r607 | maniacikarus | 2007-06-04 21:37:49 +0200 (Mon, 04 Jun 2007) | 2 lines PPOE Skript sollte den kill, CGI Fixes ------------------------------------------------------------------------ -r606 | ms | 2007-06-04 20:50:12 +0400 (Mon, 04 Jun 2007) | 8 lines +r606 | ms | 2007-06-04 18:50:12 +0200 (Mon, 04 Jun 2007) | 8 lines Das kleine AJAX-Bandbreitenmeter gefixt. Zeigte zu hohe Werte aufgrund eines Berechnungsfehlers an und die XML-Schnittstelle wurde nicht korrekt angesprochen. Bootsplash-Bilder entfernt. @@ -1590,54 +1794,54 @@ Clamav-Update. CDRom-Auswurf getestet. ------------------------------------------------------------------------ -r605 | ms | 2007-06-03 02:41:08 +0400 (Sun, 03 Jun 2007) | 2 lines +r605 | ms | 2007-06-03 00:41:08 +0200 (Sun, 03 Jun 2007) | 2 lines Nochmal was neues damit der endlich die CD auswirft... ------------------------------------------------------------------------ -r604 | ms | 2007-06-03 02:00:37 +0400 (Sun, 03 Jun 2007) | 3 lines +r604 | ms | 2007-06-03 00:00:37 +0200 (Sun, 03 Jun 2007) | 3 lines RAID-Erkennung von Sven Nierlein - Danke. (Den altbekannten IP-Conntrack-Patch wieder eingebaut.) ------------------------------------------------------------------------ -r603 | maniacikarus | 2007-06-02 21:03:20 +0400 (Sat, 02 Jun 2007) | 2 lines +r603 | maniacikarus | 2007-06-02 19:03:20 +0200 (Sat, 02 Jun 2007) | 2 lines kleine Aenderungen in der Gui und ein paar Dateien geloescht ------------------------------------------------------------------------ -r602 | ms | 2007-06-02 02:48:42 +0400 (Sat, 02 Jun 2007) | 2 lines +r602 | ms | 2007-06-02 00:48:42 +0200 (Sat, 02 Jun 2007) | 2 lines Kernel-Config gefixt. ------------------------------------------------------------------------ -r601 | ms | 2007-06-02 02:13:16 +0400 (Sat, 02 Jun 2007) | 3 lines +r601 | ms | 2007-06-02 00:13:16 +0200 (Sat, 02 Jun 2007) | 3 lines Den Nettraffic Buildprozess bearbeitet. Ein neues Snort-Initscript, was noch zuende bearbeitet werden muss. ------------------------------------------------------------------------ -r600 | maniacikarus | 2007-06-02 01:29:25 +0400 (Sat, 02 Jun 2007) | 2 lines +r600 | maniacikarus | 2007-06-01 23:29:25 +0200 (Fri, 01 Jun 2007) | 2 lines Pakfire CGI ein bisl erweitert, Index CGI um die DIAL CGI erweitert -> Funktion testen, PPOE Timeout Seconds erweitert ------------------------------------------------------------------------ -r599 | maniacikarus | 2007-06-01 19:29:00 +0400 (Fri, 01 Jun 2007) | 2 lines +r599 | maniacikarus | 2007-06-01 17:29:00 +0200 (Fri, 01 Jun 2007) | 2 lines kleine fixes am nettraffic ------------------------------------------------------------------------ -r598 | ms | 2007-06-01 00:30:13 +0400 (Fri, 01 Jun 2007) | 2 lines +r598 | ms | 2007-05-31 22:30:13 +0200 (Thu, 31 May 2007) | 2 lines Busybox noch umgearbeitet... Sollte jetz die CD auswerfen... ------------------------------------------------------------------------ -r597 | ms | 2007-05-31 17:55:16 +0400 (Thu, 31 May 2007) | 2 lines +r597 | ms | 2007-05-31 15:55:16 +0200 (Thu, 31 May 2007) | 2 lines Grub.conf nachgeliefert. ------------------------------------------------------------------------ -r596 | ms | 2007-05-31 17:54:43 +0400 (Thu, 31 May 2007) | 5 lines +r596 | ms | 2007-05-31 15:54:43 +0200 (Thu, 31 May 2007) | 5 lines Die Partitionen werden nun dynamisch berechnet. Min. 512MB - Max. 2GB - / @@ -1645,67 +1849,67 @@ Min. 512MB - Max. 2GB - / Min. 246MB - Max. 1GB - swap ------------------------------------------------------------------------ -r595 | maniacikarus | 2007-05-30 23:21:47 +0400 (Wed, 30 May 2007) | 2 lines +r595 | maniacikarus | 2007-05-30 21:21:47 +0200 (Wed, 30 May 2007) | 2 lines Net-Traffic aktualisiert ------------------------------------------------------------------------ -r594 | ms | 2007-05-30 23:04:59 +0400 (Wed, 30 May 2007) | 2 lines +r594 | ms | 2007-05-30 21:04:59 +0200 (Wed, 30 May 2007) | 2 lines Kleiner Fix fuer das Erstellen der Ordner auf dem FTP. ------------------------------------------------------------------------ -r593 | ms | 2007-05-30 23:01:59 +0400 (Wed, 30 May 2007) | 2 lines +r593 | ms | 2007-05-30 21:01:59 +0200 (Wed, 30 May 2007) | 2 lines Moeglichkeit im Installer das Dateisystem auszuwaehlen... ------------------------------------------------------------------------ -r592 | maniacikarus | 2007-05-29 23:35:33 +0400 (Tue, 29 May 2007) | 2 lines +r592 | maniacikarus | 2007-05-29 21:35:33 +0200 (Tue, 29 May 2007) | 2 lines Die CGIs nochmal angepasst, MTU Parameter geaendert ------------------------------------------------------------------------ -r591 | maniacikarus | 2007-05-29 13:53:38 +0400 (Tue, 29 May 2007) | 2 lines +r591 | maniacikarus | 2007-05-29 11:53:38 +0200 (Tue, 29 May 2007) | 2 lines Build Error gefixt, config types gefixt, root partition auf 1GB ------------------------------------------------------------------------ -r590 | maniacikarus | 2007-05-28 16:56:02 +0400 (Mon, 28 May 2007) | 2 lines +r590 | maniacikarus | 2007-05-28 14:56:02 +0200 (Mon, 28 May 2007) | 2 lines Firewallgraphen angepasst und uebersetzt ------------------------------------------------------------------------ -r589 | maniacikarus | 2007-05-28 14:58:02 +0400 (Mon, 28 May 2007) | 2 lines +r589 | maniacikarus | 2007-05-28 12:58:02 +0200 (Mon, 28 May 2007) | 2 lines Sprachdateien gefixt ------------------------------------------------------------------------ -r588 | maniacikarus | 2007-05-28 00:14:42 +0400 (Mon, 28 May 2007) | 2 lines +r588 | maniacikarus | 2007-05-27 22:14:42 +0200 (Sun, 27 May 2007) | 2 lines WOL Config Types angepasst, Nettraffic und Firewall Graphs Translations, Graph Directory auf 777 ------------------------------------------------------------------------ -r587 | ms | 2007-05-27 22:12:44 +0400 (Sun, 27 May 2007) | 2 lines +r587 | ms | 2007-05-27 20:12:44 +0200 (Sun, 27 May 2007) | 2 lines Das Intermediate Functional Block Device aktiviert - Alternative zum IMQ-Device. ------------------------------------------------------------------------ -r586 | ms | 2007-05-27 15:13:06 +0400 (Sun, 27 May 2007) | 2 lines +r586 | ms | 2007-05-27 13:13:06 +0200 (Sun, 27 May 2007) | 2 lines Nochn Fix - obs daran gelegen hat? ------------------------------------------------------------------------ -r585 | ms | 2007-05-27 14:52:36 +0400 (Sun, 27 May 2007) | 2 lines +r585 | ms | 2007-05-27 12:52:36 +0200 (Sun, 27 May 2007) | 2 lines Freetype wird gebraucht vom rrdtool. ------------------------------------------------------------------------ -r584 | ms | 2007-05-27 00:44:12 +0400 (Sun, 27 May 2007) | 2 lines +r584 | ms | 2007-05-26 22:44:12 +0200 (Sat, 26 May 2007) | 2 lines Ein Fix zum bauen des XEN-Kernels. ------------------------------------------------------------------------ -r583 | ms | 2007-05-26 23:04:16 +0400 (Sat, 26 May 2007) | 7 lines +r583 | ms | 2007-05-26 21:04:16 +0200 (Sat, 26 May 2007) | 7 lines Die Abhaengigkeitspakete vom Samba erstellt. vsftpd hinzugefuegt... :D Vergebt mir... @@ -1715,62 +1919,62 @@ Bootsplash entfernt. mc-Alias erstellt, sodass der auf der Textkonsole ordentlich zu bedienen ist. ------------------------------------------------------------------------ -r582 | maniacikarus | 2007-05-26 14:26:04 +0400 (Sat, 26 May 2007) | 2 lines +r582 | maniacikarus | 2007-05-26 12:26:04 +0200 (Sat, 26 May 2007) | 2 lines nochmal eine kleine Anpassung damit die resolv.conf bei Benutzung von red auch wieder auf 127.0.0.1 steht falls man vorher mal green only hatte ------------------------------------------------------------------------ -r581 | ms | 2007-05-26 00:41:23 +0400 (Sat, 26 May 2007) | 2 lines +r581 | ms | 2007-05-25 22:41:23 +0200 (Fri, 25 May 2007) | 2 lines Erster Xen-Kernel zum testen... ------------------------------------------------------------------------ -r580 | maniacikarus | 2007-05-25 22:32:07 +0400 (Fri, 25 May 2007) | 2 lines +r580 | maniacikarus | 2007-05-25 20:32:07 +0200 (Fri, 25 May 2007) | 2 lines Funktionen eingebaut, damit bei green only die Gateway und DNS Einstellungen wirksam werden ------------------------------------------------------------------------ -r579 | ms | 2007-05-25 21:06:38 +0400 (Fri, 25 May 2007) | 3 lines +r579 | ms | 2007-05-25 19:06:38 +0200 (Fri, 25 May 2007) | 3 lines Kleiner Fix fuer die pppsetup.cgi und noch n paar andere kleine Sachen... ------------------------------------------------------------------------ -r578 | maniacikarus | 2007-05-24 23:41:13 +0400 (Thu, 24 May 2007) | 2 lines +r578 | maniacikarus | 2007-05-24 21:41:13 +0200 (Thu, 24 May 2007) | 2 lines CPU Graph wieder auf Ticks umgestellt und erweitert ------------------------------------------------------------------------ -r577 | casemaster | 2007-05-23 01:07:50 +0400 (Wed, 23 May 2007) | 3 lines +r577 | casemaster | 2007-05-22 23:07:50 +0200 (Tue, 22 May 2007) | 3 lines -Änderung am Installer/Setup. +?\195?\132nderung am Installer/Setup. "Green only" darf jetzt auch DNS und Gateway setzen. ------------------------------------------------------------------------ -r576 | casemaster | 2007-05-22 23:51:25 +0400 (Tue, 22 May 2007) | 2 lines +r576 | casemaster | 2007-05-22 21:51:25 +0200 (Tue, 22 May 2007) | 2 lines -Weitere Änderungen am Installer/Setup vorgenommen. +Weitere ?\195?\132nderungen am Installer/Setup vorgenommen. ------------------------------------------------------------------------ -r575 | ms | 2007-05-22 23:40:21 +0400 (Tue, 22 May 2007) | 3 lines +r575 | ms | 2007-05-22 21:40:21 +0200 (Tue, 22 May 2007) | 3 lines Treiber fuer 1-Wire-Geraete hinzugefuegt --> Digitemp fuer "Karl S." Schreibt DNS-Server wenn red = static ist. ------------------------------------------------------------------------ -r574 | maniacikarus | 2007-05-22 23:14:06 +0400 (Tue, 22 May 2007) | 2 lines +r574 | maniacikarus | 2007-05-22 21:14:06 +0200 (Tue, 22 May 2007) | 2 lines Nochmal korrigiert und fwhits auf eine Graphenart eingestellt ------------------------------------------------------------------------ -r573 | maniacikarus | 2007-05-22 23:04:48 +0400 (Tue, 22 May 2007) | 4 lines +r573 | maniacikarus | 2007-05-22 21:04:48 +0200 (Tue, 22 May 2007) | 4 lines Graphen Hintergrundfarbe bei Standarttheme auf weiss gesetzt Config Types in der Nettraffic angepasst Erstellung der Week Month und Year Graphen nur noch bei Request ------------------------------------------------------------------------ -r572 | ms | 2007-05-22 19:43:16 +0400 (Tue, 22 May 2007) | 5 lines +r572 | ms | 2007-05-22 17:43:16 +0200 (Tue, 22 May 2007) | 5 lines ISAPNPTOOLS entfernt, da wir kein ISA mehr unterstuetzen. Squid und Samba aktualisiert. @@ -1778,29 +1982,29 @@ Soundtreiber im Kernel eingeschaltet. Time-Server funzt nun auch. ------------------------------------------------------------------------ -r571 | ms | 2007-05-22 18:02:38 +0400 (Tue, 22 May 2007) | 3 lines +r571 | ms | 2007-05-22 16:02:38 +0200 (Tue, 22 May 2007) | 3 lines Das IPSec-Modul laesst sich nun laden. Einige Bugs der Alpha 2 behoben. ------------------------------------------------------------------------ -r570 | maniacikarus | 2007-05-22 00:35:30 +0400 (Tue, 22 May 2007) | 2 lines +r570 | maniacikarus | 2007-05-21 22:35:30 +0200 (Mon, 21 May 2007) | 2 lines Qos Port und Layer7 Rules sind editierbar ------------------------------------------------------------------------ -r569 | ms | 2007-05-21 18:42:44 +0400 (Mon, 21 May 2007) | 3 lines +r569 | ms | 2007-05-21 16:42:44 +0200 (Mon, 21 May 2007) | 3 lines Alpha2 - Aenderungen von Arne F. eingepflegt. ...sonst noch kleine Fixes. ------------------------------------------------------------------------ -r568 | maniacikarus | 2007-05-20 20:11:15 +0400 (Sun, 20 May 2007) | 2 lines +r568 | maniacikarus | 2007-05-20 18:11:15 +0200 (Sun, 20 May 2007) | 2 lines nochmal 2 kleine fixes im Stack ------------------------------------------------------------------------ -r567 | maniacikarus | 2007-05-20 18:25:10 +0400 (Sun, 20 May 2007) | 5 lines +r567 | maniacikarus | 2007-05-20 16:25:10 +0200 (Sun, 20 May 2007) | 5 lines makegraphs umgebaut, sodass nurnoch rrd daten geschrieben werden die graphen werden dynamisch durch die jeweiligen Seiten geladen adurch wird die Grundlast @@ -1808,310 +2012,310 @@ des Systems verringert, ausserdem noch den parameter iowait eingebaut und die hd graphen repariert ------------------------------------------------------------------------ -r566 | ms | 2007-05-19 16:19:35 +0400 (Sat, 19 May 2007) | 2 lines +r566 | ms | 2007-05-19 14:19:35 +0200 (Sat, 19 May 2007) | 2 lines Noch ein paar kleine Aenderungen wegen dem mkinitcpio... ------------------------------------------------------------------------ -r565 | ms | 2007-05-19 12:49:49 +0400 (Sat, 19 May 2007) | 2 lines +r565 | ms | 2007-05-19 10:49:49 +0200 (Sat, 19 May 2007) | 2 lines 2 Buildfixes ------------------------------------------------------------------------ -r564 | maniacikarus | 2007-05-19 11:26:13 +0400 (Sat, 19 May 2007) | 2 lines +r564 | maniacikarus | 2007-05-19 09:26:13 +0200 (Sat, 19 May 2007) | 2 lines makegraphs wegen config types und besserer optik angepasst ------------------------------------------------------------------------ -r563 | maniacikarus | 2007-05-18 21:32:42 +0400 (Fri, 18 May 2007) | 2 lines +r563 | maniacikarus | 2007-05-18 19:32:42 +0200 (Fri, 18 May 2007) | 2 lines Qos CGI vom Meister angefasst und Quellcode neu ausgewuerfelt ------------------------------------------------------------------------ -r562 | maniacikarus | 2007-05-18 20:48:08 +0400 (Fri, 18 May 2007) | 3 lines +r562 | maniacikarus | 2007-05-18 18:48:08 +0200 (Fri, 18 May 2007) | 3 lines Config types auf ist Zustand gebogen ... hoffentlich ... header.pl von doppelten funktionen befreit die schon in der genereal stehen ------------------------------------------------------------------------ -r561 | ms | 2007-05-18 20:00:20 +0400 (Fri, 18 May 2007) | 3 lines +r561 | ms | 2007-05-18 18:00:20 +0200 (Fri, 18 May 2007) | 3 lines Die IDE/SCSI/SATA/USB-Erkennung erstellt nun schoene Ramdisks :D Kernel ist jetzt noch modularer, da keine IDE/FS-Treiber vorhanden sind. ------------------------------------------------------------------------ -r560 | maniacikarus | 2007-05-17 20:54:15 +0400 (Thu, 17 May 2007) | 2 lines +r560 | maniacikarus | 2007-05-17 18:54:15 +0200 (Thu, 17 May 2007) | 2 lines Quasi fast alle cgis von den fixen header farben befreit ------------------------------------------------------------------------ -r559 | maniacikarus | 2007-05-17 14:13:56 +0400 (Thu, 17 May 2007) | 3 lines +r559 | maniacikarus | 2007-05-17 12:13:56 +0200 (Thu, 17 May 2007) | 3 lines neues Theme hinzugefuegt, geloeschtes icons wieder hinzugefuegt makegraphs themeable gemacht, maktegraph swap diagramm gefixt ------------------------------------------------------------------------ -r558 | maniacikarus | 2007-05-13 15:53:36 +0400 (Sun, 13 May 2007) | 2 lines +r558 | maniacikarus | 2007-05-13 13:53:36 +0200 (Sun, 13 May 2007) | 2 lines Proxy Portrange beschraenkt Port darf nicht 444 222 81 oder 53 sein und muss zwischen 1 und 65535 ------------------------------------------------------------------------ -r557 | maniacikarus | 2007-05-13 14:09:49 +0400 (Sun, 13 May 2007) | 2 lines +r557 | maniacikarus | 2007-05-13 12:09:49 +0200 (Sun, 13 May 2007) | 2 lines kleine optische Anpassung der VPN Stati ------------------------------------------------------------------------ -r556 | casemaster | 2007-05-13 02:00:50 +0400 (Sun, 13 May 2007) | 2 lines +r556 | casemaster | 2007-05-13 00:00:50 +0200 (Sun, 13 May 2007) | 2 lines -Änderungen am Installer/Setup vorgenommen. ISDN wird erstmal nicht über den Installer abgefragt. +?\195?\132nderungen am Installer/Setup vorgenommen. ISDN wird erstmal nicht ?\195?\188ber den Installer abgefragt. ------------------------------------------------------------------------ -r555 | maniacikarus | 2007-05-13 01:36:36 +0400 (Sun, 13 May 2007) | 2 lines +r555 | maniacikarus | 2007-05-12 23:36:36 +0200 (Sat, 12 May 2007) | 2 lines Design der Fehlermeldungen nochmal etwas angepasst ------------------------------------------------------------------------ -r554 | maniacikarus | 2007-05-12 22:55:01 +0400 (Sat, 12 May 2007) | 2 lines +r554 | maniacikarus | 2007-05-12 20:55:01 +0200 (Sat, 12 May 2007) | 2 lines Doch glatt das Bildchen vergessen ... ------------------------------------------------------------------------ -r553 | maniacikarus | 2007-05-12 22:52:34 +0400 (Sat, 12 May 2007) | 3 lines +r553 | maniacikarus | 2007-05-12 20:52:34 +0200 (Sat, 12 May 2007) | 3 lines Proxy.cgi von den IPCop Error Pages befreit, da nicht existent ausserdem gleich mal unsere eigenen Errorspages gebaut :D ------------------------------------------------------------------------ -r552 | ms | 2007-05-12 15:32:08 +0400 (Sat, 12 May 2007) | 3 lines +r552 | ms | 2007-05-12 13:32:08 +0200 (Sat, 12 May 2007) | 3 lines Timectrl geschrieben. .svnignore hinzugefuegt. ------------------------------------------------------------------------ -r551 | ms | 2007-05-12 14:16:01 +0400 (Sat, 12 May 2007) | 3 lines +r551 | ms | 2007-05-12 12:16:01 +0200 (Sat, 12 May 2007) | 3 lines Einige Dateien hatten perm:755... Das sollte im SVN nicht so sein ausser fuer unsere make.sh. ------------------------------------------------------------------------ -r550 | maniacikarus | 2007-05-11 22:48:57 +0400 (Fri, 11 May 2007) | 3 lines +r550 | maniacikarus | 2007-05-11 20:48:57 +0200 (Fri, 11 May 2007) | 3 lines Die Firewallgraphen zeigen die Farben jetzt richtig und sind endlich auch vollstaendig themeabke ------------------------------------------------------------------------ -r549 | ms | 2007-05-11 01:36:03 +0400 (Fri, 11 May 2007) | 3 lines +r549 | ms | 2007-05-10 23:36:03 +0200 (Thu, 10 May 2007) | 3 lines IPSec/OpenSWAN-Update UTF8-Patch im Kernel. ------------------------------------------------------------------------ -r548 | ms | 2007-05-09 22:10:57 +0400 (Wed, 09 May 2007) | 2 lines +r548 | ms | 2007-05-09 20:10:57 +0200 (Wed, 09 May 2007) | 2 lines Unsere Konsole ist jetzt UTF8-Fit. ------------------------------------------------------------------------ -r547 | ms | 2007-05-09 14:27:24 +0400 (Wed, 09 May 2007) | 3 lines +r547 | ms | 2007-05-09 12:27:24 +0200 (Wed, 09 May 2007) | 3 lines Unbenutzte Icons geloescht. Vorruebergehend auch das blaue Theme... ------------------------------------------------------------------------ -r546 | ms | 2007-05-09 13:53:36 +0400 (Wed, 09 May 2007) | 4 lines +r546 | ms | 2007-05-09 11:53:36 +0200 (Wed, 09 May 2007) | 4 lines Ein Paar ganz unnoetige Scripts geloescht. Einen String im Installer verkuerzt. Einen Symlink der libnewt* vergessen. ------------------------------------------------------------------------ -r545 | ms | 2007-05-09 13:27:05 +0400 (Wed, 09 May 2007) | 4 lines +r545 | ms | 2007-05-09 11:27:05 +0200 (Wed, 09 May 2007) | 4 lines JFFS2-Dateisystem hinzugefuegt fuer eventuelle Flash-Version der Firewall. Installer braucht nichtmehr die Font einzustellen. Oinkmasterscript war nicht in der ISO. ------------------------------------------------------------------------ -r544 | ms | 2007-05-09 01:28:00 +0400 (Wed, 09 May 2007) | 2 lines +r544 | ms | 2007-05-08 23:28:00 +0200 (Tue, 08 May 2007) | 2 lines Noch zwei Patches geloescht. ------------------------------------------------------------------------ -r543 | ms | 2007-05-09 01:26:06 +0400 (Wed, 09 May 2007) | 2 lines +r543 | ms | 2007-05-08 23:26:06 +0200 (Tue, 08 May 2007) | 2 lines Slang und Newt gepatcht um den Installer endlich in UTF8 zu betreiben. ------------------------------------------------------------------------ -r542 | ms | 2007-05-07 23:51:13 +0400 (Mon, 07 May 2007) | 2 lines +r542 | ms | 2007-05-07 21:51:13 +0200 (Mon, 07 May 2007) | 2 lines Wieso sind denn Amavisd-new und Spamassassin in der ISO gelandet? ------------------------------------------------------------------------ -r541 | ms | 2007-05-07 21:29:03 +0400 (Mon, 07 May 2007) | 2 lines +r541 | ms | 2007-05-07 19:29:03 +0200 (Mon, 07 May 2007) | 2 lines Temporaere Dateien entfernt. ------------------------------------------------------------------------ -r540 | ms | 2007-05-07 21:20:46 +0400 (Mon, 07 May 2007) | 4 lines +r540 | ms | 2007-05-07 19:20:46 +0200 (Mon, 07 May 2007) | 4 lines Clamav-Update Hardwareinformationen fuer Kudzu hinzugefuegt. dhcpctrl-Datei erstellt. ------------------------------------------------------------------------ -r539 | ms | 2007-05-07 03:41:49 +0400 (Mon, 07 May 2007) | 2 lines +r539 | ms | 2007-05-07 01:41:49 +0200 (Mon, 07 May 2007) | 2 lines Rootfiles noch geloescht. ------------------------------------------------------------------------ -r538 | ms | 2007-05-07 02:21:48 +0400 (Mon, 07 May 2007) | 2 lines +r538 | ms | 2007-05-07 00:21:48 +0200 (Mon, 07 May 2007) | 2 lines Einige Builderrors aufgrund der entfernten Pakete gefunden. ------------------------------------------------------------------------ -r537 | ms | 2007-05-06 22:02:18 +0400 (Sun, 06 May 2007) | 2 lines +r537 | ms | 2007-05-06 20:02:18 +0200 (Sun, 06 May 2007) | 2 lines Wrapper eingebaut zur Verwendung von URL-Filter und Update-Booster zur gleichen Zeit. ------------------------------------------------------------------------ -r536 | ms | 2007-05-06 21:53:16 +0400 (Sun, 06 May 2007) | 2 lines +r536 | ms | 2007-05-06 19:53:16 +0200 (Sun, 06 May 2007) | 2 lines Pakfire Fixes. ------------------------------------------------------------------------ -r535 | ms | 2007-05-06 19:28:50 +0400 (Sun, 06 May 2007) | 2 lines +r535 | ms | 2007-05-06 17:28:50 +0200 (Sun, 06 May 2007) | 2 lines Ueberfluessige Pakete entfernt. ------------------------------------------------------------------------ -r534 | ms | 2007-05-06 19:11:01 +0400 (Sun, 06 May 2007) | 4 lines +r534 | ms | 2007-05-06 17:11:01 +0200 (Sun, 06 May 2007) | 4 lines Einige Fixes fuer den Paketmanager. ISA PnP aus Kernel entfernt. Defaultconf fuer Clamav. ------------------------------------------------------------------------ -r533 | maniacikarus | 2007-05-06 14:54:38 +0400 (Sun, 06 May 2007) | 2 lines +r533 | maniacikarus | 2007-05-06 12:54:38 +0200 (Sun, 06 May 2007) | 2 lines geladene Module aus der Systemuebersicht geloescht ------------------------------------------------------------------------ -r532 | ms | 2007-05-06 03:46:42 +0400 (Sun, 06 May 2007) | 3 lines +r532 | ms | 2007-05-06 01:46:42 +0200 (Sun, 06 May 2007) | 3 lines Meta-Dateien werden nicht verschluesselt. Statische IPs fuer die rote Schnittstelle funzen nun. ------------------------------------------------------------------------ -r531 | ms | 2007-05-06 00:18:27 +0400 (Sun, 06 May 2007) | 2 lines +r531 | ms | 2007-05-05 22:18:27 +0200 (Sat, 05 May 2007) | 2 lines Pakfire Installationsfixes und AJAX-Speedmeter. ------------------------------------------------------------------------ -r530 | ms | 2007-05-05 17:53:33 +0400 (Sat, 05 May 2007) | 4 lines +r530 | ms | 2007-05-05 15:53:33 +0200 (Sat, 05 May 2007) | 4 lines Packager finalisiert. Cronjobs angepasst, falls die Maschine nicht zu der Zeit (meistens nachts) lief. Erste Versionen der Tripwire und Samba-Pakete zum testen. ------------------------------------------------------------------------ -r529 | ms | 2007-05-05 15:13:17 +0400 (Sat, 05 May 2007) | 2 lines +r529 | ms | 2007-05-05 13:13:17 +0200 (Sat, 05 May 2007) | 2 lines Kernelupdate auf 2.6.16.50 ------------------------------------------------------------------------ -r528 | maniacikarus | 2007-05-05 00:31:15 +0400 (Sat, 05 May 2007) | 2 lines +r528 | maniacikarus | 2007-05-04 22:31:15 +0200 (Fri, 04 May 2007) | 2 lines Viele kleine Schnheitsfehler in einigen CGIs angepasst ------------------------------------------------------------------------ -r527 | maniacikarus | 2007-05-04 23:37:59 +0400 (Fri, 04 May 2007) | 2 lines +r527 | maniacikarus | 2007-05-04 21:37:59 +0200 (Fri, 04 May 2007) | 2 lines fixes in Samba und Korrekturen der langs ------------------------------------------------------------------------ -r526 | ms | 2007-05-04 17:41:48 +0400 (Fri, 04 May 2007) | 2 lines +r526 | ms | 2007-05-04 15:41:48 +0200 (Fri, 04 May 2007) | 2 lines Fold hinzugefuegt. ------------------------------------------------------------------------ -r525 | ms | 2007-05-04 17:09:57 +0400 (Fri, 04 May 2007) | 2 lines +r525 | ms | 2007-05-04 15:09:57 +0200 (Fri, 04 May 2007) | 2 lines Unser Paketmanager... ------------------------------------------------------------------------ -r524 | ms | 2007-05-04 16:25:11 +0400 (Fri, 04 May 2007) | 2 lines +r524 | ms | 2007-05-04 14:25:11 +0200 (Fri, 04 May 2007) | 2 lines Snort Fixes. ------------------------------------------------------------------------ -r523 | linuxadmin | 2007-05-04 15:51:40 +0400 (Fri, 04 May 2007) | 2 lines +r523 | linuxadmin | 2007-05-04 13:51:40 +0200 (Fri, 04 May 2007) | 2 lines Das Entwickler Team angepasst ------------------------------------------------------------------------ -r522 | linuxadmin | 2007-05-04 15:42:32 +0400 (Fri, 04 May 2007) | 2 lines +r522 | linuxadmin | 2007-05-04 13:42:32 +0200 (Fri, 04 May 2007) | 2 lines Einige kleine optische Anpassungen ------------------------------------------------------------------------ -r521 | ms | 2007-05-04 03:47:46 +0400 (Fri, 04 May 2007) | 2 lines +r521 | ms | 2007-05-04 01:47:46 +0200 (Fri, 04 May 2007) | 2 lines Test - Tripwire. ------------------------------------------------------------------------ -r520 | linuxadmin | 2007-05-04 03:39:11 +0400 (Fri, 04 May 2007) | 2 lines +r520 | linuxadmin | 2007-05-04 01:39:11 +0200 (Fri, 04 May 2007) | 2 lines Snortsnarf hinzugefuegt. ------------------------------------------------------------------------ -r519 | maniacikarus | 2007-05-04 01:26:52 +0400 (Fri, 04 May 2007) | 2 lines +r519 | maniacikarus | 2007-05-03 23:26:52 +0200 (Thu, 03 May 2007) | 2 lines Bugfixes in Samba und Sambactrl ------------------------------------------------------------------------ -r518 | ms | 2007-05-03 22:25:22 +0400 (Thu, 03 May 2007) | 2 lines +r518 | ms | 2007-05-03 20:25:22 +0200 (Thu, 03 May 2007) | 2 lines Snort Oberflaeche erweitert. ------------------------------------------------------------------------ -r517 | ms | 2007-05-03 21:06:13 +0400 (Thu, 03 May 2007) | 2 lines +r517 | ms | 2007-05-03 19:06:13 +0200 (Thu, 03 May 2007) | 2 lines Snort-Fixes ------------------------------------------------------------------------ -r516 | ms | 2007-05-03 11:49:22 +0400 (Thu, 03 May 2007) | 2 lines +r516 | ms | 2007-05-03 09:49:22 +0200 (Thu, 03 May 2007) | 2 lines Tripwire aktualisiert. ------------------------------------------------------------------------ -r515 | casemaster | 2007-05-03 02:32:02 +0400 (Thu, 03 May 2007) | 2 lines +r515 | casemaster | 2007-05-03 00:32:02 +0200 (Thu, 03 May 2007) | 2 lines Neue Netzwerkdialoge sind zum ersten Test verfuegbar. ------------------------------------------------------------------------ -r514 | linuxadmin | 2007-05-02 02:29:15 +0400 (Wed, 02 May 2007) | 9 lines +r514 | linuxadmin | 2007-05-02 00:29:15 +0200 (Wed, 02 May 2007) | 9 lines -Der Oinkmaster für Snort ist nun erstmal unter /etc/snort/oinkmaster2.0 abgelegt +Der Oinkmaster f?\195?\188r Snort ist nun erstmal unter /etc/snort/oinkmaster2.0 abgelegt Wenn jemand sich bei Snort registriert hat, muss dieses unter oinkmaster2.0/oink -code.txt abgelegt werden. Die Rules können dann mit dem Script oinkmaster.update - abgeglichen werden. Dieses Script kann dann später vom Webserver gestartet werd -en, das müssen wir dann noch anpassen, wenn das Interface eingerichtet wird. +code.txt abgelegt werden. Die Rules k?\195?\182nnen dann mit dem Script oinkmaster.update + abgeglichen werden. Dieses Script kann dann sp?\195?\164ter vom Webserver gestartet werd +en, das m?\195?\188ssen wir dann noch anpassen, wenn das Interface eingerichtet wird. Start und Stop ist als init Script eingerichtet. ------------------------------------------------------------------------ -r513 | ms | 2007-05-02 02:04:01 +0400 (Wed, 02 May 2007) | 3 lines +r513 | ms | 2007-05-02 00:04:01 +0200 (Wed, 02 May 2007) | 3 lines Clamav-Fixes. Clamavctrl gebaut & Initscript geschrieben. ------------------------------------------------------------------------ -r512 | ms | 2007-05-02 00:35:00 +0400 (Wed, 02 May 2007) | 2 lines +r512 | ms | 2007-05-01 22:35:00 +0200 (Tue, 01 May 2007) | 2 lines Noch ein fix, SMART-Status-Anzeige geht! ------------------------------------------------------------------------ -r511 | ms | 2007-05-02 00:23:13 +0400 (Wed, 02 May 2007) | 5 lines +r511 | ms | 2007-05-01 22:23:13 +0200 (Tue, 01 May 2007) | 5 lines Paketmanagement umgeschrieben, GPG-Signatur jetzt moeglich. Noch im Teststadium - Clamav ist das Testpaket. @@ -2119,136 +2323,136 @@ Fixes in den neuen Statusseiten und Proxysteuerung. Mkflash-Scripte entfernt. (Frag mich wozu die da ueberhaupt waren...) ------------------------------------------------------------------------ -r510 | ms | 2007-05-01 01:20:20 +0400 (Tue, 01 May 2007) | 2 lines +r510 | ms | 2007-04-30 23:20:20 +0200 (Mon, 30 Apr 2007) | 2 lines Neue Proxysteuerung. ------------------------------------------------------------------------ -r509 | ms | 2007-04-30 17:25:32 +0400 (Mon, 30 Apr 2007) | 2 lines +r509 | ms | 2007-04-30 15:25:32 +0200 (Mon, 30 Apr 2007) | 2 lines Diverse Fixes. ------------------------------------------------------------------------ -r508 | ms | 2007-04-29 09:30:18 +0400 (Sun, 29 Apr 2007) | 1 line +r508 | ms | 2007-04-29 07:30:18 +0200 (Sun, 29 Apr 2007) | 1 line Nochmals die IPCop-Quellen geloescht ------------------------------------------------------------------------ -r507 | ms | 2007-04-28 18:49:02 +0400 (Sat, 28 Apr 2007) | 3 lines +r507 | ms | 2007-04-28 16:49:02 +0200 (Sat, 28 Apr 2007) | 3 lines IPCop-Quellen entfernt, da wir sie eh nicht nutzen und uns von diesem Projekt distanzieren wollen. ------------------------------------------------------------------------ -r506 | ms | 2007-04-28 18:22:19 +0400 (Sat, 28 Apr 2007) | 3 lines +r506 | ms | 2007-04-28 16:22:19 +0200 (Sat, 28 Apr 2007) | 3 lines Nagios rausgeschmissen... Ein paar statische Libs entfernt. ------------------------------------------------------------------------ -r505 | ms | 2007-04-28 13:01:53 +0400 (Sat, 28 Apr 2007) | 3 lines +r505 | ms | 2007-04-28 11:01:53 +0200 (Sat, 28 Apr 2007) | 3 lines Hwinfo-Hardwareerkennung entfernt. Alte Paketdateien entfernt, da der Packager neu geschrieben wird. ------------------------------------------------------------------------ -r504 | ms | 2007-04-26 16:27:41 +0400 (Thu, 26 Apr 2007) | 4 lines +r504 | ms | 2007-04-26 14:27:41 +0200 (Thu, 26 Apr 2007) | 4 lines Signierten GPG-Schluessel importiert. smartctrl geschrieben. Passwort kann nichtmehr im Webinterface geaendert werden. ------------------------------------------------------------------------ -r503 | ms | 2007-04-26 12:12:20 +0400 (Thu, 26 Apr 2007) | 2 lines +r503 | ms | 2007-04-26 10:12:20 +0200 (Thu, 26 Apr 2007) | 2 lines Ueberarbeitung der Status-Seiten. ------------------------------------------------------------------------ -r502 | maniacikarus | 2007-04-22 12:43:35 +0400 (Sun, 22 Apr 2007) | 4 lines +r502 | maniacikarus | 2007-04-22 10:43:35 +0200 (Sun, 22 Apr 2007) | 4 lines Samba vorbereitet fuer CUPS Rewrite der internen Verarbeitung mit Hashes und Sub Funktionen Erweiterung der ausgehenden Firewall um predefined services ------------------------------------------------------------------------ -r501 | maniacikarus | 2007-04-18 22:10:00 +0400 (Wed, 18 Apr 2007) | 3 lines +r501 | maniacikarus | 2007-04-18 20:10:00 +0200 (Wed, 18 Apr 2007) | 3 lines Tripwire fertig fuer die BETA iostat auf der Statusseite eingebaut ------------------------------------------------------------------------ -r500 | ms | 2007-04-18 18:25:21 +0400 (Wed, 18 Apr 2007) | 3 lines +r500 | ms | 2007-04-18 16:25:21 +0200 (Wed, 18 Apr 2007) | 3 lines Tripwirectrl gefixt. Develoption zum batch-Befehl hinzugefuegt. ------------------------------------------------------------------------ -r499 | maniacikarus | 2007-04-13 23:57:32 +0400 (Fri, 13 Apr 2007) | 2 lines +r499 | maniacikarus | 2007-04-13 21:57:32 +0200 (Fri, 13 Apr 2007) | 2 lines Wie immer Samba und Tripwirek> ------------------------------------------------------------------------ -r498 | ms | 2007-04-13 01:55:51 +0400 (Fri, 13 Apr 2007) | 2 lines +r498 | ms | 2007-04-12 23:55:51 +0200 (Thu, 12 Apr 2007) | 2 lines Calamaris-Proxy-Logdatei-Analyzer eingebaut. ------------------------------------------------------------------------ -r497 | maniacikarus | 2007-04-13 01:01:15 +0400 (Fri, 13 Apr 2007) | 2 lines +r497 | maniacikarus | 2007-04-12 23:01:15 +0200 (Thu, 12 Apr 2007) | 2 lines -Viele kleine Änderungen an Samba und Tripwire +Viele kleine ?\195?\132nderungen an Samba und Tripwire ------------------------------------------------------------------------ -r496 | ms | 2007-04-12 23:07:47 +0400 (Thu, 12 Apr 2007) | 2 lines +r496 | ms | 2007-04-12 21:07:47 +0200 (Thu, 12 Apr 2007) | 2 lines Kleine Fixes. ------------------------------------------------------------------------ -r495 | ms | 2007-04-12 20:28:06 +0400 (Thu, 12 Apr 2007) | 3 lines +r495 | ms | 2007-04-12 18:28:06 +0200 (Thu, 12 Apr 2007) | 3 lines Connections.cgi neu geschrieben. URL-Filter aktualisiert. ------------------------------------------------------------------------ -r494 | ms | 2007-04-12 18:06:59 +0400 (Thu, 12 Apr 2007) | 2 lines +r494 | ms | 2007-04-12 16:06:59 +0200 (Thu, 12 Apr 2007) | 2 lines "Update Booster" fertiggestellt und getestet. ------------------------------------------------------------------------ -r493 | ms | 2007-04-12 03:25:47 +0400 (Thu, 12 Apr 2007) | 3 lines +r493 | ms | 2007-04-12 01:25:47 +0200 (Thu, 12 Apr 2007) | 3 lines Noch ein Paar Komfortfunktionen. Zaehler wird automatisch zuruekgesetzt. ------------------------------------------------------------------------ -r492 | ms | 2007-04-12 03:04:45 +0400 (Thu, 12 Apr 2007) | 3 lines +r492 | ms | 2007-04-12 01:04:45 +0200 (Thu, 12 Apr 2007) | 3 lines Zeitanzeige fuer PPP-Verbindungen... Samba-User hinzugefuegt. ------------------------------------------------------------------------ -r491 | ms | 2007-04-12 00:48:58 +0400 (Thu, 12 Apr 2007) | 4 lines +r491 | ms | 2007-04-11 22:48:58 +0200 (Wed, 11 Apr 2007) | 4 lines Festplattenerkennung ueberarbeitet. Installationssystem verkleinert. Letzte Tripwirectrl. ------------------------------------------------------------------------ -r490 | maniacikarus | 2007-04-11 14:19:22 +0400 (Wed, 11 Apr 2007) | 2 lines +r490 | maniacikarus | 2007-04-11 12:19:22 +0200 (Wed, 11 Apr 2007) | 2 lines MTU MRU einstellbar bei PPoE ------------------------------------------------------------------------ -r489 | ms | 2007-04-11 12:14:59 +0400 (Wed, 11 Apr 2007) | 2 lines +r489 | ms | 2007-04-11 10:14:59 +0200 (Wed, 11 Apr 2007) | 2 lines Saemtliche unbenutzte Patches aus dem Repository geworfen. ------------------------------------------------------------------------ -r488 | ms | 2007-04-11 02:01:20 +0400 (Wed, 11 Apr 2007) | 3 lines +r488 | ms | 2007-04-11 00:01:20 +0200 (Wed, 11 Apr 2007) | 3 lines Neuen Tux von Alex bekommen! Merci beaucoup :D Ein bisschen Tripwire aufgeraeumt. Leere Dateien sollten nicht ins Repository :D ------------------------------------------------------------------------ -r487 | maniacikarus | 2007-04-10 22:39:44 +0400 (Tue, 10 Apr 2007) | 5 lines +r487 | maniacikarus | 2007-04-10 20:39:44 +0200 (Tue, 10 Apr 2007) | 5 lines Tripwire Gui integrierto> Tripwire Controll Datei geschrieben @@ -2256,127 +2460,127 @@ Weitere Anpassungen am Sambapaket Tripwire Sourcen ins LFS genommen ------------------------------------------------------------------------ -r486 | ms | 2007-04-10 20:25:56 +0400 (Tue, 10 Apr 2007) | 4 lines +r486 | ms | 2007-04-10 18:25:56 +0200 (Tue, 10 Apr 2007) | 4 lines Wir kehren zurueck zu Kudzu, da hwinfo noch mehr Aerger macht. sort_strings.pl erweitert damit er Umlaute automatisch kodiert. Tripwire und Sysstat (sar) hinzugefuegt. ------------------------------------------------------------------------ -r485 | ms | 2007-04-10 13:32:20 +0400 (Tue, 10 Apr 2007) | 4 lines +r485 | ms | 2007-04-10 11:32:20 +0200 (Tue, 10 Apr 2007) | 4 lines Padlock-Modul aktiviert fuer VIA Epia Boards FAT Dateisystem fuer "Europa" angepasst Netzwerkerkennung durchgearbeitet ------------------------------------------------------------------------ -r484 | ms | 2007-04-05 23:25:59 +0400 (Thu, 05 Apr 2007) | 3 lines +r484 | ms | 2007-04-05 21:25:59 +0200 (Thu, 05 Apr 2007) | 3 lines Beta der Netzwerkdialoge. Ueberfluessige Buildscripts noch geloescht. ------------------------------------------------------------------------ -r483 | maniacikarus | 2007-04-05 23:04:25 +0400 (Thu, 05 Apr 2007) | 3 lines +r483 | maniacikarus | 2007-04-05 21:04:25 +0200 (Thu, 05 Apr 2007) | 3 lines In der Samba.cgi einige Icons ausgetauscht smbpasswd eingebunden ------------------------------------------------------------------------ -r482 | ms | 2007-04-05 00:14:15 +0400 (Thu, 05 Apr 2007) | 2 lines +r482 | ms | 2007-04-04 22:14:15 +0200 (Wed, 04 Apr 2007) | 2 lines Das Netzwerkscript erlaubt es jetzt nur einzelne Netze neu zu starten. ------------------------------------------------------------------------ -r481 | ms | 2007-04-04 21:27:58 +0400 (Wed, 04 Apr 2007) | 2 lines +r481 | ms | 2007-04-04 19:27:58 +0200 (Wed, 04 Apr 2007) | 2 lines General-Fuctions gefixt, da der DHCP-Client die Strings mit einigen Leerstellen davor speichert. ------------------------------------------------------------------------ -r480 | ms | 2007-04-04 16:55:38 +0400 (Wed, 04 Apr 2007) | 3 lines +r480 | ms | 2007-04-04 14:55:38 +0200 (Wed, 04 Apr 2007) | 3 lines Netzwerkscripts erweitert. Sprachsdateien aktualisiert, Menue fuer Firewallloggraphen hinzugefuegt. ------------------------------------------------------------------------ -r479 | maniacikarus | 2007-04-04 00:53:31 +0400 (Wed, 04 Apr 2007) | 4 lines +r479 | maniacikarus | 2007-04-03 22:53:31 +0200 (Tue, 03 Apr 2007) | 4 lines Samba CGI 2sprachig DE und ENG Anpassung an der Samba Controll Datei -Tango Icons hinzugefügt +Tango Icons hinzugef?\195?\188gt ------------------------------------------------------------------------ -r478 | ms | 2007-04-03 23:55:47 +0400 (Tue, 03 Apr 2007) | 2 lines +r478 | ms | 2007-04-03 21:55:47 +0200 (Tue, 03 Apr 2007) | 2 lines BWM-NG hinzugefuegt ------------------------------------------------------------------------ -r477 | ms | 2007-04-03 22:58:19 +0400 (Tue, 03 Apr 2007) | 2 lines +r477 | ms | 2007-04-03 20:58:19 +0200 (Tue, 03 Apr 2007) | 2 lines Die letzten Quellcodepakete vom IPCop hinzugefuegt. ------------------------------------------------------------------------ -r476 | ms | 2007-04-03 22:52:26 +0400 (Tue, 03 Apr 2007) | 3 lines +r476 | ms | 2007-04-03 20:52:26 +0200 (Tue, 03 Apr 2007) | 3 lines Tag von SVN295 erstellt, da das die letzte funktionierende Version mit Kernel 2.4 ist. ------------------------------------------------------------------------ -r475 | ms | 2007-04-03 22:41:59 +0400 (Tue, 03 Apr 2007) | 3 lines +r475 | ms | 2007-04-03 20:41:59 +0200 (Tue, 03 Apr 2007) | 3 lines Farbiger Bash-Prompt. PPPoE-Script zur Einwahl. ------------------------------------------------------------------------ -r474 | maniacikarus | 2007-03-31 17:26:25 +0400 (Sat, 31 Mar 2007) | 4 lines +r474 | maniacikarus | 2007-03-31 15:26:25 +0200 (Sat, 31 Mar 2007) | 4 lines Samba Status und Logauswertung fertiggestelllt ausserdem eine Menge Codefixes -einige Icons eingefügt +einige Icons eingef?\195?\188gt ------------------------------------------------------------------------ -r473 | ms | 2007-03-30 00:10:53 +0400 (Fri, 30 Mar 2007) | 2 lines +r473 | ms | 2007-03-29 22:10:53 +0200 (Thu, 29 Mar 2007) | 2 lines Netzwerkbeta-Bugfixes... ------------------------------------------------------------------------ -r472 | maniacikarus | 2007-03-29 23:50:28 +0400 (Thu, 29 Mar 2007) | 3 lines +r472 | maniacikarus | 2007-03-29 21:50:28 +0200 (Thu, 29 Mar 2007) | 3 lines Upnp fast fertig gestellt zumindest was Web und Ctrl Datei angeht ------------------------------------------------------------------------ -r471 | ms | 2007-03-29 22:18:27 +0400 (Thu, 29 Mar 2007) | 2 lines +r471 | ms | 2007-03-29 20:18:27 +0200 (Thu, 29 Mar 2007) | 2 lines Neue Netzwerkerkennung-Beta ------------------------------------------------------------------------ -r470 | ms | 2007-03-28 22:59:56 +0400 (Wed, 28 Mar 2007) | 2 lines +r470 | ms | 2007-03-28 20:59:56 +0200 (Wed, 28 Mar 2007) | 2 lines Devel Version immer bauen lassen... ------------------------------------------------------------------------ -r469 | maniacikarus | 2007-03-28 21:33:12 +0400 (Wed, 28 Mar 2007) | 3 lines +r469 | maniacikarus | 2007-03-28 19:33:12 +0200 (Wed, 28 Mar 2007) | 3 lines kleine fixes in den firewalllogs neues feature in der dhcp.cgi ------------------------------------------------------------------------ -r468 | ms | 2007-03-28 19:48:45 +0400 (Wed, 28 Mar 2007) | 2 lines +r468 | ms | 2007-03-28 17:48:45 +0200 (Wed, 28 Mar 2007) | 2 lines Mal die von Maniac geloeschten Aenderungen wieder in die status.cgi gepackt. ------------------------------------------------------------------------ -r467 | maniacikarus | 2007-03-27 22:52:07 +0400 (Tue, 27 Mar 2007) | 2 lines +r467 | maniacikarus | 2007-03-27 20:52:07 +0200 (Tue, 27 Mar 2007) | 2 lines Korrekturen im Code, es wird langsam .... ------------------------------------------------------------------------ -r466 | ms | 2007-03-27 18:33:09 +0400 (Tue, 27 Mar 2007) | 2 lines +r466 | ms | 2007-03-27 16:33:09 +0200 (Tue, 27 Mar 2007) | 2 lines Sambaa-Konfigurations-Fixes ------------------------------------------------------------------------ -r465 | ms | 2007-03-26 23:59:37 +0400 (Mon, 26 Mar 2007) | 5 lines +r465 | ms | 2007-03-26 21:59:37 +0200 (Mon, 26 Mar 2007) | 5 lines Added whatmask Netzwerkscripts erweitert. @@ -2384,88 +2588,88 @@ upnp.cgi gefixt. Installer schreibt die Spracheinstellungen wieder. ------------------------------------------------------------------------ -r464 | maniacikarus | 2007-03-26 23:16:19 +0400 (Mon, 26 Mar 2007) | 2 lines +r464 | maniacikarus | 2007-03-26 21:16:19 +0200 (Mon, 26 Mar 2007) | 2 lines kleiner Zwischenfix ------------------------------------------------------------------------ -r463 | maniacikarus | 2007-03-26 22:38:15 +0400 (Mon, 26 Mar 2007) | 5 lines +r463 | maniacikarus | 2007-03-26 20:38:15 +0200 (Mon, 26 Mar 2007) | 5 lines colours.txt ins Theme Verzeichnis geschoben, daher auch Anpassungen an den Firewall*.cgi kleinere Fixes an der samba.cgi -default Config Dateien für Samba ins SVN gestellt +default Config Dateien f?\195?\188r Samba ins SVN gestellt ------------------------------------------------------------------------ -r462 | ms | 2007-03-25 23:58:37 +0400 (Sun, 25 Mar 2007) | 4 lines +r462 | ms | 2007-03-25 21:58:37 +0200 (Sun, 25 Mar 2007) | 4 lines Erste Teile der neuen Netzwerkscripte. Installer-Fix. SCSI+SATA-Module zum Kernel hinzugefuegt ------------------------------------------------------------------------ -r461 | ms | 2007-03-25 11:47:42 +0400 (Sun, 25 Mar 2007) | 2 lines +r461 | ms | 2007-03-25 09:47:42 +0200 (Sun, 25 Mar 2007) | 2 lines Kleiner Fix... ------------------------------------------------------------------------ -r460 | ms | 2007-03-25 10:43:08 +0400 (Sun, 25 Mar 2007) | 3 lines +r460 | ms | 2007-03-25 08:43:08 +0200 (Sun, 25 Mar 2007) | 3 lines Domainkonfiguration neu gemacht. USB-Stick Images hinzugefuegt. ------------------------------------------------------------------------ -r459 | ms | 2007-03-25 08:48:58 +0400 (Sun, 25 Mar 2007) | 2 lines +r459 | ms | 2007-03-25 06:48:58 +0200 (Sun, 25 Mar 2007) | 2 lines Obsolete Binaerdateien entfernt. ------------------------------------------------------------------------ -r458 | ms | 2007-03-25 08:40:27 +0400 (Sun, 25 Mar 2007) | 3 lines +r458 | ms | 2007-03-25 06:40:27 +0200 (Sun, 25 Mar 2007) | 3 lines Squidupdate und QoS-Fix. Hostname als Ueberschrift. ------------------------------------------------------------------------ -r457 | ms | 2007-03-25 08:05:41 +0400 (Sun, 25 Mar 2007) | 4 lines +r457 | ms | 2007-03-25 06:05:41 +0200 (Sun, 25 Mar 2007) | 4 lines Firewallhitgraphs gefixt. Colours.txt fehlt noch fuer unseren Style. ...und wieder einige Sprachfixes. ------------------------------------------------------------------------ -r456 | ms | 2007-03-25 00:23:57 +0300 (Sun, 25 Mar 2007) | 3 lines +r456 | ms | 2007-03-24 22:23:57 +0100 (Sat, 24 Mar 2007) | 3 lines Sprachfix und FTP-Upload-Fix und das
was der Maniac haben wollte ------------------------------------------------------------------------ -r455 | maniacikarus | 2007-03-25 00:07:43 +0300 (Sun, 25 Mar 2007) | 2 lines +r455 | maniacikarus | 2007-03-24 22:07:43 +0100 (Sat, 24 Mar 2007) | 2 lines Hallo, ich bin der Christian und das ist mein erster Commit. ------------------------------------------------------------------------ -r454 | ms | 2007-03-24 20:12:26 +0300 (Sat, 24 Mar 2007) | 2 lines +r454 | ms | 2007-03-24 18:12:26 +0100 (Sat, 24 Mar 2007) | 2 lines Neue Sprachfunktionen und deutsch Sprachdatei aktualisiert ------------------------------------------------------------------------ -r453 | ms | 2007-03-24 16:30:47 +0300 (Sat, 24 Mar 2007) | 3 lines +r453 | ms | 2007-03-24 14:30:47 +0100 (Sat, 24 Mar 2007) | 3 lines upnp.cgi und status.cgi von Maniac eingebaut IPSec aktualisiert ------------------------------------------------------------------------ -r452 | ms | 2007-03-22 23:56:22 +0300 (Thu, 22 Mar 2007) | 2 lines +r452 | ms | 2007-03-22 21:56:22 +0100 (Thu, 22 Mar 2007) | 2 lines Neue UPNP.CGI vom Christian ------------------------------------------------------------------------ -r451 | ms | 2007-03-19 23:25:01 +0300 (Mon, 19 Mar 2007) | 2 lines +r451 | ms | 2007-03-19 21:25:01 +0100 (Mon, 19 Mar 2007) | 2 lines Ramdisk-Arbeit nahezu beendet. ------------------------------------------------------------------------ -r450 | ms | 2007-03-19 00:34:35 +0300 (Mon, 19 Mar 2007) | 5 lines +r450 | ms | 2007-03-18 22:34:35 +0100 (Sun, 18 Mar 2007) | 5 lines GD-Graph fuer Maniac eingebaut Kernel laedt ab jetzt keine Module mehr ungefragt. @@ -2473,217 +2677,217 @@ Nash aktualisiert um richtige Ramdisks zu erstellen (noch unstable). pppsetup.cgi vom Maniac eingefuegt. ------------------------------------------------------------------------ -r449 | ms | 2007-03-18 00:14:34 +0300 (Sun, 18 Mar 2007) | 4 lines +r449 | ms | 2007-03-17 22:14:34 +0100 (Sat, 17 Mar 2007) | 4 lines Alten PCMCIA Code aus dem Installer entfernt. Unattended Installation bearbeitet. HTTP/FTP-Installation nun moeglich. ------------------------------------------------------------------------ -r448 | ms | 2007-03-15 00:57:20 +0300 (Thu, 15 Mar 2007) | 2 lines +r448 | ms | 2007-03-14 22:57:20 +0100 (Wed, 14 Mar 2007) | 2 lines Neue Hardwareerkennung im Installer... ------------------------------------------------------------------------ -r447 | ms | 2007-03-11 23:34:32 +0300 (Sun, 11 Mar 2007) | 2 lines +r447 | ms | 2007-03-11 21:34:32 +0100 (Sun, 11 Mar 2007) | 2 lines Firewall-Log-Analyzer by Christian Schmidt ------------------------------------------------------------------------ -r446 | ms | 2007-03-11 23:20:29 +0300 (Sun, 11 Mar 2007) | 3 lines +r446 | ms | 2007-03-11 21:20:29 +0100 (Sun, 11 Mar 2007) | 3 lines hwinfo in den Installer gebracht. (Erstmal nur in das Image...) ------------------------------------------------------------------------ -r445 | ms | 2007-03-11 23:09:05 +0300 (Sun, 11 Mar 2007) | 3 lines +r445 | ms | 2007-03-11 21:09:05 +0100 (Sun, 11 Mar 2007) | 3 lines OpenSwan RC nach den Vorgaben von "affect" installiert. Zurueck zu ReiserFS, da wir mit Reiser4 noch ein paar Probleme haben und wir die Prioritaeten noch auf andere Sachen legen muessen. :'( ------------------------------------------------------------------------ -r444 | ms | 2007-03-07 22:09:28 +0300 (Wed, 07 Mar 2007) | 2 lines +r444 | ms | 2007-03-07 20:09:28 +0100 (Wed, 07 Mar 2007) | 2 lines Tippfehler im RC Script ------------------------------------------------------------------------ -r443 | ms | 2007-03-07 21:42:02 +0300 (Wed, 07 Mar 2007) | 2 lines +r443 | ms | 2007-03-07 19:42:02 +0100 (Wed, 07 Mar 2007) | 2 lines HWInfo wieder eingefuegt, da mit kudzu zu viele Segmentation Faults liefert. ------------------------------------------------------------------------ -r442 | ms | 2007-03-05 16:15:21 +0300 (Mon, 05 Mar 2007) | 2 lines +r442 | ms | 2007-03-05 14:15:21 +0100 (Mon, 05 Mar 2007) | 2 lines Neuer Kudzu... ------------------------------------------------------------------------ -r441 | ms | 2007-03-05 15:56:05 +0300 (Mon, 05 Mar 2007) | 2 lines +r441 | ms | 2007-03-05 13:56:05 +0100 (Mon, 05 Mar 2007) | 2 lines Build Fix... ------------------------------------------------------------------------ -r440 | ms | 2007-03-05 02:39:47 +0300 (Mon, 05 Mar 2007) | 2 lines +r440 | ms | 2007-03-05 00:39:47 +0100 (Mon, 05 Mar 2007) | 2 lines IPTables Fix... ------------------------------------------------------------------------ -r439 | ms | 2007-03-04 22:07:35 +0300 (Sun, 04 Mar 2007) | 2 lines +r439 | ms | 2007-03-04 20:07:35 +0100 (Sun, 04 Mar 2007) | 2 lines Squid Error-Seiten brauchen wir nicht in saemtlichen Sprachen ------------------------------------------------------------------------ -r438 | ms | 2007-03-04 21:35:48 +0300 (Sun, 04 Mar 2007) | 2 lines +r438 | ms | 2007-03-04 19:35:48 +0100 (Sun, 04 Mar 2007) | 2 lines Busybox wieder einmal aufgebohrt... ------------------------------------------------------------------------ -r437 | ms | 2007-03-04 20:55:55 +0300 (Sun, 04 Mar 2007) | 2 lines +r437 | ms | 2007-03-04 18:55:55 +0100 (Sun, 04 Mar 2007) | 2 lines IPTables Update fuer den neuen Kernel. ------------------------------------------------------------------------ -r436 | ms | 2007-03-04 19:45:10 +0300 (Sun, 04 Mar 2007) | 3 lines +r436 | ms | 2007-03-04 17:45:10 +0100 (Sun, 04 Mar 2007) | 3 lines Reiser4 Implementation abgeschlossen... In memory to Nina Reiser. May she rest in peace... ------------------------------------------------------------------------ -r435 | ms | 2007-03-02 16:23:40 +0300 (Fri, 02 Mar 2007) | 2 lines +r435 | ms | 2007-03-02 14:23:40 +0100 (Fri, 02 Mar 2007) | 2 lines Buildfixes... ------------------------------------------------------------------------ -r434 | ms | 2007-03-01 19:44:47 +0300 (Thu, 01 Mar 2007) | 3 lines +r434 | ms | 2007-03-01 17:44:47 +0100 (Thu, 01 Mar 2007) | 3 lines Kernel Update Netstatusseite mit ip-Befehlen gemacht ------------------------------------------------------------------------ -r433 | ms | 2007-02-25 22:46:08 +0300 (Sun, 25 Feb 2007) | 3 lines +r433 | ms | 2007-02-25 20:46:08 +0100 (Sun, 25 Feb 2007) | 3 lines Samba-Update von Maniac... Reiser4! Juhuu! ------------------------------------------------------------------------ -r432 | ms | 2007-02-25 01:10:57 +0300 (Sun, 25 Feb 2007) | 2 lines +r432 | ms | 2007-02-24 23:10:57 +0100 (Sat, 24 Feb 2007) | 2 lines Sambactrl und samba.cgi von Maniacikarus ------------------------------------------------------------------------ -r431 | ms | 2007-02-23 16:30:56 +0300 (Fri, 23 Feb 2007) | 3 lines +r431 | ms | 2007-02-23 14:30:56 +0100 (Fri, 23 Feb 2007) | 3 lines Also irgendwie sind da die Batch-Scripte immernoch inne Wurst... :( Kann das einer mal vernuenftig testen?? ------------------------------------------------------------------------ -r430 | ms | 2007-02-23 00:18:59 +0300 (Fri, 23 Feb 2007) | 2 lines +r430 | ms | 2007-02-22 22:18:59 +0100 (Thu, 22 Feb 2007) | 2 lines Fehlende CGIs in ISO gebaut ------------------------------------------------------------------------ -r429 | ms | 2007-02-23 00:15:08 +0300 (Fri, 23 Feb 2007) | 2 lines +r429 | ms | 2007-02-22 22:15:08 +0100 (Thu, 22 Feb 2007) | 2 lines Defektes Menue gefixt ------------------------------------------------------------------------ -r428 | ms | 2007-02-22 23:15:06 +0300 (Thu, 22 Feb 2007) | 2 lines +r428 | ms | 2007-02-22 21:15:06 +0100 (Thu, 22 Feb 2007) | 2 lines packages list aktualisiert... ------------------------------------------------------------------------ -r427 | ms | 2007-02-22 22:36:09 +0300 (Thu, 22 Feb 2007) | 2 lines +r427 | ms | 2007-02-22 20:36:09 +0100 (Thu, 22 Feb 2007) | 2 lines Batch-Script wiederhergestellt fuer Detlefs Nightly Builds... ------------------------------------------------------------------------ -r426 | ms | 2007-02-22 21:42:58 +0300 (Thu, 22 Feb 2007) | 4 lines +r426 | ms | 2007-02-22 19:42:58 +0100 (Thu, 22 Feb 2007) | 4 lines Hab mal alles ein wenig bereinigt, da wir die alten Sachen nichtmehr brauchen... connections.cgi hab ich gefixt - Die geht jetzt wieder praechtig! Und irgendwer (wohl mal wieder ich) hat in der lfs/iptables rumgewuetet :D Sowas aber auch... Tztz ------------------------------------------------------------------------ -r425 | ms | 2007-02-21 21:56:00 +0300 (Wed, 21 Feb 2007) | 2 lines +r425 | ms | 2007-02-21 19:56:00 +0100 (Wed, 21 Feb 2007) | 2 lines Ein NTFS-Update fuer den Heiner :D ------------------------------------------------------------------------ -r424 | ms | 2007-02-20 23:45:54 +0300 (Tue, 20 Feb 2007) | 2 lines +r424 | ms | 2007-02-20 21:45:54 +0100 (Tue, 20 Feb 2007) | 2 lines MiniRev: Andere Sprachen entfernt die wir eh nicht brauchen ------------------------------------------------------------------------ -r423 | ms | 2007-02-18 01:00:37 +0300 (Sun, 18 Feb 2007) | 3 lines +r423 | ms | 2007-02-17 23:00:37 +0100 (Sat, 17 Feb 2007) | 3 lines Maniacikarus Samba.cgi eingespielt mISDN eingebaut ------------------------------------------------------------------------ -r422 | ms | 2007-02-16 15:55:09 +0300 (Fri, 16 Feb 2007) | 2 lines +r422 | ms | 2007-02-16 13:55:09 +0100 (Fri, 16 Feb 2007) | 2 lines Clamav Update auf 0.90 ------------------------------------------------------------------------ -r421 | ms | 2007-02-16 00:26:14 +0300 (Fri, 16 Feb 2007) | 2 lines +r421 | ms | 2007-02-15 22:26:14 +0100 (Thu, 15 Feb 2007) | 2 lines Updatexlrator (not tested yet) ------------------------------------------------------------------------ -r420 | ms | 2007-02-15 21:17:05 +0300 (Thu, 15 Feb 2007) | 2 lines +r420 | ms | 2007-02-15 19:17:05 +0100 (Thu, 15 Feb 2007) | 2 lines ExtraHD! Die Erweiterung um Festplatten schnell einzubinden! ------------------------------------------------------------------------ -r419 | ms | 2007-02-15 12:22:09 +0300 (Thu, 15 Feb 2007) | 3 lines +r419 | ms | 2007-02-15 10:22:09 +0100 (Thu, 15 Feb 2007) | 3 lines NTFS-Treiber eingebaut fuer das Festplattenfeature von Silvio Morning Reconnect auf 5 Uhr verschoben... ------------------------------------------------------------------------ -r418 | ms | 2007-02-14 22:30:59 +0300 (Wed, 14 Feb 2007) | 4 lines +r418 | ms | 2007-02-14 20:30:59 +0100 (Wed, 14 Feb 2007) | 4 lines Credits ueberarbeitet. Menue Rewrite Connectioncheck gefixt --> DSL/PPPoE works! ------------------------------------------------------------------------ -r417 | ms | 2007-02-13 22:49:12 +0300 (Tue, 13 Feb 2007) | 2 lines +r417 | ms | 2007-02-13 20:49:12 +0100 (Tue, 13 Feb 2007) | 2 lines QoS-HTML Fixes ------------------------------------------------------------------------ -r416 | ms | 2007-02-13 22:31:38 +0300 (Tue, 13 Feb 2007) | 2 lines +r416 | ms | 2007-02-13 20:31:38 +0100 (Tue, 13 Feb 2007) | 2 lines Bash promt im Fedora Core Style gemacht ------------------------------------------------------------------------ -r415 | ms | 2007-02-13 22:29:03 +0300 (Tue, 13 Feb 2007) | 2 lines +r415 | ms | 2007-02-13 20:29:03 +0100 (Tue, 13 Feb 2007) | 2 lines Sources-ISO Fix ------------------------------------------------------------------------ -r414 | ms | 2007-02-13 21:18:11 +0300 (Tue, 13 Feb 2007) | 2 lines +r414 | ms | 2007-02-13 19:18:11 +0100 (Tue, 13 Feb 2007) | 2 lines Unseren GPG Schluessel hinzugefuegt ------------------------------------------------------------------------ -r413 | ms | 2007-02-13 19:54:19 +0300 (Tue, 13 Feb 2007) | 2 lines +r413 | ms | 2007-02-13 17:54:19 +0100 (Tue, 13 Feb 2007) | 2 lines MoBlock hinzugefuegt (fuer Outgoing Firewall) ------------------------------------------------------------------------ -r412 | ms | 2007-02-12 21:38:45 +0300 (Mon, 12 Feb 2007) | 2 lines +r412 | ms | 2007-02-12 19:38:45 +0100 (Mon, 12 Feb 2007) | 2 lines Changelog-Fix ------------------------------------------------------------------------ -r411 | ms | 2007-02-12 21:37:00 +0300 (Mon, 12 Feb 2007) | 3 lines +r411 | ms | 2007-02-12 19:37:00 +0100 (Mon, 12 Feb 2007) | 3 lines Nochmal ein kleiner Fix fuer die Devel-Version... Kleinere ISO. ------------------------------------------------------------------------ -r410 | ms | 2007-02-12 21:04:28 +0300 (Mon, 12 Feb 2007) | 5 lines +r410 | ms | 2007-02-12 19:04:28 +0100 (Mon, 12 Feb 2007) | 5 lines UPNP.CGI hinzugefuegt SAMBA.CGI von Maniakikarus hinzugefuegt @@ -2691,19 +2895,19 @@ Bootskripte bearbeitet IPFIRE-DEVEL erstellt. ------------------------------------------------------------------------ -r409 | ms | 2007-02-11 19:29:00 +0300 (Sun, 11 Feb 2007) | 3 lines +r409 | ms | 2007-02-11 17:29:00 +0100 (Sun, 11 Feb 2007) | 3 lines PPPoE Verbindungen sollten nun aus dem Webinterface aufegbaut werden -können. +k?\195?\182nnen. ------------------------------------------------------------------------ -r408 | ms | 2007-02-11 15:10:37 +0300 (Sun, 11 Feb 2007) | 3 lines +r408 | ms | 2007-02-11 13:10:37 +0100 (Sun, 11 Feb 2007) | 3 lines IPSec update... Dial.cgi bearbeitet/fix... ------------------------------------------------------------------------ -r407 | ms | 2007-02-07 23:51:04 +0300 (Wed, 07 Feb 2007) | 5 lines +r407 | ms | 2007-02-07 21:51:04 +0100 (Wed, 07 Feb 2007) | 5 lines Style ueberarbeitet. Graphen fuer den Speicher gefixt. @@ -2711,263 +2915,263 @@ DNS-Server in der index.cgi gefixt. Sprachdatei aktualisiert. ------------------------------------------------------------------------ -r406 | ms | 2007-02-05 00:18:14 +0300 (Mon, 05 Feb 2007) | 2 lines +r406 | ms | 2007-02-04 22:18:14 +0100 (Sun, 04 Feb 2007) | 2 lines Touch is an nem anderen Ort... ------------------------------------------------------------------------ -r405 | ms | 2007-02-04 21:03:00 +0300 (Sun, 04 Feb 2007) | 4 lines +r405 | ms | 2007-02-04 19:03:00 +0100 (Sun, 04 Feb 2007) | 4 lines IMQ Device in den Kernel kompiliert. QoS Fit fuer die neue Version gemacht. NTPd Startscript angepasst. (Das andere dauerte einfach zu lange zum starten!) ------------------------------------------------------------------------ -r404 | ms | 2007-02-04 01:18:46 +0300 (Sun, 04 Feb 2007) | 2 lines +r404 | ms | 2007-02-03 23:18:46 +0100 (Sat, 03 Feb 2007) | 2 lines UPnP Initscript und Chain hinzugefuegt ------------------------------------------------------------------------ -r403 | ms | 2007-02-03 23:26:00 +0300 (Sat, 03 Feb 2007) | 2 lines +r403 | ms | 2007-02-03 21:26:00 +0100 (Sat, 03 Feb 2007) | 2 lines UPnP-Tools kompiliert und getestet -> GEIL :D ------------------------------------------------------------------------ -r402 | ms | 2007-02-02 17:50:30 +0300 (Fri, 02 Feb 2007) | 2 lines +r402 | ms | 2007-02-02 15:50:30 +0100 (Fri, 02 Feb 2007) | 2 lines QoS-Update - Komplette grafische Ueberarbeitung ------------------------------------------------------------------------ -r401 | ms | 2007-02-02 17:22:13 +0300 (Fri, 02 Feb 2007) | 1 line +r401 | ms | 2007-02-02 15:22:13 +0100 (Fri, 02 Feb 2007) | 1 line IPCop 1.4.13 - Quellen hinzugefuegt ------------------------------------------------------------------------ -r400 | ms | 2007-01-27 14:39:29 +0300 (Sat, 27 Jan 2007) | 3 lines +r400 | ms | 2007-01-27 12:39:29 +0100 (Sat, 27 Jan 2007) | 3 lines Bash bearbeitet, da der Bootpromt nicht richtig arbeitete. Kleiner Fix damit man ohne prefetching bauen kann. ------------------------------------------------------------------------ -r399 | ms | 2007-01-26 15:46:40 +0300 (Fri, 26 Jan 2007) | 2 lines +r399 | ms | 2007-01-26 13:46:40 +0100 (Fri, 26 Jan 2007) | 2 lines Nettraffic aktualisiert. ------------------------------------------------------------------------ -r398 | ms | 2007-01-25 23:49:42 +0300 (Thu, 25 Jan 2007) | 2 lines +r398 | ms | 2007-01-25 21:49:42 +0100 (Thu, 25 Jan 2007) | 2 lines Kleines Tuning vom QoS... ------------------------------------------------------------------------ -r397 | ms | 2007-01-25 22:04:11 +0300 (Thu, 25 Jan 2007) | 2 lines +r397 | ms | 2007-01-25 20:04:11 +0100 (Thu, 25 Jan 2007) | 2 lines Bashpromt erweitert und FTP Upload wieder funktionierend gemacht... ------------------------------------------------------------------------ -r396 | ms | 2007-01-25 18:36:43 +0300 (Thu, 25 Jan 2007) | 4 lines +r396 | ms | 2007-01-25 16:36:43 +0100 (Thu, 25 Jan 2007) | 4 lines Installer fuer ein read-only-Dateisystem angepasst. mingetty entfernt, da wir agetty verwenden. issue veraendert ------------------------------------------------------------------------ -r395 | ms | 2007-01-24 22:13:45 +0300 (Wed, 24 Jan 2007) | 2 lines +r395 | ms | 2007-01-24 20:13:45 +0100 (Wed, 24 Jan 2007) | 2 lines Einige (hoffentlich die letzten) Rootfiles hinzugefuegt... ------------------------------------------------------------------------ -r394 | ms | 2007-01-20 19:44:36 +0300 (Sat, 20 Jan 2007) | 2 lines +r394 | ms | 2007-01-20 17:44:36 +0100 (Sat, 20 Jan 2007) | 2 lines Kernelconfig und Rootfile nachgeliefert... ------------------------------------------------------------------------ -r393 | ms | 2007-01-20 18:42:28 +0300 (Sat, 20 Jan 2007) | 3 lines +r393 | ms | 2007-01-20 16:42:28 +0100 (Sat, 20 Jan 2007) | 3 lines SquashFS hinzugefuegt damit wir auf OpenVZ-Maschinen bauen koennen. Kein Loop-Device mehr erforderlich. ------------------------------------------------------------------------ -r392 | ms | 2007-01-18 00:17:36 +0300 (Thu, 18 Jan 2007) | 2 lines +r392 | ms | 2007-01-17 22:17:36 +0100 (Wed, 17 Jan 2007) | 2 lines Ein bisschen die Bootscripte bearbeitet! ------------------------------------------------------------------------ -r391 | ms | 2007-01-17 23:19:01 +0300 (Wed, 17 Jan 2007) | 3 lines +r391 | ms | 2007-01-17 21:19:01 +0100 (Wed, 17 Jan 2007) | 3 lines Builderror von IPP2P und Apache gefixt. Sourceforge Bild unnuetze. Da sind we ja eh nich... ------------------------------------------------------------------------ -r390 | ms | 2007-01-14 01:15:39 +0300 (Sun, 14 Jan 2007) | 3 lines +r390 | ms | 2007-01-13 23:15:39 +0100 (Sat, 13 Jan 2007) | 3 lines Source-Links gefixt. Domainumzug vom Source-Code. ------------------------------------------------------------------------ -r389 | ms | 2007-01-11 00:38:07 +0300 (Thu, 11 Jan 2007) | 2 lines +r389 | ms | 2007-01-10 22:38:07 +0100 (Wed, 10 Jan 2007) | 2 lines Der taegliche Commit am Abend :D ------------------------------------------------------------------------ -r388 | ms | 2007-01-09 03:04:31 +0300 (Tue, 09 Jan 2007) | 2 lines +r388 | ms | 2007-01-09 01:04:31 +0100 (Tue, 09 Jan 2007) | 2 lines Alte Initscripts entfernt... ------------------------------------------------------------------------ -r387 | ms | 2007-01-09 00:41:01 +0300 (Tue, 09 Jan 2007) | 2 lines +r387 | ms | 2007-01-08 22:41:01 +0100 (Mon, 08 Jan 2007) | 2 lines Ein Paar noch unbearbeitet Bootscripts hinzugefuegt. ------------------------------------------------------------------------ -r386 | ms | 2007-01-08 18:02:21 +0300 (Mon, 08 Jan 2007) | 3 lines +r386 | ms | 2007-01-08 16:02:21 +0100 (Mon, 08 Jan 2007) | 3 lines DHCPCD wurde nicht gekillt :( Connectionscript umgearbeitet. ------------------------------------------------------------------------ -r385 | ms | 2007-01-08 01:15:06 +0300 (Mon, 08 Jan 2007) | 2 lines +r385 | ms | 2007-01-07 23:15:06 +0100 (Sun, 07 Jan 2007) | 2 lines Tcpdump repariert. ------------------------------------------------------------------------ -r384 | ms | 2007-01-07 16:58:16 +0300 (Sun, 07 Jan 2007) | 2 lines +r384 | ms | 2007-01-07 14:58:16 +0100 (Sun, 07 Jan 2007) | 2 lines HDDTemp nun fuer jede Platte und nicht nur die erste :D ------------------------------------------------------------------------ -r383 | ms | 2007-01-07 15:15:14 +0300 (Sun, 07 Jan 2007) | 4 lines +r383 | ms | 2007-01-07 13:15:14 +0100 (Sun, 07 Jan 2007) | 4 lines FritzCard-Module installiert. OpenSwan2 fit gemacht. Ueberfluessige Modem-Treiber entfernt. ------------------------------------------------------------------------ -r382 | ms | 2007-01-07 03:25:35 +0300 (Sun, 07 Jan 2007) | 2 lines +r382 | ms | 2007-01-07 01:25:35 +0100 (Sun, 07 Jan 2007) | 2 lines Von nun an kann man statische Zuordnungen mit einem Klick aus einer dynamischen Zuordnung generieren. ------------------------------------------------------------------------ -r381 | ms | 2007-01-06 15:55:49 +0300 (Sat, 06 Jan 2007) | 4 lines +r381 | ms | 2007-01-06 13:55:49 +0100 (Sat, 06 Jan 2007) | 4 lines Bootscripte an den IPFire angepasst. Ramdisk bearbeitet und Diskettenimages entfernt. PCMCIA-Utils entfernt. ------------------------------------------------------------------------ -r380 | ms | 2007-01-05 04:46:08 +0300 (Fri, 05 Jan 2007) | 2 lines +r380 | ms | 2007-01-05 02:46:08 +0100 (Fri, 05 Jan 2007) | 2 lines Habe ein Paar lange dagewesene Errors behoben. ------------------------------------------------------------------------ -r379 | ms | 2007-01-05 02:01:10 +0300 (Fri, 05 Jan 2007) | 2 lines +r379 | ms | 2007-01-05 00:01:10 +0100 (Fri, 05 Jan 2007) | 2 lines Makgraphs pingt jetzt wieder den ersten Hop. ------------------------------------------------------------------------ -r378 | ms | 2007-01-05 00:30:12 +0300 (Fri, 05 Jan 2007) | 2 lines +r378 | ms | 2007-01-04 22:30:12 +0100 (Thu, 04 Jan 2007) | 2 lines Hab ein Paar CGIs gefixt. ------------------------------------------------------------------------ -r377 | ms | 2007-01-03 02:09:46 +0300 (Wed, 03 Jan 2007) | 2 lines +r377 | ms | 2007-01-03 00:09:46 +0100 (Wed, 03 Jan 2007) | 2 lines Ein Paar Ideen vom Benne umgesetzt. ------------------------------------------------------------------------ -r376 | ms | 2007-01-02 22:12:43 +0300 (Tue, 02 Jan 2007) | 2 lines +r376 | ms | 2007-01-02 20:12:43 +0100 (Tue, 02 Jan 2007) | 2 lines THEME zum unattended hinzugefuegt. ------------------------------------------------------------------------ -r375 | ms | 2007-01-02 21:40:12 +0300 (Tue, 02 Jan 2007) | 4 lines +r375 | ms | 2007-01-02 19:40:12 +0100 (Tue, 02 Jan 2007) | 4 lines Ich hab mal ein bisschen die Arbeit vom Cuebernommen :D Aber trotzdem geht die Routine noch kein bisschen. SegFault :( Ansonsten: Busyboy erweitert, PCMCIA Support begonnen zu entfernen ------------------------------------------------------------------------ -r374 | ms | 2007-01-01 19:44:44 +0300 (Mon, 01 Jan 2007) | 2 lines +r374 | ms | 2007-01-01 17:44:44 +0100 (Mon, 01 Jan 2007) | 2 lines Kleiner PXE Fix. ------------------------------------------------------------------------ -r373 | ms | 2007-01-01 13:49:07 +0300 (Mon, 01 Jan 2007) | 3 lines +r373 | ms | 2007-01-01 11:49:07 +0100 (Mon, 01 Jan 2007) | 3 lines Installer-Toolchain nochmals ueberarbeitet. Kompiliert wenigstens schonmal durch... ------------------------------------------------------------------------ -r372 | ms | 2007-01-01 00:51:45 +0300 (Mon, 01 Jan 2007) | 2 lines +r372 | ms | 2006-12-31 22:51:45 +0100 (Sun, 31 Dec 2006) | 2 lines Neueste GnuMP3d-Version eingepflegt ------------------------------------------------------------------------ -r371 | ms | 2006-12-31 21:30:30 +0300 (Sun, 31 Dec 2006) | 4 lines +r371 | ms | 2006-12-31 19:30:30 +0100 (Sun, 31 Dec 2006) | 4 lines * Clamav, Samba und MC Update. * Kleine Funktion zur Zeitanzeige der Stages und des gesamten Builds gebastelt. ------------------------------------------------------------------------ -r370 | ms | 2006-12-29 19:22:29 +0300 (Fri, 29 Dec 2006) | 4 lines +r370 | ms | 2006-12-29 17:22:29 +0100 (Fri, 29 Dec 2006) | 4 lines Asterisk aktualisiert. --> 1.4.0 Hoffentlich gibt es endlich mal wieder nen Bristuff dafuer... PXE-Namen geaendert. ------------------------------------------------------------------------ -r369 | ms | 2006-12-25 23:53:27 +0300 (Mon, 25 Dec 2006) | 3 lines +r369 | ms | 2006-12-25 21:53:27 +0100 (Mon, 25 Dec 2006) | 3 lines Ich hab mal ueber die Feiertage nen kleinen Rewrite von dem Installersystem gemacht. Ich hoffe somit mal das locale-Problem in den Griff zu bekommen. ------------------------------------------------------------------------ -r368 | ms | 2006-12-22 20:24:32 +0300 (Fri, 22 Dec 2006) | 4 lines +r368 | ms | 2006-12-22 18:24:32 +0100 (Fri, 22 Dec 2006) | 4 lines Graphen gefixt. Bootlogo zur Iso hinzugefuegt. Memtest hinzugefuegt. (Kann man sicherlich mal brauchen denke ich.) ------------------------------------------------------------------------ -r367 | ms | 2006-12-22 00:56:35 +0300 (Fri, 22 Dec 2006) | 3 lines +r367 | ms | 2006-12-21 22:56:35 +0100 (Thu, 21 Dec 2006) | 3 lines H323 Conntrack hinzugefuegt Bootsplash reaktiviert. ------------------------------------------------------------------------ -r366 | ms | 2006-12-21 21:38:37 +0300 (Thu, 21 Dec 2006) | 4 lines +r366 | ms | 2006-12-21 19:38:37 +0100 (Thu, 21 Dec 2006) | 4 lines Netzwerkscript beinahe vollendet. Setup bearbeitet. (Geht schon ganz gut.) Sonstiges wie immer... ------------------------------------------------------------------------ -r365 | ms | 2006-12-19 00:40:57 +0300 (Tue, 19 Dec 2006) | 2 lines +r365 | ms | 2006-12-18 22:40:57 +0100 (Mon, 18 Dec 2006) | 2 lines Kernel-Update und umfassende Arbeiten daran. ------------------------------------------------------------------------ -r364 | ms | 2006-12-16 19:07:45 +0300 (Sat, 16 Dec 2006) | 2 lines +r364 | ms | 2006-12-16 17:07:45 +0100 (Sat, 16 Dec 2006) | 2 lines Themeable Webinterface mit neuem Style. ------------------------------------------------------------------------ -r363 | ms | 2006-12-13 22:56:41 +0300 (Wed, 13 Dec 2006) | 2 lines +r363 | ms | 2006-12-13 20:56:41 +0100 (Wed, 13 Dec 2006) | 2 lines Alle htdocs nach /srv/web verschoben... ------------------------------------------------------------------------ -r362 | ms | 2006-12-13 00:20:38 +0300 (Wed, 13 Dec 2006) | 3 lines +r362 | ms | 2006-12-12 22:20:38 +0100 (Tue, 12 Dec 2006) | 3 lines RRDTool Fix Bearbeitung an den Grafen noetig! ------------------------------------------------------------------------ -r361 | ms | 2006-12-13 00:18:36 +0300 (Wed, 13 Dec 2006) | 2 lines +r361 | ms | 2006-12-12 22:18:36 +0100 (Tue, 12 Dec 2006) | 2 lines 2 Buildfixes... ------------------------------------------------------------------------ -r360 | ms | 2006-12-11 23:02:07 +0300 (Mon, 11 Dec 2006) | 5 lines +r360 | ms | 2006-12-11 21:02:07 +0100 (Mon, 11 Dec 2006) | 5 lines Patch-O-Matic in den Kernel eingebaut. (Einige Module fehlen noch...) @@ -2975,119 +3179,119 @@ Unattended Installer bearbeitet. Firewallscript hinzugefuegt. ------------------------------------------------------------------------ -r359 | ms | 2006-12-08 19:27:26 +0300 (Fri, 08 Dec 2006) | 3 lines +r359 | ms | 2006-12-08 17:27:26 +0100 (Fri, 08 Dec 2006) | 3 lines IPTables in Kernel aktiviert. Netzwork-Script Phase 1 ------------------------------------------------------------------------ -r358 | ms | 2006-12-08 15:41:21 +0300 (Fri, 08 Dec 2006) | 4 lines +r358 | ms | 2006-12-08 13:41:21 +0100 (Fri, 08 Dec 2006) | 4 lines Kernel angepasst. Bootprozess bearbeitet. Console vorlaeufig auf Deutsch eingestellt bis das Setup geht. ------------------------------------------------------------------------ -r357 | ms | 2006-12-06 00:57:32 +0300 (Wed, 06 Dec 2006) | 4 lines +r357 | ms | 2006-12-05 22:57:32 +0100 (Tue, 05 Dec 2006) | 4 lines Starte SSH-Server beim Boot. Starte Cron-Server beim Boot. Apache bearbeitet. ------------------------------------------------------------------------ -r356 | ms | 2006-12-06 00:42:19 +0300 (Wed, 06 Dec 2006) | 2 lines +r356 | ms | 2006-12-05 22:42:19 +0100 (Tue, 05 Dec 2006) | 2 lines Installer-Pfade gefixxt. ------------------------------------------------------------------------ -r355 | ms | 2006-12-05 17:32:03 +0300 (Tue, 05 Dec 2006) | 2 lines +r355 | ms | 2006-12-05 15:32:03 +0100 (Tue, 05 Dec 2006) | 2 lines Einige Buildfixes ------------------------------------------------------------------------ -r354 | ms | 2006-12-03 01:38:39 +0300 (Sun, 03 Dec 2006) | 2 lines +r354 | ms | 2006-12-02 23:38:39 +0100 (Sat, 02 Dec 2006) | 2 lines System ist mittels LFS Bootscripte startbar. ------------------------------------------------------------------------ -r353 | ms | 2006-12-01 00:30:57 +0300 (Fri, 01 Dec 2006) | 2 lines +r353 | ms | 2006-11-30 22:30:57 +0100 (Thu, 30 Nov 2006) | 2 lines ... Viel zu tun :D ------------------------------------------------------------------------ -r352 | ms | 2006-11-29 00:27:53 +0300 (Wed, 29 Nov 2006) | 2 lines +r352 | ms | 2006-11-28 22:27:53 +0100 (Tue, 28 Nov 2006) | 2 lines Kleiner netter neuer Versuch. ------------------------------------------------------------------------ -r351 | ms | 2006-11-28 23:05:18 +0300 (Tue, 28 Nov 2006) | 3 lines +r351 | ms | 2006-11-28 21:05:18 +0100 (Tue, 28 Nov 2006) | 3 lines PXE Boot integriert. Installerarbeit fortgesetzt. ------------------------------------------------------------------------ -r350 | ms | 2006-11-27 00:34:31 +0300 (Mon, 27 Nov 2006) | 2 lines +r350 | ms | 2006-11-26 22:34:31 +0100 (Sun, 26 Nov 2006) | 2 lines Installer lauft durch und IDE Systeme booten :D ------------------------------------------------------------------------ -r349 | ms | 2006-11-26 15:52:27 +0300 (Sun, 26 Nov 2006) | 2 lines +r349 | ms | 2006-11-26 13:52:27 +0100 (Sun, 26 Nov 2006) | 2 lines Installer ------------------------------------------------------------------------ -r348 | ms | 2006-11-22 00:24:16 +0300 (Wed, 22 Nov 2006) | 2 lines +r348 | ms | 2006-11-21 22:24:16 +0100 (Tue, 21 Nov 2006) | 2 lines Eine Menge Buildfixes... ------------------------------------------------------------------------ -r347 | ms | 2006-11-21 01:04:37 +0300 (Tue, 21 Nov 2006) | 2 lines +r347 | ms | 2006-11-20 23:04:37 +0100 (Mon, 20 Nov 2006) | 2 lines Weitere Arbeit am Installer ------------------------------------------------------------------------ -r346 | ms | 2006-11-20 22:56:08 +0300 (Mon, 20 Nov 2006) | 2 lines +r346 | ms | 2006-11-20 20:56:08 +0100 (Mon, 20 Nov 2006) | 2 lines Kudzu, ReiserFS, uClibc, gettext und Arbeit am Installer ------------------------------------------------------------------------ -r345 | ms | 2006-11-11 19:23:31 +0300 (Sat, 11 Nov 2006) | 2 lines +r345 | ms | 2006-11-11 17:23:31 +0100 (Sat, 11 Nov 2006) | 2 lines Uptime-CGI vom gruenen Testfire kopiert. ------------------------------------------------------------------------ -r344 | ms | 2006-11-09 01:58:14 +0300 (Thu, 09 Nov 2006) | 2 lines +r344 | ms | 2006-11-08 23:58:14 +0100 (Wed, 08 Nov 2006) | 2 lines Clamav und OpenVPN Update. ------------------------------------------------------------------------ -r343 | ms | 2006-11-09 01:30:51 +0300 (Thu, 09 Nov 2006) | 2 lines +r343 | ms | 2006-11-08 23:30:51 +0100 (Wed, 08 Nov 2006) | 2 lines Bootvorgang des Installers weitergebracht. ------------------------------------------------------------------------ -r342 | ms | 2006-11-07 23:23:46 +0300 (Tue, 07 Nov 2006) | 2 lines +r342 | ms | 2006-11-07 21:23:46 +0100 (Tue, 07 Nov 2006) | 2 lines Install-Initrd finalisiert.. ------------------------------------------------------------------------ -r341 | ms | 2006-11-06 22:55:55 +0300 (Mon, 06 Nov 2006) | 3 lines +r341 | ms | 2006-11-06 20:55:55 +0100 (Mon, 06 Nov 2006) | 3 lines Installmake bearbeitet. (TESTING) fstab gefixt. ------------------------------------------------------------------------ -r340 | ms | 2006-11-06 21:03:48 +0300 (Mon, 06 Nov 2006) | 2 lines +r340 | ms | 2006-11-06 19:03:48 +0100 (Mon, 06 Nov 2006) | 2 lines Busybox war gegen falsche Libc gelinkt. ------------------------------------------------------------------------ -r339 | ms | 2006-11-04 02:15:47 +0300 (Sat, 04 Nov 2006) | 2 lines +r339 | ms | 2006-11-04 00:15:47 +0100 (Sat, 04 Nov 2006) | 2 lines Mailx und Newt Fixes. ------------------------------------------------------------------------ -r338 | ms | 2006-11-03 02:59:32 +0300 (Fri, 03 Nov 2006) | 5 lines +r338 | ms | 2006-11-03 00:59:32 +0100 (Fri, 03 Nov 2006) | 5 lines Zwischencommit... Typo von Meisterwinter behoben. @@ -3095,119 +3299,119 @@ Clamav Update. Neuen Source-Server unter source.ipfire.eu in Betrieb genommen. ------------------------------------------------------------------------ -r337 | ms | 2006-11-02 22:00:22 +0300 (Thu, 02 Nov 2006) | 2 lines +r337 | ms | 2006-11-02 20:00:22 +0100 (Thu, 02 Nov 2006) | 2 lines Zwischencommit... ISO wird gebaut! ------------------------------------------------------------------------ -r336 | ms | 2006-11-02 16:08:47 +0300 (Thu, 02 Nov 2006) | 2 lines +r336 | ms | 2006-11-02 14:08:47 +0100 (Thu, 02 Nov 2006) | 2 lines Buildfixes... ------------------------------------------------------------------------ -r335 | ms | 2006-11-01 20:55:25 +0300 (Wed, 01 Nov 2006) | 2 lines +r335 | ms | 2006-11-01 18:55:25 +0100 (Wed, 01 Nov 2006) | 2 lines Zwischencommit Rootfiles... ------------------------------------------------------------------------ -r334 | ms | 2006-11-01 19:52:39 +0300 (Wed, 01 Nov 2006) | 3 lines +r334 | ms | 2006-11-01 17:52:39 +0100 (Wed, 01 Nov 2006) | 3 lines Zwischencommit Rootfiles... Der Countdown laeuft... ------------------------------------------------------------------------ -r333 | ms | 2006-10-30 23:23:28 +0300 (Mon, 30 Oct 2006) | 2 lines +r333 | ms | 2006-10-30 21:23:28 +0100 (Mon, 30 Oct 2006) | 2 lines Zwischencommit Installer... ------------------------------------------------------------------------ -r332 | ms | 2006-10-28 02:01:34 +0400 (Sat, 28 Oct 2006) | 2 lines +r332 | ms | 2006-10-28 00:01:34 +0200 (Sat, 28 Oct 2006) | 2 lines Zwischencommit Installer. ------------------------------------------------------------------------ -r331 | ms | 2006-10-27 19:50:54 +0400 (Fri, 27 Oct 2006) | 2 lines +r331 | ms | 2006-10-27 17:50:54 +0200 (Fri, 27 Oct 2006) | 2 lines Busybox --> 1.2.2 ------------------------------------------------------------------------ -r330 | ms | 2006-10-27 19:10:51 +0400 (Fri, 27 Oct 2006) | 2 lines +r330 | ms | 2006-10-27 17:10:51 +0200 (Fri, 27 Oct 2006) | 2 lines Cleanup. ------------------------------------------------------------------------ -r329 | ms | 2006-10-27 19:08:59 +0400 (Fri, 27 Oct 2006) | 2 lines +r329 | ms | 2006-10-27 17:08:59 +0200 (Fri, 27 Oct 2006) | 2 lines uClibc-0.29.8 funktioniert mit GCC 4.0.3 ------------------------------------------------------------------------ -r328 | ms | 2006-10-25 22:11:37 +0400 (Wed, 25 Oct 2006) | 2 lines +r328 | ms | 2006-10-25 20:11:37 +0200 (Wed, 25 Oct 2006) | 2 lines uClibc-Update. ------------------------------------------------------------------------ -r327 | ms | 2006-10-24 01:16:38 +0400 (Tue, 24 Oct 2006) | 3 lines +r327 | ms | 2006-10-23 23:16:38 +0200 (Mon, 23 Oct 2006) | 3 lines uClibc haengt... Viele Rootfiles erstellt. ------------------------------------------------------------------------ -r326 | ms | 2006-10-20 18:32:17 +0400 (Fri, 20 Oct 2006) | 4 lines +r326 | ms | 2006-10-20 16:32:17 +0200 (Fri, 20 Oct 2006) | 4 lines Zwischencommit fuer LFS. Ein Paar Rootfiles erstellt. ./make.sh prefetch nach ./make.sh downloadsrc umbenannt. ------------------------------------------------------------------------ -r325 | ms | 2006-10-19 22:37:19 +0400 (Thu, 19 Oct 2006) | 4 lines +r325 | ms | 2006-10-19 20:37:19 +0200 (Thu, 19 Oct 2006) | 4 lines Zwischencommit fuer LFS. Die Asterisk-Leute haben mal wieder zugeschlagen... Da warten wir mal auf den Junghanns, oder nehmen wir was anderes? ------------------------------------------------------------------------ -r324 | ms | 2006-10-16 00:25:07 +0400 (Mon, 16 Oct 2006) | 2 lines +r324 | ms | 2006-10-15 22:25:07 +0200 (Sun, 15 Oct 2006) | 2 lines Zwischencommit fuer LFS. ------------------------------------------------------------------------ -r323 | ms | 2006-10-15 01:10:36 +0400 (Sun, 15 Oct 2006) | 2 lines +r323 | ms | 2006-10-14 23:10:36 +0200 (Sat, 14 Oct 2006) | 2 lines Zwischencommit fuer LFS. Noch zahlreiche Errors :( ------------------------------------------------------------------------ -r322 | ms | 2006-10-14 18:17:32 +0400 (Sat, 14 Oct 2006) | 2 lines +r322 | ms | 2006-10-14 16:17:32 +0200 (Sat, 14 Oct 2006) | 2 lines Zwischencommit fuer LFS. ------------------------------------------------------------------------ -r321 | ms | 2006-10-14 16:43:29 +0400 (Sat, 14 Oct 2006) | 2 lines +r321 | ms | 2006-10-14 14:43:29 +0200 (Sat, 14 Oct 2006) | 2 lines Zwischencommit fuer LFS. ------------------------------------------------------------------------ -r320 | ms | 2006-10-13 19:35:24 +0400 (Fri, 13 Oct 2006) | 2 lines +r320 | ms | 2006-10-13 17:35:24 +0200 (Fri, 13 Oct 2006) | 2 lines Zwischencommit fuer LFS. ------------------------------------------------------------------------ -r319 | ms | 2006-10-13 17:01:14 +0400 (Fri, 13 Oct 2006) | 2 lines +r319 | ms | 2006-10-13 15:01:14 +0200 (Fri, 13 Oct 2006) | 2 lines Kleiner Fehler in Python. ------------------------------------------------------------------------ -r318 | ms | 2006-10-13 15:51:11 +0400 (Fri, 13 Oct 2006) | 2 lines +r318 | ms | 2006-10-13 13:51:11 +0200 (Fri, 13 Oct 2006) | 2 lines Zwischencommit fuer LFS. ------------------------------------------------------------------------ -r317 | ms | 2006-10-13 00:44:44 +0400 (Fri, 13 Oct 2006) | 3 lines +r317 | ms | 2006-10-12 22:44:44 +0200 (Thu, 12 Oct 2006) | 3 lines Zwischencommit fuer LFS. EXPERIMENTELLE KERNEL-KONFIGURATION. ------------------------------------------------------------------------ -r316 | ms | 2006-10-12 21:34:35 +0400 (Thu, 12 Oct 2006) | 5 lines +r316 | ms | 2006-10-12 19:34:35 +0200 (Thu, 12 Oct 2006) | 5 lines Hinzugefuegt: * Net-Tools @@ -3215,122 +3419,122 @@ Hinzugefuegt: * Ed ------------------------------------------------------------------------ -r315 | ms | 2006-10-12 19:57:24 +0400 (Thu, 12 Oct 2006) | 3 lines +r315 | ms | 2006-10-12 17:57:24 +0200 (Thu, 12 Oct 2006) | 3 lines EXPERIMENTELLE Konfiguration fuer den Installer-Kernel. Die genaue Konfiguration wird am Entwicklertreffen festgelegt. ------------------------------------------------------------------------ -r314 | ms | 2006-10-12 19:52:06 +0400 (Thu, 12 Oct 2006) | 4 lines +r314 | ms | 2006-10-12 17:52:06 +0200 (Thu, 12 Oct 2006) | 4 lines Neues Verfahren fuer die Rootfiles. Alle liegen in einer einzelnen Datei und die 3 verschiedenen Version koennen unterschiedlich zusammengestellt werden. USB-Stick-Images mangels Notwendigkeit entfernt. ------------------------------------------------------------------------ -r313 | ms | 2006-10-12 15:17:13 +0400 (Thu, 12 Oct 2006) | 2 lines +r313 | ms | 2006-10-12 13:17:13 +0200 (Thu, 12 Oct 2006) | 2 lines Mehrere Tippfehler in lfs/linux beseitigt. ------------------------------------------------------------------------ -r312 | ms | 2006-10-09 17:09:55 +0400 (Mon, 09 Oct 2006) | 2 lines +r312 | ms | 2006-10-09 15:09:55 +0200 (Mon, 09 Oct 2006) | 2 lines Zwischencommit fuer LFS. ------------------------------------------------------------------------ -r311 | ms | 2006-10-09 16:16:52 +0400 (Mon, 09 Oct 2006) | 2 lines +r311 | ms | 2006-10-09 14:16:52 +0200 (Mon, 09 Oct 2006) | 2 lines Zwischencommit fuer LFS. Bis Kernel. ------------------------------------------------------------------------ -r310 | ms | 2006-10-09 02:55:09 +0400 (Mon, 09 Oct 2006) | 2 lines +r310 | ms | 2006-10-09 00:55:09 +0200 (Mon, 09 Oct 2006) | 2 lines Zwischencommit fuer LFS. ------------------------------------------------------------------------ -r309 | ms | 2006-10-08 23:29:44 +0400 (Sun, 08 Oct 2006) | 2 lines +r309 | ms | 2006-10-08 21:29:44 +0200 (Sun, 08 Oct 2006) | 2 lines Zwischencommit fuer LFS. Man, Sysklogd und Shadow. ------------------------------------------------------------------------ -r308 | ms | 2006-10-08 23:16:18 +0400 (Sun, 08 Oct 2006) | 2 lines +r308 | ms | 2006-10-08 21:16:18 +0200 (Sun, 08 Oct 2006) | 2 lines Zwischencommit fuer LFS. Groff und IPRoute2. ------------------------------------------------------------------------ -r307 | ms | 2006-10-08 23:01:51 +0400 (Sun, 08 Oct 2006) | 2 lines +r307 | ms | 2006-10-08 21:01:51 +0200 (Sun, 08 Oct 2006) | 2 lines Zwischencommit fuer LFS. Grub und Gettext. ------------------------------------------------------------------------ -r306 | ms | 2006-10-08 22:05:04 +0400 (Sun, 08 Oct 2006) | 2 lines +r306 | ms | 2006-10-08 20:05:04 +0200 (Sun, 08 Oct 2006) | 2 lines Zwischencommit fuer LFS. ------------------------------------------------------------------------ -r305 | ms | 2006-10-08 18:39:28 +0400 (Sun, 08 Oct 2006) | 2 lines +r305 | ms | 2006-10-08 16:39:28 +0200 (Sun, 08 Oct 2006) | 2 lines Zwischencommit fuer LFS. ------------------------------------------------------------------------ -r304 | ms | 2006-10-06 13:08:18 +0400 (Fri, 06 Oct 2006) | 2 lines +r304 | ms | 2006-10-06 11:08:18 +0200 (Fri, 06 Oct 2006) | 2 lines Zwischencommit fuer LFS. GCC und Binutils fixed. ------------------------------------------------------------------------ -r303 | ms | 2006-10-04 18:35:14 +0400 (Wed, 04 Oct 2006) | 2 lines +r303 | ms | 2006-10-04 16:35:14 +0200 (Wed, 04 Oct 2006) | 2 lines Binutilserror behoben. ------------------------------------------------------------------------ -r302 | ms | 2006-10-03 00:48:09 +0400 (Tue, 03 Oct 2006) | 2 lines +r302 | ms | 2006-10-02 22:48:09 +0200 (Mon, 02 Oct 2006) | 2 lines Zwischencommit LFS - Stoppt bei Stage2 - Binutils. ------------------------------------------------------------------------ -r301 | ms | 2006-10-01 23:57:04 +0400 (Sun, 01 Oct 2006) | 2 lines +r301 | ms | 2006-10-01 21:57:04 +0200 (Sun, 01 Oct 2006) | 2 lines -Zwischencommit für LFS. +Zwischencommit f?\195?\188r LFS. ------------------------------------------------------------------------ -r300 | ms | 2006-10-01 19:04:23 +0400 (Sun, 01 Oct 2006) | 2 lines +r300 | ms | 2006-10-01 17:04:23 +0200 (Sun, 01 Oct 2006) | 2 lines Naechster Schritt im LFS. ------------------------------------------------------------------------ -r299 | ms | 2006-10-01 14:51:18 +0400 (Sun, 01 Oct 2006) | 3 lines +r299 | ms | 2006-10-01 12:51:18 +0200 (Sun, 01 Oct 2006) | 3 lines Zwischencommit beim Umzug auf LFS 6.2. ------------------------------------------------------------------------ -r298 | ms | 2006-10-01 02:07:28 +0400 (Sun, 01 Oct 2006) | 2 lines +r298 | ms | 2006-10-01 00:07:28 +0200 (Sun, 01 Oct 2006) | 2 lines Make.sh gesplittet und maechtig ueberarbeitet. ------------------------------------------------------------------------ -r297 | ms | 2006-09-30 20:33:03 +0400 (Sat, 30 Sep 2006) | 4 lines +r297 | ms | 2006-09-30 18:33:03 +0200 (Sat, 30 Sep 2006) | 4 lines Habe IPFire auf LFS 6.2 gebracht. Das hier ist der erste Teil. Nur Toolchain bisher. ------------------------------------------------------------------------ -r296 | delaco | 2006-09-29 18:42:04 +0400 (Fri, 29 Sep 2006) | 1 line +r296 | delaco | 2006-09-29 16:42:04 +0200 (Fri, 29 Sep 2006) | 1 line Fix fuer die packages_list.txt... ------------------------------------------------------------------------ -r295 | delaco | 2006-09-23 21:37:59 +0400 (Sat, 23 Sep 2006) | 3 lines +r295 | delaco | 2006-09-23 19:37:59 +0200 (Sat, 23 Sep 2006) | 3 lines Fixes fuer den Buildprozess. (applejuice, mysql) Quality of Service: TOS-Regeln und TOS-Matches hinzugefuegt, Graphen uebersichtlicher angeordnet. ------------------------------------------------------------------------ -r294 | delaco | 2006-09-23 03:12:12 +0400 (Sat, 23 Sep 2006) | 1 line +r294 | delaco | 2006-09-23 01:12:12 +0200 (Sat, 23 Sep 2006) | 1 line WebCyrAdm - Dateien verschoben und nicht in Paket geaendert. Sorry. ------------------------------------------------------------------------ -r293 | delaco | 2006-09-23 03:05:21 +0400 (Sat, 23 Sep 2006) | 7 lines +r293 | delaco | 2006-09-23 01:05:21 +0200 (Sat, 23 Sep 2006) | 7 lines MONSTER-REVISION! * Alte und ueberfluessige Pakete entfernt. @@ -3340,15 +3544,15 @@ MONSTER-REVISION! * XAMPP entfernt. STILL EXPERIMENTAL * make.sh aufgeraeumt. ------------------------------------------------------------------------ -r292 | ms | 2006-09-22 01:25:43 +0400 (Fri, 22 Sep 2006) | 1 line +r292 | ms | 2006-09-21 23:25:43 +0200 (Thu, 21 Sep 2006) | 1 line stunnel und edonkeyclc geloescht, da wir es nicht nutzen ------------------------------------------------------------------------ -r291 | ms | 2006-09-21 23:47:20 +0400 (Thu, 21 Sep 2006) | 1 line +r291 | ms | 2006-09-21 21:47:20 +0200 (Thu, 21 Sep 2006) | 1 line Nicht alle Versionen von Subversion koennen den vollen Befehlsumfang :( ------------------------------------------------------------------------ -r290 | delaco | 2006-09-21 22:48:19 +0400 (Thu, 21 Sep 2006) | 5 lines +r290 | delaco | 2006-09-21 20:48:19 +0200 (Thu, 21 Sep 2006) | 5 lines Make.sh: * svn dist ueberarbeitet. @@ -3356,35 +3560,35 @@ Make.sh: * svn ad packt alle Sources in ein Archiv mit Changelog und svn_status * packages_list fuer Mediawiki umgemodelt. ------------------------------------------------------------------------ -r289 | casemaster | 2006-09-20 00:06:50 +0400 (Wed, 20 Sep 2006) | 1 line +r289 | casemaster | 2006-09-19 22:06:50 +0200 (Tue, 19 Sep 2006) | 1 line SVN ist durcheinandergekommen bei Pfad-Anpassung Part 2 (Ende) ------------------------------------------------------------------------ -r288 | casemaster | 2006-09-20 00:04:44 +0400 (Wed, 20 Sep 2006) | 1 line +r288 | casemaster | 2006-09-19 22:04:44 +0200 (Tue, 19 Sep 2006) | 1 line SVN ist durcheinandergekommen bei Pfad-Anpassung Part 1 ------------------------------------------------------------------------ -r287 | casemaster | 2006-09-19 23:54:40 +0400 (Tue, 19 Sep 2006) | 2 lines +r287 | casemaster | 2006-09-19 21:54:40 +0200 (Tue, 19 Sep 2006) | 2 lines -Anpassung der Pfadangaben für GRUB. -Überflüssige Dateien entfernt. +Anpassung der Pfadangaben f?\195?\188r GRUB. +?\195?\156berfl?\195?\188ssige Dateien entfernt. ------------------------------------------------------------------------ -r286 | delaco | 2006-09-19 23:46:43 +0400 (Tue, 19 Sep 2006) | 3 lines +r286 | delaco | 2006-09-19 21:46:43 +0200 (Tue, 19 Sep 2006) | 3 lines Hinzugefuegt: * SysLinux Patch vergessen. * Workaround um PHP5 zu kompilieren. ------------------------------------------------------------------------ -r285 | casemaster | 2006-09-19 10:53:10 +0400 (Tue, 19 Sep 2006) | 2 lines +r285 | casemaster | 2006-09-19 08:53:10 +0200 (Tue, 19 Sep 2006) | 2 lines -Update des GFXBoot-Patches für GRUB aus SuSE 10.2 v8. +Update des GFXBoot-Patches f?\195?\188r GRUB aus SuSE 10.2 v8. Startbild aktualisiert. ------------------------------------------------------------------------ -r284 | ms | 2006-09-18 23:28:58 +0400 (Mon, 18 Sep 2006) | 1 line +r284 | ms | 2006-09-18 21:28:58 +0200 (Mon, 18 Sep 2006) | 1 line Nochn Fix fuer die Passwoerter. ------------------------------------------------------------------------ -r283 | ms | 2006-09-18 23:05:20 +0400 (Mon, 18 Sep 2006) | 8 lines +r283 | ms | 2006-09-18 21:05:20 +0200 (Mon, 18 Sep 2006) | 8 lines Hinzugefuegt: * Konfiguration fuer Apache2 @@ -3395,40 +3599,40 @@ Gefixt: * Fehler im Installer wegen Apache2. ------------------------------------------------------------------------ -r282 | delaco | 2006-09-18 22:23:50 +0400 (Mon, 18 Sep 2006) | 3 lines +r282 | delaco | 2006-09-18 20:23:50 +0200 (Mon, 18 Sep 2006) | 3 lines Hinzugefuegt: * LibXML2 in ISO, da Abhaengigkeit von PHP5. * Mod_ssl.so fuer Apache2. ------------------------------------------------------------------------ -r281 | ms | 2006-09-17 17:10:56 +0400 (Sun, 17 Sep 2006) | 2 lines +r281 | ms | 2006-09-17 15:10:56 +0200 (Sun, 17 Sep 2006) | 2 lines Einige Aenderungen an der make.sh. Das war mal noetig. ------------------------------------------------------------------------ -r280 | delaco | 2006-09-17 17:03:38 +0400 (Sun, 17 Sep 2006) | 3 lines +r280 | delaco | 2006-09-17 15:03:38 +0200 (Sun, 17 Sep 2006) | 3 lines Geaendert: * Sauber kompilierter und strukturierter Apache2 (Konfiguration fehlt aber noch.) ------------------------------------------------------------------------ -r279 | delaco | 2006-09-15 00:51:06 +0400 (Fri, 15 Sep 2006) | 2 lines +r279 | delaco | 2006-09-14 22:51:06 +0200 (Thu, 14 Sep 2006) | 2 lines Fortschritt zur Migration auf Apache2.2 TESTMODUS ------------------------------------------------------------------------ -r278 | delaco | 2006-09-14 00:20:37 +0400 (Thu, 14 Sep 2006) | 2 lines +r278 | delaco | 2006-09-13 22:20:37 +0200 (Wed, 13 Sep 2006) | 2 lines Update: * OutgoingFW - Script hinzugefuegt ------------------------------------------------------------------------ -r277 | delaco | 2006-09-13 19:30:27 +0400 (Wed, 13 Sep 2006) | 3 lines +r277 | delaco | 2006-09-13 17:30:27 +0200 (Wed, 13 Sep 2006) | 3 lines Fixes: * readline - Fehler im Patch-Pfad * php ist von libxml2 abhaengig ------------------------------------------------------------------------ -r276 | delaco | 2006-09-13 01:47:37 +0400 (Wed, 13 Sep 2006) | 10 lines +r276 | delaco | 2006-09-12 23:47:37 +0200 (Tue, 12 Sep 2006) | 10 lines Hinzugefuegt: * Yasuc @@ -3441,17 +3645,17 @@ Fixes: * readline * lfs/Config ------------------------------------------------------------------------ -r275 | ms | 2006-09-13 00:23:29 +0400 (Wed, 13 Sep 2006) | 3 lines +r275 | ms | 2006-09-12 22:23:29 +0200 (Tue, 12 Sep 2006) | 3 lines Geaendert: * OpenSSL-Update wegen Sicherheitluecke. * Mache ROOTFILES passend um weniger zu aendern bei Kernelupdate. ------------------------------------------------------------------------ -r274 | ms | 2006-09-12 22:51:47 +0400 (Tue, 12 Sep 2006) | 1 line +r274 | ms | 2006-09-12 20:51:47 +0200 (Tue, 12 Sep 2006) | 1 line Neues Bild fuers Bootmenue! ------------------------------------------------------------------------ -r273 | ms | 2006-09-12 21:56:44 +0400 (Tue, 12 Sep 2006) | 5 lines +r273 | ms | 2006-09-12 19:56:44 +0200 (Tue, 12 Sep 2006) | 5 lines Hinzugefuegt: * PHP 5.1.4 @@ -3459,26 +3663,26 @@ Hinzugefuegt: * GNU readline 5.1 DAS WEBINTERFACE ARBEITET MOEGLICHERWEISE NICHT! ------------------------------------------------------------------------ -r272 | delaco | 2006-09-12 21:51:12 +0400 (Tue, 12 Sep 2006) | 1 line +r272 | delaco | 2006-09-12 19:51:12 +0200 (Tue, 12 Sep 2006) | 1 line MySQL Build-Fix. ------------------------------------------------------------------------ -r271 | ms | 2006-09-11 23:47:34 +0400 (Mon, 11 Sep 2006) | 1 line +r271 | ms | 2006-09-11 21:47:34 +0200 (Mon, 11 Sep 2006) | 1 line Vergessen es ins BuildScript zu machen. ------------------------------------------------------------------------ -r270 | ms | 2006-09-11 23:37:42 +0400 (Mon, 11 Sep 2006) | 4 lines +r270 | ms | 2006-09-11 21:37:42 +0200 (Mon, 11 Sep 2006) | 4 lines Hinzugefuegt: * MySQL 5.0.24a Geaendert: * Konsolentyp umgestellt fuer MC. ------------------------------------------------------------------------ -r269 | ms | 2006-09-11 17:46:05 +0400 (Mon, 11 Sep 2006) | 1 line +r269 | ms | 2006-09-11 15:46:05 +0200 (Mon, 11 Sep 2006) | 1 line QoS-Improvements. ------------------------------------------------------------------------ -r268 | ms | 2006-09-10 23:52:20 +0400 (Sun, 10 Sep 2006) | 5 lines +r268 | ms | 2006-09-10 21:52:20 +0200 (Sun, 10 Sep 2006) | 5 lines Geaendert: * Squid auf neuesten Stand gebracht. @@ -3486,14 +3690,14 @@ Geaendert: * Kleines Script fuer Sprachdateiupdates. ------------------------------------------------------------------------ -r267 | ms | 2006-09-03 00:18:51 +0400 (Sun, 03 Sep 2006) | 4 lines +r267 | ms | 2006-09-02 22:18:51 +0200 (Sat, 02 Sep 2006) | 4 lines Hinzugefuegt: - * QoS-Graphen jetzt auch für Unterklassen. + * QoS-Graphen jetzt auch f?\195?\188r Unterklassen. Fix: * restartsquid killt jetzt auch squidGuard. ------------------------------------------------------------------------ -r266 | ms | 2006-09-02 16:21:49 +0400 (Sat, 02 Sep 2006) | 6 lines +r266 | ms | 2006-09-02 14:21:49 +0200 (Sat, 02 Sep 2006) | 6 lines Geaendert: * redirect-Seite @@ -3502,31 +3706,31 @@ Geaendert: Hinzugefuegt: * Samba.cgi - experimental ------------------------------------------------------------------------ -r265 | ms | 2006-08-30 22:56:53 +0400 (Wed, 30 Aug 2006) | 1 line +r265 | ms | 2006-08-30 20:56:53 +0200 (Wed, 30 Aug 2006) | 1 line Direkt ein Fix fuer eben genannte Sachen... ------------------------------------------------------------------------ -r264 | ms | 2006-08-30 22:29:15 +0400 (Wed, 30 Aug 2006) | 3 lines +r264 | ms | 2006-08-30 20:29:15 +0200 (Wed, 30 Aug 2006) | 3 lines Geaendert: * Pakete haben jetzt die Endung .ipfire * Kleiner Logikfehler im ConnScheduler ------------------------------------------------------------------------ -r263 | delaco | 2006-08-30 17:10:09 +0400 (Wed, 30 Aug 2006) | 1 line +r263 | delaco | 2006-08-30 15:10:09 +0200 (Wed, 30 Aug 2006) | 1 line Typo in der Make.sh, die die LibMAD nicht bauen lies. Sorry :( ------------------------------------------------------------------------ -r262 | delaco | 2006-08-30 01:23:05 +0400 (Wed, 30 Aug 2006) | 1 line +r262 | delaco | 2006-08-29 23:23:05 +0200 (Tue, 29 Aug 2006) | 1 line IPCop-Source 1.4.11 eingefuegt ------------------------------------------------------------------------ -r261 | ms | 2006-08-29 19:56:35 +0400 (Tue, 29 Aug 2006) | 3 lines +r261 | ms | 2006-08-29 17:56:35 +0200 (Tue, 29 Aug 2006) | 3 lines Hinzugefuegt: * VLC und seine Libs. EXPERIMENTAL! ------------------------------------------------------------------------ -r260 | ms | 2006-08-28 21:42:07 +0400 (Mon, 28 Aug 2006) | 5 lines +r260 | ms | 2006-08-28 19:42:07 +0200 (Mon, 28 Aug 2006) | 5 lines Hinzugefuegt: * Nagios 2.5 mit Plugins @@ -3534,7 +3738,7 @@ Programmupdate: * GD 2.0.20 --> 2.0.33 ------------------------------------------------------------------------ -r259 | ms | 2006-08-28 18:18:38 +0400 (Mon, 28 Aug 2006) | 5 lines +r259 | ms | 2006-08-28 16:18:38 +0200 (Mon, 28 Aug 2006) | 5 lines Hinzugefuegt: * Load Average Graphen @@ -3542,7 +3746,7 @@ Geaendert: * MC - Tasten F1 bis F5 sollten wieder gehen. ------------------------------------------------------------------------ -r258 | ms | 2006-08-26 17:20:12 +0400 (Sat, 26 Aug 2006) | 6 lines +r258 | ms | 2006-08-26 15:20:12 +0200 (Sat, 26 Aug 2006) | 6 lines Hinzugefuegt: * QoS-Graphen - Erste Version! @@ -3551,7 +3755,7 @@ Pakete: * Depends.txt in alle eingefuegt * Clamav bearbeitet ------------------------------------------------------------------------ -r257 | ms | 2006-08-26 12:42:48 +0400 (Sat, 26 Aug 2006) | 5 lines +r257 | ms | 2006-08-26 10:42:48 +0200 (Sat, 26 Aug 2006) | 5 lines Update: * Pakfire! @@ -3559,7 +3763,7 @@ Fixes: * ConnScheduler ------------------------------------------------------------------------ -r256 | ms | 2006-08-24 01:55:46 +0400 (Thu, 24 Aug 2006) | 8 lines +r256 | ms | 2006-08-23 23:55:46 +0200 (Wed, 23 Aug 2006) | 8 lines Hinzugefuegt: * Copyrighthinweise der externen Addons, @@ -3570,34 +3774,34 @@ Hinzugefuegt: es fuer noetig hielten, dass die Copyrighthinweise in jeder Datei zu finden sind.) ------------------------------------------------------------------------ -r255 | ms | 2006-08-23 23:19:22 +0400 (Wed, 23 Aug 2006) | 4 lines +r255 | ms | 2006-08-23 21:19:22 +0200 (Wed, 23 Aug 2006) | 4 lines Update: * QoS ist funktionsfig (hoffentlich). * "Aktualisieren" aus Log entfernt. * In der header.pl aufgeraeumt. ------------------------------------------------------------------------ -r254 | ms | 2006-08-21 23:15:32 +0400 (Mon, 21 Aug 2006) | 4 lines +r254 | ms | 2006-08-21 21:15:32 +0200 (Mon, 21 Aug 2006) | 4 lines Programmupdate: * Samba 3.0.23a --> 3.0.23b -Geändert: +Ge?\195?\164ndert: * ConnectionScheduler kann jetzt VPNs starten/beenden. ------------------------------------------------------------------------ -r253 | ms | 2006-08-21 00:12:57 +0400 (Mon, 21 Aug 2006) | 5 lines +r253 | ms | 2006-08-20 22:12:57 +0200 (Sun, 20 Aug 2006) | 5 lines Fixes: - * libPNG12 fehlte für makegraphs + * libPNG12 fehlte f?\195?\188r makegraphs * md5sums erhielten den falschen Namen (ohne Unterstrich) -Geändert: +Ge?\195?\164ndert: * QoS leicht erweitert. ------------------------------------------------------------------------ -r252 | ms | 2006-08-20 00:26:47 +0400 (Sun, 20 Aug 2006) | 2 lines +r252 | ms | 2006-08-19 22:26:47 +0200 (Sat, 19 Aug 2006) | 2 lines Geaendert: * LibPNG-Files-Fix ------------------------------------------------------------------------ -r251 | ms | 2006-08-19 22:09:18 +0400 (Sat, 19 Aug 2006) | 5 lines +r251 | ms | 2006-08-19 20:09:18 +0200 (Sat, 19 Aug 2006) | 5 lines Programmupdate: * CUPS --> 1.2.2 @@ -3605,7 +3809,7 @@ Geandert: * Installer-Message ------------------------------------------------------------------------ -r250 | ms | 2006-08-19 15:04:41 +0400 (Sat, 19 Aug 2006) | 13 lines +r250 | ms | 2006-08-19 13:04:41 +0200 (Sat, 19 Aug 2006) | 13 lines Quellenupdate: * tcpdump/glibc/wget/libpng/vlan/expect/vim @@ -3621,224 +3825,224 @@ Hinzugefuegt: * IPTraf 3.0.0 ------------------------------------------------------------------------ -r249 | ms | 2006-08-18 14:51:18 +0400 (Fri, 18 Aug 2006) | 3 lines +r249 | ms | 2006-08-18 12:51:18 +0200 (Fri, 18 Aug 2006) | 3 lines Update: - * Pakfire - umfassende Änderungen und Erweiterungen + * Pakfire - umfassende ?\195?\132nderungen und Erweiterungen ------------------------------------------------------------------------ -r248 | ms | 2006-08-15 23:27:20 +0400 (Tue, 15 Aug 2006) | 3 lines +r248 | ms | 2006-08-15 21:27:20 +0200 (Tue, 15 Aug 2006) | 3 lines -Geändert: - * Sources-CD-Upload is abwählbar, da >500MB. +Ge?\195?\164ndert: + * Sources-CD-Upload is abw?\195?\164hlbar, da >500MB. ------------------------------------------------------------------------ -r247 | ms | 2006-08-14 23:00:12 +0400 (Mon, 14 Aug 2006) | 3 lines +r247 | ms | 2006-08-14 21:00:12 +0200 (Mon, 14 Aug 2006) | 3 lines -Geändert: +Ge?\195?\164ndert: * Kernel-ISO-Fix! ------------------------------------------------------------------------ -r246 | ms | 2006-08-14 22:50:24 +0400 (Mon, 14 Aug 2006) | 5 lines +r246 | ms | 2006-08-14 20:50:24 +0200 (Mon, 14 Aug 2006) | 5 lines -Geändert: +Ge?\195?\164ndert: * Zaptel gefixt. -Hinzugefügt: +Hinzugef?\195?\188gt: * Portmap-Paket ------------------------------------------------------------------------ -r245 | ms | 2006-08-14 00:34:14 +0400 (Mon, 14 Aug 2006) | 5 lines +r245 | ms | 2006-08-13 22:34:14 +0200 (Sun, 13 Aug 2006) | 5 lines Update: * KERNEL 2.4.33 -Geändert: - * Uploadverhalten überarbeitet. +Ge?\195?\164ndert: + * Uploadverhalten ?\195?\188berarbeitet. ------------------------------------------------------------------------ -r244 | ms | 2006-08-12 19:16:04 +0400 (Sat, 12 Aug 2006) | 3 lines +r244 | ms | 2006-08-12 17:16:04 +0200 (Sat, 12 Aug 2006) | 3 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * GFXBoot - experimental ------------------------------------------------------------------------ -r243 | ms | 2006-08-12 16:40:44 +0400 (Sat, 12 Aug 2006) | 3 lines +r243 | ms | 2006-08-12 14:40:44 +0200 (Sat, 12 Aug 2006) | 3 lines Update: * Asterisk und Konsorten auf neuesten Stand gebracht. ------------------------------------------------------------------------ -r242 | ms | 2006-08-09 21:15:33 +0400 (Wed, 09 Aug 2006) | 6 lines +r242 | ms | 2006-08-09 19:15:33 +0200 (Wed, 09 Aug 2006) | 6 lines Update: * Clamav aktualisiert -Hinzugefügt: - * Sox und nötige Libs (libogg, libvorbis). +Hinzugef?\195?\188gt: + * Sox und n?\195?\182tige Libs (libogg, libvorbis). * Asterisk-Paket ------------------------------------------------------------------------ -r241 | ms | 2006-08-09 18:51:31 +0400 (Wed, 09 Aug 2006) | 2 lines +r241 | ms | 2006-08-09 16:51:31 +0200 (Wed, 09 Aug 2006) | 2 lines OpenVPN/ZERINA-Update. ------------------------------------------------------------------------ -r240 | linuxadmin | 2006-08-09 00:53:05 +0400 (Wed, 09 Aug 2006) | 3 lines +r240 | linuxadmin | 2006-08-08 22:53:05 +0200 (Tue, 08 Aug 2006) | 3 lines Sicherheitsabfrage ins make.sh fuer die commit Option eingebracht linuxadmin ------------------------------------------------------------------------ -r239 | ms | 2006-08-07 23:02:40 +0400 (Mon, 07 Aug 2006) | 7 lines +r239 | ms | 2006-08-07 21:02:40 +0200 (Mon, 07 Aug 2006) | 7 lines Update: * GnuPG aktualisiert. -Hinzugefügt: - * Möglichkeit eine Quellen-ISO zu erstellen. - * Patch für einen SiS-Chipsatz. +Hinzugef?\195?\188gt: + * M?\195?\182glichkeit eine Quellen-ISO zu erstellen. + * Patch f?\195?\188r einen SiS-Chipsatz. * /home/nobody ------------------------------------------------------------------------ -r238 | ms | 2006-08-07 00:07:18 +0400 (Mon, 07 Aug 2006) | 5 lines +r238 | ms | 2006-08-06 22:07:18 +0200 (Sun, 06 Aug 2006) | 5 lines -Geändert: +Ge?\195?\164ndert: * NEUER KERNEL 2.4.31 --> 2.4.32... EXPERIMENTAL!!! - * Fix für mldonkey... + * Fix f?\195?\188r mldonkey... * Bootsplash-Patch gefixt. Unsinnige Sache entfernt. ------------------------------------------------------------------------ -r237 | delaco | 2006-08-03 14:03:21 +0400 (Thu, 03 Aug 2006) | 3 lines +r237 | delaco | 2006-08-03 12:03:21 +0200 (Thu, 03 Aug 2006) | 3 lines Geaendert: * AutoScripts erweitert. ------------------------------------------------------------------------ -r236 | delaco | 2006-08-02 16:24:44 +0400 (Wed, 02 Aug 2006) | 3 lines +r236 | delaco | 2006-08-02 14:24:44 +0200 (Wed, 02 Aug 2006) | 3 lines Geaendert: * connections.cgi gefixt. ------------------------------------------------------------------------ -r235 | delaco | 2006-07-31 21:54:27 +0400 (Mon, 31 Jul 2006) | 3 lines +r235 | delaco | 2006-07-31 19:54:27 +0200 (Mon, 31 Jul 2006) | 3 lines Automatisches Build-Script Proxy-ACL gefixt. ------------------------------------------------------------------------ -r234 | ms | 2006-07-31 00:33:21 +0400 (Mon, 31 Jul 2006) | 3 lines +r234 | ms | 2006-07-30 22:33:21 +0200 (Sun, 30 Jul 2006) | 3 lines -Geändert: +Ge?\195?\164ndert: * Xinetd-Swat-Fix ------------------------------------------------------------------------ -r233 | ms | 2006-07-31 00:13:22 +0400 (Mon, 31 Jul 2006) | 4 lines +r233 | ms | 2006-07-30 22:13:22 +0200 (Sun, 30 Jul 2006) | 4 lines -Hinzugefügt: - * Ein tftp-Server für space. - * xinetd standardmäßig installiert in der ISO. +Hinzugef?\195?\188gt: + * Ein tftp-Server f?\195?\188r space. + * xinetd standardm?\195?\164?\195?\159ig installiert in der ISO. ------------------------------------------------------------------------ -r232 | delaco | 2006-07-27 23:41:13 +0400 (Thu, 27 Jul 2006) | 4 lines +r232 | delaco | 2006-07-27 21:41:13 +0200 (Thu, 27 Jul 2006) | 4 lines Update: * Neue GeoIP-Datenbank. Dank an eXciter. * Einige Schritt auf dem Weg zu vollautomatisieren Build-Scripts. ------------------------------------------------------------------------ -r231 | delaco | 2006-07-26 22:08:22 +0400 (Wed, 26 Jul 2006) | 2 lines +r231 | delaco | 2006-07-26 20:08:22 +0200 (Wed, 26 Jul 2006) | 2 lines Update: * Samba 3.0.23a ------------------------------------------------------------------------ -r230 | delaco | 2006-07-26 19:03:41 +0400 (Wed, 26 Jul 2006) | 3 lines +r230 | delaco | 2006-07-26 17:03:41 +0200 (Wed, 26 Jul 2006) | 3 lines Gedaendert: * Neues Silent-Bild von CaseMaster. ------------------------------------------------------------------------ -r229 | ms | 2006-07-25 20:32:37 +0400 (Tue, 25 Jul 2006) | 3 lines +r229 | ms | 2006-07-25 18:32:37 +0200 (Tue, 25 Jul 2006) | 3 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Neue Routinen in der ./make.sh ------------------------------------------------------------------------ -r228 | delaco | 2006-07-24 21:28:23 +0400 (Mon, 24 Jul 2006) | 4 lines +r228 | delaco | 2006-07-24 19:28:23 +0200 (Mon, 24 Jul 2006) | 4 lines Hinzugefuegt: * Mldonkey-Paket * Noch eine Funktion in die ./make.sh ------------------------------------------------------------------------ -r227 | ms | 2006-07-24 20:07:15 +0400 (Mon, 24 Jul 2006) | 3 lines +r227 | ms | 2006-07-24 18:07:15 +0200 (Mon, 24 Jul 2006) | 3 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Benutzer: mldonkey ------------------------------------------------------------------------ -r226 | ms | 2006-07-24 19:49:37 +0400 (Mon, 24 Jul 2006) | 5 lines +r226 | ms | 2006-07-24 17:49:37 +0200 (Mon, 24 Jul 2006) | 5 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Mldonkey 2.7.7 * Ocaml - letzte Version. * Net-Config ins Webinterface. ------------------------------------------------------------------------ -r225 | delaco | 2006-07-24 19:35:54 +0400 (Mon, 24 Jul 2006) | 2 lines +r225 | delaco | 2006-07-24 17:35:54 +0200 (Mon, 24 Jul 2006) | 2 lines Geaendert: * Fixes wegen des MC. ------------------------------------------------------------------------ -r224 | linuxadmin | 2006-07-24 02:54:18 +0400 (Mon, 24 Jul 2006) | 2 lines +r224 | linuxadmin | 2006-07-24 00:54:18 +0200 (Mon, 24 Jul 2006) | 2 lines make.sh um die Option commit erweitert ------------------------------------------------------------------------ -r223 | linuxadmin | 2006-07-24 02:28:30 +0400 (Mon, 24 Jul 2006) | 2 lines +r223 | linuxadmin | 2006-07-24 00:28:30 +0200 (Mon, 24 Jul 2006) | 2 lines Make.sh erweitert ------------------------------------------------------------------------ -r222 | ms | 2006-07-24 00:41:53 +0400 (Mon, 24 Jul 2006) | 3 lines +r222 | ms | 2006-07-23 22:41:53 +0200 (Sun, 23 Jul 2006) | 3 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Bessere Steuerung durch ein Script nach der Idee von linuxadmin. ------------------------------------------------------------------------ -r221 | linuxadmin | 2006-07-24 00:35:40 +0400 (Mon, 24 Jul 2006) | 3 lines +r221 | linuxadmin | 2006-07-23 22:35:40 +0200 (Sun, 23 Jul 2006) | 3 lines -Geändert: +Ge?\195?\164ndert: * Bugfix #18 - Anpassung des IPSec GUIs ------------------------------------------------------------------------ -r220 | ms | 2006-07-23 21:15:05 +0400 (Sun, 23 Jul 2006) | 3 lines +r220 | ms | 2006-07-23 19:15:05 +0200 (Sun, 23 Jul 2006) | 3 lines Update: - * QoS-Script ist so gut wie funktionsfähig. + * QoS-Script ist so gut wie funktionsf?\195?\164hig. ------------------------------------------------------------------------ -r219 | ms | 2006-07-23 17:44:16 +0400 (Sun, 23 Jul 2006) | 4 lines +r219 | ms | 2006-07-23 15:44:16 +0200 (Sun, 23 Jul 2006) | 4 lines -Geändert: +Ge?\195?\164ndert: * QoS.cgi weiter ausgebaut. * Kein PostgreSQL mehr. - Kann man ggf. nachinstallieren. ------------------------------------------------------------------------ -r218 | ms | 2006-07-22 18:45:11 +0400 (Sat, 22 Jul 2006) | 3 lines +r218 | ms | 2006-07-22 16:45:11 +0200 (Sat, 22 Jul 2006) | 3 lines Update: * Neuer Clamav. ------------------------------------------------------------------------ -r217 | ms | 2006-07-22 18:33:17 +0400 (Sat, 22 Jul 2006) | 8 lines +r217 | ms | 2006-07-22 16:33:17 +0200 (Sat, 22 Jul 2006) | 8 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Cron-Ordner. - * Eine Perl-Datei für den GNUmp3d hinzugefügt. + * Eine Perl-Datei f?\195?\188r den GNUmp3d hinzugef?\195?\188gt. * run-parts-Script. -Geändert: - * Versucht das QoS kompatibel für den IE zu machen. +Ge?\195?\164ndert: + * Versucht das QoS kompatibel f?\195?\188r den IE zu machen. * Bootsplashbar wird nichtmehr im Textmodus versucht einzublenden. ------------------------------------------------------------------------ -r216 | delaco | 2006-07-21 19:10:50 +0400 (Fri, 21 Jul 2006) | 5 lines +r216 | delaco | 2006-07-21 17:10:50 +0200 (Fri, 21 Jul 2006) | 5 lines Geaendert: * Kernel-Multicast entfernt. @@ -3846,7 +4050,7 @@ Geaendert: * Etherwake gefixt. * Shutdown-Balken umgekehrt. ------------------------------------------------------------------------ -r215 | delaco | 2006-07-20 20:31:37 +0400 (Thu, 20 Jul 2006) | 6 lines +r215 | delaco | 2006-07-20 18:31:37 +0200 (Thu, 20 Jul 2006) | 6 lines Geaendert: * Grauer Hintergrund der Hardware-Graphen geaendert. @@ -3855,7 +4059,7 @@ Geaendert: * Viele Sachen gefixt... ------------------------------------------------------------------------ -r214 | delaco | 2006-07-19 18:59:29 +0400 (Wed, 19 Jul 2006) | 6 lines +r214 | delaco | 2006-07-19 16:59:29 +0200 (Wed, 19 Jul 2006) | 6 lines Hinzugefuegt: * Interface fuer den Benutzer dial. @@ -3864,7 +4068,7 @@ Geandert: * makegraphs gefixt. ------------------------------------------------------------------------ -r213 | delaco | 2006-07-19 15:46:26 +0400 (Wed, 19 Jul 2006) | 9 lines +r213 | delaco | 2006-07-19 13:46:26 +0200 (Wed, 19 Jul 2006) | 9 lines Geaendert: * Neuer Ladebalken, in rot und gelb. Jetzt auch bein Herunterfahren. @@ -3876,64 +4080,64 @@ Geloescht: * Morningreconnect-Script. ------------------------------------------------------------------------ -r212 | delaco | 2006-07-18 22:10:21 +0400 (Tue, 18 Jul 2006) | 4 lines +r212 | delaco | 2006-07-18 20:10:21 +0200 (Tue, 18 Jul 2006) | 4 lines Hinzugefuegt: * Promise-Sata-300 und SataII-150-Kernel-Modul hinzugefuegt fuer SMP und einen Prozessor. * Morningreconnect in den ConnScheduler gelegt. ------------------------------------------------------------------------ -r211 | ms | 2006-07-17 22:18:39 +0400 (Mon, 17 Jul 2006) | 4 lines +r211 | ms | 2006-07-17 20:18:39 +0200 (Mon, 17 Jul 2006) | 4 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Wake-On-Lan * Connection-Scheduler ------------------------------------------------------------------------ -r210 | ms | 2006-07-17 19:36:55 +0400 (Mon, 17 Jul 2006) | 10 lines +r210 | ms | 2006-07-17 17:36:55 +0200 (Mon, 17 Jul 2006) | 10 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Hddtemp war nicht in der ISO... - * Smartmontools für HDD-Überwachung. - * MBMon zur Temperatur- und Drehzahl-Überwachung. + * Smartmontools f?\195?\188r HDD-?\195?\156berwachung. + * MBMon zur Temperatur- und Drehzahl-?\195?\156berwachung. * ./make.sh build-only Anmerkung: * Die Graphen sind noch nicht ganz implementiert. - Muss nochmal aufgeräumt und vor allem die Sprach- - bezeichnungen müssen angepasst werden. + Muss nochmal aufger?\195?\164umt und vor allem die Sprach- + bezeichnungen m?\195?\188ssen angepasst werden. ------------------------------------------------------------------------ -r209 | ms | 2006-07-17 13:50:24 +0400 (Mon, 17 Jul 2006) | 3 lines +r209 | ms | 2006-07-17 11:50:24 +0200 (Mon, 17 Jul 2006) | 3 lines -Hinzugefügt: - * Kernel multicast-fähig. +Hinzugef?\195?\188gt: + * Kernel multicast-f?\195?\164hig. ------------------------------------------------------------------------ -r208 | ms | 2006-07-14 20:28:20 +0400 (Fri, 14 Jul 2006) | 5 lines +r208 | ms | 2006-07-14 18:28:20 +0200 (Fri, 14 Jul 2006) | 5 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Errorseite von Linuxadmin. -Geändert: - * Bisschen an der make.sh aufgeräumt und verbessert. +Ge?\195?\164ndert: + * Bisschen an der make.sh aufger?\195?\164umt und verbessert. ------------------------------------------------------------------------ -r207 | ms | 2006-07-14 19:53:44 +0400 (Fri, 14 Jul 2006) | 8 lines +r207 | ms | 2006-07-14 17:53:44 +0200 (Fri, 14 Jul 2006) | 8 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Unzip in die ISO gebaut. * QoS-Kontroll-Binary. -Geändert: +Ge?\195?\164ndert: * Asterisk in seine Einzelteile gespalten, damit das Paket kleiner und einfach zu updaten wird. * Neuer Asterisk, LibPRI, Bristuff usw... * QoS-Scripts aktualisiert. ------------------------------------------------------------------------ -r206 | casemaster | 2006-07-11 12:57:13 +0400 (Tue, 11 Jul 2006) | 2 lines +r206 | casemaster | 2006-07-11 10:57:13 +0200 (Tue, 11 Jul 2006) | 2 lines -fixup initrd - Änderung von ipcoprd.img nach ipfirerd.img +fixup initrd - ?\195?\132nderung von ipcoprd.img nach ipfirerd.img ------------------------------------------------------------------------ -r205 | delaco | 2006-07-10 20:38:56 +0400 (Mon, 10 Jul 2006) | 10 lines +r205 | delaco | 2006-07-10 18:38:56 +0200 (Mon, 10 Jul 2006) | 10 lines Hinzugefuegt: * p2protocols-Datei, die vergessen wurde. @@ -3946,27 +4150,27 @@ Geaendert: * Im SSH den Zertifikatslogin per default ausgemacht. ------------------------------------------------------------------------ -r204 | ms | 2006-07-07 19:53:12 +0400 (Fri, 07 Jul 2006) | 3 lines +r204 | ms | 2006-07-07 17:53:12 +0200 (Fri, 07 Jul 2006) | 3 lines -Hinzugefügt: - * WebGUI für die ausgehende Firewall. +Hinzugef?\195?\188gt: + * WebGUI f?\195?\188r die ausgehende Firewall. ------------------------------------------------------------------------ -r203 | ms | 2006-07-07 15:42:26 +0400 (Fri, 07 Jul 2006) | 4 lines +r203 | ms | 2006-07-07 13:42:26 +0200 (Fri, 07 Jul 2006) | 4 lines -Geändert: - * Änderungen am Installer. +Ge?\195?\164ndert: + * ?\195?\132nderungen am Installer. * Fix im header.pl. ------------------------------------------------------------------------ -r202 | ms | 2006-07-07 00:51:35 +0400 (Fri, 07 Jul 2006) | 4 lines +r202 | ms | 2006-07-06 22:51:35 +0200 (Thu, 06 Jul 2006) | 4 lines Bugfixes: * SCSI-SMP-Kernel vergessen. * scsigrub.conf war fehlerhaft und nicht komplett. ------------------------------------------------------------------------ -r201 | ms | 2006-07-07 00:15:31 +0400 (Fri, 07 Jul 2006) | 8 lines +r201 | ms | 2006-07-06 22:15:31 +0200 (Thu, 06 Jul 2006) | 8 lines Bugfixes: * Framebufferdevices @@ -3977,248 +4181,248 @@ Bugfixes: * Installer gefixt. ------------------------------------------------------------------------ -r200 | ms | 2006-07-06 17:38:27 +0400 (Thu, 06 Jul 2006) | 3 lines +r200 | ms | 2006-07-06 15:38:27 +0200 (Thu, 06 Jul 2006) | 3 lines -Geändert: +Ge?\195?\164ndert: * Bootsplash im SVN verschoben, da nur noch einer vorhanden ist. ------------------------------------------------------------------------ -r199 | ms | 2006-07-06 17:33:16 +0400 (Thu, 06 Jul 2006) | 7 lines +r199 | ms | 2006-07-06 15:33:16 +0200 (Thu, 06 Jul 2006) | 7 lines -Hinzugefügt: - * Nodes für Framebuffer. -Geändert: - * Bootvorgang für Laufbalken bearbeitet. +Hinzugef?\195?\188gt: + * Nodes f?\195?\188r Framebuffer. +Ge?\195?\164ndert: + * Bootvorgang f?\195?\188r Laufbalken bearbeitet. * Installer sollte Bootsplash in initrd installieren. * Neue Boot-Bilder. ------------------------------------------------------------------------ -r198 | ms | 2006-07-06 14:24:53 +0400 (Thu, 06 Jul 2006) | 3 lines +r198 | ms | 2006-07-06 12:24:53 +0200 (Thu, 06 Jul 2006) | 3 lines -Geändert: +Ge?\195?\164ndert: * Bootsplash-Software-Update. ------------------------------------------------------------------------ -r197 | ms | 2006-07-06 01:22:59 +0400 (Thu, 06 Jul 2006) | 6 lines +r197 | ms | 2006-07-05 23:22:59 +0200 (Wed, 05 Jul 2006) | 6 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Fehlende Grafik. * QoS-Script, das aus den Einstellungen ein Bashscript generiert. -Geändert: +Ge?\195?\164ndert: * QoS-CGI-Update. ------------------------------------------------------------------------ -r196 | casemaster | 2006-07-04 22:10:48 +0400 (Tue, 04 Jul 2006) | 2 lines +r196 | casemaster | 2006-07-04 20:10:48 +0200 (Tue, 04 Jul 2006) | 2 lines Korrekturen ------------------------------------------------------------------------ -r195 | ms | 2006-07-04 20:00:11 +0400 (Tue, 04 Jul 2006) | 4 lines +r195 | ms | 2006-07-04 18:00:11 +0200 (Tue, 04 Jul 2006) | 4 lines -Geändert: +Ge?\195?\164ndert: * Paar Pfade in den Bootsplash-Configs verbogen. - * Hintergundbilder für die Konsolen gesetzt. (Ich hoffe das klappt so.) + * Hintergundbilder f?\195?\188r die Konsolen gesetzt. (Ich hoffe das klappt so.) ------------------------------------------------------------------------ -r194 | ms | 2006-07-04 18:44:19 +0400 (Tue, 04 Jul 2006) | 7 lines +r194 | ms | 2006-07-04 16:44:19 +0200 (Tue, 04 Jul 2006) | 7 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Neuer Bootsplash. - Anders organisiert. - * Passwort für User Cyrus. -Geändert: + * Passwort f?\195?\188r User Cyrus. +Ge?\195?\164ndert: * Install-Message in deutsch. - * Grub.conf angepasst für Bootsplash (nur IDE). + * Grub.conf angepasst f?\195?\188r Bootsplash (nur IDE). ------------------------------------------------------------------------ -r193 | ms | 2006-07-03 22:50:48 +0400 (Mon, 03 Jul 2006) | 5 lines +r193 | ms | 2006-07-03 20:50:48 +0200 (Mon, 03 Jul 2006) | 5 lines -Geändert: +Ge?\195?\164ndert: * Umfassende Fixes beim URL-Filter. - Erfolgreich getestet. * Falsche MD5-Sum in lfs/freetype - * Dateien in ISO geschoben und noch überflüssige gelöscht. + * Dateien in ISO geschoben und noch ?\195?\188berfl?\195?\188ssige gel?\195?\182scht. ------------------------------------------------------------------------ -r192 | ms | 2006-07-02 15:54:34 +0400 (Sun, 02 Jul 2006) | 4 lines +r192 | ms | 2006-07-02 13:54:34 +0200 (Sun, 02 Jul 2006) | 4 lines -Hinzugefügt: - * Libs und Fonts für Bootsplash +Hinzugef?\195?\188gt: + * Libs und Fonts f?\195?\188r Bootsplash * Bootsplash-Binaries selber ------------------------------------------------------------------------ -r191 | casemaster | 2006-07-02 13:16:40 +0400 (Sun, 02 Jul 2006) | 2 lines +r191 | casemaster | 2006-07-02 11:16:40 +0200 (Sun, 02 Jul 2006) | 2 lines Das Build wird jetzt im Browserkopf angezeigt ------------------------------------------------------------------------ -r190 | casemaster | 2006-07-02 02:15:17 +0400 (Sun, 02 Jul 2006) | 2 lines +r190 | casemaster | 2006-07-02 00:15:17 +0200 (Sun, 02 Jul 2006) | 2 lines -Änderung am Linux-Kernel (BootSplash) +?\195?\132nderung am Linux-Kernel (BootSplash) ------------------------------------------------------------------------ -r189 | casemaster | 2006-07-01 23:50:22 +0400 (Sat, 01 Jul 2006) | 3 lines +r189 | casemaster | 2006-07-01 21:50:22 +0200 (Sat, 01 Jul 2006) | 3 lines -Fehlende Datei für Bootsplash nachgereicht. +Fehlende Datei f?\195?\188r Bootsplash nachgereicht. ------------------------------------------------------------------------ -r188 | ms | 2006-07-01 18:36:04 +0400 (Sat, 01 Jul 2006) | 5 lines +r188 | ms | 2006-07-01 16:36:04 +0200 (Sat, 01 Jul 2006) | 5 lines -Geändert: +Ge?\195?\164ndert: * URL-Filter gefixt. - * Überblendungen sind an- und ausschaltbar. - * GLIB in ISO für MC. + * ?\195?\156berblendungen sind an- und ausschaltbar. + * GLIB in ISO f?\195?\188r MC. ------------------------------------------------------------------------ -r187 | casemaster | 2006-07-01 15:46:39 +0400 (Sat, 01 Jul 2006) | 3 lines +r187 | casemaster | 2006-07-01 13:46:39 +0200 (Sat, 01 Jul 2006) | 3 lines Fehlerbereinigung beim URL-Filter -Anfang für Bootsplash integriert +Anfang f?\195?\188r Bootsplash integriert ------------------------------------------------------------------------ -r186 | ms | 2006-06-30 18:31:17 +0400 (Fri, 30 Jun 2006) | 3 lines +r186 | ms | 2006-06-30 16:31:17 +0200 (Fri, 30 Jun 2006) | 3 lines -Geändert: +Ge?\195?\164ndert: * Leider wurden die CGIs 3x hintereinander in die Datei geschrieben. :( ------------------------------------------------------------------------ -r185 | ms | 2006-06-30 18:25:35 +0400 (Fri, 30 Jun 2006) | 3 lines +r185 | ms | 2006-06-30 16:25:35 +0200 (Fri, 30 Jun 2006) | 3 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * URL-Filter ------------------------------------------------------------------------ -r184 | ms | 2006-06-30 00:38:22 +0400 (Fri, 30 Jun 2006) | 8 lines +r184 | ms | 2006-06-29 22:38:22 +0200 (Thu, 29 Jun 2006) | 8 lines -Hinzugefügt: - * Kernel trägt den Namen ipfire. - * Perl-Modul für Spamassassin +Hinzugef?\195?\188gt: + * Kernel tr?\195?\164gt den Namen ipfire. + * Perl-Modul f?\195?\188r Spamassassin * Web-Cyradm -Geändert: +Ge?\195?\164ndert: * Postfix kompilierte nicht mit SASL2-Support * GLIB ohne NLS. ------------------------------------------------------------------------ -r183 | ms | 2006-06-27 15:49:06 +0400 (Tue, 27 Jun 2006) | 6 lines +r183 | ms | 2006-06-27 13:49:06 +0200 (Tue, 27 Jun 2006) | 6 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Weitere Fortschritte im QoS-GUI * Cyrus-Konfiguration bearbeitet. Update: * Changelog aktualisiert ------------------------------------------------------------------------ -r182 | ms | 2006-06-25 01:57:29 +0400 (Sun, 25 Jun 2006) | 4 lines +r182 | ms | 2006-06-24 23:57:29 +0200 (Sat, 24 Jun 2006) | 4 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Viele Schritte weiter im QoS-GUI... * Alten IPCop-Shaper aus den Startscripts entfernt. ------------------------------------------------------------------------ -r181 | ms | 2006-06-22 15:54:33 +0400 (Thu, 22 Jun 2006) | 5 lines +r181 | ms | 2006-06-22 13:54:33 +0200 (Thu, 22 Jun 2006) | 5 lines -Geändert: +Ge?\195?\164ndert: * Cyrus-IMAP downgrade auf 2.2.12 mit einer Menge Patches, doch die Probleme bleiben bestehen... - * SSH-Schönheitsfehler im Webinterface behoben. + * SSH-Sch?\195?\182nheitsfehler im Webinterface behoben. ------------------------------------------------------------------------ -r180 | ms | 2006-06-20 22:31:22 +0400 (Tue, 20 Jun 2006) | 7 lines +r180 | ms | 2006-06-20 20:31:22 +0200 (Tue, 20 Jun 2006) | 7 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Consolenprogramme erscheinen nun in Farbe statt in S/W. * MC in die ISO gepackt. - * Pakete für amavisd, nmap, nfs, mailx und spamassassin erstellt. -Geändert: + * Pakete f?\195?\188r amavisd, nmap, nfs, mailx und spamassassin erstellt. +Ge?\195?\164ndert: * IMAP-Ordnerstrukturen des Cyrus-IMAPd angelegt mit richtigen Rechten. ------------------------------------------------------------------------ -r179 | ms | 2006-06-15 21:43:14 +0400 (Thu, 15 Jun 2006) | 5 lines +r179 | ms | 2006-06-15 19:43:14 +0200 (Thu, 15 Jun 2006) | 5 lines -Geändert: - * Postfix - PostgreSQL-Unterstützung herausgenommen. - * HDDTemp-Bezeichnung gekürzt - Dank an masa oder wer das nochmal war :D +Ge?\195?\164ndert: + * Postfix - PostgreSQL-Unterst?\195?\188tzung herausgenommen. + * HDDTemp-Bezeichnung gek?\195?\188rzt - Dank an masa oder wer das nochmal war :D * Konfigurationen der Mailer in die Pakete gepackt. ------------------------------------------------------------------------ -r178 | ms | 2006-06-15 01:19:05 +0400 (Thu, 15 Jun 2006) | 3 lines +r178 | ms | 2006-06-14 23:19:05 +0200 (Wed, 14 Jun 2006) | 3 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * In Mailserverkonfiguration fortgeschritten... ------------------------------------------------------------------------ -r177 | ms | 2006-06-14 21:35:12 +0400 (Wed, 14 Jun 2006) | 7 lines +r177 | ms | 2006-06-14 19:35:12 +0200 (Wed, 14 Jun 2006) | 7 lines -Hinzugefügt: - * Asterisk-Konfigurationsdateien fürs Webinterface. +Hinzugef?\195?\188gt: + * Asterisk-Konfigurationsdateien f?\195?\188rs Webinterface. * Funktionierender Packager. * CUPS-Paket -Geändert: +Ge?\195?\164ndert: * Postfix ohne PostgreSQL ------------------------------------------------------------------------ -r176 | ms | 2006-06-14 14:10:01 +0400 (Wed, 14 Jun 2006) | 5 lines +r176 | ms | 2006-06-14 12:10:01 +0200 (Wed, 14 Jun 2006) | 5 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * qos.cgi - Geht noch so gut wie nix. -Geändert: +Ge?\195?\164ndert: * hddshutdown funktioniert nun. ------------------------------------------------------------------------ -r175 | ms | 2006-06-14 01:05:40 +0400 (Wed, 14 Jun 2006) | 4 lines +r175 | ms | 2006-06-13 23:05:40 +0200 (Tue, 13 Jun 2006) | 4 lines -Geändert: +Ge?\195?\164ndert: * Packager neu erstellt. XAMPP Paket noch nicht drin. ERRORS! :( ------------------------------------------------------------------------ -r174 | casemaster | 2006-06-13 23:46:57 +0400 (Tue, 13 Jun 2006) | 4 lines +r174 | casemaster | 2006-06-13 21:46:57 +0200 (Tue, 13 Jun 2006) | 4 lines Installer: Tastatur "DE" als default Timezone "Europe/Berlin" als default. ------------------------------------------------------------------------ -r173 | ms | 2006-06-13 18:15:51 +0400 (Tue, 13 Jun 2006) | 8 lines +r173 | ms | 2006-06-13 16:15:51 +0200 (Tue, 13 Jun 2006) | 8 lines -Geändert: +Ge?\195?\164ndert: * (experimentelle) httpd.conf * Portproblem gefixt - * snort wieder zurückgesetzt auf die alte Version, da für die neue keine freien Regeln da sind. + * snort wieder zur?\195?\188ckgesetzt auf die alte Version, da f?\195?\188r die neue keine freien Regeln da sind. * Rechtschreibfehler im Installer behoben. - * mpg123 wieder hinzugefügt. + * mpg123 wieder hinzugef?\195?\188gt. * fwhits-Graphs - Kleinigkeit vergessen. ------------------------------------------------------------------------ -r172 | ms | 2006-06-12 22:41:26 +0400 (Mon, 12 Jun 2006) | 4 lines +r172 | ms | 2006-06-12 20:41:26 +0200 (Mon, 12 Jun 2006) | 4 lines -Geändert: +Ge?\195?\164ndert: * Graphs gefixt http://bugtracker.ipfire.eu/view.php?id=8 - * src/paks/*/CONFFILES gelöscht + * src/paks/*/CONFFILES gel?\195?\182scht ------------------------------------------------------------------------ -r171 | ms | 2006-06-12 19:00:19 +0400 (Mon, 12 Jun 2006) | 8 lines +r171 | ms | 2006-06-12 17:00:19 +0200 (Mon, 12 Jun 2006) | 8 lines -Hinzugefügt: - * IPTables ins Webinterface - Muss der Benne nochmal drüberkucken! -Geändert: - * Blinde Datei oh323 gelöscht. +Hinzugef?\195?\188gt: + * IPTables ins Webinterface - Muss der Benne nochmal dr?\195?\188berkucken! +Ge?\195?\164ndert: + * Blinde Datei oh323 gel?\195?\182scht. * Kein sudo-Paket mehr, da bereits in ISO. * makegraphs gefixt wegen hddtemp - * Menü im Webinterface wieder einmal bearbeitet. + * Men?\195?\188 im Webinterface wieder einmal bearbeitet. ------------------------------------------------------------------------ -r170 | casemaster | 2006-06-11 02:38:23 +0400 (Sun, 11 Jun 2006) | 3 lines +r170 | casemaster | 2006-06-11 00:38:23 +0200 (Sun, 11 Jun 2006) | 3 lines Sprachen in den Installer auf DE und EN begrenzt. Deutsch als default. -Abfrage für "alte Konfiguration laden" entfernt. +Abfrage f?\195?\188r "alte Konfiguration laden" entfernt. ------------------------------------------------------------------------ -r169 | casemaster | 2006-06-11 01:17:42 +0400 (Sun, 11 Jun 2006) | 2 lines +r169 | casemaster | 2006-06-10 23:17:42 +0200 (Sat, 10 Jun 2006) | 2 lines Sprachen in den Installer auf DE und EN begrenzt. Deutsch als default. ------------------------------------------------------------------------ -r168 | ms | 2006-06-10 23:21:32 +0400 (Sat, 10 Jun 2006) | 10 lines +r168 | ms | 2006-06-10 21:21:32 +0200 (Sat, 10 Jun 2006) | 10 lines Hinzugefuegt: * SquidGuard - mit Patch damit es mit der DB 4.4.20 funktioniert. @@ -4231,11 +4435,11 @@ Geaendert: * Karsten Rechenbachs Emailadresse in die Credits gebaut. ------------------------------------------------------------------------ -r167 | ms | 2006-06-08 17:17:52 +0400 (Thu, 08 Jun 2006) | 9 lines +r167 | ms | 2006-06-08 15:17:52 +0200 (Thu, 08 Jun 2006) | 9 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Morningreconnect - Danke an Benedikt -Geändert: +Ge?\195?\164ndert: * Stop-Bug im OpenVPN behoben - wieder Danke an Benedikt * CA nach IPFire umbenannt. * Sprachdateien bearbeitet @@ -4243,7 +4447,7 @@ Ge ------------------------------------------------------------------------ -r166 | ms | 2006-06-08 00:31:04 +0400 (Thu, 08 Jun 2006) | 6 lines +r166 | ms | 2006-06-07 22:31:04 +0200 (Wed, 07 Jun 2006) | 6 lines Hinzugefuegt: * CM zu den Credits @@ -4252,291 +4456,291 @@ Hinzugefuegt: * iftop ------------------------------------------------------------------------ -r165 | ms | 2006-06-06 23:31:47 +0400 (Tue, 06 Jun 2006) | 5 lines +r165 | ms | 2006-06-06 21:31:47 +0200 (Tue, 06 Jun 2006) | 5 lines -Geändert: - * Bearbeitetes Startscript für AJ +Ge?\195?\164ndert: + * Bearbeitetes Startscript f?\195?\188r AJ * Changelog aktualisiert. - * Nur noch Deutsch/Englisch für das Webinterface. + * Nur noch Deutsch/Englisch f?\195?\188r das Webinterface. ------------------------------------------------------------------------ -r164 | ms | 2006-06-06 23:12:22 +0400 (Tue, 06 Jun 2006) | 10 lines +r164 | ms | 2006-06-06 21:12:22 +0200 (Tue, 06 Jun 2006) | 10 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Morningreconnect Script -Geändert: +Ge?\195?\164ndert: * Neue Spamassassin Version. 3.1.3 * Interface umfangreich bearbeitet in Layout und angezeigten Texten. * DHCP-Leases-Error gefixt * lq-Graph pingt nun nach www.heise.de - * IP-Anzeige für PPPoE/DSL gefixt. - * Connectionstate vom IPCop übernommen. + * IP-Anzeige f?\195?\188r PPPoE/DSL gefixt. + * Connectionstate vom IPCop ?\195?\188bernommen. ------------------------------------------------------------------------ -r163 | ms | 2006-06-06 16:38:52 +0400 (Tue, 06 Jun 2006) | 10 lines +r163 | ms | 2006-06-06 14:38:52 +0200 (Tue, 06 Jun 2006) | 10 lines -Hinzugefügt: - * Locale-Codes - Perl-Modul für die country.cgi -Geändert: +Hinzugef?\195?\188gt: + * Locale-Codes - Perl-Modul f?\195?\188r die country.cgi +Ge?\195?\164ndert: * Samba OHNE PAM - * Permissions der Flags von GeoIP geändert. + * Permissions der Flags von GeoIP ge?\195?\164ndert. * Samba Paket erstellt. * Wget in die ISO gepackt. - * Startscripte bearbeitet. (IPCop-Überreste) + * Startscripte bearbeitet. (IPCop-?\195?\156berreste) * Sysconfdir von xinetd und Samba verschoben. ------------------------------------------------------------------------ -r162 | ms | 2006-06-05 21:35:00 +0400 (Mon, 05 Jun 2006) | 6 lines +r162 | ms | 2006-06-05 19:35:00 +0200 (Mon, 05 Jun 2006) | 6 lines -Hinzugefügt: - * HDDGraphs für mehrere Festplatten - * Höhere Baudrate in pppsetup.cgi -Geändert: +Hinzugef?\195?\188gt: + * HDDGraphs f?\195?\188r mehrere Festplatten + * H?\195?\182here Baudrate in pppsetup.cgi +Ge?\195?\164ndert: * Sprachen auf DE und EN reduziert. ------------------------------------------------------------------------ -r161 | ms | 2006-06-05 15:51:06 +0400 (Mon, 05 Jun 2006) | 3 lines +r161 | ms | 2006-06-05 13:51:06 +0200 (Mon, 05 Jun 2006) | 3 lines -Geändert: - * HDDTemp wieder aktiviert. Bisher nur das Binary. CGI folgt später. +Ge?\195?\164ndert: + * HDDTemp wieder aktiviert. Bisher nur das Binary. CGI folgt sp?\195?\164ter. ------------------------------------------------------------------------ -r160 | ms | 2006-06-05 15:30:07 +0400 (Mon, 05 Jun 2006) | 11 lines +r160 | ms | 2006-06-05 13:30:07 +0200 (Mon, 05 Jun 2006) | 11 lines -Hinzugefügt: - * Kleiner Tux im Webinterface für den eXciter und den Benne :) -Geändert: - * time.cgi überarbeitet und Funktion verbessert. - * index.cgi - noch ein Paar Fehler behoben oder was hinzugefügt. - * FLASH-Eintrag aus der crontab gelöscht. - * Online-Hilfe-Rettungsringe (die hässlichen) aus den CGIs entfernt. +Hinzugef?\195?\188gt: + * Kleiner Tux im Webinterface f?\195?\188r den eXciter und den Benne :) +Ge?\195?\164ndert: + * time.cgi ?\195?\188berarbeitet und Funktion verbessert. + * index.cgi - noch ein Paar Fehler behoben oder was hinzugef?\195?\188gt. + * FLASH-Eintrag aus der crontab gel?\195?\182scht. + * Online-Hilfe-Rettungsringe (die h?\195?\164sslichen) aus den CGIs entfernt. * Logger von ipcop nach ipfire umgestellt. -Gelöscht: - * Nicht benötigte Reste vom IPCop entfernt. +Gel?\195?\182scht: + * Nicht ben?\195?\182tigte Reste vom IPCop entfernt. ------------------------------------------------------------------------ -r159 | ms | 2006-06-05 03:24:58 +0400 (Mon, 05 Jun 2006) | 4 lines +r159 | ms | 2006-06-05 01:24:58 +0200 (Mon, 05 Jun 2006) | 4 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * OpenVPN in Statusseite. * cftp - FTP-Client grafisch?! ------------------------------------------------------------------------ -r158 | ms | 2006-06-05 02:55:40 +0400 (Mon, 05 Jun 2006) | 4 lines +r158 | ms | 2006-06-05 00:55:40 +0200 (Mon, 05 Jun 2006) | 4 lines -Geändert: - * Webinterfacemenü vervollständigt. - * Pfad im AdvProxy geändert. +Ge?\195?\164ndert: + * Webinterfacemen?\195?\188 vervollst?\195?\164ndigt. + * Pfad im AdvProxy ge?\195?\164ndert. ------------------------------------------------------------------------ -r157 | ms | 2006-06-05 02:29:23 +0400 (Mon, 05 Jun 2006) | 7 lines +r157 | ms | 2006-06-05 00:29:23 +0200 (Mon, 05 Jun 2006) | 7 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Link Quality Graphs -Geändert: +Ge?\195?\164ndert: * index.cgi nochmals bearbeitet. * Benedikt is jetzt ganz aus den Credits raus... Bekommt dann wohl ne Extra-Sonderseite mit Bild und so^^ * OpenVPN in ISO gepackt. ------------------------------------------------------------------------ -r156 | ms | 2006-06-04 20:40:59 +0400 (Sun, 04 Jun 2006) | 5 lines +r156 | ms | 2006-06-04 18:40:59 +0200 (Sun, 04 Jun 2006) | 5 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * fcclassic (auch SMP) -Geändert: +Ge?\195?\164ndert: * Benedikt aus den Credits rausgenommen. Willer nich. :( ------------------------------------------------------------------------ -r155 | ms | 2006-06-04 00:16:53 +0400 (Sun, 04 Jun 2006) | 9 lines +r155 | ms | 2006-06-03 22:16:53 +0200 (Sat, 03 Jun 2006) | 9 lines Update: * Squid 2.5STABLE14 eingepflegt. -Geändert: +Ge?\195?\164ndert: * xinetd Konfiguration verschoben. * OpenVPN Errors behoben. Funktioniert immernoch nicht korrekt. :( * Pakfire bearbeitet. - * Credits erweitert und GPL hinzugefügt. - * index.cgi, völlig neuer Look. + * Credits erweitert und GPL hinzugef?\195?\188gt. + * index.cgi, v?\195?\182llig neuer Look. ------------------------------------------------------------------------ -r154 | ms | 2006-06-03 16:22:38 +0400 (Sat, 03 Jun 2006) | 5 lines +r154 | ms | 2006-06-03 14:22:38 +0200 (Sat, 03 Jun 2006) | 5 lines -Geändert: - * Webinterface Menü bearbeitet. +Ge?\195?\164ndert: + * Webinterface Men?\195?\188 bearbeitet. * Squid-Error gefixt. - * Pakfire gefixt, aber noch nicht funktionsfähig! + * Pakfire gefixt, aber noch nicht funktionsf?\195?\164hig! ------------------------------------------------------------------------ -r153 | ms | 2006-06-02 23:03:53 +0400 (Fri, 02 Jun 2006) | 5 lines +r153 | ms | 2006-06-02 21:03:53 +0200 (Fri, 02 Jun 2006) | 5 lines -Hinzugefügt: - * AdvancedProxy Fähigkeiten -Geändert: +Hinzugef?\195?\188gt: + * AdvancedProxy F?\195?\164higkeiten +Ge?\195?\164ndert: * Kleiner Fehler im OpenVPN GUI verblieben und daher behoben. ------------------------------------------------------------------------ -r152 | ms | 2006-06-02 19:59:39 +0400 (Fri, 02 Jun 2006) | 5 lines +r152 | ms | 2006-06-02 17:59:39 +0200 (Fri, 02 Jun 2006) | 5 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * OpenVPN GUI Alpha7 -Geändert: +Ge?\195?\164ndert: * XAMPP von 1.5.3 --> 1.5.3a ------------------------------------------------------------------------ -r151 | ms | 2006-06-02 16:48:29 +0400 (Fri, 02 Jun 2006) | 5 lines +r151 | ms | 2006-06-02 14:48:29 +0200 (Fri, 02 Jun 2006) | 5 lines -Geändert: +Ge?\195?\164ndert: * Postfix Version 2.2.10 eingepflegt * Cyrus-Paket umbenannt * JAVA-Paket erstellt ------------------------------------------------------------------------ -r150 | ms | 2006-06-01 00:46:41 +0400 (Thu, 01 Jun 2006) | 4 lines +r150 | ms | 2006-05-31 22:46:41 +0200 (Wed, 31 May 2006) | 4 lines Quellenupdate: * popt * sane ------------------------------------------------------------------------ -r149 | ms | 2006-05-31 20:29:08 +0400 (Wed, 31 May 2006) | 6 lines +r149 | ms | 2006-05-31 18:29:08 +0200 (Wed, 31 May 2006) | 6 lines -Hinzugefügt: - * ./make.sh pub lädt die ISO auf den mirror.ipfire.org -Geändert: - * ./make.sh paks verändert. Pakete werden nur noch gebaut, wenn sie noch nicht da sind. - Zum neu bauen einfach das File löschen und beim nächsten durchlauf wird es wieder mitgebaut. +Hinzugef?\195?\188gt: + * ./make.sh pub l?\195?\164dt die ISO auf den mirror.ipfire.org +Ge?\195?\164ndert: + * ./make.sh paks ver?\195?\164ndert. Pakete werden nur noch gebaut, wenn sie noch nicht da sind. + Zum neu bauen einfach das File l?\195?\182schen und beim n?\195?\164chsten durchlauf wird es wieder mitgebaut. ------------------------------------------------------------------------ -r148 | ms | 2006-05-31 14:09:27 +0400 (Wed, 31 May 2006) | 8 lines +r148 | ms | 2006-05-31 12:09:27 +0200 (Wed, 31 May 2006) | 8 lines -Großes Update: -Hinzugefügt: +Gro?\195?\159es Update: +Hinzugef?\195?\188gt: * L7-Protokolle -Geändert: +Ge?\195?\164ndert: * XAMPP 1.5.1 --> 1.5.3 - * Sämtliche "IPCops" durch "IPFire" im Webinterface ersetzt + * S?\195?\164mtliche "IPCops" durch "IPFire" im Webinterface ersetzt * Einige Fixes, wegen Errors im Webinterface. (Im Forum zu finden.) ------------------------------------------------------------------------ -r147 | ms | 2006-05-28 21:57:38 +0400 (Sun, 28 May 2006) | 4 lines +r147 | ms | 2006-05-28 19:57:38 +0200 (Sun, 28 May 2006) | 4 lines BUILDFIXES: - * ROOTFILES überarbeitet. (Ne Menge vergessen.^^) + * ROOTFILES ?\195?\188berarbeitet. (Ne Menge vergessen.^^) * Packages werden nichtmehr im "build" gepackt, sondern mit dem Parameter "paks". ------------------------------------------------------------------------ -r146 | ms | 2006-05-27 14:38:03 +0400 (Sat, 27 May 2006) | 7 lines +r146 | ms | 2006-05-27 12:38:03 +0200 (Sat, 27 May 2006) | 7 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * XAMPP mit Python -Geändert: +Ge?\195?\164ndert: * Installationsprozess von PHPAJ * shutdown.cgi auf ipfire angepasst * Make-Packages.sh behebt jetzt doppelte Dateien in den Pak-Archiven. ------------------------------------------------------------------------ -r145 | ms | 2006-05-26 16:19:48 +0400 (Fri, 26 May 2006) | 6 lines +r145 | ms | 2006-05-26 14:19:48 +0200 (Fri, 26 May 2006) | 6 lines -Geändert: +Ge?\195?\164ndert: * IPCop -> IPFire bei den misc-progs * Startscripte verschoben und Symlink nach /usr/local/bin/rc* -Gelöscht: +Gel?\195?\182scht: * Restartshaping in den Misc-Progs, weil es durch QoS ersetzt wird. ------------------------------------------------------------------------ -r144 | ms | 2006-05-26 14:51:14 +0400 (Fri, 26 May 2006) | 7 lines +r144 | ms | 2006-05-26 12:51:14 +0200 (Fri, 26 May 2006) | 7 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Screen * Applejuice - mit Startscript -Geändert: +Ge?\195?\164ndert: * Xampp-Paket verkleinert. * Lame eingepackt. ------------------------------------------------------------------------ -r143 | ms | 2006-05-26 01:49:28 +0400 (Fri, 26 May 2006) | 3 lines +r143 | ms | 2006-05-25 23:49:28 +0200 (Thu, 25 May 2006) | 3 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Java von SUN ------------------------------------------------------------------------ -r142 | ms | 2006-05-26 01:10:48 +0400 (Fri, 26 May 2006) | 3 lines +r142 | ms | 2006-05-25 23:10:48 +0200 (Thu, 25 May 2006) | 3 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Firewallhits ------------------------------------------------------------------------ -r141 | ms | 2006-05-26 00:23:12 +0400 (Fri, 26 May 2006) | 3 lines +r141 | ms | 2006-05-25 22:23:12 +0200 (Thu, 25 May 2006) | 3 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * HTOP - http://htop.sourceforge.net ------------------------------------------------------------------------ -r140 | ms | 2006-05-25 23:49:10 +0400 (Thu, 25 May 2006) | 3 lines +r140 | ms | 2006-05-25 21:49:10 +0200 (Thu, 25 May 2006) | 3 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * GeoIP ------------------------------------------------------------------------ -r139 | ms | 2006-05-25 14:52:42 +0400 (Thu, 25 May 2006) | 6 lines +r139 | ms | 2006-05-25 12:52:42 +0200 (Thu, 25 May 2006) | 6 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * ethereal * mailx -Geändert: +Ge?\195?\164ndert: * /var/ipcop --> /var/ipfire ------------------------------------------------------------------------ -r138 | ms | 2006-05-25 00:21:07 +0400 (Thu, 25 May 2006) | 2 lines +r138 | ms | 2006-05-24 22:21:07 +0200 (Wed, 24 May 2006) | 2 lines -Sourceforge-Mirror wieder geändert. +Sourceforge-Mirror wieder ge?\195?\164ndert. ------------------------------------------------------------------------ -r137 | ms | 2006-05-24 23:47:34 +0400 (Wed, 24 May 2006) | 6 lines +r137 | ms | 2006-05-24 21:47:34 +0200 (Wed, 24 May 2006) | 6 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * NCFTP - Ein CLI-FTP-Client. -Geändert: +Ge?\195?\164ndert: * Versucht das XAMPP-Paket zu verkleinern. * ./make.sh sync erweitert. ------------------------------------------------------------------------ -r136 | ms | 2006-05-24 22:04:26 +0400 (Wed, 24 May 2006) | 3 lines +r136 | ms | 2006-05-24 20:04:26 +0200 (Wed, 24 May 2006) | 3 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Amavis-Perl-Module in der ISO. ------------------------------------------------------------------------ -r135 | ms | 2006-05-24 21:42:02 +0400 (Wed, 24 May 2006) | 4 lines +r135 | ms | 2006-05-24 19:42:02 +0200 (Wed, 24 May 2006) | 4 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Erste Version von CONFIRE. - * ./make.sh sync lädt nun alle neuen Dateien auf den FTP-Server. + * ./make.sh sync l?\195?\164dt nun alle neuen Dateien auf den FTP-Server. ------------------------------------------------------------------------ -r134 | ms | 2006-05-24 00:15:26 +0400 (Wed, 24 May 2006) | 4 lines +r134 | ms | 2006-05-23 22:15:26 +0200 (Tue, 23 May 2006) | 4 lines -Geändert: +Ge?\195?\164ndert: * CONFIG_ROOT in den Scripts angepasst auf /var/ipfire - * Zwei führende "/" in den ROOTFILES entfernt. + * Zwei f?\195?\188hrende "/" in den ROOTFILES entfernt. ------------------------------------------------------------------------ -r133 | ms | 2006-05-23 23:31:40 +0400 (Tue, 23 May 2006) | 6 lines +r133 | ms | 2006-05-23 21:31:40 +0200 (Tue, 23 May 2006) | 6 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * NMAP - Netzwerk-Scanner -Geändert: +Ge?\195?\164ndert: * Postfix-Quelle * CAPIINFO war an der falschen Stelle in der Makefile. ------------------------------------------------------------------------ -r132 | ms | 2006-05-22 16:47:00 +0400 (Mon, 22 May 2006) | 3 lines +r132 | ms | 2006-05-22 14:47:00 +0200 (Mon, 22 May 2006) | 3 lines Zweiter Teil des dicken Quellenupdates. Diesmal: C bis D. Status: 49/230 fertiggestellt. ------------------------------------------------------------------------ -r131 | ms | 2006-05-22 16:14:56 +0400 (Mon, 22 May 2006) | 6 lines +r131 | ms | 2006-05-22 14:14:56 +0200 (Mon, 22 May 2006) | 6 lines Wir beginnen nun ein Migration der Quellcodepakete auf einen unserer @@ -4545,352 +4749,352 @@ A bis B einschliesslich. Ich hoffe da macht jemand anderes weiter. Hinzu sind die Pakete, deren Mirrors ausgefallen sind, schon umgezogen. ------------------------------------------------------------------------ -r130 | ms | 2006-05-22 14:43:28 +0400 (Mon, 22 May 2006) | 8 lines +r130 | ms | 2006-05-22 12:43:28 +0200 (Mon, 22 May 2006) | 8 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Zaptel Kernelmodule werden gleich komprimiert. -Geändert: - * Konfigurationspfade sämtlicher Programme von /etc nach /var/ipfire verschoben. - * Einige Schönheitsfehler IPCop --> IPFire korrigiert. -Gelöscht: +Ge?\195?\164ndert: + * Konfigurationspfade s?\195?\164mtlicher Programme von /etc nach /var/ipfire verschoben. + * Einige Sch?\195?\182nheitsfehler IPCop --> IPFire korrigiert. +Gel?\195?\182scht: * wireless herausgenommen. (Bleibt abzuwarten, wann es in IPCop 1.4.11 ist.) ------------------------------------------------------------------------ -r129 | ms | 2006-05-22 00:54:29 +0400 (Mon, 22 May 2006) | 11 lines +r129 | ms | 2006-05-21 22:54:29 +0200 (Sun, 21 May 2006) | 11 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Nochmal ein neues Shutdown-Bild. * Schnelle Profilauswahl in der index.cgi * Nettraffic. * Capiinfo. -Geändert: - * Menü komplett neu sortiert. +Ge?\195?\164ndert: + * Men?\195?\188 komplett neu sortiert. * Javascript-Option aus gui.cgi entfernt. * Pakfire-Fehler beseitigt. - * Sämtliche /var/ipcop durch /var/ipfire ersetzt. + * S?\195?\164mtliche /var/ipcop durch /var/ipfire ersetzt. ------------------------------------------------------------------------ -r128 | ms | 2006-05-20 15:34:29 +0400 (Sat, 20 May 2006) | 8 lines +r128 | ms | 2006-05-20 13:34:29 +0200 (Sat, 20 May 2006) | 8 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Pakfire in die ISO gepackt. (Welche nocheinmal kleiner geworden ist.) * Neues Shutdown-Bild -Geändert: - * Zahlreiche Schönheitsfehler im Pakfire korrigiert. ^^ -Gelöscht: - * Ein kleines Überbleibsel vom IPCop entfernt. +Ge?\195?\164ndert: + * Zahlreiche Sch?\195?\182nheitsfehler im Pakfire korrigiert. ^^ +Gel?\195?\182scht: + * Ein kleines ?\195?\156berbleibsel vom IPCop entfernt. ------------------------------------------------------------------------ -r127 | ms | 2006-05-20 13:34:19 +0400 (Sat, 20 May 2006) | 3 lines +r127 | ms | 2006-05-20 11:34:19 +0200 (Sat, 20 May 2006) | 3 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Erste Version des Pakfire von Peter ------------------------------------------------------------------------ -r126 | ms | 2006-05-19 18:29:15 +0400 (Fri, 19 May 2006) | 3 lines +r126 | ms | 2006-05-19 16:29:15 +0200 (Fri, 19 May 2006) | 3 lines -Geändert: - * Überflüssige Programme aus der ISO genommen... Postfix, Stund usw... +Ge?\195?\164ndert: + * ?\195?\156berfl?\195?\188ssige Programme aus der ISO genommen... Postfix, Stund usw... ------------------------------------------------------------------------ -r125 | ms | 2006-05-18 21:33:39 +0400 (Thu, 18 May 2006) | 5 lines +r125 | ms | 2006-05-18 19:33:39 +0200 (Thu, 18 May 2006) | 5 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Fritz!PCI Treiber (auch SMP) -Geändert: - * Postfix Konfiguration gekürzt +Ge?\195?\164ndert: + * Postfix Konfiguration gek?\195?\188rzt ------------------------------------------------------------------------ -r124 | ms | 2006-05-18 15:39:26 +0400 (Thu, 18 May 2006) | 3 lines +r124 | ms | 2006-05-18 13:39:26 +0200 (Thu, 18 May 2006) | 3 lines -Geändert: +Ge?\195?\164ndert: * Erste Postfix-Standard-Konfiguration ------------------------------------------------------------------------ -r123 | ms | 2006-05-18 15:14:03 +0400 (Thu, 18 May 2006) | 7 lines +r123 | ms | 2006-05-18 13:14:03 +0200 (Thu, 18 May 2006) | 7 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Amavisd-new * Spamassassin (geht nun) - * Sämtlich Perlmodule für Amavis -Geändert: + * S?\195?\164mtlich Perlmodule f?\195?\188r Amavis +Ge?\195?\164ndert: * ./make.sh make bearbeitet ------------------------------------------------------------------------ -r122 | ms | 2006-05-18 13:14:22 +0400 (Thu, 18 May 2006) | 10 lines +r122 | ms | 2006-05-18 11:14:22 +0200 (Thu, 18 May 2006) | 10 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Razor - Spamkiller * ./make.sh make - Holt erst die Pakete und kompiliert dann... -Geändert: +Ge?\195?\164ndert: * Asterisk - Compiler-Optionen - * Postfix - nur optische Änderungen - * ROOTFILES.i386 - Wegen saslauthd-Änderungen einige Dateien gestrichen + * Postfix - nur optische ?\195?\132nderungen + * ROOTFILES.i386 - Wegen saslauthd-?\195?\132nderungen einige Dateien gestrichen * ./make.sh changelog bearbeitet * ChangeLog-Update ------------------------------------------------------------------------ -r121 | ms | 2006-05-17 21:04:11 +0400 (Wed, 17 May 2006) | 3 lines +r121 | ms | 2006-05-17 19:04:11 +0200 (Wed, 17 May 2006) | 3 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Procmail ------------------------------------------------------------------------ -r120 | ms | 2006-05-17 16:44:06 +0400 (Wed, 17 May 2006) | 4 lines +r120 | ms | 2006-05-17 14:44:06 +0200 (Wed, 17 May 2006) | 4 lines -Geändert: +Ge?\195?\164ndert: * CyrusIMAPd auf den neuesten Stand gebracht. - * Saslauthd überarbeitet. + * Saslauthd ?\195?\188berarbeitet. ------------------------------------------------------------------------ -r119 | ms | 2006-05-17 15:25:29 +0400 (Wed, 17 May 2006) | 3 lines +r119 | ms | 2006-05-17 13:25:29 +0200 (Wed, 17 May 2006) | 3 lines -Geändert: +Ge?\195?\164ndert: * Asterisk jetzt in der Version 1.2.7.1 mit Bristuff 0.3.0-PRE-1o und Florz-Patch ------------------------------------------------------------------------ -r118 | ms | 2006-05-16 15:12:49 +0400 (Tue, 16 May 2006) | 7 lines +r118 | ms | 2006-05-16 13:12:49 +0200 (Tue, 16 May 2006) | 7 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * NFS - * Portmap - braucht man für NFS -Geändert: - * IP_CONNTRACK-Patch erstellt damit die Verbindungsanzeige im Webinterface ohne Workaround funktioniert. (Noch nicht vollständig getestet!) + * Portmap - braucht man f?\195?\188r NFS +Ge?\195?\164ndert: + * IP_CONNTRACK-Patch erstellt damit die Verbindungsanzeige im Webinterface ohne Workaround funktioniert. (Noch nicht vollst?\195?\164ndig getestet!) * ./make.sh commit optimiert ------------------------------------------------------------------------ -r117 | ms | 2006-05-16 15:01:06 +0400 (Tue, 16 May 2006) | 3 lines +r117 | ms | 2006-05-16 13:01:06 +0200 (Tue, 16 May 2006) | 3 lines Quellenupdate u.a. wegen Serverausfall bei Sourceforge.net Wir haben die Absicht den Sourcecode auf eigenen Servern zu hosten! ------------------------------------------------------------------------ -r116 | ms | 2006-05-16 00:28:30 +0400 (Tue, 16 May 2006) | 5 lines +r116 | ms | 2006-05-15 22:28:30 +0200 (Mon, 15 May 2006) | 5 lines -Geändert: +Ge?\195?\164ndert: * ./make.sh dist noch optimiert. * TCP Wrappers Patch vergessen :) * ChangeLog-Update hat auch nicht funktioniert. ------------------------------------------------------------------------ -r115 | ms | 2006-05-16 00:08:54 +0400 (Tue, 16 May 2006) | 7 lines +r115 | ms | 2006-05-15 22:08:54 +0200 (Mon, 15 May 2006) | 7 lines -Hinzugefügt: - * TCP Wrappers für NFS +Hinzugef?\195?\188gt: + * TCP Wrappers f?\195?\188r NFS * SpamAssassin - geht noch nicht! -Geändert: +Ge?\195?\164ndert: * Cups mit Samba verlinkt. - * Neue Prozedur in ./make.sh commit - Lädt alles ins SVN und aktualisiert vorher den ChangeLog. + * Neue Prozedur in ./make.sh commit - L?\195?\164dt alles ins SVN und aktualisiert vorher den ChangeLog. ------------------------------------------------------------------------ -r114 | ms | 2006-05-13 21:54:40 +0400 (Sat, 13 May 2006) | 3 lines +r114 | ms | 2006-05-13 19:54:40 +0200 (Sat, 13 May 2006) | 3 lines -Geändert: +Ge?\195?\164ndert: * ./make.sh dist erstellt von jetzt an einen Tarball mit den letzten Sources im SVN. ------------------------------------------------------------------------ -r113 | ms | 2006-05-13 20:59:56 +0400 (Sat, 13 May 2006) | 12 lines +r113 | ms | 2006-05-13 18:59:56 +0200 (Sat, 13 May 2006) | 12 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Clamav - Antivirus * rsync - Backuptool -Geändert: +Ge?\195?\164ndert: * Einige neue Prozeduren in der make.sh - * Ein paar Backupdateien gelöscht/aufgeräumt - * Credits bearbeitet. Noch nicht vollständig. + * Ein paar Backupdateien gel?\195?\182scht/aufger?\195?\164umt + * Credits bearbeitet. Noch nicht vollst?\195?\164ndig. * XAMPP jetzt nichtmehr in der ISO sondern als Paket. * ISO bedeutend kleiner: 144MB -> 61MB * GNUMP3D-Paket erstellt. - * Kernel schonmal angepasst für NFS, noch nicht getestet!! + * Kernel schonmal angepasst f?\195?\188r NFS, noch nicht getestet!! ------------------------------------------------------------------------ -r112 | ms | 2006-05-04 14:50:41 +0400 (Thu, 04 May 2006) | 3 lines +r112 | ms | 2006-05-04 12:50:41 +0200 (Thu, 04 May 2006) | 3 lines -Hauptsächlich Quellenupdate. Apache - Bind - hddtemp - hdparm - lame +Haupts?\195?\164chlich Quellenupdate. Apache - Bind - hddtemp - hdparm - lame Ghostscript und CUPS aktiviert. Samba jetzt mit libcups-Support. ------------------------------------------------------------------------ -r111 | ms | 2006-05-04 14:48:33 +0400 (Thu, 04 May 2006) | 5 lines +r111 | ms | 2006-05-04 12:48:33 +0200 (Thu, 04 May 2006) | 5 lines -Hinzugefügt: - * Patch für MPG123 -Geändert: +Hinzugef?\195?\188gt: + * Patch f?\195?\188r MPG123 +Ge?\195?\164ndert: * CUPS ------------------------------------------------------------------------ -r110 | ms | 2006-05-03 00:19:59 +0400 (Wed, 03 May 2006) | 7 lines +r110 | ms | 2006-05-02 22:19:59 +0200 (Tue, 02 May 2006) | 7 lines -Hinzugefügt: - * mpg123 - Für Wartemusik im Asterisk +Hinzugef?\195?\188gt: + * mpg123 - F?\195?\188r Wartemusik im Asterisk * CUPS - Drucker-Daemon * Ghostscript - Braucht CUPS * GNUmp3d - MP3-Streamer * lame - Braucht GNUmp3d ------------------------------------------------------------------------ -r109 | ms | 2006-05-02 10:06:43 +0400 (Tue, 02 May 2006) | 4 lines +r109 | ms | 2006-05-02 08:06:43 +0200 (Tue, 02 May 2006) | 4 lines -Geändert: +Ge?\195?\164ndert: * Samba wird jetzt ohne Dokumentation installiert * Gettoolchain repariert ------------------------------------------------------------------------ -r108 | ms | 2006-05-01 23:47:04 +0400 (Mon, 01 May 2006) | 2 lines +r108 | ms | 2006-05-01 21:47:04 +0200 (Mon, 01 May 2006) | 2 lines Quellenupdate! wireless, ntp, shadow, uClibc ------------------------------------------------------------------------ -r107 | ms | 2006-05-01 23:02:50 +0400 (Mon, 01 May 2006) | 2 lines +r107 | ms | 2006-05-01 21:02:50 +0200 (Mon, 01 May 2006) | 2 lines -EmbCop-Sources gelöscht! +EmbCop-Sources gel?\195?\182scht! ------------------------------------------------------------------------ -r106 | ms | 2006-04-28 18:57:32 +0400 (Fri, 28 Apr 2006) | 7 lines +r106 | ms | 2006-04-28 16:57:32 +0200 (Fri, 28 Apr 2006) | 7 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * fetchmail * cyrusimap -Geändert: +Ge?\195?\164ndert: * xampp * pam ------------------------------------------------------------------------ -r105 | ms | 2006-04-20 18:20:28 +0400 (Thu, 20 Apr 2006) | 7 lines +r105 | ms | 2006-04-20 16:20:28 +0200 (Thu, 20 Apr 2006) | 7 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Sane - Scanning * LibJPEG -Geändert: +Ge?\195?\164ndert: * pwlib * xinetd ------------------------------------------------------------------------ -r104 | ms | 2006-04-20 18:15:50 +0400 (Thu, 20 Apr 2006) | 2 lines +r104 | ms | 2006-04-20 16:15:50 +0200 (Thu, 20 Apr 2006) | 2 lines -Allgemeine Aufräumarbeiten und Optimierungen +Allgemeine Aufr?\195?\164umarbeiten und Optimierungen ------------------------------------------------------------------------ -r103 | ms | 2006-04-19 20:02:55 +0400 (Wed, 19 Apr 2006) | 4 lines +r103 | ms | 2006-04-19 18:02:55 +0200 (Wed, 19 Apr 2006) | 4 lines -Geändert: +Ge?\195?\164ndert: * pwlib wird bei jedem Durchgang kompiliert, auch wenn schon geschehen :( - * Mirror-URL geändert + * Mirror-URL ge?\195?\164ndert ------------------------------------------------------------------------ -r102 | ms | 2006-04-19 17:30:44 +0400 (Wed, 19 Apr 2006) | 9 lines +r102 | ms | 2006-04-19 15:30:44 +0200 (Wed, 19 Apr 2006) | 9 lines -Geändert: +Ge?\195?\164ndert: * Asterisk mit H323 Neue Versionen: * OpenVPN * pwlib * openh323 Fixed: - * Menü im Webinterface + * Men?\195?\188 im Webinterface ------------------------------------------------------------------------ -r101 | ms | 2006-04-15 03:12:47 +0400 (Sat, 15 Apr 2006) | 10 lines +r101 | ms | 2006-04-15 01:12:47 +0200 (Sat, 15 Apr 2006) | 10 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Asterisk - mit Zaptel/LibPRI/BRISTUFF/app_fax * Spandsp * LibTIFF * LibXML2 * eDonkey-commandline-client -Geändert: - * busybox - tar-parameter zurückgesetzt +Ge?\195?\164ndert: + * busybox - tar-parameter zur?\195?\188ckgesetzt * postfix hat Beta-Status-1 ------------------------------------------------------------------------ -r100 | ms | 2006-04-11 02:33:24 +0400 (Tue, 11 Apr 2006) | 6 lines +r100 | ms | 2006-04-11 00:33:24 +0200 (Tue, 11 Apr 2006) | 6 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Samba - Erste Test-Version - * STUNNEL - bisher nicht verwendet, aber SWAT sendet das root-Passwort im Klartext über die Leitung -Geändert: + * STUNNEL - bisher nicht verwendet, aber SWAT sendet das root-Passwort im Klartext ?\195?\188ber die Leitung +Ge?\195?\164ndert: * Linux-PAM - Libs waren falsch verlinkt ------------------------------------------------------------------------ -r99 | casemaster | 2006-04-11 01:10:53 +0400 (Tue, 11 Apr 2006) | 2 lines +r99 | casemaster | 2006-04-10 23:10:53 +0200 (Mon, 10 Apr 2006) | 2 lines -pwlib geändert. -busybox: tar.c größe auf 150 gesetzt. +pwlib ge?\195?\164ndert. +busybox: tar.c gr?\195?\182?\195?\159e auf 150 gesetzt. ------------------------------------------------------------------------ -r98 | ms | 2006-04-10 22:39:59 +0400 (Mon, 10 Apr 2006) | 4 lines +r98 | ms | 2006-04-10 20:39:59 +0200 (Mon, 10 Apr 2006) | 4 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Xinetd - Super-Daemon * Sudo ------------------------------------------------------------------------ -r97 | ms | 2006-04-10 00:23:54 +0400 (Mon, 10 Apr 2006) | 4 lines +r97 | ms | 2006-04-09 22:23:54 +0200 (Sun, 09 Apr 2006) | 4 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * OpenVPN * LZO ------------------------------------------------------------------------ -r96 | ms | 2006-04-09 21:55:27 +0400 (Sun, 09 Apr 2006) | 7 lines +r96 | ms | 2006-04-09 19:55:27 +0200 (Sun, 09 Apr 2006) | 7 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Midnight Commander 4.6.1 (GLIB/PKG-CONFIG) -Geändert: +Ge?\195?\164ndert: * OpenLDAP * PWLib - Compilier-Optionen * make-packages - Funktionen erweitert ------------------------------------------------------------------------ -r95 | ms | 2006-04-04 21:19:54 +0400 (Tue, 04 Apr 2006) | 2 lines +r95 | ms | 2006-04-04 19:19:54 +0200 (Tue, 04 Apr 2006) | 2 lines -Kleine Fixes an den Graphs und dem Menü! +Kleine Fixes an den Graphs und dem Men?\195?\188! ------------------------------------------------------------------------ -r94 | casemaster | 2006-04-02 16:18:42 +0400 (Sun, 02 Apr 2006) | 2 lines +r94 | casemaster | 2006-04-02 14:18:42 +0200 (Sun, 02 Apr 2006) | 2 lines src fuer openldap geaendert. ldap Unterstuetzung bei pwlib entfernt. ------------------------------------------------------------------------ -r93 | ms | 2006-03-28 22:54:43 +0400 (Tue, 28 Mar 2006) | 5 lines +r93 | ms | 2006-03-28 20:54:43 +0200 (Tue, 28 Mar 2006) | 5 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * OpenLDAP -Geändert: +Ge?\195?\164ndert: * SASLAUTHD kann jetzt OpenLDAP. ------------------------------------------------------------------------ -r92 | ms | 2006-03-28 19:35:56 +0400 (Tue, 28 Mar 2006) | 2 lines +r92 | ms | 2006-03-28 17:35:56 +0200 (Tue, 28 Mar 2006) | 2 lines Allgemeine FIXES! Das Build sollte nun durchlaufen... ------------------------------------------------------------------------ -r91 | ms | 2006-03-28 18:16:15 +0400 (Tue, 28 Mar 2006) | 1 line +r91 | ms | 2006-03-28 16:16:15 +0200 (Tue, 28 Mar 2006) | 1 line SASL-Authd nun ohne PostgreSQL-Support. ------------------------------------------------------------------------ -r90 | ms | 2006-03-27 23:50:44 +0400 (Mon, 27 Mar 2006) | 1 line +r90 | ms | 2006-03-27 21:50:44 +0200 (Mon, 27 Mar 2006) | 1 line URL von den Bridge-Utils gefixt. ------------------------------------------------------------------------ -r89 | casemaster | 2006-03-27 19:06:13 +0400 (Mon, 27 Mar 2006) | 1 line +r89 | casemaster | 2006-03-27 17:06:13 +0200 (Mon, 27 Mar 2006) | 1 line -Test gelöscht. +Test gel?\195?\182scht. ------------------------------------------------------------------------ -r88 | ms | 2006-03-27 18:43:30 +0400 (Mon, 27 Mar 2006) | 3 lines +r88 | ms | 2006-03-27 16:43:30 +0200 (Mon, 27 Mar 2006) | 3 lines Toolchain-Download mit ./make.sh gettoolchain -Beim Netstatus werden ab jetzt nur noch aktive Verbindungen angezeigt. Erhöht die Übersichtlichkeit... +Beim Netstatus werden ab jetzt nur noch aktive Verbindungen angezeigt. Erh?\195?\182ht die ?\195?\156bersichtlichkeit... ------------------------------------------------------------------------ -r87 | casemaster | 2006-03-27 18:35:38 +0400 (Mon, 27 Mar 2006) | 1 line +r87 | casemaster | 2006-03-27 16:35:38 +0200 (Mon, 27 Mar 2006) | 1 line Test 2 Write ------------------------------------------------------------------------ -r86 | ms | 2006-03-27 18:02:24 +0400 (Mon, 27 Mar 2006) | 2 lines +r86 | ms | 2006-03-27 16:02:24 +0200 (Mon, 27 Mar 2006) | 2 lines -Repariert: lib-links für postfix +Repariert: lib-links f?\195?\188r postfix ------------------------------------------------------------------------ -r85 | ms | 2006-03-26 22:46:32 +0400 (Sun, 26 Mar 2006) | 5 lines +r85 | ms | 2006-03-26 20:46:32 +0200 (Sun, 26 Mar 2006) | 5 lines Update Squid to 2.5STABLE13. Added WGET/HDDTEMP/BRIDGE-UTILS. @@ -4898,39 +5102,39 @@ SCSI-GRUB-Konfiguration angepasst. ------------------------------------------------------------------------ -r84 | ms | 2006-03-25 18:06:35 +0300 (Sat, 25 Mar 2006) | 4 lines +r84 | ms | 2006-03-25 16:06:35 +0100 (Sat, 25 Mar 2006) | 4 lines Erste Version des Paketerstellers. Bisher nur Postfix. :( ------------------------------------------------------------------------ -r83 | guest | 2006-03-24 18:47:00 +0300 (Fri, 24 Mar 2006) | 1 line +r83 | guest | 2006-03-24 16:47:00 +0100 (Fri, 24 Mar 2006) | 1 line nomsg ------------------------------------------------------------------------ -r82 | ms | 2006-03-22 22:11:17 +0300 (Wed, 22 Mar 2006) | 8 lines +r82 | ms | 2006-03-22 20:11:17 +0100 (Wed, 22 Mar 2006) | 8 lines Webinterface gefixt. Ohne Anmeldung kommt man im Webinterface nichtmehr auf die Index-Seite. Berkeley-DB neu implementiert. Postfix geht jetzt. Graphs gefixt. -IPCop-Updates gelöscht. +IPCop-Updates gel?\195?\182scht. ------------------------------------------------------------------------ -r81 | ms | 2006-03-18 14:24:42 +0300 (Sat, 18 Mar 2006) | 1 line +r81 | ms | 2006-03-18 12:24:42 +0100 (Sat, 18 Mar 2006) | 1 line Quellenupdate ------------------------------------------------------------------------ -r80 | ms | 2006-03-17 03:46:51 +0300 (Fri, 17 Mar 2006) | 1 line +r80 | ms | 2006-03-17 01:46:51 +0100 (Fri, 17 Mar 2006) | 1 line TEMP-DIR von /tmp nach /var/tmp verschoben. ------------------------------------------------------------------------ -r79 | ms | 2006-03-13 00:09:13 +0300 (Mon, 13 Mar 2006) | 11 lines +r79 | ms | 2006-03-12 22:09:13 +0100 (Sun, 12 Mar 2006) | 11 lines -Hinzugefügt: +Hinzugef?\195?\188gt: * Postfix 2.2.9 * PostGreSQL Gefixt und neu implementiert: @@ -4939,131 +5143,131 @@ Gefixt und neu implementiert: * XAMPP + PostGreSQL * SASLAUTHD /opt/lampp/lib und /opt/lampp/lib/mysql befinden sich im Lib-Cache -leichtes aufräumen in der make.sh +leichtes aufr?\195?\164umen in der make.sh ------------------------------------------------------------------------ -r78 | ms | 2006-03-12 18:52:13 +0300 (Sun, 12 Mar 2006) | 1 line +r78 | ms | 2006-03-12 16:52:13 +0100 (Sun, 12 Mar 2006) | 1 line New Webinterface-Style by benne ------------------------------------------------------------------------ -r77 | ms | 2006-03-06 17:30:36 +0300 (Mon, 06 Mar 2006) | 1 line +r77 | ms | 2006-03-06 15:30:36 +0100 (Mon, 06 Mar 2006) | 1 line Webinterface-Bilder neu gemacht | IPAC-NG-Patches installiert | Berkeley-DB installiert ------------------------------------------------------------------------ -r76 | ms | 2006-03-02 23:55:58 +0300 (Thu, 02 Mar 2006) | 1 line +r76 | ms | 2006-03-02 21:55:58 +0100 (Thu, 02 Mar 2006) | 1 line PAM-MySQL + BerkeleyDB + SASLauthd hinzugefuegt ------------------------------------------------------------------------ -r75 | ms | 2006-03-01 00:11:50 +0300 (Wed, 01 Mar 2006) | 1 line +r75 | ms | 2006-02-28 22:11:50 +0100 (Tue, 28 Feb 2006) | 1 line -ROOTFILES.i386 aufgeräumt +ROOTFILES.i386 aufger?\195?\164umt ------------------------------------------------------------------------ -r74 | ms | 2006-03-01 00:10:58 +0300 (Wed, 01 Mar 2006) | 1 line +r74 | ms | 2006-02-28 22:10:58 +0100 (Tue, 28 Feb 2006) | 1 line -ISO vergößert und XAMPP-1.5.1 DEVEL Paket installiert +ISO verg?\195?\182?\195?\159ert und XAMPP-1.5.1 DEVEL Paket installiert ------------------------------------------------------------------------ -r73 | ms | 2006-02-27 23:13:17 +0300 (Mon, 27 Feb 2006) | 2 lines +r73 | ms | 2006-02-27 21:13:17 +0100 (Mon, 27 Feb 2006) | 2 lines Quellenupdate... ipaddr busybox kernel ------------------------------------------------------------------------ -r72 | ms | 2006-02-27 20:13:57 +0300 (Mon, 27 Feb 2006) | 2 lines +r72 | ms | 2006-02-27 18:13:57 +0100 (Mon, 27 Feb 2006) | 2 lines -OpenH323 hinzugefügt +OpenH323 hinzugef?\195?\188gt ------------------------------------------------------------------------ -r71 | ms | 2006-02-22 23:23:30 +0300 (Wed, 22 Feb 2006) | 1 line +r71 | ms | 2006-02-22 21:23:30 +0100 (Wed, 22 Feb 2006) | 1 line IPAC-NG ging nicht... mal sehen ------------------------------------------------------------------------ -r70 | ms | 2006-02-22 23:21:51 +0300 (Wed, 22 Feb 2006) | 1 line +r70 | ms | 2006-02-22 21:21:51 +0100 (Wed, 22 Feb 2006) | 1 line ROOTFILES aktualisiert ------------------------------------------------------------------------ -r69 | ms | 2006-02-22 22:52:10 +0300 (Wed, 22 Feb 2006) | 1 line +r69 | ms | 2006-02-22 20:52:10 +0100 (Wed, 22 Feb 2006) | 1 line Endlich neues Webinterface ------------------------------------------------------------------------ -r68 | ms | 2006-02-22 00:26:55 +0300 (Wed, 22 Feb 2006) | 2 lines +r68 | ms | 2006-02-21 22:26:55 +0100 (Tue, 21 Feb 2006) | 2 lines SSH von vornherein aktiviert ------------------------------------------------------------------------ -r67 | ms | 2006-02-21 23:38:06 +0300 (Tue, 21 Feb 2006) | 2 lines +r67 | ms | 2006-02-21 21:38:06 +0100 (Tue, 21 Feb 2006) | 2 lines SMP-Config angepasst.. CGIs usw. wurden im Windoof-Format gespeichert... muss noch alles korrigiert werden... ------------------------------------------------------------------------ -r66 | ms | 2006-02-21 21:55:53 +0300 (Tue, 21 Feb 2006) | 1 line +r66 | ms | 2006-02-21 19:55:53 +0100 (Tue, 21 Feb 2006) | 1 line immernoch das alte Problem... ------------------------------------------------------------------------ -r65 | ms | 2006-02-21 19:55:11 +0300 (Tue, 21 Feb 2006) | 1 line +r65 | ms | 2006-02-21 17:55:11 +0100 (Tue, 21 Feb 2006) | 1 line -EmbCop-V0.1-1.4.10 in branches eingefügt +EmbCop-V0.1-1.4.10 in branches eingef?\195?\188gt ------------------------------------------------------------------------ -r64 | ms | 2006-02-21 00:23:51 +0300 (Tue, 21 Feb 2006) | 2 lines +r64 | ms | 2006-02-20 22:23:51 +0100 (Mon, 20 Feb 2006) | 2 lines -Kernel Config für SMP angepasst... +Kernel Config f?\195?\188r SMP angepasst... ------------------------------------------------------------------------ -r63 | ms | 2006-02-20 23:46:53 +0300 (Mon, 20 Feb 2006) | 2 lines +r63 | ms | 2006-02-20 21:46:53 +0100 (Mon, 20 Feb 2006) | 2 lines Windows hat sie wieder zerschossen... :( ------------------------------------------------------------------------ -r62 | ms | 2006-02-20 23:13:28 +0300 (Mon, 20 Feb 2006) | 1 line +r62 | ms | 2006-02-20 21:13:28 +0100 (Mon, 20 Feb 2006) | 1 line SMP wieder aktiviert (Zumindest versucht) ------------------------------------------------------------------------ -r61 | ms | 2006-02-20 23:01:45 +0300 (Mon, 20 Feb 2006) | 1 line +r61 | ms | 2006-02-20 21:01:45 +0100 (Mon, 20 Feb 2006) | 1 line ------------------------------------------------------------------------ -r60 | ms | 2006-02-20 23:01:31 +0300 (Mon, 20 Feb 2006) | 1 line +r60 | ms | 2006-02-20 21:01:31 +0100 (Mon, 20 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r59 | ms | 2006-02-20 22:57:20 +0300 (Mon, 20 Feb 2006) | 1 line +r59 | ms | 2006-02-20 20:57:20 +0100 (Mon, 20 Feb 2006) | 1 line ------------------------------------------------------------------------ -r58 | ms | 2006-02-20 22:56:37 +0300 (Mon, 20 Feb 2006) | 1 line +r58 | ms | 2006-02-20 20:56:37 +0100 (Mon, 20 Feb 2006) | 1 line ------------------------------------------------------------------------ -r57 | ms | 2006-02-20 22:55:36 +0300 (Mon, 20 Feb 2006) | 1 line +r57 | ms | 2006-02-20 20:55:36 +0100 (Mon, 20 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r56 | ms | 2006-02-20 22:51:27 +0300 (Mon, 20 Feb 2006) | 1 line +r56 | ms | 2006-02-20 20:51:27 +0100 (Mon, 20 Feb 2006) | 1 line ------------------------------------------------------------------------ -r55 | ms | 2006-02-20 22:50:08 +0300 (Mon, 20 Feb 2006) | 1 line +r55 | ms | 2006-02-20 20:50:08 +0100 (Mon, 20 Feb 2006) | 1 line ------------------------------------------------------------------------ -r54 | ms | 2006-02-20 22:49:08 +0300 (Mon, 20 Feb 2006) | 2 lines +r54 | ms | 2006-02-20 20:49:08 +0100 (Mon, 20 Feb 2006) | 2 lines Sicherheits-Update packages-list ------------------------------------------------------------------------ -r53 | ms | 2006-02-20 04:46:27 +0300 (Mon, 20 Feb 2006) | 2 lines +r53 | ms | 2006-02-20 02:46:27 +0100 (Mon, 20 Feb 2006) | 2 lines driver.img ohne SMP ------------------------------------------------------------------------ -r52 | ms | 2006-02-20 04:39:21 +0300 (Mon, 20 Feb 2006) | 2 lines +r52 | ms | 2006-02-20 02:39:21 +0100 (Mon, 20 Feb 2006) | 2 lines -GD und gd Konflikt gelöst... -make.sh zerstört :( +GD und gd Konflikt gel?\195?\182st... +make.sh zerst?\195?\182rt :( ------------------------------------------------------------------------ -r51 | ms | 2006-02-20 04:32:51 +0300 (Mon, 20 Feb 2006) | 1 line +r51 | ms | 2006-02-20 02:32:51 +0100 (Mon, 20 Feb 2006) | 1 line Removed file/folder gd ------------------------------------------------------------------------ -r50 | ms | 2006-02-20 04:10:06 +0300 (Mon, 20 Feb 2006) | 5 lines +r50 | ms | 2006-02-20 02:10:06 +0100 (Mon, 20 Feb 2006) | 5 lines ipac-ng fix uClibc fix @@ -5071,205 +5275,205 @@ pam-patch fix ------------------------------------------------------------------------ -r49 | ms | 2006-02-20 01:25:48 +0300 (Mon, 20 Feb 2006) | 2 lines +r49 | ms | 2006-02-19 23:25:48 +0100 (Sun, 19 Feb 2006) | 2 lines -SMP entfernt / gd hinzugefügt! +SMP entfernt / gd hinzugef?\195?\188gt! ------------------------------------------------------------------------ -r48 | ms | 2006-02-19 20:04:08 +0300 (Sun, 19 Feb 2006) | 2 lines +r48 | ms | 2006-02-19 18:04:08 +0100 (Sun, 19 Feb 2006) | 2 lines Quellen-Update ------------------------------------------------------------------------ -r47 | ms | 2006-02-19 17:12:52 +0300 (Sun, 19 Feb 2006) | 1 line +r47 | ms | 2006-02-19 15:12:52 +0100 (Sun, 19 Feb 2006) | 1 line -Neuer Boot-Screen für GRUB +Neuer Boot-Screen f?\195?\188r GRUB ------------------------------------------------------------------------ -r46 | ms | 2006-02-19 16:16:13 +0300 (Sun, 19 Feb 2006) | 2 lines +r46 | ms | 2006-02-19 14:16:13 +0100 (Sun, 19 Feb 2006) | 2 lines Installer repariert ------------------------------------------------------------------------ -r45 | ms | 2006-02-19 16:12:53 +0300 (Sun, 19 Feb 2006) | 2 lines +r45 | ms | 2006-02-19 14:12:53 +0100 (Sun, 19 Feb 2006) | 2 lines Installer repariert ------------------------------------------------------------------------ -r44 | ms | 2006-02-19 15:19:49 +0300 (Sun, 19 Feb 2006) | 2 lines +r44 | ms | 2006-02-19 13:19:49 +0100 (Sun, 19 Feb 2006) | 2 lines make.sh gefixt ------------------------------------------------------------------------ -r43 | ms | 2006-02-19 15:01:48 +0300 (Sun, 19 Feb 2006) | 1 line +r43 | ms | 2006-02-19 13:01:48 +0100 (Sun, 19 Feb 2006) | 1 line -IPCOP SOURCE Version 1.4.10 hinzugefügt +IPCOP SOURCE Version 1.4.10 hinzugef?\195?\188gt ------------------------------------------------------------------------ -r42 | ms | 2006-02-19 14:34:16 +0300 (Sun, 19 Feb 2006) | 1 line +r42 | ms | 2006-02-19 12:34:16 +0100 (Sun, 19 Feb 2006) | 1 line Renamed File ------------------------------------------------------------------------ -r41 | ms | 2006-02-19 14:25:43 +0300 (Sun, 19 Feb 2006) | 2 lines +r41 | ms | 2006-02-19 12:25:43 +0100 (Sun, 19 Feb 2006) | 2 lines Port 445 -> 444 gewechselt und XTAccess-Regeln ausgeschaltet. Nach der Installation sind alle Ports geschlossen! ------------------------------------------------------------------------ -r40 | ms | 2006-02-19 00:39:37 +0300 (Sun, 19 Feb 2006) | 1 line +r40 | ms | 2006-02-18 22:39:37 +0100 (Sat, 18 Feb 2006) | 1 line Ordnerstruktur 3. Teil ------------------------------------------------------------------------ -r39 | ms | 2006-02-19 00:33:11 +0300 (Sun, 19 Feb 2006) | 1 line +r39 | ms | 2006-02-18 22:33:11 +0100 (Sat, 18 Feb 2006) | 1 line Ordnerstruktur 2-ter Teil ------------------------------------------------------------------------ -r38 | ms | 2006-02-19 00:26:02 +0300 (Sun, 19 Feb 2006) | 1 line +r38 | ms | 2006-02-18 22:26:02 +0100 (Sat, 18 Feb 2006) | 1 line -Vernünftige Ordnerstruktur +Vern?\195?\188nftige Ordnerstruktur ------------------------------------------------------------------------ -r37 | ms | 2006-02-17 00:18:00 +0300 (Fri, 17 Feb 2006) | 1 line +r37 | ms | 2006-02-16 22:18:00 +0100 (Thu, 16 Feb 2006) | 1 line -Neuer Installer eingefügt... +Neuer Installer eingef?\195?\188gt... ------------------------------------------------------------------------ -r36 | ms | 2006-02-16 22:20:41 +0300 (Thu, 16 Feb 2006) | 1 line +r36 | ms | 2006-02-16 20:20:41 +0100 (Thu, 16 Feb 2006) | 1 line ------------------------------------------------------------------------ -r35 | ms | 2006-02-16 22:09:00 +0300 (Thu, 16 Feb 2006) | 1 line +r35 | ms | 2006-02-16 20:09:00 +0100 (Thu, 16 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r34 | ms | 2006-02-16 22:07:58 +0300 (Thu, 16 Feb 2006) | 1 line +r34 | ms | 2006-02-16 20:07:58 +0100 (Thu, 16 Feb 2006) | 1 line Renamed remotely ------------------------------------------------------------------------ -r33 | admin | 2006-02-16 22:04:42 +0300 (Thu, 16 Feb 2006) | 1 line +r33 | admin | 2006-02-16 20:04:42 +0100 (Thu, 16 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r32 | admin | 2006-02-16 22:04:37 +0300 (Thu, 16 Feb 2006) | 1 line +r32 | admin | 2006-02-16 20:04:37 +0100 (Thu, 16 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r31 | ipfire | 2006-02-16 15:20:54 +0300 (Thu, 16 Feb 2006) | 1 line +r31 | ipfire | 2006-02-16 13:20:54 +0100 (Thu, 16 Feb 2006) | 1 line ------------------------------------------------------------------------ -r30 | ipfire | 2006-02-16 15:18:34 +0300 (Thu, 16 Feb 2006) | 1 line +r30 | ipfire | 2006-02-16 13:18:34 +0100 (Thu, 16 Feb 2006) | 1 line ------------------------------------------------------------------------ -r29 | ipfire | 2006-02-16 15:18:15 +0300 (Thu, 16 Feb 2006) | 1 line +r29 | ipfire | 2006-02-16 13:18:15 +0100 (Thu, 16 Feb 2006) | 1 line ------------------------------------------------------------------------ -r28 | ipfire | 2006-02-16 15:09:46 +0300 (Thu, 16 Feb 2006) | 1 line +r28 | ipfire | 2006-02-16 13:09:46 +0100 (Thu, 16 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r27 | ipfire | 2006-02-16 15:07:28 +0300 (Thu, 16 Feb 2006) | 1 line +r27 | ipfire | 2006-02-16 13:07:28 +0100 (Thu, 16 Feb 2006) | 1 line Removed Files ------------------------------------------------------------------------ -r26 | ipfire | 2006-02-16 15:06:41 +0300 (Thu, 16 Feb 2006) | 1 line +r26 | ipfire | 2006-02-16 13:06:41 +0100 (Thu, 16 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r25 | ipfire | 2006-02-16 00:36:29 +0300 (Thu, 16 Feb 2006) | 1 line +r25 | ipfire | 2006-02-15 22:36:29 +0100 (Wed, 15 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r24 | ipfire | 2006-02-16 00:36:15 +0300 (Thu, 16 Feb 2006) | 1 line +r24 | ipfire | 2006-02-15 22:36:15 +0100 (Wed, 15 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r23 | ipfire | 2006-02-16 00:35:46 +0300 (Thu, 16 Feb 2006) | 1 line +r23 | ipfire | 2006-02-15 22:35:46 +0100 (Wed, 15 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r22 | ipfire | 2006-02-16 00:33:28 +0300 (Thu, 16 Feb 2006) | 1 line +r22 | ipfire | 2006-02-15 22:33:28 +0100 (Wed, 15 Feb 2006) | 1 line Renamed remotely ------------------------------------------------------------------------ -r21 | ipfire | 2006-02-16 00:33:06 +0300 (Thu, 16 Feb 2006) | 1 line +r21 | ipfire | 2006-02-15 22:33:06 +0100 (Wed, 15 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r20 | ipfire | 2006-02-16 00:32:33 +0300 (Thu, 16 Feb 2006) | 1 line +r20 | ipfire | 2006-02-15 22:32:33 +0100 (Wed, 15 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r19 | ipfire | 2006-02-16 00:31:56 +0300 (Thu, 16 Feb 2006) | 1 line +r19 | ipfire | 2006-02-15 22:31:56 +0100 (Wed, 15 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r18 | ipfire | 2006-02-16 00:31:26 +0300 (Thu, 16 Feb 2006) | 1 line +r18 | ipfire | 2006-02-15 22:31:26 +0100 (Wed, 15 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r17 | ipfire | 2006-02-16 00:31:06 +0300 (Thu, 16 Feb 2006) | 1 line +r17 | ipfire | 2006-02-15 22:31:06 +0100 (Wed, 15 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r16 | ipfire | 2006-02-16 00:15:54 +0300 (Thu, 16 Feb 2006) | 1 line +r16 | ipfire | 2006-02-15 22:15:54 +0100 (Wed, 15 Feb 2006) | 1 line ------------------------------------------------------------------------ -r15 | ipfire | 2006-02-16 00:21:38 +0300 (Thu, 16 Feb 2006) | 1 line +r15 | ipfire | 2006-02-15 22:21:38 +0100 (Wed, 15 Feb 2006) | 1 line ------------------------------------------------------------------------ -r14 | ipfire | 2006-02-16 00:07:30 +0300 (Thu, 16 Feb 2006) | 1 line +r14 | ipfire | 2006-02-15 22:07:30 +0100 (Wed, 15 Feb 2006) | 1 line ------------------------------------------------------------------------ -r13 | ipfire | 2006-02-15 13:46:10 +0300 (Wed, 15 Feb 2006) | 1 line +r13 | ipfire | 2006-02-15 11:46:10 +0100 (Wed, 15 Feb 2006) | 1 line ------------------------------------------------------------------------ -r12 | ipfire | 2006-02-15 13:31:15 +0300 (Wed, 15 Feb 2006) | 1 line +r12 | ipfire | 2006-02-15 11:31:15 +0100 (Wed, 15 Feb 2006) | 1 line Created folder remotely ------------------------------------------------------------------------ -r11 | ipfire | 2006-02-15 13:28:40 +0300 (Wed, 15 Feb 2006) | 1 line +r11 | ipfire | 2006-02-15 11:28:40 +0100 (Wed, 15 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r10 | ipfire | 2006-02-15 13:27:18 +0300 (Wed, 15 Feb 2006) | 1 line +r10 | ipfire | 2006-02-15 11:27:18 +0100 (Wed, 15 Feb 2006) | 1 line Added a folder remotely ------------------------------------------------------------------------ -r9 | ipfire | 2006-02-15 13:26:47 +0300 (Wed, 15 Feb 2006) | 1 line +r9 | ipfire | 2006-02-15 11:26:47 +0100 (Wed, 15 Feb 2006) | 1 line Moved remotely ------------------------------------------------------------------------ -r8 | ipfire | 2006-02-15 13:26:18 +0300 (Wed, 15 Feb 2006) | 1 line +r8 | ipfire | 2006-02-15 11:26:18 +0100 (Wed, 15 Feb 2006) | 1 line Added a folder remotely ------------------------------------------------------------------------ -r7 | ipfire | 2006-02-15 13:25:16 +0300 (Wed, 15 Feb 2006) | 1 line +r7 | ipfire | 2006-02-15 11:25:16 +0100 (Wed, 15 Feb 2006) | 1 line Added a file remotely ------------------------------------------------------------------------ -r6 | ipfire | 2006-02-15 13:24:03 +0300 (Wed, 15 Feb 2006) | 1 line +r6 | ipfire | 2006-02-15 11:24:03 +0100 (Wed, 15 Feb 2006) | 1 line Added a folder remotely ------------------------------------------------------------------------ -r5 | ipfire | 2006-02-15 12:27:58 +0300 (Wed, 15 Feb 2006) | 1 line +r5 | ipfire | 2006-02-15 10:27:58 +0100 (Wed, 15 Feb 2006) | 1 line Removed file/folder ------------------------------------------------------------------------ -r4 | ipfire | 2006-02-15 12:27:47 +0300 (Wed, 15 Feb 2006) | 1 line +r4 | ipfire | 2006-02-15 10:27:47 +0100 (Wed, 15 Feb 2006) | 1 line Created folder remotely ------------------------------------------------------------------------ -r3 | admin | 2006-02-15 03:27:59 +0300 (Wed, 15 Feb 2006) | 1 line +r3 | admin | 2006-02-15 01:27:59 +0100 (Wed, 15 Feb 2006) | 1 line Ordner im Projektarchiv angelegt ------------------------------------------------------------------------ -r2 | admin | 2006-02-15 03:14:05 +0300 (Wed, 15 Feb 2006) | 1 line +r2 | admin | 2006-02-15 01:14:05 +0100 (Wed, 15 Feb 2006) | 1 line Ordner im Projektarchiv angelegt ------------------------------------------------------------------------ -r1 | admin | 2006-02-15 03:13:56 +0300 (Wed, 15 Feb 2006) | 1 line +r1 | admin | 2006-02-15 01:13:56 +0100 (Wed, 15 Feb 2006) | 1 line Ordner im Projektarchiv angelegt ------------------------------------------------------------------------ diff --git a/lfs/Config b/lfs/Config index e7d2fca79f..32f92eb063 100644 --- a/lfs/Config +++ b/lfs/Config @@ -187,7 +187,8 @@ define PAK fi sed -e "s/KVER/$(KVER)/g" < /usr/src/config/rootfiles/packages/$(PROG) > /install/packages/package/ROOTFILES chmod 755 /install/packages/package/{{,un}install,update}.sh - cd / && tar cf /install/packages/package/files --files-from=/install/packages/package/ROOTFILES --exclude='#*' + cd / && tar cf /install/packages/package/files --files-from=/install/packages/package/ROOTFILES --exclude='#*' \ + --preserve --numeric-owner -cat /install/packages/package/ROOTFILES | grep -v "#" > /install/packages/package/ROOTFILES cd /install/packages/package && tar cf ../$(PROG)-$(VER)-$(PAK_VER).ipfire --files-from=/usr/src/src/paks/files rm -rf /install/packages/package diff --git a/lfs/cyrusimap b/lfs/cyrusimap index bd95745c87..8f87ea1925 100644 --- a/lfs/cyrusimap +++ b/lfs/cyrusimap @@ -77,27 +77,8 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-no_transfig.patch cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-autocreate-0.9.4.diff - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-autosievefolder-0.6.diff - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-rmquota+deletemailbox-0.2-1.diff - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.1.3-flock.patch - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-munge8bit.patch - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.1.16-getrlimit.patch - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.10-groupcache.patch - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-seenstate.patch - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-acceptinvalidfrom.patch - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.3.3-deleteacl_invalid_identifier_fix.patch - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-notify_sms.patch cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-gcc4.patch - cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/timsieved_reset_sasl_conn.patch - cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/allow_auth_plain_proxying.patch - cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/authid_normalize.patch - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-64bit_quota-p1.patch - # cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-64bit_quota-p2.patch - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-singleinstancestore.patch - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-spool.patch - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-mupdate-thread-safe.patch cp -f /usr/include/et/com_err.h /usr/include/com_err.h cd $(DIR_APP) && ./configure --prefix=/usr --with-service-path=/usr/lib/cyrus \ --with-cyrus-prefix=/usr/lib/cyrus --sysconfdir=/var/ipfire/cyrusimap \ @@ -120,9 +101,5 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cp -f $(DIR_APP)/tools/mkimap /usr/bin sudo -u cyrus /usr/bin/mkimap /var/ipfire/cyrusimap/imapd.conf chown cyrus.mail /var/imap/socket - # Wenn das Dateisystem ext2 waere... - # cd /var/imap && chattr +S user quota user/* quota/* && chattr +S /var/spool/imap /var/spool/imap/* - # Give user cyrus a password - echo cyrus:ipfire | /usr/sbin/chpasswd @rm -rf $(DIR_APP) /usr/include/com_err.h @$(POSTBUILD) diff --git a/lfs/openmailadmin b/lfs/openmailadmin index 35eb70dab0..4ab2a7ce02 100644 --- a/lfs/openmailadmin +++ b/lfs/openmailadmin @@ -78,5 +78,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) -C /srv/web mv -v /srv/web/openmailadmin-* /srv/web/openmailadmin + cp -fv $(DIR_SRC)/config/openmailadmin/config.local.inc.php \ + /srv/web/openmailadmin/inc + cp -fv $(DIR_SRC)/config/openmailadmin/mail.dump \ + /srv/web/openmailadmin/ chown nobody.nobody /srv/web/openmailadmin/ -Rv @$(POSTBUILD) diff --git a/src/initscripts/init.d/cyrus-sasl b/src/initscripts/init.d/cyrus-sasl index 1b70725586..31d31471d3 100644 --- a/src/initscripts/init.d/cyrus-sasl +++ b/src/initscripts/init.d/cyrus-sasl @@ -13,7 +13,7 @@ case "$1" in start) boot_mesg "Starting the Cyrus SASL Server..." - loadproc /usr/sbin/saslauthd -a pam + loadproc /usr/sbin/saslauthd -n 2 -a pam ;; stop) diff --git a/src/pakfire/lib/functions.sh b/src/pakfire/lib/functions.sh index aad067fafa..08c617260e 100644 --- a/src/pakfire/lib/functions.sh +++ b/src/pakfire/lib/functions.sh @@ -21,7 +21,7 @@ extract_files() { echo "Extracting files..." - tar xvf /opt/pakfire/tmp/files -C / + tar xvf --preserve --numeric-owner /opt/pakfire/tmp/files -C / echo "...Finished." } diff --git a/src/pakfire/pakfire b/src/pakfire/pakfire index 19c090486c..1c4a2f67d0 100644 --- a/src/pakfire/pakfire +++ b/src/pakfire/pakfire @@ -45,7 +45,7 @@ # if ( $0 =~ /pakfire-update$/ ) { &Pakfire::message("CRON INFO: Running an update"); - my $random = int(rand(3600)); + my $random = int(rand(60)); &Pakfire::logger("CRON INFO: Waiting for $random seconds."); sleep($random); $ARGV[0] = "update"; diff --git a/src/paks/clamav/install.sh b/src/paks/clamav/install.sh index 4c704dc0a0..f562803fae 100644 --- a/src/paks/clamav/install.sh +++ b/src/paks/clamav/install.sh @@ -3,6 +3,4 @@ extract_files -chown clamav:clamav /usr/share/clamav -Rv - /usr/local/bin/clamavctrl enable diff --git a/src/patches/allow_auth_plain_proxying.patch b/src/patches/allow_auth_plain_proxying.patch deleted file mode 100644 index 33e067c706..0000000000 --- a/src/patches/allow_auth_plain_proxying.patch +++ /dev/null @@ -1,28 +0,0 @@ ---- imap/imapd.c -+++ imap/imapd.c 2004/01/16 12:25:51 -@@ -578,8 +578,11 @@ - fatal("SASL failed initializing: sasl_server_new()", EC_TEMPFAIL); - } - -- /* never allow plaintext, since IMAP has the LOGIN command */ -- secprops = mysasl_secprops(SASL_SEC_NOPLAINTEXT); -+ if( (config_getswitch(IMAPOPT_ALLOWPLAINWITHOUTTLS) == 0) ) { -+ secprops = mysasl_secprops(SASL_SEC_NOPLAINTEXT); -+ } else { -+ secprops = mysasl_secprops(0); -+ } - sasl_setprop(imapd_saslconn, SASL_SEC_PROPS, secprops); - sasl_setprop(imapd_saslconn, SASL_SSF_EXTERNAL, &extprops_ssf); - ---- lib/imapoptions -+++ lib/imapoptions 2004/01/16 12:27:52 -@@ -684,6 +684,9 @@ - to set this to yes, especially if OpenLDAP is used as authentication - source. */ - -+{ "allowplainwithouttls", 0, SWITCH } -+/* Allow plain login mechanism without an encrypted connection. */ -+ - /* - .SH SEE ALSO - .PP diff --git a/src/patches/authid_normalize.patch b/src/patches/authid_normalize.patch deleted file mode 100644 index dcdc300950..0000000000 --- a/src/patches/authid_normalize.patch +++ /dev/null @@ -1,77 +0,0 @@ ---- lib/auth_unix.c -+++ lib/auth_unix.c 2004/05/31 11:32:50 -@@ -159,10 +159,12 @@ - size_t len; - { - static char retbuf[81]; -+ char backup[81]; - struct group *grp; - char sawalpha; - char *p; - int username_tolower = 0; -+ int ic,rbc; - - if(!len) len = strlen(identifier); - if(len >= sizeof(retbuf)) return NULL; -@@ -210,6 +212,22 @@ - - if (!sawalpha) return NULL; /* has to be one alpha char */ - -+ if( (libcyrus_config_getswitch(CYRUSOPT_NORMALIZEUID) == 1) ) { -+ strcpy(backup,retbuf); -+ /* remove leading blanks */ -+ for(ic=0; isblank(backup[ic]); ic++); -+ for(rbc=0; backup[ic]; ic++) { -+ retbuf[rbc] = ( isalpha(backup[ic]) ? -+ tolower(backup[ic]) : backup[ic] ); -+ rbc++; -+ } -+ retbuf[rbc] = '\0'; -+ /* remove trailing blanks */ -+ for(--rbc; isblank(retbuf[rbc]); rbc--) { -+ retbuf[rbc] = '\0'; -+ } -+ } -+ - return retbuf; - } - ---- lib/imapoptions -+++ lib/imapoptions 2004/05/31 11:32:50 -@@ -832,6 +832,11 @@ - interface, otherwise the user is assumed to be in the default - domain (if set). */ - -+{ "normalizeuid", 0, SWITCH } -+/* Lowercase uid and strip leading and trailing blanks. It is recommended -+ to set this to yes, especially if OpenLDAP is used as authentication -+ source. */ -+ - /* - .SH SEE ALSO - .PP ---- lib/libcyr_cfg.c -+++ lib/libcyr_cfg.c 2004/05/31 11:32:50 -@@ -118,6 +118,11 @@ - CFGVAL(int, 100), - CYRUS_OPT_INT }, - -+ { CYRUSOPT_NORMALIZEUID, -+ (union cyrus_config_value)((int)1), -+ CYRUS_OPT_SWITCH }, -+ -+ - { CYRUSOPT_LAST, { NULL }, CYRUS_OPT_NOTOPT } - }; - ---- lib/libcyr_cfg.h -+++ lib/libcyr_cfg.h 2004/05/31 11:33:10 -@@ -97,6 +97,8 @@ - CYRUSOPT_BERKELEY_LOCKS_MAX, - /* BDB max txns (100) */ - CYRUSOPT_BERKELEY_TXNS_MAX, -+ /* Lowercase uid and strip leading and trailing blanks (OFF) */ -+ CYRUSOPT_NORMALIZEUID, - - CYRUSOPT_LAST - diff --git a/src/patches/cyrus-imapd-2.1.16-getrlimit.patch b/src/patches/cyrus-imapd-2.1.16-getrlimit.patch deleted file mode 100644 index 08b7c3c646..0000000000 --- a/src/patches/cyrus-imapd-2.1.16-getrlimit.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- cyrus-imapd-2.1.16/master/master.c.getrlimit 2003-12-28 17:32:46.000000000 +0100 -+++ cyrus-imapd-2.1.16/master/master.c 2003-12-28 17:43:56.000000000 +0100 -@@ -1208,12 +1208,10 @@ - rl.rlim_cur = x; - rl.rlim_max = x; - if (setrlimit(RLIMIT_NUMFDS, &rl) < 0) { -- syslog(LOG_ERR, "setrlimit: Unable to set file descriptors limit to %ld: %m", x); - - #ifdef HAVE_GETRLIMIT - - if (!getrlimit(RLIMIT_NUMFDS, &rl)) { -- syslog(LOG_ERR, "retrying with %ld (current max)", rl.rlim_max); - rl.rlim_cur = rl.rlim_max; - if (setrlimit(RLIMIT_NUMFDS, &rl) < 0) { - syslog(LOG_ERR, "setrlimit: Unable to set file descriptors limit to %ld: %m", x); -@@ -1228,6 +1226,7 @@ - rl.rlim_max); - } - #else -+ syslog(LOG_ERR, "setrlimit: Unable to set file descriptors limit to %ld: %m", x); - } - #endif /* HAVE_GETRLIMIT */ - } diff --git a/src/patches/cyrus-imapd-2.1.3-flock.patch b/src/patches/cyrus-imapd-2.1.3-flock.patch deleted file mode 100644 index b74b99da77..0000000000 --- a/src/patches/cyrus-imapd-2.1.3-flock.patch +++ /dev/null @@ -1,77 +0,0 @@ ---- cyrus-imapd-2.1.3/lib/lock_flock.c Tue Oct 2 16:08:13 2001 -+++ cyrus-imapd-2.1.3-patched/lib/lock_flock.c Tue Apr 16 09:44:58 2002 -@@ -51,6 +51,10 @@ - #endif - - #include "lock.h" -+#include -+ -+/* Locking timeout parameter */ -+#define MAXTIME 99 - - const char *lock_method_desc = "flock"; - -@@ -69,6 +73,18 @@ - * 'failaction' is provided, it is filled in with a pointer to a fixed - * string naming the action that failed. - * -+ * Modified by jwade 4/16/2002 to work around seen file locking problem -+ * Added locking timeout parameter to allow processes that are -+ * waiting for a lock to eventually time out -+ * -+ * Calls flock() in non-blocking fashion and then retries until a -+ * maximum delay is reached or the lock succeeds. -+ * -+ * As written, uses a quadratic backoff on retries with MAXTIME being -+ * the longest interval delay. Total delay time is the sum of the squares -+ * of all integers whose square is less than MAXTIME. In the case of -+ * MAXTIME = 99 this is 0+1+4+9+16+25+36+49+64+81= 285 Seconds -+ * This time is arbitrary and can be adjusted - */ - int lock_reopen(fd, filename, sbuf, failaction) - int fd; -@@ -79,17 +95,29 @@ - int r; - struct stat sbuffile, sbufspare; - int newfd; -+ int delay=0, i=0; - - if (!sbuf) sbuf = &sbufspare; - -- for (;;) { -- r = flock(fd, LOCK_EX); -+ for(i=0,delay=0;;) { -+ r = flock(fd, LOCK_EX|LOCK_NB); - if (r == -1) { -- if (errno == EINTR) continue; -- if (failaction) *failaction = "locking"; -+ if (errno == EINTR) { -+ continue; -+ } -+ else if ((errno == EWOULDBLOCK) && (delay < MAXTIME)) { -+ syslog(LOG_DEBUG, "lock: reopen-blocked sleeping for %d on interval %d (%d, %s)" , delay, i, fd, filename); -+ sleep(delay); -+ i++; -+ delay = i*i; -+ continue; -+ } -+ if (failaction) { -+ if (delay >= MAXTIME) *failaction = "locking_timeout"; -+ else *failaction = "locking"; -+ } - return -1; - } -- - fstat(fd, sbuf); - r = stat(filename, &sbuffile); - if (r == -1) { -@@ -97,9 +125,7 @@ - flock(fd, LOCK_UN); - return -1; - } -- - if (sbuf->st_ino == sbuffile.st_ino) return 0; -- - newfd = open(filename, O_RDWR); - if (newfd == -1) { - if (failaction) *failaction = "opening"; diff --git a/src/patches/cyrus-imapd-2.2.10-groupcache.patch b/src/patches/cyrus-imapd-2.2.10-groupcache.patch deleted file mode 100644 index 4d1a04e022..0000000000 --- a/src/patches/cyrus-imapd-2.2.10-groupcache.patch +++ /dev/null @@ -1,43 +0,0 @@ -diff -Naur cyrus-imapd-2.2.10.orig/lib/auth_unix.c cyrus-imapd-2.2.10/lib/auth_unix.c ---- cyrus-imapd-2.2.10.orig/lib/auth_unix.c Tue Sep 14 00:49:29 2004 -+++ cyrus-imapd-2.2.10/lib/auth_unix.c Thu Dec 16 08:36:32 2004 -@@ -48,6 +48,7 @@ - #include - #include - #include -+#include - #include - #include - -@@ -226,6 +227,10 @@ - struct passwd *pwd; - struct group *grp; - char **mem; -+ FILE *groupcache; -+ char fnamebuf[1024]; -+ const char *config_dir = -+ libcyrus_config_getstring(CYRUSOPT_CONFIG_DIR); - - identifier = auth_canonifyid(identifier, 0); - if (!identifier) return 0; -@@ -242,8 +247,11 @@ - - pwd = getpwnam(identifier); - -+ strcpy(fnamebuf, config_dir); -+ strcat(fnamebuf, "/group.cache"); -+ groupcache = fopen(fnamebuf, "r"); - setgrent(); -- while ((grp = getgrent())) { -+ while (grp = ( (groupcache) ? fgetgrent(groupcache) : getgrent() )) { - for (mem = grp->gr_mem; *mem; mem++) { - if (!strcmp(*mem, identifier)) break; - } -@@ -256,6 +264,7 @@ - } - } - endgrent(); -+ if (groupcache) fclose(groupcache); - return newstate; - } - diff --git a/src/patches/cyrus-imapd-2.2.12-64bit_quota-p1.patch b/src/patches/cyrus-imapd-2.2.12-64bit_quota-p1.patch deleted file mode 100644 index a20770e703..0000000000 --- a/src/patches/cyrus-imapd-2.2.12-64bit_quota-p1.patch +++ /dev/null @@ -1,647 +0,0 @@ -diff -Naur cyrus-imapd-2.2.12.orig/configure.in cyrus-imapd-2.2.12/configure.in ---- cyrus-imapd-2.2.12.orig/configure.in 2005-01-19 00:46:00.000000000 +0100 -+++ cyrus-imapd-2.2.12/configure.in 2006-04-25 07:35:25.000000000 +0200 -@@ -100,6 +100,15 @@ - fi - AC_C_INLINE - -+dnl Check if `long long int' is available -+AC_CHECK_SIZEOF(long long int) -+AC_CHECK_SIZEOF(unsigned long long int) -+if test "$ac_cv_sizeof_long_long_int" -eq 8 -a \ -+ "$ac_cv_sizeof_unsigned_long_long_int" -eq 8; then -+ AC_DEFINE(HAVE_LONG_LONG_INT,[],[Does the compiler support long long int?]) -+ AC_C_BIGENDIAN -+fi -+ - CMU_C___ATTRIBUTE__ - CMU_C_FPIC - -diff -Naur cyrus-imapd-2.2.12.orig/imap/append.c cyrus-imapd-2.2.12/imap/append.c ---- cyrus-imapd-2.2.12.orig/imap/append.c 2004-05-22 05:45:48.000000000 +0200 -+++ cyrus-imapd-2.2.12/imap/append.c 2006-04-25 07:35:25.000000000 +0200 -@@ -140,7 +140,7 @@ - if (!r) { - if (m.quota.limit >= 0 && quotacheck >= 0 && - m.quota.used + quotacheck > -- ((unsigned) m.quota.limit * QUOTA_UNITS)) { -+ ((uquota_t) m.quota.limit * QUOTA_UNITS)) { - r = IMAP_QUOTA_EXCEEDED; - } - } -@@ -208,7 +208,7 @@ - if (!r) { - if (as->m.quota.limit >= 0 && quotacheck >= 0 && - as->m.quota.used + quotacheck > -- ((unsigned) as->m.quota.limit * QUOTA_UNITS)) { -+ ((uquota_t) as->m.quota.limit * QUOTA_UNITS)) { - quota_abort(&as->tid); - mailbox_close(&as->m); - r = IMAP_QUOTA_EXCEEDED; -diff -Naur cyrus-imapd-2.2.12.orig/imap/imapd.c cyrus-imapd-2.2.12/imap/imapd.c ---- cyrus-imapd-2.2.12.orig/imap/imapd.c 2005-02-14 07:39:55.000000000 +0100 -+++ cyrus-imapd-2.2.12/imap/imapd.c 2006-04-25 07:35:25.000000000 +0200 -@@ -2626,10 +2626,10 @@ - */ - int warnsize = config_getint(IMAPOPT_QUOTAWARNKB); - if (warnsize <= 0 || warnsize >= imapd_mailbox->quota.limit || -- (int)((imapd_mailbox->quota.limit * QUOTA_UNITS) - -- imapd_mailbox->quota.used) < (warnsize * QUOTA_UNITS)) { -+ ((uquota_t) (imapd_mailbox->quota.limit - warnsize)) * QUOTA_UNITS < -+ imapd_mailbox->quota.used) { - usage = ((double) imapd_mailbox->quota.used * 100.0) / (double) -- (imapd_mailbox->quota.limit * QUOTA_UNITS); -+ ((uquota_t) imapd_mailbox->quota.limit * QUOTA_UNITS); - if (usage >= 100.0) { - prot_printf(imapd_out, "* NO [ALERT] %s\r\n", - error_message(IMAP_NO_OVERQUOTA)); -@@ -4626,7 +4626,7 @@ - printastring(name); - prot_printf(imapd_out, " ("); - if (quota.limit >= 0) { -- prot_printf(imapd_out, "STORAGE %lu %d", -+ prot_printf(imapd_out, "STORAGE " UQUOTA_T_FMT " %d", - quota.used/QUOTA_UNITS, quota.limit); - } - prot_printf(imapd_out, ")\r\n"); -@@ -4688,7 +4688,7 @@ - printastring(mailboxname); - prot_printf(imapd_out, " ("); - if (mailbox.quota.limit >= 0) { -- prot_printf(imapd_out, "STORAGE %lu %d", -+ prot_printf(imapd_out, "STORAGE " UQUOTA_T_FMT " %d", - mailbox.quota.used/QUOTA_UNITS, - mailbox.quota.limit); - } -diff -Naur cyrus-imapd-2.2.12.orig/imap/mailbox.c cyrus-imapd-2.2.12/imap/mailbox.c ---- cyrus-imapd-2.2.12.orig/imap/mailbox.c 2005-02-14 07:39:57.000000000 +0100 -+++ cyrus-imapd-2.2.12/imap/mailbox.c 2006-04-25 07:36:13.000000000 +0200 -@@ -84,6 +84,7 @@ - #include "seen.h" - #include "util.h" - #include "xmalloc.h" -+#include "byteorder64.h" - - static int mailbox_doing_reconstruct = 0; - #define zeromailbox(m) { memset(&m, 0, sizeof(struct mailbox)); \ -@@ -788,8 +789,17 @@ - mailbox->last_uid = - ntohl(*((bit32 *)(mailbox->index_base+OFFSET_LAST_UID))); - -- mailbox->quota_mailbox_used = -- ntohl(*((bit32 *)(mailbox->index_base+OFFSET_QUOTA_MAILBOX_USED-quota_upgrade_offset))); -+#ifdef HAVE_LONG_LONG_INT -+ if (mailbox->minor_version > 5) { -+ /* newer versions may use 64bit quotas now */ -+ mailbox->quota_mailbox_used = -+ ntohll(*((bit64 *)(mailbox->index_base+OFFSET_QUOTA_MAILBOX_USED64))); -+ } else -+#endif -+ { -+ mailbox->quota_mailbox_used = -+ ntohl(*((bit32 *)(mailbox->index_base+OFFSET_QUOTA_MAILBOX_USED-quota_upgrade_offset))); -+ } - - if (mailbox->start_offset < OFFSET_POP3_LAST_LOGIN-quota_upgrade_offset+sizeof(bit32)) { - mailbox->pop3_last_login = 0; -@@ -1183,9 +1193,18 @@ - *((bit32 *)(buf+OFFSET_EXISTS)) = htonl(mailbox->exists); - *((bit32 *)(buf+OFFSET_LAST_APPENDDATE)) = htonl(mailbox->last_appenddate); - *((bit32 *)(buf+OFFSET_LAST_UID)) = htonl(mailbox->last_uid); -- *((bit32 *)(buf+OFFSET_QUOTA_RESERVED_FIELD)) = htonl(0); /* RESERVED */ -+ -+ /* quotas may be 64bit now */ -+#ifdef HAVE_LONG_LONG_INT -+ *((bit64 *)(buf+OFFSET_QUOTA_MAILBOX_USED64)) = -+ htonll(mailbox->quota_mailbox_used); -+#else -+ /* zero the unused 32bits */ -+ *((bit32 *)(buf+OFFSET_QUOTA_MAILBOX_USED64)) = htonl(0); - *((bit32 *)(buf+OFFSET_QUOTA_MAILBOX_USED)) = - htonl(mailbox->quota_mailbox_used); -+#endif -+ - *((bit32 *)(buf+OFFSET_POP3_LAST_LOGIN)) = htonl(mailbox->pop3_last_login); - *((bit32 *)(buf+OFFSET_UIDVALIDITY)) = htonl(mailbox->uidvalidity); - *((bit32 *)(buf+OFFSET_DELETED)) = htonl(mailbox->deleted); -@@ -1430,9 +1449,18 @@ - *((bit32 *)(buf+OFFSET_EXISTS)) = htonl(mailbox->exists); - *((bit32 *)(buf+OFFSET_LAST_APPENDDATE)) = htonl(mailbox->last_appenddate); - *((bit32 *)(buf+OFFSET_LAST_UID)) = htonl(mailbox->last_uid); -- /* OFFSET_QUOTA_RESERVED_FIELD left as zero */ -+ -+ /* newer versions may use 64bit quotas */ -+#ifdef HAVE_LONG_LONG_INT -+ *((bit64 *)(buf+OFFSET_QUOTA_MAILBOX_USED64)) = -+ htonll(mailbox->quota_mailbox_used); -+#else -+ /* zero the unused 32bits */ -+ *((bit32 *)(buf+OFFSET_QUOTA_MAILBOX_USED64)) = htonl(0); - *((bit32 *)(buf+OFFSET_QUOTA_MAILBOX_USED)) = - htonl(mailbox->quota_mailbox_used); -+#endif -+ - *((bit32 *)(buf+OFFSET_POP3_LAST_LOGIN)) = htonl(mailbox->pop3_last_login); - *((bit32 *)(buf+OFFSET_UIDVALIDITY)) = htonl(mailbox->uidvalidity); - *((bit32 *)(buf+OFFSET_DELETED)) = htonl(mailbox->deleted); -@@ -1608,7 +1636,8 @@ - size_t fnamebuf_len; - FILE *newindex = NULL, *newcache = NULL; - unsigned long *deleted; -- unsigned numdeleted = 0, quotadeleted = 0; -+ unsigned numdeleted = 0; -+ uquota_t quotadeleted = 0; - unsigned numansweredflag = 0; - unsigned numdeletedflag = 0; - unsigned numflaggedflag = 0; -@@ -1829,8 +1858,13 @@ - *((bit32 *)(buf+OFFSET_FLAGGED)) = htonl(newflagged); - - /* Fix up quota_mailbox_used */ -+#ifdef HAVE_LONG_LONG_INT -+ *((bit64 *)(buf+OFFSET_QUOTA_MAILBOX_USED64)) = -+ htonll(ntohll(*((bit64 *)(buf+OFFSET_QUOTA_MAILBOX_USED64)))-quotadeleted); -+#else - *((bit32 *)(buf+OFFSET_QUOTA_MAILBOX_USED)) = - htonl(ntohl(*((bit32 *)(buf+OFFSET_QUOTA_MAILBOX_USED)))-quotadeleted); -+#endif - /* Fix up start offset if necessary */ - if (mailbox->start_offset < INDEX_HEADER_SIZE) { - *((bit32 *)(buf+OFFSET_START_OFFSET)) = htonl(INDEX_HEADER_SIZE); -@@ -1862,7 +1896,7 @@ - if (!r) quota_commit(&tid); - else { - syslog(LOG_ERR, -- "LOSTQUOTA: unable to record free of %u bytes in quota %s", -+ "LOSTQUOTA: unable to record free of " UQUOTA_T_FMT " bytes in quota %s", - quotadeleted, mailbox->quota.root); - } - } -@@ -2250,7 +2284,7 @@ - strcmp(oldmailbox->quota.root, newmailbox->quota.root) != 0) { - if (!r && newmailbox->quota.limit >= 0 && - newmailbox->quota.used + oldmailbox->quota_mailbox_used > -- ((unsigned) newmailbox->quota.limit * QUOTA_UNITS)) { -+ ((uquota_t) newmailbox->quota.limit * QUOTA_UNITS)) { - r = IMAP_QUOTA_EXCEEDED; - } - } -@@ -2464,7 +2498,7 @@ - strcmp(oldmailbox.quota.root, newmailbox.quota.root) != 0) { - if (!r && newmailbox.quota.limit >= 0 && - newmailbox.quota.used + oldmailbox.quota_mailbox_used > -- ((unsigned) newmailbox.quota.limit * QUOTA_UNITS)) { -+ ((uquota_t) newmailbox.quota.limit * QUOTA_UNITS)) { - r = IMAP_QUOTA_EXCEEDED; - } - } -@@ -2617,7 +2651,7 @@ - else if (r2 == IMAP_QUOTAROOT_NONEXISTENT) r2 = 0; - if (r2) { - syslog(LOG_ERR, -- "LOSTQUOTA: unable to record use of %lu bytes in quota %s", -+ "LOSTQUOTA: unable to record use of " UQUOTA_T_FMT " bytes in quota %s", - newmailbox.quota_mailbox_used, newmailbox.quota.root); - } - } -diff -Naur cyrus-imapd-2.2.12.orig/imap/mailbox.h cyrus-imapd-2.2.12/imap/mailbox.h ---- cyrus-imapd-2.2.12.orig/imap/mailbox.h 2004-01-22 22:17:09.000000000 +0100 -+++ cyrus-imapd-2.2.12/imap/mailbox.h 2006-04-25 07:35:25.000000000 +0200 -@@ -45,6 +45,7 @@ - #include - #include - #include -+#include - - #include "auth.h" - #include "quota.h" -@@ -61,6 +62,10 @@ - #error dont know what to use for bit32 - #endif - -+#ifdef HAVE_LONG_LONG_INT -+typedef unsigned long long int bit64; -+#endif -+ - #define MAX_MAILBOX_NAME 490 - #define MAX_MAILBOX_PATH 4096 - -@@ -126,7 +131,7 @@ - unsigned long exists; - time_t last_appenddate; - unsigned long last_uid; -- unsigned long quota_mailbox_used; -+ uquota_t quota_mailbox_used; - unsigned long pop3_last_login; - unsigned long uidvalidity; - -@@ -168,8 +173,8 @@ - #define OFFSET_EXISTS 20 - #define OFFSET_LAST_APPENDDATE 24 - #define OFFSET_LAST_UID 28 --#define OFFSET_QUOTA_RESERVED_FIELD 32 /* Reserved for 64bit quotas */ --#define OFFSET_QUOTA_MAILBOX_USED 36 -+#define OFFSET_QUOTA_MAILBOX_USED64 32 /* offset for 64bit quotas */ -+#define OFFSET_QUOTA_MAILBOX_USED 36 /* offset for 32bit quotas */ - #define OFFSET_POP3_LAST_LOGIN 40 - #define OFFSET_UIDVALIDITY 44 - #define OFFSET_DELETED 48 /* added for ACAP */ -diff -Naur cyrus-imapd-2.2.12.orig/imap/mbdump.c cyrus-imapd-2.2.12/imap/mbdump.c ---- cyrus-imapd-2.2.12.orig/imap/mbdump.c 2004-05-22 05:45:51.000000000 +0200 -+++ cyrus-imapd-2.2.12/imap/mbdump.c 2006-04-25 07:35:25.000000000 +0200 -@@ -507,7 +507,7 @@ - { - struct buf file, data; - char c; -- int quotaused = 0; -+ uquota_t quotaused = 0; - int r = 0; - int curfile = -1; - const char *userid = NULL; -diff -Naur cyrus-imapd-2.2.12.orig/imap/mbexamine.c cyrus-imapd-2.2.12/imap/mbexamine.c ---- cyrus-imapd-2.2.12.orig/imap/mbexamine.c 2004-12-17 17:32:16.000000000 +0100 -+++ cyrus-imapd-2.2.12/imap/mbexamine.c 2006-04-25 07:35:25.000000000 +0200 -@@ -266,7 +266,7 @@ - printf(" Minor Version: %d\n", mailbox.minor_version); - printf(" Header Size: %ld bytes Record Size: %ld bytes\n", - mailbox.start_offset, mailbox.record_size); -- printf(" Number of Messages: %lu Mailbox Size: %lu bytes\n", -+ printf(" Number of Messages: %lu Mailbox Size: " UQUOTA_T_FMT " bytes\n", - mailbox.exists, mailbox.quota_mailbox_used); - printf(" Last Append Date: (%ld) %s", mailbox.last_appenddate, - ctime(&mailbox.last_appenddate)); -diff -Naur cyrus-imapd-2.2.12.orig/imap/quota.c cyrus-imapd-2.2.12/imap/quota.c ---- cyrus-imapd-2.2.12.orig/imap/quota.c 2004-06-30 21:23:26.000000000 +0200 -+++ cyrus-imapd-2.2.12/imap/quota.c 2006-04-25 07:35:25.000000000 +0200 -@@ -120,7 +120,7 @@ - struct quota quota; - int refcount; - int deleted; -- unsigned long newused; -+ uquota_t newused; - }; - - #define QUOTAGROW 300 -@@ -251,7 +251,7 @@ - } - memset("a[quota_num], 0, sizeof(struct quotaentry)); - quota[quota_num].quota.root = xstrndup(key, keylen); -- sscanf(data, "%lu %d", -+ sscanf(data, UQUOTA_T_FMT " %d", - "a[quota_num].quota.used, "a[quota_num].quota.limit); - - quota_num++; -@@ -422,7 +422,7 @@ - (*count)++; - } - if (quota[thisquota].quota.used != quota[thisquota].newused) { -- printf("%s: usage was %lu, now %lu\n", quota[thisquota].quota.root, -+ printf("%s: usage was " UQUOTA_T_FMT ", now " UQUOTA_T_FMT "\n", quota[thisquota].quota.root, - quota[thisquota].quota.used, quota[thisquota].newused); - quota[thisquota].quota.used = quota[thisquota].newused; - r = quota_write("a[thisquota].quota, tid); -@@ -489,12 +489,12 @@ - int i; - char buf[MAX_MAILBOX_PATH+1]; - -- printf(" Quota %% Used Used Root\n"); -+ printf(" Quota %% Used Used Root\n"); - - for (i = 0; i < quota_num; i++) { - if (quota[i].deleted) continue; - if (quota[i].quota.limit > 0) { -- printf(" %7d %7ld", quota[i].quota.limit, -+ printf(" %7d " QUOTA_REPORT_FMT , quota[i].quota.limit, - ((quota[i].quota.used / QUOTA_UNITS) * 100) / quota[i].quota.limit); - } - else if (quota[i].quota.limit == 0) { -@@ -507,6 +507,6 @@ - (*quota_namespace.mboxname_toexternal)("a_namespace, - quota[i].quota.root, - "cyrus", buf); -- printf(" %7ld %s\n", quota[i].quota.used / QUOTA_UNITS, buf); -+ printf(" " QUOTA_REPORT_FMT " %s\n", quota[i].quota.used / QUOTA_UNITS, buf); - } - } -diff -Naur cyrus-imapd-2.2.12.orig/imap/quota_db.c cyrus-imapd-2.2.12/imap/quota_db.c ---- cyrus-imapd-2.2.12.orig/imap/quota_db.c 2004-05-22 05:45:52.000000000 +0200 -+++ cyrus-imapd-2.2.12/imap/quota_db.c 2006-04-25 07:35:25.000000000 +0200 -@@ -89,7 +89,7 @@ - - switch (r) { - case CYRUSDB_OK: -- sscanf(data, "%lu %d", "a->used, "a->limit); -+ sscanf(data, UQUOTA_T_FMT " %d", "a->used, "a->limit); - break; - - case CYRUSDB_AGAIN: -@@ -151,7 +151,7 @@ - if (!qrlen) return IMAP_QUOTAROOT_NONEXISTENT; - - len = snprintf(buf, sizeof(buf) - 1, -- "%lu %d", quota->used, quota->limit); -+ UQUOTA_T_FMT " %d", quota->used, quota->limit); - r = QDB->store(qdb, quota->root, qrlen, buf, len, tid); - - switch (r) { -diff -Naur cyrus-imapd-2.2.12.orig/imap/quota.h cyrus-imapd-2.2.12/imap/quota.h ---- cyrus-imapd-2.2.12.orig/imap/quota.h 2004-02-27 18:44:56.000000000 +0100 -+++ cyrus-imapd-2.2.12/imap/quota.h 2006-04-25 07:35:25.000000000 +0200 -@@ -45,18 +45,37 @@ - #define INCLUDED_QUOTA_H - - #include "cyrusdb.h" -+#include - - #define FNAME_QUOTADB "/quotas.db" - - #define QUOTA_UNITS (1024) - -+/* Define the proper quota type, it should either be a -+ * long or a long long int depending upon what the -+ * the compiler supports. -+ */ -+#ifdef HAVE_LONG_LONG_INT -+typedef unsigned long long int uquota_t; -+typedef long long int quota_t; -+#define UQUOTA_T_FMT "%llu" -+#define QUOTA_T_FMT "%lld" -+#define QUOTA_REPORT_FMT "%8llu" -+#else -+typedef unsigned long uquota_t; -+typedef long quota_t; -+#define UQUOTA_T_FMT "%lu" -+#define QUOTA_T_FMT "%ld" -+#define QUOTA_REPORT_FMT "%8lu" -+#endif -+ - extern struct db *qdb; - - struct quota { - char *root; - - /* Information in quota entry */ -- unsigned long used; -+ uquota_t used; - int limit; /* in QUOTA_UNITS */ - }; - -diff -Naur cyrus-imapd-2.2.12.orig/imap/reconstruct.c cyrus-imapd-2.2.12/imap/reconstruct.c ---- cyrus-imapd-2.2.12.orig/imap/reconstruct.c 2004-10-11 16:01:24.000000000 +0200 -+++ cyrus-imapd-2.2.12/imap/reconstruct.c 2006-04-25 07:35:25.000000000 +0200 -@@ -93,6 +93,7 @@ - #include "retry.h" - #include "convert_code.h" - #include "util.h" -+#include "byteorder64.h" - - extern int optind; - extern char *optarg; -@@ -434,7 +435,7 @@ - char *list_acl, *list_part; - int list_type; - -- unsigned long new_quota = 0; -+ uquota_t new_quota = 0; - - struct index_record message_index, old_index; - static struct index_record zero_index; -@@ -690,7 +691,14 @@ - *((bit32 *)(buf+OFFSET_EXISTS)) = htonl(new_exists); - *((bit32 *)(buf+OFFSET_LAST_APPENDDATE)) = htonl(mailbox.last_appenddate); - *((bit32 *)(buf+OFFSET_LAST_UID)) = htonl(mailbox.last_uid); -+ -+ /* quotas may be 64bit now */ -+#ifdef HAVE_LONG_LONG_INT -+ *((bit64 *)(buf+OFFSET_QUOTA_MAILBOX_USED64)) = htonll(new_quota); -+#else - *((bit32 *)(buf+OFFSET_QUOTA_MAILBOX_USED)) = htonl(new_quota); -+#endif -+ - *((bit32 *)(buf+OFFSET_POP3_LAST_LOGIN)) = htonl(mailbox.pop3_last_login); - *((bit32 *)(buf+OFFSET_UIDVALIDITY)) = htonl(mailbox.uidvalidity); - *((bit32 *)(buf+OFFSET_DELETED)) = htonl(new_deleted); -diff -Naur cyrus-imapd-2.2.12.orig/lib/byteorder64.c cyrus-imapd-2.2.12/lib/byteorder64.c ---- cyrus-imapd-2.2.12.orig/lib/byteorder64.c 1970-01-01 01:00:00.000000000 +0100 -+++ cyrus-imapd-2.2.12/lib/byteorder64.c 2006-04-25 07:35:25.000000000 +0200 -@@ -0,0 +1,95 @@ -+/* byteorder64.c -- convert 64-bit values between host and network byte order -+ * -+ * Copyright (c) 2004 Carnegie Mellon University. All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions -+ * are met: -+ * -+ * 1. Redistributions of source code must retain the above copyright -+ * notice, this list of conditions and the following disclaimer. -+ * -+ * 2. Redistributions in binary form must reproduce the above copyright -+ * notice, this list of conditions and the following disclaimer in -+ * the documentation and/or other materials provided with the -+ * distribution. -+ * -+ * 3. The name "Carnegie Mellon University" must not be used to -+ * endorse or promote products derived from this software without -+ * prior written permission. For permission or any other legal -+ * details, please contact -+ * Office of Technology Transfer -+ * Carnegie Mellon University -+ * 5000 Forbes Avenue -+ * Pittsburgh, PA 15213-3890 -+ * (412) 268-4387, fax: (412) 268-7395 -+ * tech-transfer@andrew.cmu.edu -+ * -+ * 4. Redistributions of any form whatsoever must retain the following -+ * acknowledgment: -+ * "This product includes software developed by Computing Services -+ * at Carnegie Mellon University (http://www.cmu.edu/computing/)." -+ * -+ * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO -+ * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -+ * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE -+ * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN -+ * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING -+ * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -+ * -+ * $Id: byteorder64.c,v 1.1.2.1 2004/08/09 18:51:21 ken3 Exp $ -+ */ -+ -+#include -+ -+#if defined(HAVE_LONG_LONG_INT) && !defined(WORDS_BIGENDIAN) -+ -+#include -+ -+/* Structure used to swap the bytes in a 64-bit unsigned long long. */ -+union byteswap_64_u { -+ unsigned long long a; -+ uint32_t b[2]; -+}; -+ -+/* Function to byteswap 64bit unsigned integers on -+ * little endian machines to big endian network order. -+ * On big endian machines this will be a null macro. -+ * The macro htonll() is defined in byteorder64.h, -+ * and if needed refers to _htonll() here. -+ */ -+unsigned long long _htonll(unsigned long long x) -+{ -+ union byteswap_64_u u1; -+ union byteswap_64_u u2; -+ -+ u1.a = x; -+ -+ u2.b[0] = htonl(u1.b[1]); -+ u2.b[1] = htonl(u1.b[0]); -+ -+ return u2.a; -+} -+ -+ -+/* Function to byteswap big endian 64bit unsigned integers -+ * back to little endian host order on little endian machines. -+ * As above, on big endian machines this will be a null macro. -+ * The macro ntohll() is defined in byteorder64.h, and if needed, -+ * refers to _ntohll() here. -+ */ -+unsigned long long _ntohll(unsigned long long x) -+{ -+ union byteswap_64_u u1; -+ union byteswap_64_u u2; -+ -+ u1.a = x; -+ -+ u2.b[1] = ntohl(u1.b[0]); -+ u2.b[0] = ntohl(u1.b[1]); -+ -+ return u2.a; -+} -+ -+#endif /* defined(HAVE_LONG_LONG_INT) && !defined(WORDS_BIGENDIAN) */ -diff -Naur cyrus-imapd-2.2.12.orig/lib/byteorder64.h cyrus-imapd-2.2.12/lib/byteorder64.h ---- cyrus-imapd-2.2.12.orig/lib/byteorder64.h 1970-01-01 01:00:00.000000000 +0100 -+++ cyrus-imapd-2.2.12/lib/byteorder64.h 2006-04-25 07:35:25.000000000 +0200 -@@ -0,0 +1,65 @@ -+/* byteorder64.h -- convert 64-bit values between host and network byte order -+ * -+ * Copyright (c) 2004 Carnegie Mellon University. All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions -+ * are met: -+ * -+ * 1. Redistributions of source code must retain the above copyright -+ * notice, this list of conditions and the following disclaimer. -+ * -+ * 2. Redistributions in binary form must reproduce the above copyright -+ * notice, this list of conditions and the following disclaimer in -+ * the documentation and/or other materials provided with the -+ * distribution. -+ * -+ * 3. The name "Carnegie Mellon University" must not be used to -+ * endorse or promote products derived from this software without -+ * prior written permission. For permission or any other legal -+ * details, please contact -+ * Office of Technology Transfer -+ * Carnegie Mellon University -+ * 5000 Forbes Avenue -+ * Pittsburgh, PA 15213-3890 -+ * (412) 268-4387, fax: (412) 268-7395 -+ * tech-transfer@andrew.cmu.edu -+ * -+ * 4. Redistributions of any form whatsoever must retain the following -+ * acknowledgment: -+ * "This product includes software developed by Computing Services -+ * at Carnegie Mellon University (http://www.cmu.edu/computing/)." -+ * -+ * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO -+ * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -+ * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE -+ * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN -+ * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING -+ * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -+ * -+ * $Id: byteorder64.h,v 1.1.2.2 2004/08/16 11:44:34 ken3 Exp $ -+ */ -+ -+#ifndef _BYTEORDER64_H -+#define _BYTEORDER64_H -+ -+#include -+ -+#ifdef HAVE_LONG_LONG_INT -+ -+/* 64-bit host/network byte-order swap macros */ -+#ifdef WORDS_BIGENDIAN -+#define htonll(x) (x) -+#define ntohll(x) (x) -+#else -+#define htonll(x) _htonll(x) -+#define ntohll(x) _ntohll(x) -+ -+/* little-endian 64-bit host/network byte-order swap functions */ -+extern unsigned long long _htonll(unsigned long long); -+extern unsigned long long _ntohll(unsigned long long); -+ -+#endif /* WORDS_BIGENDIAN */ -+#endif /* HAVE_LONG_LONG_INT */ -+#endif /* _BYTEORDER64_H */ -diff -Naur cyrus-imapd-2.2.12.orig/lib/Makefile.in cyrus-imapd-2.2.12/lib/Makefile.in ---- cyrus-imapd-2.2.12.orig/lib/Makefile.in 2004-05-28 20:03:04.000000000 +0200 -+++ cyrus-imapd-2.2.12/lib/Makefile.in 2006-04-25 07:35:25.000000000 +0200 -@@ -85,7 +85,7 @@ - $(srcdir)/lsort.h $(srcdir)/stristr.h \ - $(srcdir)/util.h $(srcdir)/xmalloc.h $(srcdir)/imapurl.h \ - $(srcdir)/cyrusdb.h $(srcdir)/iptostring.h $(srcdir)/rfc822date.h \ -- $(srcdir)/libcyr_cfg.h -+ $(srcdir)/libcyr_cfg.h $(srcdir)/byteorder64.h - - LIBCYR_OBJS = acl.o bsearch.o charset.o glob.o retry.o util.o \ - libcyr_cfg.o mkgmtime.o prot.o parseaddr.o imclient.o imparse.o \ -@@ -93,7 +93,7 @@ - chartable.o imapurl.o nonblock_@WITH_NONBLOCK@.o lock_@WITH_LOCK@.o \ - gmtoff_@WITH_GMTOFF@.o map_@WITH_MAP@.o $(ACL) $(AUTH) \ - @LIBOBJS@ @CYRUSDB_OBJS@ \ -- iptostring.o xmalloc.o wildmat.o -+ iptostring.o xmalloc.o wildmat.o byteorder64.o - - LIBCYRM_HDRS = $(srcdir)/hash.h $(srcdir)/mpool.h $(srcdir)/xmalloc.h \ - $(srcdir)/strhash.o $(srcdir)/libconfig.h $(srcdir)/assert.h \ -diff -Naur cyrus-imapd-2.2.12.orig/lib/prot.c cyrus-imapd-2.2.12/lib/prot.c ---- cyrus-imapd-2.2.12.orig/lib/prot.c 2004-02-27 23:08:56.000000000 +0100 -+++ cyrus-imapd-2.2.12/lib/prot.c 2006-04-25 07:35:25.000000000 +0200 -@@ -894,6 +894,31 @@ - prot_write(s, buf, strlen(buf)); - break; - -+#ifdef HAVE_LONG_LONG_INT -+ case 'l': { -+ long long int ll; -+ unsigned long long int ull; -+ -+ switch (*++percent) { -+ case 'd': -+ ll = va_arg(pvar, long long int); -+ snprintf(buf, sizeof(buf), "%lld", ll); -+ prot_write(s, buf, strlen(buf)); -+ break; -+ -+ case 'u': -+ ull = va_arg(pvar, unsigned long long int); -+ snprintf(buf, sizeof(buf), "%llu", ull); -+ prot_write(s, buf, strlen(buf)); -+ break; -+ -+ default: -+ abort(); -+ } -+ break; -+ } -+#endif -+ - default: - abort(); - } diff --git a/src/patches/cyrus-imapd-2.2.12-64bit_quota-p2.patch b/src/patches/cyrus-imapd-2.2.12-64bit_quota-p2.patch deleted file mode 100644 index 53d6dc7d92..0000000000 --- a/src/patches/cyrus-imapd-2.2.12-64bit_quota-p2.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -urN cyrus-imapd-2.2.12~/imap/mailbox.c cyrus-imapd-2.2.12/imap/mailbox.c ---- cyrus-imapd-2.2.12~/imap/mailbox.c 2005-02-14 07:39:57.000000000 +0100 -+++ cyrus-imapd-2.2.12/imap/mailbox.c 2005-08-30 12:13:34.000000000 +0200 -@@ -2132,7 +2165,7 @@ - r = quota_write(&mailbox->quota, &tid); - if (r) { - syslog(LOG_ERR, -- "LOSTQUOTA: unable to record free of %lu bytes in quota %s", -+ "LOSTQUOTA: unable to record free of " UQUOTA_T_FMT " bytes in quota %s", - mailbox->quota_mailbox_used, mailbox->quota.root); - } - else -diff -urN cyrus-imapd-2.2.12~/imap/mboxlist.c cyrus-imapd-2.2.12/imap/mboxlist.c ---- cyrus-imapd-2.2.12~/imap/mboxlist.c 2004-07-26 20:08:03.000000000 +0200 -+++ cyrus-imapd-2.2.12/imap/mboxlist.c 2005-08-30 12:09:28.000000000 +0200 -@@ -2540,7 +2540,7 @@ - r = quota_write(&mailbox.quota, tid); - if (r) { - syslog(LOG_ERR, -- "LOSTQUOTA: unable to record free of %lu bytes in quota %s", -+ "LOSTQUOTA: unable to record free of " UQUOTA_T_FMT " bytes in quota %s", - mailbox.quota_mailbox_used, mailbox.quota.root); - } - free(mailbox.quota.root); diff --git a/src/patches/cyrus-imapd-2.2.12-autosievefolder-0.6.diff b/src/patches/cyrus-imapd-2.2.12-autosievefolder-0.6.diff deleted file mode 100644 index ce672d3fe7..0000000000 --- a/src/patches/cyrus-imapd-2.2.12-autosievefolder-0.6.diff +++ /dev/null @@ -1,193 +0,0 @@ -diff -Naur cyrus-imapd-2.2.12/README.autosievefolder cyrus-imapd-2.2.12-autosieve.uncompiled/README.autosievefolder ---- cyrus-imapd-2.2.12/README.autosievefolder 1970-01-01 02:00:00 +0200 -+++ cyrus-imapd-2.2.12-autosieve.uncompiled/README.autosievefolder 2005-02-15 13:59:51 +0200 -@@ -0,0 +1,42 @@ -+Cyrus IMAP autosievefolder patch -+---------------------------------- -+ -+NOTE : This patch has been created at the University of Athens. For more info, as well -+as more patches on Cyrus IMAPD server, please visit http://email.uoa.gr -+ -+ -+ When the lmtpd daemon receives an email message prior to delivering it to the -+INBOX folder of the user, checks if the user has specified sieve filters. If the -+user has specified sieve filters the filters are evaluated. If the message matches -+any of the filters the action that is specified in the filter is executed. If the action -+is FileInto it is stored in the subfolder specified in the filter. If the -+subfolder doesn't exist then the message is sent to the INBOX folder of the user. -+ -+ With this patch if the folder doesn't exist AND the name of the subfolder is -+specified in the autosievefolders option, OR the anysievefolder is set to -+yes in the cyrus-imap configuration file then the subfolder is created and the mail -+is stored there. -+ -+ -+Check the following options of the imapd.conf file -+================================================== -+ -+* anysievefolder : It must be "yes" in order to permit the autocreation of any -+INBOX subfolder requested by a sieve filter, through the "fileinto" action. (default = no) -+* autosievefolders : It is a "|" separated list of subfolders of INBOX that will be -+automatically created, if requested by a sieve filter, through the "fileinto" -+action. (default = null) -+ i.e. autosievefolders: Junk | Spam -+ -+WARNING: anysievefolder, takes precedence over autosievefolders . Which means that if -+anysievefolder is set to "yes", cyrus will create any INBOX subfolder requested, no-matter what the value of autosievefolders is. -+ -+ -+Things to be done -+================= -+ -+1. Support cyrus wildcards in the autosievefolders option. -+ -+ -+For more information and updates please visit http://email.uoa.gr/projects/cyrus/autosievefolder -+ -diff -Naur cyrus-imapd-2.2.12/imap/lmtp_sieve.c cyrus-imapd-2.2.12-autosieve.uncompiled/imap/lmtp_sieve.c ---- cyrus-imapd-2.2.12/imap/lmtp_sieve.c 2004-06-01 16:47:16 +0300 -+++ cyrus-imapd-2.2.12-autosieve.uncompiled/imap/lmtp_sieve.c 2005-02-15 13:59:51 +0200 -@@ -72,6 +72,8 @@ - #include "util.h" - #include "version.h" - #include "xmalloc.h" -+#include "imap_err.h" -+ - - static int sieve_usehomedir = 0; - static const char *sieve_dir = NULL; -@@ -98,6 +100,9 @@ - int quotaoverride, - int acloverride); - -+static int autosieve_subfolder(char *userid, struct auth_state *auth_state, -+ char *subfolder, struct namespace *namespace); -+ - static char *make_sieve_db(const char *user) - { - static char buf[MAX_MAILBOX_PATH+1]; -@@ -312,6 +317,7 @@ - } - - -+ - static int sieve_redirect(void *ac, - void *ic __attribute__((unused)), - void *sc, void *mc, const char **errmsg) -@@ -444,7 +450,18 @@ - sd->username, mdata->notifyheader, - namebuf, quotaoverride, 0); - } -- -+ if (ret == IMAP_MAILBOX_NONEXISTENT) { -+ /* if "plus" folder under INBOX, then try to create it */ -+ syslog(LOG_DEBUG, "calling autosieve folder for : %s", namebuf); -+ ret = autosieve_subfolder((char *) sd->username, sd->authstate, namebuf, mdata->namespace); -+ -+ if (!ret) -+ ret = deliver_mailbox(md->data, mdata->stage, md->size, -+ fc->imapflags->flag, fc->imapflags->nflags, -+ (char *) sd->username, sd->authstate, md->id, -+ sd->username, mdata->notifyheader, -+ namebuf, quotaoverride, 0); -+ } - if (!ret) { - snmp_increment(SIEVE_FILEINTO, 1); - return SIEVE_OK; -@@ -882,3 +899,77 @@ - - return r; - } -+ -+ -+#define SEP '|' -+ -+static int autosieve_subfolder(char *userid, struct auth_state *auth_state, -+ char *subfolder, struct namespace *namespace) -+{ -+ char option_name_external[MAX_MAILBOX_NAME + 1]; -+ char option_name_internal[MAX_MAILBOX_NAME + 1]; -+ const char *subf ; -+ char *p, *q, *next_subf; -+ int len, r = 0; -+ int createsievefolder = 0; -+ -+ /* Check if subfolder or userid are NULL */ -+ if(subfolder == NULL || userid == NULL) -+ return IMAP_MAILBOX_NONEXISTENT; -+ -+ if (config_getswitch(IMAPOPT_ANYSIEVEFOLDER)) -+ createsievefolder = 1; -+ else if ((subf = config_getstring(IMAPOPT_AUTOSIEVEFOLDERS)) != NULL) { -+ /* Roll through subf */ -+ next_subf = (char *) subf; -+ while (*next_subf) { -+ for (p = next_subf ; isspace((int) *p) || *p == SEP ; p++); -+ for (next_subf = p ; *next_subf && *next_subf != SEP ; next_subf++); -+ for (q = next_subf ; q > p && (isspace((int) *q) || *q == SEP || !*q); q--); -+ -+ if (!*p) continue; -+ -+ len = q - p + 1; -+ /* -+ * This is a preliminary length check based on the assumption -+ * that the *final* internal format will be something -+ * like user.userid.subfolder(s). -+ */ -+ if (len > sizeof(option_name_external) - strlen(userid) - 5) -+ return IMAP_MAILBOX_BADNAME; -+ -+ strlcpy(option_name_external, namespace->prefix[NAMESPACE_INBOX], sizeof(option_name_external)); -+ strncat(option_name_external, p, len); -+ -+ /* -+ * Transform the option folder name to internal namespace and compare it -+ * with what must be created. -+ */ -+ r = namespace->mboxname_tointernal(namespace, option_name_external, userid, option_name_internal); -+ if (r) continue; -+ -+ if (!strcmp(option_name_internal, subfolder)) { -+ createsievefolder = 1; -+ break; -+ } -+ } -+ } -+ -+ if (createsievefolder) { -+ /* Folder is already in internal namespace format */ -+ r = mboxlist_createmailbox(subfolder, MAILBOX_FORMAT_NORMAL, NULL, -+ 1, userid, auth_state, 0, 0, 0); -+ if (!r) { -+ mboxlist_changesub(subfolder, userid, auth_state, 1, 1); -+ syslog(LOG_DEBUG, "autosievefolder: User %s, folder %s creation succeeded.", -+ userid, subfolder); -+ return 0; -+ } else { -+ syslog(LOG_ERR, "autosievefolder: User %s, folder %s creation failed. %s", -+ userid, subfolder,error_message(r)); -+ return r; -+ } -+ } else -+ return IMAP_MAILBOX_NONEXISTENT; -+} -+ -diff -Naur cyrus-imapd-2.2.12/lib/imapoptions cyrus-imapd-2.2.12-autosieve.uncompiled/lib/imapoptions ---- cyrus-imapd-2.2.12/lib/imapoptions 2004-07-21 22:07:45 +0300 -+++ cyrus-imapd-2.2.12-autosieve.uncompiled/lib/imapoptions 2005-02-15 13:59:51 +0200 -@@ -752,6 +752,15 @@ - /* If enabled, lmtpd will look for Sieve scripts in user's home - directories: ~user/.sieve. */ - -+{ "anysievefolder", 0, SWITCH } -+/* It must be "yes" in order to permit the autocreation of any INBOX subfolder -+ requested by a sieve filter, through the "fileinto" action. (default = no) */ -+ -+{ "autosievefolders", NULL, STRING } -+/* It is a "|" separated list of subfolders of INBOX that will be automatically created, -+ if requested by a sieve filter, through the "fileinto" action. (default = null) -+ i.e. autosievefolders: Junk | Spam */ -+ - { "singleinstancestore", 1, SWITCH } - /* If enabled, lmtpd and nntpd attempt to only write one copy of a message per - partition and create hard links, resulting in a potentially large diff --git a/src/patches/cyrus-imapd-2.2.12-munge8bit.patch b/src/patches/cyrus-imapd-2.2.12-munge8bit.patch deleted file mode 100644 index d6f1484645..0000000000 --- a/src/patches/cyrus-imapd-2.2.12-munge8bit.patch +++ /dev/null @@ -1,133 +0,0 @@ -diff -Naur cyrus-imapd-2.2.12/doc/man/deliver.8.html cyrus-imapd-2.2.12.munge8bit/doc/man/deliver.8.html ---- cyrus-imapd-2.2.12/doc/man/deliver.8.html 2005-02-14 19:02:17.000000000 +0100 -+++ cyrus-imapd-2.2.12.munge8bit/doc/man/deliver.8.html 2005-06-18 19:02:39.000000000 +0200 -@@ -223,13 +223,15 @@ - - -

Depending on the setting of reject8bit in --imapd.conf(5), deliver either rejects messages with --8-bit-set characters in the headers or changes these --characters to ‘X’. This is because such --characters can’t be interpreted since the character --set is not known, although some communities not well-served --by US-ASCII assume that those characters can be used to --represent characters not present in US-ASCII.

-+imapd.conf(5), deliver either rejects/accepts -+messages with 8-bit-set characters in the headers. If we -+accept messages with 8-bit-set characters in the headers, -+then depending on the setting of munge8bit, these -+characters are either left un-touched or changed to ‘X’. This -+is because such characters can’t be interpreted since -+the character set is not known, although some communities -+not well-served by US-ASCII assume that those characters can -+be used to represent characters not present in US-ASCII.

- -

A method for encoding 8-bit-set characters is provided by - RFC 2047.

-diff -Naur cyrus-imapd-2.2.12/doc/man/imapd.conf.5.html cyrus-imapd-2.2.12.munge8bit/doc/man/imapd.conf.5.html ---- cyrus-imapd-2.2.12/doc/man/imapd.conf.5.html 2005-02-14 19:02:18.000000000 +0100 -+++ cyrus-imapd-2.2.12.munge8bit/doc/man/imapd.conf.5.html 2005-06-18 18:59:46.000000000 +0200 -@@ -2562,7 +2562,7 @@ - -

If enabled, lmtpd rejects messages with 8-bit characters - in the headers. Otherwise, 8-bit characters are changed to --‘X’. (A proper soultion to non-ASCII characters -+‘X’. (A proper solution to non-ASCII characters - in headers is offered by RFC 2047 and its predecessors.)

- - -diff -Naur cyrus-imapd-2.2.12/imap/message.c cyrus-imapd-2.2.12.munge8bit/imap/message.c ---- cyrus-imapd-2.2.12/imap/message.c 2004-09-16 19:58:54.000000000 +0200 -+++ cyrus-imapd-2.2.12.munge8bit/imap/message.c 2005-06-18 18:58:33.000000000 +0200 -@@ -227,6 +227,7 @@ - int n; - int sawcr = 0, sawnl; - int reject8bit = config_getswitch(IMAPOPT_REJECT8BIT); -+ int munge8bit = config_getswitch(IMAPOPT_MUNGE8BIT); - int inheader = 1, blankline = 1; - - while (size) { -@@ -262,7 +263,7 @@ - /* We have been configured to reject all mail of this - form. */ - if (!r) r = IMAP_MESSAGE_CONTAINS8BIT; -- } else { -+ } else if (munge8bit) { - /* We have been configured to munge all mail of this - form. */ - *p = 'X'; -diff -Naur cyrus-imapd-2.2.12/imap/spool.c cyrus-imapd-2.2.12.munge8bit/imap/spool.c ---- cyrus-imapd-2.2.12/imap/spool.c 2004-10-27 22:40:50.000000000 +0200 -+++ cyrus-imapd-2.2.12.munge8bit/imap/spool.c 2005-06-18 18:58:33.000000000 +0200 -@@ -140,6 +140,7 @@ - state s = NAME_START; - int r = 0; - int reject8bit = config_getswitch(IMAPOPT_REJECT8BIT); -+ int munge8bit = config_getswitch(IMAPOPT_MUNGE8BIT); - const char **skip = NULL; - - if (namelen == 0) { -@@ -266,7 +267,7 @@ - form. */ - r = IMAP_MESSAGE_CONTAINS8BIT; - goto ph_error; -- } else { -+ } else if (munge8bit) { - /* We have been configured to munge all mail of this - form. */ - c = 'X'; -diff -Naur cyrus-imapd-2.2.12/lib/imapoptions cyrus-imapd-2.2.12.munge8bit/lib/imapoptions ---- cyrus-imapd-2.2.12/lib/imapoptions 2004-07-21 21:07:45.000000000 +0200 -+++ cyrus-imapd-2.2.12.munge8bit/lib/imapoptions 2005-06-18 18:58:33.000000000 +0200 -@@ -458,6 +458,12 @@ - { "mboxlist_db", "skiplist", STRINGLIST("flat", "berkeley", "skiplist")} - /* The cyrusdb backend to use for the mailbox list. */ - -+{ "munge8bit", 1, SWITCH } -+/* If enabled, lmtpd munges messages with 8-bit characters. These characters -+ are changed to `X'. If \fBreject8bit\fR is enabled, setting \fBmunge8bit\fR -+ has no effect. (A proper solution to non-ASCII characters in headers is -+ offered by RFC 2047 and its predecessors.) */ -+ - # xxx badly worded - { "mupdate_connections_max", 128, INT } - /* The max number of connections that a mupdate process will allow, this -@@ -670,9 +676,7 @@ - - { "reject8bit", 0, SWITCH } - /* If enabled, lmtpd rejects messages with 8-bit characters in the -- headers. Otherwise, 8-bit characters are changed to `X'. (A -- proper soultion to non-ASCII characters in headers is offered by -- RFC 2047 and its predecessors.) */ -+ headers. */ - - { "rfc2046_strict", 0, SWITCH } - /* If enabled, imapd will be strict (per RFC 2046) when matching MIME -diff -Naur cyrus-imapd-2.2.12/man/deliver.8 cyrus-imapd-2.2.12.munge8bit/man/deliver.8 ---- cyrus-imapd-2.2.12/man/deliver.8 2004-06-21 20:40:10.000000000 +0200 -+++ cyrus-imapd-2.2.12.munge8bit/man/deliver.8 2005-06-18 18:58:33.000000000 +0200 -@@ -147,8 +147,10 @@ - Accept messages using the LMTP protocol. - .SH NOTES - Depending on the setting of \fBreject8bit\fR in \fBimapd.conf(5)\fR, deliver --either rejects messages with 8-bit-set characters in the headers or --changes these characters to `X'. -+either rejects/accepts messages with 8-bit-set characters in the headers. -+If we accept messages with 8-bit-set characters in the headers, then depending -+on the setting of \fBmunge8bit\fR, these characters are either left un-touched -+or changed to . - This is because such characters can't be interpreted since the - character set is not known, although some communities not well-served by - US-ASCII assume that those characters can be used to represent characters not -diff -Naur cyrus-imapd-2.2.12/man/imapd.conf.5 cyrus-imapd-2.2.12.munge8bit/man/imapd.conf.5 ---- cyrus-imapd-2.2.12/man/imapd.conf.5 2005-02-14 19:02:16.000000000 +0100 -+++ cyrus-imapd-2.2.12.munge8bit/man/imapd.conf.5 2005-06-18 18:59:08.000000000 +0200 -@@ -551,7 +551,7 @@ - .IP "\fBreject8bit:\fR 0" 5 - If enabled, lmtpd rejects messages with 8-bit characters in the - headers. Otherwise, 8-bit characters are changed to `X'. (A --proper soultion to non-ASCII characters in headers is offered by -+proper solution to non-ASCII characters in headers is offered by - RFC 2047 and its predecessors.) - .IP "\fBrfc2046_strict:\fR 0" 5 - If enabled, imapd will be strict (per RFC 2046) when matching MIME diff --git a/src/patches/cyrus-imapd-2.2.12-mupdate-thread-safe.patch b/src/patches/cyrus-imapd-2.2.12-mupdate-thread-safe.patch deleted file mode 100644 index 4af8aee5f3..0000000000 --- a/src/patches/cyrus-imapd-2.2.12-mupdate-thread-safe.patch +++ /dev/null @@ -1,41 +0,0 @@ -diff -Naur cyrus-imapd-2.2.12.orig/imap/mupdate.c cyrus-imapd-2.2.12/imap/mupdate.c ---- cyrus-imapd-2.2.12.orig/imap/mupdate.c 2004-12-17 17:32:16.000000000 +0100 -+++ cyrus-imapd-2.2.12/imap/mupdate.c 2005-11-04 14:24:04.000000000 +0100 -@@ -460,9 +460,36 @@ - return 0; - } - -+ -+/* -+ * The auth_*.c backends called by mysasl_proxy_policy() -+ * use static variables which we need to protect with a mutex. -+ */ -+static pthread_mutex_t proxy_policy_mutex = PTHREAD_MUTEX_INITIALIZER; -+ -+static int mupdate_proxy_policy(sasl_conn_t *conn, -+ void *context, -+ const char *requested_user, unsigned rlen, -+ const char *auth_identity, unsigned alen, -+ const char *def_realm, -+ unsigned urlen, -+ struct propctx *propctx) -+{ -+ int r; -+ -+ pthread_mutex_lock(&proxy_policy_mutex); /* LOCK */ -+ -+ r = mysasl_proxy_policy(conn, context, requested_user, rlen, -+ auth_identity, alen, def_realm, urlen, propctx); -+ -+ pthread_mutex_unlock(&proxy_policy_mutex); /* UNLOCK */ -+ -+ return r; -+} -+ - static struct sasl_callback mysasl_cb[] = { - { SASL_CB_GETOPT, &mysasl_config, NULL }, -- { SASL_CB_PROXY_POLICY, &mysasl_proxy_policy, NULL }, -+ { SASL_CB_PROXY_POLICY, &mupdate_proxy_policy, NULL }, - { SASL_CB_LIST_END, NULL, NULL } - }; - diff --git a/src/patches/cyrus-imapd-2.2.12-no_transfig.patch b/src/patches/cyrus-imapd-2.2.12-no_transfig.patch deleted file mode 100644 index dd78906b9f..0000000000 --- a/src/patches/cyrus-imapd-2.2.12-no_transfig.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -Naur cyrus-imapd-2.2.12.orig/doc/Makefile.dist cyrus-imapd-2.2.12/doc/Makefile.dist ---- cyrus-imapd-2.2.12.orig/doc/Makefile.dist Wed Oct 22 20:50:04 2003 -+++ cyrus-imapd-2.2.12/doc/Makefile.dist Wed Nov 9 13:23:58 2005 -@@ -13,7 +13,7 @@ - - rm -f groff-html-*.png pod2htm* - -- fig2dev -L png murder.fig murder.png -- fig2dev -L png netnews.fig netnews.png -+# fig2dev -L png murder.fig murder.png -+# fig2dev -L png netnews.fig netnews.png - - (cd text; make) diff --git a/src/patches/cyrus-imapd-2.2.12-notify_sms.patch b/src/patches/cyrus-imapd-2.2.12-notify_sms.patch deleted file mode 100644 index de4e18bcb8..0000000000 --- a/src/patches/cyrus-imapd-2.2.12-notify_sms.patch +++ /dev/null @@ -1,304 +0,0 @@ -diff -Naur cyrus-imapd-2.2.12.orig/doc/man/imapd.conf.5.html cyrus-imapd-2.2.12/doc/man/imapd.conf.5.html ---- cyrus-imapd-2.2.12.orig/doc/man/imapd.conf.5.html 2005-02-14 19:02:18.000000000 +0100 -+++ cyrus-imapd-2.2.12/doc/man/imapd.conf.5.html 2005-08-16 13:32:36.000000000 +0200 -@@ -2751,6 +2751,24 @@ - - - -+

sendsms: /usr/bin/sendsms

-+

-+ -+ -+ -+ -+ -+
-+

The pathname of the sendsms executable. Sieve invokes -+sendsms for sending SMS notifications.

-+
-+ -+

-+ -+ -+ -
-

servername: <none>

- -diff -Naur cyrus-imapd-2.2.12.orig/doc/man/notifyd.8.html cyrus-imapd-2.2.12/doc/man/notifyd.8.html ---- cyrus-imapd-2.2.12.orig/doc/man/notifyd.8.html 2005-02-14 19:02:19.000000000 +0100 -+++ cyrus-imapd-2.2.12/doc/man/notifyd.8.html 2005-08-16 13:17:33.000000000 +0200 -@@ -181,6 +181,18 @@ - - - -+

sms

-+ -+ -+ -+

Send the notification as SMS. This method can ONLY be used in -+a Sieve ’notify’ action as it requires a -+sms: URL to be specified as an :option.

-+ -+ -+ -+ -+ -

zephyr

- - -diff -Naur cyrus-imapd-2.2.12.orig/lib/imapoptions cyrus-imapd-2.2.12/lib/imapoptions ---- cyrus-imapd-2.2.12.orig/lib/imapoptions 2004-07-21 21:07:45.000000000 +0200 -+++ cyrus-imapd-2.2.12/lib/imapoptions 2005-08-16 13:27:08.000000000 +0200 -@@ -721,6 +721,10 @@ - /* The pathname of the sendmail executable. Sieve invokes sendmail - for sending rejections, redirects and vacation responses. */ - -+{ "sendsms", "/usr/bin/sendsms", STRING } -+/* The pathname of the sendsms executable. Sieve invokes sendsms -+ for sending SMS notifications. */ -+ - { "servername", NULL, STRING } - /* This is the hostname visible in the greeting messages of the POP, - IMAP and LMTP daemons. If it is unset, then the result returned -diff -Naur cyrus-imapd-2.2.12.orig/man/imapd.conf.5 cyrus-imapd-2.2.12/man/imapd.conf.5 ---- cyrus-imapd-2.2.12.orig/man/imapd.conf.5 2005-02-14 19:02:16.000000000 +0100 -+++ cyrus-imapd-2.2.12/man/imapd.conf.5 2005-08-16 13:35:40.000000000 +0200 -@@ -590,6 +590,9 @@ - .IP "\fBsendmail:\fR /usr/lib/sendmail" 5 - The pathname of the sendmail executable. Sieve invokes sendmail - for sending rejections, redirects and vacation responses. -+.IP "\fBsendsms:\fR /usr/bin/sendsms" 5 -+The pathname of the sendsms executable. Sieve invokes sendsms -+for sending SMS notifications. - .IP "\fBservername:\fR " 5 - This is the hostname visible in the greeting messages of the POP, - IMAP and LMTP daemons. If it is unset, then the result returned -diff -Naur cyrus-imapd-2.2.12.orig/man/notifyd.8 cyrus-imapd-2.2.12/man/notifyd.8 ---- cyrus-imapd-2.2.12.orig/man/notifyd.8 2003-08-10 01:43:14.000000000 +0200 -+++ cyrus-imapd-2.2.12/man/notifyd.8 2005-08-16 13:18:03.000000000 +0200 -@@ -110,6 +110,11 @@ - Sieve 'notify' action as it requires a \fImailto:\fR URL to be - specified as an \fI:option\fR. - .TP -+.B sms -+Send the notification as SMS. This method can ONLY be used in a -+Sieve 'notify' action as it requires a \fIsms:\fR URL to be -+specified as an \fI:option\fR. -+.TP - .B zephyr - Send the notification as a zephyrgram. If used in a Sieve 'notify' - action, additional recipients can be specified as \fI:options\fR. -diff -Naur cyrus-imapd-2.2.12.orig/notifyd/Makefile.in cyrus-imapd-2.2.12/notifyd/Makefile.in ---- cyrus-imapd-2.2.12.orig/notifyd/Makefile.in 2004-05-28 20:03:06.000000000 +0200 -+++ cyrus-imapd-2.2.12/notifyd/Makefile.in 2005-08-16 15:18:45.000000000 +0200 -@@ -82,7 +82,7 @@ - install: - $(INSTALL) -m 755 notifyd $(DESTDIR)$(service_path) - --OBJS= notifyd.o notify_null.o notify_log.o notify_mailto.o notify_zephyr.o -+OBJS= notifyd.o notify_null.o notify_log.o notify_mailto.o notify_sms.o notify_zephyr.o - - notifytest: notifytest.o - $(CC) $(LDFLAGS) -o notifytest \ -diff -Naur cyrus-imapd-2.2.12.orig/notifyd/notifyd.h cyrus-imapd-2.2.12/notifyd/notifyd.h ---- cyrus-imapd-2.2.12.orig/notifyd/notifyd.h 2003-02-13 21:15:48.000000000 +0100 -+++ cyrus-imapd-2.2.12/notifyd/notifyd.h 2005-08-16 12:58:17.000000000 +0200 -@@ -48,6 +48,7 @@ - #include "notify_null.h" - #include "notify_log.h" - #include "notify_mailto.h" -+#include "notify_sms.h" - #include "notify_zephyr.h" - - /* Notify method dispatch table definition */ -@@ -64,6 +65,7 @@ - { "null", notify_null }, /* do nothing */ - { "log", notify_log }, /* use syslog (for testing) */ - { "mailto", notify_mailto }, /* send an email */ -+ { "sms", notify_sms }, /* send an sms */ - #ifdef HAVE_ZEPHYR - { "zephyr", notify_zephyr }, /* send a zephyrgram */ - #endif -diff -Naur cyrus-imapd-2.2.12.orig/notifyd/notify_sms.c cyrus-imapd-2.2.12/notifyd/notify_sms.c ---- cyrus-imapd-2.2.12.orig/notifyd/notify_sms.c 1970-01-01 01:00:00.000000000 +0100 -+++ cyrus-imapd-2.2.12/notifyd/notify_sms.c 2005-08-16 18:43:56.000000000 +0200 -@@ -0,0 +1,111 @@ -+/* notify_sms.c -- SMS notification method -+ * Simon Matter -+ */ -+/* -+ * Copyright (c) 1998-2003 Carnegie Mellon University. All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions -+ * are met: -+ * -+ * 1. Redistributions of source code must retain the above copyright -+ * notice, this list of conditions and the following disclaimer. -+ * -+ * 2. Redistributions in binary form must reproduce the above copyright -+ * notice, this list of conditions and the following disclaimer in -+ * the documentation and/or other materials provided with the -+ * distribution. -+ * -+ * 3. The name "Carnegie Mellon University" must not be used to -+ * endorse or promote products derived from this software without -+ * prior written permission. For permission or any other legal -+ * details, please contact -+ * Office of Technology Transfer -+ * Carnegie Mellon University -+ * 5000 Forbes Avenue -+ * Pittsburgh, PA 15213-3890 -+ * (412) 268-4387, fax: (412) 268-7395 -+ * tech-transfer@andrew.cmu.edu -+ * -+ * 4. Redistributions of any form whatsoever must retain the following -+ * acknowledgment: -+ * "This product includes software developed by Computing Services -+ * at Carnegie Mellon University (http://www.cmu.edu/computing/)." -+ * -+ * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO -+ * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -+ * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE -+ * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN -+ * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING -+ * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -+ * -+ * notify_sms is based on code from notify_mailto by Ken Murchison. -+ * Copyright (c) 2005 Simon Matter, Invoca Systems. -+ * Release 2005081600/2.2.12 -+*/ -+ -+#include -+ -+#include "notify_sms.h" -+ -+#include -+#include -+#include -+#include -+#include -+ -+#include "global.h" -+#include "libconfig.h" -+#include "sieve_interface.h" -+ -+static int global_outgoing_count = 0; -+ -+char* notify_sms(const char *class __attribute__((unused)), -+ const char *priority __attribute__((unused)), -+ const char *user __attribute__((unused)), -+ const char *mailbox __attribute__((unused)), -+ int nopt, char **options, -+ const char *message) -+{ -+ FILE *sm; -+ const char *smbuf[10]; -+ int sm_stat; -+ pid_t sm_pid; -+ int fds[2]; -+ -+ /* XXX check/parse options (sms URI) */ -+ if (nopt < 1) -+ return strdup("NO sms URI not specified"); -+ -+ smbuf[0] = "sendsms"; -+ smbuf[1] = options[0]; -+ smbuf[2] = NULL; -+ -+ pipe(fds); -+ if ((sm_pid = fork()) == 0) { -+ /* i'm the child! run sendsms! */ -+ close(fds[1]); -+ /* make the pipe be stdin */ -+ dup2(fds[0], 0); -+ execv(config_getstring(IMAPOPT_SENDSMS), (char **) smbuf); -+ -+ /* if we're here we suck */ -+ return strdup("NO sms couldn't exec"); -+ } -+ /* i'm the parent */ -+ close(fds[0]); -+ sm = fdopen(fds[1], "w"); -+ -+ if (!sm) -+ return strdup("NO sms could not spawn sendsms process"); -+ -+ fprintf(sm, message); -+ -+ fclose(sm); -+ while (waitpid(sm_pid, &sm_stat, 0) < 0); -+ -+ /* XXX check for sendsms exit code */ -+ -+ return strdup("OK sms notification successful"); -+} -diff -Naur cyrus-imapd-2.2.12.orig/notifyd/notify_sms.h cyrus-imapd-2.2.12/notifyd/notify_sms.h ---- cyrus-imapd-2.2.12.orig/notifyd/notify_sms.h 1970-01-01 01:00:00.000000000 +0100 -+++ cyrus-imapd-2.2.12/notifyd/notify_sms.h 2005-08-16 14:57:16.000000000 +0200 -@@ -0,0 +1,62 @@ -+/* notify_sms.h -- SMS notification method -+ * Simon Matter -+ */ -+/* -+ * Copyright (c) 1998-2003 Carnegie Mellon University. All rights reserved. -+ * -+ * Redistribution and use in source and binary forms, with or without -+ * modification, are permitted provided that the following conditions -+ * are met: -+ * -+ * 1. Redistributions of source code must retain the above copyright -+ * notice, this list of conditions and the following disclaimer. -+ * -+ * 2. Redistributions in binary form must reproduce the above copyright -+ * notice, this list of conditions and the following disclaimer in -+ * the documentation and/or other materials provided with the -+ * distribution. -+ * -+ * 3. The name "Carnegie Mellon University" must not be used to -+ * endorse or promote products derived from this software without -+ * prior written permission. For permission or any other legal -+ * details, please contact -+ * Office of Technology Transfer -+ * Carnegie Mellon University -+ * 5000 Forbes Avenue -+ * Pittsburgh, PA 15213-3890 -+ * (412) 268-4387, fax: (412) 268-7395 -+ * tech-transfer@andrew.cmu.edu -+ * -+ * 4. Redistributions of any form whatsoever must retain the following -+ * acknowledgment: -+ * "This product includes software developed by Computing Services -+ * at Carnegie Mellon University (http://www.cmu.edu/computing/)." -+ * -+ * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO -+ * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -+ * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE -+ * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN -+ * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING -+ * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -+ * -+ * notify_sms is based on code from notify_mailto by Ken Murchison. -+ * Copyright (c) 2005 Simon Matter, Invoca Systems. -+ * Release 2005081600/2.2.12 -+ * -+ */ -+ -+#ifndef _NOTIFY_SMS_H_ -+#define _NOTIFY_SMS_H_ -+ -+#include -+ -+/* the only option should be a sms URI */ -+char* notify_sms(const char *class __attribute__((unused)), -+ const char *priority __attribute__((unused)), -+ const char *user __attribute__((unused)), -+ const char *mailbox __attribute__((unused)), -+ int nopt, char **options, -+ const char *message); -+ -+#endif /* _NOTIFY_SMS_H_ */ diff --git a/src/patches/cyrus-imapd-2.2.12-rmquota+deletemailbox-0.2-1.diff b/src/patches/cyrus-imapd-2.2.12-rmquota+deletemailbox-0.2-1.diff deleted file mode 100644 index ce2cce06c7..0000000000 --- a/src/patches/cyrus-imapd-2.2.12-rmquota+deletemailbox-0.2-1.diff +++ /dev/null @@ -1,491 +0,0 @@ -diff -Naur cyrus-imapd-2.2.12.orig/imap/ctl_cyrusdb.c cyrus-imapd-2.2.12/imap/ctl_cyrusdb.c ---- cyrus-imapd-2.2.12.orig/imap/ctl_cyrusdb.c Tue Jul 13 04:34:20 2004 -+++ cyrus-imapd-2.2.12/imap/ctl_cyrusdb.c Mon Mar 7 11:30:58 2005 -@@ -136,7 +136,7 @@ - /* if it is MBTYPE_RESERVED, unset it & call mboxlist_delete */ - if(!r && (mbtype & MBTYPE_RESERVE)) { - if(!r) { -- r = mboxlist_deletemailbox(name, 1, NULL, NULL, 0, 0, 1); -+ r = mboxlist_deletemailbox(name, 1, NULL, NULL, 0, 0, 1, 1); - if(r) { - /* log the error */ - syslog(LOG_ERR, -diff -Naur cyrus-imapd-2.2.12.orig/imap/ctl_mboxlist.c cyrus-imapd-2.2.12/imap/ctl_mboxlist.c ---- cyrus-imapd-2.2.12.orig/imap/ctl_mboxlist.c Sat May 22 05:45:48 2004 -+++ cyrus-imapd-2.2.12/imap/ctl_mboxlist.c Mon Mar 7 11:30:58 2005 -@@ -456,7 +456,7 @@ - - wipe_head = wipe_head->next; - -- ret = mboxlist_deletemailbox(me->mailbox, 1, "", NULL, 0, 1, 1); -+ ret = mboxlist_deletemailbox(me->mailbox, 1, "", NULL, 0, 1, 1, 1); - if(ret) { - fprintf(stderr, "couldn't delete defunct mailbox %s\n", - me->mailbox); -diff -Naur cyrus-imapd-2.2.12.orig/imap/imapd.c cyrus-imapd-2.2.12/imap/imapd.c ---- cyrus-imapd-2.2.12.orig/imap/imapd.c Mon Feb 14 07:39:55 2005 -+++ cyrus-imapd-2.2.12/imap/imapd.c Mon Mar 7 11:30:58 2005 -@@ -3724,7 +3724,7 @@ - - r = mboxlist_deletemailbox(name, imapd_userisadmin, - imapd_userid, imapd_authstate, -- 0, 0, 0); -+ 0, 0, 0, 1); - - if(r) { - prot_printf(imapd_out, "* NO delete %s: %s\r\n", -@@ -3743,6 +3743,12 @@ - char mailboxname[MAX_MAILBOX_NAME+1]; - char *p; - int domainlen = 0; -+ int keepQuota = 1; -+ -+ if(name && *name == '+') { -+ keepQuota = 0; -+ name++; -+ } - - r = (*imapd_namespace.mboxname_tointernal)(&imapd_namespace, name, - imapd_userid, mailboxname); -@@ -3753,7 +3759,7 @@ - - r = mboxlist_deletemailbox(mailboxname, imapd_userisadmin, - imapd_userid, imapd_authstate, 1, -- localonly, 0); -+ localonly, 0, keepQuota); - } - - /* was it a top-level user mailbox? */ -@@ -4718,6 +4724,7 @@ - { - int newquota = -1; - int badresource = 0; -+ int rmquota = 0; - int c; - int force = 0; - static struct buf arg; -@@ -4732,7 +4739,8 @@ - if (c != ')' || arg.s[0] != '\0') { - for (;;) { - if (c != ' ') goto badlist; -- if (strcasecmp(arg.s, "storage") != 0) badresource = 1; -+ if (strcasecmp(arg.s, "remove") == 0) rmquota = 1; -+ else if (strcasecmp(arg.s, "storage") != 0) badresource = 1; - c = getword(imapd_in, &arg); - if (c != ' ' && c != ')') goto badlist; - if (arg.s[0] == '\0') goto badlist; -@@ -4769,7 +4777,10 @@ - imapd_userid, mailboxname); - - if (!r) { -- r = mboxlist_setquota(mailboxname, newquota, force); -+ if(!rmquota) -+ r = mboxlist_setquota(mailboxname, newquota, force); -+ else -+ r = mboxlist_unsetquota(mailboxname); - } - } - -@@ -6416,7 +6427,7 @@ - /* note also that we need to remember to let proxyadmins do this */ - r = mboxlist_deletemailbox(mailboxname, - imapd_userisadmin || imapd_userisproxyadmin, -- imapd_userid, imapd_authstate, 0, 1, 0); -+ imapd_userid, imapd_authstate, 0, 1, 0, 1); - if(r) syslog(LOG_ERR, - "Could not delete local mailbox during move of %s", - mailboxname); -diff -Naur cyrus-imapd-2.2.12.orig/imap/mailbox.c cyrus-imapd-2.2.12/imap/mailbox.c ---- cyrus-imapd-2.2.12.orig/imap/mailbox.c Mon Feb 14 07:39:57 2005 -+++ cyrus-imapd-2.2.12/imap/mailbox.c Mon Mar 7 11:30:58 2005 -@@ -2117,27 +2117,7 @@ - - seen_delete_mailbox(mailbox); - -- if (delete_quota_root && !rquota) { -- quota_delete(&mailbox->quota, &tid); -- free(mailbox->quota.root); -- mailbox->quota.root = NULL; -- } else if (!rquota) { -- /* Free any quota being used by this mailbox */ -- if (mailbox->quota.used >= mailbox->quota_mailbox_used) { -- mailbox->quota.used -= mailbox->quota_mailbox_used; -- } -- else { -- mailbox->quota.used = 0; -- } -- r = quota_write(&mailbox->quota, &tid); -- if (r) { -- syslog(LOG_ERR, -- "LOSTQUOTA: unable to record free of %lu bytes in quota %s", -- mailbox->quota_mailbox_used, mailbox->quota.root); -- } -- else -- quota_commit(&tid); -- } -+ mailbox_updatequota(mailbox,NULL); - - /* remove all files in directory */ - strlcpy(buf, mailbox->path, sizeof(buf)); -@@ -2751,3 +2731,49 @@ - if (*p == '.') *p = '/'; - } - } -+ -+ -+/* This function is used to update the quota. Can be used to replace -+ * identical parts of the code, and can be quite handy some times -+ * The tid is used in order to make possible to make the quota update -+ * being a part of a bigger transaction to the quota db */ -+int mailbox_updatequota(struct mailbox *mailbox, struct txn **tid) -+{ -+ int r = 0, havetid = 0; -+ struct txn **ltid = NULL; -+ -+ if(tid) { -+ ltid = tid; -+ havetid = 1; -+ } -+ /* Ensure that we are locked */ -+ if(!mailbox->header_lock_count) return IMAP_INTERNAL; -+ -+ -+ if(mailbox->quota.root) { -+ r = quota_read(&mailbox->quota, ltid, 1); -+ if( r == 0 ) { -+ if (mailbox->quota.used >= mailbox->quota_mailbox_used) { -+ mailbox->quota.used -= mailbox->quota_mailbox_used; -+ } -+ else { -+ mailbox->quota.used = 0; -+ } -+ r = quota_write(&mailbox->quota, ltid); -+ if (r) { -+ syslog(LOG_ERR, -+ "LOSTQUOTA: unable to record free of %lu bytes in quota %s", -+ mailbox->quota_mailbox_used, mailbox->quota.root); -+ } -+ else if(!havetid) -+ quota_commit(tid); -+ } -+ /* It is not a big mistake not to have quota .. just remove from the mailbox */ -+ else if ( r == IMAP_QUOTAROOT_NONEXISTENT) { -+ free(mailbox->quota.root); -+ r = 0; -+ } -+ } -+ return r; -+} -+ -diff -Naur cyrus-imapd-2.2.12.orig/imap/mailbox.h cyrus-imapd-2.2.12/imap/mailbox.h ---- cyrus-imapd-2.2.12.orig/imap/mailbox.h Thu Jan 22 22:17:09 2004 -+++ cyrus-imapd-2.2.12/imap/mailbox.h Mon Mar 7 11:30:58 2005 -@@ -305,6 +305,8 @@ - struct mailbox *mailboxp); - extern int mailbox_delete(struct mailbox *mailbox, int delete_quota_root); - -+extern int mailbox_updatequota(struct mailbox *mailbox, struct txn **tid); -+ - extern int mailbox_rename_copy(struct mailbox *oldmailbox, - const char *newname, char *newpath, - bit32 *olduidvalidityp, bit32 *newuidvalidityp, -diff -Naur cyrus-imapd-2.2.12.orig/imap/mboxlist.c cyrus-imapd-2.2.12/imap/mboxlist.c ---- cyrus-imapd-2.2.12.orig/imap/mboxlist.c Mon Jul 26 20:08:03 2004 -+++ cyrus-imapd-2.2.12/imap/mboxlist.c Mon Mar 7 11:30:58 2005 -@@ -93,6 +93,11 @@ - static int mboxlist_opensubs(); - static void mboxlist_closesubs(); - -+static int child_cb(char *name, -+ int matchlen __attribute__((unused)), -+ int maycreate __attribute__((unused)), -+ void *rock); -+ - static int mboxlist_rmquota(const char *name, int matchlen, int maycreate, - void *rock); - static int mboxlist_changequota(const char *name, int matchlen, int maycreate, -@@ -100,6 +105,7 @@ - - struct change_rock { - struct quota *quota; -+ struct quota *oldquota; - struct txn **tid; - }; - -@@ -893,9 +899,9 @@ - */ - int mboxlist_deletemailbox(const char *name, int isadmin, char *userid, - struct auth_state *auth_state, int checkacl, -- int local_only, int force) -+ int local_only, int force, int keepQuota) - { -- int r; -+ int r, has_children = 0; - char *acl; - long access; - struct mailbox mailbox; -@@ -907,6 +913,7 @@ - int deleteright = get_deleteright(); - const char *p; - mupdate_handle *mupdate_h = NULL; -+ char *quotaroot = NULL; - - if(!isadmin && force) return IMAP_PERMISSION_DENIED; - -@@ -1018,13 +1025,44 @@ - - if ((r && !force) || isremote) goto done; - -- if (!r || force) r = mailbox_delete(&mailbox, deletequotaroot); -+ if (!r || force) { -+ /* first we have to keep the previous quota root in order to delete it */ -+ if(mailbox.quota.root) -+ quotaroot = xstrdup(mailbox.quota.root); -+ r = mailbox_delete(&mailbox, deletequotaroot); -+ } - - /* - * See if we have to remove mailbox's quota root - */ -- if (!r && mailbox.quota.root != NULL) { -+ if (!r && quotaroot != NULL) { - /* xxx look for any other mailboxes in this quotaroot */ -+ /* If we have not asked to remove the quota (default behaviour), we check -+ * whether there are any subfolders beneeth the quota root. If there aren't -+ * any subfolders the reasonable thing is to delete the quota */ -+ if(keepQuota) { -+ char pattern[MAX_MAILBOX_PATH+1]; -+ strlcpy(pattern, quotaroot, sizeof(pattern)); -+ if (config_virtdomains && name[strlen(name)-1] == '!') { -+ strlcat(pattern, "*", sizeof(pattern)); -+ } -+ else { -+ strlcat(pattern, ".*", sizeof(pattern)); -+ } -+ /* find if there are subfolders. Then we want to -+ * keep the existing quota */ -+ mboxlist_findall(NULL, pattern, isadmin, userid, -+ auth_state, child_cb, (void *) &has_children); -+ -+ if(!has_children) -+ if(!mboxlist_mylookup(quotaroot, NULL, NULL, NULL, NULL, NULL, 0 )) -+ has_children = 1; -+ } -+ /* If we want to remove the quota explicitely or the quota root folder has no subfolders -+ * we execute the rmquota patch */ -+ if(!keepQuota || !has_children ) -+ mboxlist_unsetquota(quotaroot); -+ free(quotaroot); - } - - done: -@@ -2357,6 +2395,7 @@ - if (r) return r; - - crock.quota = "a; -+ crock.oldquota = NULL; - crock.tid = &tid; - /* top level mailbox */ - if(have_mailbox) -@@ -2375,17 +2414,21 @@ - */ - int mboxlist_unsetquota(const char *root) - { -+ char newquota[MAX_MAILBOX_PATH+1]; - char pattern[MAX_MAILBOX_PATH+1]; - struct quota quota; -- int r=0; -+ struct change_rock crock; -+ int r=0, k=0; - - if (!root[0] || root[0] == '.' || strchr(root, '/') - || strchr(root, '*') || strchr(root, '%') || strchr(root, '?')) { - return IMAP_MAILBOX_BADNAME; - } -+ -+ crock.tid=NULL; - - quota.root = (char *) root; -- r = quota_read("a, NULL, 0); -+ r = quota_read("a, crock.tid, 0); - if (r == IMAP_QUOTAROOT_NONEXISTENT) { - /* already unset */ - return 0; -@@ -2402,13 +2445,45 @@ - } - else - strlcat(pattern, ".*", sizeof(pattern)); -- -- /* top level mailbox */ -- mboxlist_rmquota(root, 0, 0, (void *)root); -- /* submailboxes - we're using internal names here */ -- mboxlist_findall(NULL, pattern, 1, 0, 0, mboxlist_rmquota, (void *)root); - -- r = quota_delete("a, NULL); -+ r = quota_delete("a, crock.tid); -+ -+ /* If we cannot delete the quota then abort the operation */ -+ if(!r) { -+ /* quota_findroot performs several checks that we can -+ * assume that are already done, and don't have to perform -+ * them again. One of them is that it returns 1 only if -+ * quotaroot exists. -+ */ -+ if(quota_findroot(newquota, sizeof(newquota), root)) { -+ struct quota rootquota; -+ rootquota.root = newquota; -+ k = quota_read(&rootquota, crock.tid, 0); -+ if (!k) { -+ crock.quota = &rootquota; -+ crock.oldquota = "a; -+ /* top level mailbox */ -+ k = mboxlist_changequota(root, 0, 0, &crock); -+ } -+ /* submailboxes - we're using internal names here */ -+ if (!k) -+ k = mboxlist_findall(NULL, pattern, 1, 0, 0, mboxlist_changequota, &crock); -+ if(!k) -+ k = quota_write(&rootquota, crock.tid); -+ -+ } -+ else { -+ /* top level mailbox */ -+ mboxlist_rmquota(root, 0, 0, (void *)root); -+ /* submailboxes - we're using internal names here */ -+ mboxlist_findall(NULL, pattern, 1, 0, 0, mboxlist_rmquota, (void *)root); -+ } -+ } -+ -+ if(!r && !k) -+ quota_commit(crock.tid); -+ else -+ quota_abort(crock.tid); - - return r; - } -@@ -2506,6 +2581,7 @@ - struct mailbox mailbox; - struct change_rock *crock = (struct change_rock *) rock; - struct quota *mboxlist_newquota = crock->quota; -+ struct quota *mboxlist_oldquota = crock->oldquota; - struct txn **tid = crock->tid; - - assert(rock != NULL); -@@ -2523,27 +2599,24 @@ - if (r) goto error; - - if (mailbox.quota.root) { -- if (strlen(mailbox.quota.root) >= strlen(mboxlist_newquota->root)) { -- /* Part of a child quota root */ -- mailbox_close(&mailbox); -- return 0; -- } -- -- r = quota_read(&mailbox.quota, tid, 1); -- if (r) goto error; -- if (mailbox.quota.used >= mailbox.quota_mailbox_used) { -- mailbox.quota.used -= mailbox.quota_mailbox_used; -- } -- else { -- mailbox.quota.used = 0; -- } -- r = quota_write(&mailbox.quota, tid); -- if (r) { -- syslog(LOG_ERR, -- "LOSTQUOTA: unable to record free of %lu bytes in quota %s", -- mailbox.quota_mailbox_used, mailbox.quota.root); -- } -- free(mailbox.quota.root); -+ if(mboxlist_oldquota) { -+ if (strlen(mailbox.quota.root) > strlen(mboxlist_oldquota->root)) { -+ /* Part of a child quota root */ -+ mailbox_close(&mailbox); -+ return 0; -+ } -+ } -+ else { -+ if (strlen(mailbox.quota.root) >= strlen(mboxlist_newquota->root)) { -+ /* Part of a child quota root */ -+ mailbox_close(&mailbox); -+ return 0; -+ } -+ } -+ -+ r = mailbox_updatequota(&mailbox,tid); -+ if (r) -+ goto error; - } - - mailbox.quota.root = xstrdup(mboxlist_newquota->root); -@@ -2553,18 +2626,24 @@ - mboxlist_newquota->used += mailbox.quota_mailbox_used; - mailbox_close(&mailbox); - return 0; -- -+ - error: - mailbox_close(&mailbox); -+ syslog(LOG_ERR, "LOSTQUOTA: unable to change quota root for %s to %s: %s. \ -+ Command aborted. Run reconstruct to make sure mailboxes \ -+ are in consistent state", -+ name, mboxlist_newquota->root, error_message(r)); -+ return 1; - error_noclose: - syslog(LOG_ERR, "LOSTQUOTA: unable to change quota root for %s to %s: %s", -- name, mboxlist_newquota->root, error_message(r)); -+ name, mboxlist_newquota->root, error_message(r)); - - /* Note, we're a callback, and it's not a huge tragedy if we - * fail, so we don't ever return a failure */ - return 0; - } - -+ - /* must be called after cyrus_init */ - void mboxlist_init(int myflags) - { -diff -Naur cyrus-imapd-2.2.12.orig/imap/mboxlist.h cyrus-imapd-2.2.12/imap/mboxlist.h ---- cyrus-imapd-2.2.12.orig/imap/mboxlist.h Wed Mar 17 19:07:49 2004 -+++ cyrus-imapd-2.2.12/imap/mboxlist.h Mon Mar 7 11:30:58 2005 -@@ -122,7 +122,7 @@ - * the planet */ - int mboxlist_deletemailbox(const char *name, int isadmin, char *userid, - struct auth_state *auth_state, int checkacl, -- int local_only, int force); -+ int local_only, int force, int keepQuota); - - /* Rename/move a mailbox (hierarchical) */ - int mboxlist_renamemailbox(char *oldname, char *newname, char *partition, -diff -Naur cyrus-imapd-2.2.12.orig/imap/mupdate.c cyrus-imapd-2.2.12/imap/mupdate.c ---- cyrus-imapd-2.2.12.orig/imap/mupdate.c Fri Dec 17 17:32:16 2004 -+++ cyrus-imapd-2.2.12/imap/mupdate.c Mon Mar 7 11:30:58 2005 -@@ -2190,7 +2190,7 @@ - remote_boxes.head = r->next; - } else if (ret < 0) { - /* Local without corresponding remote, delete it */ -- mboxlist_deletemailbox(l->mailbox, 1, "", NULL, 0, 0, 0); -+ mboxlist_deletemailbox(l->mailbox, 1, "", NULL, 0, 0, 0, 1); - local_boxes.head = l->next; - } else /* (ret > 0) */ { - /* Remote without corresponding local, insert it */ -@@ -2205,7 +2205,7 @@ - if(l && !r) { - /* we have more deletes to do */ - while(l) { -- mboxlist_deletemailbox(l->mailbox, 1, "", NULL, 0, 0, 0); -+ mboxlist_deletemailbox(l->mailbox, 1, "", NULL, 0, 0, 0, 1); - local_boxes.head = l->next; - l = local_boxes.head; - } -diff -Naur cyrus-imapd-2.2.12.orig/imap/nntpd.c cyrus-imapd-2.2.12/imap/nntpd.c ---- cyrus-imapd-2.2.12.orig/imap/nntpd.c Fri Jan 7 21:59:04 2005 -+++ cyrus-imapd-2.2.12/imap/nntpd.c Mon Mar 7 11:30:58 2005 -@@ -3298,7 +3298,7 @@ - /* XXX should we delete right away, or wait until empty? */ - - r = mboxlist_deletemailbox(mailboxname, 0, -- newsmaster, newsmaster_authstate, 1, 0, 0); -+ newsmaster, newsmaster_authstate, 1, 0, 0, 1); - - return r; - } diff --git a/src/patches/cyrus-imapd-2.2.12-seenstate.patch b/src/patches/cyrus-imapd-2.2.12-seenstate.patch deleted file mode 100644 index 1de1d8f8ab..0000000000 --- a/src/patches/cyrus-imapd-2.2.12-seenstate.patch +++ /dev/null @@ -1,163 +0,0 @@ -# Small patch to Cyrus IMAP 2.2.12 which modifies \Seen state handling to -# make it compatible with Outlook Express. OE makes two connections to a -# given mailfolder: one generates indexes while the other fetches messages. -# Unfortunately it gets confused if \Seen updates caused by the message -# stream aren't immediately flushed and picked up by the index stream. -# -# Apparently Mozilla Thunderbird has the same problem. -# -# This patch is a 2.2.12 port from the patch found here: -# http://www-uxsup.csx.cam.ac.uk/~dpc22/cyrus/patches/2.1.16/seenstate.patch -# -diff -Naur cyrus-imapd-2.2.12.orig/imap/imapd.c cyrus-imapd-2.2.12/imap/imapd.c ---- cyrus-imapd-2.2.12.orig/imap/imapd.c 2005-02-14 07:39:55.000000000 +0100 -+++ cyrus-imapd-2.2.12/imap/imapd.c 2006-01-04 07:41:45.000000000 +0100 -@@ -3095,6 +3095,10 @@ - snprintf(mytime, sizeof(mytime), "%2.3f", - (clock() - start) / (double) CLOCKS_PER_SEC); - -+ /* Checkpoint \Seen immediately after each FETCH completes. Checks for -+ * changes from other processes at the same time */ -+ index_check_existing(imapd_mailbox, usinguid, 1); -+ - if (r) { - prot_printf(imapd_out, "%s NO %s (%s sec)\r\n", tag, - error_message(r), mytime); -@@ -3219,7 +3223,8 @@ - - index_fetch(imapd_mailbox, msgno, 0, &fetchargs, &fetchedsomething); - -- index_check(imapd_mailbox, 0, 0); -+ /* Vanilla index_check() can generate illegal EXPUNGE events */ -+ index_check_existing(imapd_mailbox, 0, 1); - - if (fetchedsomething) { - prot_printf(imapd_out, "%s OK %s\r\n", tag, -@@ -3352,7 +3357,9 @@ - flag, nflags); - - if (usinguid) { -- index_check(imapd_mailbox, 1, 0); -+ index_check(imapd_mailbox, 1, 1); /* Check \Seen too */ -+ } else { -+ index_check_existing(imapd_mailbox, 0, 1); - } - - if (r) { -diff -Naur cyrus-imapd-2.2.12.orig/imap/imapd.h cyrus-imapd-2.2.12/imap/imapd.h ---- cyrus-imapd-2.2.12.orig/imap/imapd.h 2004-06-22 23:36:18.000000000 +0200 -+++ cyrus-imapd-2.2.12/imap/imapd.h 2006-01-04 07:41:45.000000000 +0100 -@@ -232,6 +232,8 @@ - extern void index_operatemailbox(struct mailbox *mailbox); - extern void index_check(struct mailbox *mailbox, int usinguid, - int checkseen); -+extern void -+index_check_existing(struct mailbox *mailbox, int usinguid, int checkseen); - extern void index_checkseen(struct mailbox *mailbox, int quiet, - int usinguid, int oldexists); - -diff -Naur cyrus-imapd-2.2.12.orig/imap/index.c cyrus-imapd-2.2.12/imap/index.c ---- cyrus-imapd-2.2.12.orig/imap/index.c 2005-02-14 17:42:08.000000000 +0100 -+++ cyrus-imapd-2.2.12/imap/index.c 2006-01-04 08:08:51.000000000 +0100 -@@ -425,6 +425,53 @@ - } - } - -+/* Nasty hack to report system + user flags updates without checking for -+ * new mail or expunge (relies on index atomic rewrite+rename for expunge). -+ * -+ * Needed to keep Outlook Express happy without breaking IMAP concurrent -+ * access regime which (quite correctly) prohibits unsolicited EXPUNGE and -+ * EXIST responses for non-UID versions of FETCH and STORE. Otherwise you -+ * can end up with hilarous situations such as: -+ * -+ * . FETCH 2 fast -+ * * EXPUNGE 1 <-- from concurrent session. -+ * . FETCH (data relating to previous message _3_, if it exists) -+ * -+ */ -+ -+void -+index_check_existing(struct mailbox *mailbox, int usinguid, int checkseen) -+{ -+ struct stat sbuf; -+ int msgno, i; -+ bit32 user_flags[MAX_USER_FLAGS/32]; -+ -+ if (imapd_exists == -1) -+ return; -+ -+ /* Bail out if the mailbox was rotated under our feet */ -+ if ((index_len > 0) && -+ ((stat(FNAME_INDEX+1, &sbuf) != 0) || -+ (sbuf.st_ino != mailbox->index_ino) || -+ (index_ino != mailbox->index_ino))) -+ return; -+ -+ if (checkseen) -+ index_checkseen(mailbox, 0, usinguid, imapd_exists); -+ -+ for (msgno = 1; msgno <= imapd_exists; msgno++) { -+ if (flagreport[msgno] < LAST_UPDATED(msgno)) { -+ for (i = 0; i < VECTOR_SIZE(user_flags); i++) { -+ user_flags[i] = USER_FLAGS(msgno, i); -+ } -+ index_fetchflags(mailbox, msgno, SYSTEM_FLAGS(msgno), user_flags, -+ LAST_UPDATED(msgno)); -+ if (usinguid) prot_printf(imapd_out, " UID %u", UID(msgno)); -+ prot_printf(imapd_out, ")\r\n"); -+ } -+ } -+} -+ - /* - * Checkpoint the user's \Seen state - * -@@ -458,6 +505,7 @@ - char *saveseenuids, *save; - int savealloced; - unsigned start, newallseen, inrange, usecomma; -+ mailbox_notifyproc_t *updatenotifier; - - if (!keepingseen || !seendb) return; - if (imapd_exists == 0) { -@@ -731,6 +779,9 @@ - - free(newseenuids); - seenuids = saveseenuids; -+ -+ updatenotifier = mailbox_get_updatenotifier(); -+ if (updatenotifier) updatenotifier(mailbox); - } - - -diff -Naur cyrus-imapd-2.2.12.orig/imap/mailbox.c cyrus-imapd-2.2.12/imap/mailbox.c ---- cyrus-imapd-2.2.12.orig/imap/mailbox.c 2005-02-14 07:39:57.000000000 +0100 -+++ cyrus-imapd-2.2.12/imap/mailbox.c 2006-01-04 07:41:45.000000000 +0100 -@@ -230,6 +230,14 @@ - } - - /* -+ * Get the updatenotifier function -+ */ -+mailbox_notifyproc_t *mailbox_get_updatenotifier(void) -+{ -+ return updatenotifier; -+} -+ -+/* - * Create connection to acappush (obsolete) - */ - int mailbox_initialize(void) -diff -Naur cyrus-imapd-2.2.12.orig/imap/mailbox.h cyrus-imapd-2.2.12/imap/mailbox.h ---- cyrus-imapd-2.2.12.orig/imap/mailbox.h 2004-01-22 22:17:09.000000000 +0100 -+++ cyrus-imapd-2.2.12/imap/mailbox.h 2006-01-04 07:41:45.000000000 +0100 -@@ -224,6 +224,8 @@ - - extern void mailbox_set_updatenotifier(mailbox_notifyproc_t *notifyproc); - -+extern mailbox_notifyproc_t *mailbox_get_updatenotifier(void); -+ - extern int mailbox_initialize(void); - - extern char *mailbox_message_fname(struct mailbox *mailbox, diff --git a/src/patches/cyrus-imapd-2.2.12-singleinstancestore.patch b/src/patches/cyrus-imapd-2.2.12-singleinstancestore.patch deleted file mode 100644 index 5251552312..0000000000 --- a/src/patches/cyrus-imapd-2.2.12-singleinstancestore.patch +++ /dev/null @@ -1,144 +0,0 @@ -diff -Naur cyrus-imapd-2.2.12/imap/append.c cyrus-imapd-2.2.12.cvs/imap/append.c ---- cyrus-imapd-2.2.12/imap/append.c 2004-05-22 05:45:48.000000000 +0200 -+++ cyrus-imapd-2.2.12.cvs/imap/append.c 2005-06-03 07:10:24.000000000 +0200 -@@ -1,5 +1,5 @@ - /* append.c -- Routines for appending messages to a mailbox -- * $Id: append.c,v 1.107 2004/05/22 03:45:48 rjs3 Exp $ -+ * $Id: append.c,v 1.108 2005/06/02 15:47:50 ken3 Exp $ - * - * Copyright (c)1998, 2000 Carnegie Mellon University. All rights reserved. - * -@@ -801,7 +801,8 @@ - int append_copy(struct mailbox *mailbox, - struct appendstate *as, - int nummsg, -- struct copymsg *copymsg) -+ struct copymsg *copymsg, -+ int nolink) - { - struct mailbox *append_mailbox = &as->m; - int msg; -@@ -845,7 +846,7 @@ - mailbox_message_get_fname(mailbox, copymsg[msg].uid, fnamebuf, - sizeof(fnamebuf)); - /* Link/copy message file */ -- r = mailbox_copyfile(fnamebuf, fname, 0); -+ r = mailbox_copyfile(fnamebuf, fname, nolink); - if (r) goto fail; - - /* Write out cache info, copy other info */ -diff -Naur cyrus-imapd-2.2.12/imap/append.h cyrus-imapd-2.2.12.cvs/imap/append.h ---- cyrus-imapd-2.2.12/imap/append.h 2004-01-22 22:17:07.000000000 +0100 -+++ cyrus-imapd-2.2.12.cvs/imap/append.h 2005-06-03 07:10:24.000000000 +0200 -@@ -1,5 +1,5 @@ - /* append.h -- Description of messages to be copied -- * $Id: append.h,v 1.26 2004/01/22 21:17:07 ken3 Exp $ -+ * $Id: append.h,v 1.27 2005/06/02 15:47:51 ken3 Exp $ - * - * Copyright (c) 1998, 2000 Carnegie Mellon University. All rights reserved. - * -@@ -137,7 +137,7 @@ - - extern int append_copy(struct mailbox *mailbox, - struct appendstate *append_mailbox, -- int nummsg, struct copymsg *copymsg); -+ int nummsg, struct copymsg *copymsg, int nolink); - - extern int append_collectnews(struct appendstate *mailbox, - const char *group, unsigned long feeduid); -diff -Naur cyrus-imapd-2.2.12/imap/imapd.c cyrus-imapd-2.2.12.cvs/imap/imapd.c ---- cyrus-imapd-2.2.12/imap/imapd.c 2005-02-14 07:39:55.000000000 +0100 -+++ cyrus-imapd-2.2.12.cvs/imap/imapd.c 2005-06-03 07:11:52.000000000 +0200 -@@ -38,7 +38,7 @@ - * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - --/* $Id: imapd.c,v 1.490 2005/02/14 06:39:55 shadow Exp $ */ -+/* $Id: imapd.c,v 1.493 2005/06/02 15:47:51 ken3 Exp $ */ - - #include - -@@ -3593,7 +3593,7 @@ - imapd_userid, mailboxname); - if (!r) { - r = index_copy(imapd_mailbox, sequence, usinguid, mailboxname, -- ©uid); -+ ©uid, !config_getswitch(IMAPOPT_SINGLEINSTANCESTORE)); - } - - index_check(imapd_mailbox, usinguid, 0); -diff -Naur cyrus-imapd-2.2.12/imap/imapd.h cyrus-imapd-2.2.12.cvs/imap/imapd.h ---- cyrus-imapd-2.2.12/imap/imapd.h 2004-06-22 23:36:18.000000000 +0200 -+++ cyrus-imapd-2.2.12.cvs/imap/imapd.h 2005-06-03 07:10:24.000000000 +0200 -@@ -1,5 +1,5 @@ - /* imapd.h -- Common state for IMAP daemon -- * $Id: imapd.h,v 1.61 2004/06/22 21:36:18 rjs3 Exp $ -+ * $Id: imapd.h,v 1.62 2005/06/02 15:47:57 ken3 Exp $ - * - * Copyright (c) 1998-2003 Carnegie Mellon University. All rights reserved. - * -@@ -249,7 +249,7 @@ - extern int index_thread(struct mailbox *mailbox, int algorithm, - struct searchargs *searchargs, int usinguid); - extern int index_copy(struct mailbox *mailbox, char *sequence, -- int usinguid, char *name, char **copyuidp); -+ int usinguid, char *name, char **copyuidp, int nolink); - extern int index_status(struct mailbox *mailbox, char *name, - int statusitems); - -diff -Naur cyrus-imapd-2.2.12/imap/index.c cyrus-imapd-2.2.12.cvs/imap/index.c ---- cyrus-imapd-2.2.12/imap/index.c 2005-02-14 17:42:08.000000000 +0100 -+++ cyrus-imapd-2.2.12.cvs/imap/index.c 2005-06-03 07:13:04.000000000 +0200 -@@ -41,7 +41,7 @@ - * - */ - /* -- * $Id: index.c,v 1.213 2005/02/14 16:42:08 shadow Exp $ -+ * $Id: index.c,v 1.218 2005/06/02 15:47:58 ken3 Exp $ - */ - #include - -@@ -1145,7 +1145,8 @@ - char *sequence, - int usinguid, - char *name, -- char **copyuidp) -+ char **copyuidp, -+ int nolink) - { - static struct copyargs copyargs; - int i; -@@ -1176,7 +1177,7 @@ - if (r) return r; - - r = append_copy(mailbox, &append_mailbox, copyargs.nummsg, -- copyargs.copymsg); -+ copyargs.copymsg, nolink); - if (!r) append_commit(&append_mailbox, totalsize, - &uidvalidity, &startuid, &num); - if (!r) { -diff -Naur cyrus-imapd-2.2.12/lib/imapoptions cyrus-imapd-2.2.12.cvs/lib/imapoptions ---- cyrus-imapd-2.2.12/lib/imapoptions 2004-07-21 21:07:45.000000000 +0200 -+++ cyrus-imapd-2.2.12.cvs/lib/imapoptions 2005-06-03 07:14:07.000000000 +0200 -@@ -42,7 +42,7 @@ - .\" AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING - .\" OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - .\" --.\" $Id: imapoptions,v 1.30 2004/07/21 19:07:45 rjs3 Exp $ -+.\" $Id: imapoptions,v 1.33 2005/06/02 15:47:59 ken3 Exp $ - .SH NAME - imapd.conf \- IMAP configuration file - .SH DESCRIPTION -@@ -753,9 +753,9 @@ - directories: ~user/.sieve. */ - - { "singleinstancestore", 1, SWITCH } --/* If enabled, lmtpd and nntpd attempt to only write one copy of a message per -- partition and create hard links, resulting in a potentially large -- disk savings. */ -+/* If enabled, imapd, lmtpd and nntpd attempt to only write one copy -+ of a message per partition and create hard links, resulting in a -+ potentially large disk savings. */ - - { "skiplist_unsafe", 0, SWITCH } - /* If enabled, this option forces the skiplist cyrusdb backend to diff --git a/src/patches/cyrus-imapd-2.2.12-spool.patch b/src/patches/cyrus-imapd-2.2.12-spool.patch deleted file mode 100644 index 4171a5ed38..0000000000 --- a/src/patches/cyrus-imapd-2.2.12-spool.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur cyrus-imapd-2.2.12.orig/imap/spool.c cyrus-imapd-2.2.12/imap/spool.c ---- cyrus-imapd-2.2.12.orig/imap/spool.c 2004-10-27 22:40:50.000000000 +0200 -+++ cyrus-imapd-2.2.12/imap/spool.c 2005-10-24 15:08:37.000000000 +0200 -@@ -451,7 +451,7 @@ - p[1] = '\n'; - p[2] = '\0'; - } -- else if (p[0] != '\n' && (strlen(buf) < sizeof(buf)-2)) { -+ else if (p[0] != '\n' && (strlen(buf) < sizeof(buf)-3)) { - /* line contained a \0 not at the end */ - r = IMAP_MESSAGE_CONTAINSNULL; - continue; diff --git a/src/patches/cyrus-imapd-2.3.3-deleteacl_invalid_identifier_fix.patch b/src/patches/cyrus-imapd-2.3.3-deleteacl_invalid_identifier_fix.patch deleted file mode 100644 index a21c18635c..0000000000 --- a/src/patches/cyrus-imapd-2.3.3-deleteacl_invalid_identifier_fix.patch +++ /dev/null @@ -1,44 +0,0 @@ -diff -Naur cyrus-imapd-2.3.3.orig/lib/acl_afs.c cyrus-imapd-2.3.3/lib/acl_afs.c ---- cyrus-imapd-2.3.3.orig/lib/acl_afs.c 2005-12-13 20:36:11.000000000 +0100 -+++ cyrus-imapd-2.3.3/lib/acl_afs.c 2006-04-12 07:28:50.000000000 +0200 -@@ -114,6 +114,7 @@ - cyrus_acl_canonproc_t *canonproc; - void *canonrock; - { -+ const char *canonid; - char *newidentifier = 0; - char *newacl; - char *thisid, *nextid; -@@ -122,9 +123,14 @@ - - /* Convert 'identifier' into canonical form */ - if (*identifier == '-') { -- char *canonid = auth_canonifyid(identifier+1, 0); -+ canonid = auth_canonifyid(identifier+1, 0); - if (!canonid) { -- return -1; -+ if (access != 0L) { -+ return -1; -+ } else { -+ /* trying to delete invalid/non-existent identifier */ -+ canonid = identifier+1; -+ } - } - newidentifier = xmalloc(strlen(canonid)+2); - newidentifier[0] = '-'; -@@ -135,9 +141,13 @@ - } - } - else { -- identifier = auth_canonifyid(identifier, 0); -- if (!identifier) { -+ canonid = auth_canonifyid(identifier, 0); -+ if (canonid) { -+ identifier = canonid; -+ } else if (access != 0L) { - return -1; -+ } else { -+ /* trying to delete invalid/non-existent identifier */ - } - if (canonproc) { - access = canonproc(canonrock, identifier, access); diff --git a/src/patches/cyrus-imapd-acceptinvalidfrom.patch b/src/patches/cyrus-imapd-acceptinvalidfrom.patch deleted file mode 100644 index b44ab59294..0000000000 --- a/src/patches/cyrus-imapd-acceptinvalidfrom.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- cyrus-imapd-2.2.6/imap/message.c.acceptinvalidfrom 2004-10-30 15:03:02.220642392 -0700 -+++ cyrus-imapd-2.2.6/imap/message.c 2004-10-30 15:06:01.838336352 -0700 -@@ -229,6 +229,8 @@ - int reject8bit = config_getswitch(IMAPOPT_REJECT8BIT); - int munge8bit = config_getswitch(IMAPOPT_MUNGE8BIT); - int inheader = 1, blankline = 1; -+ char is_from; -+ static const char * from_header = "From "; - - while (size) { - n = prot_read(from, buf, size > 4096 ? 4096 : size); -@@ -294,8 +296,20 @@ - /* Check for valid header name */ - if (sawnl && buf[0] != ' ' && buf[0] != '\t') { - if (buf[0] == ':') return IMAP_MESSAGE_BADHEADER; -- for (p = (unsigned char *)buf; *p != ':'; p++) { -- if (*p <= ' ') return IMAP_MESSAGE_BADHEADER; -+ p = (unsigned char *) buf; -+ if (*p == '>') -+ p++; -+ if (*p == from_header[0]) -+ is_from = 0; -+ else -+ is_from = -1; -+ for (; *p != ':' && is_from < 5; p++) { -+ if (is_from > 0 && *p != from_header[is_from]) -+ is_from = -1; -+ if (is_from >= 0) -+ is_from++; -+ else -+ if (*p <= ' ') return IMAP_MESSAGE_BADHEADER; - } - } - diff --git a/src/patches/timsieved_reset_sasl_conn.patch b/src/patches/timsieved_reset_sasl_conn.patch deleted file mode 100644 index af08f578e5..0000000000 --- a/src/patches/timsieved_reset_sasl_conn.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- timsieved/parser.c -+++ timsieved/parser.c 2005/08/24 09:14:42 -@@ -664,8 +664,14 @@ - - if(r) { - /* mboxlist_detail error */ -- *errmsg = "mailbox unknown"; -- return FALSE; -+ syslog(LOG_ERR, error_message(r)); -+ -+ if(reset_saslconn(&sieved_saslconn, ssf, authid) != SASL_OK) -+ fatal("could not reset the sasl_conn_t after failure", -+ EC_TEMPFAIL); -+ -+ ret = FALSE; -+ goto cleanup; - } - - if(type & MBTYPE_REMOTE) {