# Change the window title of X terminals
case ${TERM} in
xterm*|rxvt*|Eterm|aterm|kterm|gnome*|interix)
- PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007"'
+ PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}\007"'
;;
screen)
- PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\033\\"'
+ PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}\033\\"'
;;
esac
fi
alias ls='ls --color=auto'
- #alias grep='grep --colour=auto'
+ alias grep='grep --colour=auto'
else
if [[ ${EUID} == 0 ]] ; then
# show root@ when we don't have colors
--- /dev/null
+#!/sbin/runscript
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-process/at/files/atd.confd,v 1.1 2011/04/17 22:46:40 jer Exp $
+
+# Define startup options for atd(8).
+# For example: ATD_OPTS="-l 3.0 -b 5"
+ATD_OPTS=""
-head 1.1;
+head 1.2;
access;
symbols;
locks; strict;
comment @# @;
+expand @o@;
+1.2
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next 1.1;
+
1.1
date 2010.11.30.18.48.59; author root; state Exp;
+branches
+ 1.1.1.1;
+next ;
+
+1.1.1.1
+date 2012.03.27.19.13.10; author root; state Exp;
branches;
next ;
@
-1.1
+1.2
log
@dispatch-conf update.
@
grep='grep --colour=auto'
alias cpwd='cd `realpath .`'
+lcd() {
+ cd $( perl -e '
+use strict;
+use Cwd;
+my $new = shift;
+my $cwd = Cwd::abs_path(getcwd());
+my $newa = $cwd;
+if ($new){
+ $newa = Cwd::abs_path($new);
+ $newa = $cwd unless $newa;
+};
+printf("%s\n", $newa);
+' $1 )
+}
+
+
HISTCONTROL=ignoreboth
HISTSIZE=5000
HISTFILESIZE=5000
HISTTIMEFORMAT='%Y-%m-%d %H:%M:%S '
+export LESSCOLOR=yes
+
# Change the window title of X terminals
case $TERM in
xterm*|rxvt|Eterm|eterm)
# Try to keep environment pollution down, EPA loves us.
unset use_color safe_term match_lhs
@
+
+
+1.1
+log
+@dispatch-conf update.
+@
+text
+@d113 16
+d133 2
+@
+
+
+1.1.1.1
+log
+@dispatch-conf update.
+@
+text
+@d9 15
+d44 1
+a44 1
+ PROMPT_COMMAND='echo -ne "\033]0;${USER}@@${HOSTNAME%%.*}:${PWD/#$HOME/~}\007"'
+d47 1
+a47 1
+ PROMPT_COMMAND='echo -ne "\033_${USER}@@${HOSTNAME%%.*}:${PWD/#$HOME/~}\033\\"'
+d78 3
+a80 1
+ PS1='\[\033[01;31m\]\h\[\033[01;34m\] \W \$\[\033[00m\] '
+d82 2
+a83 1
+ PS1='\[\033[01;32m\]\u@@\h\[\033[01;34m\] \w \$\[\033[00m\] '
+d87 1
+a87 1
+ alias grep='grep --colour=auto'
+d96 41
+@
+++ /dev/null
-# /etc/bash/bashrc
-#
-# This file is sourced by all *interactive* bash shells on startup,
-# including some apparently interactive shells such as scp and rcp
-# that can't tolerate any output. So make sure this doesn't display
-# anything or bad things will happen !
-
-
-# Test for an interactive shell. There is no need to set anything
-# past this point for scp and rcp, and it's important to refrain from
-# outputting anything in those cases.
-if [[ $- != *i* ]] ; then
- # Shell is non-interactive. Be done now!
- return
-fi
-
-# Bash won't get SIGWINCH if another process is in the foreground.
-# Enable checkwinsize so that bash will check the terminal size when
-# it regains control. #65623
-# http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11)
-shopt -s checkwinsize
-
-# Enable history appending instead of overwriting. #139609
-shopt -s histappend
-
-# Change the window title of X terminals
-case ${TERM} in
- xterm*|rxvt*|Eterm|aterm|kterm|gnome*|interix)
- PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007"'
- ;;
- screen)
- PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\033\\"'
- ;;
-esac
-
-use_color=false
-
-# Set colorful PS1 only on colorful terminals.
-# dircolors --print-database uses its own built-in database
-# instead of using /etc/DIR_COLORS. Try to use the external file
-# first to take advantage of user additions. Use internal bash
-# globbing instead of external grep binary.
-safe_term=${TERM//[^[:alnum:]]/?} # sanitize TERM
-match_lhs=""
-[[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)"
-[[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(</etc/DIR_COLORS)"
-[[ -z ${match_lhs} ]] \
- && type -P dircolors >/dev/null \
- && match_lhs=$(dircolors --print-database)
-[[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true
-
-if ${use_color} ; then
- # Enable colors for ls, etc. Prefer ~/.dir_colors #64489
- if type -P dircolors >/dev/null ; then
- if [[ -f ~/.dir_colors ]] ; then
- eval $(dircolors -b ~/.dir_colors)
- elif [[ -f /etc/DIR_COLORS ]] ; then
- eval $(dircolors -b /etc/DIR_COLORS)
- fi
- fi
-
- if [[ ${EUID} == 0 ]] ; then
- PS1='\[\033[01;31m\]\h\[\033[01;34m\] \W \$\[\033[00m\] '
- else
- PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
- fi
-
- alias ls='ls --color=auto'
- alias grep='grep --colour=auto'
-else
- if [[ ${EUID} == 0 ]] ; then
- # show root@ when we don't have colors
- PS1='\u@\h \W \$ '
- else
- PS1='\u@\h \w \$ '
- fi
-fi
-
-# Try to keep environment pollution down, EPA loves us.
-unset use_color safe_term match_lhs
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
---
+$OpenLDAP$
+@
+
+
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d80 1
+a80 1
$OpenLDAP: pkg/ldap/servers/slapd/schema/README,v 1.29.2.6 2011/01/04 23:50:51 kurt Exp $
@
a80 1
$OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d37 1
+a37 1
+Copyright 1998-2012 The OpenLDAP Foundation, Redwood City, California, USA
+@
--- /dev/null
+head 1.1;
+access;
+symbols;
+locks; strict;
+comment @# @;
+
+
+1.1
+date 2012.03.27.19.12.23; author root; state Exp;
+branches
+ 1.1.1.1;
+next ;
+
+1.1.1.1
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next ;
+
+
+desc
+@Archived config file.
+@
+
+
+1.1
+log
+@dispatch-conf update.
+@
+text
+@# collective.ldif -- Collective attribute schema
+# $OpenLDAP$
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
+##
+## Copyright 1998-2011 The OpenLDAP Foundation.
+## All rights reserved.
+##
+## Redistribution and use in source and binary forms, with or without
+## modification, are permitted only as authorized by the OpenLDAP
+## Public License.
+##
+## A copy of this license is available in the file LICENSE in the
+## top-level directory of the distribution or, alternatively, at
+## <http://www.OpenLDAP.org/license.html>.
+#
+## Portions Copyright (C) The Internet Society (2003).
+## Please see full copyright statement below.
+#
+# From RFC 3671 [portions trimmed]:
+# Collective Attributes in LDAP
+#
+# This file was automatically generated from collective.schema; see that file
+# for complete references.
+#
+dn: cn=collective,cn=schema,cn=config
+objectClass: olcSchemaConfig
+cn: collective
+olcAttributeTypes: {0}( 2.5.4.7.1 NAME 'c-l' SUP l COLLECTIVE )
+olcAttributeTypes: {1}( 2.5.4.8.1 NAME 'c-st' SUP st COLLECTIVE )
+olcAttributeTypes: {2}( 2.5.4.9.1 NAME 'c-street' SUP street COLLECTIVE )
+olcAttributeTypes: {3}( 2.5.4.10.1 NAME 'c-o' SUP o COLLECTIVE )
+olcAttributeTypes: {4}( 2.5.4.11.1 NAME 'c-ou' SUP ou COLLECTIVE )
+olcAttributeTypes: {5}( 2.5.4.16.1 NAME 'c-PostalAddress' SUP postalAddress CO
+ LLECTIVE )
+olcAttributeTypes: {6}( 2.5.4.17.1 NAME 'c-PostalCode' SUP postalCode COLLECTI
+ VE )
+olcAttributeTypes: {7}( 2.5.4.18.1 NAME 'c-PostOfficeBox' SUP postOfficeBox CO
+ LLECTIVE )
+olcAttributeTypes: {8}( 2.5.4.19.1 NAME 'c-PhysicalDeliveryOfficeName' SUP phy
+ sicalDeliveryOfficeName COLLECTIVE )
+olcAttributeTypes: {9}( 2.5.4.20.1 NAME 'c-TelephoneNumber' SUP telephoneNumbe
+ r COLLECTIVE )
+olcAttributeTypes: {10}( 2.5.4.21.1 NAME 'c-TelexNumber' SUP telexNumber COLLE
+ CTIVE )
+olcAttributeTypes: {11}( 2.5.4.23.1 NAME 'c-FacsimileTelephoneNumber' SUP facs
+ imileTelephoneNumber COLLECTIVE )
+olcAttributeTypes: {12}( 2.5.4.25.1 NAME 'c-InternationalISDNNumber' SUP inter
+ nationalISDNNumber COLLECTIVE )
+@
+
+
+1.1.1.1
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
@# collective.schema -- Collective attribute schema
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/collective.schema,v 1.12.2.6 2011/01/04 23:50:51 kurt Exp $
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d2 1
+a2 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/collective.schema,v 1.12.2.6 2011/01/04 23:50:51 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a2 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
--- /dev/null
+head 1.1;
+access;
+symbols;
+locks; strict;
+comment @# @;
+
+
+1.1
+date 2012.03.27.19.12.23; author root; state Exp;
+branches
+ 1.1.1.1;
+next ;
+
+1.1.1.1
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next ;
+
+
+desc
+@Archived config file.
+@
+
+
+1.1
+log
+@dispatch-conf update.
+@
+text
+@# corba.ldif -- Corba Object Schema
+# depends upon core.ldif
+# $OpenLDAP$
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
+##
+## Copyright 1998-2011 The OpenLDAP Foundation.
+## All rights reserved.
+##
+## Redistribution and use in source and binary forms, with or without
+## modification, are permitted only as authorized by the OpenLDAP
+## Public License.
+##
+## A copy of this license is available in the file LICENSE in the
+## top-level directory of the distribution or, alternatively, at
+## <http://www.OpenLDAP.org/license.html>.
+#
+## Portions Copyright (C) The Internet Society (1999).
+## Please see full copyright statement below.
+#
+# From RFC 2714 [portions trimmed]:
+# Schema for Representing CORBA Object References in an LDAP Directory
+#
+# This file was automatically generated from corba.schema; see that file
+# for complete references.
+#
+dn: cn=corba,cn=schema,cn=config
+objectClass: olcSchemaConfig
+cn: corba
+olcAttributeTypes: {0}( 1.3.6.1.4.1.42.2.27.4.1.14 NAME 'corbaIor' DESC 'Strin
+ gified interoperable object reference of a CORBA object' EQUALITY caseIgnoreI
+ A5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE )
+olcAttributeTypes: {1}( 1.3.6.1.4.1.42.2.27.4.1.15 NAME 'corbaRepositoryId' DE
+ SC 'Repository ids of interfaces implemented by a CORBA object' EQUALITY case
+ ExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
+olcObjectClasses: {0}( 1.3.6.1.4.1.42.2.27.4.2.10 NAME 'corbaContainer' DESC '
+ Container for a CORBA object' SUP top STRUCTURAL MUST cn )
+olcObjectClasses: {1}( 1.3.6.1.4.1.42.2.27.4.2.9 NAME 'corbaObject' DESC 'CORB
+ A object representation' SUP top ABSTRACT MAY ( corbaRepositoryId $ descripti
+ on ) )
+olcObjectClasses: {2}( 1.3.6.1.4.1.42.2.27.4.2.11 NAME 'corbaObjectReference'
+ DESC 'CORBA interoperable object reference' SUP corbaObject AUXILIARY MUST co
+ rbaIor )
+@
+
+
+1.1.1.1
+log
+@dispatch-conf update.
+@
+text
+@d6 1
+a6 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
@# corba.schema -- Corba Object Schema
# depends upon core.schema
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/corba.schema,v 1.7.2.6 2011/01/04 23:50:51 kurt Exp $
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/corba.schema,v 1.7.2.6 2011/01/04 23:50:51 kurt Exp $
+# $OpenLDAP$
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d3 2
+a4 2
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/corba.schema,v 1.7.2.6 2011/01/04 23:50:51 kurt Exp $
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/corba.schema,v 1.7.2.6 2011/01/04 23:50:51 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
# $OpenLDAP$
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d7 1
+a7 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
@# OpenLDAP Core schema
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/core.ldif,v 1.2.2.8 2011/01/04 23:50:51 kurt Exp $
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d2 1
+a2 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/core.ldif,v 1.2.2.8 2011/01/04 23:50:51 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a2 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
@# OpenLDAP Core schema
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/core.schema,v 1.88.2.9 2011/01/04 23:50:51 kurt Exp $
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d2 1
+a2 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/core.schema,v 1.88.2.9 2011/01/04 23:50:51 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a2 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
@# RFC1274: Cosine and Internet X.500 schema
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/cosine.ldif,v 1.1.2.6 2011/01/04 23:50:51 kurt Exp $
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d2 1
+a2 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/cosine.ldif,v 1.1.2.6 2011/01/04 23:50:51 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a2 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.48; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
@# RFC1274: Cosine and Internet X.500 schema
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/cosine.schema,v 1.23.2.6 2011/01/04 23:50:51 kurt Exp $
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d2 1
+a2 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/cosine.schema,v 1.23.2.6 2011/01/04 23:50:51 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a2 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
--- /dev/null
+head 1.1;
+access;
+symbols;
+locks; strict;
+comment @# @;
+
+
+1.1
+date 2012.03.27.19.12.23; author root; state Exp;
+branches
+ 1.1.1.1;
+next ;
+
+1.1.1.1
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next ;
+
+
+desc
+@Archived config file.
+@
+
+
+1.1
+log
+@dispatch-conf update.
+@
+text
+@# $OpenLDAP$
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
+##
+## Copyright 1998-2011 The OpenLDAP Foundation.
+## All rights reserved.
+##
+## Redistribution and use in source and binary forms, with or without
+## modification, are permitted only as authorized by the OpenLDAP
+## Public License.
+##
+## A copy of this license is available in the file LICENSE in the
+## top-level directory of the distribution or, alternatively, at
+## <http://www.OpenLDAP.org/license.html>.
+#
+# DUA schema from draft-joslin-config-schema (a work in progress)
+#
+# This file was automatically generated from duaconf.schema; see that file
+# for complete references.
+#
+dn: cn=duaconf,cn=schema,cn=config
+objectClass: olcSchemaConfig
+cn: duaconf
+olcObjectIdentifier: {0}DUAConfSchemaOID 1.3.6.1.4.1.11.1.3.1
+olcAttributeTypes: {0}( DUAConfSchemaOID:1.0 NAME 'defaultServerList' DESC 'De
+ fault LDAP server host address used by a DUA' EQUALITY caseIgnoreMatch SYNTAX
+ 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE )
+olcAttributeTypes: {1}( DUAConfSchemaOID:1.1 NAME 'defaultSearchBase' DESC 'De
+ fault LDAP base DN used by a DUA' EQUALITY distinguishedNameMatch SYNTAX 1.3.
+ 6.1.4.1.1466.115.121.1.12 SINGLE-VALUE )
+olcAttributeTypes: {2}( DUAConfSchemaOID:1.2 NAME 'preferredServerList' DESC '
+ Preferred LDAP server host addresses to be used by a DUA' EQUALITY
+ caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE )
+olcAttributeTypes: {3}( DUAConfSchemaOID:1.3 NAME 'searchTimeLimit' DESC 'Maxi
+ mum time in seconds a DUA should allow for a search to complete' E
+ QUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
+olcAttributeTypes: {4}( DUAConfSchemaOID:1.4 NAME 'bindTimeLimit' DESC 'Maximu
+ m time in seconds a DUA should allow for the bind operation to com
+ plete' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALU
+ E )
+olcAttributeTypes: {5}( DUAConfSchemaOID:1.5 NAME 'followReferrals' DESC 'Tell
+ s DUA if it should follow referrals returned by a DSA search resul
+ t' EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE )
+olcAttributeTypes: {6}( DUAConfSchemaOID:1.16 NAME 'dereferenceAliases' DESC '
+ Tells DUA if it should dereference aliases' EQUALITY booleanMatch SYNTAX 1.3.
+ 6.1.4.1.1466.115.121.1.7 SINGLE-VALUE )
+olcAttributeTypes: {7}( DUAConfSchemaOID:1.6 NAME 'authenticationMethod' DESC
+ 'A keystring which identifies the type of authentication method us
+ ed to contact the DSA' EQUALITY caseIgnoreMatch SYNTAX 1.3.6.1.4.1.1466.115.1
+ 21.1.15 SINGLE-VALUE )
+olcAttributeTypes: {8}( DUAConfSchemaOID:1.7 NAME 'profileTTL' DESC 'Time to l
+ ive, in seconds, before a client DUA should re-read this configura
+ tion profile' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SING
+ LE-VALUE )
+olcAttributeTypes: {9}( DUAConfSchemaOID:1.14 NAME 'serviceSearchDescriptor' D
+ ESC 'LDAP search descriptor list used by a DUA' EQUALITY caseExactMatch SYNTA
+ X 1.3.6.1.4.1.1466.115.121.1.15 )
+olcAttributeTypes: {10}( DUAConfSchemaOID:1.9 NAME 'attributeMap' DESC 'Attrib
+ ute mappings used by a DUA' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.14
+ 66.115.121.1.26 )
+olcAttributeTypes: {11}( DUAConfSchemaOID:1.10 NAME 'credentialLevel' DESC 'Id
+ entifies type of credentials a DUA should use when binding to the
+ LDAP server' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
+ SINGLE-VALUE )
+olcAttributeTypes: {12}( DUAConfSchemaOID:1.11 NAME 'objectclassMap' DESC 'Obj
+ ectclass mappings used by a DUA' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4
+ .1.1466.115.121.1.26 )
+olcAttributeTypes: {13}( DUAConfSchemaOID:1.12 NAME 'defaultSearchScope' DESC
+ 'Default search scope used by a DUA' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6
+ .1.4.1.1466.115.121.1.26 SINGLE-VALUE )
+olcAttributeTypes: {14}( DUAConfSchemaOID:1.13 NAME 'serviceCredentialLevel' D
+ ESC 'Identifies type of credentials a DUA should use when binding
+ to the LDAP server for a specific service' EQUALITY caseIgnoreIA5M
+ atch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
+olcAttributeTypes: {15}( DUAConfSchemaOID:1.15 NAME 'serviceAuthenticationMeth
+ od' DESC 'Authentication method used by a service of the DUA' EQUALITY caseIg
+ noreMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
+olcObjectClasses: {0}( DUAConfSchemaOID:2.5 NAME 'DUAConfigProfile' DESC 'Abst
+ raction of a base configuration for a DUA' SUP top STRUCTURAL MUST cn MAY ( d
+ efaultServerList $ preferredServerList $ defaultSearchBase $ defaultSearchSco
+ pe $ searchTimeLimit $ bindTimeLimit $ credentialLevel $ authenticationMethod
+ $ followReferrals $ dereferenceAliases $ serviceSearchDescriptor $ serviceCr
+ edentialLevel $ serviceAuthenticationMethod $ objectclassMap $ attributeMap $
+ profileTTL ) )
+@
+
+
+1.1.1.1
+log
+@dispatch-conf update.
+@
+text
+@d4 1
+a4 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
-@# $OpenLDAP: pkg/ldap/servers/slapd/schema/duaconf.schema,v 1.5.2.6 2011/01/04 23:50:51 kurt Exp $
+@# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d1 1
+a1 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/duaconf.schema,v 1.5.2.6 2011/01/04 23:50:51 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a1 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d4 1
+a4 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.1;
+head 1.2;
access;
symbols;
locks; strict;
comment @# @;
+expand @o@;
+1.2
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next 1.1;
+
1.1
date 2012.02.29.20.12.49; author root; state Exp;
branches
1.1.1.1
date 2012.02.29.20.12.49; author root; state Exp;
branches;
+next 1.1.1.2;
+
+1.1.1.2
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
next ;
@
-1.1
+1.2
log
@dispatch-conf update.
@
text
@# dyngroup.schema -- Dynamic Group schema
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/dyngroup.ldif,v 1.1.2.3 2011/01/04 23:50:51 kurt Exp $
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.1
+log
+@dispatch-conf update.
+@
+text
+@d2 1
+a2 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/dyngroup.ldif,v 1.1.2.3 2011/01/04 23:50:51 kurt Exp $
+@
+
+
1.1.1.1
log
@dispatch-conf update.
a2 1
# $OpenLDAP$
@
+
+
+1.1.1.2
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
@# dyngroup.schema -- Dynamic Group schema
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/dyngroup.schema,v 1.6.2.7 2011/01/04 23:50:51 kurt Exp $
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d2 1
+a2 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/dyngroup.schema,v 1.6.2.7 2011/01/04 23:50:51 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a2 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.23; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
@# InetOrgPerson (RFC2798)
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/inetorgperson.ldif,v 1.1.2.6 2011/01/04 23:50:52 kurt Exp $
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d2 1
+a2 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/inetorgperson.ldif,v 1.1.2.6 2011/01/04 23:50:52 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a2 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
@# inetorgperson.schema -- InetOrgPerson (RFC2798)
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/inetorgperson.schema,v 1.18.2.6 2011/01/04 23:50:52 kurt Exp $
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d2 1
+a2 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/inetorgperson.schema,v 1.18.2.6 2011/01/04 23:50:52 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a2 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
--- /dev/null
+head 1.1;
+access;
+symbols;
+locks; strict;
+comment @# @;
+
+
+1.1
+date 2012.03.27.19.12.24; author root; state Exp;
+branches
+ 1.1.1.1;
+next ;
+
+1.1.1.1
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
+next ;
+
+
+desc
+@Archived config file.
+@
+
+
+1.1
+log
+@dispatch-conf update.
+@
+text
+@# java.ldif -- Java Object Schema
+# $OpenLDAP$
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
+##
+## Copyright 1998-2011 The OpenLDAP Foundation.
+## All rights reserved.
+##
+## Redistribution and use in source and binary forms, with or without
+## modification, are permitted only as authorized by the OpenLDAP
+## Public License.
+##
+## A copy of this license is available in the file LICENSE in the
+## top-level directory of the distribution or, alternatively, at
+## <http://www.OpenLDAP.org/license.html>.
+#
+# Java Object Schema (defined in RFC 2713)
+# depends upon core.ldif
+#
+# This file was automatically generated from java.schema; see that file
+# for complete references.
+#
+dn: cn=java,cn=schema,cn=config
+objectClass: olcSchemaConfig
+cn: java
+olcAttributeTypes: {0}( 1.3.6.1.4.1.42.2.27.4.1.6 NAME 'javaClassName' DESC 'F
+ ully qualified name of distinguished Java class or interface' EQUALITY caseEx
+ actMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE )
+olcAttributeTypes: {1}( 1.3.6.1.4.1.42.2.27.4.1.7 NAME 'javaCodebase' DESC 'UR
+ L(s) specifying the location of class definition' EQUALITY caseExactIA5Match
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
+olcAttributeTypes: {2}( 1.3.6.1.4.1.42.2.27.4.1.13 NAME 'javaClassNames' DESC
+ 'Fully qualified Java class or interface name' EQUALITY caseExactMatch SYNTAX
+ 1.3.6.1.4.1.1466.115.121.1.15 )
+olcAttributeTypes: {3}( 1.3.6.1.4.1.42.2.27.4.1.8 NAME 'javaSerializedData' DE
+ SC 'Serialized form of a Java object' SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SI
+ NGLE-VALUE )
+olcAttributeTypes: {4}( 1.3.6.1.4.1.42.2.27.4.1.10 NAME 'javaFactory' DESC 'Fu
+ lly qualified Java class name of a JNDI object factory' EQUALITY caseExactMat
+ ch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE )
+olcAttributeTypes: {5}( 1.3.6.1.4.1.42.2.27.4.1.11 NAME 'javaReferenceAddress'
+ DESC 'Addresses associated with a JNDI Reference' EQUALITY caseExactMatch SY
+ NTAX 1.3.6.1.4.1.1466.115.121.1.15 )
+olcAttributeTypes: {6}( 1.3.6.1.4.1.42.2.27.4.1.12 NAME 'javaDoc' DESC 'The Ja
+ va documentation for the class' EQUALITY caseExactIA5Match SYNTAX 1.3.6.1.4.1
+ .1466.115.121.1.26 )
+olcObjectClasses: {0}( 1.3.6.1.4.1.42.2.27.4.2.1 NAME 'javaContainer' DESC 'Co
+ ntainer for a Java object' SUP top STRUCTURAL MUST cn )
+olcObjectClasses: {1}( 1.3.6.1.4.1.42.2.27.4.2.4 NAME 'javaObject' DESC 'Java
+ object representation' SUP top ABSTRACT MUST javaClassName MAY ( javaClassNam
+ es $ javaCodebase $ javaDoc $ description ) )
+olcObjectClasses: {2}( 1.3.6.1.4.1.42.2.27.4.2.5 NAME 'javaSerializedObject' D
+ ESC 'Java serialized object' SUP javaObject AUXILIARY MUST javaSerializedData
+ )
+olcObjectClasses: {3}( 1.3.6.1.4.1.42.2.27.4.2.8 NAME 'javaMarshalledObject' D
+ ESC 'Java marshalled object' SUP javaObject AUXILIARY MUST javaSerializedData
+ )
+olcObjectClasses: {4}( 1.3.6.1.4.1.42.2.27.4.2.7 NAME 'javaNamingReference' DE
+ SC 'JNDI reference' SUP javaObject AUXILIARY MAY ( javaReferenceAddress $ jav
+ aFactory ) )
+@
+
+
+1.1.1.1
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
@# java.schema -- Java Object Schema
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/java.schema,v 1.7.2.6 2011/01/04 23:50:52 kurt Exp $
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d2 1
+a2 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/java.schema,v 1.7.2.6 2011/01/04 23:50:52 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a2 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
--- /dev/null
+head 1.1;
+access;
+symbols;
+locks; strict;
+comment @# @;
+
+
+1.1
+date 2012.03.27.19.12.24; author root; state Exp;
+branches
+ 1.1.1.1;
+next ;
+
+1.1.1.1
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
+next ;
+
+
+desc
+@Archived config file.
+@
+
+
+1.1
+log
+@dispatch-conf update.
+@
+text
+@# misc.ldif -- assorted schema definitions
+# $OpenLDAP$
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
+##
+## Copyright 1998-2011 The OpenLDAP Foundation.
+## All rights reserved.
+##
+## Redistribution and use in source and binary forms, with or without
+## modification, are permitted only as authorized by the OpenLDAP
+## Public License.
+##
+## A copy of this license is available in the file LICENSE in the
+## top-level directory of the distribution or, alternatively, at
+## <http://www.OpenLDAP.org/license.html>.
+#
+# Assorted definitions from several sources, including
+# ''works in progress''. Contents of this file are
+# subject to change (including deletion) without notice.
+#
+# Not recommended for production use!
+# Use with extreme caution!
+#
+# This file was automatically generated from misc.schema; see that file
+# for complete references.
+#
+dn: cn=misc,cn=schema,cn=config
+objectClass: olcSchemaConfig
+cn: misc
+olcAttributeTypes: {0}( 2.16.840.1.113730.3.1.13 NAME 'mailLocalAddress' DESC
+ 'RFC822 email address of this recipient' EQUALITY caseIgnoreIA5Match SYNTAX 1
+ .3.6.1.4.1.1466.115.121.1.26{256} )
+olcAttributeTypes: {1}( 2.16.840.1.113730.3.1.18 NAME 'mailHost' DESC 'FQDN of
+ the SMTP/MTA of this recipient' EQUALITY caseIgnoreIA5Match SYNTAX 1.3.6.1.4
+ .1.1466.115.121.1.26{256} SINGLE-VALUE )
+olcAttributeTypes: {2}( 2.16.840.1.113730.3.1.47 NAME 'mailRoutingAddress' DES
+ C 'RFC822 routing address of this recipient' EQUALITY caseIgnoreIA5Match SYNT
+ AX 1.3.6.1.4.1.1466.115.121.1.26{256} SINGLE-VALUE )
+olcAttributeTypes: {3}( 1.3.6.1.4.1.42.2.27.2.1.15 NAME 'rfc822MailMember' DES
+ C 'rfc822 mail address of group member(s)' EQUALITY caseIgnoreIA5Match SYNTAX
+ 1.3.6.1.4.1.1466.115.121.1.26 )
+olcObjectClasses: {0}( 2.16.840.1.113730.3.2.147 NAME 'inetLocalMailRecipient'
+ DESC 'Internet local mail recipient' SUP top AUXILIARY MAY ( mailLocalAddres
+ s $ mailHost $ mailRoutingAddress ) )
+olcObjectClasses: {1}( 1.3.6.1.4.1.42.2.27.1.2.5 NAME 'nisMailAlias' DESC 'NIS
+ mail alias' SUP top STRUCTURAL MUST cn MAY rfc822MailMember )
+@
+
+
+1.1.1.1
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
@# misc.schema -- assorted schema definitions
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/misc.schema,v 1.30.2.6 2011/01/04 23:50:52 kurt Exp $
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d2 1
+a2 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/misc.schema,v 1.30.2.6 2011/01/04 23:50:52 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a2 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
@# NIS (RFC2307)
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/nis.ldif,v 1.1.2.6 2011/01/04 23:50:52 kurt Exp $
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d2 1
+a2 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/nis.ldif,v 1.1.2.6 2011/01/04 23:50:52 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a2 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
-@# $OpenLDAP: pkg/ldap/servers/slapd/schema/nis.schema,v 1.15.2.6 2011/01/04 23:50:52 kurt Exp $
+@# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d1 1
+a1 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/nis.schema,v 1.15.2.6 2011/01/04 23:50:52 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a1 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d4 1
+a4 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
-@# $OpenLDAP: pkg/ldap/servers/slapd/schema/openldap.ldif,v 1.2.2.7 2011/01/04 23:50:52 kurt Exp $
+@# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d1 1
+a1 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/openldap.ldif,v 1.2.2.7 2011/01/04 23:50:52 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a1 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d4 1
+a4 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
-@# $OpenLDAP: pkg/ldap/servers/slapd/schema/openldap.schema,v 1.24.2.7 2011/01/04 23:50:52 kurt Exp $
+@# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d1 1
+a1 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/openldap.schema,v 1.24.2.7 2011/01/04 23:50:52 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a1 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d4 1
+a4 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
--- /dev/null
+head 1.1;
+access;
+symbols;
+locks; strict;
+comment @# @;
+
+
+1.1
+date 2012.03.27.19.12.24; author root; state Exp;
+branches
+ 1.1.1.1;
+next ;
+
+1.1.1.1
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
+next ;
+
+
+desc
+@Archived config file.
+@
+
+
+1.1
+log
+@dispatch-conf update.
+@
+text
+@# OpenLDAP X.509 PMI schema
+# $OpenLDAP$
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
+##
+## Copyright 1998-2011 The OpenLDAP Foundation.
+## All rights reserved.
+##
+## Redistribution and use in source and binary forms, with or without
+## modification, are permitted only as authorized by the OpenLDAP
+## Public License.
+##
+## A copy of this license is available in the file LICENSE in the
+## top-level directory of the distribution or, alternatively, at
+## <http://www.OpenLDAP.org/license.html>.
+#
+## Portions Copyright (C) The Internet Society (1997-2006).
+## All Rights Reserved.
+#
+# Includes LDAPv3 schema items from:
+# ITU X.509 (08/2005)
+#
+# This file was automatically generated from pmi.schema; see that file
+# for complete references.
+#
+dn: cn=pmi,cn=schema,cn=config
+objectClass: olcSchemaConfig
+cn: pmi
+olcObjectIdentifier: {0}id-oc-pmiUser 2.5.6.24
+olcObjectIdentifier: {1}id-oc-pmiAA 2.5.6.25
+olcObjectIdentifier: {2}id-oc-pmiSOA 2.5.6.26
+olcObjectIdentifier: {3}id-oc-attCertCRLDistributionPts 2.5.6.27
+olcObjectIdentifier: {4}id-oc-privilegePolicy 2.5.6.32
+olcObjectIdentifier: {5}id-oc-pmiDelegationPath 2.5.6.33
+olcObjectIdentifier: {6}id-oc-protectedPrivilegePolicy 2.5.6.34
+olcObjectIdentifier: {7}id-at-attributeCertificate 2.5.4.58
+olcObjectIdentifier: {8}id-at-attributeCertificateRevocationList 2.5.4.59
+olcObjectIdentifier: {9}id-at-aACertificate 2.5.4.61
+olcObjectIdentifier: {10}id-at-attributeDescriptorCertificate 2.5.4.62
+olcObjectIdentifier: {11}id-at-attributeAuthorityRevocationList 2.5.4.63
+olcObjectIdentifier: {12}id-at-privPolicy 2.5.4.71
+olcObjectIdentifier: {13}id-at-role 2.5.4.72
+olcObjectIdentifier: {14}id-at-delegationPath 2.5.4.73
+olcObjectIdentifier: {15}id-at-protPrivPolicy 2.5.4.74
+olcObjectIdentifier: {16}id-at-xMLPrivilegeInfo 2.5.4.75
+olcObjectIdentifier: {17}id-at-xMLPprotPrivPolicy 2.5.4.76
+olcObjectIdentifier: {18}id-mr 2.5.13
+olcObjectIdentifier: {19}id-mr-attributeCertificateMatch id-mr:42
+olcObjectIdentifier: {20}id-mr-attributeCertificateExactMatch id-mr:45
+olcObjectIdentifier: {21}id-mr-holderIssuerMatch id-mr:46
+olcObjectIdentifier: {22}id-mr-authAttIdMatch id-mr:53
+olcObjectIdentifier: {23}id-mr-roleSpecCertIdMatch id-mr:54
+olcObjectIdentifier: {24}id-mr-basicAttConstraintsMatch id-mr:55
+olcObjectIdentifier: {25}id-mr-delegatedNameConstraintsMatch id-mr:56
+olcObjectIdentifier: {26}id-mr-timeSpecMatch id-mr:57
+olcObjectIdentifier: {27}id-mr-attDescriptorMatch id-mr:58
+olcObjectIdentifier: {28}id-mr-acceptableCertPoliciesMatch id-mr:59
+olcObjectIdentifier: {29}id-mr-delegationPathMatch id-mr:61
+olcObjectIdentifier: {30}id-mr-sOAIdentifierMatch id-mr:66
+olcObjectIdentifier: {31}id-mr-indirectIssuerMatch id-mr:67
+olcObjectIdentifier: {32}AttributeCertificate 1.3.6.1.4.1.4203.666.11.10.2.1
+olcObjectIdentifier: {33}CertificateList 1.3.6.1.4.1.1466.115.121.1.9
+olcObjectIdentifier: {34}AttCertPath 1.3.6.1.4.1.4203.666.11.10.2.4
+olcObjectIdentifier: {35}PolicySyntax 1.3.6.1.4.1.4203.666.11.10.2.5
+olcObjectIdentifier: {36}RoleSyntax 1.3.6.1.4.1.4203.666.11.10.2.6
+olcLdapSyntaxes: {0}( 1.3.6.1.4.1.4203.666.11.10.2.4 DESC 'X.509 PMI attribute
+ cartificate path: SEQUENCE OF AttributeCertificate' X-SUBST '1.3.6.1.4.1.146
+ 6.115.121.1.15' )
+olcLdapSyntaxes: {1}( 1.3.6.1.4.1.4203.666.11.10.2.5 DESC 'X.509 PMI policy sy
+ ntax' X-SUBST '1.3.6.1.4.1.1466.115.121.1.15' )
+olcLdapSyntaxes: {2}( 1.3.6.1.4.1.4203.666.11.10.2.6 DESC 'X.509 PMI role synt
+ ax' X-SUBST '1.3.6.1.4.1.1466.115.121.1.15' )
+olcAttributeTypes: {0}( id-at-role NAME 'role' DESC 'X.509 Role attribute, use
+ ;binary' SYNTAX RoleSyntax )
+olcAttributeTypes: {1}( id-at-xMLPrivilegeInfo NAME 'xmlPrivilegeInfo' DESC 'X
+ .509 XML privilege information attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.1
+ 5 )
+olcAttributeTypes: {2}( id-at-attributeCertificate NAME 'attributeCertificateA
+ ttribute' DESC 'X.509 Attribute certificate attribute, use ;binary' EQUALITY
+ attributeCertificateExactMatch SYNTAX AttributeCertificate )
+olcAttributeTypes: {3}( id-at-aACertificate NAME 'aACertificate' DESC 'X.509 A
+ A certificate attribute, use ;binary' EQUALITY attributeCertificateExactMatch
+ SYNTAX AttributeCertificate )
+olcAttributeTypes: {4}( id-at-attributeDescriptorCertificate NAME 'attributeDe
+ scriptorCertificate' DESC 'X.509 Attribute descriptor certificate attribute,
+ use ;binary' EQUALITY attributeCertificateExactMatch SYNTAX AttributeCertific
+ ate )
+olcAttributeTypes: {5}( id-at-attributeCertificateRevocationList NAME 'attribu
+ teCertificateRevocationList' DESC 'X.509 Attribute certificate revocation lis
+ t attribute, use ;binary' SYNTAX CertificateList X-EQUALITY 'certificateListE
+ xactMatch, not implemented yet' )
+olcAttributeTypes: {6}( id-at-attributeAuthorityRevocationList NAME 'attribute
+ AuthorityRevocationList' DESC 'X.509 AA certificate revocation list attribute
+ , use ;binary' SYNTAX CertificateList X-EQUALITY 'certificateListExactMatch,
+ not implemented yet' )
+olcAttributeTypes: {7}( id-at-delegationPath NAME 'delegationPath' DESC 'X.509
+ Delegation path attribute, use ;binary' SYNTAX AttCertPath )
+olcAttributeTypes: {8}( id-at-privPolicy NAME 'privPolicy' DESC 'X.509 Privile
+ ge policy attribute, use ;binary' SYNTAX PolicySyntax )
+olcAttributeTypes: {9}( id-at-protPrivPolicy NAME 'protPrivPolicy' DESC 'X.509
+ Protected privilege policy attribute, use ;binary' EQUALITY attributeCertifi
+ cateExactMatch SYNTAX AttributeCertificate )
+olcAttributeTypes: {10}( id-at-xMLPprotPrivPolicy NAME 'xmlPrivPolicy' DESC 'X
+ .509 XML Protected privilege policy attribute' SYNTAX 1.3.6.1.4.1.1466.115.12
+ 1.1.15 )
+olcObjectClasses: {0}( id-oc-pmiUser NAME 'pmiUser' DESC 'X.509 PMI user objec
+ t class' SUP top AUXILIARY MAY attributeCertificateAttribute )
+olcObjectClasses: {1}( id-oc-pmiAA NAME 'pmiAA' DESC 'X.509 PMI AA object clas
+ s' SUP top AUXILIARY MAY ( aACertificate $ attributeCertificateRevocationList
+ $ attributeAuthorityRevocationList ) )
+olcObjectClasses: {2}( id-oc-pmiSOA NAME 'pmiSOA' DESC 'X.509 PMI SOA object c
+ lass' SUP top AUXILIARY MAY ( attributeCertificateRevocationList $ attributeA
+ uthorityRevocationList $ attributeDescriptorCertificate ) )
+olcObjectClasses: {3}( id-oc-attCertCRLDistributionPts NAME 'attCertCRLDistrib
+ utionPt' DESC 'X.509 Attribute certificate CRL distribution point object clas
+ s' SUP top AUXILIARY MAY ( attributeCertificateRevocationList $ attributeAuth
+ orityRevocationList ) )
+olcObjectClasses: {4}( id-oc-pmiDelegationPath NAME 'pmiDelegationPath' DESC '
+ X.509 PMI delegation path' SUP top AUXILIARY MAY delegationPath )
+olcObjectClasses: {5}( id-oc-privilegePolicy NAME 'privilegePolicy' DESC 'X.50
+ 9 Privilege policy object class' SUP top AUXILIARY MAY privPolicy )
+olcObjectClasses: {6}( id-oc-protectedPrivilegePolicy NAME 'protectedPrivilege
+ Policy' DESC 'X.509 Protected privilege policy object class' SUP top AUXILIAR
+ Y MAY protPrivPolicy )
+@
+
+
+1.1.1.1
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
@# OpenLDAP X.509 PMI schema
-# $OpenLDAP: pkg/ldap/servers/slapd/schema/pmi.schema,v 1.1.2.4 2011/01/04 23:50:52 kurt Exp $
+# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 1998-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d2 1
+a2 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/pmi.schema,v 1.1.2.4 2011/01/04 23:50:52 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a2 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d5 1
+a5 1
+## Copyright 1998-2012 The OpenLDAP Foundation.
+@
--- /dev/null
+head 1.1;
+access;
+symbols;
+locks; strict;
+comment @# @;
+
+
+1.1
+date 2012.03.27.19.12.24; author root; state Exp;
+branches
+ 1.1.1.1;
+next ;
+
+1.1.1.1
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
+next ;
+
+
+desc
+@Archived config file.
+@
+
+
+1.1
+log
+@dispatch-conf update.
+@
+text
+@# $OpenLDAP$
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
+##
+## Copyright 2004-2011 The OpenLDAP Foundation.
+## All rights reserved.
+##
+## Redistribution and use in source and binary forms, with or without
+## modification, are permitted only as authorized by the OpenLDAP
+## Public License.
+##
+## A copy of this license is available in the file LICENSE in the
+## top-level directory of the distribution or, alternatively, at
+## <http://www.OpenLDAP.org/license.html>.
+#
+## Portions Copyright (C) The Internet Society (2004).
+## Please see full copyright statement below.
+#
+# Definitions from Draft behera-ldap-password-policy-07 (a work in progress)
+# Password Policy for LDAP Directories
+# With extensions from Hewlett-Packard:
+# pwdCheckModule etc.
+#
+# Contents of this file are subject to change (including deletion)
+# without notice.
+#
+# Not recommended for production use!
+# Use with extreme caution!
+#
+# This file was automatically generated from ppolicy.schema; see that file
+# for complete references.
+#
+dn: cn=ppolicy,cn=schema,cn=config
+objectClass: olcSchemaConfig
+cn: ppolicy
+olcAttributeTypes: {0}( 1.3.6.1.4.1.42.2.27.8.1.1 NAME 'pwdAttribute' EQUALITY
+ objectIdentifierMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )
+olcAttributeTypes: {1}( 1.3.6.1.4.1.42.2.27.8.1.2 NAME 'pwdMinAge' EQUALITY in
+ tegerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
+olcAttributeTypes: {2}( 1.3.6.1.4.1.42.2.27.8.1.3 NAME 'pwdMaxAge' EQUALITY in
+ tegerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
+olcAttributeTypes: {3}( 1.3.6.1.4.1.42.2.27.8.1.4 NAME 'pwdInHistory' EQUALITY
+ integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
+olcAttributeTypes: {4}( 1.3.6.1.4.1.42.2.27.8.1.5 NAME 'pwdCheckQuality' EQUAL
+ ITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
+olcAttributeTypes: {5}( 1.3.6.1.4.1.42.2.27.8.1.6 NAME 'pwdMinLength' EQUALITY
+ integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
+olcAttributeTypes: {6}( 1.3.6.1.4.1.42.2.27.8.1.7 NAME 'pwdExpireWarning' EQUA
+ LITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
+olcAttributeTypes: {7}( 1.3.6.1.4.1.42.2.27.8.1.8 NAME 'pwdGraceAuthNLimit' EQ
+ UALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
+olcAttributeTypes: {8}( 1.3.6.1.4.1.42.2.27.8.1.9 NAME 'pwdLockout' EQUALITY b
+ ooleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE )
+olcAttributeTypes: {9}( 1.3.6.1.4.1.42.2.27.8.1.10 NAME 'pwdLockoutDuration' E
+ QUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
+olcAttributeTypes: {10}( 1.3.6.1.4.1.42.2.27.8.1.11 NAME 'pwdMaxFailure' EQUAL
+ ITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
+olcAttributeTypes: {11}( 1.3.6.1.4.1.42.2.27.8.1.12 NAME 'pwdFailureCountInter
+ val' EQUALITY integerMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE
+ )
+olcAttributeTypes: {12}( 1.3.6.1.4.1.42.2.27.8.1.13 NAME 'pwdMustChange' EQUAL
+ ITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE )
+olcAttributeTypes: {13}( 1.3.6.1.4.1.42.2.27.8.1.14 NAME 'pwdAllowUserChange'
+ EQUALITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE )
+olcAttributeTypes: {14}( 1.3.6.1.4.1.42.2.27.8.1.15 NAME 'pwdSafeModify' EQUAL
+ ITY booleanMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE )
+olcAttributeTypes: {15}( 1.3.6.1.4.1.4754.1.99.1 NAME 'pwdCheckModule' DESC 'L
+ oadable module that instantiates "check_password() function' EQUALITY caseExa
+ ctIA5Match SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE )
+olcObjectClasses: {0}( 1.3.6.1.4.1.4754.2.99.1 NAME 'pwdPolicyChecker' SUP top
+ AUXILIARY MAY pwdCheckModule )
+olcObjectClasses: {1}( 1.3.6.1.4.1.42.2.27.8.2.1 NAME 'pwdPolicy' SUP top AUXI
+ LIARY MUST pwdAttribute MAY ( pwdMinAge $ pwdMaxAge $ pwdInHistory $ pwdCheck
+ Quality $ pwdMinLength $ pwdExpireWarning $ pwdGraceAuthNLimit $ pwdLockout $
+ pwdLockoutDuration $ pwdMaxFailure $ pwdFailureCountInterval $ pwdMustChange
+ $ pwdAllowUserChange $ pwdSafeModify ) )
+@
+
+
+1.1.1.1
+log
+@dispatch-conf update.
+@
+text
+@d4 1
+a4 1
+## Copyright 2004-2012 The OpenLDAP Foundation.
+@
-head 1.3;
+head 1.4;
access;
symbols;
locks; strict;
expand @o@;
+1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
+next 1.3;
+
1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
1.1.1.3
date 2012.02.29.20.12.49; author root; state Exp;
branches;
+next 1.1.1.4;
+
+1.1.1.4
+date 2012.03.27.19.12.24; author root; state Exp;
+branches;
next ;
@
-1.3
+1.4
log
@dispatch-conf update.
@
text
-@# $OpenLDAP: pkg/ldap/servers/slapd/schema/ppolicy.schema,v 1.7.2.6 2011/01/04 23:50:52 kurt Exp $
+@# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
## Copyright 2004-2011 The OpenLDAP Foundation.
@
+1.3
+log
+@dispatch-conf update.
+@
+text
+@d1 1
+a1 1
+# $OpenLDAP: pkg/ldap/servers/slapd/schema/ppolicy.schema,v 1.7.2.6 2011/01/04 23:50:52 kurt Exp $
+@
+
+
1.2
log
@dispatch-conf update.
a1 1
# $OpenLDAP$
@
+
+
+1.1.1.4
+log
+@dispatch-conf update.
+@
+text
+@d4 1
+a4 1
+## Copyright 2004-2012 The OpenLDAP Foundation.
+@
--- /dev/null
+head 1.1;
+access;
+symbols;
+locks; strict;
+comment @# @;
+
+
+1.1
+date 2012.03.27.19.12.24; author root; state Exp;
+branches
+ 1.1.1.1;
+next ;
+
+1.1.1.1
+date 2012.03.27.19.13.13; author root; state Exp;
+branches;
+next ;
+
+
+desc
+@Archived config file.
+@
+
+
+1.1
+log
+@dispatch-conf update.
+@
+text
+@#
+# The PAM configuration file for the at daemon
+#
+
+auth required pam_env.so
+auth include system-auth
+account include system-auth
+session required pam_limits.so
+session include system-auth
+
+@
+
+
+1.1.1.1
+log
+@dispatch-conf update.
+@
+text
+@d6 4
+a9 3
+auth include system-services
+account include system-services
+session include system-services
+@
--- /dev/null
+#!/bin/sh
+
+if [ -x /usr/sbin/logwatch.pl ] ; then
+ exec /usr/sbin/logwatch.pl --output mail
+fi
--- /dev/null
+##########################################################################
+# $Id: maillog.conf,v 1.14 2007/10/01 16:55:18 mike Exp $
+##########################################################################
+
+########################################################
+# This was written and is maintained by:
+# Kenneth Porter <shiva@well.com>
+#
+# Please send all comments, suggestions, bug reports,
+# etc, to shiva@well.com.
+########################################################
+
+# What actual file? Defaults to LogPath if not absolute path....
+LogFile = maillog
+LogFile = syslog
+LogFile = mail.log
+LogFile = mail.log.0
+LogFile = syslog.d/mail
+
+
+# If the archives are searched, here is one or more line
+# (optionally containing wildcards) that tell where they are...
+#If you use a "-" in naming add that as well -mgt
+Archive = maillog.*
+Archive = syslog.*
+Archive = archiv/maillog.*
+Archive = mail.log.*.gz
+Archive = maillog-*
+Archive = syslog-*
+Archive = archiv/maillog-*
+Archive = mail.log-*.gz
+Archive = syslog.d/.old/*/mail*
+
+
+# Expand the repeats (actually just removes them now)
+*ExpandRepeats
+
+# Keep only the lines in the proper date range...
+*ApplyStdDate
+
+# vi: shiftwidth=3 tabstop=3 et
--- /dev/null
+##########################################################################
+# $Id: maillog.conf,v 1.14 2007/10/01 16:55:18 mike Exp $
+##########################################################################
+
+########################################################
+# This was written and is maintained by:
+# Kenneth Porter <shiva@well.com>
+#
+# Please send all comments, suggestions, bug reports,
+# etc, to shiva@well.com.
+########################################################
+
+# What actual file? Defaults to LogPath if not absolute path....
+LogFile = /var/log/named/named.log
+
+
+# If the archives are searched, here is one or more line
+# (optionally containing wildcards) that tell where they are...
+#If you use a "-" in naming add that as well -mgt
+Archive = /var/log/named/*/named.log.*
+
+
+# Expand the repeats (actually just removes them now)
+*ExpandRepeats
+
+# Keep only the lines in the proper date range...
+*ApplyStdDate
+
+# vi: shiftwidth=3 tabstop=3 et
--- /dev/null
+###########################################################################
+# $Id: named.conf,v 1.10 2005/02/24 17:05:20 kirk Exp $
+###########################################################################
+
+# You can put comments anywhere you want to. They are effective for the
+# rest of the line.
+
+# this is in the format of <name> = <value>. Whitespace at the beginning
+# and end of the lines is removed. Whitespace before and after the = sign
+# is removed. Everything is case *insensitive*.
+
+# Yes = True = On = 1
+# No = False = Off = 0
+
+Title = "Named"
+
+# Which logfile group...
+LogFile = named
+
+# Whether or not to lookup the IPs into hostnames...
+# Setting this to Yes will significantly increase runtime
+$named_ip_lookup = No
+
+# Only give lines pertaining to the named service...
+*OnlyService = named
+*RemoveHeaders
+
+########################################################
+# This was written and is maintained by:
+# Kirk Bauer <kirk@kaybee.org>
+#
+# Please send all comments, suggestions, bug reports,
+# etc, to kirk@kaybee.org.
+########################################################
+
+# vi: shiftwidth=3 tabstop=3 et
This notice applies to all files in this directory.
-Copyright 1998-2011 The OpenLDAP Foundation, Redwood City, California, USA
+Copyright 1998-2012 The OpenLDAP Foundation, Redwood City, California, USA
All rights reserved.
Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 1998-2011 The OpenLDAP Foundation.
+## Copyright 1998-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 2004-2011 The OpenLDAP Foundation.
+## Copyright 2004-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
-## Copyright 2004-2011 The OpenLDAP Foundation.
+## Copyright 2004-2012 The OpenLDAP Foundation.
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
#
auth required pam_env.so
-auth include system-auth
-account include system-auth
-session required pam_limits.so
-session include system-auth
+auth include system-services
+account include system-services
+session include system-services
# Pango Modules file
# Automatically generated file, do not edit
#
-# ModulesPath = /usr/lib64/pango/1.6.0/modules
-#
+/usr/lib64/pango/1.6.0/modules/pango-arabic-fc.so ArabicScriptEngineFc PangoEngineShape PangoRenderFc arabic:* nko:*
+/usr/lib64/pango/1.6.0/modules/pango-arabic-lang.so ArabicScriptEngineLang PangoEngineLang PangoRenderNone arabic:*
+/usr/lib64/pango/1.6.0/modules/pango-basic-fc.so BasicScriptEngineFc PangoEngineShape PangoRenderFc latin:* cyrillic:* greek:* armenian:* georgian:* runic:* ogham:* bopomofo:* cherokee:* coptic:* deseret:* ethiopic:* gothic:* han:* hiragana:* katakana:* old-italic:* canadian-aboriginal:* yi:* braille:* cypriot:* limbu:* osmanya:* shavian:* linear-b:* ugaritic:* glagolitic:* cuneiform:* phoenician:* common:
+/usr/lib64/pango/1.6.0/modules/pango-basic-x.so BasicScriptEngineX PangoEngineShape PangoRenderX common:
+/usr/lib64/pango/1.6.0/modules/pango-hangul-fc.so HangulScriptEngineFc PangoEngineShape PangoRenderFc hangul:*
+/usr/lib64/pango/1.6.0/modules/pango-hebrew-fc.so HebrewScriptEngineFc PangoEngineShape PangoRenderFc hebrew:*
+/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so devaScriptEngineFc PangoEngineShape PangoRenderFc devanagari:*
+/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so bengScriptEngineFc PangoEngineShape PangoRenderFc bengali:*
+/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so guruScriptEngineFc PangoEngineShape PangoRenderFc gurmukhi:*
+/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so gujrScriptEngineFc PangoEngineShape PangoRenderFc gujarati:*
+/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so oryaScriptEngineFc PangoEngineShape PangoRenderFc oriya:*
+/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so tamlScriptEngineFc PangoEngineShape PangoRenderFc tamil:*
+/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so teluScriptEngineFc PangoEngineShape PangoRenderFc telugu:*
+/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so kndaScriptEngineFc PangoEngineShape PangoRenderFc kannada:*
+/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so mlymScriptEngineFc PangoEngineShape PangoRenderFc malayalam:*
+/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so sinhScriptEngineFc PangoEngineShape PangoRenderFc sinhala:*
/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so devaIndicScriptEngineLang PangoEngineLang PangoRenderNone devanagari:*
/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so bengIndicScriptEngineLang PangoEngineLang PangoRenderNone bengali:*
/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so guruIndicScriptEngineLang PangoEngineLang PangoRenderNone gurmukhi:*
/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so kndaIndicScriptEngineLang PangoEngineLang PangoRenderNone kannada:*
/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so mlymIndicScriptEngineLang PangoEngineLang PangoRenderNone malayalam:*
/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so sinhIndicScriptEngineLang PangoEngineLang PangoRenderNone sinhala:*
-/usr/lib64/pango/1.6.0/modules/pango-basic-x.so BasicScriptEngineX PangoEngineShape PangoRenderX common:
-/usr/lib64/pango/1.6.0/modules/pango-arabic-lang.so ArabicScriptEngineLang PangoEngineLang PangoRenderNone arabic:*
+/usr/lib64/pango/1.6.0/modules/pango-khmer-fc.so KhmerScriptEngineFc PangoEngineShape PangoRenderFc khmer:*
/usr/lib64/pango/1.6.0/modules/pango-syriac-fc.so SyriacScriptEngineFc PangoEngineShape PangoRenderFc syriac:*
/usr/lib64/pango/1.6.0/modules/pango-thai-fc.so ThaiScriptEngineFc PangoEngineShape PangoRenderFc thai:* lao:*
/usr/lib64/pango/1.6.0/modules/pango-tibetan-fc.so TibetanScriptEngineFc PangoEngineShape PangoRenderFc tibetan:*
-/usr/lib64/pango/1.6.0/modules/pango-khmer-fc.so KhmerScriptEngineFc PangoEngineShape PangoRenderFc khmer:*
-/usr/lib64/pango/1.6.0/modules/pango-hebrew-fc.so HebrewScriptEngineFc PangoEngineShape PangoRenderFc hebrew:*
-/usr/lib64/pango/1.6.0/modules/pango-hangul-fc.so HangulScriptEngineFc PangoEngineShape PangoRenderFc hangul:*
-/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so devaScriptEngineFc PangoEngineShape PangoRenderFc devanagari:*
-/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so bengScriptEngineFc PangoEngineShape PangoRenderFc bengali:*
-/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so guruScriptEngineFc PangoEngineShape PangoRenderFc gurmukhi:*
-/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so gujrScriptEngineFc PangoEngineShape PangoRenderFc gujarati:*
-/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so oryaScriptEngineFc PangoEngineShape PangoRenderFc oriya:*
-/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so tamlScriptEngineFc PangoEngineShape PangoRenderFc tamil:*
-/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so teluScriptEngineFc PangoEngineShape PangoRenderFc telugu:*
-/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so kndaScriptEngineFc PangoEngineShape PangoRenderFc kannada:*
-/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so mlymScriptEngineFc PangoEngineShape PangoRenderFc malayalam:*
-/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so sinhScriptEngineFc PangoEngineShape PangoRenderFc sinhala:*
-/usr/lib64/pango/1.6.0/modules/pango-arabic-fc.so ArabicScriptEngineFc PangoEngineShape PangoRenderFc arabic:* nko:*
-/usr/lib64/pango/1.6.0/modules/pango-basic-fc.so BasicScriptEngineFc PangoEngineShape PangoRenderFc latin:* cyrillic:* greek:* armenian:* georgian:* runic:* ogham:* bopomofo:* cherokee:* coptic:* deseret:* ethiopic:* gothic:* han:* hiragana:* katakana:* old-italic:* canadian-aboriginal:* yi:* braille:* cypriot:* limbu:* osmanya:* shavian:* linear-b:* ugaritic:* glagolitic:* cuneiform:* phoenician:* common:
/this is not an unsolicited mail/ REJECT Body-Spamschutzregel 195
/this email has not been sent to you unsolicited/ REJECT Body-Spamschutzregel 196
/has not been sent unsolicited/ REJECT Body-Spamschutzregel 197
-/(wish|would) to be removed from (our|the)/ REJECT Body-Spamschutzregel 199
+#/(wish|would) to be removed from (our|the)/ REJECT Body-Spamschutzregel 199
/all removes (honored|honoured)/ REJECT Body-Spamschutzregel 200
/To[ ]+remove[ ]+.*@excite.com/ REJECT Body-Spamschutzregel 201
/to[ ]+be[ ]+removed[ ]+.*@excite.com/ REJECT Body-Spamschutzregel 202
--- /dev/null
+# Version 3.69 / 8.6.2011
+#
+# Das Postfix-Buch - Sichere Mailserver mit Linux
+# http://www.postfixbuch.de
+#
+# Heinlein Professional Linux Support GmbH
+# http://www.heinlein-support.de
+#
+# Downloadquelle dieser Datei: http://www.postfixbuch.de/web/service/checks/
+#
+#
+# Verwendung der Filtersammlung auf eigene Gefahr.
+#
+# Es handelt sich dabei um einen tagesaktuellen Auszug der beim
+# ISP "JPBerlin.de" genutzten Filterregeln. Bitte pruefen Sie vor einem
+# Einsatz bei Ihnen ganz genau, ob diese Regeln noch aktuell und sinnvoll
+# sind und ob Sie sie einsetzen moechten!
+#
+#
+# Setzen Sie in /etc/postfix/main.cf einfach
+#
+# body_checks = pcre:/etc/postfix/body_checks oder
+# oder
+# body_checks = regexp:/etc/postfix/body_checks
+#
+# und fuehren Sie "rcpostfix reload" aus.
+#
+# Tipp: pcre ist ein Drittel schneller als regexp!
+#
+#
+
+#
+# Die Nummern hinter dem REJECT tauchen spaeter iM SMTP-Error oder im Log
+# auf, um die Filter-Regel wiederzufinden, die den Block ausgeloest hat.
+# Es kann stattdessen auch einfacher Text benutzt werden.
+#
+
+
+/^Received: from mail pickup service by EXDO01.stricker-marsch.de with Microsoft SMTPSVC.*/ REJECT Mailloopbomb bitte anrufen
+
+#
+#
+# Tagesaktuelle, nur voruebergehende Regelungen:
+# ===============================================
+# [Immer mit Timestamp (!) und ggf. Ticket-Nummer eintragen!]
+#
+
+/alexatrej14913.blogspot.com/ REJECT
+/m-back22.ocn.ad.jp/ REJECT
+/Received: from 83.3.224.146/ REJECT
+/<HTML><HEAD><TITLE>Western Union Alerts./ REJECT
+/http:\/\/www.rocktonchamber.com/ REJECT
+
+#
+#
+# Dauerhaft genutzte Regelungen:
+# ===============================================
+# [Immer mit aufsteiger Nummer sauber eintragen!]
+#
+#
+/ucc.edu.ni/ REJECT Body-Spamschutzregel 1132
+/7figureincome\.php/ REJECT Body-Spamschutzregel 1131
+/Cher Client Verified by Visa/ REJECT Body-Spamschutzregel 1130
+/^From: "Topillen Apotheke" / REJECT Body-Spamschutzregel 1129
+/^Aufgrund mehrerer Phishing Versuche, unsere Visa und Mastercard/ REJECT Body-Spamschutzregel 1128
+/^ Phishing Departament/ REJECT Body-Spamschutzregel 1127
+/We wish to invest between $5Million-$100Million in any viable projects/ REJECT Body-Spamschutzregel 1126
+/God bless you as you get back to me/ REJECT Body-Spamschutzregel 1125
+/www.(b|B)ien(e|E)tremag.com/ REJECT Body-Spamschutzregel 1124
+/Sehr geehrte Sparkasse Card/ REJECT Body-Spamschutzregel 1123
+/zigaretten-discount.info/ REJECT Body-Spamschutzregel 1122
+/zigaretten-discount\[punkt\]info/ REJECT Body-Spamschutzregel 1121
+/Guten Tag Mitglied [0-9]{5}/ REJECT Body-Spamschutzregel 1120
+/elenx.innovacon.com\/.e\/e.php/ REJECT Body-Spamschutzregel 1119
+/www.sniperrs.de\/modules\/Forums\/admin/ REJECT Body-Spamschutzregel 1118
+/boxneufnet.com\/id\/oragne.fr\/Identifiant/ REJECT Body-Spamschutzregel 1117
+/www.colellsa.com\/img\/quienes\/pabo\/paypal-fr/ REJECT Body-Spamschutzregel 1116
+/dekmor.cmu.ac.th\/sticker\/upload\/Logs\/Login\/webscrcmd/ REJECT Body-Spamschutzregel 1115
+/ektoschronou.com/ REJECT Body-Spamschutzregel 1114
+/ulouwaio.com/ REJECT Body-Spamschutzregel 1113
+/logonature.com.nu/ REJECT Body-Spamschutzregel 1112
+/suinlop.com/ REJECT Body-Spamschutzregel 1111
+/soudoorpo.com/ REJECT Body-Spamschutzregel 1110
+/GOOGLE AUSSTATTUNGSFONDS 20.?.? GEWINNER ANMELDEFORMULAR FUER ZAHLUNG/ REJECT Body-Spamschutzregel 1109
+/Anbieter: Privacy GG Limited, 99 Albert Street, Belize City, CA/ REJECT Body-Spamschutzregel 1108
+/^Die Nachricht wurde durch Interads 24 Ltd/ REJECT Body-Spamschutzregel 1107
+/www.sommer-mit-kollegen.de/ REJECT Body-Spamschutzregel 1006
+# Ein Spammer versenden immer Austragungslinks, die auf "/ausa" enden:
+/^www.*\/ausa$/ REJECT Body-Spamschutzregel 1105
+/KlickTel Telefonbuch OEM/ REJECT Body-Spamschutzregel 1104
+/www.klicktel24.org/ REJECT Body-Spamschutzregel 1103
+/Klicken Sie hier, und fühlen Sie sich endlich gut behandelt:/ REJECT Body-Spamschutzregel 1102
+/maryjanemax@yahoo.co.uk/ REJECT Body-Spamschutzregel 1101
+/http.*muqugeh\.cn/ REJECT Body-Spamschutzregel 1100
+/Bei uns bekommen Sie Ihren Kredit schnell, unbürokratisch, diskret und natürlich ohne Bankauskunft./ REJECT Body-Spamschutzregel 1099
+/INTERNATIONAL LOTTERIE PROMOTION SPIELGEMEINSCHAFT/ REJECT Body-Spamschutzregel 1098
+/Leider st=F6ren Sie.=20/ REJECT Body-Spamschutzregel 1097
+/Sie haben dieses Email erhalten, weil Sie im Newsletter von Promohouse Ltd eingetragen sind/ REJECT Body-Spamschutzregel 1096
+/ATTN: Beneficiar/ REJECT Body-Spamschutzregel 1095
+/www.hedonismails.de/ REJECT Body-Spamschutzregel 1094
+/www.globadressen.(com|net|org|info)/ REJECT Body-Spamschutzregel 1093
+/elegalal.nextmail.ru/ REJECT Body-Spamschutzregel 1092
+/http:\/\/www.switzerlandpussy.eu/ REJECT Body-Spamschutzregel 1082
+/Die jungen Girls fliegen nur so auf die langen/ REJECT Body-Spamschutzregel 1081
+/\*\*\*\* Commercial use of this software is prohibited \*\*\*\*/ REJECT Body-Spamschutzregel 1080
+/I finded your email in internet and I decide to ask you for help/ REJECT Body-Spamschutzregel 1079
+/Details und moegliche Schritte zur Entsperrung finden Sie/ REJECT Body-Spamschutzregel 1078
+/^Amount Won:/ REJECT Body-Spamschutzregel 1077
+/AWARD WINNING NOTICE/i REJECT Body-Spamschutzregel 1076
+/mixvarejo.com/ REJECT Body-Spamschutzregel 1075
+/www.global-db.(com|net|org)/ REJECT Body-Spamschutzregel 1074
+/^I am Barrister/ REJECT Body-Spamschutzregel 1073
+/respublica@gaucherepublicaine.org/ REJECT Body-Spamschutzregel 1072
+/NEU - Vi Super Active/ REJECT Body-Spamschutzregel 1071
+/anhaltende Versagensangste und wiederholte peinliche Situationen/ REJECT Body-Spamschutzregel 1070
+/Schulfreunde Vermittlungs Service AG/ REJECT Body-Spamschutzregel 1068
+/Multimedia Telegramm/ REJECT Body-Spamschutzregel 1067
+/http.*\.fdub\.biz/ REJECT Body-Spamschutzregel 1066
+/TanjaGuenther/ REJECT Body-Spamschutzregel 1065
+/www.bestnetz24.de\/letter\/ausgabe.php/ REJECT Body-Spamschutzregel 1064
+/www.db.?adressen.(com|net|org|info)/ REJECT Body-Spamschutzregel 1063
+/thomas@jthomas.es/ REJECT Body-Spamschutzregel 1062
+/Ihre Marketing Agentur Espa/ REJECT Body-Spamschutzregel 1061
+/www.pakandu.com/ REJECT Body-Spamschutzregel 1060
+/Glob.?.?.?(C|K)ontact.?.?.?Team/ REJECT Body-Spamschutzregel 1059
+/www.gc.?datenbaken.(com|net|org|info)/ REJECT Body-Spamschutzregel 1058
+/www.glc-?data.(com|net|org|info)/ REJECT Body-Spamschutzregel 1057
+/Global.?(C|K)ontact/i REJECT Body-Spamschutzregel 1056
+/www.imarketing.com.br.remove/ REJECT Body-Spamschutzregel 1055
+/Bestellen Sie jetzt und vergessen Sie Ihre Enttauschungen/ REJECT Body-Spamschutzregel 1054
+/Online Apotheke - original Qualitaet/ REJECT Body-Spamschutzregel 1053
+/Wir wissen was Frauen wollern/ REJECT Body-Spamschutzregel 1052
+/Viiiiaaaaaagra/ REJECT Body-Spamschutzregel 1051
+/Web: www.eurasianpages. com/ REJECT Body-Spamschutzregel 1050
+/^Firma Global Contact bietet Ihnen/ REJECT Body-Spamschutzregel 1049
+/www.g-adressen.net/ REJECT Body-Spamschutzregel 1048
+/NIEMALS geben Sie Ihre Passw.rter an niemanden NUR und melden Sie sich/ REJECT Body-Spamschutzregel 1047 Haspa-Pishing
+/www.loteria.es/ REJECT Body-Spamschutzregel 1046
+/Girls! Deveelop your sexual reelationship and get even MORE pleasurre!/ REJECT Body-Spamschutzregel 1045
+# Nigeria-Spam / phei 20080209
+/Ich bin bei einer routinen Überprüfung in meiner Bank/ REJECT Body-Spamschutzregel 1044
+/Ich vermute das diese E-Mail eine Überraschung für Sie sein wird/ REJECT Body-Spamschutzregel 1043
+/Ich bin bei einer routinen Überprüfung in meiner Bank / REJECT Body-Spamschutzregel 1042
+# Versendet UBE/UCE unter verbraucher@wichtig.ms
+/^Ein Dienst der IT4YOU AG, Friedrichstrasse 171, Berlin - Mitte als/ REJECT Body-Spamschutzregel 1041
+# Versendet KlickTel UBE/UCE: / phei 20080204
+/^www.cdtophit.org/ REJECT Body-Spamschutzregel 1040
+/http:\/\/www\.doenertreff\.de/ REJECT Body-Spamschutzregel 1039
+/Brauchen Sie noch einen Grund um zu Vegas VIP Casino/ REJECT Body-Spamschutzregel 1038
+/glob-contact.net$/ REJECT Body-Spamschutzregel 1037: glob-contact
+/^Ihr Glob-Kontakt-Team$/ REJECT Body-Spamschutzregel 1036: glob-contact
+/www.feilervision.de/ REJECT Body-Spamschutzregel 1035: feilervision
+/DER INVESTORALARM!/i REJECT Body-Spamschutzregel 1034
+/ES IST EIN UNGLAUBLICHES PROFITPOTENTIAL! VERLIERE DIESE CHANCE NICHT!/i REJECT Body-Spamschutzregel 1033
+/LOTTERY AND GAMING INTERNET MESSAGE CENTRE/ REJECT Body-Spamschutzregel 1033
+/I work very hard every day to be able to buy necessities for my mother/ REJECT Body-Spamschutzregel 1032
+/THE FREELOTTO COMPANY/ REJECT Body-Spamschutzregel 1031
+/BreakingMrktNews/ REJECT Body-Spamschutzregel 1030
+/China Media Crop OTC.BB CHMD/ REJECT Body-Spamschutzregel 1029
+/Weltweit gilt das nummerierte TAN-Verfahren als eines der sicherste/ REJECT Body-Spamschutzregel 1028: Postbank-Pishing
+/^Marion Beckera/ REJECT Body-Spamschutzregel 1027
+/Zwecks abschließende Zustimmung für deine Verhandlung zur/ REJECT Body-Spamschutzregel 1026
+/annullieren deine on-line Übertragung® Dienstleistungen./ REJECT Body-Spamschutzregel 1025
+/www.internetloginuser.info/ REJECT Body-Spamschutzregel 1024
+/realsevgi.com/ REJECT Body-Spamschutzregel 1023
+/Um mich zu entlasten, schicke ich Ihnen das (...) Foto wieder zurück./ REJECT Body-Spamschutzregel 1022
+/Oder Ihr Provider hat die Mail falsch weiter geleitet!?/ REJECT Body-Spamschutzregel 1021
+/Versatel-Attachment-Warning.txt/ REJECT Body-Spamschutzregel 1020
+/www=2Eanaforturizm=2Ecom/ REJECT Body-Spamschutzregel 1019
+/www.anaforturizm.com/ REJECT Body-Spamschutzregel 1018
+/The Jpberlin Support Team/ REJECT Body-Spamschutzregel 1017: Pishing-Mails
+/^jpberlin.de support team\./ REJECT Body-Spamschutzregel 1016: Pishing-Mails
+/You have successfully updated the password of your Jpberlin account/ REJECT Body-Spamschutzregel 1015
+/www.ru4mailnow.com/ REJECT Body-Spamschutzregel 1014
+/EXPLOSIVE PICK FOR OUR MEMBERS/ REJECT Body-Spamschutzregel 1013
+/AntiVirus-System: Kein Virus erkannt/ REJECT Body-Spamschutzregel 1012
+/--- FIFA Fussball-Weltmeisterschaft 2006/ REJECT Body-Spamschutzregel 1011
+/ankara@ankararentacar.de/ REJECT Body-Spamschutzregel 1010
+/Replica Watch Models/ REJECT Body-Spamschutzregel 1009
+/Diadem Travel/ REJECT Body-Spamschutzregel 1008
+/Let the search engine experts compete/ REJECT Body-Spamschutzregel 1007
+/Wenn du sonst noch helfen willst, dann verschick diese Nachricht einfach so oft du willst./ REJECT Body-Spamschutzregel 1006
+/http:\/\/www.ehmig.net\/web_mailer/ REJECT Body-Spamschutzregel 1005
+/http:\/\/real.slon.biz/ REJECT Body-Spamschutzregel 1004
+#/im Zusammenhang mit dem Arbeitslosengeld II/ REJECT Body-Spamschutzregel 1003
+/www.inverz.org/ REJECT Body-Spamschutzregel 1002
+/www.inverz.net/ REJECT Body-Spamschutzregel 1001
+
+
+
+
+
+
+/We recommend you to follow the instructions in order to keep your computer safe./ REJECT Body-Spamschutzregel 1
+/Sieh Dir einfach mal ein Video an und mach dann gleich ein Treffen/ REJECT Body-Spamschutzregel 2
+#/money.*back.*guarant/ REJECT Body-Spamschutzregel 3
+/ CIALIS / REJECT Body-Spamschutzregel 4
+/www.galamed.biz/ REJECT Body-Spamschutzregel 5
+/Starts working in less than 15 min./ REJECT Body-Spamschutzregel 6
+/Adipren720/ REJECT Body-Spamschutzregel 7
+/www.lending-home.com/ REJECT Body-Spamschutzregel 8
+/bigbonus-casino.com/ REJECT Body-Spamschutzregel 9
+/Ich hab die ultimative Seite.*dich, klick doch mal an!/ REJECT Body-Spamschutzregel 10
+/www.server42.com/ REJECT Body-Spamschutzregel 11
+/seo-profits.com/ REJECT Body-Spamschutzregel 12
+/Have a great web site, but no one knows it even/ REJECT Body-Spamschutzregel 13
+/REVERZ.*D-INFO/ REJECT Body-Spamschutzregel 14
+/D-INFO.*REVERZ/ REJECT Body-Spamschutzregel 15
+/greatmaleenhancement.biz/ REJECT Body-Spamschutzregel 16
+/ Xanax / REJECT Body-Spamschutzregel 17
+/Vic(o|0)din/ REJECT Body-Spamschutzregel 18
+/Hydr(o|0)c(o|0)d(o|0)ne/ REJECT Body-Spamschutzregel 19
+/ V1agra / REJECT Body-Spamschutzregel 20
+/warehousefull.com/ REJECT Body-Spamschutzregel 21
+/No doctor visit needed/ REJECT Body-Spamschutzregel 22
+/KLICKTEL KENNT SIE!/ REJECT Body-Spamschutzregel 23
+/^www.femo-online.de/ REJECT Body-Spamschutzregel 24
+/www.land-ua.com/ REJECT Body-Spamschutzregel 25
+/Come to Loqozine/ REJECT Body-Spamschutzregel 26
+/^<center><.*a href=.*img src=.*border.*><\/a><\/center>$/ REJECT Body-Spamschutzregel Check 27
+/www.gord.us/ REJECT Body-Spamschutzregel 28
+/www.reverz.org/ REJECT Body-Spamschutzregel 29
+/wonderfulaction.com/ REJECT Body-Spamschutzregel 30
+/At our pharmacy we offer/ REJECT Body-Spamschutzregel 31
+/Was ist besser als eine fette Ladung Sahne/ REJECT Body-Spamschutzregel 32
+/www.surerxmed.com/ REJECT Body-Spamschutzregel 33
+/www.surerxpills.com/ REJECT Body-Spamschutzregel 34
+/www.stifyems.com/ REJECT Body-Spamschutzregel 35
+/www.diatrus.com/ REJECT Body-Spamschutzregel 36
+/CITYNETT-NEWSLETTER/i REJECT Body-Spamschutzregel 37
+/Note: *Use *password/ REJECT Body-Spamschutzregel 38
+/ will be disabled because of improper using/ REJECT Body-Spamschutzregel 39
+/i.*don.*like.*the*.plaintext/ REJECT Body-Spamschutzregel 40
+/archive *password/ REJECT Body-Spamschutzregel 41
+# /The *Attac..* *team/ REJECT Body-Spamschutzregel 42
+/The *Attac.org *team/ REJECT Body-Spamschutzregel 43
+/The *Attac.de *team/ REJECT Body-Spamschutzregel 44
+/The *Attac-netzwerk.de *team/ REJECT Body-Spamschutzregel 45
+/The *Jpberlin.de *team/ REJECT Body-Spamschutzregel 46
+/Our main mailing server/ REJECT Body-Spamschutzregel 47
+/please update your profile at Billing Center/ REJECT Body-Spamschutzregel 48
+/WSEAS will reply to you/ REJECT Body-Spamschutzregel 49
+/de.componentsengine.net/ REJECT Body-Spamschutzregel 50
+/List von Components Engine eingetragen/ REJECT Body-Spamschutzregel 51
+/The Weekend Pill - Xialis is safer, quicker, lasts longers/ REJECT Body-Spamschutzregel
+/Muzenda der �teste Sohn von Paul Muzenda bin , einem Farmer in Simba/ REJECT Body-Spamschutzregel 53
+/Alles fr die Autorennbahn/ REJECT Body-Spamschutzregel 54
+/Der Wurm nennt sich selbst "ODIN" und konnte sich bist jetzt/ REJECT Body-Spamschutzregel 55
+/NICHT ABHEBEN, SONDERN SOFORT ABWEISEN/ REJECT Body-Spamschutzregel Das ist ein HOAX, eine Falschmeldung. http://www.hoax-info.de 56
+/Es ist ein Virus, welcher alle IMEI und IMSI Daten/ REJECT Body-Spamschutzregel Das ist ein HOAX, eine Falschmeldung. http://www.hoax-info.de 57
+/Der Meister unter den Druckprogrammen: PRINTMASTER 8 GOLD/ REJECT Body-Spamschutzregel 58
+/Stellen Sie sich vor, Sie kaufen ein Produkt oder eine Dienstleistung im/ REJECT Body-Spamschutzregel 59
+/So finden Sie blitzschnell den NAMEN und ADRESS-EINTRAG zu jeder/ REJECT Body-Spamschutzregel 60
+/^TVqQAAMAAAAEAAAA\/\/8AALgAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA$/ REJECT Body-Spamschutzregel Due to recent virus attacks, we temporarily block all Win32 executable files. Please re-send your attachment in a compressed (tar, zip, rar, etc.) form. Your message has NOT been delivered. 61
+/eptember 2003, Cumulative Patch/ REJECT Body-Spamschutzregel 62
+/Ich bin gerade vor einem neuen.*sehr gef�rlichen V.rus gewarnt/ REJECT Body-Spamschutzregel 63
+/^RSLxwtYBDB6FCv8ybBcS0zp9VU5of3K4BXuwyehTM0RI9IrSjVuwP94xfn0wgOjouKWzGXHVk3qg$/ REJECT Body-Spamschutzregel This is a Sobig-Worm! 64
+/exklusives virtuelles Gratis-Rubbellos welches Sie gleich jetzt live mit/ REJECT Body-Spamschutzregel 65
+/Willkommen beim Lucky7Casino/ REJECT Body-Spamschutzregel 66
+/heutzutage spielen Kontakte und Adressdaten eine immer wichtigere Rolle./ REJECT Body-Spamschutzregel 67
+/REVERZ anhand des Datenbestands der D-Info den gesuchten/ REJECT Body-Spamschutzregel 68
+/www.privatseitennetz.com/ REJECT Body-Spamschutzregel 69
+/Outlook and Outlook Express as well as five newly/ REJECT Body-Spamschutzregel 70
+/delog@cip.informatik.uni-wuerzburg.de/ REJECT Body-Spamschutzregel 71
+/credit.hostfree2003.com/ REJECT Body-Spamschutzregel 72
+/www.mediabiz.de.ewmail/ REJECT Body-Spamschutzregel 73
+/Want to boost your sales with Internet/ REJECT Body-Spamschutzregel 74
+/talente.tripod.com.br/ REJECT Body-Spamschutzregel 75
+/schlechte Schufa-Auskunft? Bonit�sprobleme? Dann w�len Sie doch/ REJECT Body-Spamschutzregel 76
+/Diese Liste von Banken, Sparkassen Volks- und Raiffeisenbanken OHNE Schufa-Anschluss finden Sie nicht/ REJECT Body-Spamschutzregel 77
+/Gute Nachrichten. Gerade habe ich die geile \"FickShow\" gefunden:/ REJECT Body-Spamschutzregel 78
+/Gute Nachrichten. Gerade habe ich die geile "FickShow" gefunden:/ REJECT Body-Spamschutzregel 79
+/Create Professional 3D Page-Tuning/ REJECT Body-Spamschutzregel 80
+/SEXKONTAKTE ONLINE/ REJECT Body-Spamschutzregel 81
+/FREE Access to.*adult.*sites/i REJECT Body-Spamschutzregel 82
+/web-supermarket.com/i REJECT Body-Spamschutzregel 83
+/Wir haben ihre Adresse durch eines unserer Partnerunternehmen/ REJECT Body-Spamschutzregel 84
+/Wir haben ihre Adresse.*Partnerunternehmen/i REJECT 85
+/herbal-place.com/ REJECT Body-Spamschutzregel 86
+/GIO DIET-CAPS greifen hier ein durch:/ REJECT Body-Spamschutzregel 87
+/These are Free Cash Grants That you NEVER have to repay/ REJECT Body-Spamschutzregel 88
+/Wir haben unseren Zugang neu upgedadet/ REJECT Body-Spamschutzregel 89
+/Jemand der Dich sehr gut kennt wuerde gern ein Treffen mit Dir/i REJECT Body-Spamschutzregel 90
+/Wenn Du wissen willst wer Dich treffen moechte/i REJECT Body-Spamschutzregel 91
+/You Have Won a FREEE/i REJECT Body-Spamschutzregel 93
+/Click Here For All Your Favorite Pornstars/i REJECT Body-Spamschutzregel 94
+/Year the U.S. Government Gives away BILLIONS in cash grants/i REJECT Body-Spamschutzregel 95
+/Banken ohne Schufa-Auskunft/i REJECT Body-Spamschutzregel 96
+/Probleme mit der Schufa/i REJECT Body-Spamschutzregel 97
+/Laden Sie sich jetzt unsere kostenlose Zugangssoftware runter/ REJECT Body-Spamschutzregel 98
+/Genocide Is A Black-And-White Concept/ REJECT Body-Spamschutzregel 99
+/So viele Wuensche auf einmal/ REJECT Body-Spamschutzregel 100
+/diese Mail ist kein SPAM/i REJECT Body-Spamschutzregel 101
+/Sch.*ne Gr.*e von Lucky Casino/ REJECT Body-Spamschutzregel 102
+/Weil Sie oder ein anderer bei Lucky Casino/i REJECT Body-Spamschutzregel 103
+/Endlich habe ich Deine E-Mail Adresse wieder gefunden, das hat aber/i REJECT Body-Spamschutzregel 104
+/galerie kurt im hirsch/ REJECT Body-Spamschutzregel
+/X-MS_Scanner: Kein Virus erkannt/ REJECT Body-Spamschutzregel Sober-Wurmsignatur
+/Anti_Virus Service/ REJECT Body-Spamschutzregel Sober-Wurmsignatur
+
+#
+# Checks gesammelt aus dem Netz von
+# http://www.hispalinux.es/~data/postfix/
+#
+/.*www\.removeyou\.com.*/ REJECT Body-Spamschutzregel 110
+/.*waterforge\.com.*/ REJECT Body-Spamschutzregel 111
+/.*capitalwave\.com\?subject=Please*/ REJECT Body-Spamschutzregel 112
+/\.virtmundo\.com/ REJECT Body-Spamschutzregel 113
+#/Accept Credit Cards/ REJECT Body-Spamschutzregel 114
+/Nude Celebrities/ REJECT Body-Spamschutzregel 115
+/PRODUCT or SERVICE/i REJECT Body-Spamschutzregel 116
+# /GUARANTEED!/ REJECT Body-Spamschutzregel 117
+/Amateur Girls/ REJECT Body-Spamschutzregel 118
+#/FREE MEMBERSHIP/ REJECT Body-Spamschutzregel 119
+#/bizinfo/ REJECT Body-Spamschutzregel 120
+# block iframe hack 122
+/<iframe src=(3D)?cid:.* height=(3D)?0 width=(3D)?0>/ REJECT Body-Spamschutzregel 123
+# some porn spam phrases 125
+/^Big tit lovers unite\.$|\bcum.?(shoo?ts|slurp)|swallow(ing)? cum\b|\bcum\b.*swallow(ing)?|\b(ass|arse).?fucking|(tight|wet|shaved|young|teen)+ pussy|fuck.?fest|pussy.?juice|\bcum all over|compulsive masturbators agree|explicit hardcore|(nasty|teen).*\bsluts?|You received this mail because our records show that you have asked to receive|(TEEN|ANAL) FUCK SITE|delete this mail( now)? if (you|u) do not want porn|HARDCORE PORN|HORNY FARMGIRLS/ REJECT Body-Spamschutzregel 126
+# some nigerian scam phrases 128
+/^Dear.*(Fellow.*Entrepreneur|Achiever|adult.*webmaster|Internet.*user|Future.*Millionaire)/ REJECT Body-Spamschutzregel 129
+# Wg. Postfiy-Problem auskommentiert?! 130
+#/(Dan Dakova|(TO|Attn *)[;:]? *(The )?President *\/ *C\.?E\.?O\.?|STRICTLY CONFIDENTIAL BUSINESS PROPOSAL|MR(?:\.|=2e)? PATRICE MILLER|President of Crane International Trading Corp(?:\.|=2e)|44-775-281-5820|44-7799289001|44-7092374892|44-7092343325|JOSEPH NWOSU|HARRY KONGOLO|JAMES GIWA|(Umaru|Aminatou) Hamidu|PERSONAL AND STRICTLY CONFIDENTIAL|It is with my profound dignity that I write you this very important|REQUEST FOR URGENT BUSINESS|Marshall Kabba|WITH DUE RESPECT AND HUMIILITY I WRITE YOU|I GOT YOUR CONTACT THROUGH INTERNATIONAL BUSINESS|Your contact address got to me through the Internet|MOHAMMED(?:\.|=2e)?\s?ABACHA|will forward to you a duly signed POWER OF ATTORNEY|Edith M(?:\.|=2e)? Koromah|I must solicit your strictest confidence in this transaction|MRS(?:\.|=2e)? ?M.? ?SESE-SEKO|WIDOW OF LATE PRESIDENT MOBUTU|ATTN:\s*MANAGING DIRECTOR|PERMIT ME TO INFORM YOU OF MY DESIRE OF GOING INTO|MR MOMADOU LEY|I AM BARRISTER ABDULKARIMI A(?:\.|=2e)? BRUME|^\s*ATTN\s*;\s*$|BRAM KHUMALO|(Sandra|Jonas) Savimbi|Million\b.{0,40}\b(?:United States? Dollars?|USD)|BASED ON INFORMATION GATHERED ABOUT YOU|POSITION TO HELP US IN TRANSFER|Government of Nigeria|NIGERIAN? NATIONAL|Nigerian? Government|Bank of Nigeria|Mpeti Kabila|President LAURENT DESIRE KABILA|CLEMENT OSHODI|URGENT & CONFIDENTIAL BUSINESS PROPOSAL|DEPARMENT OF PETROLEUM RESOURCES|Federal Ministry of works and Housing in Nigeria|Director of Contracts and Finance Allocation|CHIENCHEN YU|Dangote Ahmed|CHRIS KAASA|I WAIT YOUR URGENT RESPONSE|PRESIDENT DAWUDU JAWARA|JAMES ADELEKE|I am soliciting your involvement in a business|MIRIAM ABACHA|wife of the (?:late )?Nigeria|Kamuzu Thandiwe)/ REJECT Body-Spamschutzregel 131
+# misc spam phrases 133
+/(Kathmandu Temple Kiff|Do You Have The Yen To Be a A Millionaire\?|This message is brought to you by BerryTrim Affiliate|A \$5,000 Investment in the Euro vs the dollar, "?properly positioned"?|Reply( back)? with "?remove"? in( the)? subject line|To be removed (send e?-?mail|from further mailings)|If you have the staff to field the leads I can generate|Do you need more Traffic to your website\?|herbal viagra)/ REJECT Body-Spamschutzregel 134
+# Covers off most of the double extension virus attachments- more you have 140
+# in one line the more efficient it is 141
+/^Content-Disposition: attachment;filename=".*\.(doc|zip|exe|xls|jpg|gif)\.(pif|bat|com|exe|lnk)"$/ REJECT Body-Spamschutzregel 142
+/^Content-Disposition: attachment;filename=.*\.(doc|zip|exe|xls|jpg|gif)\.(pif|bat|com|exe|lnk)$/ REJECT Body-Spamschutzregel 143
+/(filename|name)="(WTC|wtc|README)\.EXE"/ REJECT Body-Spamschutzregel 145
+/(filename|name)="(Happy99|Navidad|prettypark|pretty park|zipped_files|flcss|Msinit|wininit|msi216|readme|README|Avp_updates|Qi_test|Anti_cih)\.exe"/ REJECT Body-Spamschutzregel 146
+/(filename|name)="(dhcp*|Emanuel|kmbfejkm|NakedWife|Seicho_no_ie|JAMGCJJA|Sulfnbk)\.exe"/ REJECT Body-Spamschutzregel 147
+/(kak|day)\.(reg|hta)/ REJECT Body-Spamschutzregel 148
+/to be removed[,]* please click.*link/ REJECT Body-Spamschutzregel 151
+# /to be removed[,]* from (the|my|our) (mailing|email|e-mail)*[ ]*list/ REJECT Body-Spamschutzregel 152
+/to be removed[,]* from.*(mailings|offers)/ REJECT Body-Spamschutzregel 153
+/to be removed[,]* from the list send a blank email/ REJECT Body-Spamschutzregel 154
+/to be removed[,]* [e]*[-]*mail.*with/ REJECT Body-Spamschutzregel 155
+/to remove[,]* please send a blank email/ REJECT Body-Spamschutzregel 156
+#/remove yourself from this list/ REJECT Body-Spamschutzregel 157
+/removed from our mail agents/ REJECT Body-Spamschutzregel 158
+/to remove yourself immediately/ REJECT Body-Spamschutzregel 159
+/to remove yourself from future/ REJECT Body-Spamschutzregel 160
+/Rem[o]*ve me fro[nm] any (furhter|further) mailings/ REJECT Body-Spamschutzregel 161
+/remove yourself from any future mailings/ REJECT Body-Spamschutzregel 162
+/to no longer receive this message reply/ REJECT Body-Spamschutzregel 163
+/to no longer receive messages click the link/ REJECT Body-Spamschutzregel 164
+/to no longer receive messages please click the link/ REJECT Body-Spamschutzregel 165
+/our broadcast email software/ REJECT Body-Spamschutzregel 166
+/there are no federal regulations or laws on (email|e-mail) advertising/ REJECT Body-Spamschutzregel 167
+/to receive (no|any) (further|future) (offers|mailings)/ REJECT Body-Spamschutzregel 168
+/do not wish to receive future (e-mail|email)/ REJECT Body-Spamschutzregel 169
+# /do not wish to receive (e-mail|email)/ REJECT Body-Spamschutzregel 170
+/unsubscribe from Virtumundo Rewards/ REJECT Body-Spamschutzregel 171
+/if you do not wish to receive email from me/ REJECT Body-Spamschutzregel 172
+/reply with the word remove in the subject line/ REJECT Body-Spamschutzregel 173
+/reply address on this email was active at the time this email was sent/ REJECT Body-Spamschutzregel 174
+/not a registered investment advisor/ REJECT Body-Spamschutzregel 175
+/sent by corporate micro mail manager/ REJECT Body-Spamschutzregel 176
+/to be stop future mailings/ REJECT Body-Spamschutzregel 177
+/to stop future mailings/ REJECT Body-Spamschutzregel 178
+/to be taken off the mailing list please click below/ REJECT Body-Spamschutzregel 179
+/sent to you in compliance (with|of)/ REJECT Body-Spamschutzregel 180
+/sent in compliance (with|of)/ REJECT Body-Spamschutzregel 181
+/compliance with the current federal legislation/ REJECT Body-Spamschutzregel 182
+/comply with proposed federal legislation/ REJECT Body-Spamschutzregel 183
+/permanently (deleted|removed) from our (database|list)/ REJECT Body-Spamschutzregel 184
+/to be removed your email from our mailing list/ REJECT Body-Spamschutzregel 185
+/this mailing is done by an independent marketing/ REJECT Body-Spamschutzregel 186
+/this[ ]*message[ ]*is[ ]*being[ ]*sent[ ]*in[ ]*full[ ]*compliance/ REJECT Body-Spamschutzregel 187
+/this is a one[-\ ]*time (email|e-mail|mailing|offer)/ REJECT Body-Spamschutzregel 188
+/Under Bill s.1618/ REJECT Body-Spamschutzregel 189
+/cannot be considered spam/ REJECT Body-Spamschutzregel 190
+/cannot be considered as spam/ REJECT Body-Spamschutzregel 191
+/(respect|honor|honour) all removal requests/ REJECT Body-Spamschutzregel 192
+/no longer wish to receive these offers/ REJECT Body-Spamschutzregel 193
+/you will not receive this offer again/ REJECT Body-Spamschutzregel 194
+/this is not an unsolicited mail/ REJECT Body-Spamschutzregel 195
+/this email has not been sent to you unsolicited/ REJECT Body-Spamschutzregel 196
+/has not been sent unsolicited/ REJECT Body-Spamschutzregel 197
+/(wish|would) to be removed from (our|the)/ REJECT Body-Spamschutzregel 199
+/all removes (honored|honoured)/ REJECT Body-Spamschutzregel 200
+/To[ ]+remove[ ]+.*@excite.com/ REJECT Body-Spamschutzregel 201
+/to[ ]+be[ ]+removed[ ]+.*@excite.com/ REJECT Body-Spamschutzregel 202
+/removemenow@excite.com/ REJECT Body-Spamschutzregel 204
+/1800cruisesandtours\.com/ REJECT Body-Spamschutzregel 205
+/freewebdirect\.net/ REJECT Body-Spamschutzregel 206
+/new-herbalway\.com/ REJECT Body-Spamschutzregel 207
+/advantagesweb\.com/ REJECT Body-Spamschutzregel 208
+/phytohealing\.com/ REJECT Body-Spamschutzregel 209
+/tradersprophet\.com/ REJECT Body-Spamschutzregel 210
+/ugot2see\.com/ REJECT Body-Spamschutzregel 211
+/hotlatinparadise\.com/ REJECT Body-Spamschutzregel 212
+/pearlgolf\.com/ REJECT Body-Spamschutzregel 213
+/halloweenomania\.com/ REJECT Body-Spamschutzregel 214
+/gofortuneonline\.com/ REJECT Body-Spamschutzregel 215
+/scantexas\.com/ REJECT Body-Spamschutzregel 216
+/buildreferrals\.com/ REJECT Body-Spamschutzregel 217
+/removeyou\.com/ REJECT Body-Spamschutzregel 218
+/cashbackmall\.com/ REJECT Body-Spamschutzregel 219
+/pageitnow\.net/ REJECT Body-Spamschutzregel 220
+/easycream\.com/ REJECT Body-Spamschutzregel 221
+/optinrealbig\.com/ REJECT Body-Spamschutzregel 222
+/realgreatgifts\.com/ REJECT Body-Spamschutzregel 223
+/realcheapgifts\.com/ REJECT Body-Spamschutzregel 224
+/pillsofpleasure\.com/ REJECT Body-Spamschutzregel 225
+/greathealthpills\.com/ REJECT Body-Spamschutzregel 226
+/saverealbigdeals\.com/ REJECT Body-Spamschutzregel 227
+/saverealbigstore\.com/ REJECT Body-Spamschutzregel 228
+/realbigwinners\.com/ REJECT Body-Spamschutzregel 229
+/saverealbig\.com/ REJECT Body-Spamschutzregel 230
+/extremetraffic_rem@excite\.com/ REJECT Body-Spamschutzregel 232
+/tccoptin@yahoo\.com/ REJECT Body-Spamschutzregel 233
+/tccoptout@yahoo.com/ REJECT Body-Spamschutzregel 234
+/stop026@excite\.com/ REJECT Body-Spamschutzregel 235
+/pleasestopsending@hotmail.com/ REJECT Body-Spamschutzregel 236
+/viperdrawing@winning.com/ REJECT Body-Spamschutzregel 237
+/mailto:.*\@.*\?subject\=(3D)*(remove|removeme|pleasedelete|pleaseremove|deleteme)+/ REJECT Body-Spamschutzregel 238
+/StudioPros/ REJECT Body-Spamschutzregel 240
+/universal advertising systems/ REJECT Body-Spamschutzregel 241
+/androstenone pheromone concentrate/ REJECT Body-Spamschutzregel 242
+/message was sent by a[n]* independent advertising company/ REJECT Body-Spamschutzregel 243
+/amazing cash products/ REJECT Body-Spamschutzregel 244
+/penis.*growth/ REJECT Body-Spamschutzregel 245
+/vortex[ ]+supplies/ REJECT Body-Spamschutzregel 246
+/international trade sources llc/ REJECT Body-Spamschutzregel 247
+/postmasterdirect inc/ REJECT Body-Spamschutzregel 248
+/free no obligation consultation/ REJECT Body-Spamschutzregel 249
+/voted sex[-\ ]server on the web/ REJECT Body-Spamschutzregel 250
+/get back.*years of your income taxes/ REJECT Body-Spamschutzregel 251
+/click here for your free quote/ REJECT Body-Spamschutzregel 252
+/click here to be (permanently)* ?(removed|deleted)/ REJECT Body-Spamschutzregel 253
+/to unsubscribe do nothing/ REJECT Body-Spamschutzregel 254
+/OTCBB Stock Alert/ REJECT Body-Spamschutzregel 255
+/apparently you have filled out an online form/ REJECT Body-Spamschutzregel 257
+/list management software will not know/ REJECT Body-Spamschutzregel 258
+/message will only be sent once/ REJECT Body-Spamschutzregel 259
+/found this company on the internet/ REJECT Body-Spamschutzregel 260
+/you will not receive any future mailings/ REJECT Body-Spamschutzregel 261
+/all removal requests are (honored|honoured)/ REJECT Body-Spamschutzregel 262
+/you will be removed from our mailing[ ]*list and receive no further information from us/ REJECT Body-Spamschutzregel 263
+/we include contact information and a method to be removed from our mailing[ ]*list/ REJECT Body-Spamschutzregel 264
+/there is no need to unsubscribe/ REJECT Body-Spamschutzregel 265
+/I have made every attempt to target this message/ REJECT Body-Spamschutzregel 266
+/If you do not wish to be on our list then click here/ REJECT Body-Spamschutzregel 267
+/If you are not interested in receiving information/ REJECT Body-Spamschutzregel 268
+/your request will be (honored|honoured) with prompt removal/ REJECT Body-Spamschutzregel 269
+/if you feel you got this e[-]*mail by mistake/ REJECT Body-Spamschutzregel 270
+/to have us permanently remove you from our list/ REJECT Body-Spamschutzregel 271
+/we guarantee you will not receive any future e[-]*mails from us/ REJECT Body-Spamschutzregel 272
+/if you would rather not receive future e[-]*mails/ REJECT Body-Spamschutzregel 273
+/we do not intend to send any future e[-]*mails/ REJECT Body-Spamschutzregel 274
+/further emailing to you by the of this email may be stopped/ REJECT Body-Spamschutzregel 275
+/by the of this email may be stopped/ REJECT Body-Spamschutzregel 276
+/receiving this e[-]*mail because you opted[-\ ]in/ REJECT Body-Spamschutzregel 277
+/this email has been sent to you because someone at this e[-]*mail address/ REJECT Body-Spamschutzregel 278
+/to have your name removed from our email database/ REJECT Body-Spamschutzregel 279
+/stopped at no cost to you by sending a reply to this e[-]*mail address/ REJECT Body-Spamschutzregel 280
+/this message is an advertisement/ REJECT Body-Spamschutzregel 281
+/immediately removed from receiving any more information/ REJECT Body-Spamschutzregel 282
+/would not like to receive future messages/ REJECT Body-Spamschutzregel 283
+/tell us you would not like to continue to receive such e[-]*mails/ REJECT Body-Spamschutzregel 284
+/advertise your product or service using bulk email services/ REJECT Body-Spamschutzregel 285
+/You have been specially selected to qualify/ REJECT Body-Spamschutzregel 286
+/while working from the privacy of your own home/ REJECT Body-Spamschutzregel 287
+/e[-]*mail messages may be stopped/ REJECT Body-Spamschutzregel 288
+/list removal\/opt[-\ ]*out/ REJECT Body-Spamschutzregel 289
+/this is a no obligation qualification form/ REJECT Body-Spamschutzregel 290
+/please notify the sender immediately with .*remove/ REJECT Body-Spamschutzregel 291
+/home[-\ ]based income opportunity/ REJECT Body-Spamschutzregel 292
+/(filename|name)="(Happy99|Navidad|prettypark)\.exe"/ REJECT Body-Spamschutzregel 294
+/(filename|name)="(pretty park|zipped_files|flcss)\.exe"/ REJECT Body-Spamschutzregel 295
+/(filename|name)="(Msinit|wininit|msi216|CFGWIZ31)\.exe"/ REJECT Body-Spamschutzregel 296
+/(filename|name)="(Avp_updates|Qi_test|Anti_cih)\.exe"/ REJECT Body-Spamschutzregel 297
+/(filename|name)="(Emanuel|kmbfejkm|NakedWife|Readme|readme)\.exe"/ REJECT Body-Spamschutzregel 298
+/(filename|name)="(Seicho_no_ie|JAMGCJJA|Sulfnbk|QuickLnk)\.exe"/ REJECT Body-Spamschutzregel 299
+/(filename|name)="(Readme|readme)\.eml"/ REJECT Body-Spamschutzregel 300
+/(kak|day)\.(reg|hta)/ REJECT Body-Spamschutzregel 302
+/Rem I am sorry/ REJECT Body-Spamschutzregel 303
+/Te mando este archivo para que me des tu punto de vista/ REJECT Body-Spamschutzregel 304
+/I send you this file in order to have your advice/ REJECT Body-Spamschutzregel 305
+/Espero me puedas ayudar con el archivo que te mando/ REJECT Body-Spamschutzregel 306
+/Espero te guste este archivo que te mando/ REJECT Body-Spamschutzregel 307
+/Este es el archivo con la informaci� que me pediste/ REJECT Body-Spamschutzregel 308
+/I hope you can help me with this file that I send/ REJECT Body-Spamschutzregel 309
+/I hope you like the file that I send you/ REJECT Body-Spamschutzregel 310
+/This is the file with the information that you ask for/ REJECT Body-Spamschutzregel 311
+/0 Business Fax Numbers/ REJECT Body-Spamschutzregel 314
+/1[-\ ]Time Mailling/ REJECT Body-Spamschutzregel 315
+/30 day money back guarantee/ REJECT Body-Spamschutzregel 316
+/A New Loan Makes Sense/ REJECT Body-Spamschutzregel 317
+/Advertise your product or service/ REJECT Body-Spamschutzregel 318
+/Aging While Burning Fat/ REJECT Body-Spamschutzregel 319
+/Amazing cash products/ REJECT Body-Spamschutzregel 320
+/Androstenone/ REJECT Body-Spamschutzregel 321
+/Attract Members of The Opposite/ REJECT Body-Spamschutzregel 322
+/Automatic Stock Picking Software/ REJECT Body-Spamschutzregel 323
+/Bad Credit Is History/ REJECT Body-Spamschutzregel 324
+/Banner Advertising Price/ REJECT Body-Spamschutzregel 325
+/Barnyard Fucking/ REJECT Body-Spamschutzregel 326
+/BEAUTIFUL Women On The Web/ REJECT Body-Spamschutzregel 327
+/Because Our Records Indicate That You Are A/ REJECT Body-Spamschutzregel 328
+# /Because You Agree/ REJECT Body-Spamschutzregel 329
+/Because You Have Subscribed To One Of Our/ REJECT Body-Spamschutzregel 330
+#/Because You Registered/ REJECT Body-Spamschutzregel 331
+/Because You Signed Up At One/ REJECT Body-Spamschutzregel 332
+/Best Porn/ REJECT Body-Spamschutzregel 333
+/Buy Preforeclosure Houses/ REJECT Body-Spamschutzregel 334
+/Cable TV Descrambler/ REJECT Body-Spamschutzregel 335
+/Cannot be Considered Spam/ REJECT Body-Spamschutzregel 336
+/Cannot be Considered As Spam/ REJECT Body-Spamschutzregel 337
+/Caso nao desejar receber este tipo de email novamente/ REJECT Body-Spamschutzregel 338
+/Click Here For Your Free Quote/ REJECT Body-Spamschutzregel 339
+/Click Here To Avoid This In The Future/ REJECT Body-Spamschutzregel 340
+/Compliance with the current federal legislation/ REJECT Body-Spamschutzregel 341
+/Copy DVD Movies/ REJECT Body-Spamschutzregel 343
+/Creating Immediate Wealth/ REJECT Body-Spamschutzregel 344
+/Cum Shots/ REJECT Body-Spamschutzregel 345
+/Dear Future/ REJECT Body-Spamschutzregel 348
+#/Dear Entrepreneur/ REJECT Body-Spamschutzregel 349
+/Debt Consolidation/ REJECT Body-Spamschutzregel 350
+/Do You Want Financial/ REJECT Body-Spamschutzregel 351
+/Don't Need A Prescription/ REJECT Body-Spamschutzregel 352
+/E[-\ ]Mail Bill Section 301/ REJECT Body-Spamschutzregel 353
+/Earn A Full Time Income/ REJECT Body-Spamschutzregel 354
+/Easily Lose Weight/ REJECT Body-Spamschutzregel 355
+/Equalamail/ REJECT Body-Spamschutzregel 356
+/Email Bill Section 301/ REJECT Body-Spamschutzregel 357
+/Erotic Travel Guide/ REJECT Body-Spamschutzregel 358
+/Fat Blocker/ REJECT Body-Spamschutzregel 359
+/Fellow Internet entrepeneur/ REJECT Body-Spamschutzregel 360
+/Figure Income Earners/ REJECT Body-Spamschutzregel 361
+/Find Out Anything About Anyone/ REJECT Body-Spamschutzregel 362
+/Fix Your Credit/ REJECT Body-Spamschutzregel 363
+/Found this company on the internet/ REJECT Body-Spamschutzregel 364
+/Free Bulk Email/ REJECT Body-Spamschutzregel 365
+/Free Direct Email/ REJECT Body-Spamschutzregel 367
+/Free Multiple Moving Cost/ REJECT Body-Spamschutzregel 368
+/Free no obligation/ REJECT Body-Spamschutzregel 369
+/Free Private Webcam/ REJECT Body-Spamschutzregel 370
+/Free S e x/ REJECT Body-Spamschutzregel 371
+/Free Sex/ REJECT Body-Spamschutzregel 372
+/Free Vacation Giveaway/ REJECT Body-Spamschutzregel 373
+/Free XXX/ REJECT Body-Spamschutzregel 374
+/From A Concerned Gas User/ REJECT Body-Spamschutzregel 375
+/Get back.*years of your income taxes/ REJECT Body-Spamschutzregel 376
+/Government Grants E-Book/ REJECT Body-Spamschutzregel 377
+/GROWTH HORMONE RELEASER/ REJECT Body-Spamschutzregel 378
+/Hardcore Animal Action/ REJECT Body-Spamschutzregel 379
+/Hardcore Barnyard/ REJECT Body-Spamschutzregel 380
+/Hardcore Fist/ REJECT Body-Spamschutzregel 381
+/Hardcore Fucking/ REJECT Body-Spamschutzregel 382
+/Home[-\ ]based income opportunity/ REJECT Body-Spamschutzregel 383
+/Has not been sent unsolicited/ REJECT Body-Spamschutzregel 384
+/I Will Personally Show You How/ REJECT Body-Spamschutzregel 385
+/Independent advertising company/ REJECT Body-Spamschutzregel 386
+/Incredible Life Changing/ REJECT Body-Spamschutzregel 387
+/It Has Been Going Since/ REJECT Body-Spamschutzregel 388
+/Hardcore Animal/ REJECT Body-Spamschutzregel 389
+/Hardcore Fucking/ REJECT Body-Spamschutzregel 390
+/Hardcore Teens/ REJECT Body-Spamschutzregel 391
+/Hardcore Unsuspecting/ REJECT Body-Spamschutzregel 392
+/Has not been sent to you unsolicited/ REJECT Body-Spamschutzregel 393
+/Hear About Future Offers From Us/ REJECT Body-Spamschutzregel 394
+/Hear About Offers From Us/ REJECT Body-Spamschutzregel 395
+/Hot Horny Girls/ REJECT Body-Spamschutzregel 396
+/Hot Young Nasty/ REJECT Body-Spamschutzregel 397
+/Huge Wild Animals/ REJECT Body-Spamschutzregel 398
+/Improve Sexual Vigor/ REJECT Body-Spamschutzregel 399
+#/If you no longer wish to receive/ REJECT Body-Spamschutzregel 400
+/If you prefer not to receive future emails/ REJECT Body-Spamschutzregel 401
+/I'm a total exibitionist/ REJECT Body-Spamschutzregel 402
+/Im a total exibitionist/ REJECT Body-Spamschutzregel 403
+/In Compliance With The New E[-\ ]Mail Bill/ REJECT Body-Spamschutzregel 404
+#/Interest rates are rising/ REJECT Body-Spamschutzregel 405
+/Just ONE click away from showing you/ REJECT Body-Spamschutzregel 406
+/Lender referral service/ REJECT Body-Spamschutzregel 407
+/Lenders Compete For Your Business/ REJECT Body-Spamschutzregel 408
+/Life Changing Opportunity/ REJECT Body-Spamschutzregel 409
+/Lips Around Your/ REJECT Body-Spamschutzregel 410
+/Locate Hidden Assets/ REJECT Body-Spamschutzregel 411
+/Lose Pounds And Inches/ REJECT Body-Spamschutzregel 412
+/Lose Some Weight Before/ REJECT Body-Spamschutzregel 413
+/Low[-\ ]Cost Viagra/ REJECT Body-Spamschutzregel 414
+/Lowest Mortgage/ REJECT Body-Spamschutzregel 415
+/Make money online/ REJECT Body-Spamschutzregel 416
+# /Marketing Method/ REJECT Body-Spamschutzregel 417
+/Million E[-\ ]mail Addresses/ REJECT Body-Spamschutzregel 418
+/Million Email Addresses/ REJECT Body-Spamschutzregel 419
+/Minutes To Complete Your Order/ REJECT Body-Spamschutzregel 420
+/Much More Effective For Both Partners/ REJECT Body-Spamschutzregel 421
+/Mortgage Quote/ REJECT Body-Spamschutzregel 422
+/Need Fod Adult Entertainment/ REJECT Body-Spamschutzregel 423
+/Never Sends Unsolicited Email/ REJECT Body-Spamschutzregel 424
+/No[-\ ]Spam Policy/ REJECT Body-Spamschutzregel 425
+/On my personal live Webcam/ REJECT Body-Spamschutzregel 427
+/One[-\ ]Time Mail/ REJECT Body-Spamschutzregel 428
+/One[-\ ]Time Non[-\ ]Commercial/ REJECT Body-Spamschutzregel 429
+/Opt-In To Our/ REJECT Body-Spamschutzregel 430
+/Opt-Out From Our/ REJECT Body-Spamschutzregel 431
+/Our Herbal Supplement/ REJECT Body-Spamschutzregel 432
+/Owning your first home/ REJECT Body-Spamschutzregel 433
+/Partner E[-\ ]mail Offers/ REJECT Body-Spamschutzregel 434
+/Partner Email Offers/ REJECT Body-Spamschutzregel 435
+/Penis.*growth/ REJECT Body-Spamschutzregel 436
+/Permanently (deleted|removed) From Our/ REJECT Body-Spamschutzregel 437
+/Permission Based E[-\ ]mail/ REJECT Body-Spamschutzregel 438
+/Permission Based Email/ REJECT Body-Spamschutzregel 439
+/Pheromone Concentrate/ REJECT Body-Spamschutzregel 440
+/Potent Pheromone/ REJECT Body-Spamschutzregel 441
+/Price Discount for New TLD Extensions/ REJECT Body-Spamschutzregel 442
+/Quality Amateur Action/ REJECT Body-Spamschutzregel 443
+/Ready to refinance/ REJECT Body-Spamschutzregel 444
+/Real Live Cameras And Movies/ REJECT Body-Spamschutzregel 445
+/Real LiveCameras And Movies/ REJECT Body-Spamschutzregel 446
+/Receive Special Offer/ REJECT Body-Spamschutzregel 447
+/Reduce Body Fat/ REJECT Body-Spamschutzregel 448
+/Refinance Your Home/ REJECT Body-Spamschutzregel 449
+/Second Mortgage/ REJECT Body-Spamschutzregel 450
+/Secure A Better Life For/ REJECT Body-Spamschutzregel 451
+/See How Much You Can Save/ REJECT Body-Spamschutzregel 452
+/Sent to you in compliance (with|of)/ REJECT Body-Spamschutzregel 453
+/Sent To You By A Marketing Partner/ REJECT Body-Spamschutzregel 454
+/Sent in compliance (with|of)/ REJECT Body-Spamschutzregel 455
+/Serious Inquiries Only Please/ REJECT Body-Spamschutzregel 456
+/Shop Hundreds Of Lenders/ REJECT Body-Spamschutzregel 457
+/Start Making $1/ REJECT Body-Spamschutzregel 458
+/Step To Financial Freedom/ REJECT Body-Spamschutzregel 459
+/Steps To Financial Freedom/ REJECT Body-Spamschutzregel 460
+/Suck My Cock/ REJECT Body-Spamschutzregel 461
+/Take A FREE Trip/ REJECT Body-Spamschutzregel 462
+/TAKE YOUR FIRST BIG STEP/ REJECT Body-Spamschutzregel 463
+/Targeted E[-\ ]mail List/ REJECT Body-Spamschutzregel 464
+/Targeted Email List/ REJECT Body-Spamschutzregel 465
+/The following gift or special offer was sent to you/ REJECT Body-Spamschutzregel 466
+/This email is not sent unsolicited/ REJECT Body-Spamschutzregel 467
+/This Is A One[-\ ]*Time (email|e-mail|mailing|offer)/ REJECT Body-Spamschutzregel 468
+/This mailing is done by an independent marketing/ REJECT Body-Spamschutzregel 469
+/To Be Removed From This Targeted/ REJECT Body-Spamschutzregel 470
+/To Claim Your Prize Click/ REJECT Body-Spamschutzregel 471
+/To Stop All Future Offers/ REJECT Body-Spamschutzregel 472
+/Under Bill s.1618/ REJECT Body-Spamschutzregel 473
+/Universal Advertising System/ REJECT Body-Spamschutzregel 474
+/Unlimited Phone Conversations/ REJECT Body-Spamschutzregel 475
+/Using Your Identity/ REJECT Body-Spamschutzregel 476
+/Virtumundo/ REJECT Body-Spamschutzregel 477
+/Voted sex[-\ ]server on the web/ REJECT Body-Spamschutzregel 478
+/We can award any degree/ REJECT Body-Spamschutzregel 479
+/We know it sounds impossible/ REJECT Body-Spamschutzregel 480
+# /Weight Loss [Drug\Medication]/ REJECT Body-Spamschutzregel 481
+/While working from the privacy of your own home/ REJECT Body-Spamschutzregel 482
+/Win Big Money Today/ REJECT Body-Spamschutzregel 483
+/Without Pumps Or Weights Or Stretches/ REJECT Body-Spamschutzregel 484
+/Wouldn't You Like Your Husband Or Boyfriend To Have/ REJECT Body-Spamschutzregel 485
+/You Agree To Receive Email Marketing From/ REJECT Body-Spamschutzregel 486
+/You Are Receiving This Exclusive Promotion/ REJECT Body-Spamschutzregel 487
+/You Are Registered At One Of Our/ REJECT Body-Spamschutzregel 488
+/You are receiving this mail because you have/ REJECT Body-Spamschutzregel 489
+/You Have Agreed To Receive/ REJECT Body-Spamschutzregel 490
+/You Can Search For Anyone/ REJECT Body-Spamschutzregel 491
+/You've Agreed To Receive/ REJECT Body-Spamschutzregel 492
+/You Registered At One Of Our/ REJECT Body-Spamschutzregel 493
+/You've Registered At One Of Our/ REJECT Body-Spamschutzregel 494
+/Your E[-\ ]mail Address Was Obtained/ REJECT Body-Spamschutzregel 495
+/Your Email Address Was Obtained/ REJECT Body-Spamschutzregel 496
+/Your Email Address Was Supplied/ REJECT Body-Spamschutzregel 497
+/Your Mail Address Was Supplied/ REJECT Body-Spamschutzregel 498
+/Your Penis Size/ REJECT Body-Spamschutzregel 499
+/Smart Tags, Smart Investments?/ REJECT Body-Spamschutzregel 500
+/faze the Neptune focal point and strive enterprising/ REJECT Body-Spamschutzregel 501
+/full moon insistence gist an packed/ REJECT Body-Spamschutzregel 502
+/a upward prominently field day health care the ridicule offing or Internet seemingly/ REJECT Body-Spamschutzregel 503
+/fanatic but consistency sluice scrape downtrodden five and ten on needless/ REJECT Body-Spamschutzregel 504
+/fuse box sick sister/ REJECT Body-Spamschutzregel 505
+/immediate fulfillment big deal and cashier/ REJECT Body-Spamschutzregel 506
+/in on parakeet quizzical chicken feed leper on square/ REJECT Body-Spamschutzregel 508
+/reference ounce a achiever sunblock syringe roadside longevity/ REJECT Body-Spamschutzregel 509
+/ocean distrust as antiperspirant coax lubricant entry, the northwestern politicize,/ REJECT Body-Spamschutzregel 510
+/By the time Scarlett had undressed and blown out the candle, her/ REJECT Body-Spamschutzregel 511
+/E-MAIL:czq7q67a@yahoo.co.jp/ REJECT Body-Spamschutzregel 512
# [Immer mit aufsteiger Nummer sauber eintragen!]
#
#
+/^Message-ID: *mscreator[0-9][0-9].fagms.de/ REJECT Header-Spamschutzregel 1153
/^Subject: gelegenheit zur webverbesserung/ REJECT Header-Spamschutzregel 1052
/^Subject: Achtung! Ihr paypal-Konto wurde begrenzt!/ REJECT Header-Spamschutzregel 1051
/^X-PHP-Script: campnetworking.ca\/images\/susscesful_soties\/nfoscomm.php*/ REJECT Header-Spamschutzregel 1050
--- /dev/null
+# Version 3.70 / 25.09.2011
+#
+# Das Postfix-Buch - Sichere Mailserver mit Linux
+# http://www.postfixbuch.de - Peer Heinlein
+#
+# Heinlein Professional Linux Support GmbH
+# http://www.heinlein-support.de
+#
+# Downloadquelle dieser Datei: http://www.postfixbuch.de/web/service/checks/
+#
+#
+# Verwendung der Filtersammlung auf eigene Gefahr.
+#
+# Es handelt sich dabei um einen tagesaktuellen Auszug der beim
+# ISP "JPBerlin.de" genutzten Filterregeln. Bitte pruefen Sie vor einem
+# Einsatz bei Ihnen ganz genau, ob diese Regeln noch aktuell und sinnvoll
+# sind und ob Sie sie einsetzen moechten!
+#
+#
+# Setzen Sie in /etc/postfix/main.cf einfach
+#
+# header_checks = pcre:/etc/postfix/header_checks oder
+# oder
+# header_checks = regexp:/etc/postfix/header_checks
+#
+# und fuehren Sie "rcpostfix reload" aus.
+#
+# Tipp: pcre ist ein Drittel schneller als regexp!
+#
+#
+
+#
+# Die Nummern hinter dem REJECT tauchen spaeter iM SMTP-Error oder im Log
+# auf, um die Filter-Regel wiederzufinden, die den Block ausgeloest hat.
+# Es kann stattdessen auch einfacher Text benutzt werden.
+#
+
+
+#
+#
+# Besondere Regelungen ausserhalb unseres Spamschutzes
+# ===============================================
+#
+
+# Filtert Amavis-Einträge
+/^Received: from localhost/ IGNORE
+
+#
+# Domeus hat bis heute nicht den Unterschied zwischen Mailheader-To und
+# SMTP-Envelope-To verstanden und fabriziert seit nunmehr über sieben Jahren in
+# schöner Regelmäßigkeit Mailschleifen im vier/fünfstelligen Bereich.
+#
+# /^Received:.*domeus\.com/ REJECT Domeus baut Mailschleifen und hat wichtige RFCs nicht verstanden
+
+/X-policyd-weight:.*to=dresden@listen.attac.de/ IGNORE
+
+#
+#
+# Tagesaktuelle, nur voruebergehende Regelungen:
+# ===============================================
+# [Immer mit Timestamp (!) und ggf. Ticket-Nummer eintragen!]
+#
+/^Received: from 62.56.132.7.satcom-systems.net/ REJECT Header-Spamschutzregel TMP-1
+
+# 20110630 - HPLS-Ticket#: 2011063010000278
+/^Received: from dsl88-247-23947.ttnet.net.tr/ REJECT Header-Spamschutzregel TMP-2
+
+# 20110925 - u.A. HPLS-Ticket#: 2011092510000102
+/^Subject: *pdf ist Ihre Gewinnchancen Informationen*/ REJECT Header-Spamschutzregel TMP-3
+
+#
+#
+# Dauerhaft genutzte Regelungen:
+# ===============================================
+# [Immer mit aufsteiger Nummer sauber eintragen!]
+#
+#
+/^Subject: gelegenheit zur webverbesserung/ REJECT Header-Spamschutzregel 1052
+/^Subject: Achtung! Ihr paypal-Konto wurde begrenzt!/ REJECT Header-Spamschutzregel 1051
+/^X-PHP-Script: campnetworking.ca\/images\/susscesful_soties\/nfoscomm.php*/ REJECT Header-Spamschutzregel 1050
+/^Subject:.*zusammenarbeit zur webverbesserung/ REJECT Header-Spamschutzregel 1049
+/^X-PHP-Script: biditsaleit.com\/dz\/mailer.php*/ REJECT Header-Spamschutzregel 1048
+/^Subject:.*from GMC manufacturer/ REJECT Header-Spamschutzregel 1047
+/^Return-Path: *ventouxl@ns[0-9]{3}.medialook.net/ REJECT Header-Spamschutzregel 1046
+/^From :.*Topillen Apotheke / REJECT Header-Spamschutzregel 1145
+/^Subject: Top Apotheke/ REJECT Header-Spamschutzregel 1144
+/^message-ID: *phx.gbl/ REJECT Header-Spamschutzregel 1143
+/^List-Unsubscribe: *e-mailing.pymac.fr\/[a-z]\/[a-z]\/[0-9]{4}\/[0-9]{6}/ REJECT Header-Spamschutzregel 1142
+/^Return-Path: *@oanm[0-9]{2}.com/ REJECT Header-Spamschutzregel 1141
+/^Subject: lighting products from GMC manufacturer/ REJECT Header-Spamschutzregel 1140
+/^Subject: OFFIZIELLE GEWINNBENACHRITIGUNG/ REJECT Header-Spamschutzregel 1139
+/^Subject: God bless you as you get back to me/ REJECT Header-Spamschutzregel 1038
+/^List-Unsubribe: *tk3.sbc01.com\/sy\/*/ REJECT Header-Spamschutzregel 1037
+/^List-Unsubscribe: *tk3.sbc01.com\/sy\/*/ REJECT Header-Spamschutzregel 1037
+/^Message-ID: *[0-9]{8}-[0-9]{8}-[0-9a-z]{3}-0@S102*/ REJECT Header-Spamschutzregel 1036
+/^Subject: *YOUR EMAIL HAS WON YOU GBP*/ REJECT Header-Spamschutzregel 1035
+/^From: *ventouxl@ns[0-9]?[0-9].medialook.net/ REJECT Header-Spamschutzregel 1034
+/^From: *gestioncreditexpert_[0-9]{4}@gce-mailer-[0-9]{2}.com/ REJECT Header-Spamschutzregel 1033
+/^From:.*erosvision.com/ REJECT Header-Spamschutzregel 1032
+/^From:*@payapl.fr/ REJECT Header-Spamschutzregel 1031
+# 20110706 - HPLS-Ticket#: 2011070610000053
+/^X-PHP-Script: mars.rapidvps.com\/~emoosite\/tmp\/install_4b10cb87da737\/languages\/site\/husa.php*/ REJECT Header-Spamschutzregel 1030
+/^Thread-Index: *Acvd0cAG8IQaasqAcNaztWODnM30ZA/ REJECT Header-Spamschutzregel 1029
+/^Subject: aktualisieren Sie Ihre Bankdaten/ REJECT Header-Spamschutzregel 1028
+/^Subject: Erfahrungsbericht Bernd Matthes/ REJECT Header-Spamschutzregel 1027
+/^Subject:.*IP PBX/i REJECT Header-Spamschutzregel 1026
+/^From:.*Nicoll Christopher John/ REJECT Header-Spamschutzregel 1025
+/^From:.*SHELL PETROLEUM/ REJECT Header-Spamschutzregel 1024
+/^From:.*Versicherungs Dienst/ REJECT Header-Spamschutzregel 1023
+/^From:.*soft-cd.com/ REJECT Header-Spamschutzregel 1022
+/^From: "Oxford Business News" <info@oxford-bn.org>/ REJECT Header-Spamschutzregel 1021
+/^Subject: =?iso-8859-1?Q?Leider_st=F6?= =?iso-8859-1?Q?ren_Sie.?=/ REJECT Header-Spamschutzregel 1020
+/^From:.*Elena.*@eposta.ru/ REJECT Header-Spamschutzregel 1019
+/^Subject:.*Results 2008 !/ REJECT Header-Spamschutzregel 1018
+/^From: Sponsor Lotto/ REJECT Header-Spamschutzregel 1017
+/^From:.*nodiet@web.de/ REJECT Header-Spamschutzregel 1016
+/^From:.*edirects.com/ REJECT Header-Spamschutzregel 1015
+/^Subject:.*WINNING NOTIFICATION!!!/ REJECT Header-Spamschutzregel 1014
+/^Subject:.*Wir wissen was Frauen wollern/ REJECT Header-Spamschutzregel 1013
+/^From:.*newscd\.org/ REJECT Header-Spamschutzregel 1012
+/^From:.*mms-und-sms-gutschein.com/ REJECT Header-Spamschutzregel 1011
+/^Subject:.*CONFIRM YOUR WINNING/ REJECT Header-Spamschutzregel 1010
+/^Subject:.*Gratisaktion - Du wurdest ausgewaehlt unseren neuen SMS/ REJECT Header-Spamschutzregel 1009
+/^From:.*Seitensprung/ REJECT Header-Spamschutzregel 1008
+/^Received:.*germans-mailc.com/ REJECT Header-Spamschutzregel 1007: Lisa-Schindler-Spam
+/^Received:.*stienitzsee.info/ REJECT Header-Spamschutzregel 1006
+/^Subject: Bonus 555eu/ REJECT Header-Spamschutzregel 1005
+/^Subject: *(ATTN|TO) *:.*SALES? *MANAGER/i REJECT Header-Spamschutzregel 1004
+/^Subject:.*Take this postcard now!/ REJECT Header-Spamschutzregel 1003
+/^Subject:.*FUXIN/ REJECT Header-Spamschutzregel 1002
+/^From:.*marion.backera/ REJECT Header-Spamschutzregel 1001
+/^Subject:.*kein spam. aber eine Antwort auf ihre Fragen/ REJECT Header-Spamschutzregel 1000
+
+
+
+
+# Nazi-Spam-Welle mit Hetze
+
+########################################
+if /^Subject:/i
+
+/^Subject: 4,8 Mill\. Osteuropaeer durch Fischer-Volmer Erlass/ REJECT Header-Spamschutzregel Nazi Spam
+/^Subject: Auf Streife durch den Berliner Wedding/ REJECT Header-Spamschutzregel Nazi Spam
+/^Subject: Auslaender bevorzugt/ REJECT Header-Spamschutzregel Nazi Spam
+/^Subject: Auslaenderpolitik/ REJECT Header-Spamschutzregel Nazi Spam
+/^Subject: Deutsche werden kuenftig beim Arzt abgezockt/ REJECT Header-Spamschutzregel Nazi Spam
+/^Subject: Du wirst zum Sklaven gemacht\!\!\!/ REJECT Header-Spamschutzregel Nazi Spam
+/^Subject: Graeberschaendung auf bundesdeutsche Anordnung/ REJECT Header-Spamschutzregel Nazi Spam
+/^Subject: Hier sind wir Lehrer die einzigen Auslaender/ REJECT Header-Spamschutzregel Nazi Spam
+/^Subject: Paranoider Deutschenmoerder kommt in Psychiatrie/ REJECT Header-Spamschutzregel Nazi Spam
+/^Subject: Tuerkei in die EU/ REJECT Header-Spamschutzregel Nazi Spam
+/^Subject: Verbrechen der deutschen Frau/ REJECT Header-Spamschutzregel Nazi Spam
+/^Subject:.*Skandal in Berlin/ REJECT Header-Spamschutzregel JPBERLIN-14
+/^Subject:.*Auslaendergewalt: Herr Rau, wo waren Sie?/ REJECT Header-Spamschutzregel JPBERLIN-15
+/^Subject:.*Bankrott des Gesundheitswesens durch Auslaender!/ REJECT Header-Spamschutzregel JPBERLIN-16
+/^Subject:.*Wer an ein Tabu ruehrt, muss und darf vernichtet werden/ REJECT Header-Spamschutzregel JPBERLIN-17
+/^Subject:.*EU Beitritt der Tuerkei/ REJECT Header-Spamschutzregel JPBERLIN-18
+/^Subject:.*Bin ich zu weltfremd.*Ich glaube wohl kaum/ REJECT Header-Spamschutzregel JPBERLIN-19
+/^Subject:.*Die Deform der sozialen Ordnung/ REJECT Header-Spamschutzregel JPBERLIN-20
+/^Subject:.*Moschee-Bau in Deutschland/ REJECT Header-Spamschutzregel JPBERLIN-21
+/^Subject:.*Augen auf.*So sieht es aus/ REJECT Header-Spamschutzregel JPBERLIN-22
+/^Subject:.*Paradies Bundesrepublik - Rente fuer die Welt/ REJECT Header-Spamschutzregel JPBERLIN-23
+/^Subject:.*Libanesen in Berlin/ REJECT Header-Spamschutzregel JPBERLIN-24
+/^Subject:.*Garather klagen ueber eskalierende Gewalt im Stadtteil!/ REJECT Header-Spamschutzregel JPBERLIN-24
+/^Subject:.*Auslaender erschleichen sich zunehmend Sozialleistungen/ REJECT Header-Spamschutzregel JPBERLIN-25
+/^Subject:.*Auslaenderkriminalitaet steigt weiter!/ REJECT Header-Spamschutzregel JPBERLIN-26
+/^Subject:.*Das kann unmoeglich sein -Leserbrief/ REJECT Header-Spamschutzregel JPBERLIN-27
+/^Subject:.*Nein zum Zuwanderungsgesetz !/ REJECT Header-Spamschutzregel JPBERLIN-28
+/^Subject:.*Skandalurteil in Darmstadt/ REJECT Header-Spamschutzregel JPBERLIN-29
+/^Subject:.*Auf Kosten der deutschen Beitragszahler und Rentner!/ REJECT Header-Spamschutzregel JPBERLIN-30
+/^Subject:.*Wir haben die Auslaender doch geholt/ REJECT Header-Spamschutzregel JPBERLIN-31
+/^Subject:.*TUERKEN-TERROR AM HIMMELFAHRTSTAG/ REJECT Header-Spamschutzregel JPBERLIN-32
+/^Subject:.*MULTI-KULTI-BANDE TYRANNISIERTE MITSCHUELER/ REJECT Header-Spamschutzregel JPBERLIN-33
+/^Subject:.*ASYLANTEN BEGRABSCHTEN DEUTSCHES MAEDCHEN/ REJECT Header-Spamschutzregel JPBERLIN-34
+/^Subject:.*Was Deutschland braucht, sind deutsche Kinder!/ REJECT Header-Spamschutzregel JPBERLIN-35
+/^Subject:.*Diplomatische Zensur/ REJECT Header-Spamschutzregel JPBERLIN-36
+/^Subject:.*EU gibt Erwerbslosen volle Freizuegigkeit/ REJECT Header-Spamschutzregel JPBERLIN-37
+/^Subject:.*Richter unterstuetzt kriminelle Auslaenderin/ REJECT Header-Spamschutzregel JPBERLIN-38
+/^Subject:.*Auslaenderanteile in Schweizer Gefaengnissen/ REJECT Header-Spamschutzregel JPBERLIN-39
+/^Subject:.*Augen auf! (So sieht es aus!)/ REJECT Header-Spamschutzregel JPBERLIN-40
+/^Subject:.*Neue Voelkerwanderung droht!/ REJECT Header-Spamschutzregel JPBERLIN-41
+/^Subject:.*Client TOS Notification/ REJECT Header-Spamschutzregel JPBERLIN-50
+/^Subject:.* CIALIS / REJECT Header-Spamschutzregel JPBERLIN-51: Cialis-Keyword
+/^Subject:.*Postbank Sicherheitsaktualisierung/ REJECT Header-Spamschutzregel JPBERLIN-52
+/^Subject:.*Sicherheitsaktualisierung/ REJECT Header-Spamschutzregel JPBERLIN-53
+/^Subject:.*Deutsche-bank Sicherheitsaktualisierung/ REJECT Header-Spamschutzregel JPBERLIN-54
+/^Subject:.*internet.*pharmacy/ REJECT Header-Spamschutzregel JPBERLIN-55
+/^Subject:.*Affordable Premade Logos/ REJECT Header-Spamschutzregel JPBERLIN-56
+/^Subject:.*Best prices.*on the net/ REJECT Header-Spamschutzregel JPBERLIN-57
+/^Subject:.*V.?i.?a.?g.?r.?a/ REJECT Header-Spamschutzregel JPBERLIN-58: Viagra-Keyword
+/^Subject:.*X.?a.?n.?a.?x/ REJECT Header-Spamschutzregel JPBERLIN-59: Xanax-Keyword
+/^Subject:.*Phentermine/ REJECT Header-Spamschutzregel JPBERLIN-60
+/^Subject:.*Die Sahne tropft heraus/ REJECT Header-Spamschutzregel JPBERLIN-61
+/^Subject:.* Rolex / REJECT Header-Spamschutzregel JPBERLIN-62
+/^Subject:.*Rechnung Online Monat November 2004/ REJECT Header-Spamschutzregel JPBERLIN-63 Trojaner-Alarm
+/^Subject:.*Replica Watch Models/ REJECT Header-Spamschutzregel JPBERLIN-64
+/^Subject:.*Sehr geehrter Postbankkunde/ REJECT Header-Spamschutzregel JPBERLIN-65
+/^Subject:.*AIR ANTALYA/ REJECT Header-Spamschutzregel JPBERLIN-66
+/^Subject:.*Search engines - submit/ REJECT Header-Spamschutzregel JPBERLIN-12
+/^Subject:.*Search engine traffic/ REJECT Header-Spamschutzregel JPBERLIN-13
+/^Subject: More efficient than via-gra/ REJECT Header-Spamschutzregel 22
+/^Subject: Mailadresse unbekannt/ REJECT Header-Spamschutzregel 27
+/^Subject:.*SARS: Viet Nam removed from list of affected countries.*/ REJECT Header-Spamschutzregel 29
+/^Subject:.*Wichtig !!! Die Telefonnummer die du haben wolltest/ REJECT Header-Spamschutzregel 31
+/^Subject:.*Weihnachtsbaeume ab EURO.*/ REJECT Header-Spamschutzregel 32
+/^Subject:.*Neue Version zum downloaden.*/ REJECT Header-Spamschutzregel 33
+/^Subject:.*Frants for.*/ REJECT Header-Spamschutzregel 34
+/^Subject:.*FREEE.*/ REJECT Header-Spamschutzregel 35
+/^Subject:.*Webdesign leicht gemacht.*/ REJECT Header-Spamschutzregel 36
+/^Subject:.*Check this Message Board Out.*/ REJECT Header-Spamschutzregel 37
+/^Subject: SAVE GERMANY VOTE STOIBER.*/ REJECT Header-Spamschutzregel 38
+
+Endif
+####################################
+
+
+
+#/^Return-Path: <MAILER-DAEMON>/ REJECT Header-Spamschutzregel 20
+/^Received:.*luftmensch.com/ REJECT Header-Spamschutzregel 28
+/^Delivered-To:.*jo@pcj.mlbc.test/ REJECT Header-Spamschutzregel
+/From:.*Mandy Tweed/ REJECT Header-Spamschutzregel 39
+/Received: from privat .*.aol.com/ REJECT Header-Spamschutzregel 40
+/Received:.*tpg_exsrvr.thepowellgroup.com/ REJECT Header-Spamschutzregel 41
+/Received: from mx?.eudoramail.com/ REJECT Header-Spamschutzregel 42
+/Flashmail\.com/ REJECT Header-Spamschutzregel 44
+
+
+
+#
+# Checks gesammelt aus dem Netz von
+# http://www.hispalinux.es/~data/postfix/
+#
+
+######################################
+If /^Subject:/i
+
+/^Subject: FW: Warm this world by truely Love$/ REJECT Header-Spamschutzregel 51
+/^Subject:.*Fwd:Peace BeTweeN AmeriCa and IsLaM!/ REJECT Header-Spamschutzregel 58
+/^Subject: ILOVEYOU/ REJECT Header-Spamschutzregel 60
+# Regel 61 rausgenommen -- zu allgemein. 20080128 / phei
+#/^Subject: (Re: )*Important Message From/ REJECT Header-Spamschutzregel 61
+/^Subject: (Re: )*BubbleBoy is back!/ REJECT Header-Spamschutzregel 62
+/^Subject: Accept Credit Cards/ REJECT Header-Spamschutzregel 63
+/^Subject: How Soon Are You Going To Retire\?/ REJECT Header-Spamschutzregel 64
+/^Subject: \[ADV:/ REJECT Header-Spamschutzregel 65
+/^Subject: ADV:/ REJECT Header-Spamschutzregel 66
+/^Subject: Snowhite and the Seven Dwarfs - The REAL story!/ REJECT Header-Spamschutzregel 67
+/^Subject: Are you losing sleep over debt\?/ REJECT Header-Spamschutzregel 68
+/^Subject: a stock that makes money/ REJECT Header-Spamschutzregel 69
+/^Subject: high earnings may soar/ REJECT Header-Spamschutzregel 70
+/^Subject: See the VIDEO Britney/ REJECT Header-Spamschutzregel 71
+/^Subject: FW: VIDEOS OF BRITNEY/ REJECT Header-Spamschutzregel 72
+/^Subject: STOLEN HARDCORE VIDEO/ REJECT Header-Spamschutzregel 73
+/^Subject: NEW CASH PROGRAM/ REJECT Header-Spamschutzregel 74
+/^Subject: Hot Celebs 100% Exposed!/ REJECT Header-Spamschutzregel 75
+/^Subject: Make It Happen/ REJECT Header-Spamschutzregel 76
+/^Subject: If you need extra money...read this!/ REJECT Header-Spamschutzregel 77
+/^Subject: Recieve A Free Quote/ REJECT Header-Spamschutzregel 78
+/^Subject: We Have Low Mortgage Rates!!!/ REJECT Header-Spamschutzregel 79
+/^Subject: Re: travel confirmation/ REJECT Header-Spamschutzregel 80
+/^Subject: Receive a FREE SAMPLE of Viagra for Women/ REJECT Header-Spamschutzregel 81
+/^Subject: DOUBLE YOUR BREAST SIZE! GUARANTEED/ REJECT Header-Spamschutzregel 82
+/^Subject: Ground Breaking Business "Starts Today"/ REJECT Header-Spamschutzregel 83
+/^Subject: AS SEEN ON T\.V/ REJECT Header-Spamschutzregel 84
+/^Subject: 99 Million Email Addresses - \$99/ REJECT Header-Spamschutzregel 85
+/^Subject: 50 Million Fresh Email Addresses/ REJECT Header-Spamschutzregel 87
+/^Subject: 200 Million Email Addresses - \$149/ REJECT Header-Spamschutzregel 88
+/^Subject: Get Viagra Online Now !!!/ REJECT Header-Spamschutzregel 89
+/^Subject: Boost Your Windows Reliability/ REJECT Header-Spamschutzregel 90
+/^Subject: I know what you've been doing/ REJECT Header-Spamschutzregel 91
+/^Subject: Hot Penny Stock Pick/ REJECT Header-Spamschutzregel 92
+/^Subject: Need a great deal on a home loan\?/ REJECT Header-Spamschutzregel 93
+/^Subject: I used to be in debt too!/ REJECT Header-Spamschutzregel 94
+/^Subject: Work less, make more/ REJECT Header-Spamschutzregel 95
+/^Subject: Drive Your Web Counter Ballistic/ REJECT Header-Spamschutzregel 96
+/^Subject: Re: have you considered doing this\?/ REJECT Header-Spamschutzregel 97
+/^Subject: Work from home and get paid!/ REJECT Header-Spamschutzregel 98
+/^Subject: Enter To Win One of 25 Dream Vacations!!/ REJECT Header-Spamschutzregel 99
+/^Subject: Do You Accept Credit Cards/ REJECT Header-Spamschutzregel 100
+/^Subject: Home Owners ONLY/ REJECT Header-Spamschutzregel 101
+/^Subject: Your Credit Info/ REJECT Header-Spamschutzregel 102
+/^Subject: Do you owe money\?/ REJECT Header-Spamschutzregel 103
+/^Subject: Need a Home Loan? We Can Help!!/ REJECT Header-Spamschutzregel 104
+/^Subject: stock alert/ REJECT Header-Spamschutzregel 105
+/^Subject: contact lenses/ REJECT Header-Spamschutzregel 106
+/^Subject: ENLARGE YOUR PACAKGE GUARANTEED/ REJECT Header-Spamschutzregel 107
+/^Subject: ENLARGE YOUR PACKAGE GUARANTEED/ REJECT Header-Spamschutzregel 108
+/^Subject: We purchase uncollected Judicial Judgments/ REJECT Header-Spamschutzregel 109
+/^Subject: Increase Your Gas Mileage by up to 27%!/ REJECT Header-Spamschutzregel 112
+/^Subject: Willow Flower Herb For Prostate Problems\./ REJECT Header-Spamschutzregel 113
+/^Subject: NEW Increase Your Gas Mileage by 27%/ REJECT Header-Spamschutzregel 114
+/^Subject: The easiest way to make money on the internet!/ REJECT Header-Spamschutzregel 115
+/^Subject: Re: think about this\.\.\./ REJECT Header-Spamschutzregel 116
+/^Subject: think about this\.\.\./ REJECT Header-Spamschutzregel 117
+/^Subject: At Last, Herbal V, the All Natural Alternative!/ REJECT Header-Spamschutzregel 119
+/^Subject: Make Money In Your Sleep! / REJECT Header-Spamschutzregel 120
+/^Subject: FREE Satellite TV System/ REJECT Header-Spamschutzregel 122
+/^Subject: About your site/ REJECT Header-Spamschutzregel 124
+/^Subject: No Deposit VISA or Master Card!/ REJECT Header-Spamschutzregel 126
+/^Subject: FREE Auto Insurance Quote!/ REJECT Header-Spamschutzregel 127
+/^Subject: Need money for college\?/ REJECT Header-Spamschutzregel 131
+/^Subject:(\s+\[[^]]*\])?\s+[-\.{<]*ADV(ertisement)?[-:\.>}\s]/ REJECT Header-Spamschutzregel 153
+#/^Subject:.*\s+ADV$/ REJECT Header-Spamschutzregel 154
+/^Subject: I viewed your site-/ REJECT Header-Spamschutzregel 155
+/^Subject:.*Millions?\s*(E?-?MAIL\s*)?ADDRESS/ REJECT Header-Spamschutzregel 156
+/^Subject:.*(are you (being investigated|in need of a lifestyle)|Free 1 Ounce Silver Coin|All foreign residents. Check out this offer|CAN YOU ADVERTISE TO OVER 20 MILLION E-MAIL ADDRESSES\??|DSL - FREE DSL Modem! FREE Install! NO Contract!|We want to give you a Brand New FREE Motorola Pager|FREE Motorola Pager|Cellphone Signal Booster|You('| ha)?ve qualified for)/ REJECT Header-Spamschutzregel 157
+# /^Subject:.*[ ._]{5,}[^0 ._]\d+$/ REJECT Header-Spamschutzregel 160
+# /^Subject:.*[ ._]{5,}\[[^ ]+\]$/ REJECT Header-Spamschutzregel 161
+/^Subject:.*\sTime[: ]+\d+:\d+:\d+ [AP]M\s*$/i REJECT Header-Spamschutzregel 162
+/^Subject: Snowhite and the Seven Dwarfs - The REAL story!/ REJECT Header-Spamschutzregel 177
+/^Subject: new photos from my party!/ REJECT Header-Spamschutzregel 180
+#/^Subject:.*=\?(euc-kr|ks_c_5601-1987)\?/ REJECT Header-Spamschutzregel 200
+/^Subject: Liebe freunde, es tropft wieder/ REJECT Header-Spamschutzregel 201
+/^Subject: The best gift a wife or girlfriend could ever ask for/ REJECT Header-Spamschutzregel 202
+/^Subject: Increase your drive, stamina, size and performance.. reach your potential!/ REJECT Header-Spamschutzregel 203
+/^Subject: Discover your true sexual potential/ REJECT Header-Spamschutzregel 204
+/^Subject: .*you could need it Pharamaceu tical/ REJECT Header-Spamschutzregel 205
+/^Subject: Nearly 65% of women claim they wish their lover was more adept.. let us help/ REJECT Header-Spamschutzregel 206
+/^Subject: Increased spending on homeland security has created incredible opportunity/ REJECT Header-Spamschutzregel 207
+/^Subject: The security explosion/ REJECT Header-Spamschutzregel 208
+/^Subject: Ermittlungsverfahren gegen Sie.*/ REJECT Header-Spamschutzregel 210
+/^Subject: Bekommen Sie Uhren.*/ REJECT Header-Spamschutzregel 211
+Endif
+#################################################
+
+
+/^To: <ABALTAS@europarl.eu.int>/ REJECT Header-Spamschutzregel 53
+/^To: ACERCAS@europarl.eu.int/ REJECT Header-Spamschutzregel 54
+/^To: infomail@recurrent.com/ REJECT Header-Spamschutzregel 57
+/^X-Spanska:/ REJECT Header-Spamschutzregel 59
+/^From steve-larson1@execs.com/ REJECT Header-Spamschutzregel 110
+/^From @execs.com*/ REJECT Header-Spamschutzregel 111
+/^From: enews@uscav.com/ REJECT Header-Spamschutzregel 118
+/weatherbug\.com/ REJECT Header-Spamschutzregel 123
+/virtumundo\.com/ REJECT Header-Spamschutzregel 125
+/thesexymessage\.com/ REJECT Header-Spamschutzregel 128
+/insideporn\.net/ REJECT Header-Spamschutzregel 129
+/shoplet\.com/ REJECT Header-Spamschutzregel 132
+/real-net\.net/ REJECT Header-Spamschutzregel 133
+/bizinfo/ REJECT Header-Spamschutzregel 134
+/servicenetbest\.com/ REJECT Header-Spamschutzregel 135
+/petter_zhang/ REJECT Header-Spamschutzregel 137
+/^(To|From|Cc|Reply-To):.*Investor Alert/ REJECT Header-Spamschutzregel 142
+/^(To|From|Cc|Reply-To):.*friend@(public.com|localhost.net)/ REJECT Header-Spamschutzregel 143
+/^(To|From|Cc|Reply-To):.*[ <]\d+@(onramp|prodigy|uu)\.net/ REJECT Header-Spamschutzregel 145
+/^(To|From|Cc|Reply-To):.*@funstuff2000.net/ REJECT Header-Spamschutzregel 146
+/^(To|From|Cc|Reply-To):.*(infowatch\.net|nakedmail\d?\.com)/ REJECT Header-Spamschutzregel 147
+/^(To|From|Cc|Reply-To):.*customer@aol/ REJECT Header-Spamschutzregel 148
+/^To: ListMembers@theneteffect/ REJECT Header-Spamschutzregel 149
+/^Reply-To:.*@(china\.com|rever-dreaming\.com|btamail\.net\.cn|amdpress\.com|nakedmail\d?\.com|big-salesfor\.you-now\.net)/ REJECT Header-Spamschutzregel 150
+
+# X-Bulkmail rausgenommen, da dies von UCI-Kinowelt benutzt wird :-(
+#/^X-(Advertisement|\d|UltraMail|Bulkmail): / REJECT Header-Spamschutzregel 166
+/^X-(Advertisement|\d|UltraMail): / REJECT Header-Spamschutzregel 166
+
+/^(Received|Message-Id|X-(Mailer|Sender)):.*\b(E-Broadcaster|Emailer Platinum|eMarksman|Extractor|e-Merge|from stealth[^.]|Global Messenger|GroupMaster|Mailcast|MailKing|Match10|MassE-Mail|massmail\.pl|News Breaker|Powermailer|Quick Shot|Ready Aim Fire|WindoZ|WorldMerge|Yourdora)\b/ REJECT Header-Spamschutzregel 167
+/^X-Mailer:.*\b(Aristotle|Avalanche|Blaster|Bomber|DejaVu|eMerge|Extractor|UltraMail|Sonic|Floodgate|GeoList|Mach10|MegaPro|Aureate|MultiMailer|Bluecom|Achi-Kochi Mail|Direct Email|Andrew's SuperCool Blastoise|MailerGear|Advanced Mass Sender|SpireMail|MailWorkZ|UltimDBMail|Mabry)\b/ REJECT Header-Spamschutzregel 168
+/^X-EM-(Version|Registration):/ WARN TEST DER X-EM-Header
+/^X-AD2000-(Serial|Register):/ REJECT Header-Spamschutzregel 170
+/^X-Server: Advanced Direct Remailer/ REJECT Header-Spamschutzregel 171
+# spamware mistake. real header is "Comments:"
+/^Comment: Authenticated sender is/ REJECT Header-Spamschutzregel 174
+# viruses
+/^(To|From|Cc|Reply-To):.*@sexyfun.net/ REJECT Header-Spamschutzregel 178
+/^Content-Disposition: Multipart message/i REJECT Header-Spamschutzregel 179
+# sendmail Received: header overflow
+/^Received:.*\.{50,}/ REJECT Header-Spamschutzregel 183
+# Date headers do not end in AM or PM.
+/^Date:.* [AP]M/i REJECT Header-Spamschutzregel 193
+# invalid timezone in Date header
+/^Date:.*[+-](1[4-9]|2\d)\d\d$/ REJECT Header-Spamschutzregel 195
+/^From:.*icyhot.bakas24.de/ REJECT Header-Spamschutzregel 209
20sizes.cnf
./updmap.d:
-00updmap.cfg
.keep_app-text_texlive-core-0
+00updmap.cfg
texlive-basic.cfg
texlive-fontsrecommended.cfg
texlive-latex.cfg
./web2c:
-fmtutil.cnf
.keep_app-text_texlive-core-0
+fmtutil.cnf
texmf.cnf
updmap.cfg