--- /dev/null
+<?php
+/***************************************************************************
+* *
+* These apply everywhere and will need setting *
+* *
+***************************************************************************/
+
+/****************************
+********* Mandatory *********
+*****************************/
+
+/**
+* Database connection: DAViCal will attempt to connect to the database by
+* successively applying connection parameters from the array in
+* $c->pg_connect.
+*/
+//$c->pg_connect[] = "dbname=davical user=davical_app";
+$c->pg_connect[] = "dbname=davical user=davical_app port=5432 host=localhost password=v?5T4Ca85LvYKW&s";
+
+
+/****************************
+********* Desirable *********
+*****************************/
+
+/**
+* "system_name" is used to specify the authentication realm of the server, as
+* well as being used as a name to display in various places.
+*
+* Default: DAViCal CalDAV Server
+*/
+$c->system_name = "DAViCal CalDAV Server cal.laktatnebel.de";
+
+/**
+* The CalDAV specification does not define GET on a collection, but typically this is
+* used as a .ics download for the whole collection. This will also enable a download
+* link in the web interface for calendars with entries.
+*
+* Default: false
+*/
+// $c->get_includes_subcollections = true;
+
+/**
+* If "readonly_webdav_collections" is true, then calendars accessed via WebDAV
+* will be read-only. Any changes to them must be applied via CalDAV.
+*
+* You may want to set this to false during your initial setup to make it
+* easier for people to PUT whole calendars or addressbooks as part of migrating
+* their data. After this, it is recommended to turn it off so that clients
+* which have been misconfigured are readily identifiable.
+*
+* Default: true
+*/
+// $c->readonly_webdav_collections = false;
+
+/**
+* This will allow failure on import of collections to apply only to an
+* individual event that is faulty, rather than failing the whole collection.
+*
+* Default: false (fail whole collection)
+*/
+// $c->skip_bad_event_on_import = true;
+
+
+/***************************************************************************
+* *
+* ADMIN web Interface *
+* *
+***************************************************************************/
+
+/**
+* Address displayed on the login page to indicate who you should ask if you
+* have problems logging on. Also for the "From" header of the email sent when
+* a user has lost his password and clicks on the "Help! I've forgotten my
+* password" on the login page.
+*/
+$c->admin_email ='admin@laktatnebel.de';
+
+/**
+* Set this to 'true' in order to restrict the /setup.php page (which contains
+* the entire phpinfo() output) to 'Administrator' users.
+*
+* Default: false
+*/
+$c->restrict_setup_to_admin = true;
+
+/**
+* Restrict access to the administrative pages to only be available on a
+* particular domain name and port. The default is that any DAViCal instance
+* will have the administrative pages active. When any these settings is enabled,
+* requests for administrative URLs such as index.php, admin.php, setup.php etc
+* will be redirected to 'caldav.php', unless the restrictions are fulfilled.
+*/
+// $c->restrict_admin_domain = 'admin.davical.example.com';
+// $c->restrict_admin_port = '8443';
+
+/**
+* The "enable_row_linking" option controls whether javascript is used
+* to make the entire row clickable in browse lists in the administration
+* pages. Since this doesn't work in Konqueror you may want to set this
+* to false if you expect people to be using Konqueror with the DAViCal
+* administration pages.
+*
+* Default: true
+*/
+// $c->enable_row_linking = false;
+
+/**
+* These should be an array of style sheets with a path specified relative
+* to the root directory. Used for overriding display styles in the admin
+* interface.
+* e.g. : $c->local_styles = array('/css/my.css');
+*/
+// $c->local_styles = array();
+// $c->print_styles = array();
+
+
+/***************************************************************************
+* *
+* Debug Options *
+* *
+***************************************************************************/
+
+/**
+* Whenever you think you've found an issue with how DAViCal handles a situation,
+* generating some data on what it's actually doing and whether it can find a
+* certain event in the database etc. can be essential to allow others (or
+* yourself) to understand what's going wrong.
+*
+* There are many different types of debug messages (for more details see
+* debug-config.php), but this will log them all:
+*/
+// $c->dbg["ALL"] = 1;
+
+/**
+* While the above setting will quickly fill your PHP error log and should best
+* be restricted to one or two requests, logging just the client interaction
+* is almost as useful. This should be the minimum for any support request on
+* the mailing list or issue tracker.
+*/
+// $c->dbg["request"] = 1; // The request headers & content
+// $c->dbg['response'] = 1; // The response headers & content
+
+/**
+* Even on a moderately busy server, turning on debug logging for everyone can
+* produce a lot of output in a short time that makes it hard to find the
+* relevant lines. Debug filtering limits logging to certain IP addresses or
+* usernames. (config values are arrays)
+*/
+// $c->dbg_filter["remoteIP"][] = '192.168.1.20';
+// $c->dbg_filter["remoteIP"][] = '192.168.1.21';
+// $c->dbg_filter["authenticatedUser"][] = 'peter';
+// $c->dbg_filter["authenticatedUser"][] = 'john';
+
+
+/***************************************************************************
+* *
+* Caldav Server *
+* *
+***************************************************************************/
+
+/**
+* The "collections_always_exist" value defines whether a MKCALENDAR
+* command is needed to create a calendar collection before calendar
+* resources can be stored in it. You will want to leave this to the
+* default (true) if people will be using Evolution or Sunbird /
+* Lightning against this because that software does not support the
+* creation of calendar collections.
+*
+* Default: true
+*/
+// $c->collections_always_exist = false;
+
+/**
+* The name of a user's "home" calendar and addressbook. These will be created
+* for each new user.
+*
+* Defaults:
+* home_calendar_name: 'calendar'
+* home_addressbook_name: 'addresses'
+*/
+// $c->home_calendar_name = 'calendar';
+// $c->home_addressbook_name = 'addresses';
+
+/**
+* Sets a numeric value indicating the maximum size in octets (bytes) of a resource
+* that the server is willing to accept when an address object resource is stored
+* in an address book collection (e.g. contacts with image attachments).
+* Note that not all clients respect that property and that DAViCal won't deny creating
+* or updating a resource that is larger than the specified limit if the client willingly or
+* unwillingly ignores that property. Currently (late 2018) we only know of iOS devices to handle it properly.
+*
+* Default: 6550000
+*/
+// $c->carddav_max_resource_size = 6550000;
+
+/**
+* If the above options are not suitable for your new users, use this to create
+* a more complex default collection management.
+* Note: if you use this configuration option both $c->home_calendar_name and
+* $c->home_addressbook_name are ignored!
+* See https://wiki.davical.org/index.php/Configuration/settings/default_collections
+*/
+//$c->default_collections=array(
+// array('type'=>'addressbook', 'name'=>'addresses', 'displayname'=>'%fn addressbook', 'privileges'=>null),
+// array('type'=>'calendar', 'name'=>'calendar', 'displayname'=>'%fn calendar', 'privileges'=>null)
+//);
+
+/**
+* An array of groups / permissions which should be automatically added
+* for each new user created. This is a crude mechanism which we
+* will hopefully manage to work out some better approach for in the
+* future. For now, create an array that looks something like:
+* array( 9 => 'R', 4 => 'A' )
+* to create a 'read' relationship to user_no 9 and an 'all' relation
+* with user_no 4.
+*
+* Default: none
+*/
+// $c->default_relationships = array();
+
+/**
+* An array of the privileges which will be configured for a user by default
+* from the possible set of real privileges:
+* 'read', 'write-properties', 'write-content', 'unlock', 'read-acl', 'read-current-user-privilege-set',
+* 'bind', 'unbind', 'write-acl', 'read-free-busy',
+* 'schedule-deliver-invite', 'schedule-deliver-reply', 'schedule-query-freebusy',
+* 'schedule-send-invite', 'schedule-send-reply', 'schedule-send-freebusy'
+*
+* Or also from these aggregated privileges:
+* 'write', 'schedule-deliver', 'schedule-send', 'all'
+*/
+// $c->default_privileges = array('read-free-busy', 'schedule-query-freebusy');
+
+/**
+* An array of fields on the usr record which should be set to specific
+* values when the users are created.
+*
+* Default: none
+*/
+// $c->template_usr = array( 'active' => true,
+// 'locale' => 'it_IT',
+// 'date_format_type' => 'E',
+// 'email_ok' => date('Y-m-d')
+// );
+
+/**
+* If "hide_TODO" is true, then VTODO requested from someone other than the
+* admin or owner of a calendar will not get an answer. Often these todo are
+* only relevant to the owner, but in some shared calendar situations they
+* might not be in which case you should set this to false.
+*
+* Default: true
+*/
+// $c->hide_TODO = false;
+
+/**
+* If true, then VALARM from someone other than the admin or owner of a
+* calendar will not be included in the response. The default is false because
+* the preferred behaviour is to enable/disable the alarms in your CalDAV
+* client software.
+*/
+// $c->hide_alarm = true;
+
+/**
+* If you want to hide older events (in order to save resources, speed up
+* clients, etc.) define the desired time interval in number of days.
+*/
+// $c->hide_older_than = 90;
+
+/**
+* Hide bound collections from certain clients
+* If you want to use iOS (which does not support delegation) in combination
+* with other software which does supports degation, you can use this option
+* to tailor a working solution: bind all collections you want to see on iOS
+* (emulation of delegation) and then hide these collections from other clients
+* with real delegation support.
+*
+* Default: false/not set: always show bound collections
+*
+* If set to true: never show bound collections
+* If set to an array: hide if any header => regex tuple matches
+* Example: Hide bound collections from clients which send a User-Agent header
+* matching regex1 OR an X-Client header matching regex2
+*/
+// $c->hide_bound = array( 'User-Agent'=>'#regex1#', 'X-Client'=>'#regex2#');
+
+/**
+* External subscription (BIND) minimum refresh interval
+* Required if you want to enable remote binding ( webcal subscriptions )
+*
+* Default: none
+*/
+// $c->external_refresh = 60;
+
+/**
+* External subscription (BIND) user agent string
+* Required if your remote calendar only delivers to known user agents.
+*
+* Default: none
+*/
+// $c->external_ua_string = '';
+
+/**
+* If you want to force DAViCal to use HTTP Digest Authentication for CalDAV
+* access. Note that this requires all user passwords to be stored in plain text
+* in the database. It is probably better to configure the webserver to do
+* Digest auth against a separate user database (see below for Webserver Auth).
+*/
+// $c->http_auth_mode = "Digest";
+
+/**
+* Provide freebusy information to any (unauthenticated) user via the
+* freebusy.php URL. Only events marked as PRIVATE will be excluded from the
+* report.
+*
+* Default: false (authentication required)
+*/
+// $c->public_freebusy_url = true;
+
+/**
+* The "support_obsolete_free_busy_property" value controls whether,
+* during a PROPFIND, the obsolete Scheduling property "calendar-free-busy-set"
+* is returned. Set the value to true to support the property only if your
+* client requires it, however note that PROPFIND performance may be
+* adversely affected if you do so.
+* Introduced in DAViCal version 1.1.4 in support of Issue #31 Database
+* Performance Improvements.
+*
+* Default: false
+*/
+// $c->support_obsolete_free_busy_property = false;
+
+/**
+* The default locale will be "en_NZ";
+* If you are in a non-English locale, you can set the default_locale
+* configuration to one of the supported locales.
+*
+* Supported Locales (at present, see: "select * from supported_locales ;" for a full list)
+*
+* "de_DE", "en_NZ", "es_AR", "fr_FR", "nl_NL", "ru_RU"
+*
+* If you want locale support you probably know more about configuring it than me, but
+* at this stage it should be noted that all translations are UTF-8, and pages are
+* served as UTF-8, so you will need to ensure that the UTF-8 versions of these locales
+* are supported on your system.
+*
+* People interested in providing new translations are directed to the Wiki:
+* https://wiki.davical.org/w/Translating_DAViCal
+*/
+$c->default_locale = "de_DE";
+
+/**
+* This is used to construct URLs which are passed in the answers to the client. You may
+* want to force this to a specific domain in responses if your system is accessed by
+* multiple names, otherwise you probably won't need to change it.
+*
+* Default: $_SERVER['SERVER_NAME']
+*/
+$c->domain_name = "cal.triathlon-coaching.com";
+
+/**
+* If this option is set to true, then "@$c->domain_name" is appended to the
+* user login name if it does not contain the @ character. If email addresses
+* are used as user names in Davical, this fixes a problem with MacOS X 10.6
+* Addressbook that cannot login to CardDav account.
+*
+* Default: false
+*/
+// $c->login_append_domain_if_missing = true;
+
+/**
+* Many people want this, but it may be a security issue for you, so it is
+* disabled by default. If you enable it, then confidential / private events
+* will be visible to the 'organizer' or 'attendee' lists. The reason that
+* this becomes a security issue is that this identification needs to be based
+* on the user's e-mail address. The user's e-mail address is generally
+* something which they can set, so they could change it to be the address of
+* an attendee of a meeting and then would be able to read the meeting.
+*
+* Without this, the only person who can view/change PRIVATE or CONFIDENTIAL
+* events in a calendar is someone with full administrative rights to the calendar
+* usually the owner.
+*
+* If the only person that devious is your sysadmin then you probably already
+* enabled this option...
+*
+* Default: false
+*/
+// $c->allow_get_email_visibility = false;
+
+/**
+* Disable calendar-proxy-{read,write} on PROPFIND
+* This can be useful if clients are known to not use this information,
+* as it is very expensive to compute (especially on servers with lots of
+* users who share their collections) and most clients will never use it,
+* or ask for it explicitly using an expand-property REPORT, which is not
+* affected by this option.
+*
+* Default: false/unset
+*
+* If set to false (or unset): always show
+* If set to true: never show
+* If set to an array: hide if any header => regex tuple matches
+*/
+// $c->disable_caldav_proxy_propfind_collections = array( 'User-Agent'=>'#regex1#', 'X-Client'=>'#regex2#');
+
+/**
+* EXPERIMENTAL:
+* If true, names of groups (prefixed with "@") given as an event attendee
+* will get resolved to a list of members of that group. Note that CalDAV
+* clients might get confused by this server behavior until they get
+* synced again.
+*
+* Default: false.
+*/
+// $c->enable_attendee_group_resolution = true;
+
+
+/***************************************************************************
+* *
+* Scheduling *
+* *
+***************************************************************************/
+
+/**
+* If you want to turn off scheduling functions you can set this to 'false' and
+* DAViCal will not advertise the ability to schedule, leaving it to calendar
+* clients to send out and receive scheduling requests.
+*
+* Default: true
+*/
+// $c->enable_auto_schedule = false;
+
+/**
+* If true, then remote scheduling will be enabled. There is a possibility
+* of receiving spam events in calendars if enabled, you will at least know
+* what domain the spam came from as domain key signatures are required for
+* events to be accepted.
+*
+* You probably need to setup Domain Keys for your domain as well as the
+* appropiate DNS SRV records.
+*
+* for example, if DAViCal is installed on cal.example.com you should have
+* DNS SRV records like this:
+* _ischedules._tcp.example.com. IN SRV 0 1 443 cal.example.com
+* _ischedule._tcp.example.com. IN SRV 0 1 80 cal.example.com
+*
+* DNS TXT record for signing outbound requests
+* example:
+* cal._domainkey.example.com. 86400 IN TXT "k=rsa\; t=s\; p=PUBKEY"
+*
+* Default: false
+*/
+// $c->enable_scheduling = true;
+
+/**
+* Domain Key domain to use when signing outbound scheduling requests, this
+* is the domain with the public key in a TXT record as shown above.
+*
+* TODO: enable domain/signing by per user keys, patches welcome.
+*
+* Default: none
+*/
+// $c->scheduling_dkim_domain = '';
+
+/**
+* Domain Key selector to use when signing outbound scheduling requests.
+*
+* TODO: enable selectors/signing by per user keys, patches welcome.
+*
+* Default: 'cal'
+*/
+// $c->scheduling_dkim_selector = 'cal';
+
+/*
+* Domain Key private key
+* Required if you want to enable outbound remote server scheduling
+*
+* Default: none
+*/
+// $c->schedule_private_key = 'PRIVATE-KEY-BASE-64-DATA';
+
+
+/***************************************************************************
+* *
+* Operation behind a Reverse Proxy *
+* *
+***************************************************************************/
+
+/**
+* If you install DAViCal behind a reverse proxy (e.g. an SSL offloader or
+* application firewall, or in order to present services from different machines
+* on a single public IP / hostname), the client IP, protocol and port used may
+* be different from what the web server is reporting to DAViCal. Often, the
+* original values are written to the X-Real-IP and/or X-Forwarded-For,
+* X-Forwarded-Proto and X-Forwarded-Port headers. You can instruct DAViCal to
+* attempt to "do the right thing" and use the content of these headers instead,
+* when they are available.
+*
+* CAUTION: Malicious clients can spoof these headers. When you enable this, you
+* need to make sure your reverse proxy erases any pre-existing values of all
+* these headers, and that no untrusted requests can reach DAViCal without
+* passing the proxy server.
+*
+* Default: false
+*/
+// $c->trust_x_forwarded = true;
+
+/**
+* Instead or in addition to the above, you can compute, override or unset the
+* relevant variables. This is a catch-all for non-standard or advanced
+* environments.
+*/
+
+/* Unset X-Real-IP, as it's not controlled by the reverse proxy. */
+// unset( $_SERVER['HTTP_X_REAL_IP'] );
+// $c->trust_x_forwarded = true;
+
+/* Set all values manually. */
+// $_SERVER['HTTPS'] = 'on';
+// $_SERVER['SERVER_PORT'] = 443;
+// $_SERVER['REMOTE_ADDR'] = $_SERVER['Client-IP'];
+
+
+/***************************************************************************
+* *
+* External Authentication Sources *
+* *
+***************************************************************************/
+
+/**
+* Allow specifying another way to control access of the user by authenticating
+* him against other drivers such has LDAP (the default is the PgSQL DB)
+* $c->authenticate_hook['call'] should be set to the name of the plugin and must
+* be a valid function that will be call like this:
+* call_user_func( $c->authenticate_hook['call'], $username, $password )
+*
+* The login mechanism is used in 2 different places:
+* - for the web interface in: index.php that calls DAViCalSession.php that extends
+* Session.php (from AWL libraries)
+* - for the caldav client in: caldav.php that calls HTTPAuthSession.php
+* Both Session.php and HTTPAuthSession.php check against the
+* authenticate_hook['call'], although for HTTPAuthSession.php this will be for
+* each page. For Session.php this will only occur during login.
+*
+* $c->authenticate_hook['config'] should be set up with any configuration data
+* needed by the authenticate call - see below or in the Wiki for details.
+* If you want to develop your own authentication plugin, have a look at
+* awl/inc/AuthPlugins.php or any of the inc/drivers_*.php files.
+*
+* $c->authenticate_hook['optional'] = true; can be set to try default authentication
+* as well in case the configured hook should report a failure.
+*/
+// $c->authenticate_hook['optional'] = true;
+
+/********************************/
+/******* Other AWL hook *********/
+/********************************/
+// require_once('auth-functions.php');
+// $c->authenticate_hook = array(
+// 'call' => 'AuthExternalAwl',
+// 'config' => array(
+// // A PgSQL database connection string for the database containing user records
+// 'connection' => 'dbname=wrms host=otherhost port=5433 user=general',
+// // Which columns should be fetched from the database
+// 'columns' => "user_no, active, email_ok, joined, last_update AS updated, last_used, username, password, fullname, email",
+// // a WHERE clause to limit the records returned.
+// 'where' => "active AND org_code=7"
+// )
+// );
+
+
+/********************************/
+/*********** LDAP hook **********/
+/********************************/
+/*
+* For Active Directory go down to the next example.
+*/
+
+//$c->authenticate_hook['call'] = 'LDAP_check';
+//$c->authenticate_hook['config'] = array(
+// 'host' => 'www.tennaxia.net', //host name of your LDAP Server
+// 'port' => '389', //port
+
+ /* For the initial bind to be anonymous leave bindDN and passDN
+ commented out */
+// DN to bind to this server enabling to perform request
+// 'bindDN'=> 'cn=manager,cn=internal,dc=tennaxia,dc=net',
+// Password of the previous bindDN to bind to this server enabling to perform request
+// 'passDN'=> 'xxxxxxxx',
+
+// 'protocolVersion' => '3', //Version of LDAP protocol to use
+// 'optReferrals' => 0, //whether to automatically follow referrals returned by the LDAP server
+// 'networkTimeout' => 10, //timeout in seconds
+// 'baseDNUsers'=> 'dc=tennaxia,dc=net', //where to look at valid user
+// 'filterUsers' => 'objectClass=kolabInetOrgPerson', //filter which must validate a user according to RFC4515, i.e. surrounded by brackets
+// 'baseDNGroups' => 'ou=divisions,dc=tennaxia,dc=net', //where to look for groups
+// 'filterGroups' => 'objectClass=groupOfUniqueNames', //filter with same rules as filterUsers
+ /** /!\ "username" should be set and "modified" must be set **/
+// 'mapping_field' => array("username" => "uid",
+// "modified" => "modifyTimestamp",
+// "fullname" => "cn" ,
+// "email" =>"mail"
+// ), //used to create the user based on his ldap properties
+// 'group_mapping_field' => array("username" => "cn",
+// "modified" => "modifyTimestamp",
+// "fullname" => "cn" ,
+// "members" =>"memberUid"
+// ), //used to create the group based on the ldap properties
+// 'group_member_dnfix' => true, // if your "members" field contains the full DN and needs to be truncated to just the uid
+ /** used to set default value for all users, will be overcharged by ldap if defined also in mapping_field **/
+// 'default_value' => array("date_format_type" => "E","locale" => "fr_FR"),
+ /** foreach key set start and length in the string provided by ldap
+ example for openLDAP timestamp : 20070503162215Z **/
+// 'format_updated'=> array('Y' => array(0,4),'m' => array(4,2),'d'=> array(6,2),'H' => array(8,2),'M'=>array(10,2),'S' => array(12,2)),
+// 'startTLS' => 'yes', // Require that TLS is used for LDAP?
+ // If ldap_start_tls is not working, it is probably
+ // because php wants to validate the server's
+ // certificate. Try adding "TLS_REQCERT never" to the
+ // ldap configuration file that php uses (e.g. /etc/ldap.conf
+ // or /etc/ldap/ldap.conf). Of course, this lessens security!
+// 'scope' => 'subtree', // Search scope to use, defaults to subtree.
+// // Allowed values: base, onelevel, subtree.
+//
+// );
+//
+// /* If there is some user/group you do not want to sync from LDAP, put their username in these lists */
+// $c->do_not_sync_from_ldap = array( 'admin' => true );
+// $c->do_not_sync_group_from_ldap = array( 'teamclient1' => true );
+//
+//include('drivers_ldap.php');
+
+/*
+* Use the following LDAP example if you are using Active Directory
+*
+* You will need to change host, passDN and DOMAIN in bindDN
+* and baseDNUsers.
+*/
+//$c->authenticate_hook['call'] = 'LDAP_check';
+//$c->authenticate_hook['config'] = array(
+// 'host' => 'ldap://ldap.example.net',
+// 'bindDN' => 'auth@DOMAIN',
+// 'passDN' => 'secret',
+// 'baseDNUsers' => 'dc=DOMAIN,dc=local',
+// 'protocolVersion' => 3,
+// 'optReferrals' => 0,
+// 'networkTimeout' => 10,
+// 'filterUsers' => '(&(objectcategory=person)(objectclass=user)(givenname=*))',
+// 'mapping_field' => array("username" => "uid",
+// "fullname" => "cn" ,
+// "email" => "mail"),
+// 'default_value' => array("date_format_type" => "E","locale" => "en_NZ"),
+// 'format_updated' => array('Y' => array(0,4),'m' => array(4,2),'d'=> array(6,2),'H' => array(8,2),'M'=>array(10,2),'S' => array(12,2))
+// );
+//
+// /* If there is some user/group you do not want to sync from LDAP, put their username in these lists */
+// $c->do_not_sync_from_ldap = array( 'admin' => true );
+// $c->do_not_sync_group_from_ldap = array( 'teamclient1' => true );
+//
+//include('drivers_ldap.php');
+
+
+/********************************/
+/****** PAM and IMAP hooks ******/
+/********************************/
+
+/**
+* Authentication against PAM using the Squid helper script.
+*/
+//$c->authenticate_hook = array(
+// 'call' => 'SQUID_PAM_check',
+// 'config' => array( 'script' => '/usr/bin/pam_auth', 'email_base' => 'example.com' )
+// );
+//include('drivers_squid_pam.php');
+
+/**
+* Authentication against PAM/system password database using pwauth.
+*/
+//$c->authenticate_hook = array('call' => 'PWAUTH_PAM_check',
+// 'config' => array('path' => '/usr/sbin/pwauth',
+// 'email_base' => 'example.com'));
+//include('drivers_pwauth_pam.php');
+
+/**
+* Authentication against IMAP using the imap_open function.
+*/
+//$c->authenticate_hook['call'] = 'IMAP_PAM_check';
+//$c->authenticate_hook['config'] = array(
+// 'imap_url' => '{localhost:993/imap/ssl/novalidate-cert}',
+// 'email_base' => 'example.com'
+//);
+//include('drivers_imap_pam.php');
+
+/********************************/
+/****** Webserver does Auth *****/
+/********************************/
+
+/**
+* It is quite common that the webserver can do the authentication for you,
+* and you just want DAViCal to trust the username that the webserver will pass
+* through (in the REMOTE_USER or REDIRECT_REMOTE_USER environment variable).
+* In that case, set server_auth_type (can be an array) to the value provided by
+* the webserver in the AUTH_TYPE environment variable, as well as the two
+* following options as needed.
+*
+* Note that this method does not pull account details from anywhere, so you
+* will first need to create an account in DAViCal for each username that will
+* authenticate in this way - it's just that the password on that account will
+* be ignored and authentication will happen through the authentication method
+* that the webserver is configured with.
+*/
+$c->authenticate_hook['server_auth_type'] = 'Basic';
+
+/**
+* Uncomment this to use Webserver Auth for CalDAV access in addition to the
+* Admin web pages.
+*/
+//include_once('AuthPlugins.php');
+
+/**
+* If your Webserver Auth method provides a logout URL (traditional Basic Auth
+* does not), you can enter it here so the Logout link in the Admin web pages
+* can point to it.
+*/
+//$c->authenticate_hook['logout'] = '/logout';
+
+
+/***************************************************************************
+* *
+* Push Notification Server *
+* *
+***************************************************************************/
+
+/*
+* This enable XMPP PubSub push notifications to clients that request them.
+* N.B. this will publish urls for ALL updates and does NOT restrict
+* subscription permissions on the jabber server! That means anyone with
+* read access to the pubsub tree of your jabber server can watch for updates,
+* they will only see URL's to the updated entries not the calendar data.
+*
+* Only tested with ejabberd 2.0.x
+*/
+
+// $c->notifications_server = array( 'host' => $_SERVER['SERVER_NAME'], // jabber server hostname
+// 'jid' => 'user@example.com', // user(JID) to login/ publish as
+// 'password' => '', // password for above account
+// // 'debug_jid' => 'otheruser@example.com' // send a copy of all publishes to this jid
+// );
+// include ( 'pubsub.php' );
+
+
+/***************************************************************************
+* *
+* Detailed Metrics *
+* *
+***************************************************************************/
+
+/*
+* This enables a /metrics.php URL containing detailed metrics about the
+* operation of DAViCal. Ideally you will be running memcache if you are
+* interested in keeping metrics, but there is a simple metrics collection
+* available to you without running memcache.
+*
+* Note that there is currently no way of enabling metrics via memcache
+* without memcache being enabled for all of DAViCal.
+*/
+// $c->metrics_style = 'counters'; // Just the simple counter-based metrics
+// $c->metrics_style = 'memcache'; // Only the metrics using memcache
+// $c->metrics_style = 'both'; // Both styles of metrics
+// $c->metrics_collectors = array('127.0.0.1'); // Restrict access to only this IP address
+// $c->metrics_require_user = 'metricsuser'; // Restrict access to only connections authenticating as this user
+
+/***************************************************************************
+* *
+* Audit Logging *
+* *
+***************************************************************************/
+/* To enable audit logging to syslog you can uncomment the following line.
+*
+* This file is suitable for basic auditing, if you want/need more comprehensive
+* logging then see:
+* http://wiki.davical.org/index.php/Configuration/hooks/log_caldav_action
+*/
+//include('log_caldav_action.php');
+
--- /dev/null
+
+
+# DAVICAL
+# for local davical users
+local davical davical_app trust
+local davical davical_dba trust
+# for davical web-application
+host davical davical_app ::1/128 md5
--- /dev/null
+<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * phpMyAdmin sample configuration, you can use it as base for
+ * manual configuration. For easier setup you can use setup/
+ *
+ * All directives are explained in documentation in the doc/ folder
+ * or at <https://docs.phpmyadmin.net/>.
+ *
+ * @package PhpMyAdmin
+ */
+
+/**
+ * This is needed for cookie based authentication to encrypt password in
+ * cookie. Needs to be 32 chars long.
+ */
+$cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
+
+/**
+ * Servers configuration
+ */
+$i = 0;
+
+/**
+ * First server
+ */
+$i++;
+/* Authentication type */
+$cfg['Servers'][$i]['auth_type'] = 'cookie';
+/* Server parameters */
+$cfg['Servers'][$i]['host'] = 'localhost';
+$cfg['Servers'][$i]['compress'] = false;
+$cfg['Servers'][$i]['AllowNoPassword'] = false;
+
+/**
+ * phpMyAdmin configuration storage settings.
+ */
+
+/* User used to manipulate with storage */
+// $cfg['Servers'][$i]['controlhost'] = '';
+// $cfg['Servers'][$i]['controlport'] = '';
+// $cfg['Servers'][$i]['controluser'] = 'pma';
+// $cfg['Servers'][$i]['controlpass'] = 'pmapass';
+
+/* Storage database and tables */
+// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
+// $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
+// $cfg['Servers'][$i]['relation'] = 'pma__relation';
+// $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
+// $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
+// $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
+// $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
+// $cfg['Servers'][$i]['history'] = 'pma__history';
+// $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
+// $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
+// $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
+// $cfg['Servers'][$i]['recent'] = 'pma__recent';
+// $cfg['Servers'][$i]['favorite'] = 'pma__favorite';
+// $cfg['Servers'][$i]['users'] = 'pma__users';
+// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
+// $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
+// $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
+// $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
+// $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
+// $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';
+
+/**
+ * End of servers configuration
+ */
+
+/**
+ * Directories for saving/loading files from server
+ */
+$cfg['UploadDir'] = '';
+$cfg['SaveDir'] = '';
+
+/**
+ * Whether to display icons or text or both icons and text in table row
+ * action segment. Value can be either of 'icons', 'text' or 'both'.
+ * default = 'both'
+ */
+//$cfg['RowActionType'] = 'icons';
+
+/**
+ * Defines whether a user should be displayed a "show all (records)"
+ * button in browse mode or not.
+ * default = false
+ */
+$cfg['ShowAll'] = true;
+
+/**
+ * Number of rows displayed when browsing a result set. If the result
+ * set contains more rows, "Previous" and "Next".
+ * Possible values: 25, 50, 100, 250, 500
+ * default = 25
+ */
+$cfg['MaxRows'] = 500;
+
+/**
+ * Disallow editing of binary fields
+ * valid values are:
+ * false allow editing
+ * 'blob' allow editing except for BLOB fields
+ * 'noblob' disallow editing except for BLOB fields
+ * 'all' disallow editing
+ * default = 'blob'
+ */
+//$cfg['ProtectBinary'] = false;
+
+/**
+ * Default language to use, if not browser-defined or user-defined
+ * (you find all languages in the locale folder)
+ * uncomment the desired line:
+ * default = 'en'
+ */
+//$cfg['DefaultLang'] = 'en';
+$cfg['DefaultLang'] = 'de';
+
+/**
+ * How many columns should be used for table display of a database?
+ * (a value larger than 1 results in some information being hidden)
+ * default = 1
+ */
+//$cfg['PropertiesNumColumns'] = 2;
+
+/**
+ * Set to true if you want DB-based query history.If false, this utilizes
+ * JS-routines to display query history (lost by window close)
+ *
+ * This requires configuration storage enabled, see above.
+ * default = false
+ */
+$cfg['QueryHistoryDB'] = true;
+
+/**
+ * When using DB-based query history, how many entries should be kept?
+ * default = 25
+ */
+$cfg['QueryHistoryMax'] = 100;
+
+/**
+ * Whether or not to query the user before sending the error report to
+ * the phpMyAdmin team when a JavaScript error occurs
+ *
+ * Available options
+ * ('ask' | 'always' | 'never')
+ * default = 'ask'
+ */
+//$cfg['SendErrorReports'] = 'always';
+
+/**
+ * You can find more configuration options in the documentation
+ * in the doc/ folder or at <https://docs.phpmyadmin.net/>.
+ */
+
+
+
+
--- /dev/null
+<?php
+
+ /**
+ * Central phpPgAdmin configuration. As a user you may modify the
+ * settings here for your particular configuration.
+ *
+ * $Id: config.inc.php-dist,v 1.55 2008/02/18 21:10:31 xzilla Exp $
+ */
+
+ // An example server. Create as many of these as you wish,
+ // indexed from zero upwards.
+
+ // Display name for the server on the login screen
+ $conf['servers'][0]['desc'] = 'PostgreSQL';
+
+ // Hostname or IP address for server. Use '' for UNIX domain socket.
+ // use 'localhost' for TCP/IP connection on this computer
+ $conf['servers'][0]['host'] = '';
+
+ // Database port on server (5432 is the PostgreSQL default)
+ $conf['servers'][0]['port'] = 5432;
+
+ // Database SSL mode
+ // Possible options: disable, allow, prefer, require
+ // To require SSL on older servers use option: legacy
+ // To ignore the SSL mode, use option: unspecified
+ $conf['servers'][0]['sslmode'] = 'allow';
+
+ // Change the default database only if you cannot connect to template1.
+ // For a PostgreSQL 8.1+ server, you can set this to 'postgres'.
+ $conf['servers'][0]['defaultdb'] = 'template1';
+
+ // Specify the path to the database dump utilities for this server.
+ // You can set these to '' if no dumper is available.
+ $conf['servers'][0]['pg_dump_path'] = '/usr/bin/pg_dump';
+ $conf['servers'][0]['pg_dumpall_path'] = '/usr/bin/pg_dumpall';
+
+ // Example for a second server (PostgreSQL for Windows)
+ //$conf['servers'][1]['desc'] = 'Test Server';
+ //$conf['servers'][1]['host'] = '127.0.0.1';
+ //$conf['servers'][1]['port'] = 5432;
+ //$conf['servers'][1]['sslmode'] = 'allow';
+ //$conf['servers'][1]['defaultdb'] = 'template1';
+ //$conf['servers'][1]['pg_dump_path'] = 'C:\\Program Files\\PostgreSQL\\8.0\\bin\\pg_dump.exe';
+ //$conf['servers'][1]['pg_dumpall_path'] = 'C:\\Program Files\\PostgreSQL\\8.0\\bin\\pg_dumpall.exe';
+
+
+ /* Groups definition */
+ /* Groups allow administrators to logicaly group servers together under
+ * group nodes in the left browser tree
+ *
+ * The group '0' description
+ */
+ //$conf['srv_groups'][0]['desc'] = 'group one';
+
+ /* Add here servers indexes belonging to the group '0' separated by comma */
+ //$conf['srv_groups'][0]['servers'] = '0,1,2';
+
+ /* A server can belong to multi groups. Here server 1 is referenced in both
+ * 'group one' and 'group two'*/
+ //$conf['srv_groups'][1]['desc'] = 'group two';
+ //$conf['srv_groups'][1]['servers'] = '3,1';
+
+ /* A group can be nested in one or more existing groups using the 'parents'
+ * parameter. Here the group 'group three' contains only one server and will
+ * appear as a subgroup in both 'group one' and 'group two':
+ */
+ //$conf['srv_groups'][2]['desc'] = 'group three';
+ //$conf['srv_groups'][2]['servers'] = '4';
+ //$conf['srv_groups'][2]['parents'] = '0,1';
+
+ /* Warning: Only groups with no parents appears at the root of the tree. */
+
+ /* You can apply specific theme depending on servers, users and databases
+ * The priority order is :
+ * * the theme defined for a server
+ * * the theme defined for a database apply over the server one
+ * * the theme defined for a user apply over the database one
+ */
+ /* Example for servers */
+ //$conf['servers'][0]['theme']['default'] = 'default';
+ /* Example for users */
+ //$conf['servers'][0]['theme']['user']['specific_user'] = 'default';
+ /* Example for databases */
+ //$conf['servers'][0]['theme']['db']['specific_db'] = 'default';
+
+ // Default language. E.g.: 'english', 'polish', etc. See lang/ directory
+ // for all possibilities. If you specify 'auto' (the default) it will use
+ // your browser preference.
+ $conf['default_lang'] = 'auto';
+
+ // AutoComplete uses AJAX interaction to list foreign key values
+ // on insert fields. It currently only works on single column
+ // foreign keys. You can choose one of the following values:
+ // 'default on' enables AutoComplete and turns it on by default.
+ // 'default off' enables AutoComplete but turns it off by default.
+ // 'disable' disables AutoComplete.
+ $conf['autocomplete'] = 'default on';
+
+ // If extra login security is true, then logins via phpPgAdmin with no
+ // password or certain usernames (pgsql, postgres, root, administrator)
+ // will be denied. Only set this false once you have read the FAQ and
+ // understand how to change PostgreSQL's pg_hba.conf to enable
+ // passworded local connections.
+ $conf['extra_login_security'] = false ; //true;
+
+ // Only show owned databases?
+ // Note: This will simply hide other databases in the list - this does
+ // not in any way prevent your users from seeing other database by
+ // other means. (e.g. Run 'SELECT * FROM pg_database' in the SQL area.)
+ $conf['owned_only'] = false;
+
+ // Display comments on objects? Comments are a good way of documenting
+ // a database, but they do take up space in the interface.
+ $conf['show_comments'] = true;
+
+ // Display "advanced" objects? Setting this to true will show
+ // aggregates, types, operators, operator classes, conversions,
+ // languages and casts in phpPgAdmin. These objects are rarely
+ // administered and can clutter the interface.
+ $conf['show_advanced'] = false;
+
+ // Display "system" objects?
+ $conf['show_system'] = false;
+
+ // Minimum length users can set their password to.
+ $conf['min_password_length'] = 1;
+
+ // Width of the left frame in pixels (object browser)
+ $conf['left_width'] = 500;
+
+ // Which look & feel theme to use
+ $conf['theme'] = 'default';
+
+ // Show OIDs when browsing tables?
+ // Only supported in versions <=11
+ $conf['show_oids'] = false;
+
+ // Max rows to show on a page when browsing record sets
+ $conf['max_rows'] = 500;
+
+ // Max chars of each field to display by default in browse mode
+ $conf['max_chars'] = 1000;
+
+ // Send XHTML strict headers?
+ $conf['use_xhtml_strict'] = false;
+
+ // Base URL for PostgreSQL documentation.
+ // '%s', if present, will be replaced with the PostgreSQL version
+ // (e.g. 8.4 )
+ $conf['help_base'] = 'http://www.postgresql.org/docs/%s/interactive/';
+
+ // Configuration for ajax scripts
+ // Time in seconds. If set to 0, refreshing data using ajax will be disabled (locks and activity pages)
+ $conf['ajax_refresh'] = 3;
+
+ /** Plugins management
+ * Add plugin names to the following array to activate them
+ * Example:
+ * $conf['plugins'] = array(
+ * 'Example',
+ * 'Slony'
+ * );
+ */
+ $conf['plugins'] = array();
+
+ /*****************************************
+ * Don't modify anything below this line *
+ *****************************************/
+
+ $conf['version'] = 19;
+
+?>
--- /dev/null
+\connect rainloop
+--
+-- PostgreSQL database dump
+--
+
+-- Dumped from database version 9.6.24
+-- Dumped by pg_dump version 9.6.24
+
+SET statement_timeout = 0;
+SET lock_timeout = 0;
+SET idle_in_transaction_session_timeout = 0;
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = on;
+SELECT pg_catalog.set_config('search_path', '', false);
+SET check_function_bodies = false;
+SET xmloption = content;
+SET client_min_messages = warning;
+SET row_security = off;
+
+--
+-- Name: id_user; Type: SEQUENCE SET; Schema: public; Owner: rainloop
+--
+
+SELECT pg_catalog.setval('public.id_user', 6, true);
+
+
+--
+-- Data for Name: rainloop_ab_contacts; Type: TABLE DATA; Schema: public; Owner: rainloop
+--
+
+INSERT INTO public.rainloop_ab_contacts VALUES (1, '74e21cd4-4046-481c-9415-4230b77dfd76', 2, 'Namasto', 1559550213, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (2, '598928a4-dd05-492c-8bb4-487b8341fd74', 2, 'Namasto', 1559551290, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (3, '092c4283-0628-480d-90d1-425a8c436085', 2, 'Jan Fahning', 1559558125, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (4, '9b8cd1a7-0b87-4d43-9f79-d5392b1ccad1', 2, 'nicole.wilfinger@raabvitalfood.de', 1559643676, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (5, '8acd3333-4b0e-47a7-91fe-45908f8b334d', 2, 'KiWAMi', 1559647602, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (6, 'c3a41a5b-407c-4332-b4ec-b02e90aede53', 2, 'info@laufwerk-hamburg.de', 1559731030, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (7, '2365ec38-cedb-4134-9705-d3750742d0de', 1, 'Schlossallee Immobilien AG', 1560254789, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (8, 'b283aa63-f998-4fbe-b22c-d1df45a368eb', 1, 'ole.rosentreter@teambank.de', 1560413379, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (9, '7e11998a-1b5a-4620-a69a-4833251850fc', 1, 'patrick.stadler@owayo.com', 1560414281, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (10, '4acd383e-bb32-42b5-b458-a548702e8fab', 1, 'ole@wechselzonenluder.de', 1560415519, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (11, 'd5ddc54b-7570-480f-8931-e43bb514db28', 1, 'astrid@wechselzonenluder.de', 1560415519, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (12, 'fe2d4fab-5a83-4b4d-812d-67290b2737e4', 2, 'Dana.Porzberg@bkk-mobil-oil.de', 1560418710, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (13, '7a584287-8907-45da-952d-c2469227e458', 2, 'Birte Podeyn', 1560435711, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (14, 'f894aceb-87a7-4599-ad67-96d9eb6ab469', 2, 'Zone3-Store', 1560771008, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (15, '1c42c6ae-87a2-4951-bad4-fb95051bba32', 2, 'info@exxos.de', 1560771008, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (16, 'c2c80930-6252-4b8a-88f7-0c94e8a6cafa', 2, 'rookies@triabolos.de', 1560855526, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (17, 'd110c943-1685-4923-936d-664b991845ee', 1, 'Björn Röder', 1561363203, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (18, 'b4395e5a-cd57-4bda-a289-d4f1de96ae74', 2, 'info@spiraldynamik-bubos.de', 1561381501, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (19, 'd179951e-d5d4-4959-be4c-80d6138e9eb0', 2, 'triabolos.ironman.hh@gmail.com', 1561454733, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (20, 'f772729e-aabe-4ced-b014-29edf1104258', 1, 'Sonja Schwenk', 1561465853, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (21, '9a01de4a-97a3-4560-af40-7514ab6a71da', 1, 'Thomas Krell', 1561467974, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (22, 'a81971b7-617b-4078-9cf4-60d7c7ec8226', 2, 'Andrea Bubos', 1561469188, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (23, '052cec62-08a7-4e60-91bb-06954f61be90', 2, 'Hausverwaltg Friedrichs', 1561470920, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (24, 'ab0a1ba9-e56f-46bd-a1d6-ebf0296d8b47', 1, 'instagram@wechselzonenluder.de', 1561625427, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (25, '2a551476-aa47-467b-930b-febf2c184917', 1, 'instagram@triathlon-camp-andalusien.de', 1561625427, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (26, '562b9162-268b-4441-97fa-86cd6e58d4f2', 1, 'uirosentreter@t-online.de', 1561639969, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (27, '96c0cd65-6aeb-4c7b-b48e-c45c8f49c2f3', 2, 'Ole Benjamin Rosentreter', 1561979415, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (28, '2c315690-574d-4009-a04a-01fc7343b2fb', 2, 'privat@ina-rosentreter.de', 1561988535, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (29, '9c2eafda-27bf-4ba3-a1ba-c2261c35e814', 2, 'uirosentreter@t-online.de', 1562600237, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (30, '14a7edeb-de6c-4b4f-973e-d060fd0c1d87', 2, 'Maïlys Sangla', 1562775422, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (31, '32eccbf6-08bc-4bb2-b85f-7cc5518dbfd8', 2, 'Jiakina Annika Weidner', 1563990408, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (32, '51d8db32-d3e4-4b3d-8037-32b26bfe5a26', 2, 'Ole Benjamin Rosentreter', 1564053455, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (33, 'd6cf07c2-924b-404c-8c40-f202346af645', 2, 'Strandmuschel via Booking.com', 1564054909, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (34, '0348346c-4241-4a40-b811-2e3fee540306', 2, 'Josef Blumenfelder CHECK24', 1565174932, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (35, '7a2c0393-ddca-4410-a130-3568002c92f0', 2, 'jan.erdmann@finanzcheck.de', 1565186325, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (36, '4dd5316e-d49b-4b7d-a284-1ef89b10e0cb', 2, 'info@physio-mundsburg.de', 1565186619, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (37, 'a4a86373-f37c-49f9-9493-d06995db71b3', 2, 'Aboservice spomedis', 1565196316, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (38, '5f939362-1ab9-4781-a202-a4bda2080489', 2, 'Handelsblatt Fachmedien Shop', 1565197206, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (39, '4c3313b8-a333-45a2-b9a9-2af5d6c62010', 2, 'Sebastian Rosenkranz', 1566403510, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (40, 'eaaf9ecd-8055-4524-b0fe-303e594df2e1', 2, 'K. Schneider', 1566406220, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (41, '637ab0a3-75eb-469f-aec8-44d75b98bdbe', 2, 'Ole B. R.', 1566815362, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (42, '16480133-cf09-4bf9-9014-f4b3dc4ffffc', 2, 'Benjamin Trocha', 1566987868, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (43, '68eb663d-fcb2-4a44-94b7-d39a907006b1', 2, 'podologie elke kunte', 1567067264, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (44, '5a3a7c78-8082-46c1-bc59-ccdecb790f6f', 2, 'Christel Haaf', 1567081836, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (45, '952cd1fd-70f5-424d-b315-a95249cae8dc', 1, 'Geschäftsstelle BAYERN 07', 1567496266, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (46, '106dacee-f9ff-45ab-9e68-57aed29f7e82', 2, 'Urlaubshof Jacobsen', 1567697441, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (47, '62aafb8f-b33f-4702-8133-06ce9b39135b', 2, 'Leonie Güldenpfennig', 1568647267, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (48, '9e53e333-e123-4b53-87cf-5905f700e4b8', 2, 'waltersorgenfrei@t-online.de', 1568707773, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (49, '9b702780-fd29-4ca5-b8ba-2d724809053b', 2, 'Nina /BDF HAM', 1568713077, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (50, '3506c17e-924f-46fb-b591-ac06fa4c4dc5', 2, 'Nina /BDF HAM', 1568713220, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (51, '2e6fadab-697a-47ba-b251-08b96012c080', 2, 'Johannsen, Nina /BDF HAM', 1568713583, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (52, '3014c0b0-e3b5-4bb4-8911-4f117285deb1', 2, 'Johannsen, Nina /BDF HAM', 1568713729, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (53, '2362ead2-5050-4405-a62f-dcb2d16e3449', 2, 'Johannsen, Nina /BDF HAM', 1568713756, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (54, 'fe0f2ef5-1757-4d3e-8b73-5a5b57cde472', 2, 'Johannsen, Nina /BDF HAM', 1568714432, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (55, 'fd520946-0cf8-48f4-be8f-6e7d0aabfcfb', 2, 'Johannsen, Nina /BDF HAM', 1568714465, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (56, 'cde6539e-8645-4bd2-a202-378205eb8a21', 2, 'Johannsen, Nina /BDF HAM', 1568714528, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (57, '86db5479-fd39-4794-a204-a6d9c113018f', 2, 'Johannsen, Nina /BDF HAM', 1568714580, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (58, '910985db-1e40-4793-8379-ab2c9b838162', 2, 'Johannsen, Nina /BDF HAM', 1568714630, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (59, '31f1fe00-0c02-4c79-8bd0-6a1d031f2f7c', 2, 'Johannsen, Nina /BDF HAM', 1568716344, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (60, '9107f003-268c-4f48-b808-92df2dafc44e', 2, 'Johannsen, Nina /BDF HAM', 1568716736, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (61, 'c4f5a855-a747-44a2-8edb-cb91754055d9', 2, 'Johannsen, Nina /BDF HAM', 1568717002, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (62, 'd8040582-96e4-4e6b-9b3a-49748fbe3e47', 2, 'Johannsen, Nina /BDF HAM', 1568717017, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (63, '874cd927-27c8-4d1b-ab61-1799ea1210ef', 2, 'Johannsen, Nina /BDF HAM', 1568717074, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (64, '6a7c9936-4333-4d18-8ef9-132b6e57376b', 2, 'Johannsen, Nina /BDF HAM', 1568717166, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (65, '663aaeb4-779f-4c44-b55e-d93fd4fcda0b', 2, 'Johannsen, Nina /BDF HAM', 1568718102, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (66, 'b982108e-cd4c-4093-a39d-7af358a4c970', 2, 'Johannsen, Nina /BDF HAM', 1568718162, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (67, '1c6301ba-214a-46d8-8562-7c0102db4b0f', 2, 'Johannsen, Nina /BDF HAM', 1568718550, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (68, '5b6df09e-17da-4cf8-90b9-d877a2c51cfb', 2, 'Johannsen, Nina /BDF HAM', 1568718586, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (69, '973c4041-3c4d-46d8-8ff3-059e8ceda243', 2, 'Johannsen, Nina /BDF HAM', 1568724116, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (70, '0c08a8c5-aba2-40d9-825e-54e7f8a27fa1', 2, 'Johannsen, Nina /BDF HAM', 1568804241, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (71, 'a156784f-c9ff-480e-8905-5270dc5e62d0', 2, 'Leonie Güldenpfennig', 1568888794, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (72, '7f445c61-5408-4d3a-b07c-bf27f63b3742', 2, 'Susen Julia Laß', 1569243268, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (73, 'd5cc3ff5-2682-4dcc-b2ac-32cce861d308', 2, 'info@ski-outdoor-shop.de', 1569400826, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (74, '7c8edc3f-4ba6-4cd7-b9d8-dd7f638c7a27', 2, 'choose75@gmx.net', 1570006162, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (75, '15b1d9b0-0f67-43ce-886e-5c47a8b0362c', 2, 'Hardloop', 1570013690, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (76, 'b6747f7e-ebcc-44e6-94bb-4b3c8e9cdf6c', 2, 'HARDLOOP', 1571064126, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (77, '9340a7a8-b562-465e-bae3-39037ebcd0c4', 2, 'Bergzeit no-reply', 1571064421, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (78, '5eacb7fd-0ffc-44bd-9ec8-2d50cbc8a35b', 2, 'service@bergzeit.de', 1571064454, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (79, '907ce992-0544-4006-995e-b83b04be7dbf', 2, 'Leonie Güldenpfennig', 1571148722, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (80, 'e6566052-705f-4ccc-95b4-a3d8dda8b002', 2, 'Leonie Güldenpfennig', 1571212617, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (81, '7b0c9063-3ac4-4c9f-8024-0f344a558952', 2, 'info@bike-components.de', 1571307296, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (82, '397f86ac-45b3-44c8-9c0d-4753f18355b8', 2, 'Spreadshirt Service', 1572868215, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (83, 'e0a7dad2-cd47-4c99-8e50-ea31ab4695b0', 2, 'Leonie Güldenpfennig', 1572872825, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (84, '75792560-3bca-4f7d-a430-b9dddb4c883b', 2, 'Leonie Güldenpfennig', 1572890425, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (85, '9958fb54-a46c-4e89-b967-e7178ed8a4e0', 2, 'Leonie Güldenpfennig', 1572896810, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (86, 'd64851bd-a129-4555-b105-bd53b58c9788', 2, 'Anna Beek', 1573031073, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (87, '88695d42-073b-42be-b016-249bba2ffb63', 2, 'Gesa Birnkraut', 1573031224, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (88, '44a563a7-7d4c-45e4-9481-71f7e26ad5dd', 1, 'Roethlein Christina', 1573040766, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (89, '84375aef-d766-4429-8806-5ee194563a7a', 2, 'Leonie Güldenpfennig', 1573054179, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (90, 'c63b3df1-5004-4824-a8d7-81c86e25e11f', 2, 'Yvonne Ewen', 1573054698, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (91, '84df5313-45ed-4bfb-807c-048ed09c0f3c', 2, 'Yvonne Ewen', 1573059754, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (92, '89bfff3e-e4c6-4a97-906d-aef8ccb4aec9', 2, 'Yvonne Ewen', 1573068538, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (93, '073d2800-d589-43c7-ab91-80a124a0d977', 2, 'Yvonne Ewen', 1573122093, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (94, '0cfcc343-2639-46b9-aa5f-a7f62047ba38', 2, 'Leonie Güldenpfennig', 1573122206, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (95, 'e9cf9389-2946-4a3b-9af4-a20762988158', 2, 'gewinnen@tri-mag.de', 1574085144, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (96, '1dce1a0f-a962-4f14-bb5f-98dadec5b02b', 2, 'Service Internistenpraxis', 1574173813, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (97, '9ca9caae-a1e2-4baa-9ae5-af21858e37f2', 2, 'Hans-Peter Dannenberg', 1574183985, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (98, '05c3b420-8fdc-44aa-800b-44e67afd13be', 2, 'Leonie Güldenpfennig', 1574240387, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (99, '9aee44ad-eaa9-4853-99c0-11ec0389bedc', 2, 'werkstatt@trionik.de', 1574359002, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (100, 'cd879e70-9594-4f08-aa78-2a69325701bc', 2, 'Triabolos Radtrainingslager', 1574853193, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (101, '44b556ee-e0c7-41e1-aabc-f72a76dc6b51', 1, 'Frank Marschler', 1575291181, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (102, 'e3a6e865-086b-4d0e-8802-2d04de8d6b93', 2, 'ASICS Outlet', 1575298318, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (103, 'c8ac15a3-59e4-43b0-8c66-cf9688bee46a', 2, 'paypal.eu@asics.com', 1575298415, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (104, 'ac79ff89-1a42-40c4-ba53-05fae8830d79', 1, 'CHIPZEIT.DE Support', 1576067715, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (105, '9b991131-c554-45f6-8bde-5fe7543d8d41', 1, 'info@btv-info.de', 1576071865, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (106, '5839f0fb-d125-4164-bef3-d2046c48c9b3', 2, 'Manuel Ellmers', 1576504471, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (107, '53cbe9cb-50aa-4f73-9ad5-bd28fd32f363', 2, 'FLUGPHASE Boarding', 1578319360, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (108, 'aabbd2d4-8d0d-4bc7-bea7-46678dc70576', 2, 'Leonie Güldenpfennig', 1578336096, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (109, '21e5e7d2-363a-4663-a54c-649ffbe753f6', 2, 'Leonie Güldenpfennig', 1578336215, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (110, 'db50dfb9-c21f-4c00-8e2d-6ce00e651730', 1, 'info@bike24.net', 1578389152, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (111, 'dfd34f16-fd3b-41eb-8ebe-0001b2c825cf', 2, 'kundenservice@agu.com', 1578395982, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (112, '4e8c50c8-6ffb-45e5-bb53-1e06fad4ae5f', 2, 'fizik Shop Online', 1578416633, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (113, '73bf2f47-3464-4535-9632-b57eaabbeb4c', 2, 'Alice Ferrari', 1578478278, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (114, '083f7433-4ed4-4e95-aa82-9a78208e9752', 1, 'anita--meyer@t-online.de', 1578905249, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (115, 'be8f5099-ad45-40fd-abaf-985faee43333', 1, 'Roethlein Christina', 1578995813, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (116, '54ae3bc0-8f45-43fb-9dce-5b690368f755', 1, 'Roethlein Christina', 1579002272, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (117, '0f508960-5429-41b0-9359-6f0a9218c640', 1, 'Roethlein Christina', 1579002315, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (118, '4095dc1a-3d22-4e09-8c75-69795b07dd62', 2, 'Johannsen, Nina /BDF HAM', 1579006990, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (119, 'b0ab03d6-43c7-4e25-b014-4d7134e172e8', 2, 'Leonie Güldenpfennig', 1579007789, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (120, 'f292eaca-daf1-437a-95af-d8a9e3a3ec5f', 2, 'STAPS | Yannick Nodler', 1579007981, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (121, 'bef0046a-79a5-4357-84db-b8663663d563', 2, 'Leonie Güldenpfennig', 1579008609, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (122, 'b131950d-b315-4d34-9f76-5a3be4c5dc68', 2, 'Johannsen, Nina /BDF HAM', 1579010088, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (123, '4bf001ad-f211-4e5e-8f48-037c161dddac', 2, 'Leonie Güldenpfennig', 1579085326, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (124, 'bbd461b0-a6bb-4077-9252-c70ce6380178', 2, 'Leonie Güldenpfennig', 1579085611, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (125, '5a321ee5-073b-43da-9318-4e2aa8c123af', 2, 'lutz@triabolos.de', 1579101838, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (126, 'b9e4b433-4376-4ba0-b601-034abeea6ed2', 1, 'Christine Schatz | owayo', 1579165650, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (127, '6bc4940d-878f-4e74-a5b2-ddb56d27bb79', 2, 'Leonie Güldenpfennig', 1579171882, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (128, '79e2606f-8e60-439c-b668-465283454ff8', 2, '100x100@swim.de', 1579180234, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (129, 'cb8d3ce2-5e2f-4d3e-baba-7fb50a34d0c9', 2, 'Josef Blumenfelder CHECK24', 1579188316, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (130, '86f3dcdf-f59d-4be8-b045-1c9d25d47d50', 2, 'Orthopädie Othmarschen', 1579188393, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (131, '490cba1d-e1a0-497b-a435-dc3341ece6ba', 2, 'Leonie Güldenpfennig', 1579528567, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (132, '6beb6c9f-c7f0-4157-ab3d-3d2dd9bd5781', 2, 'esbeautyhh@hotmail.com', 1580209256, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (133, 'a9aa55be-07ac-4748-a883-2f17c7352f13', 2, 'service@zeitakademie.de', 1580297920, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (134, 'cc21edc7-d92e-4024-a46e-a3fc2b234e35', 2, 'Alexander Rodloff', 1580903767, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (135, '504449bf-3b79-4757-96b1-17b2a70b4226', 2, 'spickzettel@flugphase.ch', 1580914964, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (136, '45ea9161-40c2-4ae7-ba43-ae659277e819', 1, 'ds@laufmagazin-spiridon.de', 1582111879, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (137, 'c9785e0a-bea2-4163-943d-c7fadd661971', 1, 'spiridon@gmx.com', 1582111879, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (138, '33332b01-4bb3-4d20-aae5-b1bfbd9ba8ab', 2, 'FUN FACTORY', 1582122049, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (139, '7e045897-565c-438a-91d9-cf98333267b5', 2, 'Powermetershop', 1582203410, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (140, '43e07896-bdff-4049-8abf-0d63d38f67da', 2, 'lkahh50@polizei.hamburg.de', 1582549679, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (141, 'e8c66b3a-7855-4328-a963-048c04971983', 2, 'Johannsen, Nina /BDF HAM', 1582621895, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (142, 'd77763ac-4e04-40f3-b0fa-0fe8512a1479', 2, 'Johannsen, Nina /BDF HAM', 1582623322, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (143, 'e4911599-2b1f-40b9-892d-88704825090a', 2, 'julia.hackeloeer@hackeloeers.de', 1582623614, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (144, '9420d082-5721-4be1-b6c8-8c444581ff71', 1, 'RenéRosa Trikotmanufaktur // Tina Buchholz-Weissinger', 1582635283, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (145, '3d359017-9532-48fc-b709-0e4d392bad7e', 2, 'Oliver Scholz', 1582645676, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (146, 'c043a3e4-60a1-4ee3-bff3-4a47e747adbb', 2, 'mail@frauenarztpraxis-fontenay.de', 1582803723, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (147, '93b64014-82bb-4806-ad1c-dfefc726db16', 2, 'info@mcdart.de', 1584696744, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (148, 'ff0b5bac-cd75-47fd-af68-a116f779ffc9', 2, 'ina.rosentreter@hsba.de', 1585147751, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (149, '281ebf37-477b-4c6a-88e4-1b19c622dd76', 2, 'lastminute.de', 1585741599, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (150, '1af218b2-bfe3-449c-bd58-2a7f87547b12', 2, 'kundendienst@lastminute.com', 1585741599, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (151, '7c3617d0-e637-45dd-a7b1-0f4a435b3271', 2, 'customercare@lastminute.de', 1585741599, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (152, 'aea80478-4fca-4c44-825e-e90d84874594', 2, 'kundendienst@lastminute.de', 1585743578, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (153, 'd58b4b4a-d5b2-4298-be7d-c949aca1d3a4', 2, 'lastminute.de', 1585743903, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (154, '354827d8-37c0-459d-ada5-9233933bcc43', 2, 'running green', 1586882237, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (155, '7a1ed4a4-25fb-406a-b0e7-156141e82098', 2, 'info@running-green.de', 1588585538, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (156, '3e506294-dfff-4a6c-bb37-0ad3afc7c125', 2, 'AuflagenNachMass@gmail.com', 1589965946, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (157, 'fc54f082-36ff-451d-8f9f-2a7c095743b9', 2, 'Melanie Schneider', 1590396611, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (158, 'db4828cc-18ce-44ee-806f-d9745ba4ac83', 2, 'info@baederland.de', 1591175275, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (159, '1eb86a3b-756e-44e1-a264-c524a787270c', 2, 'tri-mag.de', 1591612949, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (160, '6c5e2080-a448-4a7f-8faf-f3fb0b61bf48', 2, 'anmeldestornierung@sportspasshamburg.de', 1591695977, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (161, '128deaeb-fe1c-463e-86e5-12644ae959a4', 2, 'Leonie Güldenpfennig', 1591882634, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (162, '69dd65c0-a0cf-43b8-8702-815ee15419a4', 2, 'abo@tri-mag.de', 1592379042, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (163, '76309eae-6aec-4137-ba80-cf217ce78095', 2, 'f9ecfdabb7ca585d92b8a6b08fecdbad@ds-guest.com', 1592502239, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (164, 'c530af6a-0264-4518-9db2-1203a938c0f8', 2, 'buchungsservice@im-web.de', 1592502368, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (165, '7fb1d5fd-c01f-4959-9a4d-0d70c59a958d', 2, 'Vierlanden-Triathlon Newsletter', 1593428872, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (166, '21665240-bfc5-46d9-babe-f974c0fc398b', 2, 'kaehler.klink@freenet.de', 1593604663, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (167, 'c12c3b9d-be05-408b-a17b-2798434ae06c', 2, 'martin@tschepe.de', 1594208373, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (168, '3aae2d85-fa19-4db5-8880-f9362401ea30', 2, 'tschepe@web.de', 1594216163, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (169, 'd80900d0-ce55-4088-8f68-1aa622c9b52f', 2, 'triathlon@ht16.de', 1595244622, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (170, '61c53d8f-0994-41fc-80f9-88201e98cc68', 2, 'HT16 Jennifer Rasch', 1595331640, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (171, '30fbd144-5ad9-45cb-a73d-e978814572ad', 2, 'Larissa Kleinmann - FLUGPHASE', 1596713330, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (172, 'e61e19b5-e0f8-4b7b-aede-2dc4263e1d50', 2, 'info@pvz.de', 1597148290, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (173, '83d8da4e-bb47-4615-bfff-98e365ff1e0e', 2, 'infomaster@europcar.com', 1598267046, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (174, '24a4282b-16f8-4a12-8c4f-cfadcb62d61d', 2, 'nachfrage@europcar.com', 1598267104, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (175, '7c30bc4c-f9d6-4973-9160-c0d58c466fbd', 2, 'reservierung@autoeurope.de', 1598886540, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (176, 'b6321f92-4775-42e5-a2ba-03e89d8e46da', 2, 'CHECK24 Mietwagen', 1598948327, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (177, 'a3d0a5a3-0f6b-4d9e-8922-0fe0bb18f07e', 2, 'mietwagen@check24.de', 1598948327, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (178, '5b2bf2e0-3d19-4338-99ff-148ebd00c508', 2, 'burgerme', 1598957745, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (179, '71309643-b41f-4250-a807-bd47fd9e3797', 2, 'CHECK24 Mietwagen', 1600243771, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (180, '495838bc-3836-4f6a-9baa-9e94db75999e', 2, 'CHECK24 Mietwagen Kundenservice', 1601277387, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (181, '8f0dd895-dcee-477f-ba34-a710bfe2e1b6', 2, 'Leonie Güldenpfennig', 1601282889, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (182, 'dbf5513e-e25a-429e-bed7-d6642ca42171', 2, 'info@eaton-place.de', 1601460094, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (183, '1fe287f1-638e-491e-950b-ac7373a53a0b', 2, 'kundenservice@handelsblattgroup.com', 1602663993, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (185, 'd1fae6da-b3da-48f7-b1a9-160f0795f73e', 2, 'Bike-Discount', 1603092550, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (186, 'e7483a4f-d696-4006-92a1-a3777f3ad861', 2, 'Bike-Discount', 1603381132, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (187, '578418e1-4f00-4098-882a-e26c51dd5a5e', 2, 'support@zwift.com', 1603885162, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (188, '17867825-3b16-4c45-ae30-996e4d721c4b', 2, 'dianalukasnuelle@gmail.com', 1606382032, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (189, '67fa92a4-63a0-45e4-a078-cdca8b2e7b1f', 2, 'treuebouldern@ht16.de', 1606738350, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (190, 'aac2a3c3-a51e-4342-9d39-dd0de315b5a5', 2, 'Anne Piatt', 1608726339, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (191, '0908d553-1d55-4918-a4eb-6c68d4712da1', 2, 'alena.beutler@posteo.de', 1608727804, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (192, '185061d6-e003-4da4-9e98-12bb1e30bc61', 2, 'annabelelaine@web.de', 1608728128, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (193, '5f0beec0-1f30-48db-a016-625e4184f8f0', 2, 'cindy_kubsch@hotmail.de', 1608728566, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (194, 'b0f572f9-4e8c-481c-8cad-cfbae3962254', 2, 'jule.hackeloeer@hackeloeers.de', 1608729268, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (195, 'deceab1a-4304-4940-bd02-56502f0a250c', 2, 'elbrose@hotmail.com', 1608729711, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (196, '56629bbf-982c-4be8-bde0-36525f18ae8d', 2, 'nina_johannsen@hotmail.com', 1608730289, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (197, '72cacef7-cc83-4dc7-a89a-dd0c2b33b7bc', 2, 'info@buenavida-andalucia.com', 1608730514, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (198, '5457a277-9acb-4f0c-b724-503938a0d792', 2, 'sebastianacke@gmx.de', 1608730963, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (199, '955e6100-d7a9-4d2d-82c9-3e8a6d1a8eda', 2, 'Dietrich Zahn', 1608731599, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (200, 'f2d6bc2e-299f-4d7d-8713-58eb0103f893', 2, 'bewerbung@uni-flensburg.de', 1609358509, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (201, 'b156999e-e515-485c-8874-57ba9a098c10', 2, 'Gesa Birnkraut', 1609847691, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (202, '0f16ca87-a211-4639-99a0-76e6cad88590', 4, 'Ole Benjamin Rosentreter', 1610279358, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (203, '36718ae2-d16a-4d5e-afd3-9ab908b4314f', 4, 'frauke', 1610279873, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (204, '5f6c4e1c-df78-42c0-90bb-27af97384f87', 4, 'lasse', 1610291221, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (207, '69e1af0b-aced-46d9-a498-3a937a5dce2f', 2, 'Janos Mester', 1610993928, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (206, '9f572b02-da9f-4d10-9db1-0bf7526a2a31', 3, 'papa', 1610292248, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (205, '3ce4b59c-452a-4eb8-9743-0f235dde81d3', 3, 'Matthies', 1610292249, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (208, 'b02a6ae1-ce94-4fbf-82cc-83d44c38c311', 3, 'Matthies 2', 1611039821, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (209, '81727a70-667c-4db2-b247-378dda3f3714', 3, 'Matthies 3', 1611039876, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (210, '1c98fa23-c1fa-4b08-b2af-bb38f610b64d', 3, 'Matthies 4', 1611039923, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (211, '1e328d86-0f38-438b-aa2d-8f9099724cc3', 3, 'Matthies 5', 1611039965, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (212, '18d87cfc-4334-440e-b020-a87f9b427cc8', 3, 'Matthies 6', 1611040023, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (213, 'ba33784b-639c-4667-8dc1-ea14f057ac39', 3, 'Matthies 7', 1611040114, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (215, 'e5035f8c-1dc0-494a-923d-939555681308', 3, 'Matthies 8', 1611040246, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (216, '4a9e3348-b1dd-4778-8b66-372c51500df2', 3, 'Matthies 9', 1611040277, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (214, 'cc90bcfa-89eb-47a4-b041-0ebcbe580837', 3, 'Matthies 10', 1611040314, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (217, '2c8e8950-3de2-4511-849d-94e3ce19d100', 3, 'Matthies 11', 1611040403, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (218, '4c728bdc-056b-4c7a-9547-786283860545', 3, 'Matthies 12', 1611040628, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (219, '762f5419-538f-4cbe-9f87-fe34ec7eb31f', 3, 'Matthies 13', 1611040809, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (220, '4debe69e-be86-4773-8b8f-0813f04422a0', 3, 'Matthies 14', 1611040847, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (221, '85687aeb-d513-41eb-966a-9b4b256ee75b', 3, 'Matthies 15', 1611041202, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (222, 'a03b7d83-67a2-4c51-b8f8-8756469a3866', 3, 'Matthies 16', 1611041228, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (223, 'e619b0e7-bd26-4d43-9a3b-afe5395b494d', 3, 'Matthies 17', 1611041278, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (224, '9f33fb07-899c-425e-b803-c44697580b18', 2, 'Yvonne Ewen', 1611171223, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (225, 'f4019d95-8503-4fa6-8c06-1a56d31a561a', 2, 'Yvonne Ewen', 1611171733, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (226, '0ab37a2c-1f51-4509-a8bd-c0452d14eb5d', 2, 'Schneider, Melanie', 1611218561, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (227, '5a997169-1c89-4568-b646-1b73cd324d62', 2, 'Alsen, Inken', 1611222566, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (228, '00374488-bf01-4083-9064-c4223475cd3a', 2, 'mitgliederbetreuung@fasi-amb.com', 1611670529, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (229, '33ea78a9-f63d-4856-8e4d-acd33ee2c53f', 2, 'fasi.mitgliederbetreuung@web.de', 1611670530, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (230, 'aa0bf421-b1f8-4a0e-a859-2b4a62881754', 2, 'service@dlz-limburg.de', 1611670892, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (231, '1a083b73-0751-4f3c-9ce1-a68393ec0f28', 2, 'mike.fischer@mikefischer.de', 1611765582, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (232, 'a64c4ff3-cefc-4aeb-9f48-5686bfedae69', 2, 'hello@nicole-baumgarten.com', 1611772878, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (233, 'cd3abf8f-3281-4dc8-b5fb-080052972900', 2, 'Nicole B. | Andalusien PRIVAT', 1611841764, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (234, '0e4f034a-408d-48e0-b8fa-64d21a04e46d', 2, 'info@die-kuendigungsschutzkanzlei.de', 1611929962, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (235, 'd0f4bfc8-cb34-40c2-b2d1-66a4799de71e', 2, 'Red Elephant GmbH', 1612088013, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (236, '716ca470-e44f-4e3f-997b-ec7f8808525a', 2, 'henkelmann@die-kuendigungsschutzkanzlei.de', 1612170966, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (237, '932dc0c8-4ec3-4223-9f1d-fac2bd1fcde6', 2, 'CHECK24 Mietwagen Kundenservice', 1612255928, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (238, '97009701-19cf-4c40-a0eb-44abcb3f6dfe', 2, 'Coaching-jaiser@web.de', 1612281858, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (239, 'ba2dd9b1-29bc-4188-b88c-6f264fa9adf7', 2, 'Coaching-jaiser@web.de', 1612445250, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (240, '1fdf5cf4-9d84-42ff-a2ca-020c3863f65c', 4, 'kontakt@laktatnebel.de', 1612700430, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (241, 'f7f9650c-a44f-4df7-b8ce-109a926bb0ba', 2, 'cora.schuelen@gmx.net', 1612891534, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (242, 'a13d058a-f48b-450b-b1e8-50dfa12d75cc', 2, 'sabine.mauermann@t-online.de', 1612945574, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (243, '5089e8bf-7fd4-4a7a-9789-fc24917724a2', 2, 'Prof. Gyula Szabó', 1612951480, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (244, '0c8d3d57-9d36-41c9-a7e7-a518d99cfddd', 2, 'kenner@bwt.uni-stuttgart.de', 1613034443, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (245, '0e5ff807-4f36-4c6b-8a8d-118dd1217d0b', 2, 'Manuela Bäuerlein', 1613050176, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (246, '25a78857-7b66-41e3-b68d-08cac23a14ff', 4, 'Anita Meyer', 1613227709, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (247, '7d85df60-c34f-4e89-b909-34e50269d881', 4, 'Ina Rosentreter', 1613227744, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (248, '0d8d55e3-f2a5-49f9-8fbd-8660e4b271d8', 4, 'Udo und Irmtraud Rosentreter', 1613227813, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (249, '67653246-5ea5-4c76-bebd-9b695514e48f', 2, 'linda.auert@iass-potsdam.de', 1613245043, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (250, 'e62710b0-6154-4d5f-a685-9e8144669e8f', 2, 'bewerbung-stabsstelle-civis@zv.uni-tuebingen.de', 1613340104, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (251, '9dc9dd88-f198-41d7-8350-5912f3146f70', 2, 'cora.schuelen@gmx.de', 1613378704, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (252, 'bd9ead75-c962-4fd6-b1ed-3bf192d09e3e', 2, 'bewerbung@leuphana.de', 1613573687, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (253, '40916534-6b96-496a-bc19-e43dec0ead39', 2, 'Auert, Linda', 1613931631, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (254, '327ebaad-a3e0-478e-afd0-ddaa0f263019', 2, 'Christina Scholz', 1614276356, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (255, 'c0648367-a654-4665-b5b0-df9fec332494', 2, 'jakob.meyer@iass-potsdam.de', 1614592126, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (256, '6e1d8881-7d6a-48fa-901a-d892d1011560', 2, 'Auert, Linda', 1614674642, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (257, '9290ef97-6871-465a-9402-0526231073ff', 4, 'privat@matthies-gehrmann.de', 1614791253, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (258, 'dc698d97-372f-4ad3-b3d0-b1cbd291a582', 2, 'bewerbungen@uni-hamburg.de', 1614791380, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (259, '0c3fa945-076e-45b8-9e28-4f6616c58e30', 2, 'Matthias Becker', 1614876798, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (260, '37e3061f-5cb6-4e68-aa48-06de504f7fec', 2, 'yvonne.ewen@gmx.net', 1614878092, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (261, '2cd31e2e-f01d-4c5a-bb6d-0ace350b7e3d', 2, 'Yvonne Ewen', 1614878216, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (263, 'b1496803-63f8-4cbf-9cec-ce5e51a80264', 2, 'Yvonne Ewen', 1615215433, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (264, '8b86ae7d-69ee-4a1e-89d8-36955290b7af', 2, 'Büro', 1615220870, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (265, 'f865ff09-b993-4305-a284-b7bb84b831d9', 2, 'hamburg.015-OS@arbeitsagentur.de', 1615801331, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (266, 'a23f2822-6d3e-47e0-80f6-c45e5331ec8a', 2, 'Mentor Verlag Berlin', 1615801443, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (267, '0ee4553b-a6d6-4710-826a-39f31993f475', 2, 'service@buecherhallen.de', 1615974169, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (268, '4ce67637-b450-4ac5-9147-f9f608638986', 2, 'info@sportspass.de', 1615981333, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (269, 'fb2c5695-11bf-43a8-b0d1-db6a466276fb', 2, 'info@ht16.de', 1615981775, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (270, '7d846da0-88ff-4d8c-a407-3e544a47293c', 2, 'Nicole Baumgarten', 1616054441, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (271, '85d8927d-836d-4325-9b4b-2a4ece4cb5d6', 2, 'raa70@yandex.ru', 1616230884, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (272, '3bc6896e-4a2b-4e34-bba0-397c3840adaf', 2, 'bestellung@platinumeurope.biz', 1616497403, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (273, 'fcb289cb-6d17-443e-94c0-e523aa0f469a', 2, 'info@hammer-kirche.de', 1616497958, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (274, '19abe08f-c662-4176-9232-7a5b6881cc37', 2, 'jana.kaehler@ht16.de', 1616499073, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (275, '655be882-1ba9-41fb-a701-5d1fe87252ca', 2, 'Alexandra Jünemann', 1616665811, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (276, 'fa5eacaa-c9c6-421c-9e1a-6cc23dfe1d7f', 2, 'Killing, Sabine', 1617008710, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (277, 'd116265b-076d-4c0f-98d8-b93443d2a5d8', 2, 'Termin_Alternative', 1617089567, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (278, '0fe4a567-90b7-43e0-af51-463b3c1cc21f', 2, 'Karola Weise', 1617106972, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (279, '7b15ad92-7463-4277-aefe-991b2aab196d', 2, 'scheffczyk@skaj.de', 1617178141, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (280, '4624e1b3-7b57-4785-9d7d-ad1f8efcada6', 2, 'sam.sabzian@orange-immobilien.de', 1617282114, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (281, 'be782a0a-d8cc-4501-a381-0f82d50df4c0', 2, 'Haymo Grossmann', 1617282250, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (282, '37703ba0-739e-4823-9584-a7b16479cdbc', 4, 'gehrmann.lasse@gmail.com', 1617300091, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (283, '08320857-06ac-4a69-b761-95ae251a200a', 2, 'Kresse, Lars', 1617701445, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (284, '1b7fc576-52f0-48ed-a753-50b5cc6d7735', 2, 'Kresse, Lars', 1617701581, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (285, 'efd0a07b-d07a-452d-b07f-82e5f489ae3a', 2, 'Kresse, Lars', 1617701647, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (286, 'a6815593-960a-4ed6-bcd5-54984a73c0fd', 2, 'Kresse, Lars', 1617701766, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (287, 'bc2f0075-5805-4ba6-8189-99d30a672941', 2, 'Kresse, Lars', 1617701859, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (288, 'fa122829-e507-4e0e-8b19-d1a352136f5c', 2, 'Immobilien Scheunhornweg', 1617715188, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (289, 'ae78264c-641b-48fa-8288-da7720f78332', 2, 'MILA Hausverwaltung GmbH', 1617716141, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (184, 'cfe7fe56-c04b-473e-9d97-c87559a73cd9', 2, 'Ellmers, Manuel', 1618129196, 1, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (291, '515e81c0-b867-4a33-ae50-5b302651859e', 2, 'Killing, Sabine', 1618220737, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (292, '1284f143-d026-4e9f-aff2-e3c1d8b4bcb4', 2, 'Killing, Sabine', 1618239563, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (293, 'c10f2f06-0cb5-41d0-ac8a-f491ec22f713', 2, 'Erwin Nowotny', 1618240206, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (294, '06f54b4d-3c06-4e02-91b1-ff9300e6137a', 2, 'Auert, Linda', 1618240464, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (295, 'ad62f970-2bad-4e20-a868-44824cb34e11', 2, 'Auert, Linda', 1618303693, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (296, 'd384ad58-5a53-487c-8f33-7bd5eadfcbd1', 2, 'Liane Seedorf', 1618303867, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (297, '74bfbaf7-1427-4962-a4d1-fbbdc853aed5', 4, 'lasse', 1618492497, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (298, '30e4682a-1470-45c6-9ba3-94ba3266cda6', 2, 'Zalando Team', 1618817442, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (299, '24bebbb4-16ce-4778-b0f4-1df1821d766c', 2, 'Michael Höbig', 1619177043, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (300, '4c0fdcb4-0fac-4b35-b9d8-6620d5e97286', 2, 'Frank Franke', 1619177360, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (301, '12b84dd9-47f1-45e6-b10f-61c1025e46b4', 2, 'Mariette Kühnelt', 1619177873, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (302, 'c3cfacab-714f-49f2-99c5-e679551713bc', 4, 'altunmuhammed150@gmail.com', 1619798064, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (303, 'e435efd1-c159-4a94-8797-1fe70b4dfb06', 4, 'd.natalie@gmx.net', 1619798115, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (308, '3bba00fd-45f8-4006-b82b-eb91609981bb', 2, 'Joanna Kanzenbach', 1620726576, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (309, '59676988-dc7e-497f-bb10-e3e7c111283b', 2, 'depot52@hes.de', 1621242000, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (310, '9d9f1835-ad69-4c76-b793-6066f4906886', 2, 'ina.rosentreter@iass-potsdam.de', 1621602907, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (306, '52b91914-7010-4e86-9f50-988c77f456af', 4, 'agagasch80@gmx.de', 1622117397, 1, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (307, 'df56e32f-af0c-47f4-a8f8-6524f247b2a5', 4, 'agagasch@gmx.de', 1622117414, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (311, '10accd48-fcac-4907-88ff-5452425baee0', 2, 'techem@operativa-berlin.de', 1622618309, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (312, '11169b73-8804-476b-86b6-32aea77c9dc1', 2, 'auftragsbearbeitung@1und1.de', 1622730629, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (313, '7f7e33e4-419c-4447-89f8-891ceb544347', 2, 'tanja.wullenweber@sparda-bank-hamburg.de', 1623750465, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (314, 'ee32c687-f0fe-4496-a3f9-17befc86fece', 2, 'buergerservice@rathaus.potsdam.de', 1623760389, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (315, '7a474f95-f855-4455-a5f5-e42318d1d3dc', 2, 'Leonie Güldenpfennig', 1624287974, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (316, 'cca58fa6-846d-4b72-b057-bbf7d463fefb', 2, 'Leonie Güldenpfennig', 1624288186, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (317, '512c9135-2628-40a9-98cf-74473fd904ec', 2, 'Coaching-jaiser@web.de', 1624289237, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (318, '301abe64-0dec-433f-a637-fd0044141a57', 2, 'Yvonne Ewen', 1624291105, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (319, 'afc6e6f7-aca0-44dc-9a11-b3803146765e', 2, 'kundenservice@pyur.com', 1624446794, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (320, 'a43e6197-9970-4f8c-af0d-05e814904c89', 2, 'BertieWalkleyDH631@yahoo.com', 1625036378, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (321, 'a27eb43d-2355-4aab-a028-6a93d1d3dcfc', 2, 'info@orthopädie-dogan.de', 1625141506, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (322, '40664292-56ff-407b-9685-c9b2cb29feff', 2, 'mare-me.de', 1625227075, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (323, '59d88972-d303-4b5f-b768-a03aaa0a7d1e', 2, 'SKLUM', 1626087994, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (324, '1b8bd1a9-6853-424f-8108-f91d9959de72', 2, 'Meilenweit Heilpraxis', 1626095317, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (325, 'b8b5f594-cb1c-41ab-b913-33e4b46688fb', 2, 'LAUFMAUS®', 1626197855, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (326, 'b79cb87d-baf8-4954-8c9e-81978976ae81', 2, 'Darian Schmidt', 1626253689, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (327, 'f7143065-e478-46c9-8993-f8cb0d1d1876', 2, 'rgpd@sklum.com', 1626254406, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (328, 'f4b8027b-8146-4ff3-a4b2-e509eef10c18', 2, 'FAHamburgHansa@finanzamt.hamburg.de', 1626254669, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (329, '4553e527-5d86-4f34-8f4a-fac0230f915f', 2, 'startpass@triathlondeutschland.de', 1626255239, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (330, '35f2acfb-90fe-4add-94b1-071e9f7def53', 2, 'CHECK24 - Hausratversicherung', 1626274043, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (331, '222ad3bc-b922-4bc3-9522-010efecda181', 2, 'Klatt, Juliane', 1626351447, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (332, '9e574750-74ff-41aa-8db7-4095fd4a2220', 2, 'gewinnspiel@propotsdam.de', 1626361192, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (333, '4f587edc-de90-4734-933b-06b378b1436e', 2, 'Meine Wunschleuchte', 1626439023, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (334, '1ea4cd10-483d-4f9e-a0d7-86b61dcda703', 2, 'mail@home-garden24.de', 1626962480, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (335, 'a64591ba-5dbe-44a5-b1cc-d4c142ef2373', 2, 'mp-lastschriftservice-ape@amazon.de', 1627038903, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (336, '98e41be5-59bc-4c33-94fa-4d7cec374ab4', 2, '2RadStätte Potsdam', 1627367796, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (337, 'b66db1a3-e593-47d7-938e-6e53480a331b', 2, 'Sue.Meylahn@propotsdam.de', 1627378841, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (338, 'c43c0864-d1ab-45d5-b75f-2b461b2577ce', 2, 'OTTO - Kundenservice', 1628086494, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (339, '546fb9bb-4536-4edd-83a7-5c823f8f6e88', 2, 'service@paypal.de', 1628154279, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (340, '7fcea2db-df09-417f-ab3f-362b6b22fcd6', 2, 'info@1und1.de', 1628604169, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (341, '3e9ac595-2378-4986-813b-bd0b31f9ad24', 2, 'kunden-service@1und1.de', 1628604169, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (342, '8eb40e2d-045a-405b-b293-6cb36e0b4f9a', 2, 'Westwing', 1628670936, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (343, '6400f1be-ef59-488a-87a5-6d95ba47be98', 2, 'DE - Kundendienst - Sklum', 1628759660, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (344, '26f3fe1a-88d8-438c-b44c-b0b89ffd8859', 2, 'Westwing | Kundenservice', 1628852542, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (345, 'b3c327bb-88df-4542-9a57-f9f606d188d0', 2, 'post@zeppelin-team.de', 1629800216, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (346, '61154828-580f-4842-ba9c-56d69f8101b8', 2, 'Andrea Krah', 1629879351, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (290, '4f9425e6-ae60-41af-bccd-a5ce5c69708a', 2, 'Silke Grundmann', 1666973024, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (347, '089719f8-e016-4878-b916-65269098d76b', 2, 'hochschulsport@uni-potsdam.de', 1629991912, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (348, 'b90ad17c-2aa0-41fe-a75a-7a6c0dcf8553', 2, 'Kundenservice', 1630052081, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (349, '535948d5-c816-4bb7-9881-197c110d5887', 2, 'Mike.Fischer@mikefischer.de', 1630584044, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (350, '91703b18-8422-44ea-b19a-4e4d737a9a3e', 2, 'info@huk24.de', 1630655890, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (351, 'f4301210-e45c-4e71-b613-4b81656fdd09', 2, 'service_@news.fitnessfirst.de', 1630656083, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (352, 'ea06800f-3d76-40eb-9420-9c909772b2c7', 2, 'serviceteam@sparda-bank-hamburg.de', 1630924763, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (353, 'a9e67ef2-7a51-4ffa-8b58-c76958c98572', 2, 'REAL Solution Inkasso', 1631869873, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (354, '81f23173-1908-4fd2-8f0d-5fe4600ce9b2', 2, 'Felix Remek', 1632475312, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (355, '836f4a6e-b7b5-48b0-a884-be303db726b6', 2, 'Leo', 1632846872, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (356, 'f8662bd9-ae2c-4947-b7c8-34641ca547e3', 2, 'info@news.fitnessfirst.de', 1632930001, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (357, '35183a8c-a77c-4532-a4d5-95caeb65ced3', 2, 'HUK-COBURG', 1632931618, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (358, '78561e18-36a6-481e-8cbc-57b319044ee0', 2, 'Leonie Güldenpfennig', 1632936135, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (359, '44af535d-1796-444f-8dec-3d7000b6a0f1', 2, 'verlaengerung@bibliothek.potsdam.de', 1634299696, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (360, '95a6a470-5c8e-4f1b-89e2-855c94d5986c', 2, 'Yvonne Ewen', 1635169094, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (361, '982dc924-631f-4845-b821-f72a266a8b4e', 2, 'Johannsen, Nina /BDF HAM', 1635169553, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (362, '1a810731-be93-4d9f-942e-bee9d32ddbee', 2, 'Coaching-jaiser@web.de', 1635169920, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (363, 'c3678f4b-d3b3-49ed-b20a-907b334d0697', 2, 'Lale', 1635171092, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (364, '08c5d6a4-b6d2-4e96-8354-856881023c62', 2, 's.a.dathe@web.de', 1635171974, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (365, '11444fab-5df1-4555-af8f-de33b69395bd', 2, 's.a.dathe@gmx.de', 1635176282, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (366, '124c6806-a85b-4c9b-aa8c-06af05ecb4d9', 2, 'rebecca.korbach@iass-potsdam.de', 1635176483, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (367, 'b5507ff7-b7f1-4576-9fe3-63cc9a654c2b', 1, 'Ana Serrano', 1635511349, 0, '1d4dbc11dc373a7b09b9ac322e408d7d');
+INSERT INTO public.rainloop_ab_contacts VALUES (368, 'f0b7c6ad-82b5-4d53-b927-a34b3a97a028', 1, 'Heike Bollmann', 1635511349, 0, '4a2ca6d6cde259dd71644d99190ff8ae');
+INSERT INTO public.rainloop_ab_contacts VALUES (369, '062e5206-9bf9-409a-be76-303f5cebdc37', 1, 'Irmtraud Rosentreter', 1635511349, 0, 'da94b316c101ef4fd2229d751a6bfe3b');
+INSERT INTO public.rainloop_ab_contacts VALUES (370, 'b5375824-5455-45e5-9683-52bcef90774d', 1, 'Werner Goller', 1635511350, 0, '9a9fd0e41c36b47641f8c91435de6c17');
+INSERT INTO public.rainloop_ab_contacts VALUES (371, '3cbd93a7-ca28-483a-89c2-bc798b5469b2', 1, 'Andy B07 Vereinsgaststätte', 1635511350, 0, '4d66560105504aa99cff4de9ac47ac02');
+INSERT INTO public.rainloop_ab_contacts VALUES (372, '25019507-3ed9-41f4-a064-3b152061a2e5', 1, 'Ana Serrano', 1635511350, 0, 'f66c2294897f2f44a99a2673aaa9e1e5');
+INSERT INTO public.rainloop_ab_contacts VALUES (373, '11c58650-3508-48b1-94bb-1f3cd7a9df3a', 1, 'Heike Bollmann', 1635511350, 0, '0e45394da2f9e046c2d42ed881c82ae4');
+INSERT INTO public.rainloop_ab_contacts VALUES (374, '8539a6f6-6ce3-4deb-8dc6-ee9b8e9ff62a', 1, 'Irmtraud Rosentreter', 1635511351, 0, '2aa006bc287aff09a44674888ffba1d6');
+INSERT INTO public.rainloop_ab_contacts VALUES (375, 'c110cbf1-fc78-4c70-b570-81c25bab466e', 1, 'Andi Liebrich', 1635511351, 0, '697da1460c93a5486ecf0f6f7b41d238');
+INSERT INTO public.rainloop_ab_contacts VALUES (376, '0ca2bda3-8924-47b4-9c96-6ff15087fcc6', 1, 'Heike Bollmann', 1635511351, 0, 'f17a187fbf76a6d6b16a886e69e6cb1c');
+INSERT INTO public.rainloop_ab_contacts VALUES (377, '574265ff-f66b-417b-90da-b59336a20001', 1, 'Irmtraud Rosentreter', 1635511351, 0, 'ab308fd46d0af2a46287a2289c0eb921');
+INSERT INTO public.rainloop_ab_contacts VALUES (378, '08bbd7b7-116f-46fc-9756-3a4b42ec7e51', 1, 'Andi Liebrich', 1635511352, 0, '63abfab7ea587408e821862bcf356049');
+INSERT INTO public.rainloop_ab_contacts VALUES (379, 'd7334958-84b3-4c21-a874-29bb1eba726f', 1, 'Heike Bollmann', 1635511352, 0, 'ef055c09df26902167c5b8474a696514');
+INSERT INTO public.rainloop_ab_contacts VALUES (380, 'd52b945b-84e0-43fe-b965-3c1c69169e9a', 1, 'Irmtraud Rosentreter', 1635511352, 0, '7014ffdd4283b42a6cf4929e6dc99e67');
+INSERT INTO public.rainloop_ab_contacts VALUES (381, 'f17fd497-fac7-493c-a76b-be35517ce4e9', 1, 'Andi Liebrich', 1635511352, 0, '7479a96afb0338cb78866c619532bc68');
+INSERT INTO public.rainloop_ab_contacts VALUES (382, '3f6a7ca6-d35e-4bf5-8e07-d9a7ec2c5634', 1, 'Heike Bollmann', 1635511352, 0, 'de487a28670294837c47e0385c7087c0');
+INSERT INTO public.rainloop_ab_contacts VALUES (383, '2a632ff1-b8cb-4965-b41f-4667366b1ec6', 1, 'Irmtraud Rosentreter', 1635511353, 0, '109c8c212495ae58f0787189ed7664ae');
+INSERT INTO public.rainloop_ab_contacts VALUES (384, '85ccd759-20c1-4f92-88f7-04fcd0a383ea', 1, 'Andi Liebrich', 1635511353, 0, '6a85a76c3ae26dd5be4dc303d08b95c3');
+INSERT INTO public.rainloop_ab_contacts VALUES (385, '41e7b08d-aba4-4b4b-a6f8-25b2b9d6730d', 1, 'Heike Bollmann', 1635511353, 0, 'd260e85a19745fa1d3fc34cde67e5f4e');
+INSERT INTO public.rainloop_ab_contacts VALUES (386, 'b5e6828d-f83b-4312-9eca-bf7fe52e4170', 1, 'Irmtraud Rosentreter', 1635511353, 0, '69e13c912161084e46c6aa41b6501a04');
+INSERT INTO public.rainloop_ab_contacts VALUES (387, '324d3465-0997-4e5c-8202-f61ee686eb5e', 1, 'Andi Liebrich', 1635511354, 0, '9233030c5ede38d1cb3b03ca68374a56');
+INSERT INTO public.rainloop_ab_contacts VALUES (388, '78ac0c33-9c23-4bf1-99f8-188a8d0cd968', 1, 'Heike Bollmann', 1635511354, 0, 'e31a39dfa5c51d540f0bd4a98e180dc8');
+INSERT INTO public.rainloop_ab_contacts VALUES (389, '104064f2-2b60-4405-a025-f50765e702b7', 1, 'Andi Liebrich', 1635511354, 0, '1002f42523776fc9d7201f397feaefe6');
+INSERT INTO public.rainloop_ab_contacts VALUES (390, 'b2fc974b-73bb-4e59-b5bd-0bfdd2f6741e', 1, 'Heike Bollmann', 1635511354, 0, '96b5c25f22579a37bd23d7571b299aa5');
+INSERT INTO public.rainloop_ab_contacts VALUES (391, '8ce728db-2de7-45e2-8bf9-0f3c59ad2e8f', 1, 'Irmtraud Rosentreter', 1635511354, 0, '977abe62493081f0558ed74bedde69e8');
+INSERT INTO public.rainloop_ab_contacts VALUES (392, '0efa39c8-dc37-4e8c-98ff-7bc0fc53f433', 1, 'Heike Bollmann', 1635511355, 0, '58ca641344672a05ac34779e477d5fa9');
+INSERT INTO public.rainloop_ab_contacts VALUES (393, '40db5fd5-e6b5-43bf-a7ec-0997b521d1b8', 1, 'Andi Liebrich', 1635511355, 0, '39a8e20849234c75a598494a4a9a9162');
+INSERT INTO public.rainloop_ab_contacts VALUES (394, '607d6322-6a13-41f6-afac-4f81351c9bd1', 1, 'Heike Bollmann', 1635511355, 0, '64ea6666348af50357ccdf6d3c53d737');
+INSERT INTO public.rainloop_ab_contacts VALUES (395, 'b934e044-02e4-49f8-a712-6cca86d67741', 1, 'Irmtraud Rosentreter', 1635511355, 0, '62bf70ab9dc439f529d768f687ef0be0');
+INSERT INTO public.rainloop_ab_contacts VALUES (396, '44e01fde-36e4-47e2-b046-6ce97a2b8610', 1, 'Heike Bollmann', 1635511356, 0, '2607e4331b33c25ab1a416311999e4d4');
+INSERT INTO public.rainloop_ab_contacts VALUES (397, '5ca8b4f6-cbaf-4470-9df6-3018491cb291', 1, 'Andi Liebrich', 1635511356, 0, '48a0c9d768d6cb8fa14245d3c0034e38');
+INSERT INTO public.rainloop_ab_contacts VALUES (398, '9ef3cc03-c49a-40f9-9be3-eb7dbb7372fc', 1, 'Heike Bollmann', 1635511356, 0, '9c7ea51c2d29675a63b69b87abe7428b');
+INSERT INTO public.rainloop_ab_contacts VALUES (399, '5390a421-e00e-4109-8cb8-cd1f991f1d4a', 1, 'Irmtraud Rosentreter', 1635511356, 0, '47d4e469972e3f66a2b68073e193ceef');
+INSERT INTO public.rainloop_ab_contacts VALUES (400, '8555d4a5-fbdc-4e74-922f-3e89a7d7289b', 1, 'Heike Bollmann', 1635511356, 0, 'cfc8644690e811286d1fc31408b7236a');
+INSERT INTO public.rainloop_ab_contacts VALUES (401, 'ae8221d6-4e96-4ac1-b2e1-10246c0ec9f5', 1, 'Andi Liebrich', 1635511357, 0, 'a0dc1ccdceb2727a77cd069101589e35');
+INSERT INTO public.rainloop_ab_contacts VALUES (402, '9ceee350-8755-4828-8fcc-67c5e5de9672', 1, 'Irmtraud Rosentreter', 1635511357, 0, '1f7b35f96adf717f1747c0065194cd4c');
+INSERT INTO public.rainloop_ab_contacts VALUES (403, 'c549a759-9ab1-420d-9820-70738600a492', 1, 'Heike Bollmann', 1635511357, 0, '683517bd456cd2f09980b093c75a1ff4');
+INSERT INTO public.rainloop_ab_contacts VALUES (404, '7e5be267-cfa8-4370-bf7f-5dc310c20a4a', 1, 'Andi Liebrich', 1635511357, 0, '7542165107c3734c426a7e73359d24c6');
+INSERT INTO public.rainloop_ab_contacts VALUES (405, 'bc9b4d0f-afaf-4ffc-9a29-7f49344d0d2b', 1, 'Irmtraud Rosentreter', 1635511358, 0, 'bf9eacc6ab18fe66a4100547a46af6be');
+INSERT INTO public.rainloop_ab_contacts VALUES (406, '79c80b4d-17af-4a57-9969-7b4e14ab2a3d', 1, 'Andi Liebrich', 1635511358, 0, '321b3284f650ed7fa378156a1ff8a24d');
+INSERT INTO public.rainloop_ab_contacts VALUES (696, 'd5d37a7c-92a6-418e-a882-430d3585a67b', 2, 'HANNUN', 1655395452, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (407, '9393fee7-8ffa-40ae-afcc-5a5ca28f63c2', 1, 'Heike Bollmann', 1635511358, 0, '895799b5b8e96f24a8e9b9079becbc81');
+INSERT INTO public.rainloop_ab_contacts VALUES (408, '163f7fd5-2916-4537-976c-fb3b18152a5d', 1, 'Irmtraud Rosentreter', 1635511358, 0, '3c74f5c95b9e2b4ca0efc37fb874fdab');
+INSERT INTO public.rainloop_ab_contacts VALUES (409, '5404415b-42b4-4ceb-a355-fee654349177', 1, 'Andi Liebrich', 1635511359, 0, '5f43c677c698e28ca835e68036ad8ef3');
+INSERT INTO public.rainloop_ab_contacts VALUES (410, '90b3bdf3-6fd2-4f5a-a3e9-042e18627729', 1, 'Heike Bollmann', 1635511359, 0, '51a819f339e92d0eaf2b3341f2c96906');
+INSERT INTO public.rainloop_ab_contacts VALUES (411, 'ad6d88f2-5fdc-49dd-928f-21acf6271037', 1, 'Irmtraud Rosentreter', 1635511359, 0, '7e989e89f4c125764e93bba85b5c76dc');
+INSERT INTO public.rainloop_ab_contacts VALUES (412, 'c815b272-329e-4322-9e8d-132c5c6efd71', 1, 'Andrea Freyberg', 1635511359, 0, 'f0e6b540b308a586d23f52e450555634');
+INSERT INTO public.rainloop_ab_contacts VALUES (414, '977057eb-4032-4e7e-9fc4-04fbb60fe8e2', 1, 'Heike Bollmann', 1635511359, 0, '73be507bb167ed408eb5c4e1e9bf60ef');
+INSERT INTO public.rainloop_ab_contacts VALUES (415, 'f6dd07a8-73e4-4659-904b-4d7e1fc254f2', 1, 'Irmtraud Rosentreter', 1635511360, 0, '62720ea5e7294ce3693f701b9b58443c');
+INSERT INTO public.rainloop_ab_contacts VALUES (416, 'e9b71990-16c5-4387-a49a-35fc7394bde2', 1, 'Deborah Michel', 1635511360, 0, '7772929272e41b2e1a1da6def6ed82a2');
+INSERT INTO public.rainloop_ab_contacts VALUES (418, 'a84bd6c6-8a3e-40f0-819f-8288d6ba3132', 1, 'Andrea Freyberg', 1635511361, 0, '6c2d9bf50d0e10934bf2610102de8d73');
+INSERT INTO public.rainloop_ab_contacts VALUES (419, '61c82a65-5f25-48ed-be7a-0fcee4056e1b', 1, 'Helmut & Janet Hagen', 1635511361, 0, '4b4e354716c9cfd71631edf2ecdb38c2');
+INSERT INTO public.rainloop_ab_contacts VALUES (420, 'e36391f4-eba0-4f41-add5-053653ca89d5', 1, 'Irmtraud Rosentreter', 1635511361, 0, 'ec17e5517d6b5f5fb094e42ab46c294f');
+INSERT INTO public.rainloop_ab_contacts VALUES (422, '6319228d-eac8-4adb-8db4-586f4be468e8', 1, 'Andrea Freyberg', 1635511361, 0, 'd11f844a4295136b96492538f2de3868');
+INSERT INTO public.rainloop_ab_contacts VALUES (423, '4772862e-2447-4187-8cd2-1d86f9e488ff', 1, 'Helmut & Janet Hagen', 1635511362, 0, '9a0d4bc75ff1b68b5f29fa8133e60d4f');
+INSERT INTO public.rainloop_ab_contacts VALUES (424, '9361b06b-ec8d-4611-9306-2f0de04537c2', 1, 'Irmtraud Rosentreter', 1635511362, 0, '18d45e71e03385b5e4155b3db8d68af2');
+INSERT INTO public.rainloop_ab_contacts VALUES (425, '1e8744e9-2aef-4c40-a0aa-e57a6e2b6829', 1, 'Andrea Freyberg', 1635511362, 0, '1d4f4195bab0137ec316fa5f6bc46c0a');
+INSERT INTO public.rainloop_ab_contacts VALUES (426, 'd84d04cc-4f17-4d9d-af12-7fed8547b068', 1, 'Helmut & Janet Hagen', 1635511362, 0, '307a7f349d6a868f25b4006eb98a9587');
+INSERT INTO public.rainloop_ab_contacts VALUES (427, '7440ecb3-74cd-4934-9df1-84a10e7e32e6', 1, 'Irmtraud Rosentreter', 1635511362, 0, '5b427ea900e8306b84c29af8c8b69507');
+INSERT INTO public.rainloop_ab_contacts VALUES (428, 'd576a986-de20-48cb-81d7-dfc697da96c9', 1, 'Andrea Freyberg', 1635511363, 0, '5a221a235f019afe37e53ec5dd034133');
+INSERT INTO public.rainloop_ab_contacts VALUES (429, '6209b313-e235-4edb-a820-42cb20f36b89', 1, 'Helmut & Janet Hagen', 1635511363, 0, 'cf3d2f6120a65bbe0111f4d335d114c7');
+INSERT INTO public.rainloop_ab_contacts VALUES (430, '8c98c108-4fb7-4b1a-946d-377b1994dc98', 1, 'Irmtraud Rosentreter', 1635511363, 0, '95704847a36ad7f8c9bda8864d145b6c');
+INSERT INTO public.rainloop_ab_contacts VALUES (431, '0d38f893-f44f-44e3-a918-7566f2b6a065', 1, 'Andrea Freyberg', 1635511363, 0, '2deff556d76de5891e92c623083c6e9f');
+INSERT INTO public.rainloop_ab_contacts VALUES (432, 'dc2059b7-ad55-479c-8955-e8c80ae94c8e', 1, 'Helmut & Janet Hagen', 1635511364, 0, '8c5a24ef727c8c06cba68d52a432f7c4');
+INSERT INTO public.rainloop_ab_contacts VALUES (433, '3c61b966-1d45-4504-8da6-652549df9eab', 1, 'Irmtraud Rosentreter', 1635511364, 0, 'b8ea794b8961424f98bb26fa2753ba7f');
+INSERT INTO public.rainloop_ab_contacts VALUES (434, '97a80e06-654b-4503-8f93-49f434702b19', 1, 'Andrea Freyberg', 1635511364, 0, '8a273671c6ff5d7ebe45e6b6c2865486');
+INSERT INTO public.rainloop_ab_contacts VALUES (435, 'a2509e97-502e-4608-a332-7daa6b69cd9c', 1, 'Helmut & Janet Hagen', 1635511364, 0, 'd63cd919d4d8cbd936a233fb79e1bb3a');
+INSERT INTO public.rainloop_ab_contacts VALUES (436, '3dbfcf13-af54-4031-bf1e-e7a3bb65efc5', 1, 'Irmtraud Rosentreter', 1635511364, 0, '81e2ea3bad5bd81121d470c41a962d7d');
+INSERT INTO public.rainloop_ab_contacts VALUES (437, 'f748bc56-75e2-4f78-92cb-50914d231dcc', 1, 'Andrea Freyberg', 1635511365, 0, 'd04eb02670ce6d4b3b9b11bdcb5b7c25');
+INSERT INTO public.rainloop_ab_contacts VALUES (438, 'ea51fa0b-1bde-46eb-8cba-517ec00a9496', 1, 'Helmut & Janet Hagen', 1635511365, 0, 'f1ced6755ef471c17ce6e4e3b3c6f928');
+INSERT INTO public.rainloop_ab_contacts VALUES (439, '1ef98abd-e135-4f47-a77b-41f024463a0c', 1, 'Irmtraud Rosentreter', 1635511365, 0, 'f0bfe849a649848bb5d75488e70a7d60');
+INSERT INTO public.rainloop_ab_contacts VALUES (440, '1b97f6d4-9b0d-4d80-b2ed-aa5eac8bfa46', 1, 'Andrea Freyberg', 1635511365, 0, 'e73fc4e2671da8f921c08cc9804731c4');
+INSERT INTO public.rainloop_ab_contacts VALUES (441, '25cdc528-7c92-495e-9e24-ef80806d7fcb', 1, 'Helmut & Janet Hagen', 1635511365, 0, '3444c5c68d0fb18e5cd30f98d83435cf');
+INSERT INTO public.rainloop_ab_contacts VALUES (442, 'a1c98026-8b1a-4911-9e33-da0fd9f98a97', 1, 'Irmtraud Rosentreter', 1635511366, 0, '066f4e17f1db0e60219ca64b7a038742');
+INSERT INTO public.rainloop_ab_contacts VALUES (443, 'cf750188-a8ec-4816-af2e-b98ae16a8013', 1, 'Andrea Freyberg', 1635511366, 0, 'a82bc2166e11a97810c55765c6ce09a8');
+INSERT INTO public.rainloop_ab_contacts VALUES (444, '0056b7b2-0267-4305-8307-7d7a603f1d05', 1, 'Helmut & Janet Hagen', 1635511366, 0, '2622ea2a156821b66ede1c969253635b');
+INSERT INTO public.rainloop_ab_contacts VALUES (445, '848f9115-d163-4adc-b1ee-c0f6380a64db', 1, 'Irmtraud Rosentreter', 1635511366, 0, '79fe6df72248f22d8ff17b5b301a492c');
+INSERT INTO public.rainloop_ab_contacts VALUES (446, 'c4977b5e-e737-4930-96fe-de4c4489bbdb', 1, 'Andrea Freyberg', 1635511366, 0, '810b18d67f36cbbd7cc9e14a754ee1b3');
+INSERT INTO public.rainloop_ab_contacts VALUES (447, '4ec6857a-0b79-4a6e-8869-650d2a39984e', 1, 'Helmut & Janet Hagen', 1635511367, 0, '7d1db452908d1b235aee684b84c167d6');
+INSERT INTO public.rainloop_ab_contacts VALUES (448, '9a1fd305-e8d3-467f-8088-b88292f72d7a', 1, 'Irmtraud Rosentreter', 1635511367, 0, '5b5a26447daeaa9f8b49488daff43bb1');
+INSERT INTO public.rainloop_ab_contacts VALUES (449, '7f6d5197-e5f3-4ef0-bfaf-d959f438c943', 1, 'Andrea Freyberg', 1635511367, 0, 'c26af718153f6bba0d600584a7df42a6');
+INSERT INTO public.rainloop_ab_contacts VALUES (450, '6aaed340-5ca2-4222-b1dd-40a779de2592', 1, 'Helmut & Janet Hagen', 1635511367, 0, '4c922c69b0f10714f2a6179f9c2b1107');
+INSERT INTO public.rainloop_ab_contacts VALUES (451, '55bc6a18-664c-4aa2-aa55-e4bb85140ae0', 1, 'Jana Lange', 1635511368, 0, '13256b199b80f0f93cf4cdf45df14c18');
+INSERT INTO public.rainloop_ab_contacts VALUES (452, '0e1994aa-61f3-430f-8a85-6b8b26555853', 1, 'Andrea Freyberg', 1635511368, 0, '8e77e0371ebed97dca037dba4aa6c70f');
+INSERT INTO public.rainloop_ab_contacts VALUES (453, '2dd86699-05d9-4cb9-a5d2-cc1f50ced72f', 1, 'Helmut & Janet Hagen', 1635511368, 0, 'c68c573cfea6e6c9cf71b380104608a6');
+INSERT INTO public.rainloop_ab_contacts VALUES (454, 'c75d4089-6744-4b5d-9152-b42c1662dee4', 1, 'Joachim Benedict', 1635511368, 0, '1b02f4650aea8f1ada1adbd3897c8913');
+INSERT INTO public.rainloop_ab_contacts VALUES (455, 'bdae932f-22db-4418-8a99-b768e513febb', 1, 'Andrea Freyberg', 1635511369, 0, '5e40634a329f4755819c9709ac5efa45');
+INSERT INTO public.rainloop_ab_contacts VALUES (456, '247c2f82-4a94-4e36-91ad-87d4f425faaf', 1, 'Helmut & Janet Hagen', 1635511369, 0, '43ab11a52ae371450513844b67dd6d67');
+INSERT INTO public.rainloop_ab_contacts VALUES (457, 'da078ba1-1798-4d92-b246-3e8add973856', 1, 'Jochen Guera', 1635511369, 0, '8b59013b300962b4deb750807b4caa56');
+INSERT INTO public.rainloop_ab_contacts VALUES (458, 'aeef4643-e1e8-4c84-8162-5932511ac19d', 1, 'Andrea Freyberg', 1635511369, 0, 'aeb80187f7e3fc3057fb8032372d0b08');
+INSERT INTO public.rainloop_ab_contacts VALUES (459, '397be40f-2b85-4d02-a767-b99bc85e2ac3', 1, 'Helmut & Janet Hagen', 1635511369, 0, '5c380e2f0f995f1a7837e42799d49a38');
+INSERT INTO public.rainloop_ab_contacts VALUES (460, '1861d273-febd-40d1-a42f-d5b173b75224', 1, 'Andrea Freyberg', 1635511370, 0, '6e709b410c840fb96b9b51ec5dcc1b5e');
+INSERT INTO public.rainloop_ab_contacts VALUES (461, '76206e79-4a9c-41b0-80eb-2a7bfe7846f3', 1, 'Henning Schmiedehausen', 1635511370, 0, '87921ecba58cbdba3ddfded7ca16325c');
+INSERT INTO public.rainloop_ab_contacts VALUES (462, 'f162a1a0-ed0b-415e-a753-fea27a916733', 1, 'Philipp Müller', 1635511370, 0, 'e06038d05b00e9209f5007ec5f15c1e3');
+INSERT INTO public.rainloop_ab_contacts VALUES (697, 'd7d5165c-9dbb-4509-8ceb-cb1ecc3fa922', 2, 'HANNUN', 1655458319, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (463, '6640cbc5-4732-49ef-b912-96cc7ad9a827', 1, 'Andrea Freyberg', 1635511370, 0, '6c2d2e1f4316420b3e2dad9890df3f6f');
+INSERT INTO public.rainloop_ab_contacts VALUES (464, '27b5430b-b84a-4c2a-b3ca-5af8a56ecdc8', 1, 'Hofmann', 1635511370, 0, 'c7df99f3b1241827e703aa5f47009477');
+INSERT INTO public.rainloop_ab_contacts VALUES (465, '72ac8c52-198e-43b8-9a8e-ace490f8e9f4', 1, 'Alex Gallitz', 1635511371, 0, '7c4c05a979c068f9f42823b6bfabef1c');
+INSERT INTO public.rainloop_ab_contacts VALUES (466, '61da9e6b-2f52-446e-928b-f49015a8d9b3', 1, 'Andrea Freyberg', 1635511371, 0, '43c3f181f654fc42ef358218a6069d7d');
+INSERT INTO public.rainloop_ab_contacts VALUES (467, 'e7079021-fee2-4be8-82d9-f295e8b69cc6', 1, 'Hürol Türen', 1635511371, 0, 'ef1d47b160d162c5c6438dcad45364f0');
+INSERT INTO public.rainloop_ab_contacts VALUES (468, 'd6f7cd26-0f38-4dff-9ac2-40074367495c', 1, 'Carl Herrmann', 1635511371, 0, 'b280351c5083325e107d9fe94b9ca2a4');
+INSERT INTO public.rainloop_ab_contacts VALUES (469, '646c118e-45c2-4bec-b10c-eb9a88797340', 1, 'Alex Gallitz', 1635511371, 0, 'd45fc24b339e6e4181f5934d0e8c928f');
+INSERT INTO public.rainloop_ab_contacts VALUES (470, '78abbd37-7629-4523-9dc5-34cd9fe228f6', 1, 'Andrea Freyberg', 1635511372, 0, 'eab8cb03113d5c513c204b9541aa4c24');
+INSERT INTO public.rainloop_ab_contacts VALUES (471, 'b02edfd0-74f4-4b94-99f0-562b3f528699', 1, 'Hürol Türen', 1635511372, 0, '3a2cad8110e79ca28a593f898fe559bf');
+INSERT INTO public.rainloop_ab_contacts VALUES (472, '3d314e9b-4fd9-43b7-8359-1e25837389b4', 1, 'Alex Gallitz', 1635511372, 0, '64dc2393b6265d2a9714363c3c351c54');
+INSERT INTO public.rainloop_ab_contacts VALUES (473, '80b12237-ac0a-42e3-8173-e58fffb48dc4', 1, 'Andrea Freyberg', 1635511372, 0, '07fe6dd6f105009a1655488f16c429db');
+INSERT INTO public.rainloop_ab_contacts VALUES (474, '71be9df7-7c8b-4a65-81a7-e02b5f44f00f', 1, 'Hürol Türen', 1635511372, 0, '104097ce198cce17a2f7256ee3dab669');
+INSERT INTO public.rainloop_ab_contacts VALUES (475, 'dd5cbee9-1582-42c7-a5f1-3a7be04c3366', 1, 'Alex Gallitz', 1635511373, 0, '0cd81de2997020808beb2b8ba66a70b6');
+INSERT INTO public.rainloop_ab_contacts VALUES (476, '828d2a49-faf5-4551-bc86-6fc97dd631ad', 1, 'Andrea Freyberg', 1635511373, 0, '51c607b37c33952f4e7040fa1d34c74b');
+INSERT INTO public.rainloop_ab_contacts VALUES (477, '8bed7c14-d07f-4e06-aec2-84f0bb26a1ae', 1, 'Hürol Türen', 1635511373, 0, '0017b12b1f3b1278c998b53a7073e6d3');
+INSERT INTO public.rainloop_ab_contacts VALUES (478, 'e4f17706-b9e9-487f-ace4-af2145340177', 1, 'Alex Gallitz', 1635511373, 0, '77c77b54473db8769fb6549b3ed50824');
+INSERT INTO public.rainloop_ab_contacts VALUES (479, '5a09c321-1fb1-4468-ae8c-adc081a79499', 1, 'Andrea Freyberg', 1635511374, 0, '95bb22b7053c9cd4a7569ede3ba5a2f3');
+INSERT INTO public.rainloop_ab_contacts VALUES (480, 'dd39b111-6c7c-4bf9-9f09-716f18e01541', 1, 'Hürol Türen', 1635511374, 0, 'a192b855d621bbcfef220c4d4f6f1a55');
+INSERT INTO public.rainloop_ab_contacts VALUES (481, '0d42b88a-a864-48c3-adfe-a4095d1d7ed9', 1, 'Andrea Weber', 1635511374, 0, '033b1a756efb94a82195ffaac6f54bdf');
+INSERT INTO public.rainloop_ab_contacts VALUES (482, '7697f075-4383-46ac-9ded-7dbae3f342e0', 1, 'Hürol Türen', 1635511374, 0, '12f0e7b874f0f5301989f16c496e670a');
+INSERT INTO public.rainloop_ab_contacts VALUES (483, '1d88fb35-0a79-423a-8432-af830d64f2e6', 1, 'Alex Gallitz', 1635511374, 0, '5ea177c19811fe1f61f2f5d85e5d5864');
+INSERT INTO public.rainloop_ab_contacts VALUES (484, '92cae255-a377-4373-9b58-72a3e002d876', 1, 'Andreas Menz', 1635511375, 0, 'ea689b46ae37d85623460036339909d0');
+INSERT INTO public.rainloop_ab_contacts VALUES (485, '59c77fb6-9a89-48d2-bf10-38587724ed4e', 1, 'Hürol Türen', 1635511375, 0, '84d0b5db53843731843ddec31668cfe0');
+INSERT INTO public.rainloop_ab_contacts VALUES (486, 'd4832727-7eb3-469c-8bca-e6da790ace98', 1, 'Alex Gallitz', 1635511375, 0, '8065ae08eebe1dcc2cf9c03533be50dd');
+INSERT INTO public.rainloop_ab_contacts VALUES (487, '177e8af4-f37e-412e-9be6-6953768adf90', 1, 'Andreas Menz', 1635511375, 0, '8cfe7abe7ddf101e3fe045c8965bd1f0');
+INSERT INTO public.rainloop_ab_contacts VALUES (488, '68f96693-a8c0-4c0a-be9e-81d6f999cc8d', 1, 'Hürol Türen', 1635511376, 0, '98151120b42a3373574c55c027df0f8d');
+INSERT INTO public.rainloop_ab_contacts VALUES (489, '6bc78f72-e61c-41de-9256-a8bc46c6b76d', 1, 'Andreas Schalm', 1635511376, 0, '05d4f5b768270c3ee13cdf9eead37078');
+INSERT INTO public.rainloop_ab_contacts VALUES (490, '22299528-1e5e-40c8-bb06-3d7080201fc7', 1, 'Hürol Türen', 1635511376, 0, '96d52e8e65b69e1200c8d28e7e2da245');
+INSERT INTO public.rainloop_ab_contacts VALUES (491, 'a7ca94a7-d19c-44f4-8e41-deb172ff5a6a', 1, 'Alex Gallitz', 1635511376, 0, 'b1ada7b12184cbbf956c90e06a600f4c');
+INSERT INTO public.rainloop_ab_contacts VALUES (492, '7b6b1b86-5d18-492f-81ee-a27cf8df5f6f', 1, 'Andreas Schamberger', 1635511376, 0, 'b7103a6593007fe5248a91f0d0118a88');
+INSERT INTO public.rainloop_ab_contacts VALUES (493, 'e63631ff-07d1-4973-9e21-b6031b5a9b5d', 1, 'Hürol Türen', 1635511377, 0, '34bc2d75bbf392e5cb34a9e7c4993c3c');
+INSERT INTO public.rainloop_ab_contacts VALUES (494, '12449b0a-c447-45a4-bbb4-8923946c1981', 1, 'Alex Gallitz', 1635511377, 0, 'd275f068b86c7cd9709fbdf62a28ee64');
+INSERT INTO public.rainloop_ab_contacts VALUES (495, '731139c1-dc9e-431a-82bc-64d9c08c58ff', 1, 'Angela Klausen', 1635511377, 0, '63a2c8289cbb5f9b9fc5c663720998bc');
+INSERT INTO public.rainloop_ab_contacts VALUES (496, '760bd537-8f76-44a7-90d1-1b378856757b', 1, 'ju_schulze@online.de', 1635511378, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (497, '61068018-b298-48d8-b054-99a43f9d8913', 1, 'Hürol Türen', 1635511378, 0, '4886302ba9b810647d72fb4557397bd9');
+INSERT INTO public.rainloop_ab_contacts VALUES (498, 'c2039003-60dd-4ce4-be18-eb0c21e23c95', 1, 'Alex Gallitz', 1635511378, 0, 'b40c516562e0190e21df12b99916e34d');
+INSERT INTO public.rainloop_ab_contacts VALUES (499, '1a7ceac5-e516-4171-a1c3-35181459066e', 1, 'Hürol Türen', 1635511378, 0, '34668c120997f23d6a08dc1bb3705a27');
+INSERT INTO public.rainloop_ab_contacts VALUES (500, 'ef02f92f-a8b3-4d6b-93ec-2a7e7031f17b', 1, 'Anita Meyer', 1635511378, 0, '1b241e6062112ef7e086a79d17a0ffdf');
+INSERT INTO public.rainloop_ab_contacts VALUES (501, '7e61691f-cf3a-408a-aea5-a39ce5f51aa2', 1, 'Alex Gallitz', 1635511378, 0, '4dc9947cf188018d05add24f69da8023');
+INSERT INTO public.rainloop_ab_contacts VALUES (502, '72f722a3-1c46-4e76-b7ff-29aba86785f7', 1, 'Anja Assenbaum', 1635511379, 0, '271fe646587ae52c85a4dad2492929e1');
+INSERT INTO public.rainloop_ab_contacts VALUES (503, '4cee6a7f-7c35-4f05-9e5f-908a4276f51d', 1, 'Hürol Türen', 1635511379, 0, 'fc7f448e7d936ecd34f1f8590936e7d2');
+INSERT INTO public.rainloop_ab_contacts VALUES (504, '48db21df-3065-446f-a149-56eae4fa768a', 1, 'Alex Gallitz', 1635511379, 0, 'a67ff88970d8178a758969ca52e14bda');
+INSERT INTO public.rainloop_ab_contacts VALUES (505, '9affcc0b-004f-463b-9d9e-1079dcba212a', 1, 'Hürol Türen', 1635511379, 0, '8b6c2b4bdab60f1b0b9d471692e6372e');
+INSERT INTO public.rainloop_ab_contacts VALUES (506, '8b538cd2-1fe8-4dcb-927d-07a1c3aef637', 1, 'Anke Friedl', 1635511379, 0, 'a5c44082c92afb8955c383bfe670a9d9');
+INSERT INTO public.rainloop_ab_contacts VALUES (507, 'b87969bb-b41f-4dfc-99a0-75e7978322e1', 1, 'Annett Pflanz', 1635511380, 0, '2caed1388705f4a414a7242b72ce0ca1');
+INSERT INTO public.rainloop_ab_contacts VALUES (508, '6689abfc-a39b-4d53-be32-b96a446080f2', 1, 'Hürol Türen', 1635511380, 0, '509e3a8c6203c6e9827bf472210143a4');
+INSERT INTO public.rainloop_ab_contacts VALUES (510, '0ce53c64-db67-4508-9f67-0a98f0bed066', 1, 'Annette Kappestein', 1635511380, 0, '93e09963c722ea43e3025a6b03f1d61c');
+INSERT INTO public.rainloop_ab_contacts VALUES (511, '120edc2d-8871-4c65-805e-a09f8d150841', 1, 'Hürol Türen', 1635511381, 0, '239a3b7b62390a98132eb4113d59f8eb');
+INSERT INTO public.rainloop_ab_contacts VALUES (513, '36703824-240d-4629-aac4-fdd2e137cc0f', 1, 'Astrid Hirschmann', 1635511381, 0, '39fc3809bf21555572a7d81da33476b6');
+INSERT INTO public.rainloop_ab_contacts VALUES (514, '16de8f26-92be-4c70-a27c-b2d44064e47d', 1, 'Hürol Türen', 1635511381, 0, 'cb95bfd00e8b772e4eab1d1929deda79');
+INSERT INTO public.rainloop_ab_contacts VALUES (516, 'd948ea0d-7b7e-4cfd-824d-3b928fdb49eb', 1, 'Astrid Schuh', 1635511382, 0, '6cfe0f61f08ed145905e2ce7556ebb58');
+INSERT INTO public.rainloop_ab_contacts VALUES (517, '82ae38ae-de15-4b52-9f4a-4d1347c49e99', 1, 'Hürol Türen', 1635511382, 0, 'cebe91f96d66cf5692d5fa8cbed5ca98');
+INSERT INTO public.rainloop_ab_contacts VALUES (519, '9d975557-0c1a-4ca5-a72c-b01fa7a7529e', 1, 'Benjamin Skoda', 1635511382, 0, 'ca472e243f5bd0169bc23a8adf730e76');
+INSERT INTO public.rainloop_ab_contacts VALUES (520, 'fa970e4c-d734-40b0-8ee1-52120dda7dbb', 1, 'Hürol Türen', 1635511382, 0, '4c63701658c5d69ab91179686bb74520');
+INSERT INTO public.rainloop_ab_contacts VALUES (522, 'e6d508af-c842-44a3-9f6b-6dde8bf9e95a', 1, 'Carolin Frank', 1635511383, 0, '01e56456cbde51a2a65c1653d3b15d26');
+INSERT INTO public.rainloop_ab_contacts VALUES (523, '1d3e2b61-0f8a-427d-a53d-5b0c7b4f78da', 1, 'Hürol Türen', 1635511383, 0, '70afefe3a5d875af071e40468ded517d');
+INSERT INTO public.rainloop_ab_contacts VALUES (524, '8634d159-922c-4eb0-a762-ed51b3b81e36', 1, 'Tom Czernicky', 1635511383, 0, 'd6a1cab70cf55d92f37f8eee1849f3e4');
+INSERT INTO public.rainloop_ab_contacts VALUES (526, '33d025cd-6097-42b6-8b23-049497c05468', 1, 'Carolin Hoose', 1635511384, 0, '508000dd50c888172f3f2702133fffe4');
+INSERT INTO public.rainloop_ab_contacts VALUES (527, 'c74ffccb-c895-415a-88fa-645f3fe364ca', 1, 'Ina Rosentreter', 1635511384, 0, '76c0ffd40308abe5c47f026c1335ad18');
+INSERT INTO public.rainloop_ab_contacts VALUES (529, 'e3d998ef-8727-47fd-930b-9b976d8395c8', 1, 'Christian Schmidt', 1635511384, 0, '18372ee92ed591d04abb089a90b3387f');
+INSERT INTO public.rainloop_ab_contacts VALUES (530, '96beac16-e777-4c33-ae7c-1948afb3714e', 1, 'Ina Rosentreter', 1635511385, 0, '433a58e40257f83246ba9230980f6d49');
+INSERT INTO public.rainloop_ab_contacts VALUES (532, '4654ca49-db69-4821-b993-073a864ee8dd', 1, 'Christine Dr. Conrad', 1635511385, 0, '57231acd6a1c5aa52c30f925ee3cdb38');
+INSERT INTO public.rainloop_ab_contacts VALUES (533, '22f437f1-1107-4f9e-8b97-23fc1a4ea28a', 1, 'Ina Rosentreter', 1635511385, 0, '5da7ae052b719fdc7abc8b659c741acd');
+INSERT INTO public.rainloop_ab_contacts VALUES (535, 'a7e34547-4797-48f9-9ff5-58019d8a2d59', 1, 'Ina Rosentreter', 1635511386, 0, 'bc1374fd141c02e0479e137b2277755a');
+INSERT INTO public.rainloop_ab_contacts VALUES (536, 'db047734-1852-456e-9849-22ba7ee08b2d', 1, 'Christine Göcke', 1635511386, 0, 'dfac4fcb582ff12012723d167339c787');
+INSERT INTO public.rainloop_ab_contacts VALUES (537, 'f561f013-042e-4f06-b4e4-0b54468e9da7', 1, 'Alexandra Dech', 1635511386, 0, '830171d0991dd1696c8bb335a81f39ea');
+INSERT INTO public.rainloop_ab_contacts VALUES (538, '65f86be7-c66b-47fc-b91d-82e6ed5c6b27', 1, 'Ina Rosentreter', 1635511386, 0, '45c498153e94af743846ec8a6b3d2d59');
+INSERT INTO public.rainloop_ab_contacts VALUES (539, '23a406b2-d66c-4d30-8401-c95c35044167', 1, 'Christine Meergans', 1635511387, 0, '97e09a8007b5f11b7c5dc7339198576d');
+INSERT INTO public.rainloop_ab_contacts VALUES (540, '42846261-0ccf-434c-847f-fb6e7de65120', 1, 'Alexandra Dech', 1635511387, 0, '49ea5ebd71cbd0c6706094490de60830');
+INSERT INTO public.rainloop_ab_contacts VALUES (541, 'dadfe823-6a71-47d6-b7a8-504093349467', 1, 'Ina Rosentreter', 1635511387, 0, 'e245117d765a1da417d9967f4682adc6');
+INSERT INTO public.rainloop_ab_contacts VALUES (542, '3b6c0fab-12a1-492e-8ab6-cf2e6ae81789', 1, 'Clarissa Kreßmann', 1635511387, 0, 'f5d616d5127925629045240ec2762841');
+INSERT INTO public.rainloop_ab_contacts VALUES (543, '55eac476-405a-4d36-bacd-beded3b1acc6', 1, 'Alexandra Dech', 1635511388, 0, '880f396844b7e1a583f1e72a78bb6e9d');
+INSERT INTO public.rainloop_ab_contacts VALUES (544, 'f662ac97-6730-4060-a1de-e90e64fbcae1', 1, 'Corinna Voos', 1635511388, 0, '5ccc0b37bbfac950fe0204a82e084b46');
+INSERT INTO public.rainloop_ab_contacts VALUES (545, '183e2227-fe35-4908-bd91-da125b5962b2', 1, 'Ina Rosentreter', 1635511388, 0, '211c0bfa02d7b5415569e7adb2ad7a3a');
+INSERT INTO public.rainloop_ab_contacts VALUES (546, '2c2db25a-7373-4e30-b742-7198b3a65f28', 1, 'Alexandra Dech', 1635511388, 0, '1914ee61d2c8a3b31a152227a78a76fc');
+INSERT INTO public.rainloop_ab_contacts VALUES (547, '1209f632-db71-4f4a-9d1c-c90f30407df8', 1, 'Ina Rosentreter', 1635511389, 0, '212d73e714ebac588cc53624f4bb011a');
+INSERT INTO public.rainloop_ab_contacts VALUES (548, 'f59877ea-b4af-4a41-bc8e-0a280ed935fd', 1, 'Cornelia Böttcher', 1635511389, 0, '005b94b037ecccbd16641dc86b27d180');
+INSERT INTO public.rainloop_ab_contacts VALUES (549, '6db5b5b6-dd9d-4b74-97a0-207dbf023f06', 1, 'Alexandra Dech', 1635511389, 0, 'dad1e0e8c05aea02de027b994d480cfb');
+INSERT INTO public.rainloop_ab_contacts VALUES (550, '709f4886-e04d-465d-b684-63c4d115d2ad', 1, 'Dagmar van der Horst', 1635511389, 0, '3b5bb67abb22d6b18bb3af5e7fb7704c');
+INSERT INTO public.rainloop_ab_contacts VALUES (551, 'a5214f99-feef-44df-893d-7f2b2d42add5', 1, 'Ina Rosentreter', 1635511390, 0, '70c73ab00ef8778273e2c8ae52e94d2c');
+INSERT INTO public.rainloop_ab_contacts VALUES (552, '5c072167-2c7c-4b25-94f5-4b38e5d08859', 1, 'Ina Rosentreter', 1635511390, 0, 'e40ef0710bb5e077a2992985e58dcc07');
+INSERT INTO public.rainloop_ab_contacts VALUES (553, '3360803a-e3b9-43ca-ba6d-5a64449a7816', 1, 'Alexandra Dech', 1635511390, 0, '42bb0c7b018613064a672e0b3fd45094');
+INSERT INTO public.rainloop_ab_contacts VALUES (554, 'c3706885-26eb-4679-9bd2-071101f4996e', 1, 'Dominik Jaroch', 1635511390, 0, '44ba81e4921cb9156eee02e0d4ce55b7');
+INSERT INTO public.rainloop_ab_contacts VALUES (555, '4f5b1ac9-6f11-4540-a3c3-054f078c4628', 1, 'Alexandra Dech', 1635511390, 0, 'b469250df69fd546987758d0618b0a12');
+INSERT INTO public.rainloop_ab_contacts VALUES (556, '11bc1d04-270a-474e-bf1d-f5a9e388bca1', 1, 'Dr. Alexandra Krenmayer', 1635511391, 0, '1952adc50e33b1eadcdd769961c7dda0');
+INSERT INTO public.rainloop_ab_contacts VALUES (557, '4a753df7-64a0-4b96-9de5-92c3764e8183', 1, 'Ina Rosentreter', 1635511391, 0, 'fd702bfde80a2c836fd3befb18e1e300');
+INSERT INTO public.rainloop_ab_contacts VALUES (558, '310035fa-6fff-4365-bad2-e81e363cb353', 1, 'Alexandra Dech', 1635511391, 0, '2763f96b18b479cde444424a3a2c681d');
+INSERT INTO public.rainloop_ab_contacts VALUES (559, '78427eab-9210-45a6-a023-480dff2348d5', 1, 'Dr. Jungkunz', 1635511391, 0, '81e18597075f2bf0c1fb231a27107823');
+INSERT INTO public.rainloop_ab_contacts VALUES (560, '9b55a0c6-1195-47e4-907b-9e8a2aa7438f', 1, 'Ina Rosentreter', 1635511391, 0, '1cc60454132f735391af861481a0a59d');
+INSERT INTO public.rainloop_ab_contacts VALUES (561, '0558cf08-d678-4d7a-8473-3e7cd12fbf76', 1, 'Alexandra Dech', 1635511392, 0, '7765a484ed927e1c2867e358e66008be');
+INSERT INTO public.rainloop_ab_contacts VALUES (562, '720bb611-9a15-44ef-9050-8490ed2f857e', 1, 'Dr. Rometsch', 1635511392, 0, 'f087d3b05c765488efbc7ef6e2212b5e');
+INSERT INTO public.rainloop_ab_contacts VALUES (563, '019702f2-eb2a-41b1-bf95-bcbe57a10cba', 1, 'Ina Rosentreter', 1635511392, 0, '1afebd2d8ca87d4e8e1fc57c3932fae4');
+INSERT INTO public.rainloop_ab_contacts VALUES (564, 'd5a0eba6-fa60-4f3c-a69e-8e01e10d4183', 1, 'Alexandra Dech', 1635511392, 0, '1b701643c3570c98ae86959e957d9b81');
+INSERT INTO public.rainloop_ab_contacts VALUES (565, '06f9f0c0-7b6e-4831-8464-2d4f5455d4af', 1, 'Esther Sanchez del Pozo', 1635511393, 0, 'f06b19054ce6d0946425ab7d300e9ba3');
+INSERT INTO public.rainloop_ab_contacts VALUES (566, '6b6ee042-79f1-48c4-8316-bff2cfc4f154', 1, 'Ines Daun', 1635511393, 0, '3ade77bed8513eeb752885c4c695cd42');
+INSERT INTO public.rainloop_ab_contacts VALUES (567, '402b08e6-f967-4a2a-ae92-82ffc68c3efa', 1, 'Alexandra Denise da Silva', 1635511393, 0, 'fc4bc0e648d2f78a94296c3e27ff94b2');
+INSERT INTO public.rainloop_ab_contacts VALUES (568, 'c760918a-9be0-4896-bb77-1fa5bd4c69f6', 1, 'Eva Rundholz', 1635511393, 0, '592dd78e8da5772051fddcd18953610a');
+INSERT INTO public.rainloop_ab_contacts VALUES (569, '13c5698c-dbe9-4c40-bab7-4444c2dbc94c', 1, 'Ines Daun', 1635511393, 0, 'cae9dd5e44b6b45f37a54c084cba3e25');
+INSERT INTO public.rainloop_ab_contacts VALUES (570, '245d3cd8-b0c7-4d99-986c-9b33880379fa', 1, 'Alexandra Denise da Silva', 1635511394, 0, '4ba0be722afd61be0c7d55695a00aec3');
+INSERT INTO public.rainloop_ab_contacts VALUES (571, '0cf66565-ca0a-43e9-8eee-5df1e2f97acc', 1, 'Fabian Schiller', 1635511394, 0, 'c77f1692036c39141d8ef1c2b2019151');
+INSERT INTO public.rainloop_ab_contacts VALUES (572, '09ef0ae2-f1bd-424e-b0be-0a43145f3c65', 1, 'Ines Daun', 1635511394, 0, '09b4d5a1236cb09e8a3c9bd0d0647719');
+INSERT INTO public.rainloop_ab_contacts VALUES (573, '477409a5-8c29-47fa-b16a-4511a85f1d00', 1, 'Alexandra Denise da Silva', 1635511394, 0, 'd36a237e99ca90217873feea0dd187d4');
+INSERT INTO public.rainloop_ab_contacts VALUES (574, 'fcbc7696-a9c2-4878-958e-3180e7fed97b', 1, 'Frank Kraeker', 1635511395, 0, '5a2a6a58a0ed83047e7dcdd6233f87ef');
+INSERT INTO public.rainloop_ab_contacts VALUES (575, '93e1617f-78a4-4274-839e-1061073883b9', 1, 'Ines Daun', 1635511395, 0, '5af4638ab9d171f7bece59d9d7bb7b31');
+INSERT INTO public.rainloop_ab_contacts VALUES (576, '387703d1-593e-4548-9f93-be5115d56e94', 1, 'Sarah Matthe', 1635511395, 0, 'f6c14356dbc9d975b62215891c4049d2');
+INSERT INTO public.rainloop_ab_contacts VALUES (577, '2da875ad-9dfc-4423-a411-cbc46f723d11', 1, 'Alexandra Denise da Silva', 1635511395, 0, 'd7f05875c782a4a7258df32438ba007c');
+INSERT INTO public.rainloop_ab_contacts VALUES (578, '8acdd4f2-afef-43e4-890b-2fda7dffb264', 1, 'Franziska Rabensteiner', 1635511395, 0, 'a18a815ff77c0a1d8ab811e37fe8657c');
+INSERT INTO public.rainloop_ab_contacts VALUES (579, '07d56b3d-aab8-4733-94ab-10e958a74d3a', 1, 'Ines Daun', 1635511396, 0, '355710e55e74545f413d03509fa26be5');
+INSERT INTO public.rainloop_ab_contacts VALUES (580, '76aebc13-15c0-4ffc-b9c0-ffc279a7c811', 1, 'Alexandra Denise da Silva', 1635511396, 0, '469298627588fe935eab0f2ec89ca000');
+INSERT INTO public.rainloop_ab_contacts VALUES (581, 'bc310c4a-65c2-40af-aa52-f9c7b7bdbff3', 1, 'Franziska Steinmetz', 1635511396, 0, 'b28348f74f38ba9d1bfda5a66d5f2c34');
+INSERT INTO public.rainloop_ab_contacts VALUES (582, 'a4a43fe7-8d65-4f87-8d28-4d9e872658e7', 1, 'Ines Daun', 1635511396, 0, '3e4c0d0ae9a04ba362dd952972976355');
+INSERT INTO public.rainloop_ab_contacts VALUES (583, '577e24b0-fe04-4ae4-ac96-d32f29050a7f', 1, 'Alexandra Denise da Silva', 1635511397, 0, '401bbdaf0930bbfc001332badbae1598');
+INSERT INTO public.rainloop_ab_contacts VALUES (584, 'beb8cc3d-42a1-4984-9798-48d68a3dd73c', 1, 'Frauke Gehrmann', 1635511397, 0, '0670fb7943835980e3de4514adc34f6d');
+INSERT INTO public.rainloop_ab_contacts VALUES (585, '8b34e75c-7c57-4dd5-bb2a-122f623ba051', 1, 'Ines Daun', 1635511397, 0, '7d09fdc717391e978643020e611190c6');
+INSERT INTO public.rainloop_ab_contacts VALUES (586, 'e0f02ebc-5d9e-4bec-91bb-c924b6c10033', 1, 'Alexandra Denise da Silva', 1635511397, 0, '44c7be99101b6c31a8a8b9e224cafd7a');
+INSERT INTO public.rainloop_ab_contacts VALUES (587, '0e77b610-a930-4cef-87f2-74f7b0ba9576', 1, 'Frauke Gehrmann', 1635511397, 0, 'd21510224e97b5ae7f2ff405b264ed87');
+INSERT INTO public.rainloop_ab_contacts VALUES (588, '61b63715-366d-4524-a140-26a9524bc50e', 1, 'Ines Daun', 1635511398, 0, '209217269d518174309b0f41461f3202');
+INSERT INTO public.rainloop_ab_contacts VALUES (589, 'f92094f2-b963-40ef-93b1-b0d86d57d043', 1, 'Alexandra Denise da Silva', 1635511398, 0, 'ba31d168029acaeedb71f4074c5d3c5b');
+INSERT INTO public.rainloop_ab_contacts VALUES (590, 'a6169b55-7aed-4dde-ad1c-4b9ddd9a41f9', 1, 'Frauke Gehrmann', 1635511398, 0, '10a05fd687883e3c140e8697190b0695');
+INSERT INTO public.rainloop_ab_contacts VALUES (591, '2d95ba50-3964-4a12-9b9d-80961f77895b', 1, 'Ines Daun', 1635511398, 0, '350de9ab21bb3f29414b8fc047eb12e7');
+INSERT INTO public.rainloop_ab_contacts VALUES (592, '4103dcb4-a380-4893-8c8a-f44c79bd777c', 1, 'Michael Ultsch', 1635511399, 0, 'bb44a2630ea6b15fdbb1057ea9577766');
+INSERT INTO public.rainloop_ab_contacts VALUES (593, '53d0c574-f403-469a-ab9c-5915ed5d5f6b', 1, 'Alexandra Denise da Silva', 1635511399, 0, '85fcbf9cde07e0f09870e6a210617619');
+INSERT INTO public.rainloop_ab_contacts VALUES (594, '3388d59b-b09c-490d-adbe-191abadb2e58', 1, 'Frauke Gehrmann', 1635511399, 0, 'f276d3f4fb5e266acfbb33fba8b20ca9');
+INSERT INTO public.rainloop_ab_contacts VALUES (595, 'b5910653-7fe4-4ad8-8188-62525341143a', 1, 'Ines Daun', 1635511399, 0, '15d34f3e3cf3471cb2f43e1c2590ec3a');
+INSERT INTO public.rainloop_ab_contacts VALUES (596, 'ae58f12d-3d6c-4486-aad7-e8fda9cafd4d', 1, 'Alexandra Denise da Silva', 1635511399, 0, 'be077311ddc4db7221263c41e991716b');
+INSERT INTO public.rainloop_ab_contacts VALUES (597, '46683fc8-3a36-4cae-bf1a-20b67e0f4ca8', 1, 'Frauke Gehrmann', 1635511400, 0, '5f1aef240d2ce7cfd8914e1d2839dbd4');
+INSERT INTO public.rainloop_ab_contacts VALUES (598, 'ece73488-a18c-4af3-bd14-e112faea2fe7', 1, 'Ines Daun', 1635511400, 0, '7cc2bdea6b52b959a85d05d4a4c6c5dd');
+INSERT INTO public.rainloop_ab_contacts VALUES (599, '17370cc9-b19e-42cc-afb6-117d65c872bb', 1, 'Alexandra Denise da Silva', 1635511400, 0, '8166a79c674016857193ee01bbae2790');
+INSERT INTO public.rainloop_ab_contacts VALUES (600, '2050ab5e-5f1b-4e5b-a7fe-0b46f8304393', 1, 'Frauke Gehrmann', 1635511400, 0, '6f88b7b57594436047627df6664e5f56');
+INSERT INTO public.rainloop_ab_contacts VALUES (601, 'cd67efea-7e75-47bf-ade2-f682f18b973b', 1, 'Ines Daun', 1635511401, 0, '33414a9807ab91c716e5c98161349147');
+INSERT INTO public.rainloop_ab_contacts VALUES (602, 'f9e0bef7-8378-4b86-91c8-ff8654d22ec4', 1, 'Alexandra Denise da Silva', 1635511401, 0, 'b58df198cbd5ef22c123c87828e95b3a');
+INSERT INTO public.rainloop_ab_contacts VALUES (603, '747c0f24-6c94-473e-bcab-e4664aff4c7e', 1, 'Frauke Gehrmann', 1635511401, 0, '5513b2a46c5533f1afca4fe2fb40e4de');
+INSERT INTO public.rainloop_ab_contacts VALUES (604, 'cdc50ed8-79ad-4671-97c9-24e70cc24bd1', 1, 'Ines Daun', 1635511402, 0, 'e8adc7502190252a9ba3243e61b2cd2b');
+INSERT INTO public.rainloop_ab_contacts VALUES (605, 'b1927a12-d108-46a2-9db0-112769b24bee', 1, 'Alexandra Krenmayer', 1635511402, 0, '295c5efb3caeeb83c28979167ee88b24');
+INSERT INTO public.rainloop_ab_contacts VALUES (606, '4028df15-e859-4096-80a9-8137bb465bf4', 1, 'Frauke Gehrmann', 1635511402, 0, 'a86ee4b56f558029fdb4cb7e461c4ce1');
+INSERT INTO public.rainloop_ab_contacts VALUES (607, 'd1562e7b-f3f6-46e7-91e4-1934266d9256', 1, 'Ingrid Samoray', 1635511402, 0, 'eb534caff2aabf45e131659c1cf03b10');
+INSERT INTO public.rainloop_ab_contacts VALUES (608, 'cdd24394-92c3-4a1d-b30b-a33208275093', 1, 'Alexandra Krenmayer', 1635511402, 0, 'ef2f6d15f70aee5e366f80fa6001582e');
+INSERT INTO public.rainloop_ab_contacts VALUES (609, '8aed045c-9122-43e3-9598-a001be4f1d2c', 1, 'Frauke Gehrmann', 1635511403, 0, '2cf6d844ef7e1fcc339932262f763a7c');
+INSERT INTO public.rainloop_ab_contacts VALUES (610, '02138387-7ef1-47a5-b1bb-1c04ef2732dc', 1, 'Ingrid Samoray', 1635511403, 0, 'fa2293cec5c852b866019bd6ec97a8a3');
+INSERT INTO public.rainloop_ab_contacts VALUES (611, '8d3abb7d-140d-4d70-a7e4-4dfe4e4699a6', 1, 'Alexandra Krenmayer', 1635511403, 0, '196eb6c98956fc349a9ffd7bfd3cf50d');
+INSERT INTO public.rainloop_ab_contacts VALUES (612, '7ce047d8-be7d-470c-85dc-2cecf7b2530a', 1, 'Frauke Gehrmann', 1635511404, 0, 'e27ce199cf2762279e8276303e2d3deb');
+INSERT INTO public.rainloop_ab_contacts VALUES (613, 'b6fdb2d6-c09d-4428-97cd-caf7b9380bdb', 1, 'Ingrid Samoray', 1635511404, 0, 'f8dc172100e001f888a97ff96dcc106d');
+INSERT INTO public.rainloop_ab_contacts VALUES (614, 'd67d7203-e943-4130-9dd6-f5e38200191a', 1, 'Alexandra Krenmayer', 1635511404, 0, 'be5133008b91204a13e280d156268ad5');
+INSERT INTO public.rainloop_ab_contacts VALUES (615, '72a3da18-8606-453c-8b45-d406b1f0f6b2', 1, 'Frauke Gehrmann', 1635511404, 0, 'f219b8b5d882ee7800e1c894a2a13a77');
+INSERT INTO public.rainloop_ab_contacts VALUES (616, 'c16d2625-d8d9-48d5-ad62-21e25afaee64', 1, 'Ingrid Samoray', 1635511404, 0, '4638c6a81ac9fb093aa2a688b72f7f71');
+INSERT INTO public.rainloop_ab_contacts VALUES (617, 'fcec4c13-4259-4736-a9e6-02fa4994069d', 1, 'Alexandra Krenmayer', 1635511405, 0, '3ec95d1c4e0ec93c33d0ddf3b4ebc1e8');
+INSERT INTO public.rainloop_ab_contacts VALUES (618, '2b7e8bc6-a290-48d8-82d3-a1d8b7f27242', 1, 'Frauke Gehrmann', 1635511405, 0, 'e8f0f29a44b8c6d8778e4a731412dc63');
+INSERT INTO public.rainloop_ab_contacts VALUES (619, 'd4f9341c-6561-4d8a-a336-26a65503ccf9', 1, 'Ingrid Samoray', 1635511405, 0, '843bbd62986153768b88798f3fe52035');
+INSERT INTO public.rainloop_ab_contacts VALUES (620, '8536472a-c7cb-4c68-ba40-386c9f8bad66', 1, 'Alexandra Krenmayer', 1635511405, 0, '35613c8f3f3e73552b96fb52e128bb49');
+INSERT INTO public.rainloop_ab_contacts VALUES (621, '65cfdd48-10d0-40eb-9ecc-7d2c2c07d668', 1, 'Frauke Gehrmann', 1635511406, 0, 'd5a6f9342d479e4c124be213e5d1a947');
+INSERT INTO public.rainloop_ab_contacts VALUES (622, '282d6cb8-24eb-49b1-9827-ed884f4baf26', 1, 'Ingrid Samoray', 1635511406, 0, 'f8dae0f4ab98b4d35169015ba932a969');
+INSERT INTO public.rainloop_ab_contacts VALUES (623, 'b0c533c6-e32d-4e25-925f-67d9f3896031', 1, 'Alexandra Krenmayer', 1635511406, 0, '1074395380f082b16d75a501a36b24a4');
+INSERT INTO public.rainloop_ab_contacts VALUES (624, '0c607440-8c08-4c5c-86c4-45c6c0318c22', 1, 'Frauke Gehrmann', 1635511407, 0, 'c5e837b3df90519a7d773ba14786afff');
+INSERT INTO public.rainloop_ab_contacts VALUES (625, 'f885e5e8-87fc-41ac-a4d8-c924be0df8f0', 1, 'Ingrid Samoray', 1635511407, 0, '50efe7c6d14290ad9735730cc42de6e1');
+INSERT INTO public.rainloop_ab_contacts VALUES (626, '5112753e-9046-4de7-ad21-ff5aa5ab35f0', 1, 'Alexandra Krenmayer', 1635511407, 0, 'de0d7f327e20525e9b2f2a051659a0b1');
+INSERT INTO public.rainloop_ab_contacts VALUES (627, 'e0ce60ce-cddd-447e-adcf-a2c95b57012e', 1, 'Frauke Gehrmann', 1635511407, 0, 'f8fff8d6b1f8edd2da407fa9e389502d');
+INSERT INTO public.rainloop_ab_contacts VALUES (628, 'f3c4e872-23c7-4404-9be3-adf98bcd50ac', 1, 'Ingrid Samoray', 1635511407, 0, '29c53bd688d6539ee6f9e7f2ab61839d');
+INSERT INTO public.rainloop_ab_contacts VALUES (629, 'e5b7a582-c74d-4f84-9cc3-cf5b5c26d467', 1, 'Alexandra Krenmayer', 1635511408, 0, '3f68def36a572d2f0540b51f08d050ec');
+INSERT INTO public.rainloop_ab_contacts VALUES (630, '1620647b-f948-4c32-be0b-1d24c1e2e7a8', 1, 'Frauke Gehrmann', 1635511408, 0, 'd819114276fd61b493fcc8965a3a8074');
+INSERT INTO public.rainloop_ab_contacts VALUES (631, '1affb518-e38d-405e-8971-49c4f8dbf5ed', 1, 'Ingrid Samoray', 1635511408, 0, '27d6587804bc7c731b9b3e5afb4d1e5f');
+INSERT INTO public.rainloop_ab_contacts VALUES (632, '684d1cb7-2a99-494f-a3c3-e8fb0bab9e0f', 1, 'Alexandra Krenmayer', 1635511409, 0, 'e77af643649e00fb4328bfebf6f160f2');
+INSERT INTO public.rainloop_ab_contacts VALUES (633, '4dd15a56-f168-44b0-827c-e759c917a977', 1, 'Frauke Gehrmann', 1635511409, 0, 'bf6ffd6d1b11c42154cca38cf1339ae5');
+INSERT INTO public.rainloop_ab_contacts VALUES (634, 'a219612f-a92a-4e11-b5a0-38e86b39bbf0', 1, 'Ingrid Samoray', 1635511409, 0, '0d249746419f57f8f7e29d06d2a3e0a2');
+INSERT INTO public.rainloop_ab_contacts VALUES (635, 'b8a9d02b-20e5-4489-a99f-945a4ebf232d', 1, 'Alexandra Krenmayer', 1635511409, 0, 'c682e6de635f534daa65d2f37132b536');
+INSERT INTO public.rainloop_ab_contacts VALUES (636, '44125a62-e460-4712-90c0-098c8ab899cf', 1, 'Frauke Gehrmann', 1635511409, 0, '8b713cf470eefcf44b2c1cb684823c81');
+INSERT INTO public.rainloop_ab_contacts VALUES (637, '301878dd-cf54-4afd-b712-5d7512fd12dd', 1, 'Ingrid Samoray', 1635511410, 0, '8e3c75986c9b1fca05d8edda795d9004');
+INSERT INTO public.rainloop_ab_contacts VALUES (638, 'b511740b-fdf0-481b-82fb-e4002a191763', 1, 'Gudrun Veitinger', 1635511410, 0, '2d93e83eccc7aa16f744341a8db82041');
+INSERT INTO public.rainloop_ab_contacts VALUES (639, '42681c89-8557-46c0-9d1e-e3a4d2c5a349', 1, 'Alfred Honermann', 1635511410, 0, '5a0af133c8bd5608464b8db6f6d6e4c2');
+INSERT INTO public.rainloop_ab_contacts VALUES (640, '943e2f8c-576b-43c7-ab5e-9469628691e2', 1, 'Frauke Gehrmann', 1635511410, 0, '956855851579851397f6daa64768ab3d');
+INSERT INTO public.rainloop_ab_contacts VALUES (641, 'ee157970-2dd7-4f59-bd28-d9645e70b469', 1, 'Ingrid Samoray', 1635511410, 0, 'e0f0884264412d0e39fdeefb63f3fa38');
+INSERT INTO public.rainloop_ab_contacts VALUES (642, 'e3529b33-c0dc-476c-8e0f-82814824929e', 1, 'Roland Steinmetz', 1635511411, 0, '5f0a480e69fe11409064a7e79ccaa55e');
+INSERT INTO public.rainloop_ab_contacts VALUES (643, '03e1fb6b-6526-4a59-bf7c-688b7686d44f', 1, 'Alfred Honermann', 1635511411, 0, '55e85ace66bc673211d1d96cf644f288');
+INSERT INTO public.rainloop_ab_contacts VALUES (644, '9a7e0235-532a-4b37-baad-0a3c634552db', 1, 'Frauke Gehrmann', 1635511411, 0, 'da991391d3732e13697365e97956ca45');
+INSERT INTO public.rainloop_ab_contacts VALUES (645, '8633b437-ab3e-40ff-8966-f5ded3665013', 1, 'Ingrid Samoray', 1635511411, 0, '7dc55aac958bd8c8866765e843da48e5');
+INSERT INTO public.rainloop_ab_contacts VALUES (646, '5ba6369e-9e53-4895-86f4-d57f53b1156c', 1, 'Alica Jacobi', 1635511412, 0, '5cfd19092a6b1f006015f8b77b3c0060');
+INSERT INTO public.rainloop_ab_contacts VALUES (647, '7900ec9f-b08f-45c7-8ec8-de8538ab69ee', 1, 'frauke.gehrmann@proge.de', 1635511412, 0, '7f744f304cdfbb1871b30fa58232d459');
+INSERT INTO public.rainloop_ab_contacts VALUES (648, 'd885b006-28dc-4575-b798-d876cbdd7856', 1, 'Ingrid Samoray', 1635511412, 0, '216258e46922da5d393f83b6675a2d12');
+INSERT INTO public.rainloop_ab_contacts VALUES (649, 'be11f4c9-765e-432b-86c6-d51fcbb64747', 1, 'Alica Jacobi', 1635511412, 0, '9eb95a6273f1574bb6d1ae5a4e290099');
+INSERT INTO public.rainloop_ab_contacts VALUES (650, 'ea309059-6df4-46b1-ad8c-356b25973998', 1, 'Heike Bollmann', 1635511412, 0, 'eada919c86bd728d88db4c3d6a80867f');
+INSERT INTO public.rainloop_ab_contacts VALUES (651, 'ebe0ffa1-7db4-4d7f-aff7-6975bd51083f', 1, 'Irmtraud Rosentreter', 1635511413, 0, '2dc24e817960fbfd8176771ba41c922b');
+INSERT INTO public.rainloop_ab_contacts VALUES (652, '6085cf68-0b35-4c65-91d7-cb7d561d0aab', 1, 'Alica Jacobi', 1635511413, 0, 'a88e37a3057bb41280e61572fd87e990');
+INSERT INTO public.rainloop_ab_contacts VALUES (653, 'ba600c87-2d37-4c79-9504-5792571a071c', 1, 'Heike Bollmann', 1635511413, 0, '1128c2bbfe1cf550b3574ef348418aa3');
+INSERT INTO public.rainloop_ab_contacts VALUES (654, '0102e7a6-e8fa-4494-98ba-d9d62119cd16', 1, 'Irmtraud Rosentreter', 1635511414, 0, '691240114bbf8f5bf1071e808c4d21a8');
+INSERT INTO public.rainloop_ab_contacts VALUES (655, 'a46c27dd-dbdb-4067-9562-afc813725794', 2, 'support@zentempel.zendesk.com', 1635519963, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (656, '25bec0da-c57b-4eb3-bd77-d989d2b0d6e9', 2, 'retoure@ladybikewear.de', 1635762446, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (657, '2c0656ce-d1ef-478e-ab8c-f35bb3e3353f', 2, 'Zen Tempel', 1636111689, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (658, '4013cdd0-52ec-4bfd-bed1-a575c523c141', 2, 'info@platinumeurope.biz', 1636368821, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (659, '8e574b05-19eb-41d8-8a01-ac19a5750fb7', 2, 'bimsertec@gmail.com', 1636550621, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (660, '4cc2a914-3f79-43b6-b7d3-774e94cfd1f1', 2, 'freicha@web.de', 1636707022, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (661, '1ddfb86c-6178-4fa8-ac2e-fe76b7441904', 2, 'alma-jaiser@t-online.de', 1636899957, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (662, '26e01ce9-4625-4803-a236-87994d775891', 2, 'praxis.dr.wernicke@gmail.com', 1637050053, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (663, 'a50280dd-562e-4247-932d-b8b61189bde8', 2, 'Judith Rauxloh', 1638285273, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (664, '94476479-5c83-4974-9c8b-11a8f3425e22', 2, 'Leonie Güldenpfennig', 1639170306, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (665, '8e3200d5-a7f9-4c49-84c1-ba7428455add', 2, 'Leonie Güldenpfennig', 1639389317, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (666, 'b5e18572-dd3a-4a06-a708-a20918a1a020', 2, 'Beatsox', 1640177268, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (667, '6ba5be33-806b-4045-806e-c11c2549bd77', 2, 'Leonie Güldenpfennig', 1640713512, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (668, 'ef0fae4d-7fdb-4322-8977-f5c88f4df200', 2, 'Triabolos Hamburg e.V.', 1642491562, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (669, '336f48c9-741b-4611-ac8d-906905bbd684', 2, 'Ole B. Rosentreter', 1642599546, 1, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (670, 'a5c6b88e-0ec3-400e-aeaf-3c49cb02e6b1', 2, 'digitalabo@zeit.de', 1642683717, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (671, '294e8449-b940-4762-a0d8-73d7ca3efea4', 2, 'stephan.schepe@triathlon.de', 1643129540, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (672, 'df80d38d-f101-4537-ad68-b3787fdb610a', 2, 'fahrrad.de | Service', 1643629628, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (673, 'ea8e9840-aa10-4723-80bc-e5cfc3b08ac2', 2, 'Mika Keiling', 1644846658, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (674, 'a7e24019-18a3-4cfa-be52-db7bf99d766b', 2, 'help@photobox', 1645789556, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (675, 'fa8cf719-6ed4-47b5-ab58-7917db6bc974', 2, 'INCYLENCE', 1646050830, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (262, '8ebf701f-8ccc-4d21-aa9b-e7eb14f1cc19', 4, 'issamebanayaden@gmail.com', 1646148873, 1, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (304, '133a9202-3217-4066-8f18-e1204fc0ed55', 4, 'rinsdorf.klump@gmx.de', 1646148873, 1, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (305, '33173502-be5e-4d12-a101-a3d9999bb736', 4, 'axel_siebel@yahoo.de', 1646148873, 1, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (676, 'f289d10b-b173-4029-89d5-a3fc0d0bbb69', 2, 'Leo', 1646157565, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (677, '22813838-7a4a-45dc-8b81-2acec3d354e0', 2, 'Yvonne Ewen', 1646159483, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (678, '540c3a7f-d5cb-4155-9f52-ce8a23b3dc63', 2, 'Yvonne Ewen', 1646315188, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (679, 'af21a28c-2bcd-4712-9f3f-f2f8ca2a2f63', 2, 'Yvonne Ewen', 1646571831, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (680, 'e68e9a15-b6b5-4566-8329-137a82c08e09', 2, 'Leonie Güldenpfennig', 1646765106, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (681, '078bfa14-3ecd-4df2-b1b2-f3c55f4156de', 2, 'Leonie Güldenpfennig', 1646818707, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (682, 'bc8c3607-c228-4631-b3cc-c4a5d2fbfb59', 2, 'zeit@dpv.de', 1646831275, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (683, 'c4e8bc95-df73-465e-8b49-122e2c47a551', 2, 'pinkmilk', 1649146687, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (684, '9556769c-30e3-4953-90ed-eddba83e303e', 2, 'service@pinkmilk.d', 1649147093, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (685, '747f8bae-82cf-49f4-b23d-0a4fcbcabba6', 2, 'info@wilkens-wohnstudio.de', 1649148635, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (686, '9f604227-eafd-4e7a-a2f5-28ad22b2650e', 2, 'car-Möbel * Torben Stolten', 1649258191, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (687, 'd4d1e3f1-6bfc-49f2-9596-96ebf11cf623', 2, 'support@bodyfx.com', 1650570327, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (688, '06a0b04c-ded1-4ab4-ae35-a34527d01c70', 2, 'monika.letzel@vlh.de', 1651076389, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (689, 'e5ef89cb-8333-49da-889c-ccc8e688763a', 2, 'kuendigung@1und1.de', 1651142633, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (690, '838f5b51-bb09-4ad4-b913-68939be2911d', 2, 'kundenservice@peterhahn.de', 1651161790, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (691, 'e3005af9-bbce-47a3-84d7-114bdb268e44', 2, 'stechling@on-potsdam.de', 1652175309, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (692, '791ca754-6e89-4faf-8020-6e7150058a84', 2, 'Volkan Sabaz CHECK24', 1654771313, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (693, '409cf174-9f5e-4255-83d9-6417ff718e21', 2, 'zentraleauszahlung@creditplus.de', 1654780595, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (694, '940abde8-154c-44f1-8646-610f0a740d9a', 2, 'Volkan Sabaz CHECK24', 1655285758, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (695, '88a75b0c-6dbc-4660-b5fc-a13dc23e6fe7', 2, 'martin.bergmann@smava.de', 1655390348, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (698, 'e23c5a17-4a3b-44f8-bc76-0e0e1d765351', 2, 'servicecenter@hamburgwasser.de', 1656330145, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (699, '0471da29-32c6-48f5-943c-55270931becd', 2, 'Julia Müller', 1657190946, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (700, 'b1f01a95-a647-4bea-a5a5-031681e402e7', 2, 'Justin Rose', 1658131131, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (701, '1347b8b0-d1e9-4c8e-9b74-7ea397f2e9f0', 2, 'Erik Bittmann', 1658406766, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (702, '231383d4-8629-497e-af5a-8660278d4930', 2, 'a.halloch@knappworst.de', 1661508076, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (703, '08af0083-b682-44c9-8a8c-090b13853318', 2, 'volkspark@osteopathie-praxis-potsdam.de', 1663575082, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (704, 'b0593c06-c8a9-4cf2-958a-1015873b1688', 2, 'Osteopathie Zentrum Potsdam', 1663578108, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (705, 'a109e138-5de0-4d64-8977-88d2e641230e', 2, 'info@ravensberger-hof.com', 1664103921, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (706, '9f74125a-caf2-4fdb-a739-492d2515d3c2', 2, 'Jörg Birkel', 1664118930, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (707, 'afc24f47-072d-460a-b6cd-32c06b4cae13', 2, 'Holiday Hotline', 1664179484, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (708, '3afc8ad6-65cf-4ee0-ae0e-b5b94f4be7dd', 2, 'DERTOUR', 1664725640, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (709, '1487f8b4-a45a-45c9-91ed-e2bc015a22d9', 2, 'kontakt@gesundheitspraxen-osteopathie.de', 1665387482, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (710, 'eadd4ba3-2cf8-4f52-8e50-fd35c786ff24', 2, 'Andreas Husmann', 1665396777, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (711, 'f35dee9c-72b5-4da5-82df-c90319e0c511', 2, 'Christoph Becker', 1666019605, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (712, '283607b3-41f4-418e-83e9-648cfedc38ed', 2, 'Christoph Becker', 1666019605, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (713, '2fc95a56-5069-44bc-8e3d-ac6184e14bf7', 2, 'Manja Seemann', 1666091135, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (714, '0e8af1c4-f202-40c3-87ec-2e37167395c0', 2, 'Grit Kowsky', 1666167837, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (715, '88c8a51e-cd3f-43c5-b062-b3fb2ac3dc0b', 2, 'Leonie Güldenpfennig', 1666719572, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (716, 'e8254603-d70a-4cb2-ac65-f7a721b830f4', 2, 'Petra Blossey', 1666883876, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (717, 'af1eb2c4-6b8f-4dbc-9a84-784f8a614c3d', 1, 'Tobias Barzen', 1667082113, 0, '99d2b08a01bf1f718b75846cc71be2e8');
+INSERT INTO public.rainloop_ab_contacts VALUES (718, '8a758cfd-63f5-4244-8ba1-97c4312a9ad1', 1, 'HHT', 1667082113, 0, '4ba2f797682efdca1cecf588f5e688e0');
+INSERT INTO public.rainloop_ab_contacts VALUES (719, 'd4b48da0-58d5-423c-bc1a-1fb38e332521', 1, 'Super SoSoX', 1667082113, 0, '6150be10d1a69d0fee1ad6e048382ce7');
+INSERT INTO public.rainloop_ab_contacts VALUES (720, 'ab98dd57-13de-4989-80b0-2f988981c301', 1, 'kerstin storch', 1667082114, 0, '89c48cd3dd2c809f6cea352412dba96b');
+INSERT INTO public.rainloop_ab_contacts VALUES (721, 'f5e72ab4-c469-4c38-85a4-2d2c97bc83e8', 1, 'Jan Eggert', 1667082114, 0, 'bdfb20347edba9b51fa65fad9aff5d21');
+INSERT INTO public.rainloop_ab_contacts VALUES (722, 'f1561e3a-c55b-4252-a389-4acb54a67ede', 1, 'Sfizianmi', 1667082114, 0, '9620296a202fa51a0946018d1ca6a4e4');
+INSERT INTO public.rainloop_ab_contacts VALUES (723, '78b16d49-38cf-4161-a305-c3cf8312c658', 1, 'Peter Meyerhofer', 1667082115, 0, 'd91429783c05ab458e0670c9dd65321d');
+INSERT INTO public.rainloop_ab_contacts VALUES (724, 'c60ab457-dfac-473c-9021-3ed5ada1bdf4', 1, 'Andreas Kimmerle', 1667082115, 0, '5381f88484ad2175cfc678be0c685d55');
+INSERT INTO public.rainloop_ab_contacts VALUES (725, '2bf79fe6-cfdf-4741-b8c5-26a1d4345c38', 1, 'Daniel', 1667082115, 0, 'b0d206fdab44d4c53a71745521087416');
+INSERT INTO public.rainloop_ab_contacts VALUES (726, '02169e89-ea18-45a0-ac3e-ea85505b009e', 1, 'Dustin', 1667082116, 0, '0f9ed5c656e2b2ef528712fb2ced2c3b');
+INSERT INTO public.rainloop_ab_contacts VALUES (727, '3d041060-f935-4fc7-8a52-4b62953c137a', 1, 'Lucas Jacobi', 1667082116, 0, '28659df88ef9a4367e8d50e88c0a6e57');
+INSERT INTO public.rainloop_ab_contacts VALUES (728, 'e15335e9-42dc-4a41-a5c8-7223fb07340c', 1, 'Christoph Schwerdt', 1667082116, 0, 'ac44ba70d3aa838c94180a45de32d232');
+INSERT INTO public.rainloop_ab_contacts VALUES (729, '1150f261-44a5-4172-a483-19d2d0aaebeb', 1, 'David Fuchs', 1667082116, 0, '5e40206371f6b6d1a672d044fb097db7');
+INSERT INTO public.rainloop_ab_contacts VALUES (730, 'cf07d6ce-963a-42f6-a409-6d1ece6cf5b3', 1, 'Jörg Müller-Ali', 1667082116, 0, '5bf220aca4708ede063d676138b582b8');
+INSERT INTO public.rainloop_ab_contacts VALUES (731, '2c872bc3-ab57-452f-8787-2c04884d9244', 1, 'Bernd Burkhardt', 1667082117, 0, '4a2a760b7b1e5015a2bfb2113d8cc481');
+INSERT INTO public.rainloop_ab_contacts VALUES (732, 'd9782c63-d171-4dd0-bfbc-3b63762d2ed3', 1, 'Ely', 1667082117, 0, '9f0cd3834588e7e4e3c93e00ac283493');
+INSERT INTO public.rainloop_ab_contacts VALUES (733, '9a3130ae-64c9-4420-8a5b-59c96f9ddd64', 1, 'Flo Gilly', 1667082117, 0, '75066ce954d45eb425b875ff43a1e74d');
+INSERT INTO public.rainloop_ab_contacts VALUES (734, 'da022dae-b457-4357-a2b2-c96f971f1e3b', 1, 'Alexandra Haderlein', 1667082117, 0, '52499bed3f35100fd9f14b480548a914');
+INSERT INTO public.rainloop_ab_contacts VALUES (735, 'e78c6c86-eaf9-4733-bc51-31ad12d537dc', 1, 'Katja Neousypin', 1667082118, 0, '726b224875ececaba8ded88ed6d11748');
+INSERT INTO public.rainloop_ab_contacts VALUES (413, '76419d33-a518-4973-b7cb-a643004e83c4', 1, '', 1667159410, 1, '8ac221998929a7242104f1499c305a9b');
+INSERT INTO public.rainloop_ab_contacts VALUES (417, '2702dd75-0376-43b7-af5d-30ab826e6818', 1, '', 1667159410, 1, 'af09fdeba44e09867087919e001574f7');
+INSERT INTO public.rainloop_ab_contacts VALUES (421, 'ea4319b0-c749-45fc-9712-0d64f55d3f76', 1, '', 1667159410, 1, '89f5036d4d43cd4dbf4c210416f34394');
+INSERT INTO public.rainloop_ab_contacts VALUES (509, '2f5fd8e5-0514-4406-9894-72a342efe482', 1, 'Alexandra', 1667159410, 1, 'c980ef29d7486403c78be2d1eb199435');
+INSERT INTO public.rainloop_ab_contacts VALUES (512, '5e4a8121-9fe6-4865-addf-53e3065f5247', 1, 'Alexandra', 1667159410, 1, 'a8240e8acc275349d2a37b432ec9825d');
+INSERT INTO public.rainloop_ab_contacts VALUES (515, 'e4fefdcd-9192-475d-a9eb-b78e0a573953', 1, 'Alexandra', 1667159410, 1, '97feecf6975afcf8c0acee0b8e9a1739');
+INSERT INTO public.rainloop_ab_contacts VALUES (518, '80e7915c-5de4-4f3c-9f66-f9699d91cc89', 1, 'Alexandra', 1667159410, 1, '72be8e7def7e5a0a76752e23cd280132');
+INSERT INTO public.rainloop_ab_contacts VALUES (521, '30fa1ff5-a117-408d-a400-c27a14e0be32', 1, 'Alexandra', 1667159410, 1, '065256e5372ed3e33ff319ff9c887251');
+INSERT INTO public.rainloop_ab_contacts VALUES (525, '16a3dd3b-4ad7-4aa0-b5f7-27c4d4f2c2ce', 1, 'Alexandra', 1667159410, 1, 'cfa5b8febdbed5dcd1711dab98bdf0c9');
+INSERT INTO public.rainloop_ab_contacts VALUES (528, '9664c60f-d682-4bba-b309-6b92c11a4b93', 1, 'Alexandra', 1667159410, 1, '512a502a40ddd93e5da07788e04e1bd9');
+INSERT INTO public.rainloop_ab_contacts VALUES (531, '946161f3-b2b1-4e67-84be-52ed742bf022', 1, 'Alexandra', 1667159410, 1, 'bed51df5824cb077508fdfd210fe05da');
+INSERT INTO public.rainloop_ab_contacts VALUES (534, '62f03494-91aa-4210-a15d-a9602a7177f9', 1, 'Alexandra', 1667159410, 1, '35e964d6ec2a85747e5647641a99f4eb');
+INSERT INTO public.rainloop_ab_contacts VALUES (736, 'cd713ebf-8ae0-48f4-b706-be0ba7094c7d', 2, 'LOBERON Kundenservice', 1667480334, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (737, '87e755c1-0785-41b6-a866-1b5cc3ca696c', 2, 'verein@urania-potsdam.de', 1667735888, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (738, '9ae8fac1-9912-4bc1-a2fc-45f30a3f0aa4', 2, 'Märkische Kiste', 1668166514, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (739, '7af944d0-6892-400b-97a6-c48ceaafb2c8', 2, 'abo@zeitakademie.de', 1669392874, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (740, '108335bb-2e9f-44da-ba4e-f9dd1e593f42', 2, 'praxis-petersen@gmx.de', 1669731444, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (741, '8a5d1fdd-ceed-4f66-87e6-3553a568075a', 2, 'info@antik-living.de', 1670774979, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (742, '56b07cce-138f-4336-a5fa-aa9c1622b00a', 2, 'Yvonne Ewen', 1670833866, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (743, '3d2507b5-446c-4f0c-b076-8aa3cad3ea10', 2, 'Yvonne Ewen', 1670843888, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (744, '3a007957-d352-41d1-ac99-48d77a55112a', 2, 'Yvonne Ewen', 1670845348, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (745, '1a9f6773-eb37-4069-91f5-e365c5cf35a6', 2, 'Yvonne Ewen', 1670845612, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (746, '87907f18-70d7-4388-b16b-d9ddfad1b684', 2, 'Leonie Güldenpfennig', 1671815338, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (747, 'acf10f54-c4db-4e78-b5ad-46f0cfec129e', 2, 'pgreve@gmail.com', 1671815846, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (748, '92538466-3eb4-48ba-a6f7-9b4969eeccc3', 2, 'Yvonne Ewen', 1671817091, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (749, 'df0d457a-da25-4675-9b6b-117dce5e2d95', 2, 'anja@jcs-home.de', 1671817272, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (750, '174f329f-f76a-4142-9ad4-a9331d1507da', 2, 'hejahagen@t-online.de', 1671817771, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (751, 'e69cd071-26a0-4445-bef7-f7b055fd8e28', 2, 'ju_schulze@t-online.de', 1671817905, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (752, 'e84afe90-6ba7-4988-91c7-6641709adbb4', 2, 'Leonie Güldenpfennig', 1671910858, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (753, 'd6659a34-0f3e-4e0f-b746-07a74bcfcfa6', 2, 'm.lukoschewski@web.de', 1673010649, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (754, '48b7af9b-e5d7-4b01-912c-659d775544c0', 2, 'bahnbonus-service@bahn.de', 1673252545, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (755, '34196cb1-35bd-46fe-b02a-f721dca4d99a', 2, 'Uwe Czesnat', 1674141643, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (756, '32804e54-c70c-40e0-9718-444f684f78f8', 2, 'Herr Geller', 1674199674, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (757, 'c8002e87-2f6a-496c-95ab-4d4238439ba1', 2, 'anita--meyer@t-online.de', 1674776399, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (758, '0fdcaf85-705d-4a28-9ec7-79e9545ebcdb', 2, 'Info@Fit4Bike.de', 1674842764, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (759, 'aca173af-aef0-4fac-8671-3534fb10517e', 2, 'Coaching-jaiser@web.de', 1675001782, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (760, '3b92ca57-1149-4978-9caf-89b04418f21a', 2, 'Thorsten Kuechler', 1675009686, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (761, 'c286ccb5-10aa-49aa-b767-007dd4fe97bf', 2, 'Uwe Czesnat - Zeppelin Team', 1675009922, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (762, '8a983aea-38f6-44cb-88dd-ae2ee5a96e59', 2, 'esn.com', 1675441384, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (763, '8eddd2fe-e321-4b32-b954-d6775f621313', 2, 'info@fitmart.de', 1675441384, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (764, 'd7b59b9f-9352-421c-82b4-74c0a6bae412', 2, 'Christian Nagel', 1675716363, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (765, 'c9a46b45-a663-42b4-8a7d-5de89dc6dd8a', 2, 'Lars Lundin', 1676021279, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (766, '615b7d61-1e09-4ad7-aa66-569d31d6db5b', 2, 'Heinz Hillmer', 1676120770, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (767, '3f302aee-1d1a-430b-b1a5-40b20fe49c2f', 2, 'Klaus Locker - Märkische Immobilien Potsdam', 1676568648, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (768, '797de745-d155-4290-a1ad-7763a668e376', 4, 'voker.voss@gywi.de', 1678454936, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (769, 'd413606c-c2dd-4f06-846f-c4ef0ce498d1', 4, 'volker.voss@gywi.de', 1678455522, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (770, '13c4d804-2835-45c8-8209-36fb927c6e95', 4, 'Volker Voß', 1678455583, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (771, '05bbd8a0-638e-43a5-884e-c238661e1dfe', 2, 'Anne Aegerter', 1678970699, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (772, '2c2daf60-dba9-4dfd-a494-9836f90836c1', 2, 'alexandrowka-potsdam@web.de', 1681299811, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (773, 'df4fd1ef-1b37-40e4-92a5-04d5bd778a63', 2, 'kundenbetreuung@dertouristik.com', 1681369880, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (774, '9c94a295-9332-4c68-bd0d-84c4f2a2c4a2', 2, 'Ingo', 1682485322, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (775, '09ec440f-8a4e-4575-a086-22b0727701dd', 2, 'christine.maertner@polizei.brandenburg.de', 1682504039, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (776, 'ac75a53c-9423-4605-81b5-5457039e6091', 2, 'Bloominghome GmbH & Co. KG', 1683133504, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (777, '468696e7-9021-4698-ac25-200e5079dc4b', 2, 'retoure@bloominghome.de', 1683133556, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (778, 'a51add3f-2a48-46de-adc3-b2b725d64808', 2, 'Hagen Schanze', 1685631867, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (779, '3b965a99-b6a5-4264-98cf-55f58441d19e', 2, 'choose75@gmx.de', 1688124296, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (780, 'f2e3ebf2-4d16-44e2-9f74-e02950e9990a', 2, 'CHoose75@gmx.de', 1688378099, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (781, '4c48917b-fe34-4b9e-9604-2c007ac6b904', 6, 'ip8jkt@libero.it', 1688562366, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (782, 'e6c6f19d-fe30-4472-88a3-29824ec4dded', 2, 'Irmtraud Rosentreter', 1688652337, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (783, 'b5334f50-1d23-4684-8928-44ac0a42b17f', 2, 'M_Schneider@gmx.net', 1688745453, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (784, 'c54f3ba8-ce84-40d2-8604-38ffbaea62d8', 2, 'Leonie Güldenpfennig', 1689176566, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (785, '30d62feb-646f-4f8e-824f-852769b4f5fe', 2, 'M_Schneider@gmx.net', 1689333209, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (786, '8e991043-1c8d-4a7d-a2bf-3ffd5b3ee93a', 2, 'M_Schneider@gmx.net', 1689796178, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (787, 'c5b28459-b510-4094-8148-9966d933c2ba', 2, 'ronald@runningwolf.de', 1690382243, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (788, '869c5b3d-902a-4faf-8666-55f56aa78014', 2, 'ina.rosentreter@rifs-potsdam.de', 1691065567, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (789, '779a0b1b-aad0-47f5-b13d-888547acca26', 2, 'allgemeiner-spam@internet-beschwerdestelle.de', 1692873719, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (790, 'e4110a0e-19a2-4e61-9408-dca5d6d10bc2', 2, 'Engel & Völkers Potsdam', 1692873888, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (791, '6d5bc9ad-4453-45cf-8971-87758b22b29d', 2, 'Leonie Güldenpfennig', 1692974765, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (792, '95704613-08b4-4cb2-8281-eb518793e34f', 2, 'M_Schneider@gmx.net', 1692975512, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (793, '83c38c41-ff12-440c-b070-7429c089a6a8', 2, 'Zahn Dietrich', 1692975748, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (794, '3bcd1278-4a7b-4465-9b1d-1cb80ccb7420', 2, 'Steffen Ulbrich', 1693556363, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (795, 'ae733029-1108-490d-b17e-b8a8ae289017', 2, 'bahncard-service@bahn.de', 1693826092, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (796, 'd794a071-c53c-4cad-bce2-562e5a32ef82', 2, 'reisen@rucksack-reisen.de', 1695475013, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (797, '289d1c54-c238-41ce-872a-c325ffa33849', 2, 'Jil Szabo', 1695632220, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (798, '3501521b-fb86-43b1-8d88-41b5cf17df8d', 2, 'Melanie Schneider', 1695658836, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (799, '7bb2bc49-6012-4221-bcf3-bb7cb2404713', 2, 'M_Schneider@gmx.net', 1695826772, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (800, '0c57920d-af08-4274-a9a2-2d99c0f34b2b', 2, 'amazon-student-verifizierung@amazon.de', 1695828877, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (801, 'ae8a5f5e-79f0-4081-ba8f-447bee42ebe4', 4, 'frank-etgeton@osnanet.de', 1697372340, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (802, 'e5c9fbcc-670d-447e-9621-8cbef84c5a30', 2, 'sch@radiologische-allianz.de', 1697469758, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (803, '53a3d857-0504-471c-bb81-7442cc1a56ba', 2, 'mammo_screening_brb_west@t-online.de', 1697470407, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (804, '033fe5dc-ae3a-4264-a553-9efa7248ecc8', 2, 'praxis-belzer@web.de', 1697730102, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (805, '0e56abce-f219-4077-bc4b-a2aeda86dd59', 2, 'Vätternrundan', 1698076914, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (806, '3574cb62-3e31-472b-9850-746f3b08522b', 2, 'kurfuersten@roentgenpraxis-potsdam.de', 1701090132, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (807, 'e6fe4599-2020-4960-96f7-67124dc9d2eb', 2, 'support@saal-digital.de', 1702889002, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (808, '9716b035-47b0-4ba4-a88b-744e52d4b3da', 2, 'info@potsdamer-laufclub.de', 1702988937, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (809, '8ba10ce1-f4d4-457f-8823-1abbe54f5243', 2, 'event@wannseeterrassen.berlin', 1705078985, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (810, '1d2b0dbd-ba33-4243-ab8e-2b7109bd93c4', 2, 'booking@spidsbergseter.no', 1706104063, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (811, '01d7be2e-29a5-4df3-8bd5-f90a2109868f', 2, 'Resepsjonen Spidsbergseter', 1706268638, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (812, '8fbcec8b-3140-41da-b400-59b31df4d643', 2, 'Resepsjonen Spidsbergseter', 1706269253, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (813, '411d7447-be20-4b8b-b19c-5c3dc9a56d55', 2, 'Termin_Zusage', 1706896315, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (814, '1b7bb4d0-2382-4629-b678-c80c75f461d2', 2, 'Resepsjonen Spidsbergseter', 1707661971, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (815, 'dd01d826-6211-424f-b7fb-2117b8d8107d', 2, 'ordre@taxi03650.no', 1708082970, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (816, 'b8ee8947-0f3d-41ac-8441-90bb5aaa6796', 2, 'Ringebu-Fåvang taxisentral', 1708097720, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (817, '16740151-76ae-4d73-af45-dc12485a53ee', 2, 'Sportschrank.de', 1708365248, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (818, 'fb82bcdf-5028-4e68-99b0-202079abd42f', 2, 'nicht-antworten@gebuhrenfrei.com', 1708423543, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (819, '6b90bd93-c049-4311-b3e0-1f7f807f00aa', 2, 'service@gebuhrenfrei.com', 1708423937, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (820, '4e614a3f-3cac-4d79-941e-d2d5038136cd', 2, 'joana.ludwig@hotmail.de', 1710183119, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (821, 'd526486d-a626-4a2f-9883-227199c915c9', 2, 'vermietung@vermietungsbuero-mueller.de', 1712327797, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (822, 'de69d24c-6a0e-4b45-9070-6683a1f8ec9b', 4, 'Roblox Support', 1713355464, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (823, '3f7692ce-4ac8-47ad-9384-7bfc904790d8', 2, 'kontakt@restaurantzanotto.de', 1713952047, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (824, '8ec0a022-4b92-45a9-9b8b-462c33099d8a', 2, 'Jens-Martin Schröder', 1714071850, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (825, '262e3275-4f9a-40f5-afc0-bb0027677da3', 2, 'Saletovic, Elvis', 1714375862, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (826, '800d241a-26da-462d-9502-dd8d023afec2', 2, 'Saletovic, Elvis', 1714420394, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (827, '2fb5d367-f939-46bd-8b67-682c4b2968df', 2, 'Termin_Zusage', 1714471617, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (828, '6a92114c-a571-4a5b-a4aa-9c27846369ba', 2, 'Weber, Niko', 1714490938, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (829, '833773e3-0511-4a87-a5c1-1a623bf6a29f', 2, 'lydia.p97@gmail.com', 1714982878, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (830, '4973625e-4502-499b-8aef-bd084ebeffe9', 2, 'kontakt@maerkischekiste.de', 1714983039, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (831, '4918a901-7d90-4980-ad4b-ef7ca0e19440', 2, 'Weber, Niko', 1714983691, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (832, 'cf5b8045-d5c2-4761-b52e-333d83288ff8', 2, 'Saletovic, Elvis', 1715001010, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (833, 'd8cf6e7c-ce5d-4bf5-b774-a6146ebe01b7', 2, 'Weber, Niko', 1715012083, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (834, '2963759b-d572-49cb-a52b-77af73383984', 2, 'Pospiech, Mandy', 1715108045, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (835, '3f35ed24-0b06-46a1-bf3a-abed70e616f8', 2, 'Lieferando.de', 1715537458, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (836, '56a29cf3-87cc-46e5-8582-3fa626c81316', 2, 'Belegungsrechte@vonovia.de', 1715674743, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (837, '8b358e1a-f7c3-49aa-aaf5-b0aa81f0ec16', 2, 'xxx Kardiologische Gemeinschaftspraxis am Park Sanssouci', 1716450470, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (838, '51b8a122-6077-463b-b958-16d5c495ca65', 2, 'Antje Evers', 1718970159, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (839, 'df0fb125-194a-42f6-b020-84b3fd715340', 2, 'Isabell Kruse', 1719923779, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (840, '86776305-c76a-4c4e-9df2-f7227eff207c', 2, 'Mieterverein Potsdam', 1720605284, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (841, '88dc8686-0d64-442f-99fd-edfff0a1089d', 2, 'Servicecenter Diagnostikum Berlin', 1720617059, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (842, '44a0fde0-02e3-4d0f-81fd-c86732a27ed5', 2, 'ina.rosentreter@gmail.com', 1721233324, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (843, 'df95018e-54c7-441c-aedd-0727676355cc', 2, 'Pospiech, Mandy', 1721812571, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (844, 'd4445123-15c9-421f-ab57-154be602fd28', 2, 'Pospiech, Mandy', 1721814176, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (845, '623e7ec8-ed31-447c-b1a5-c7d258afaa58', 2, 'rezeption@hotel-chorin.de', 1721814959, 0, '');
+INSERT INTO public.rainloop_ab_contacts VALUES (846, '5d5d1c15-de2f-492b-bdeb-aa42b62e4c13', 2, 'Miriam Lewin', 1722764418, 0, '');
+
+
+--
+-- Name: rainloop_ab_contacts_id_contact_seq; Type: SEQUENCE SET; Schema: public; Owner: rainloop
+--
+
+SELECT pg_catalog.setval('public.rainloop_ab_contacts_id_contact_seq', 846, true);
+
+
+--
+-- Data for Name: rainloop_ab_properties; Type: TABLE DATA; Schema: public; Owner: rainloop
+--
+
+INSERT INTO public.rainloop_ab_properties VALUES (2, 1, 2, 15, '', 'Namasto', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3, 1, 2, 10, '', 'Namasto', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1, 1, 2, 30, '', 'noreply@namasto.com', '', 1, '');
+INSERT INTO public.rainloop_ab_properties VALUES (5, 2, 2, 15, '', 'Namasto', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (6, 2, 2, 10, '', 'Namasto', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4, 2, 2, 30, '', 'sales@namasto.com', '', 1, '');
+INSERT INTO public.rainloop_ab_properties VALUES (8, 3, 2, 15, '', 'Jan', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (9, 3, 2, 16, '', 'Fahning', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (10, 3, 2, 10, '', 'Jan Fahning', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (12, 4, 2, 10, '', 'nicole.wilfinger@raabvitalfood.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (11, 4, 2, 30, '', 'nicole.wilfinger@raabvitalfood.de', '', 1, '');
+INSERT INTO public.rainloop_ab_properties VALUES (14, 5, 2, 15, '', 'KiWAMi', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (15, 5, 2, 10, '', 'KiWAMi', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (13, 5, 2, 30, '', 'contact@kiwamitriathlon.com', '', 2, '');
+INSERT INTO public.rainloop_ab_properties VALUES (17, 6, 2, 10, '', 'info@laufwerk-hamburg.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (16, 6, 2, 30, '', 'info@laufwerk-hamburg.de', '', 1, '');
+INSERT INTO public.rainloop_ab_properties VALUES (19, 7, 1, 15, '', 'Schlossallee', '', 0, 'schlossallee');
+INSERT INTO public.rainloop_ab_properties VALUES (20, 7, 1, 16, '', 'Immobilien AG', '', 0, 'immobilien ag');
+INSERT INTO public.rainloop_ab_properties VALUES (21, 7, 1, 10, '', 'Schlossallee Immobilien AG', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (59, 22, 2, 30, '', 'spiraldynamik.bubos@gmail.com', '', 2, 'spiraldynamik.bubos@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (23, 8, 1, 10, '', 'ole.rosentreter@teambank.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (41, 16, 2, 30, '', 'rookies@triabolos.de', '', 2, 'rookies@triabolos.de');
+INSERT INTO public.rainloop_ab_properties VALUES (25, 9, 1, 10, '', 'patrick.stadler@owayo.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (27, 10, 1, 10, '', 'ole@wechselzonenluder.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (29, 11, 1, 10, '', 'astrid@wechselzonenluder.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (26, 10, 1, 30, '', 'ole@wechselzonenluder.de', '', 1, 'ole@wechselzonenluder.de');
+INSERT INTO public.rainloop_ab_properties VALUES (28, 11, 1, 30, '', 'astrid@wechselzonenluder.de', '', 1, 'astrid@wechselzonenluder.de');
+INSERT INTO public.rainloop_ab_properties VALUES (24, 9, 1, 30, '', 'patrick.stadler@owayo.com', '', 2, 'patrick.stadler@owayo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (31, 12, 2, 10, '', 'Dana.Porzberg@bkk-mobil-oil.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (30, 12, 2, 30, '', 'Dana.Porzberg@bkk-mobil-oil.de', '', 1, 'dana.porzberg@bkk-mobil-oil.de');
+INSERT INTO public.rainloop_ab_properties VALUES (33, 13, 2, 15, '', 'Birte', '', 0, 'birte');
+INSERT INTO public.rainloop_ab_properties VALUES (34, 13, 2, 16, '', 'Podeyn', '', 0, 'podeyn');
+INSERT INTO public.rainloop_ab_properties VALUES (35, 13, 2, 10, '', 'Birte Podeyn', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (32, 13, 2, 30, '', 'bpodeyn@aol.com', '', 1, 'bpodeyn@aol.com');
+INSERT INTO public.rainloop_ab_properties VALUES (37, 14, 2, 15, '', 'Zone3-Store', '', 0, 'zone3-store');
+INSERT INTO public.rainloop_ab_properties VALUES (38, 14, 2, 10, '', 'Zone3-Store', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (40, 15, 2, 10, '', 'info@exxos.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (36, 14, 2, 30, '', 'info@zone3-store.de', '', 1, 'info@zone3-store.de');
+INSERT INTO public.rainloop_ab_properties VALUES (39, 15, 2, 30, '', 'info@exxos.de', '', 1, 'info@exxos.de');
+INSERT INTO public.rainloop_ab_properties VALUES (42, 16, 2, 10, '', 'rookies@triabolos.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (73, 27, 2, 30, '', 'kontakt@laktatnebel.de', '', 3, 'kontakt@laktatnebel.de');
+INSERT INTO public.rainloop_ab_properties VALUES (44, 17, 1, 15, '', 'Björn', '', 0, 'björn');
+INSERT INTO public.rainloop_ab_properties VALUES (45, 17, 1, 16, '', 'Röder', '', 0, 'röder');
+INSERT INTO public.rainloop_ab_properties VALUES (46, 17, 1, 10, '', 'Björn Röder', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (64, 23, 2, 15, '', 'Hausverwaltg', '', 0, 'hausverwaltg');
+INSERT INTO public.rainloop_ab_properties VALUES (48, 18, 2, 10, '', 'info@spiraldynamik-bubos.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (47, 18, 2, 30, '', 'info@spiraldynamik-bubos.de', '', 1, 'info@spiraldynamik-bubos.de');
+INSERT INTO public.rainloop_ab_properties VALUES (65, 23, 2, 16, '', 'Friedrichs', '', 0, 'friedrichs');
+INSERT INTO public.rainloop_ab_properties VALUES (50, 19, 2, 10, '', 'triabolos.ironman.hh@gmail.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (52, 20, 1, 15, '', 'Sonja', '', 0, 'sonja');
+INSERT INTO public.rainloop_ab_properties VALUES (53, 20, 1, 16, '', 'Schwenk', '', 0, 'schwenk');
+INSERT INTO public.rainloop_ab_properties VALUES (54, 20, 1, 10, '', 'Sonja Schwenk', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (51, 20, 1, 30, '', 'sonja.schwenk@gmx.de', '', 1, 'sonja.schwenk@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (56, 21, 1, 15, '', 'Thomas', '', 0, 'thomas');
+INSERT INTO public.rainloop_ab_properties VALUES (57, 21, 1, 16, '', 'Krell', '', 0, 'krell');
+INSERT INTO public.rainloop_ab_properties VALUES (58, 21, 1, 10, '', 'Thomas Krell', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (63, 23, 2, 30, '', 'info@friedrichsgmbh.de', '', 24, 'info@friedrichsgmbh.de');
+INSERT INTO public.rainloop_ab_properties VALUES (60, 22, 2, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (61, 22, 2, 16, '', 'Bubos', '', 0, 'bubos');
+INSERT INTO public.rainloop_ab_properties VALUES (62, 22, 2, 10, '', 'Andrea Bubos', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (49, 19, 2, 30, '', 'triabolos.ironman.hh@gmail.com', '', 3, 'triabolos.ironman.hh@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (66, 23, 2, 10, '', 'Hausverwaltg Friedrichs', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (78, 28, 2, 10, '', 'privat@ina-rosentreter.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1337, 387, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (68, 24, 1, 10, '', 'instagram@wechselzonenluder.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (70, 25, 1, 10, '', 'instagram@triathlon-camp-andalusien.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (67, 24, 1, 30, '', 'instagram@wechselzonenluder.de', '', 1, 'instagram@wechselzonenluder.de');
+INSERT INTO public.rainloop_ab_properties VALUES (69, 25, 1, 30, '', 'instagram@triathlon-camp-andalusien.de', '', 1, 'instagram@triathlon-camp-andalusien.de');
+INSERT INTO public.rainloop_ab_properties VALUES (43, 17, 1, 30, '', 'bjoern.roeder@pillenstein.de', '', 6, 'bjoern.roeder@pillenstein.de');
+INSERT INTO public.rainloop_ab_properties VALUES (72, 26, 1, 10, '', 'uirosentreter@t-online.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (22, 8, 1, 30, '', 'ole.rosentreter@teambank.de', '', 5, 'ole.rosentreter@teambank.de');
+INSERT INTO public.rainloop_ab_properties VALUES (77, 28, 2, 30, '', 'privat@ina-rosentreter.de', '', 17, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (74, 27, 2, 15, '', 'Ole', '', 0, 'ole');
+INSERT INTO public.rainloop_ab_properties VALUES (75, 27, 2, 16, '', 'Benjamin Rosentreter', '', 0, 'benjamin rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (76, 27, 2, 10, '', 'Ole Benjamin Rosentreter', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (85, 31, 2, 30, '', 'annika.weidner@jiakina.com', '', 5, 'annika.weidner@jiakina.com');
+INSERT INTO public.rainloop_ab_properties VALUES (80, 29, 2, 10, '', 'uirosentreter@t-online.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (18, 7, 1, 30, '', 'as@schlossallee.ag', '', 4, 'as@schlossallee.ag');
+INSERT INTO public.rainloop_ab_properties VALUES (82, 30, 2, 15, '', 'Maïlys', '', 0, 'maïlys');
+INSERT INTO public.rainloop_ab_properties VALUES (83, 30, 2, 16, '', 'Sangla', '', 0, 'sangla');
+INSERT INTO public.rainloop_ab_properties VALUES (84, 30, 2, 10, '', 'Maïlys Sangla', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (81, 30, 2, 30, '', 'mailys.sangla@gmail.com', '', 3, 'mailys.sangla@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (7, 3, 2, 30, '', 'jan@fahning.com', '', 5, '');
+INSERT INTO public.rainloop_ab_properties VALUES (86, 31, 2, 15, '', 'Jiakina', '', 0, 'jiakina');
+INSERT INTO public.rainloop_ab_properties VALUES (87, 31, 2, 16, '', 'Annika Weidner', '', 0, 'annika weidner');
+INSERT INTO public.rainloop_ab_properties VALUES (88, 31, 2, 10, '', 'Jiakina Annika Weidner', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (71, 26, 1, 30, '', 'uirosentreter@t-online.de', '', 4, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (90, 32, 2, 15, '', 'Ole', '', 0, 'ole');
+INSERT INTO public.rainloop_ab_properties VALUES (55, 21, 1, 30, '', 'thomas@thomas-krell.com', '', 2, 'thomas@thomas-krell.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1338, 387, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2293, 498, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (91, 32, 2, 16, '', 'Benjamin Rosentreter', '', 0, 'benjamin rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (92, 32, 2, 10, '', 'Ole Benjamin Rosentreter', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (141, 46, 2, 30, '', 'ferien@urlaubshof-jacobsen.de', '', 3, 'ferien@urlaubshof-jacobsen.de');
+INSERT INTO public.rainloop_ab_properties VALUES (94, 33, 2, 15, '', 'Strandmuschel', '', 0, 'strandmuschel');
+INSERT INTO public.rainloop_ab_properties VALUES (95, 33, 2, 16, '', 'via Booking.com', '', 0, 'via booking.com');
+INSERT INTO public.rainloop_ab_properties VALUES (96, 33, 2, 10, '', 'Strandmuschel via Booking.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (93, 33, 2, 30, '', '2793352127-zrew.pbth.wmhc.tz5n@property.booking.com', '', 1, '2793352127-zrew.pbth.wmhc.tz5n@property.booking.com');
+INSERT INTO public.rainloop_ab_properties VALUES (146, 47, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (147, 47, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (98, 34, 2, 15, '', 'Josef', '', 0, 'josef');
+INSERT INTO public.rainloop_ab_properties VALUES (99, 34, 2, 16, '', 'Blumenfelder CHECK24', '', 0, 'blumenfelder check24');
+INSERT INTO public.rainloop_ab_properties VALUES (100, 34, 2, 10, '', 'Josef Blumenfelder CHECK24', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (148, 47, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (97, 34, 2, 30, '', 'kredit-67636525@kredit.check24.de', '', 2, 'kredit-67636525@kredit.check24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (102, 35, 2, 10, '', 'jan.erdmann@finanzcheck.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (101, 35, 2, 30, '', 'jan.erdmann@finanzcheck.de', '', 1, 'jan.erdmann@finanzcheck.de');
+INSERT INTO public.rainloop_ab_properties VALUES (104, 36, 2, 10, '', 'info@physio-mundsburg.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (103, 36, 2, 30, '', 'info@physio-mundsburg.de', '', 1, 'info@physio-mundsburg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (106, 37, 2, 15, '', 'Aboservice', '', 0, 'aboservice');
+INSERT INTO public.rainloop_ab_properties VALUES (107, 37, 2, 16, '', 'spomedis', '', 0, 'spomedis');
+INSERT INTO public.rainloop_ab_properties VALUES (108, 37, 2, 10, '', 'Aboservice spomedis', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (145, 47, 2, 30, '', 'Leonie.gueldenpfennig@gmx.de', '', 6, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (110, 38, 2, 15, '', 'Handelsblatt', '', 0, 'handelsblatt');
+INSERT INTO public.rainloop_ab_properties VALUES (111, 38, 2, 16, '', 'Fachmedien Shop', '', 0, 'fachmedien shop');
+INSERT INTO public.rainloop_ab_properties VALUES (112, 38, 2, 10, '', 'Handelsblatt Fachmedien Shop', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (109, 38, 2, 30, '', 'shop@fachmedien.de', '', 1, 'shop@fachmedien.de');
+INSERT INTO public.rainloop_ab_properties VALUES (114, 39, 2, 15, '', 'Sebastian', '', 0, 'sebastian');
+INSERT INTO public.rainloop_ab_properties VALUES (115, 39, 2, 16, '', 'Rosenkranz', '', 0, 'rosenkranz');
+INSERT INTO public.rainloop_ab_properties VALUES (116, 39, 2, 10, '', 'Sebastian Rosenkranz', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (113, 39, 2, 30, '', 's.rosenkranz@bewegungsschmiede.de', '', 1, 's.rosenkranz@bewegungsschmiede.de');
+INSERT INTO public.rainloop_ab_properties VALUES (118, 40, 2, 15, '', 'K.', '', 0, 'k.');
+INSERT INTO public.rainloop_ab_properties VALUES (119, 40, 2, 16, '', 'Schneider', '', 0, 'schneider');
+INSERT INTO public.rainloop_ab_properties VALUES (120, 40, 2, 10, '', 'K. Schneider', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (117, 40, 2, 30, '', 'tapferes-Schneiderlein@freenet.de', '', 1, 'tapferes-schneiderlein@freenet.de');
+INSERT INTO public.rainloop_ab_properties VALUES (122, 41, 2, 15, '', 'Ole', '', 0, 'ole');
+INSERT INTO public.rainloop_ab_properties VALUES (123, 41, 2, 16, '', 'B. R.', '', 0, 'b. r.');
+INSERT INTO public.rainloop_ab_properties VALUES (124, 41, 2, 10, '', 'Ole B. R.', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (121, 41, 2, 30, '', 'eisenmann226@googlemail.com', '', 1, 'eisenmann226@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (171, 54, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 22, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (126, 42, 2, 15, '', 'Benjamin', '', 0, 'benjamin');
+INSERT INTO public.rainloop_ab_properties VALUES (127, 42, 2, 16, '', 'Trocha', '', 0, 'trocha');
+INSERT INTO public.rainloop_ab_properties VALUES (128, 42, 2, 10, '', 'Benjamin Trocha', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (125, 42, 2, 30, '', 'benny@triabolos.de', '', 1, 'benny@triabolos.de');
+INSERT INTO public.rainloop_ab_properties VALUES (130, 43, 2, 15, '', 'podologie', '', 0, 'podologie');
+INSERT INTO public.rainloop_ab_properties VALUES (131, 43, 2, 16, '', 'elke kunte', '', 0, 'elke kunte');
+INSERT INTO public.rainloop_ab_properties VALUES (132, 43, 2, 10, '', 'podologie elke kunte', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (129, 43, 2, 30, '', 'info@podologie-elke-kunte.de', '', 1, 'info@podologie-elke-kunte.de');
+INSERT INTO public.rainloop_ab_properties VALUES (134, 44, 2, 15, '', 'Christel', '', 0, 'christel');
+INSERT INTO public.rainloop_ab_properties VALUES (135, 44, 2, 16, '', 'Haaf', '', 0, 'haaf');
+INSERT INTO public.rainloop_ab_properties VALUES (136, 44, 2, 10, '', 'Christel Haaf', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (89, 32, 2, 30, '', 'privat@ole-b-rosentreter.de', '', 38, 'privat@ole-b-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (138, 45, 1, 15, '', 'Geschäftsstelle', '', 0, 'geschäftsstelle');
+INSERT INTO public.rainloop_ab_properties VALUES (139, 45, 1, 16, '', 'BAYERN 07', '', 0, 'bayern 07');
+INSERT INTO public.rainloop_ab_properties VALUES (140, 45, 1, 10, '', 'Geschäftsstelle BAYERN 07', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (137, 45, 1, 30, '', 'info@bayern07.de', '', 1, 'info@bayern07.de');
+INSERT INTO public.rainloop_ab_properties VALUES (142, 46, 2, 15, '', 'Urlaubshof', '', 0, 'urlaubshof');
+INSERT INTO public.rainloop_ab_properties VALUES (143, 46, 2, 16, '', 'Jacobsen', '', 0, 'jacobsen');
+INSERT INTO public.rainloop_ab_properties VALUES (144, 46, 2, 10, '', 'Urlaubshof Jacobsen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (150, 48, 2, 10, '', 'waltersorgenfrei@t-online.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (149, 48, 2, 30, '', 'waltersorgenfrei@t-online.de', '', 1, 'waltersorgenfrei@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (152, 49, 2, 15, '', 'Nina', '', 0, 'nina');
+INSERT INTO public.rainloop_ab_properties VALUES (153, 49, 2, 16, '', '/BDF HAM', '', 0, '/bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (154, 49, 2, 10, '', 'Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (156, 50, 2, 15, '', 'Nina', '', 0, 'nina');
+INSERT INTO public.rainloop_ab_properties VALUES (157, 50, 2, 16, '', '/BDF HAM', '', 0, '/bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (158, 50, 2, 10, '', 'Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (172, 54, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (160, 51, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (161, 51, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (162, 51, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (168, 53, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (169, 53, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (164, 52, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (165, 52, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (166, 52, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (173, 54, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (174, 54, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (170, 53, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (105, 37, 2, 30, '', 'spomedis@verlegerdienst.de', '', 3, 'spomedis@verlegerdienst.de');
+INSERT INTO public.rainloop_ab_properties VALUES (167, 53, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 23, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (151, 49, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 27, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (133, 44, 2, 30, '', 'christelhaaf@web.de', '', 7, 'christelhaaf@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (176, 55, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (177, 55, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (178, 55, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (212, 64, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (213, 64, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (214, 64, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (180, 56, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (181, 56, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (182, 56, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (220, 66, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (221, 66, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (222, 66, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (184, 57, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (185, 57, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (186, 57, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (204, 62, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (205, 62, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (206, 62, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (188, 58, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (189, 58, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (190, 58, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (192, 59, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (193, 59, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (194, 59, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (216, 65, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (217, 65, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (218, 65, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (208, 63, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (209, 63, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (210, 63, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (196, 60, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (197, 60, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (198, 60, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (219, 66, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 10, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (211, 64, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 12, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (155, 50, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 26, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (159, 51, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 25, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (163, 52, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 24, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (175, 55, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 21, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (179, 56, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 20, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (183, 57, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 19, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (187, 58, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 18, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (200, 61, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (201, 61, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (202, 61, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (191, 59, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 17, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1538, 409, 1, 15, '', 'Andi', '', 0, 'andi');
+INSERT INTO public.rainloop_ab_properties VALUES (1539, 409, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1540, 409, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1541, 409, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (224, 67, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (225, 67, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (226, 67, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1542, 409, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1543, 409, 1, 9, '', 'ea1ff1ea-69c1-4bd9-bc2e-7ca7424a751c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1544, 410, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1545, 410, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1546, 410, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1547, 410, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1548, 410, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1549, 410, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1550, 410, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1551, 410, 1, 9, '', 'f052d289-ea9e-439e-a8ae-7c733c0ab042', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1552, 411, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1553, 411, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1554, 411, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (228, 68, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (229, 68, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (230, 68, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (261, 78, 2, 30, '', 'service@bergzeit.de', '', 1, 'service@bergzeit.de');
+INSERT INTO public.rainloop_ab_properties VALUES (254, 76, 2, 30, '', 'serviceclient@hardloop.fr', '', 2, 'serviceclient@hardloop.fr');
+INSERT INTO public.rainloop_ab_properties VALUES (264, 79, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (265, 79, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (266, 79, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (232, 69, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (233, 69, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (234, 69, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (282, 84, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (268, 80, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (269, 80, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (270, 80, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (283, 84, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (284, 84, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (273, 82, 2, 30, '', 'service@spreadshirt.net', '', 2, 'service@spreadshirt.net');
+INSERT INTO public.rainloop_ab_properties VALUES (236, 70, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (237, 70, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (238, 70, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (263, 79, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 28, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (249, 74, 2, 30, '', 'choose75@gmx.net', '', 3, 'choose75@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (293, 87, 2, 30, '', 'gesa.birnkraut@on-line.de', '', 5, 'gesa.birnkraut@on-line.de');
+INSERT INTO public.rainloop_ab_properties VALUES (289, 86, 2, 30, '', 'anna.beek@web.de', '', 5, 'anna.beek@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (195, 60, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 16, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (199, 61, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 15, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (281, 84, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 25, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (240, 71, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (241, 71, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (242, 71, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (244, 72, 2, 15, '', 'Susen', '', 0, 'susen');
+INSERT INTO public.rainloop_ab_properties VALUES (245, 72, 2, 16, '', 'Julia Laß', '', 0, 'julia laß');
+INSERT INTO public.rainloop_ab_properties VALUES (246, 72, 2, 10, '', 'Susen Julia Laß', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (267, 80, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 27, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (248, 73, 2, 10, '', 'info@ski-outdoor-shop.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (250, 74, 2, 10, '', 'choose75@gmx.net', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (252, 75, 2, 15, '', 'Hardloop', '', 0, 'hardloop');
+INSERT INTO public.rainloop_ab_properties VALUES (253, 75, 2, 10, '', 'Hardloop', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (251, 75, 2, 30, '', 'hello@hardloop.fr', '', 1, 'hello@hardloop.fr');
+INSERT INTO public.rainloop_ab_properties VALUES (255, 76, 2, 15, '', 'HARDLOOP', '', 0, 'hardloop');
+INSERT INTO public.rainloop_ab_properties VALUES (256, 76, 2, 10, '', 'HARDLOOP', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (290, 86, 2, 15, '', 'Anna', '', 0, 'anna');
+INSERT INTO public.rainloop_ab_properties VALUES (247, 73, 2, 30, '', 'info@ski-outdoor-shop.de', '', 2, 'info@ski-outdoor-shop.de');
+INSERT INTO public.rainloop_ab_properties VALUES (258, 77, 2, 15, '', 'Bergzeit', '', 0, 'bergzeit');
+INSERT INTO public.rainloop_ab_properties VALUES (259, 77, 2, 16, '', 'no-reply', '', 0, 'no-reply');
+INSERT INTO public.rainloop_ab_properties VALUES (260, 77, 2, 10, '', 'Bergzeit no-reply', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (257, 77, 2, 30, '', 'no-reply@bergzeit.de', '', 1, 'no-reply@bergzeit.de');
+INSERT INTO public.rainloop_ab_properties VALUES (262, 78, 2, 10, '', 'service@bergzeit.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (272, 81, 2, 10, '', 'info@bike-components.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (291, 86, 2, 16, '', 'Beek', '', 0, 'beek');
+INSERT INTO public.rainloop_ab_properties VALUES (292, 86, 2, 10, '', 'Anna Beek', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (271, 81, 2, 30, '', 'info@bike-components.de', '', 4, 'info@bike-components.de');
+INSERT INTO public.rainloop_ab_properties VALUES (274, 82, 2, 15, '', 'Spreadshirt', '', 0, 'spreadshirt');
+INSERT INTO public.rainloop_ab_properties VALUES (275, 82, 2, 16, '', 'Service', '', 0, 'service');
+INSERT INTO public.rainloop_ab_properties VALUES (276, 82, 2, 10, '', 'Spreadshirt Service', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (239, 71, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 29, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (278, 83, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (279, 83, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (280, 83, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (294, 87, 2, 15, '', 'Gesa', '', 0, 'gesa');
+INSERT INTO public.rainloop_ab_properties VALUES (295, 87, 2, 16, '', 'Birnkraut', '', 0, 'birnkraut');
+INSERT INTO public.rainloop_ab_properties VALUES (286, 85, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (287, 85, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (288, 85, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (243, 72, 2, 30, '', 'susen.lass@web.de', '', 2, 'susen.lass@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (297, 88, 1, 30, '', 'Christina.Roethlein@aiv.hfoed.de', '', 4, 'christina.roethlein@aiv.hfoed.de');
+INSERT INTO public.rainloop_ab_properties VALUES (296, 87, 2, 10, '', 'Gesa Birnkraut', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (203, 62, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 14, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (298, 88, 1, 15, '', 'Roethlein', '', 0, 'roethlein');
+INSERT INTO public.rainloop_ab_properties VALUES (299, 88, 1, 16, '', 'Christina', '', 0, 'christina');
+INSERT INTO public.rainloop_ab_properties VALUES (300, 88, 1, 10, '', 'Roethlein Christina', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (302, 89, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (303, 89, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (304, 89, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (207, 63, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 13, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (215, 65, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 11, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (223, 67, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 9, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (227, 68, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 8, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (306, 90, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (307, 90, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (308, 90, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (310, 91, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (311, 91, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (312, 91, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (354, 103, 2, 10, '', 'paypal.eu@asics.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (353, 103, 2, 30, '', 'paypal.eu@asics.com', '', 1, 'paypal.eu@asics.com');
+INSERT INTO public.rainloop_ab_properties VALUES (314, 92, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (315, 92, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (316, 92, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (356, 104, 1, 15, '', 'CHIPZEIT.DE', '', 0, 'chipzeit.de');
+INSERT INTO public.rainloop_ab_properties VALUES (357, 104, 1, 16, '', 'Support', '', 0, 'support');
+INSERT INTO public.rainloop_ab_properties VALUES (318, 93, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (319, 93, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (320, 93, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (361, 106, 2, 30, '', 'manuel.ellmers@gmx.de', '', 85, 'manuel.ellmers@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (305, 90, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 12, 'jams_o_donnell@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (373, 109, 2, 30, '', 'Leonie.gueldenpfennig@gmx.de', '', 5, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (309, 91, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 11, 'jams_o_donnell@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (322, 94, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (323, 94, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (324, 94, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (358, 104, 1, 10, '', 'CHIPZEIT.DE Support', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (355, 104, 1, 30, '', 'support@chipzeit.de', '', 1, 'support@chipzeit.de');
+INSERT INTO public.rainloop_ab_properties VALUES (360, 105, 1, 10, '', 'info@btv-info.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (326, 95, 2, 10, '', 'gewinnen@tri-mag.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (325, 95, 2, 30, '', 'gewinnen@tri-mag.de', '', 1, 'gewinnen@tri-mag.de');
+INSERT INTO public.rainloop_ab_properties VALUES (328, 96, 2, 15, '', 'Service', '', 0, 'service');
+INSERT INTO public.rainloop_ab_properties VALUES (329, 96, 2, 16, '', 'Internistenpraxis', '', 0, 'internistenpraxis');
+INSERT INTO public.rainloop_ab_properties VALUES (330, 96, 2, 10, '', 'Service Internistenpraxis', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (327, 96, 2, 30, '', 'service@internisten-moenckebergstr.de', '', 1, 'service@internisten-moenckebergstr.de');
+INSERT INTO public.rainloop_ab_properties VALUES (332, 97, 2, 15, '', 'Hans-Peter', '', 0, 'hans-peter');
+INSERT INTO public.rainloop_ab_properties VALUES (333, 97, 2, 16, '', 'Dannenberg', '', 0, 'dannenberg');
+INSERT INTO public.rainloop_ab_properties VALUES (334, 97, 2, 10, '', 'Hans-Peter Dannenberg', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (331, 97, 2, 30, '', 'info@dannenberg.training', '', 1, 'info@dannenberg.training');
+INSERT INTO public.rainloop_ab_properties VALUES (336, 98, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (337, 98, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (338, 98, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (374, 109, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (375, 109, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (376, 109, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (277, 83, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 26, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (340, 99, 2, 10, '', 'werkstatt@trionik.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (339, 99, 2, 30, '', 'werkstatt@trionik.de', '', 1, 'werkstatt@trionik.de');
+INSERT INTO public.rainloop_ab_properties VALUES (342, 100, 2, 15, '', 'Triabolos', '', 0, 'triabolos');
+INSERT INTO public.rainloop_ab_properties VALUES (343, 100, 2, 16, '', 'Radtrainingslager', '', 0, 'radtrainingslager');
+INSERT INTO public.rainloop_ab_properties VALUES (344, 100, 2, 10, '', 'Triabolos Radtrainingslager', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (341, 100, 2, 30, '', 'radtrainingslager@googlemail.com', '', 1, 'radtrainingslager@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (346, 101, 1, 15, '', 'Frank', '', 0, 'frank');
+INSERT INTO public.rainloop_ab_properties VALUES (347, 101, 1, 16, '', 'Marschler', '', 0, 'marschler');
+INSERT INTO public.rainloop_ab_properties VALUES (348, 101, 1, 10, '', 'Frank Marschler', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (345, 101, 1, 30, '', 'fmars@gmx.de', '', 1, 'fmars@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (350, 102, 2, 15, '', 'ASICS', '', 0, 'asics');
+INSERT INTO public.rainloop_ab_properties VALUES (351, 102, 2, 16, '', 'Outlet', '', 0, 'outlet');
+INSERT INTO public.rainloop_ab_properties VALUES (352, 102, 2, 10, '', 'ASICS Outlet', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (349, 102, 2, 30, '', 'verbraucher-de@asics.com', '', 1, 'verbraucher-de@asics.com');
+INSERT INTO public.rainloop_ab_properties VALUES (359, 105, 1, 30, '', 'info@btv-info.de', '', 1, 'info@btv-info.de');
+INSERT INTO public.rainloop_ab_properties VALUES (362, 106, 2, 15, '', 'Manuel', '', 0, 'manuel');
+INSERT INTO public.rainloop_ab_properties VALUES (363, 106, 2, 16, '', 'Ellmers', '', 0, 'ellmers');
+INSERT INTO public.rainloop_ab_properties VALUES (364, 106, 2, 10, '', 'Manuel Ellmers', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (365, 107, 2, 30, '', 'boarding@flugphase.ch', '', 2, 'boarding@flugphase.ch');
+INSERT INTO public.rainloop_ab_properties VALUES (366, 107, 2, 15, '', 'FLUGPHASE', '', 0, 'flugphase');
+INSERT INTO public.rainloop_ab_properties VALUES (367, 107, 2, 16, '', 'Boarding', '', 0, 'boarding');
+INSERT INTO public.rainloop_ab_properties VALUES (368, 107, 2, 10, '', 'FLUGPHASE Boarding', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (313, 92, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 10, 'jams_o_donnell@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (370, 108, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (371, 108, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (372, 108, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (317, 93, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 9, 'jams_o_donnell@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (379, 111, 2, 30, '', 'kundenservice@agu.com', '', 5, 'kundenservice@agu.com');
+INSERT INTO public.rainloop_ab_properties VALUES (378, 110, 1, 10, '', 'info@bike24.net', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (380, 111, 2, 10, '', 'kundenservice@agu.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (382, 112, 2, 15, '', 'fizik', '', 0, 'fizik');
+INSERT INTO public.rainloop_ab_properties VALUES (383, 112, 2, 16, '', 'Shop Online', '', 0, 'shop online');
+INSERT INTO public.rainloop_ab_properties VALUES (384, 112, 2, 10, '', 'fizik Shop Online', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (381, 112, 2, 30, '', 'shop@fizik.com', '', 2, 'shop@fizik.com');
+INSERT INTO public.rainloop_ab_properties VALUES (386, 113, 2, 15, '', 'Alice', '', 0, 'alice');
+INSERT INTO public.rainloop_ab_properties VALUES (387, 113, 2, 16, '', 'Ferrari', '', 0, 'ferrari');
+INSERT INTO public.rainloop_ab_properties VALUES (388, 113, 2, 10, '', 'Alice Ferrari', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (385, 113, 2, 30, '', 'a.ferrari@selleroyalgroup.com', '', 1, 'a.ferrari@selleroyalgroup.com');
+INSERT INTO public.rainloop_ab_properties VALUES (390, 114, 1, 10, '', 'anita--meyer@t-online.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (389, 114, 1, 30, '', 'anita--meyer@t-online.de', '', 1, 'anita--meyer@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (392, 115, 1, 15, '', 'Roethlein', '', 0, 'roethlein');
+INSERT INTO public.rainloop_ab_properties VALUES (377, 110, 1, 30, '', 'info@bike24.net', '', 2, 'info@bike24.net');
+INSERT INTO public.rainloop_ab_properties VALUES (393, 115, 1, 16, '', 'Christina', '', 0, 'christina');
+INSERT INTO public.rainloop_ab_properties VALUES (394, 115, 1, 10, '', 'Roethlein Christina', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (396, 116, 1, 15, '', 'Roethlein', '', 0, 'roethlein');
+INSERT INTO public.rainloop_ab_properties VALUES (397, 116, 1, 16, '', 'Christina', '', 0, 'christina');
+INSERT INTO public.rainloop_ab_properties VALUES (398, 116, 1, 10, '', 'Roethlein Christina', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (442, 128, 2, 10, '', '100x100@swim.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (400, 117, 1, 15, '', 'Roethlein', '', 0, 'roethlein');
+INSERT INTO public.rainloop_ab_properties VALUES (401, 117, 1, 16, '', 'Christina', '', 0, 'christina');
+INSERT INTO public.rainloop_ab_properties VALUES (402, 117, 1, 10, '', 'Roethlein Christina', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (391, 115, 1, 30, '', 'Christina.Roethlein@aiv.hfoed.de', '', 3, 'christina.roethlein@aiv.hfoed.de');
+INSERT INTO public.rainloop_ab_properties VALUES (395, 116, 1, 30, '', 'Christina.Roethlein@aiv.hfoed.de', '', 2, 'christina.roethlein@aiv.hfoed.de');
+INSERT INTO public.rainloop_ab_properties VALUES (399, 117, 1, 30, '', 'Christina.Roethlein@aiv.hfoed.de', '', 1, 'christina.roethlein@aiv.hfoed.de');
+INSERT INTO public.rainloop_ab_properties VALUES (404, 118, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (405, 118, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (406, 118, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (441, 128, 2, 30, '', '100x100@swim.de', '', 1, '100x100@swim.de');
+INSERT INTO public.rainloop_ab_properties VALUES (408, 119, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (409, 119, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (410, 119, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (412, 120, 2, 15, '', 'STAPS', '', 0, 'staps');
+INSERT INTO public.rainloop_ab_properties VALUES (413, 120, 2, 16, '', '| Yannick Nodler', '', 0, '| yannick nodler');
+INSERT INTO public.rainloop_ab_properties VALUES (414, 120, 2, 10, '', 'STAPS | Yannick Nodler', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (431, 125, 2, 30, '', 'lutz@triabolos.de', '', 3, 'lutz@triabolos.de');
+INSERT INTO public.rainloop_ab_properties VALUES (416, 121, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (417, 121, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (418, 121, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (444, 129, 2, 15, '', 'Josef', '', 0, 'josef');
+INSERT INTO public.rainloop_ab_properties VALUES (445, 129, 2, 16, '', 'Blumenfelder CHECK24', '', 0, 'blumenfelder check24');
+INSERT INTO public.rainloop_ab_properties VALUES (446, 129, 2, 10, '', 'Josef Blumenfelder CHECK24', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (432, 125, 2, 10, '', 'lutz@triabolos.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (420, 122, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (421, 122, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (422, 122, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2294, 498, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2295, 498, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (447, 130, 2, 30, '', 'kontakt@orthopaedie-othmarschen.de', '', 7, 'kontakt@orthopaedie-othmarschen.de');
+INSERT INTO public.rainloop_ab_properties VALUES (411, 120, 2, 30, '', 'y.nodler@staps-online.com', '', 2, 'y.nodler@staps-online.com');
+INSERT INTO public.rainloop_ab_properties VALUES (424, 123, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (425, 123, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (426, 123, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (448, 130, 2, 15, '', 'Orthopädie', '', 0, 'orthopädie');
+INSERT INTO public.rainloop_ab_properties VALUES (449, 130, 2, 16, '', 'Othmarschen', '', 0, 'othmarschen');
+INSERT INTO public.rainloop_ab_properties VALUES (450, 130, 2, 10, '', 'Orthopädie Othmarschen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (459, 134, 2, 30, '', 'alexander.rodloff@gmx.de', '', 1, 'alexander.rodloff@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (452, 131, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (453, 131, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (428, 124, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (429, 124, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (430, 124, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (454, 131, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (285, 85, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 24, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (434, 126, 1, 15, '', 'Christine', '', 0, 'christine');
+INSERT INTO public.rainloop_ab_properties VALUES (435, 126, 1, 16, '', 'Schatz | owayo', '', 0, 'schatz | owayo');
+INSERT INTO public.rainloop_ab_properties VALUES (436, 126, 1, 10, '', 'Christine Schatz | owayo', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (456, 132, 2, 10, '', 'esbeautyhh@hotmail.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (438, 127, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (439, 127, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (440, 127, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (231, 69, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 7, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (235, 70, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 6, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1555, 411, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1556, 411, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1557, 411, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1558, 411, 1, 9, '', '31e17ab1-ed22-43e1-9270-299e94045a57', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1559, 412, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (443, 129, 2, 30, '', 'kredit-76792470@kredit.check24.de', '', 3, 'kredit-76792470@kredit.check24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (433, 126, 1, 30, '', 'christine.schatz@owayo.com', '', 5, 'christine.schatz@owayo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (455, 132, 2, 30, '', 'esbeautyhh@hotmail.com', '', 2, 'esbeautyhh@hotmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (458, 133, 2, 10, '', 'service@zeitakademie.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (457, 133, 2, 30, '', 'service@zeitakademie.de', '', 1, 'service@zeitakademie.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1560, 412, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (460, 134, 2, 15, '', 'Alexander', '', 0, 'alexander');
+INSERT INTO public.rainloop_ab_properties VALUES (461, 134, 2, 16, '', 'Rodloff', '', 0, 'rodloff');
+INSERT INTO public.rainloop_ab_properties VALUES (462, 134, 2, 10, '', 'Alexander Rodloff', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (464, 135, 2, 10, '', 'spickzettel@flugphase.ch', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (463, 135, 2, 30, '', 'spickzettel@flugphase.ch', '', 1, 'spickzettel@flugphase.ch');
+INSERT INTO public.rainloop_ab_properties VALUES (466, 136, 1, 10, '', 'ds@laufmagazin-spiridon.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (468, 137, 1, 10, '', 'spiridon@gmx.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (465, 136, 1, 30, '', 'ds@laufmagazin-spiridon.de', '', 1, 'ds@laufmagazin-spiridon.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1561, 412, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1562, 412, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1563, 412, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1564, 412, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1565, 412, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1566, 412, 1, 30, 'OTHER', 'anfreyb@gmx.de', '', 0, 'anfreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2296, 498, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2297, 498, 1, 9, '', '2a9bbe0b-259a-4469-8f9c-95461bcd6edb', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (467, 137, 1, 30, '', 'spiridon@gmx.com', '', 1, 'spiridon@gmx.com');
+INSERT INTO public.rainloop_ab_properties VALUES (470, 138, 2, 15, '', 'FUN', '', 0, 'fun');
+INSERT INTO public.rainloop_ab_properties VALUES (471, 138, 2, 16, '', 'FACTORY', '', 0, 'factory');
+INSERT INTO public.rainloop_ab_properties VALUES (472, 138, 2, 10, '', 'FUN FACTORY', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (469, 138, 2, 30, '', 'support+id47728@funfactory.zendesk.com', '', 1, 'support+id47728@funfactory.zendesk.com');
+INSERT INTO public.rainloop_ab_properties VALUES (474, 139, 2, 15, '', 'Powermetershop', '', 0, 'powermetershop');
+INSERT INTO public.rainloop_ab_properties VALUES (475, 139, 2, 10, '', 'Powermetershop', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (473, 139, 2, 30, '', 'info@powermetershop.de', '', 1, 'info@powermetershop.de');
+INSERT INTO public.rainloop_ab_properties VALUES (477, 140, 2, 10, '', 'lkahh50@polizei.hamburg.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (479, 141, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (480, 141, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (481, 141, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (514, 154, 2, 30, '', 'shop@running-green.de', '', 1, 'shop@running-green.de');
+INSERT INTO public.rainloop_ab_properties VALUES (483, 142, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (484, 142, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (485, 142, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2083, 475, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2084, 475, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2085, 475, 1, 9, '', 'cf0e3d58-328a-4058-8931-ceba761c4cd9', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2086, 476, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (487, 143, 2, 10, '', 'julia.hackeloeer@hackeloeers.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (522, 157, 2, 30, '', 'm_schneider@gmx.net', '', 14, 'm_schneider@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (489, 144, 1, 15, '', 'RenéRosa', '', 0, 'renérosa');
+INSERT INTO public.rainloop_ab_properties VALUES (490, 144, 1, 16, '', 'Trikotmanufaktur // Tina Buchholz-Weissinger', '', 0, 'trikotmanufaktur // tina buchholz-weissinger');
+INSERT INTO public.rainloop_ab_properties VALUES (491, 144, 1, 10, '', 'RenéRosa Trikotmanufaktur // Tina Buchholz-Weissinger', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (488, 144, 1, 30, '', 'rosa@renerosa.de', '', 1, 'rosa@renerosa.de');
+INSERT INTO public.rainloop_ab_properties VALUES (493, 145, 2, 15, '', 'Oliver', '', 0, 'oliver');
+INSERT INTO public.rainloop_ab_properties VALUES (494, 145, 2, 16, '', 'Scholz', '', 0, 'scholz');
+INSERT INTO public.rainloop_ab_properties VALUES (495, 145, 2, 10, '', 'Oliver Scholz', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (492, 145, 2, 30, '', 'info@oliver-film.de', '', 1, 'info@oliver-film.de');
+INSERT INTO public.rainloop_ab_properties VALUES (497, 146, 2, 10, '', 'mail@frauenarztpraxis-fontenay.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (496, 146, 2, 30, '', 'mail@frauenarztpraxis-fontenay.de', '', 2, 'mail@frauenarztpraxis-fontenay.de');
+INSERT INTO public.rainloop_ab_properties VALUES (499, 147, 2, 10, '', 'info@mcdart.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (519, 155, 2, 10, '', 'info@running-green.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (498, 147, 2, 30, '', 'info@mcdart.de', '', 2, 'info@mcdart.de');
+INSERT INTO public.rainloop_ab_properties VALUES (501, 148, 2, 10, '', 'ina.rosentreter@hsba.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (500, 148, 2, 30, '', 'ina.rosentreter@hsba.de', '', 1, 'ina.rosentreter@hsba.de');
+INSERT INTO public.rainloop_ab_properties VALUES (503, 149, 2, 15, '', 'lastminute.de', '', 0, 'lastminute.de');
+INSERT INTO public.rainloop_ab_properties VALUES (504, 149, 2, 10, '', 'lastminute.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (506, 150, 2, 10, '', 'kundendienst@lastminute.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (508, 151, 2, 10, '', 'customercare@lastminute.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (534, 161, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (505, 150, 2, 30, '', 'kundendienst@lastminute.com', '', 1, 'kundendienst@lastminute.com');
+INSERT INTO public.rainloop_ab_properties VALUES (476, 140, 2, 30, '', 'lkahh50@polizei.hamburg.de', '', 2, 'lkahh50@polizei.hamburg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (510, 152, 2, 10, '', 'kundendienst@lastminute.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (507, 151, 2, 30, '', 'customercare@lastminute.de', '', 2, 'customercare@lastminute.de');
+INSERT INTO public.rainloop_ab_properties VALUES (509, 152, 2, 30, '', 'kundendienst@lastminute.de', '', 1, 'kundendienst@lastminute.de');
+INSERT INTO public.rainloop_ab_properties VALUES (512, 153, 2, 15, '', 'lastminute.de', '', 0, 'lastminute.de');
+INSERT INTO public.rainloop_ab_properties VALUES (513, 153, 2, 10, '', 'lastminute.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (502, 149, 2, 30, '', 'Buchungsbestaetigung@lastminute.de', '', 2, 'buchungsbestaetigung@lastminute.de');
+INSERT INTO public.rainloop_ab_properties VALUES (511, 153, 2, 30, '', 'Buchungsbestaetigung@lastminute.de', '', 1, 'buchungsbestaetigung@lastminute.de');
+INSERT INTO public.rainloop_ab_properties VALUES (515, 154, 2, 15, '', 'running', '', 0, 'running');
+INSERT INTO public.rainloop_ab_properties VALUES (516, 154, 2, 16, '', 'green', '', 0, 'green');
+INSERT INTO public.rainloop_ab_properties VALUES (517, 154, 2, 10, '', 'running green', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (518, 155, 2, 30, '', 'info@running-green.de', '', 2, 'info@running-green.de');
+INSERT INTO public.rainloop_ab_properties VALUES (521, 156, 2, 10, '', 'AuflagenNachMass@gmail.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (520, 156, 2, 30, '', 'AuflagenNachMass@gmail.com', '', 1, 'auflagennachmass@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (523, 157, 2, 15, '', 'Melanie', '', 0, 'melanie');
+INSERT INTO public.rainloop_ab_properties VALUES (524, 157, 2, 16, '', 'Schneider', '', 0, 'schneider');
+INSERT INTO public.rainloop_ab_properties VALUES (525, 157, 2, 10, '', 'Melanie Schneider', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (527, 158, 2, 10, '', 'info@baederland.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (403, 118, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 5, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (529, 159, 2, 15, '', 'tri-mag.de', '', 0, 'tri-mag.de');
+INSERT INTO public.rainloop_ab_properties VALUES (530, 159, 2, 10, '', 'tri-mag.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (528, 159, 2, 30, '', 'info@tri-mag.de', '', 1, 'info@tri-mag.de');
+INSERT INTO public.rainloop_ab_properties VALUES (532, 160, 2, 10, '', 'anmeldestornierung@sportspasshamburg.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (531, 160, 2, 30, '', 'anmeldestornierung@sportspasshamburg.de', '', 1, 'anmeldestornierung@sportspasshamburg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (535, 161, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (536, 161, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (537, 162, 2, 30, '', 'abo@tri-mag.de', '', 2, 'abo@tri-mag.de');
+INSERT INTO public.rainloop_ab_properties VALUES (538, 162, 2, 10, '', 'abo@tri-mag.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (526, 158, 2, 30, '', 'info@baederland.de', '', 2, 'info@baederland.de');
+INSERT INTO public.rainloop_ab_properties VALUES (540, 163, 2, 10, '', 'f9ecfdabb7ca585d92b8a6b08fecdbad@ds-guest.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (539, 163, 2, 30, '', 'f9ecfdabb7ca585d92b8a6b08fecdbad@ds-guest.com', '', 1, 'f9ecfdabb7ca585d92b8a6b08fecdbad@ds-guest.com');
+INSERT INTO public.rainloop_ab_properties VALUES (486, 143, 2, 30, '', 'julia.hackeloeer@hackeloeers.de', '', 2, 'julia.hackeloeer@hackeloeers.de');
+INSERT INTO public.rainloop_ab_properties VALUES (419, 122, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 4, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (478, 141, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 3, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (482, 142, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 2, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2087, 476, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (2088, 476, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (2089, 476, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2090, 476, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2091, 476, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2092, 476, 1, 9, '', '92b7eb3a-efa3-4c74-864f-b9d516d5ffc7', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (542, 164, 2, 10, '', 'buchungsservice@im-web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (541, 164, 2, 30, '', 'buchungsservice@im-web.de', '', 1, 'buchungsservice@im-web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (544, 165, 2, 15, '', 'Vierlanden-Triathlon', '', 0, 'vierlanden-triathlon');
+INSERT INTO public.rainloop_ab_properties VALUES (545, 165, 2, 16, '', 'Newsletter', '', 0, 'newsletter');
+INSERT INTO public.rainloop_ab_properties VALUES (546, 165, 2, 10, '', 'Vierlanden-Triathlon Newsletter', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (612, 190, 2, 30, '', 'akpiatt@gmail.com', '', 4, 'akpiatt@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (548, 166, 2, 10, '', 'kaehler.klink@freenet.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (547, 166, 2, 30, '', 'kaehler.klink@freenet.de', '', 1, 'kaehler.klink@freenet.de');
+INSERT INTO public.rainloop_ab_properties VALUES (550, 167, 2, 10, '', 'martin@tschepe.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (549, 167, 2, 30, '', 'martin@tschepe.de', '', 1, 'martin@tschepe.de');
+INSERT INTO public.rainloop_ab_properties VALUES (552, 168, 2, 10, '', 'tschepe@web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (551, 168, 2, 30, '', 'tschepe@web.de', '', 1, 'tschepe@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (554, 169, 2, 10, '', 'triathlon@ht16.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (556, 170, 2, 15, '', 'HT16', '', 0, 'ht16');
+INSERT INTO public.rainloop_ab_properties VALUES (557, 170, 2, 16, '', 'Jennifer Rasch', '', 0, 'jennifer rasch');
+INSERT INTO public.rainloop_ab_properties VALUES (558, 170, 2, 10, '', 'HT16 Jennifer Rasch', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (555, 170, 2, 30, '', 'wettkampfsport@ht16.de', '', 1, 'wettkampfsport@ht16.de');
+INSERT INTO public.rainloop_ab_properties VALUES (593, 182, 2, 10, '', 'info@eaton-place.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (600, 185, 2, 30, '', 'noreply@bike-discount.de', '', 1, 'noreply@bike-discount.de');
+INSERT INTO public.rainloop_ab_properties VALUES (560, 171, 2, 15, '', 'Larissa', '', 0, 'larissa');
+INSERT INTO public.rainloop_ab_properties VALUES (561, 171, 2, 16, '', 'Kleinmann - FLUGPHASE', '', 0, 'kleinmann - flugphase');
+INSERT INTO public.rainloop_ab_properties VALUES (562, 171, 2, 10, '', 'Larissa Kleinmann - FLUGPHASE', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (559, 171, 2, 30, '', 'larissa@flugphase.ch', '', 1, 'larissa@flugphase.ch');
+INSERT INTO public.rainloop_ab_properties VALUES (553, 169, 2, 30, '', 'triathlon@ht16.de', '', 5, 'triathlon@ht16.de');
+INSERT INTO public.rainloop_ab_properties VALUES (564, 172, 2, 10, '', 'info@pvz.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (563, 172, 2, 30, '', 'info@pvz.de', '', 1, 'info@pvz.de');
+INSERT INTO public.rainloop_ab_properties VALUES (566, 173, 2, 10, '', 'infomaster@europcar.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (565, 173, 2, 30, '', 'infomaster@europcar.com', '', 1, 'infomaster@europcar.com');
+INSERT INTO public.rainloop_ab_properties VALUES (568, 174, 2, 10, '', 'nachfrage@europcar.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (592, 182, 2, 30, '', 'info@eaton-place.de', '', 2, 'info@eaton-place.de');
+INSERT INTO public.rainloop_ab_properties VALUES (595, 183, 2, 10, '', 'kundenservice@handelsblattgroup.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (567, 174, 2, 30, '', 'nachfrage@europcar.com', '', 4, 'nachfrage@europcar.com');
+INSERT INTO public.rainloop_ab_properties VALUES (570, 175, 2, 10, '', 'reservierung@autoeurope.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (569, 175, 2, 30, '', 'reservierung@autoeurope.de', '', 1, 'reservierung@autoeurope.de');
+INSERT INTO public.rainloop_ab_properties VALUES (572, 176, 2, 15, '', 'CHECK24', '', 0, 'check24');
+INSERT INTO public.rainloop_ab_properties VALUES (573, 176, 2, 16, '', 'Mietwagen', '', 0, 'mietwagen');
+INSERT INTO public.rainloop_ab_properties VALUES (574, 176, 2, 10, '', 'CHECK24 Mietwagen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (576, 177, 2, 10, '', 'mietwagen@check24.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (571, 176, 2, 30, '', 'info-14334875@mietwagen.check24.de', '', 1, 'info-14334875@mietwagen.check24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (575, 177, 2, 30, '', 'mietwagen@check24.de', '', 1, 'mietwagen@check24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (578, 178, 2, 15, '', 'burgerme', '', 0, 'burgerme');
+INSERT INTO public.rainloop_ab_properties VALUES (579, 178, 2, 10, '', 'burgerme', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (577, 178, 2, 30, '', 'bestellbestaetigung@burgerme.de', '', 1, 'bestellbestaetigung@burgerme.de');
+INSERT INTO public.rainloop_ab_properties VALUES (581, 179, 2, 15, '', 'CHECK24', '', 0, 'check24');
+INSERT INTO public.rainloop_ab_properties VALUES (582, 179, 2, 16, '', 'Mietwagen', '', 0, 'mietwagen');
+INSERT INTO public.rainloop_ab_properties VALUES (583, 179, 2, 10, '', 'CHECK24 Mietwagen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (585, 180, 2, 15, '', 'CHECK24', '', 0, 'check24');
+INSERT INTO public.rainloop_ab_properties VALUES (586, 180, 2, 16, '', 'Mietwagen Kundenservice', '', 0, 'mietwagen kundenservice');
+INSERT INTO public.rainloop_ab_properties VALUES (587, 180, 2, 10, '', 'CHECK24 Mietwagen Kundenservice', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (589, 181, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (590, 181, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (591, 181, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (588, 181, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 13, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (607, 187, 2, 10, '', 'support@zwift.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (606, 187, 2, 30, '', 'support@zwift.com', '', 1, 'support@zwift.com');
+INSERT INTO public.rainloop_ab_properties VALUES (601, 185, 2, 15, '', 'Bike-Discount', '', 0, 'bike-discount');
+INSERT INTO public.rainloop_ab_properties VALUES (602, 185, 2, 10, '', 'Bike-Discount', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (609, 188, 2, 10, '', 'dianalukasnuelle@gmail.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (584, 180, 2, 30, '', 'kundenservice-14541390@mietwagen.check24.de', '', 3, 'kundenservice-14541390@mietwagen.check24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (603, 186, 2, 30, '', 'support@bike-discount.de', '', 3, 'support@bike-discount.de');
+INSERT INTO public.rainloop_ab_properties VALUES (604, 186, 2, 15, '', 'Bike-Discount', '', 0, 'bike-discount');
+INSERT INTO public.rainloop_ab_properties VALUES (605, 186, 2, 10, '', 'Bike-Discount', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (594, 183, 2, 30, '', 'kundenservice@handelsblattgroup.com', '', 6, 'kundenservice@handelsblattgroup.com');
+INSERT INTO public.rainloop_ab_properties VALUES (724, 221, 3, 10, '', 'Matthies 15', '', 0, 'matthies 15');
+INSERT INTO public.rainloop_ab_properties VALUES (611, 189, 2, 10, '', 'treuebouldern@ht16.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (610, 189, 2, 30, '', 'treuebouldern@ht16.de', '', 1, 'treuebouldern@ht16.de');
+INSERT INTO public.rainloop_ab_properties VALUES (580, 179, 2, 30, '', 'info-14541390@mietwagen.check24.de', '', 2, 'info-14541390@mietwagen.check24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (613, 190, 2, 15, '', 'Anne', '', 0, 'anne');
+INSERT INTO public.rainloop_ab_properties VALUES (614, 190, 2, 16, '', 'Piatt', '', 0, 'piatt');
+INSERT INTO public.rainloop_ab_properties VALUES (615, 190, 2, 10, '', 'Anne Piatt', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (616, 191, 2, 30, '', 'alena.beutler@posteo.de', '', 2, 'alena.beutler@posteo.de');
+INSERT INTO public.rainloop_ab_properties VALUES (617, 191, 2, 10, '', 'alena.beutler@posteo.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (543, 165, 2, 30, '', 'newsletter@vierlanden-triathlon.de', '', 2, 'newsletter@vierlanden-triathlon.de');
+INSERT INTO public.rainloop_ab_properties VALUES (619, 192, 2, 10, '', 'annabelelaine@web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (618, 192, 2, 30, '', 'annabelelaine@web.de', '', 1, 'annabelelaine@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (725, 222, 3, 15, '', 'Matthies 16', '', 0, 'matthies 16');
+INSERT INTO public.rainloop_ab_properties VALUES (407, 119, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 19, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (415, 121, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 18, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (621, 193, 2, 10, '', 'cindy_kubsch@hotmail.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (654, 203, 4, 30, 'Home', 'f.gehrmann@proge.de', '', 30, 'f.gehrmann@proge.de');
+INSERT INTO public.rainloop_ab_properties VALUES (623, 194, 2, 10, '', 'jule.hackeloeer@hackeloeers.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (622, 194, 2, 30, '', 'jule.hackeloeer@hackeloeers.de', '', 1, 'jule.hackeloeer@hackeloeers.de');
+INSERT INTO public.rainloop_ab_properties VALUES (625, 195, 2, 10, '', 'elbrose@hotmail.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (624, 195, 2, 30, '', 'elbrose@hotmail.com', '', 1, 'elbrose@hotmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (627, 196, 2, 10, '', 'nina_johannsen@hotmail.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (620, 193, 2, 30, '', 'cindy_kubsch@hotmail.de', '', 2, 'cindy_kubsch@hotmail.de');
+INSERT INTO public.rainloop_ab_properties VALUES (629, 197, 2, 10, '', 'info@buenavida-andalucia.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (628, 197, 2, 30, '', 'info@buenavida-andalucia.com', '', 1, 'info@buenavida-andalucia.com');
+INSERT INTO public.rainloop_ab_properties VALUES (631, 198, 2, 10, '', 'sebastianacke@gmx.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (633, 199, 2, 15, '', 'Dietrich', '', 0, 'dietrich');
+INSERT INTO public.rainloop_ab_properties VALUES (634, 199, 2, 16, '', 'Zahn', '', 0, 'zahn');
+INSERT INTO public.rainloop_ab_properties VALUES (635, 199, 2, 10, '', 'Dietrich Zahn', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (632, 199, 2, 30, '', 'd.zahn@t-online.de', '', 16, 'd.zahn@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (638, 201, 2, 30, '', 'gesa.birnkraut@hamburg.de', '', 6, 'gesa.birnkraut@hamburg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (637, 200, 2, 10, '', 'bewerbung@uni-flensburg.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (636, 200, 2, 30, '', 'bewerbung@uni-flensburg.de', '', 1, 'bewerbung@uni-flensburg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (639, 201, 2, 15, '', 'Gesa', '', 0, 'gesa');
+INSERT INTO public.rainloop_ab_properties VALUES (640, 201, 2, 16, '', 'Birnkraut', '', 0, 'birnkraut');
+INSERT INTO public.rainloop_ab_properties VALUES (641, 201, 2, 10, '', 'Gesa Birnkraut', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (626, 196, 2, 30, '', 'nina_johannsen@hotmail.com', '', 2, 'nina_johannsen@hotmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (674, 208, 3, 15, '', 'Matthies 2', '', 0, 'matthies 2');
+INSERT INTO public.rainloop_ab_properties VALUES (675, 208, 3, 30, 'Home', 'briefkasten@matthies-gehrmann.de', '', 0, 'briefkasten@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (646, 202, 4, 15, '', 'Ole', '', 0, 'ole');
+INSERT INTO public.rainloop_ab_properties VALUES (647, 202, 4, 16, '', 'Benjamin Rosentreter', '', 0, 'benjamin rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (649, 202, 4, 10, '', 'Ole Benjamin Rosentreter', '', 0, 'ole benjamin rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (676, 208, 3, 10, '', 'Matthies 2', '', 0, 'matthies 2');
+INSERT INTO public.rainloop_ab_properties VALUES (653, 203, 4, 15, '', 'frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (655, 203, 4, 10, '', 'frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (630, 198, 2, 30, '', 'sebastianacke@gmx.de', '', 5, 'sebastianacke@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (656, 204, 4, 15, '', 'lasse', '', 0, 'lasse');
+INSERT INTO public.rainloop_ab_properties VALUES (658, 204, 4, 10, '', 'lasse', '', 0, 'lasse');
+INSERT INTO public.rainloop_ab_properties VALUES (680, 209, 3, 15, '', 'Matthies 3', '', 0, 'matthies 3');
+INSERT INTO public.rainloop_ab_properties VALUES (681, 209, 3, 30, 'Home', 'e-mail@matthies-gehrmann.de', '', 0, 'e-mail@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (664, 206, 3, 15, '', 'papa', '', 0, 'papa');
+INSERT INTO public.rainloop_ab_properties VALUES (666, 206, 3, 10, '', 'papa', '', 0, 'papa');
+INSERT INTO public.rainloop_ab_properties VALUES (667, 205, 3, 15, '', 'Matthies', '', 0, 'matthies');
+INSERT INTO public.rainloop_ab_properties VALUES (669, 205, 3, 10, '', 'Matthies', '', 0, 'matthies');
+INSERT INTO public.rainloop_ab_properties VALUES (608, 188, 2, 30, '', 'dianalukasnuelle@gmail.com', '', 3, 'dianalukasnuelle@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (682, 209, 3, 10, '', 'Matthies 3', '', 0, 'matthies 3');
+INSERT INTO public.rainloop_ab_properties VALUES (668, 205, 3, 30, '', 'privat@matthies-gehrmann.de', '', 6, 'privat@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (683, 210, 3, 15, '', 'Matthies 4', '', 0, 'matthies 4');
+INSERT INTO public.rainloop_ab_properties VALUES (665, 206, 3, 30, 'Home', 'email@ole-b-rosentreter.de', '', 2, 'email@ole-b-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (671, 207, 2, 15, '', 'Janos', '', 0, 'janos');
+INSERT INTO public.rainloop_ab_properties VALUES (672, 207, 2, 16, '', 'Mester', '', 0, 'mester');
+INSERT INTO public.rainloop_ab_properties VALUES (673, 207, 2, 10, '', 'Janos Mester', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (684, 210, 3, 30, 'Home', 'email@matthies-gehrmann.de', '', 0, 'email@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (685, 210, 3, 10, '', 'Matthies 4', '', 0, 'matthies 4');
+INSERT INTO public.rainloop_ab_properties VALUES (686, 211, 3, 15, '', 'Matthies 5', '', 0, 'matthies 5');
+INSERT INTO public.rainloop_ab_properties VALUES (687, 211, 3, 30, 'Home', 'erik@matthies-gehrmann.de', '', 0, 'erik@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (688, 211, 3, 10, '', 'Matthies 5', '', 0, 'matthies 5');
+INSERT INTO public.rainloop_ab_properties VALUES (689, 212, 3, 15, '', 'Matthies 6', '', 0, 'matthies 6');
+INSERT INTO public.rainloop_ab_properties VALUES (690, 212, 3, 30, 'Home', 'finn@matthies-gehrmann.de', '', 0, 'finn@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (691, 212, 3, 10, '', 'Matthies 6', '', 0, 'matthies 6');
+INSERT INTO public.rainloop_ab_properties VALUES (695, 213, 3, 15, '', 'Matthies 7', '', 0, 'matthies 7');
+INSERT INTO public.rainloop_ab_properties VALUES (696, 213, 3, 30, 'Home', 'mail@matthies-gehrmann.de', '', 0, 'mail@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (697, 213, 3, 10, '', 'Matthies 7', '', 0, 'matthies 7');
+INSERT INTO public.rainloop_ab_properties VALUES (701, 215, 3, 15, '', 'Matthies 8', '', 0, 'matthies 8');
+INSERT INTO public.rainloop_ab_properties VALUES (702, 215, 3, 30, 'Home', 'matthies.finn.erik@matthies-gehrmann.de', '', 0, 'matthies.finn.erik@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (703, 215, 3, 10, '', 'Matthies 8', '', 0, 'matthies 8');
+INSERT INTO public.rainloop_ab_properties VALUES (704, 216, 3, 15, '', 'Matthies 9', '', 0, 'matthies 9');
+INSERT INTO public.rainloop_ab_properties VALUES (705, 216, 3, 30, 'Home', 'matthies.gehrmann@matthies-gehrmann.de', '', 0, 'matthies.gehrmann@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (706, 216, 3, 10, '', 'Matthies 9', '', 0, 'matthies 9');
+INSERT INTO public.rainloop_ab_properties VALUES (707, 214, 3, 15, '', 'Matthies 10', '', 0, 'matthies 10');
+INSERT INTO public.rainloop_ab_properties VALUES (708, 214, 3, 30, 'Home', 'matthies.finn.erik.gehrmann@matthies-gehrmann.de', '', 0, 'matthies.finn.erik.gehrmann@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (709, 214, 3, 10, '', 'Matthies 10', '', 0, 'matthies 10');
+INSERT INTO public.rainloop_ab_properties VALUES (710, 217, 3, 15, '', 'Matthies 11', '', 0, 'matthies 11');
+INSERT INTO public.rainloop_ab_properties VALUES (711, 217, 3, 30, 'Home', 'matthies@matthies-gehrmann.de', '', 0, 'matthies@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (712, 217, 3, 10, '', 'Matthies 11', '', 0, 'matthies 11');
+INSERT INTO public.rainloop_ab_properties VALUES (713, 218, 3, 15, '', 'Matthies 12', '', 0, 'matthies 12');
+INSERT INTO public.rainloop_ab_properties VALUES (714, 218, 3, 30, 'Home', 'mfe.gehrmann@matthies-gehrmann.de', '', 0, 'mfe.gehrmann@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (715, 218, 3, 10, '', 'Matthies 12', '', 0, 'matthies 12');
+INSERT INTO public.rainloop_ab_properties VALUES (716, 219, 3, 15, '', 'Matthies 13', '', 0, 'matthies 13');
+INSERT INTO public.rainloop_ab_properties VALUES (717, 219, 3, 30, 'Home', 'mfeg@matthies-gehrmann.de mfe@matthies-gehrmann.de', '', 0, 'mfeg@matthies-gehrmann.de mfe@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (718, 219, 3, 10, '', 'Matthies 13', '', 0, 'matthies 13');
+INSERT INTO public.rainloop_ab_properties VALUES (719, 220, 3, 15, '', 'Matthies 14', '', 0, 'matthies 14');
+INSERT INTO public.rainloop_ab_properties VALUES (720, 220, 3, 30, 'Home', 'mfe@matthies-gehrmann.de', '', 0, 'mfe@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (721, 220, 3, 10, '', 'Matthies 14', '', 0, 'matthies 14');
+INSERT INTO public.rainloop_ab_properties VALUES (722, 221, 3, 15, '', 'Matthies 15', '', 0, 'matthies 15');
+INSERT INTO public.rainloop_ab_properties VALUES (723, 221, 3, 30, 'Home', 'm.gehrmann@matthies-gehrmann.de', '', 0, 'm.gehrmann@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (657, 204, 4, 30, 'Home', 'e-mail@lasse-gehrmann.de', '', 19, 'e-mail@lasse-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (648, 202, 4, 30, 'Home', 'email@ole-b-rosentreter.de', '', 36, 'email@ole-b-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (726, 222, 3, 30, 'Home', 'm.g@matthies-gehrmann.de', '', 0, 'm.g@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (727, 222, 3, 10, '', 'Matthies 16', '', 0, 'matthies 16');
+INSERT INTO public.rainloop_ab_properties VALUES (728, 223, 3, 15, '', 'Matthies 17', '', 0, 'matthies 17');
+INSERT INTO public.rainloop_ab_properties VALUES (729, 223, 3, 30, 'Home', 'mg@matthies-gehrmann.de post@matthies-gehrmann.de', '', 0, 'mg@matthies-gehrmann.de post@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (730, 223, 3, 10, '', 'Matthies 17', '', 0, 'matthies 17');
+INSERT INTO public.rainloop_ab_properties VALUES (732, 224, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (733, 224, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (734, 224, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (779, 241, 2, 30, '', 'cora.schuelen@gmx.net', '', 3, 'cora.schuelen@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (736, 225, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (737, 225, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (738, 225, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (805, 248, 4, 30, 'Home', 'uirosentreter@t-online.de', '', 1, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (773, 238, 2, 30, '', 'Coaching-jaiser@web.de', '', 5, 'coaching-jaiser@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (740, 226, 2, 15, '', 'Schneider,', '', 0, 'schneider,');
+INSERT INTO public.rainloop_ab_properties VALUES (741, 226, 2, 16, '', 'Melanie', '', 0, 'melanie');
+INSERT INTO public.rainloop_ab_properties VALUES (742, 226, 2, 10, '', 'Schneider, Melanie', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (781, 242, 2, 30, '', 'sabine.mauermann@t-online.de', '', 14, 'sabine.mauermann@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (755, 232, 2, 30, '', 'hello@nicole-baumgarten.com', '', 21, 'hello@nicole-baumgarten.com');
+INSERT INTO public.rainloop_ab_properties VALUES (744, 227, 2, 15, '', 'Alsen,', '', 0, 'alsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (745, 227, 2, 16, '', 'Inken', '', 0, 'inken');
+INSERT INTO public.rainloop_ab_properties VALUES (746, 227, 2, 10, '', 'Alsen, Inken', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (743, 227, 2, 30, '', 'alsen@uni-flensburg.de', '', 1, 'alsen@uni-flensburg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (748, 228, 2, 10, '', 'mitgliederbetreuung@fasi-amb.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (750, 229, 2, 10, '', 'fasi.mitgliederbetreuung@web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (747, 228, 2, 30, '', 'mitgliederbetreuung@fasi-amb.com', '', 1, 'mitgliederbetreuung@fasi-amb.com');
+INSERT INTO public.rainloop_ab_properties VALUES (749, 229, 2, 30, '', 'fasi.mitgliederbetreuung@web.de', '', 1, 'fasi.mitgliederbetreuung@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (752, 230, 2, 10, '', 'service@dlz-limburg.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (751, 230, 2, 30, '', 'service@dlz-limburg.de', '', 1, 'service@dlz-limburg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (754, 231, 2, 10, '', 'mike.fischer@mikefischer.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (753, 231, 2, 30, '', 'mike.fischer@mikefischer.de', '', 1, 'mike.fischer@mikefischer.de');
+INSERT INTO public.rainloop_ab_properties VALUES (756, 232, 2, 10, '', 'hello@nicole-baumgarten.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (758, 233, 2, 15, '', 'Nicole', '', 0, 'nicole');
+INSERT INTO public.rainloop_ab_properties VALUES (759, 233, 2, 16, '', 'B. | Andalusien PRIVAT', '', 0, 'b. | andalusien privat');
+INSERT INTO public.rainloop_ab_properties VALUES (760, 233, 2, 10, '', 'Nicole B. | Andalusien PRIVAT', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (731, 224, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 8, 'jams_o_donnell@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (762, 234, 2, 10, '', 'info@die-kuendigungsschutzkanzlei.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (764, 235, 2, 15, '', 'Red', '', 0, 'red');
+INSERT INTO public.rainloop_ab_properties VALUES (765, 235, 2, 16, '', 'Elephant GmbH', '', 0, 'elephant gmbh');
+INSERT INTO public.rainloop_ab_properties VALUES (766, 235, 2, 10, '', 'Red Elephant GmbH', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (790, 245, 2, 15, '', 'Manuela', '', 0, 'manuela');
+INSERT INTO public.rainloop_ab_properties VALUES (768, 236, 2, 10, '', 'henkelmann@die-kuendigungsschutzkanzlei.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (778, 240, 4, 10, '', 'kontakt@laktatnebel.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (761, 234, 2, 30, '', 'info@die-kuendigungsschutzkanzlei.de', '', 3, 'info@die-kuendigungsschutzkanzlei.de');
+INSERT INTO public.rainloop_ab_properties VALUES (770, 237, 2, 15, '', 'CHECK24', '', 0, 'check24');
+INSERT INTO public.rainloop_ab_properties VALUES (771, 237, 2, 16, '', 'Mietwagen Kundenservice', '', 0, 'mietwagen kundenservice');
+INSERT INTO public.rainloop_ab_properties VALUES (772, 237, 2, 10, '', 'CHECK24 Mietwagen Kundenservice', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (769, 237, 2, 30, '', 'kundenservice-14998944@mietwagen.check24.de', '', 1, 'kundenservice-14998944@mietwagen.check24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (774, 238, 2, 10, '', 'Coaching-jaiser@web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (791, 245, 2, 16, '', 'Bäuerlein', '', 0, 'bäuerlein');
+INSERT INTO public.rainloop_ab_properties VALUES (776, 239, 2, 10, '', 'Coaching-jaiser@web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (777, 240, 4, 30, '', 'kontakt@laktatnebel.de', '', 1, 'kontakt@laktatnebel.de');
+INSERT INTO public.rainloop_ab_properties VALUES (670, 207, 2, 30, '', 'mester@uke.de', '', 4, 'mester@uke.de');
+INSERT INTO public.rainloop_ab_properties VALUES (763, 235, 2, 30, '', 'info@redelephant.de', '', 2, 'info@redelephant.de');
+INSERT INTO public.rainloop_ab_properties VALUES (780, 241, 2, 10, '', 'cora.schuelen@gmx.net', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (735, 225, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 7, 'jams_o_donnell@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (782, 242, 2, 10, '', 'sabine.mauermann@t-online.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (792, 245, 2, 10, '', 'Manuela Bäuerlein', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (784, 243, 2, 15, '', 'Prof.', '', 0, 'prof.');
+INSERT INTO public.rainloop_ab_properties VALUES (785, 243, 2, 16, '', 'Gyula Szabó', '', 0, 'gyula szabó');
+INSERT INTO public.rainloop_ab_properties VALUES (786, 243, 2, 10, '', 'Prof. Gyula Szabó', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (783, 243, 2, 30, '', 'gyula.szabo.prf@mcdaniel.hu', '', 1, 'gyula.szabo.prf@mcdaniel.hu');
+INSERT INTO public.rainloop_ab_properties VALUES (767, 236, 2, 30, '', 'henkelmann@die-kuendigungsschutzkanzlei.de', '', 7, 'henkelmann@die-kuendigungsschutzkanzlei.de');
+INSERT INTO public.rainloop_ab_properties VALUES (739, 226, 2, 30, '', 'melanie.schneider@dataport.de', '', 12, 'melanie.schneider@dataport.de');
+INSERT INTO public.rainloop_ab_properties VALUES (788, 244, 2, 10, '', 'kenner@bwt.uni-stuttgart.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (799, 247, 4, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (787, 244, 2, 30, '', 'kenner@bwt.uni-stuttgart.de', '', 2, 'kenner@bwt.uni-stuttgart.de');
+INSERT INTO public.rainloop_ab_properties VALUES (800, 247, 4, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (795, 246, 4, 15, '', 'Anita', '', 0, 'anita');
+INSERT INTO public.rainloop_ab_properties VALUES (796, 246, 4, 16, '', 'Meyer', '', 0, 'meyer');
+INSERT INTO public.rainloop_ab_properties VALUES (798, 246, 4, 10, '', 'Anita Meyer', '', 0, 'anita meyer');
+INSERT INTO public.rainloop_ab_properties VALUES (801, 247, 4, 30, 'Home', 'email@ina-rosentreter.de', '', 0, 'email@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (802, 247, 4, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (803, 248, 4, 15, '', 'Udo und Irmtraud', '', 0, 'udo und irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (804, 248, 4, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (806, 248, 4, 10, '', 'Udo und Irmtraud Rosentreter', '', 0, 'udo und irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (797, 246, 4, 30, '', 'anita--meyer@t-online.de', '', 2, 'anita--meyer@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (808, 249, 2, 10, '', 'linda.auert@iass-potsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (807, 249, 2, 30, '', 'linda.auert@iass-potsdam.de', '', 1, 'linda.auert@iass-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (757, 233, 2, 30, '', 'privat@nicole-baumgarten.com', '', 3, 'privat@nicole-baumgarten.com');
+INSERT INTO public.rainloop_ab_properties VALUES (775, 239, 2, 30, '', 'Coaching-jaiser@web.de', '', 4, 'coaching-jaiser@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (810, 250, 2, 10, '', 'bewerbung-stabsstelle-civis@zv.uni-tuebingen.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (812, 251, 2, 10, '', 'cora.schuelen@gmx.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (811, 251, 2, 30, '', 'cora.schuelen@gmx.de', '', 1, 'cora.schuelen@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (789, 245, 2, 30, '', 'manuela.baeuerlein+j5dmdf@karriere.service.th-nuernberg.de', '', 2, 'manuela.baeuerlein+j5dmdf@karriere.service.th-nuernberg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (814, 252, 2, 10, '', 'bewerbung@leuphana.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (854, 266, 2, 30, '', 'service@mentorverlag.de', '', 1, 'service@mentorverlag.de');
+INSERT INTO public.rainloop_ab_properties VALUES (816, 253, 2, 15, '', 'Auert,', '', 0, 'auert,');
+INSERT INTO public.rainloop_ab_properties VALUES (817, 253, 2, 16, '', 'Linda', '', 0, 'linda');
+INSERT INTO public.rainloop_ab_properties VALUES (818, 253, 2, 10, '', 'Auert, Linda', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (876, 275, 2, 30, '', 'ajuenemann@oxfam.de', '', 1, 'ajuenemann@oxfam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (809, 250, 2, 30, '', 'bewerbung-stabsstelle-civis@zv.uni-tuebingen.de', '', 2, 'bewerbung-stabsstelle-civis@zv.uni-tuebingen.de');
+INSERT INTO public.rainloop_ab_properties VALUES (813, 252, 2, 30, '', 'bewerbung@leuphana.de', '', 2, 'bewerbung@leuphana.de');
+INSERT INTO public.rainloop_ab_properties VALUES (820, 254, 2, 15, '', 'Christina', '', 0, 'christina');
+INSERT INTO public.rainloop_ab_properties VALUES (821, 254, 2, 16, '', 'Scholz', '', 0, 'scholz');
+INSERT INTO public.rainloop_ab_properties VALUES (822, 254, 2, 10, '', 'Christina Scholz', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (819, 254, 2, 30, '', 'christina.scholz+8qw0r1@karriere.service.th-nuernberg.de', '', 1, 'christina.scholz+8qw0r1@karriere.service.th-nuernberg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (824, 255, 2, 10, '', 'jakob.meyer@iass-potsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (849, 264, 2, 30, '', 'buero@die-kuendigungsschutzkanzlei.de', '', 5, 'buero@die-kuendigungsschutzkanzlei.de');
+INSERT INTO public.rainloop_ab_properties VALUES (826, 256, 2, 15, '', 'Auert,', '', 0, 'auert,');
+INSERT INTO public.rainloop_ab_properties VALUES (827, 256, 2, 16, '', 'Linda', '', 0, 'linda');
+INSERT INTO public.rainloop_ab_properties VALUES (828, 256, 2, 10, '', 'Auert, Linda', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (815, 253, 2, 30, '', 'Linda.Auert@iass-potsdam.de', '', 4, 'linda.auert@iass-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (829, 257, 4, 30, '', 'privat@matthies-gehrmann.de', '', 3, 'privat@matthies-gehrmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (830, 257, 4, 10, '', 'privat@matthies-gehrmann.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (832, 258, 2, 10, '', 'bewerbungen@uni-hamburg.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (859, 267, 2, 10, '', 'service@buecherhallen.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1234, 376, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (834, 259, 2, 15, '', 'Matthias', '', 0, 'matthias');
+INSERT INTO public.rainloop_ab_properties VALUES (835, 259, 2, 16, '', 'Becker', '', 0, 'becker');
+INSERT INTO public.rainloop_ab_properties VALUES (836, 259, 2, 10, '', 'Matthias Becker', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (858, 267, 2, 30, '', 'service@buecherhallen.de', '', 1, 'service@buecherhallen.de');
+INSERT INTO public.rainloop_ab_properties VALUES (838, 260, 2, 10, '', 'yvonne.ewen@gmx.net', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (837, 260, 2, 30, '', 'yvonne.ewen@gmx.net', '', 1, 'yvonne.ewen@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (840, 261, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (841, 261, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (842, 261, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (823, 255, 2, 30, '', 'jakob.meyer@iass-potsdam.de', '', 2, 'jakob.meyer@iass-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (846, 263, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (847, 263, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (848, 263, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (864, 270, 2, 30, '', 'hello@bodymindsoulfood.info', '', 5, 'hello@bodymindsoulfood.info');
+INSERT INTO public.rainloop_ab_properties VALUES (839, 261, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 6, 'jams_o_donnell@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (850, 264, 2, 15, '', 'Büro', '', 0, 'büro');
+INSERT INTO public.rainloop_ab_properties VALUES (851, 264, 2, 10, '', 'Büro', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (861, 268, 2, 10, '', 'info@sportspass.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (860, 268, 2, 30, '', 'info@sportspass.de', '', 1, 'info@sportspass.de');
+INSERT INTO public.rainloop_ab_properties VALUES (833, 259, 2, 30, '', 'matthias.becker@leuphana.de', '', 4, 'matthias.becker@leuphana.de');
+INSERT INTO public.rainloop_ab_properties VALUES (831, 258, 2, 30, '', 'bewerbungen@uni-hamburg.de', '', 2, 'bewerbungen@uni-hamburg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (853, 265, 2, 10, '', 'hamburg.015-OS@arbeitsagentur.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (852, 265, 2, 30, '', 'hamburg.015-OS@arbeitsagentur.de', '', 1, 'hamburg.015-os@arbeitsagentur.de');
+INSERT INTO public.rainloop_ab_properties VALUES (855, 266, 2, 15, '', 'Mentor', '', 0, 'mentor');
+INSERT INTO public.rainloop_ab_properties VALUES (856, 266, 2, 16, '', 'Verlag Berlin', '', 0, 'verlag berlin');
+INSERT INTO public.rainloop_ab_properties VALUES (857, 266, 2, 10, '', 'Mentor Verlag Berlin', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (863, 269, 2, 10, '', 'info@ht16.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (862, 269, 2, 30, '', 'info@ht16.de', '', 1, 'info@ht16.de');
+INSERT INTO public.rainloop_ab_properties VALUES (865, 270, 2, 15, '', 'Nicole', '', 0, 'nicole');
+INSERT INTO public.rainloop_ab_properties VALUES (866, 270, 2, 16, '', 'Baumgarten', '', 0, 'baumgarten');
+INSERT INTO public.rainloop_ab_properties VALUES (867, 270, 2, 10, '', 'Nicole Baumgarten', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (875, 274, 2, 10, '', 'jana.kaehler@ht16.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (869, 271, 2, 10, '', 'raa70@yandex.ru', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (868, 271, 2, 30, '', 'raa70@yandex.ru', '', 1, 'raa70@yandex.ru');
+INSERT INTO public.rainloop_ab_properties VALUES (871, 272, 2, 10, '', 'bestellung@platinumeurope.biz', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (881, 276, 2, 15, '', 'Killing,', '', 0, 'killing,');
+INSERT INTO public.rainloop_ab_properties VALUES (882, 276, 2, 16, '', 'Sabine', '', 0, 'sabine');
+INSERT INTO public.rainloop_ab_properties VALUES (873, 273, 2, 10, '', 'info@hammer-kirche.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (872, 273, 2, 30, '', 'info@hammer-kirche.de', '', 2, 'info@hammer-kirche.de');
+INSERT INTO public.rainloop_ab_properties VALUES (874, 274, 2, 30, '', 'jana.kaehler@ht16.de', '', 2, 'jana.kaehler@ht16.de');
+INSERT INTO public.rainloop_ab_properties VALUES (870, 272, 2, 30, '', 'bestellung@platinumeurope.biz', '', 4, 'bestellung@platinumeurope.biz');
+INSERT INTO public.rainloop_ab_properties VALUES (845, 263, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 5, 'jams_o_donnell@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (877, 275, 2, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (878, 275, 2, 16, '', 'Jünemann', '', 0, 'jünemann');
+INSERT INTO public.rainloop_ab_properties VALUES (879, 275, 2, 10, '', 'Alexandra Jünemann', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (883, 276, 2, 10, '', 'Killing, Sabine', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (880, 276, 2, 30, '', 'Sabine.Killing@iass-potsdam.de', '', 3, 'sabine.killing@iass-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (885, 277, 2, 15, '', 'Termin_Alternative', '', 0, 'termin_alternative');
+INSERT INTO public.rainloop_ab_properties VALUES (886, 277, 2, 10, '', 'Termin_Alternative', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (884, 277, 2, 30, '', 'immobilienanbieter.exp.d04a9c6cab2841b5b33adf5f66e9a3ff@nachrichten.immobilienscout24.de', '', 1, 'immobilienanbieter.exp.d04a9c6cab2841b5b33adf5f66e9a3ff@nachrichten.immobilienscout24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (888, 278, 2, 15, '', 'Karola', '', 0, 'karola');
+INSERT INTO public.rainloop_ab_properties VALUES (889, 278, 2, 16, '', 'Weise', '', 0, 'weise');
+INSERT INTO public.rainloop_ab_properties VALUES (890, 278, 2, 10, '', 'Karola Weise', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (887, 278, 2, 30, '', 'karola.weise01@gmail.com', '', 2, 'karola.weise01@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (892, 279, 2, 10, '', 'scheffczyk@skaj.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1235, 376, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1236, 376, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (894, 280, 2, 10, '', 'sam.sabzian@orange-immobilien.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (896, 281, 2, 15, '', 'Haymo', '', 0, 'haymo');
+INSERT INTO public.rainloop_ab_properties VALUES (897, 281, 2, 16, '', 'Grossmann', '', 0, 'grossmann');
+INSERT INTO public.rainloop_ab_properties VALUES (898, 281, 2, 10, '', 'Haymo Grossmann', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (931, 291, 2, 30, '', 'Sabine.Killing@iass-potsdam.de', '', 2, 'sabine.killing@iass-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (900, 282, 4, 10, '', 'gehrmann.lasse@gmail.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (935, 292, 2, 30, '', 'Sabine.Killing@iass-potsdam.de', '', 1, 'sabine.killing@iass-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (951, 296, 2, 30, '', 'ls@sandburg-projekt.de', '', 2, 'ls@sandburg-projekt.de');
+INSERT INTO public.rainloop_ab_properties VALUES (902, 283, 2, 15, '', 'Kresse,', '', 0, 'kresse,');
+INSERT INTO public.rainloop_ab_properties VALUES (903, 283, 2, 16, '', 'Lars', '', 0, 'lars');
+INSERT INTO public.rainloop_ab_properties VALUES (904, 283, 2, 10, '', 'Kresse, Lars', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (906, 284, 2, 15, '', 'Kresse,', '', 0, 'kresse,');
+INSERT INTO public.rainloop_ab_properties VALUES (907, 284, 2, 16, '', 'Lars', '', 0, 'lars');
+INSERT INTO public.rainloop_ab_properties VALUES (908, 284, 2, 10, '', 'Kresse, Lars', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (940, 293, 2, 15, '', 'Erwin', '', 0, 'erwin');
+INSERT INTO public.rainloop_ab_properties VALUES (941, 293, 2, 16, '', 'Nowotny', '', 0, 'nowotny');
+INSERT INTO public.rainloop_ab_properties VALUES (910, 285, 2, 15, '', 'Kresse,', '', 0, 'kresse,');
+INSERT INTO public.rainloop_ab_properties VALUES (911, 285, 2, 16, '', 'Lars', '', 0, 'lars');
+INSERT INTO public.rainloop_ab_properties VALUES (912, 285, 2, 10, '', 'Kresse, Lars', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (942, 293, 2, 10, '', 'Erwin Nowotny', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (939, 293, 2, 30, '', 'erwin.nowotny@gmx.de', '', 1, 'erwin.nowotny@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (914, 286, 2, 15, '', 'Kresse,', '', 0, 'kresse,');
+INSERT INTO public.rainloop_ab_properties VALUES (915, 286, 2, 16, '', 'Lars', '', 0, 'lars');
+INSERT INTO public.rainloop_ab_properties VALUES (916, 286, 2, 10, '', 'Kresse, Lars', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (944, 294, 2, 15, '', 'Auert,', '', 0, 'auert,');
+INSERT INTO public.rainloop_ab_properties VALUES (945, 294, 2, 16, '', 'Linda', '', 0, 'linda');
+INSERT INTO public.rainloop_ab_properties VALUES (946, 294, 2, 10, '', 'Auert, Linda', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (918, 287, 2, 15, '', 'Kresse,', '', 0, 'kresse,');
+INSERT INTO public.rainloop_ab_properties VALUES (919, 287, 2, 16, '', 'Lars', '', 0, 'lars');
+INSERT INTO public.rainloop_ab_properties VALUES (920, 287, 2, 10, '', 'Kresse, Lars', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (901, 283, 2, 30, '', 'Lars.Kresse@capera-immobilien.de', '', 5, 'lars.kresse@capera-immobilien.de');
+INSERT INTO public.rainloop_ab_properties VALUES (905, 284, 2, 30, '', 'Lars.Kresse@capera-immobilien.de', '', 4, 'lars.kresse@capera-immobilien.de');
+INSERT INTO public.rainloop_ab_properties VALUES (909, 285, 2, 30, '', 'Lars.Kresse@capera-immobilien.de', '', 3, 'lars.kresse@capera-immobilien.de');
+INSERT INTO public.rainloop_ab_properties VALUES (913, 286, 2, 30, '', 'Lars.Kresse@capera-immobilien.de', '', 2, 'lars.kresse@capera-immobilien.de');
+INSERT INTO public.rainloop_ab_properties VALUES (917, 287, 2, 30, '', 'Lars.Kresse@capera-immobilien.de', '', 1, 'lars.kresse@capera-immobilien.de');
+INSERT INTO public.rainloop_ab_properties VALUES (891, 279, 2, 30, '', 'scheffczyk@skaj.de', '', 2, 'scheffczyk@skaj.de');
+INSERT INTO public.rainloop_ab_properties VALUES (895, 281, 2, 30, '', 'haymo.grossmann@wunderflats.com', '', 2, 'haymo.grossmann@wunderflats.com');
+INSERT INTO public.rainloop_ab_properties VALUES (922, 288, 2, 15, '', 'Immobilien', '', 0, 'immobilien');
+INSERT INTO public.rainloop_ab_properties VALUES (923, 288, 2, 16, '', 'Scheunhornweg', '', 0, 'scheunhornweg');
+INSERT INTO public.rainloop_ab_properties VALUES (924, 288, 2, 10, '', 'Immobilien Scheunhornweg', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (926, 289, 2, 15, '', 'MILA', '', 0, 'mila');
+INSERT INTO public.rainloop_ab_properties VALUES (927, 289, 2, 16, '', 'Hausverwaltung GmbH', '', 0, 'hausverwaltung gmbh');
+INSERT INTO public.rainloop_ab_properties VALUES (928, 289, 2, 10, '', 'MILA Hausverwaltung GmbH', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (925, 289, 2, 30, '', 'immobilienanbieter.exp.0e1eba785f71470c8814ec7699906f16@nachrichten.immobilienscout24.de', '', 1, 'immobilienanbieter.exp.0e1eba785f71470c8814ec7699906f16@nachrichten.immobilienscout24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (932, 291, 2, 15, '', 'Killing,', '', 0, 'killing,');
+INSERT INTO public.rainloop_ab_properties VALUES (933, 291, 2, 16, '', 'Sabine', '', 0, 'sabine');
+INSERT INTO public.rainloop_ab_properties VALUES (934, 291, 2, 10, '', 'Killing, Sabine', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (962, 299, 2, 15, '', 'Michael', '', 0, 'michael');
+INSERT INTO public.rainloop_ab_properties VALUES (921, 288, 2, 30, '', 'immo@scheunhornweg.de', '', 2, 'immo@scheunhornweg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (936, 292, 2, 15, '', 'Killing,', '', 0, 'killing,');
+INSERT INTO public.rainloop_ab_properties VALUES (937, 292, 2, 16, '', 'Sabine', '', 0, 'sabine');
+INSERT INTO public.rainloop_ab_properties VALUES (938, 292, 2, 10, '', 'Killing, Sabine', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (948, 295, 2, 15, '', 'Auert,', '', 0, 'auert,');
+INSERT INTO public.rainloop_ab_properties VALUES (949, 295, 2, 16, '', 'Linda', '', 0, 'linda');
+INSERT INTO public.rainloop_ab_properties VALUES (950, 295, 2, 10, '', 'Auert, Linda', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (825, 256, 2, 30, '', 'Linda.Auert@iass-potsdam.de', '', 3, 'linda.auert@iass-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (943, 294, 2, 30, '', 'Linda.Auert@iass-potsdam.de', '', 2, 'linda.auert@iass-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (947, 295, 2, 30, '', 'Linda.Auert@iass-potsdam.de', '', 1, 'linda.auert@iass-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (952, 296, 2, 15, '', 'Liane', '', 0, 'liane');
+INSERT INTO public.rainloop_ab_properties VALUES (953, 296, 2, 16, '', 'Seedorf', '', 0, 'seedorf');
+INSERT INTO public.rainloop_ab_properties VALUES (954, 296, 2, 10, '', 'Liane Seedorf', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (969, 301, 2, 30, '', 'mariette.kuehnelt@hsba.de', '', 1, 'mariette.kuehnelt@hsba.de');
+INSERT INTO public.rainloop_ab_properties VALUES (893, 280, 2, 30, '', 'sam.sabzian@orange-immobilien.de', '', 2, 'sam.sabzian@orange-immobilien.de');
+INSERT INTO public.rainloop_ab_properties VALUES (955, 297, 4, 15, '', 'lasse', '', 0, 'lasse');
+INSERT INTO public.rainloop_ab_properties VALUES (956, 297, 4, 10, '', 'lasse', '', 0, 'lasse');
+INSERT INTO public.rainloop_ab_properties VALUES (958, 298, 2, 15, '', 'Zalando', '', 0, 'zalando');
+INSERT INTO public.rainloop_ab_properties VALUES (959, 298, 2, 16, '', 'Team', '', 0, 'team');
+INSERT INTO public.rainloop_ab_properties VALUES (960, 298, 2, 10, '', 'Zalando Team', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (957, 298, 2, 30, '', 'nachricht@zalando.de', '', 1, 'nachricht@zalando.de');
+INSERT INTO public.rainloop_ab_properties VALUES (963, 299, 2, 16, '', 'Höbig', '', 0, 'höbig');
+INSERT INTO public.rainloop_ab_properties VALUES (964, 299, 2, 10, '', 'Michael Höbig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (961, 299, 2, 30, '', 'Michael.Hoebig@hsba.de', '', 1, 'michael.hoebig@hsba.de');
+INSERT INTO public.rainloop_ab_properties VALUES (966, 300, 2, 15, '', 'Frank', '', 0, 'frank');
+INSERT INTO public.rainloop_ab_properties VALUES (967, 300, 2, 16, '', 'Franke', '', 0, 'franke');
+INSERT INTO public.rainloop_ab_properties VALUES (968, 300, 2, 10, '', 'Frank Franke', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (965, 300, 2, 30, '', 'ff@t4mg.com', '', 1, 'ff@t4mg.com');
+INSERT INTO public.rainloop_ab_properties VALUES (970, 301, 2, 15, '', 'Mariette', '', 0, 'mariette');
+INSERT INTO public.rainloop_ab_properties VALUES (971, 301, 2, 16, '', 'Kühnelt', '', 0, 'kühnelt');
+INSERT INTO public.rainloop_ab_properties VALUES (972, 301, 2, 10, '', 'Mariette Kühnelt', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (974, 302, 4, 10, '', 'altunmuhammed150@gmail.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (973, 302, 4, 30, '', 'altunmuhammed150@gmail.com', '', 5, 'altunmuhammed150@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (976, 303, 4, 10, '', 'd.natalie@gmx.net', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (899, 282, 4, 30, '', 'gehrmann.lasse@gmail.com', '', 10, 'gehrmann.lasse@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1014, 318, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (1015, 318, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (1016, 318, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (985, 308, 2, 30, '', 'joanna.kanzenbach@hsba.de', '', 8, 'joanna.kanzenbach@hsba.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1018, 319, 2, 10, '', 'kundenservice@pyur.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1013, 318, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 4, 'jams_o_donnell@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (986, 308, 2, 15, '', 'Joanna', '', 0, 'joanna');
+INSERT INTO public.rainloop_ab_properties VALUES (987, 308, 2, 16, '', 'Kanzenbach', '', 0, 'kanzenbach');
+INSERT INTO public.rainloop_ab_properties VALUES (988, 308, 2, 10, '', 'Joanna Kanzenbach', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1020, 320, 2, 10, '', 'BertieWalkleyDH631@yahoo.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1019, 320, 2, 30, '', 'BertieWalkleyDH631@yahoo.com', '', 1, 'bertiewalkleydh631@yahoo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1022, 321, 2, 10, '', 'info@orthopädie-dogan.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (990, 309, 2, 10, '', 'depot52@hes.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1042, 328, 2, 30, '', 'FAHamburgHansa@finanzamt.hamburg.de', '', 1, 'fahamburghansa@finanzamt.hamburg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (992, 310, 2, 10, '', 'ina.rosentreter@iass-potsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (991, 310, 2, 30, '', 'ina.rosentreter@iass-potsdam.de', '', 1, 'ina.rosentreter@iass-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (994, 307, 4, 10, '', 'agagasch@gmx.de', '', 0, 'agagasch@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (993, 307, 4, 30, '', 'agagasch@gmx.de', '', 4, 'agagasch@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (975, 303, 4, 30, '', 'd.natalie@gmx.net', '', 5, 'd.natalie@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (1044, 329, 2, 30, '', 'startpass@triathlondeutschland.de', '', 2, 'startpass@triathlondeutschland.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1011, 317, 2, 30, '', 'Coaching-jaiser@web.de', '', 3, 'coaching-jaiser@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (996, 311, 2, 10, '', 'techem@operativa-berlin.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (995, 311, 2, 30, '', 'techem@operativa-berlin.de', '', 1, 'techem@operativa-berlin.de');
+INSERT INTO public.rainloop_ab_properties VALUES (998, 312, 2, 10, '', 'auftragsbearbeitung@1und1.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (997, 312, 2, 30, '', 'auftragsbearbeitung@1und1.de', '', 1, 'auftragsbearbeitung@1und1.de');
+INSERT INTO public.rainloop_ab_properties VALUES (989, 309, 2, 30, '', 'depot52@hes.de', '', 2, 'depot52@hes.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1000, 313, 2, 10, '', 'tanja.wullenweber@sparda-bank-hamburg.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1029, 324, 2, 30, '', 'heilpraxis@meilenweit-potsdam.de', '', 2, 'heilpraxis@meilenweit-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1002, 314, 2, 10, '', 'buergerservice@rathaus.potsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1001, 314, 2, 30, '', 'buergerservice@rathaus.potsdam.de', '', 1, 'buergerservice@rathaus.potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1004, 315, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (1005, 315, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (1006, 315, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1021, 321, 2, 30, '', 'info@orthopädie-dogan.de', '', 2, 'info@orthopädie-dogan.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1008, 316, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (1009, 316, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (1010, 316, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (423, 123, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 17, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (427, 124, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 16, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1012, 317, 2, 10, '', 'Coaching-jaiser@web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1024, 322, 2, 15, '', 'mare-me.de', '', 0, 'mare-me.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1025, 322, 2, 10, '', 'mare-me.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1023, 322, 2, 30, '', 'info@mare-me.de', '', 1, 'info@mare-me.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1027, 323, 2, 15, '', 'SKLUM', '', 0, 'sklum');
+INSERT INTO public.rainloop_ab_properties VALUES (1028, 323, 2, 10, '', 'SKLUM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1030, 324, 2, 15, '', 'Meilenweit', '', 0, 'meilenweit');
+INSERT INTO public.rainloop_ab_properties VALUES (1031, 324, 2, 16, '', 'Heilpraxis', '', 0, 'heilpraxis');
+INSERT INTO public.rainloop_ab_properties VALUES (1032, 324, 2, 10, '', 'Meilenweit Heilpraxis', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1017, 319, 2, 30, '', 'kundenservice@pyur.com', '', 4, 'kundenservice@pyur.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1034, 325, 2, 15, '', 'LAUFMAUS®', '', 0, 'laufmaus®');
+INSERT INTO public.rainloop_ab_properties VALUES (1035, 325, 2, 10, '', 'LAUFMAUS®', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1033, 325, 2, 30, '', 'info@laufmaus.run', '', 1, 'info@laufmaus.run');
+INSERT INTO public.rainloop_ab_properties VALUES (1037, 326, 2, 15, '', 'Darian', '', 0, 'darian');
+INSERT INTO public.rainloop_ab_properties VALUES (1038, 326, 2, 16, '', 'Schmidt', '', 0, 'schmidt');
+INSERT INTO public.rainloop_ab_properties VALUES (1039, 326, 2, 10, '', 'Darian Schmidt', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1036, 326, 2, 30, '', 'ds@laufmaus.run', '', 1, 'ds@laufmaus.run');
+INSERT INTO public.rainloop_ab_properties VALUES (1041, 327, 2, 10, '', 'rgpd@sklum.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1061, 334, 2, 10, '', 'mail@home-garden24.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1043, 328, 2, 10, '', 'FAHamburgHansa@finanzamt.hamburg.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1045, 329, 2, 10, '', 'startpass@triathlondeutschland.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1047, 330, 2, 15, '', 'CHECK24', '', 0, 'check24');
+INSERT INTO public.rainloop_ab_properties VALUES (1048, 330, 2, 16, '', '- Hausratversicherung', '', 0, '- hausratversicherung');
+INSERT INTO public.rainloop_ab_properties VALUES (1049, 330, 2, 10, '', 'CHECK24 - Hausratversicherung', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1046, 330, 2, 30, '', 'hrv@check24.de', '', 1, 'hrv@check24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1051, 331, 2, 15, '', 'Klatt,', '', 0, 'klatt,');
+INSERT INTO public.rainloop_ab_properties VALUES (1052, 331, 2, 16, '', 'Juliane', '', 0, 'juliane');
+INSERT INTO public.rainloop_ab_properties VALUES (1053, 331, 2, 10, '', 'Klatt, Juliane', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1050, 331, 2, 30, '', 'Juliane.Klatt@rathaus.potsdam.de', '', 1, 'juliane.klatt@rathaus.potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1055, 332, 2, 10, '', 'gewinnspiel@propotsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1054, 332, 2, 30, '', 'gewinnspiel@propotsdam.de', '', 1, 'gewinnspiel@propotsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1057, 333, 2, 15, '', 'Meine', '', 0, 'meine');
+INSERT INTO public.rainloop_ab_properties VALUES (1058, 333, 2, 16, '', 'Wunschleuchte', '', 0, 'wunschleuchte');
+INSERT INTO public.rainloop_ab_properties VALUES (1059, 333, 2, 10, '', 'Meine Wunschleuchte', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1056, 333, 2, 30, '', 'info@meine-wunschleuchte.de', '', 3, 'info@meine-wunschleuchte.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1026, 323, 2, 30, '', 'bestellung@sklum.com', '', 2, 'bestellung@sklum.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1040, 327, 2, 30, '', 'rgpd@sklum.com', '', 2, 'rgpd@sklum.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1060, 334, 2, 30, '', 'mail@home-garden24.de', '', 1, 'mail@home-garden24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1063, 335, 2, 10, '', 'mp-lastschriftservice-ape@amazon.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1062, 335, 2, 30, '', 'mp-lastschriftservice-ape@amazon.de', '', 2, 'mp-lastschriftservice-ape@amazon.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1065, 336, 2, 15, '', '2RadStätte', '', 0, '2radstätte');
+INSERT INTO public.rainloop_ab_properties VALUES (1066, 336, 2, 16, '', 'Potsdam', '', 0, 'potsdam');
+INSERT INTO public.rainloop_ab_properties VALUES (1067, 336, 2, 10, '', '2RadStätte Potsdam', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1064, 336, 2, 30, '', 'info@2radstaette.de', '', 1, 'info@2radstaette.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1069, 337, 2, 10, '', 'Sue.Meylahn@propotsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1068, 337, 2, 30, '', 'Sue.Meylahn@propotsdam.de', '', 1, 'sue.meylahn@propotsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1071, 338, 2, 15, '', 'OTTO', '', 0, 'otto');
+INSERT INTO public.rainloop_ab_properties VALUES (1072, 338, 2, 16, '', '- Kundenservice', '', 0, '- kundenservice');
+INSERT INTO public.rainloop_ab_properties VALUES (1073, 338, 2, 10, '', 'OTTO - Kundenservice', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1105, 350, 2, 30, '', 'info@huk24.de', '', 2, 'info@huk24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1124, 357, 2, 30, '', 'info@huk-coburg.de', '', 1, 'info@huk-coburg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1075, 339, 2, 10, '', 'service@paypal.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1074, 339, 2, 30, '', 'service@paypal.de', '', 1, 'service@paypal.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1099, 348, 2, 30, '', 'noreply@pyur.com', '', 2, 'noreply@pyur.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1077, 340, 2, 10, '', 'info@1und1.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1079, 341, 2, 10, '', 'kunden-service@1und1.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1127, 358, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 9, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1078, 341, 2, 30, '', 'kunden-service@1und1.de', '', 1, 'kunden-service@1und1.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1081, 342, 2, 15, '', 'Westwing', '', 0, 'westwing');
+INSERT INTO public.rainloop_ab_properties VALUES (1082, 342, 2, 10, '', 'Westwing', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1080, 342, 2, 30, '', 'service2-reply@n.westwing.de', '', 1, 'service2-reply@n.westwing.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1084, 343, 2, 15, '', 'DE', '', 0, 'de');
+INSERT INTO public.rainloop_ab_properties VALUES (1085, 343, 2, 16, '', '- Kundendienst - Sklum', '', 0, '- kundendienst - sklum');
+INSERT INTO public.rainloop_ab_properties VALUES (1086, 343, 2, 10, '', 'DE - Kundendienst - Sklum', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1131, 359, 2, 30, '', 'verlaengerung@bibliothek.potsdam.de', '', 1, 'verlaengerung@bibliothek.potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1088, 344, 2, 15, '', 'Westwing', '', 0, 'westwing');
+INSERT INTO public.rainloop_ab_properties VALUES (1089, 344, 2, 16, '', '| Kundenservice', '', 0, '| kundenservice');
+INSERT INTO public.rainloop_ab_properties VALUES (1090, 344, 2, 10, '', 'Westwing | Kundenservice', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1087, 344, 2, 30, '', 'service@westwing.de', '', 1, 'service@westwing.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1092, 345, 2, 10, '', 'post@zeppelin-team.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1091, 345, 2, 30, '', 'post@zeppelin-team.de', '', 1, 'post@zeppelin-team.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1094, 346, 2, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1095, 346, 2, 16, '', 'Krah', '', 0, 'krah');
+INSERT INTO public.rainloop_ab_properties VALUES (1096, 346, 2, 10, '', 'Andrea Krah', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1083, 343, 2, 30, '', 'kundendienst@sklum.com', '', 2, 'kundendienst@sklum.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1098, 347, 2, 10, '', 'hochschulsport@uni-potsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1097, 347, 2, 30, '', 'hochschulsport@uni-potsdam.de', '', 1, 'hochschulsport@uni-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1093, 346, 2, 30, '', 'andrea.krah@zeppelin-team.de', '', 2, 'andrea.krah@zeppelin-team.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1100, 348, 2, 15, '', 'Kundenservice', '', 0, 'kundenservice');
+INSERT INTO public.rainloop_ab_properties VALUES (1101, 348, 2, 10, '', 'Kundenservice', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1107, 351, 2, 30, '', 'service_@news.fitnessfirst.de', '', 3, 'service_@news.fitnessfirst.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1103, 349, 2, 15, '', 'Mike.Fischer@mikefischer.de', '', 0, 'mike.fischer@mikefischer.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1104, 349, 2, 10, '', 'Mike.Fischer@mikefischer.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1102, 349, 2, 30, '', 'Mike.Fischer@mikefischer.de', '', 1, 'mike.fischer@mikefischer.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1106, 350, 2, 10, '', 'info@huk24.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1108, 351, 2, 10, '', 'service_@news.fitnessfirst.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1110, 352, 2, 10, '', 'serviceteam@sparda-bank-hamburg.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1109, 352, 2, 30, '', 'serviceteam@sparda-bank-hamburg.de', '', 1, 'serviceteam@sparda-bank-hamburg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1112, 353, 2, 15, '', 'REAL', '', 0, 'real');
+INSERT INTO public.rainloop_ab_properties VALUES (1113, 353, 2, 16, '', 'Solution Inkasso', '', 0, 'solution inkasso');
+INSERT INTO public.rainloop_ab_properties VALUES (1114, 353, 2, 10, '', 'REAL Solution Inkasso', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1128, 358, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (1116, 354, 2, 15, '', 'Felix', '', 0, 'felix');
+INSERT INTO public.rainloop_ab_properties VALUES (1117, 354, 2, 16, '', 'Remek', '', 0, 'remek');
+INSERT INTO public.rainloop_ab_properties VALUES (1118, 354, 2, 10, '', 'Felix Remek', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1070, 338, 2, 30, '', 'service@otto.de', '', 4, 'service@otto.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1120, 355, 2, 15, '', 'Leo', '', 0, 'leo');
+INSERT INTO public.rainloop_ab_properties VALUES (1121, 355, 2, 10, '', 'Leo', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1115, 354, 2, 30, '', 'felix.remek@zeppelin-team.de', '', 4, 'felix.remek@zeppelin-team.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1123, 356, 2, 10, '', 'info@news.fitnessfirst.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1122, 356, 2, 30, '', 'info@news.fitnessfirst.de', '', 1, 'info@news.fitnessfirst.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1125, 357, 2, 15, '', 'HUK-COBURG', '', 0, 'huk-coburg');
+INSERT INTO public.rainloop_ab_properties VALUES (1126, 357, 2, 10, '', 'HUK-COBURG', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1129, 358, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (1130, 358, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1076, 340, 2, 30, '', 'info@1und1.de', '', 2, 'info@1und1.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1133, 360, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 3, 'jams_o_donnell@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (1111, 353, 2, 30, '', 'inkasso@real-solution.de', '', 3, 'inkasso@real-solution.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1132, 359, 2, 10, '', 'verlaengerung@bibliothek.potsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1134, 360, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (1135, 360, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (1136, 360, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1138, 361, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
+INSERT INTO public.rainloop_ab_properties VALUES (1139, 361, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
+INSERT INTO public.rainloop_ab_properties VALUES (1140, 361, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1137, 361, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 1, 'nina.johannsen@beiersdorf.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1142, 362, 2, 10, '', 'Coaching-jaiser@web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (999, 313, 2, 30, '', 'tanja.wullenweber@sparda-bank-hamburg.de', '', 15, 'tanja.wullenweber@sparda-bank-hamburg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1144, 363, 2, 15, '', 'Lale', '', 0, 'lale');
+INSERT INTO public.rainloop_ab_properties VALUES (1145, 363, 2, 10, '', 'Lale', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1143, 363, 2, 30, '', 'Lale.Eckardt@iass-potsdam.de', '', 1, 'lale.eckardt@iass-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1147, 364, 2, 10, '', 's.a.dathe@web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1146, 364, 2, 30, '', 's.a.dathe@web.de', '', 1, 's.a.dathe@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1149, 365, 2, 10, '', 's.a.dathe@gmx.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1141, 362, 2, 30, '', 'Coaching-jaiser@web.de', '', 2, 'coaching-jaiser@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1151, 366, 2, 10, '', 'rebecca.korbach@iass-potsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1150, 366, 2, 30, '', 'rebecca.korbach@iass-potsdam.de', '', 1, 'rebecca.korbach@iass-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1152, 367, 1, 10, '', 'Ana Serrano', '', 0, 'ana serrano');
+INSERT INTO public.rainloop_ab_properties VALUES (1153, 367, 1, 16, '', 'Serrano', '', 0, 'serrano');
+INSERT INTO public.rainloop_ab_properties VALUES (1154, 367, 1, 15, '', 'Ana', '', 0, 'ana');
+INSERT INTO public.rainloop_ab_properties VALUES (1155, 367, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1156, 367, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1157, 367, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1158, 367, 1, 30, 'OTHER', 'mice2@fuerte-group.com', '', 0, 'mice2@fuerte-group.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1159, 367, 1, 9, '', '013c2191-019a-457f-b19a-324afe267dc7', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1160, 368, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1161, 368, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1162, 368, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1163, 368, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1164, 368, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1165, 368, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1166, 368, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1167, 368, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1168, 368, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1169, 368, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1170, 368, 1, 9, '', '00f0a0e9-f451-41f3-8e44-6373124400ae', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1171, 369, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1172, 369, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1173, 369, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1174, 369, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1175, 369, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1176, 369, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1177, 369, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1178, 369, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1179, 369, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1180, 369, 1, 9, '', '3610453e-cefe-4fdb-91df-360a86763818', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1181, 370, 1, 10, '', 'Werner Goller', '', 0, 'werner goller');
+INSERT INTO public.rainloop_ab_properties VALUES (1182, 370, 1, 16, '', 'Goller', '', 0, 'goller');
+INSERT INTO public.rainloop_ab_properties VALUES (1183, 370, 1, 15, '', 'Werner', '', 0, 'werner');
+INSERT INTO public.rainloop_ab_properties VALUES (1184, 370, 1, 31, 'cell', '0172 8524424', '01728524424', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1185, 370, 1, 9, '', 'b5375824-5455-45e5-9683-52bcef90774d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1186, 371, 1, 10, '', 'Andy B07 Vereinsgaststätte', '', 0, 'andy b07 vereinsgaststätte');
+INSERT INTO public.rainloop_ab_properties VALUES (1187, 371, 1, 16, '', 'Vereinsgaststätte', '', 0, 'vereinsgaststätte');
+INSERT INTO public.rainloop_ab_properties VALUES (1188, 371, 1, 15, '', 'Andy', '', 0, 'andy');
+INSERT INTO public.rainloop_ab_properties VALUES (1189, 371, 1, 17, '', 'B07', '', 0, 'b07');
+INSERT INTO public.rainloop_ab_properties VALUES (1190, 371, 1, 31, 'x-mobil', '+49 170 2311188', '491702311188', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1191, 371, 1, 9, '', '3cbd93a7-ca28-483a-89c2-bc798b5469b2', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1192, 372, 1, 10, '', 'Ana Serrano', '', 0, 'ana serrano');
+INSERT INTO public.rainloop_ab_properties VALUES (1193, 372, 1, 16, '', 'Serrano', '', 0, 'serrano');
+INSERT INTO public.rainloop_ab_properties VALUES (1194, 372, 1, 15, '', 'Ana', '', 0, 'ana');
+INSERT INTO public.rainloop_ab_properties VALUES (1195, 372, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1196, 372, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1197, 372, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1198, 372, 1, 30, 'OTHER', 'mice2@fuerte-group.com', '', 0, 'mice2@fuerte-group.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1199, 372, 1, 9, '', 'a5862cf0-7fe0-429f-8f3a-7d6d5573a31f', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1200, 373, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1201, 373, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1202, 373, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1203, 373, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1204, 373, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1205, 373, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1206, 373, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1207, 373, 1, 32, 'HOME', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
+INSERT INTO public.rainloop_ab_properties VALUES (1208, 373, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1209, 373, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1210, 373, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1211, 373, 1, 9, '', '3a5e188c-a3c6-401c-8747-06ee4e19958a', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1212, 374, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1213, 374, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1214, 374, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1215, 374, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1216, 374, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1217, 374, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1218, 374, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1219, 374, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1220, 374, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1221, 374, 1, 9, '', 'd69bb7b7-ffd2-480a-b094-35199ca378e2', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1222, 375, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1223, 375, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1224, 375, 1, 15, '', 'Andi', '', 0, 'andi');
+INSERT INTO public.rainloop_ab_properties VALUES (1225, 375, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1226, 375, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1227, 375, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1228, 375, 1, 31, 'CELL', '+49 179 1255149', '491791255149', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1229, 375, 1, 9, '', '51d08038-b4a0-49d4-b560-b4e9ad717412', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1230, 376, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1231, 376, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1232, 376, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1233, 376, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1148, 365, 2, 30, '', 's.a.dathe@gmx.de', '', 2, 's.a.dathe@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1237, 376, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1238, 376, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1239, 376, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1240, 376, 1, 9, '', '0ba38344-e5f8-4c60-bdad-ce823ff524fe', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1241, 377, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1242, 377, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1243, 377, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1244, 377, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1245, 377, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1246, 377, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1247, 377, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1248, 377, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1249, 377, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1250, 377, 1, 9, '', '82882df2-7da8-462e-840b-a06561931314', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1251, 378, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1252, 378, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1253, 378, 1, 15, '', 'Andi', '', 0, 'andi');
+INSERT INTO public.rainloop_ab_properties VALUES (1254, 378, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1255, 378, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1256, 378, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1257, 378, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1258, 378, 1, 9, '', '927b1576-1b70-4d9e-af4a-e26257fa56ce', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1259, 379, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1260, 379, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1261, 379, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1262, 379, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1263, 379, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1264, 379, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1265, 379, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1266, 379, 1, 9, '', '468052fe-2a45-456b-8a78-32c8c1ad9b8e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1267, 380, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1268, 380, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1269, 380, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1270, 380, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1271, 380, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1272, 380, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1273, 380, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1274, 380, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1275, 380, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1276, 380, 1, 9, '', '97649b47-3d1b-4d3d-9930-f3485e815a55', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1277, 381, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1278, 381, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1279, 381, 1, 15, '', 'Andi', '', 0, 'andi');
+INSERT INTO public.rainloop_ab_properties VALUES (1280, 381, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1281, 381, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1282, 381, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1283, 381, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1284, 381, 1, 9, '', '2f6c6a7d-f182-419d-91b4-efe1019a9eb5', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1285, 382, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1286, 382, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1287, 382, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1288, 382, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1289, 382, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1290, 382, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1291, 382, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1292, 382, 1, 32, 'HOME', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
+INSERT INTO public.rainloop_ab_properties VALUES (1293, 382, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1294, 382, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1295, 382, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1296, 382, 1, 9, '', '59d7dd05-bf61-4cc4-9e15-e93c77de3c0f', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1297, 383, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1298, 383, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1299, 383, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1300, 383, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1301, 383, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1302, 383, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1303, 383, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1304, 383, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1305, 383, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1306, 383, 1, 9, '', '7c7d9433-2e96-471e-94cd-c500adcf4b3c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1307, 384, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1308, 384, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1309, 384, 1, 15, '', 'Andi', '', 0, 'andi');
+INSERT INTO public.rainloop_ab_properties VALUES (1310, 384, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1311, 384, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1312, 384, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1313, 384, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1314, 384, 1, 9, '', '89eb89c6-1ab8-4032-8755-87d7b299e7eb', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1315, 385, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1316, 385, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1317, 385, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1318, 385, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1319, 385, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1320, 385, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1321, 385, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1322, 385, 1, 9, '', 'e5151e86-247f-4471-8020-3b01c5f0b16c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1323, 386, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1324, 386, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1325, 386, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1326, 386, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1327, 386, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1328, 386, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1329, 386, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1330, 386, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1331, 386, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1332, 386, 1, 9, '', '59ff2320-4b65-4bce-95cc-f17449dde506', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1333, 387, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1334, 387, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1335, 387, 1, 15, '', 'Andi', '', 0, 'andi');
+INSERT INTO public.rainloop_ab_properties VALUES (1336, 387, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1339, 387, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1340, 387, 1, 9, '', 'f27bf9b7-e55c-4a17-bb75-6ceaf9f97626', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1341, 388, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1342, 388, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1343, 388, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1344, 388, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1345, 388, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1346, 388, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1347, 388, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1348, 388, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1349, 388, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1350, 388, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1351, 388, 1, 9, '', '8a8ec107-5aab-4237-86ee-1c18a7c6c47a', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1352, 389, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1353, 389, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1354, 389, 1, 15, '', 'Andi', '', 0, 'andi');
+INSERT INTO public.rainloop_ab_properties VALUES (1355, 389, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1356, 389, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1357, 389, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1358, 389, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1359, 389, 1, 9, '', 'a5f9cd10-0d17-4c00-afed-6ce62191feb4', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1360, 390, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1361, 390, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1362, 390, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1363, 390, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1364, 390, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1365, 390, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1366, 390, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1367, 390, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1368, 390, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1369, 390, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1370, 390, 1, 9, '', 'dc2d5b29-5ed5-4c8a-83d5-0831db5017fc', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1371, 391, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1372, 391, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1373, 391, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1374, 391, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1375, 391, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1376, 391, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1377, 391, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1378, 391, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1379, 391, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1380, 391, 1, 9, '', '4e7a2035-a944-4997-8f46-113d417f9d05', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1381, 392, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1382, 392, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1383, 392, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1384, 392, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1385, 392, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1386, 392, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1387, 392, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1388, 392, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1389, 392, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1390, 392, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1391, 392, 1, 9, '', 'efb20f7a-0886-4c68-8935-474f2e154394', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1392, 393, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1393, 393, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1394, 393, 1, 15, '', 'Andi', '', 0, 'andi');
+INSERT INTO public.rainloop_ab_properties VALUES (1395, 393, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1396, 393, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1397, 393, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1398, 393, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1399, 393, 1, 9, '', '2bf86012-a8ed-4f0b-a1be-777a34888955', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1400, 394, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1401, 394, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1402, 394, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1403, 394, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1404, 394, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1405, 394, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1406, 394, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1407, 394, 1, 9, '', 'a34982a8-25ff-4fe0-8a1d-d9ad031fcae7', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1408, 395, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1409, 395, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1410, 395, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1411, 395, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1412, 395, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1413, 395, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1414, 395, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1415, 395, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1416, 395, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1417, 395, 1, 9, '', '35909518-6339-447b-9648-890f4ab542d4', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1418, 396, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1419, 396, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1420, 396, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1421, 396, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1422, 396, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1423, 396, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1424, 396, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1425, 396, 1, 32, 'HOME', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
+INSERT INTO public.rainloop_ab_properties VALUES (1426, 396, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1427, 396, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1428, 396, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1429, 396, 1, 9, '', '245155db-e681-4989-b322-fb2c27657cc0', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1430, 397, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1431, 397, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1432, 397, 1, 15, '', 'Andi', '', 0, 'andi');
+INSERT INTO public.rainloop_ab_properties VALUES (1433, 397, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1434, 397, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1435, 397, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1436, 397, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1437, 397, 1, 9, '', '6324d9ab-69a5-4b18-a791-193bdacce3a0', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1438, 398, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1439, 398, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1440, 398, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1441, 398, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1442, 398, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1443, 398, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1444, 398, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1445, 398, 1, 9, '', 'da5581cb-5daf-48c7-a9c1-4e0985fae091', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1446, 399, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1447, 399, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1448, 399, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1449, 399, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1450, 399, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1451, 399, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1452, 399, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1453, 399, 1, 31, 'CELL', '+49 162 7184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1454, 399, 1, 31, 'HOME', '+49 2104 40954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1455, 399, 1, 9, '', '5b4297bd-bb38-4219-ae77-9d5d2e74f7b3', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1456, 400, 1, 32, '', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
+INSERT INTO public.rainloop_ab_properties VALUES (1457, 400, 1, 30, '', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1458, 400, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1459, 400, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1460, 400, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1461, 400, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1462, 400, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1463, 400, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1464, 400, 1, 31, 'cell', '+4917621319499', '4917621319499', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1465, 400, 1, 31, 'work', '+491735698189', '491735698189', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1466, 400, 1, 31, 'home', '+4991189647031', '4991189647031', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1467, 400, 1, 9, '', 'e2f95fef-a66e-4be5-880f-95d31478d3da', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1468, 401, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1469, 401, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1470, 401, 1, 15, '', 'Andi', '', 0, 'andi');
+INSERT INTO public.rainloop_ab_properties VALUES (1471, 401, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1472, 401, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1473, 401, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1474, 401, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1475, 401, 1, 9, '', 'a705d636-4941-401c-869b-fb12e6e8e967', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1476, 402, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1477, 402, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1478, 402, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1479, 402, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1480, 402, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1481, 402, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1482, 402, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1483, 402, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1484, 402, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1485, 402, 1, 9, '', '944c3fa0-43c7-4b97-bc01-ff0025a6bcb5', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1486, 403, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1487, 403, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1488, 403, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1489, 403, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1490, 403, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1491, 403, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1492, 403, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1493, 403, 1, 9, '', '3a220db2-5570-46f6-ba88-8f07cf87b7a0', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1494, 404, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1495, 404, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1496, 404, 1, 15, '', 'Andi', '', 0, 'andi');
+INSERT INTO public.rainloop_ab_properties VALUES (1497, 404, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1498, 404, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1499, 404, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1500, 404, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1501, 404, 1, 9, '', '6e95941f-47a2-4cfa-a200-804e8ca66b95', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1502, 405, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1503, 405, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1504, 405, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1505, 405, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1506, 405, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1507, 405, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1508, 405, 1, 9, '', '4afb72dc-c71f-489d-be48-4bb0598b2822', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1509, 406, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1510, 406, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1511, 406, 1, 15, '', 'Andi', '', 0, 'andi');
+INSERT INTO public.rainloop_ab_properties VALUES (1512, 406, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1513, 406, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1514, 406, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1515, 406, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1516, 406, 1, 9, '', '79a6cdd0-4db3-411a-9694-cfca4fe08dee', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1517, 407, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1518, 407, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1519, 407, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1520, 407, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1521, 407, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1522, 407, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1523, 407, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1524, 407, 1, 32, 'HOME', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
+INSERT INTO public.rainloop_ab_properties VALUES (1525, 407, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1526, 407, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1527, 407, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1528, 407, 1, 9, '', '069fcea7-ac76-4cd9-8a1f-dda764ad90d4', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1529, 408, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1530, 408, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1531, 408, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1532, 408, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1533, 408, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1534, 408, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1535, 408, 1, 9, '', 'd49e6521-0e80-45a3-a129-dde0999d7fa2', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1536, 409, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1537, 409, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
+INSERT INTO public.rainloop_ab_properties VALUES (1567, 412, 1, 9, '', 'fded437b-9e5b-4627-96e7-1b7e0d0d7f5c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1575, 414, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1576, 414, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1577, 414, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (1578, 414, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1579, 414, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1580, 414, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1581, 414, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (1582, 414, 1, 32, 'HOME', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
+INSERT INTO public.rainloop_ab_properties VALUES (1583, 414, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1584, 414, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1585, 414, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1586, 414, 1, 9, '', '09cae198-0a6f-409f-8a32-70356a00057d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1587, 415, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1588, 415, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1589, 415, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1590, 415, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1591, 415, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1592, 415, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1593, 415, 1, 9, '', 'e98caaee-9536-4e9b-ab4d-b84ab07bf06c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1594, 416, 1, 10, '', 'Deborah Michel', '', 0, 'deborah michel');
+INSERT INTO public.rainloop_ab_properties VALUES (1595, 416, 1, 16, '', 'Michel', '', 0, 'michel');
+INSERT INTO public.rainloop_ab_properties VALUES (1596, 416, 1, 15, '', 'Deborah', '', 0, 'deborah');
+INSERT INTO public.rainloop_ab_properties VALUES (1597, 416, 1, 31, 'x-mobil', '+49 176 38478615', '4917638478615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1598, 416, 1, 9, '', 'e9b71990-16c5-4387-a49a-35fc7394bde2', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1606, 418, 1, 30, '', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1607, 418, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1608, 418, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (1609, 418, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1610, 418, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1611, 418, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1612, 418, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1613, 418, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1614, 418, 1, 31, 'cell', '+491721573808', '491721573808', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1615, 418, 1, 9, '', 'b4d707bb-29cf-40c1-b350-3c3de9bebbb9', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1616, 419, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1617, 419, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1618, 419, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1619, 419, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1620, 419, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1621, 419, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1622, 419, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1623, 419, 1, 9, '', 'b4a4534b-f898-4a46-a0ad-2f61cb2e4e58', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1624, 420, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1625, 420, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1626, 420, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1627, 420, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1628, 420, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1629, 420, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1630, 420, 1, 9, '', '67e5502c-7b81-483e-a09a-b0bdb28d0413', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1638, 422, 1, 30, '', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1639, 422, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1640, 422, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (1641, 422, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1642, 422, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1643, 422, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1644, 422, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1645, 422, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1646, 422, 1, 31, 'cell', '+491721573808', '491721573808', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1647, 422, 1, 9, '', 'af72af11-829a-4651-90c2-b9b8fe8d7f0e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1648, 423, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1649, 423, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1650, 423, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1651, 423, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1652, 423, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1653, 423, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1654, 423, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1655, 423, 1, 9, '', '7e31646f-75f4-4f0d-81be-bd89ad8a14a3', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1656, 424, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1657, 424, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1658, 424, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1659, 424, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1660, 424, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1661, 424, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1662, 424, 1, 9, '', 'c01d1773-4d58-4664-a28d-dc8c7ee5f596', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1663, 425, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1664, 425, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (1665, 425, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1666, 425, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1667, 425, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1668, 425, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1669, 425, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1670, 425, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1671, 425, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1672, 425, 1, 9, '', '67fa5763-3647-4c85-ade5-67ac82f6e26d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1673, 426, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1674, 426, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1675, 426, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1676, 426, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1677, 426, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1678, 426, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1679, 426, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1680, 426, 1, 9, '', '16b1426a-4575-4e9d-a82e-939ff22cb81c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1681, 427, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1682, 427, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1683, 427, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1684, 427, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1685, 427, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1686, 427, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1687, 427, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1688, 427, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1689, 427, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1690, 427, 1, 9, '', '2ed79d04-f2a4-4c40-830d-9a81a7c0c3e6', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1691, 428, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1692, 428, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (1693, 428, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1694, 428, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1695, 428, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1696, 428, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1697, 428, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1698, 428, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1699, 428, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1700, 428, 1, 9, '', '5e8162e6-26d3-4b8d-8c9c-24c616cdf7f0', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1701, 429, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1702, 429, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1703, 429, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1704, 429, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1705, 429, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1706, 429, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1707, 429, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1708, 429, 1, 9, '', 'e374abc4-b7b4-4e9b-99c9-3a7d948fc128', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1709, 430, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1710, 430, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1711, 430, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1712, 430, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1713, 430, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1714, 430, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1715, 430, 1, 9, '', 'b667d403-e95d-480b-a47d-114094366353', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1716, 431, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1717, 431, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (1718, 431, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1719, 431, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1720, 431, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1721, 431, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1722, 431, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1723, 431, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1724, 431, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1725, 431, 1, 9, '', 'b5917685-fc9d-4475-8856-40a7535fa639', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1726, 432, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1727, 432, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1728, 432, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1729, 432, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1730, 432, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1731, 432, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1732, 432, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1733, 432, 1, 9, '', '970e6671-637a-47ae-acd5-2b78ab8d06a1', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1734, 433, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1735, 433, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1736, 433, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1737, 433, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1738, 433, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1739, 433, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1740, 433, 1, 9, '', '7e48f48c-1f38-46bd-b606-1159c48733d6', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1741, 434, 1, 30, '', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1742, 434, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1743, 434, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (1744, 434, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1745, 434, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1746, 434, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1747, 434, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1748, 434, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1749, 434, 1, 31, 'cell', '+491721573808', '491721573808', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1750, 434, 1, 9, '', '5d946c83-6811-4419-8691-7e5fc6fe44c3', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1751, 435, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1752, 435, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1753, 435, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1754, 435, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1755, 435, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1756, 435, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1757, 435, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1758, 435, 1, 9, '', '1daf205b-c139-49fc-b35b-db026c36246e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1759, 436, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1760, 436, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1761, 436, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1762, 436, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1763, 436, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1764, 436, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1765, 436, 1, 9, '', '06177c71-917f-4a0c-8638-dfff85211144', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1766, 437, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1767, 437, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (1768, 437, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1769, 437, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1770, 437, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1771, 437, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1772, 437, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1773, 437, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2193, 487, 1, 16, '', 'Menz', '', 0, 'menz');
+INSERT INTO public.rainloop_ab_properties VALUES (1774, 437, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1775, 437, 1, 9, '', 'c0455704-4311-47a6-9512-7ed7fd486a57', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1776, 438, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1777, 438, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1778, 438, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1779, 438, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1780, 438, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1781, 438, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1782, 438, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1783, 438, 1, 9, '', 'f25b7a5b-fee0-4554-a35f-d81a0056d233', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1784, 439, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1785, 439, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1786, 439, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1787, 439, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1788, 439, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1789, 439, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1790, 439, 1, 9, '', '84199851-dab9-4fd9-a7b4-a692ffe70f13', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1791, 440, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1792, 440, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (1793, 440, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1794, 440, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1795, 440, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1796, 440, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1797, 440, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1798, 440, 1, 30, 'OTHER', 'anfreyb@gmx.de', '', 0, 'anfreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1799, 440, 1, 9, '', 'ba1f56b0-8d47-43a0-b580-51d4aa888911', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1800, 441, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1801, 441, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1802, 441, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1803, 441, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1804, 441, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1805, 441, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1806, 441, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1807, 441, 1, 9, '', '62302c92-864b-4fef-86dc-bf8cdfa0d668', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1808, 442, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1809, 442, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1810, 442, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1811, 442, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1812, 442, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1813, 442, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1814, 442, 1, 9, '', 'e89bdc77-a5b9-4582-a2f8-2345fafecd14', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1815, 443, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1816, 443, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (1817, 443, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1818, 443, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1819, 443, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1820, 443, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1821, 443, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1822, 443, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1823, 443, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1824, 443, 1, 9, '', '98845985-80ea-4817-ac74-45e3533fd1af', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1825, 444, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1826, 444, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1827, 444, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1828, 444, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1829, 444, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1830, 444, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1831, 444, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1832, 444, 1, 9, '', 'e479c53a-6368-4d9d-b80f-3cc970988c67', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1833, 445, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1834, 445, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1835, 445, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1836, 445, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1837, 445, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1838, 445, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1839, 445, 1, 9, '', '68a57101-4c53-49ed-9051-7503c99c731d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1840, 446, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1841, 446, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (1842, 446, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1843, 446, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1844, 446, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1845, 446, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1846, 446, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1847, 446, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1848, 446, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1849, 446, 1, 9, '', '88e6af0f-e58c-46db-b118-62f644df61a7', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1850, 447, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1851, 447, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1852, 447, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1853, 447, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1854, 447, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1855, 447, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1856, 447, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1857, 447, 1, 9, '', '5a61bdd1-ce75-4639-8723-f5d176a811de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1858, 448, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1859, 448, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (1860, 448, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (1861, 448, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1862, 448, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1863, 448, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1864, 448, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1865, 448, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1866, 448, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1867, 448, 1, 9, '', '537dde9c-bb42-4f32-95cf-395a5cecaf65', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1868, 449, 1, 30, '', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1869, 449, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1870, 449, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (1871, 449, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1872, 449, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1873, 449, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1874, 449, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1875, 449, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2292, 498, 1, 15, '', 'Alex', '', 0, 'alex');
+INSERT INTO public.rainloop_ab_properties VALUES (1876, 449, 1, 31, 'cell', '+491721573808', '491721573808', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1877, 449, 1, 9, '', '8b4d025e-36da-446a-ba28-38dba3e9967e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1878, 450, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1879, 450, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1880, 450, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1881, 450, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1882, 450, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1883, 450, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1884, 450, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1885, 450, 1, 9, '', 'ca6d2044-0bfa-482a-98d0-91af7930d0e6', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1886, 451, 1, 10, '', 'Jana Lange', '', 0, 'jana lange');
+INSERT INTO public.rainloop_ab_properties VALUES (1887, 451, 1, 16, '', 'Lange', '', 0, 'lange');
+INSERT INTO public.rainloop_ab_properties VALUES (1888, 451, 1, 15, '', 'Jana', '', 0, 'jana');
+INSERT INTO public.rainloop_ab_properties VALUES (1889, 451, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1890, 451, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1891, 451, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1892, 451, 1, 31, 'cell', '+4915118301511', '4915118301511', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1893, 451, 1, 9, '', 'b9f91d4a-0d32-4001-b12e-7a935d6090c4', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1894, 452, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1895, 452, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1896, 452, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1897, 452, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1898, 452, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1899, 452, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1900, 452, 1, 9, '', '9460d82c-7b8d-431f-83a3-31df18ae0e19', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1901, 453, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1902, 453, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1903, 453, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1904, 453, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1905, 453, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1906, 453, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1907, 453, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1908, 453, 1, 9, '', '860e1fb0-ae05-4558-9f8f-d9fec15f8788', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1909, 454, 1, 10, '', 'Joachim Benedict', '', 0, 'joachim benedict');
+INSERT INTO public.rainloop_ab_properties VALUES (1910, 454, 1, 16, '', 'Benedict', '', 0, 'benedict');
+INSERT INTO public.rainloop_ab_properties VALUES (1911, 454, 1, 15, '', 'Joachim', '', 0, 'joachim');
+INSERT INTO public.rainloop_ab_properties VALUES (1912, 454, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1913, 454, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1914, 454, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1915, 454, 1, 31, 'WORK', '+49202451096', '49202451096', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1916, 454, 1, 9, '', 'ba9610be-15ac-4b62-b9d7-acd91a2fdcfa', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1917, 455, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1918, 455, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1919, 455, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1920, 455, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1921, 455, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1922, 455, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1923, 455, 1, 9, '', '83eabd18-620d-42bc-905a-fa535210dcbb', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1924, 456, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1925, 456, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1926, 456, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1927, 456, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1928, 456, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1929, 456, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1930, 456, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1931, 456, 1, 9, '', 'd1082c93-6b96-44a2-b8c8-4a471d3225fe', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1932, 457, 1, 10, '', 'Jochen Guera', '', 0, 'jochen guera');
+INSERT INTO public.rainloop_ab_properties VALUES (1933, 457, 1, 16, '', 'Guera', '', 0, 'guera');
+INSERT INTO public.rainloop_ab_properties VALUES (1934, 457, 1, 15, '', 'Jochen', '', 0, 'jochen');
+INSERT INTO public.rainloop_ab_properties VALUES (1935, 457, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1936, 457, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1937, 457, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1938, 457, 1, 30, 'OTHER', 'jochen.guera@teambank.de', '', 0, 'jochen.guera@teambank.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1939, 457, 1, 9, '', '2be2025e-9b59-4f05-bb93-5e402dc13c19', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1940, 458, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1941, 458, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1942, 458, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1943, 458, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1944, 458, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1945, 458, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1946, 458, 1, 9, '', '4cd7067b-9f10-4a4d-8b14-a76138b5fcac', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1947, 459, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1948, 459, 1, 16, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (1949, 459, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
+INSERT INTO public.rainloop_ab_properties VALUES (1950, 459, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1951, 459, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1952, 459, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1953, 459, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1954, 459, 1, 9, '', '969e6bf0-3731-4fc5-a5e2-c0fd8666b5a5', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1955, 460, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1956, 460, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1957, 460, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1958, 460, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1959, 460, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1960, 460, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1961, 460, 1, 9, '', '547d1bea-cb78-4620-b6b4-55aa458c4ea2', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1962, 461, 1, 10, '', 'Henning Schmiedehausen', '', 0, 'henning schmiedehausen');
+INSERT INTO public.rainloop_ab_properties VALUES (1963, 461, 1, 16, '', 'Schmiedehausen', '', 0, 'schmiedehausen');
+INSERT INTO public.rainloop_ab_properties VALUES (1964, 461, 1, 15, '', 'Henning', '', 0, 'henning');
+INSERT INTO public.rainloop_ab_properties VALUES (1965, 461, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1966, 461, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1967, 461, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1968, 461, 1, 31, 'WORK', '+1-650-353-8513', '16503538513', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1969, 461, 1, 31, 'HOME', '+1-650-353-8513', '16503538513', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1970, 461, 1, 9, '', '874434a5-6094-4b8e-a452-9f20bf530895', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1971, 462, 1, 10, '', 'Philipp Müller', '', 0, 'philipp müller');
+INSERT INTO public.rainloop_ab_properties VALUES (1972, 462, 1, 16, '', 'Müller', '', 0, 'müller');
+INSERT INTO public.rainloop_ab_properties VALUES (1973, 462, 1, 15, '', 'Philipp', '', 0, 'philipp');
+INSERT INTO public.rainloop_ab_properties VALUES (1974, 462, 1, 31, 'cell', '+49 160 98905454', '4916098905454', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1975, 462, 1, 9, '', 'f162a1a0-ed0b-415e-a753-fea27a916733', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1976, 463, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1977, 463, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (1978, 463, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (1979, 463, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (1980, 463, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1981, 463, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1982, 463, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1983, 463, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1984, 463, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1985, 463, 1, 9, '', '1b2e39be-5e5a-478e-a127-b9b2d38e9e8e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1986, 464, 1, 10, '', 'Hofmann', '', 0, 'hofmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1987, 464, 1, 16, '', 'Hofmann', '', 0, 'hofmann');
+INSERT INTO public.rainloop_ab_properties VALUES (1988, 464, 1, 15, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1989, 464, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1990, 464, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1991, 464, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1992, 464, 1, 31, 'CELL', '+49 170 1831816', '491701831816', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1993, 464, 1, 9, '', 'c50a6e18-dffb-4894-92af-a5fa0fcb3123', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1994, 465, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (1995, 465, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (1996, 465, 1, 15, '', 'Alex', '', 0, 'alex');
+INSERT INTO public.rainloop_ab_properties VALUES (1997, 465, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1998, 465, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1999, 465, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2000, 465, 1, 31, 'CELL', '+49 177 3173183', '491773173183', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2001, 465, 1, 9, '', '4da2efbd-2c7a-4fbe-b346-9a39fd171a20', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2002, 466, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (2003, 466, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (2004, 466, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (2005, 466, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2006, 466, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2007, 466, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2008, 466, 1, 9, '', 'b9c85b2e-098c-433c-9e7f-aae1e18d3a27', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2009, 467, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2010, 467, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2011, 467, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2012, 467, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2013, 467, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2014, 467, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2015, 467, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2016, 467, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
+INSERT INTO public.rainloop_ab_properties VALUES (2017, 467, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2018, 467, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2019, 467, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2020, 467, 1, 9, '', '34a8b0cf-1e2c-42b0-aded-b873aa0d9364', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2021, 468, 1, 10, '', 'Carl Herrmann', '', 0, 'carl herrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (2022, 468, 1, 16, '', 'Herrmann', '', 0, 'herrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (2023, 468, 1, 15, '', 'Carl', '', 0, 'carl');
+INSERT INTO public.rainloop_ab_properties VALUES (2024, 468, 1, 31, 'cell', '+49 1511 7209165', '4915117209165', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2025, 468, 1, 9, '', 'd6f7cd26-0f38-4dff-9ac2-40074367495c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2026, 469, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2027, 469, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2028, 469, 1, 15, '', 'Alex', '', 0, 'alex');
+INSERT INTO public.rainloop_ab_properties VALUES (2029, 469, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2030, 469, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2031, 469, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2032, 469, 1, 31, 'CELL', '+49 177 3173183', '491773173183', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2033, 469, 1, 9, '', '87fd594a-6c4a-4c08-9e03-ca1d9fb01b66', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2034, 470, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (2035, 470, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (2036, 470, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (2037, 470, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2038, 470, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2039, 470, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2040, 470, 1, 9, '', '1502ac54-5e2f-453d-bcfb-e0365c1c78b4', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2041, 471, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2042, 471, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2043, 471, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2044, 471, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2045, 471, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2046, 471, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2047, 471, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2048, 471, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2049, 471, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2050, 471, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2051, 471, 1, 9, '', '64f53283-fbec-48ae-8330-a7d0a8573661', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2052, 472, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2053, 472, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2054, 472, 1, 15, '', 'Alex', '', 0, 'alex');
+INSERT INTO public.rainloop_ab_properties VALUES (2055, 472, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2056, 472, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2057, 472, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2058, 472, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2059, 472, 1, 9, '', 'e5176079-1c61-48de-b060-4a47f82c1153', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2060, 473, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (2061, 473, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (2062, 473, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (2063, 473, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2064, 473, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2065, 473, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2066, 473, 1, 9, '', '21ded49a-49c9-4a6b-b627-f67431577f25', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2067, 474, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2068, 474, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2069, 474, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2070, 474, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2071, 474, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2072, 474, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2073, 474, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2074, 474, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2075, 474, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2076, 474, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2077, 474, 1, 9, '', '0f21530b-fc74-4ff7-b53b-63a9481681b2', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2078, 475, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2079, 475, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2080, 475, 1, 15, '', 'Alex', '', 0, 'alex');
+INSERT INTO public.rainloop_ab_properties VALUES (2081, 475, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2082, 475, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2093, 477, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2094, 477, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2095, 477, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2096, 477, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2097, 477, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2098, 477, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2099, 477, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2100, 477, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
+INSERT INTO public.rainloop_ab_properties VALUES (2101, 477, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2102, 477, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2103, 477, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2104, 477, 1, 9, '', '03788924-7f7b-4d77-a26c-70ff34ab6019', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2105, 478, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2106, 478, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2107, 478, 1, 15, '', 'Alex', '', 0, 'alex');
+INSERT INTO public.rainloop_ab_properties VALUES (2108, 478, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2109, 478, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2110, 478, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2111, 478, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2112, 478, 1, 9, '', '02e1ec37-0f3b-43fd-baef-eae7acad0e8f', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2113, 479, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (2114, 479, 1, 18, '', 'Philippa', '', 0, 'philippa');
+INSERT INTO public.rainloop_ab_properties VALUES (2115, 479, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
+INSERT INTO public.rainloop_ab_properties VALUES (2116, 479, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (2117, 479, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2118, 479, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2119, 479, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2120, 479, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2121, 479, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2122, 479, 1, 9, '', 'b1bf87b1-4898-4002-984e-8b3403df9931', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2123, 480, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2124, 480, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2125, 480, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2126, 480, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2127, 480, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2128, 480, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2129, 480, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2130, 480, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2131, 480, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2132, 480, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2133, 480, 1, 9, '', '00268bbb-d497-4859-901e-9b527bf9ec61', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2134, 481, 1, 10, '', 'Andrea Weber', '', 0, 'andrea weber');
+INSERT INTO public.rainloop_ab_properties VALUES (2135, 481, 1, 16, '', 'Weber', '', 0, 'weber');
+INSERT INTO public.rainloop_ab_properties VALUES (2136, 481, 1, 15, '', 'Andrea', '', 0, 'andrea');
+INSERT INTO public.rainloop_ab_properties VALUES (2137, 481, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2138, 481, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2139, 481, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2140, 481, 1, 31, 'CELL', '+49 1575 1601183', '4915751601183', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2141, 481, 1, 9, '', 'd6b440c5-4b4c-4526-9e0d-e70a337f19e6', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2142, 482, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2143, 482, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2144, 482, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2145, 482, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2146, 482, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2147, 482, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2148, 482, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2149, 482, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
+INSERT INTO public.rainloop_ab_properties VALUES (2150, 482, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2151, 482, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2152, 482, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2153, 482, 1, 9, '', '80b0e606-6602-4b0b-9d91-d92383dbcadd', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2154, 483, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2155, 483, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2156, 483, 1, 15, '', 'Alex', '', 0, 'alex');
+INSERT INTO public.rainloop_ab_properties VALUES (2157, 483, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2158, 483, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2159, 483, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2160, 483, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2161, 483, 1, 9, '', '3c968cc1-53c7-4c7b-be2e-edbe33ed9a02', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2162, 484, 1, 10, '', 'Andreas Menz', '', 0, 'andreas menz');
+INSERT INTO public.rainloop_ab_properties VALUES (2163, 484, 1, 18, '', 'Meister', '', 0, 'meister');
+INSERT INTO public.rainloop_ab_properties VALUES (2164, 484, 1, 16, '', 'Menz', '', 0, 'menz');
+INSERT INTO public.rainloop_ab_properties VALUES (2165, 484, 1, 15, '', 'Andreas', '', 0, 'andreas');
+INSERT INTO public.rainloop_ab_properties VALUES (2166, 484, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2167, 484, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2168, 484, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2169, 484, 1, 30, 'OTHER', 'Andreas.Menz@gmx.de', '', 0, 'andreas.menz@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2170, 484, 1, 9, '', '6b744b89-aa74-4bc3-9c3c-1a4048fb7896', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2171, 485, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2172, 485, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2173, 485, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2174, 485, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2175, 485, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2176, 485, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2177, 485, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2178, 485, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
+INSERT INTO public.rainloop_ab_properties VALUES (2179, 485, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2180, 485, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2181, 485, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2182, 485, 1, 9, '', '38c43d71-f221-47de-865e-c200ff6ba530', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2183, 486, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2184, 486, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2185, 486, 1, 15, '', 'Alex', '', 0, 'alex');
+INSERT INTO public.rainloop_ab_properties VALUES (2186, 486, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2187, 486, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2188, 486, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2189, 486, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2190, 486, 1, 9, '', 'b8d52fd8-6d47-499a-a7cb-628976cd7880', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2191, 487, 1, 10, '', 'Andreas Menz', '', 0, 'andreas menz');
+INSERT INTO public.rainloop_ab_properties VALUES (2192, 487, 1, 18, '', 'Meister', '', 0, 'meister');
+INSERT INTO public.rainloop_ab_properties VALUES (2194, 487, 1, 15, '', 'Andreas', '', 0, 'andreas');
+INSERT INTO public.rainloop_ab_properties VALUES (2195, 487, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2196, 487, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2197, 487, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2198, 487, 1, 30, 'OTHER', 'andreasmenzlive@web.de', '', 0, 'andreasmenzlive@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2199, 487, 1, 32, 'HOME', 'http://www.google.com/profiles/110556436863350299519', '', 0, 'http://www.google.com/profiles/110556436863350299519');
+INSERT INTO public.rainloop_ab_properties VALUES (2200, 487, 1, 31, 'CELL', '+491788028333', '491788028333', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2201, 487, 1, 9, '', '36125afb-1473-4aec-a6ae-a63752b32db9', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2202, 488, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2203, 488, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2204, 488, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2205, 488, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2206, 488, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2207, 488, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2208, 488, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2209, 488, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
+INSERT INTO public.rainloop_ab_properties VALUES (2210, 488, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2211, 488, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2212, 488, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2213, 488, 1, 9, '', '75fec67b-53ab-4422-8d35-8893ea683abf', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2214, 489, 1, 10, '', 'Andreas Schalm', '', 0, 'andreas schalm');
+INSERT INTO public.rainloop_ab_properties VALUES (2215, 489, 1, 110, '', '28.03.2012, 19:55 - XING - http://www.xing.com/profile/Andreas_Schalm', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2216, 489, 1, 16, '', 'Schalm', '', 0, 'schalm');
+INSERT INTO public.rainloop_ab_properties VALUES (2217, 489, 1, 15, '', 'Andreas', '', 0, 'andreas');
+INSERT INTO public.rainloop_ab_properties VALUES (2218, 489, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2219, 489, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2220, 489, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2221, 489, 1, 30, 'OTHER', 'AndreasSchalm@web.de', '', 0, 'andreasschalm@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2222, 489, 1, 31, 'CELL', '+41764200398', '41764200398', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2223, 489, 1, 31, 'WORK', '+41415454175', '41415454175', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2224, 489, 1, 9, '', '321f3118-c8f7-43ca-8e2d-08e0975acf87', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2225, 490, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2226, 490, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2227, 490, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2228, 490, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2229, 490, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2230, 490, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2231, 490, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2232, 490, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2233, 490, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2234, 490, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2235, 490, 1, 9, '', '8781df36-fd8e-493b-9edd-04d73a23399d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2236, 491, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2237, 491, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2238, 491, 1, 15, '', 'Alex', '', 0, 'alex');
+INSERT INTO public.rainloop_ab_properties VALUES (2239, 491, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2240, 491, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2241, 491, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2242, 491, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2243, 491, 1, 9, '', '75c1b4c1-99c9-4b15-895f-04dcb1359df2', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2244, 492, 1, 10, '', 'Andreas Schamberger', '', 0, 'andreas schamberger');
+INSERT INTO public.rainloop_ab_properties VALUES (2245, 492, 1, 16, '', 'Schamberger', '', 0, 'schamberger');
+INSERT INTO public.rainloop_ab_properties VALUES (2246, 492, 1, 15, '', 'Andreas', '', 0, 'andreas');
+INSERT INTO public.rainloop_ab_properties VALUES (2247, 492, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2248, 492, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2249, 492, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2250, 492, 1, 30, 'OTHER', 'as@schlossallee.ag', '', 0, 'as@schlossallee.ag');
+INSERT INTO public.rainloop_ab_properties VALUES (2251, 492, 1, 31, 'CELL', '+491632433488', '491632433488', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2252, 492, 1, 9, '', 'c0cf9ed5-b588-4d1f-869e-2e08b0ea346d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2253, 493, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2254, 493, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2255, 493, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2256, 493, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2257, 493, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2258, 493, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2259, 493, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2260, 493, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2261, 493, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2262, 493, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2263, 493, 1, 9, '', '234537e1-d984-4afe-9bf9-4221fde696ae', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2264, 494, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2265, 494, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2266, 494, 1, 15, '', 'Alex', '', 0, 'alex');
+INSERT INTO public.rainloop_ab_properties VALUES (2267, 494, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2268, 494, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2269, 494, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2270, 494, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2271, 494, 1, 9, '', '08f848a4-388e-4a86-bb67-bb4b17b62255', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2272, 495, 1, 10, '', 'Angela Klausen', '', 0, 'angela klausen');
+INSERT INTO public.rainloop_ab_properties VALUES (2273, 495, 1, 16, '', 'Klausen', '', 0, 'klausen');
+INSERT INTO public.rainloop_ab_properties VALUES (2274, 495, 1, 15, '', 'Angela', '', 0, 'angela');
+INSERT INTO public.rainloop_ab_properties VALUES (2275, 495, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2276, 495, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2277, 495, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2278, 495, 1, 31, 'cell', '+491728356018', '491728356018', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2279, 495, 1, 31, 'home', '+49 9503 503991', '499503503991', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2280, 495, 1, 9, '', '4b412ac3-b2b8-4027-a3f5-717516f9b9db', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2282, 497, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2283, 496, 1, 10, '', 'ju_schulze@online.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2284, 497, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2281, 496, 1, 30, '', 'ju_schulze@online.de', '', 1, 'ju_schulze@online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2285, 497, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2286, 497, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2287, 497, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2288, 497, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2289, 497, 1, 9, '', 'a63a8cf1-f8bb-45e0-9cf6-407918f6654c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2290, 498, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2291, 498, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2298, 499, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2299, 499, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2300, 499, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2301, 499, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2302, 499, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2303, 499, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2304, 499, 1, 9, '', '9d0da172-f0cb-4493-b942-6b21ef8e96be', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2305, 500, 1, 30, '', 'anita--meyer@t-online.de', '', 0, 'anita--meyer@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2306, 500, 1, 10, '', 'Anita Meyer', '', 0, 'anita meyer');
+INSERT INTO public.rainloop_ab_properties VALUES (2307, 500, 1, 18, '', 'Schneggi', '', 0, 'schneggi');
+INSERT INTO public.rainloop_ab_properties VALUES (2308, 500, 1, 16, '', 'Meyer', '', 0, 'meyer');
+INSERT INTO public.rainloop_ab_properties VALUES (2309, 500, 1, 15, '', 'Anita', '', 0, 'anita');
+INSERT INTO public.rainloop_ab_properties VALUES (2310, 500, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2311, 500, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2312, 500, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2313, 500, 1, 31, 'cell', '+49170 9552575', '491709552575', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2314, 500, 1, 31, 'home', '+49 911 94180804', '4991194180804', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2315, 500, 1, 9, '', 'c0d3505a-8ff4-4a22-a278-1333ede47154', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2316, 501, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2317, 501, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2318, 501, 1, 15, '', 'Alex', '', 0, 'alex');
+INSERT INTO public.rainloop_ab_properties VALUES (2319, 501, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2320, 501, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2321, 501, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2322, 501, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2323, 501, 1, 9, '', '89d44afa-882e-4161-bef7-8edd222c8461', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2324, 502, 1, 10, '', 'Anja Assenbaum', '', 0, 'anja assenbaum');
+INSERT INTO public.rainloop_ab_properties VALUES (2325, 502, 1, 16, '', 'Assenbaum', '', 0, 'assenbaum');
+INSERT INTO public.rainloop_ab_properties VALUES (2326, 502, 1, 15, '', 'Anja', '', 0, 'anja');
+INSERT INTO public.rainloop_ab_properties VALUES (2327, 502, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2328, 502, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2329, 502, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2330, 502, 1, 31, 'CELL', '+491729485815', '491729485815', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2331, 502, 1, 9, '', '4d0f5f74-e69f-4b6e-9b13-d3af73a14c6e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2332, 503, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2333, 503, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2334, 503, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2335, 503, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2336, 503, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2337, 503, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2338, 503, 1, 9, '', '372fc1ab-7a05-4d35-a1de-c4dc9f8d5d6f', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2339, 504, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2340, 504, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
+INSERT INTO public.rainloop_ab_properties VALUES (2341, 504, 1, 15, '', 'Alex', '', 0, 'alex');
+INSERT INTO public.rainloop_ab_properties VALUES (2342, 504, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2343, 504, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2344, 504, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2345, 504, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2346, 504, 1, 9, '', 'de82f524-4359-49af-8312-dbdf7c0e8b89', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2347, 505, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2348, 505, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2349, 505, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2350, 505, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2351, 505, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2352, 505, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2353, 505, 1, 9, '', '70230e5c-7610-4431-907b-a47fdcdefa8d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2354, 506, 1, 30, '', 'anke-byherzi@web.de', '', 0, 'anke-byherzi@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2355, 506, 1, 10, '', 'Anke Friedl', '', 0, 'anke friedl');
+INSERT INTO public.rainloop_ab_properties VALUES (2356, 506, 1, 16, '', 'Friedl', '', 0, 'friedl');
+INSERT INTO public.rainloop_ab_properties VALUES (2357, 506, 1, 15, '', 'Anke', '', 0, 'anke');
+INSERT INTO public.rainloop_ab_properties VALUES (2358, 506, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2359, 506, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2360, 506, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2361, 506, 1, 31, 'cell', '+49 172 8210278', '491728210278', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2362, 506, 1, 9, '', '895d90ea-5dda-4e16-931b-b42cd265c218', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2363, 507, 1, 10, '', 'Annett Pflanz', '', 0, 'annett pflanz');
+INSERT INTO public.rainloop_ab_properties VALUES (2364, 507, 1, 16, '', 'Pflanz', '', 0, 'pflanz');
+INSERT INTO public.rainloop_ab_properties VALUES (2365, 507, 1, 15, '', 'Annett', '', 0, 'annett');
+INSERT INTO public.rainloop_ab_properties VALUES (2366, 507, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2367, 507, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2368, 507, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2369, 507, 1, 32, 'HOME', 'http://www.google.com/profiles/104746240300504566365', '', 0, 'http://www.google.com/profiles/104746240300504566365');
+INSERT INTO public.rainloop_ab_properties VALUES (2370, 507, 1, 31, 'CELL', '+4917654765566', '4917654765566', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2371, 507, 1, 9, '', '85dc885b-0a5a-4a85-ba17-9b7c38ae015b', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2372, 508, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2373, 508, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2374, 508, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2375, 508, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2376, 508, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2377, 508, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2378, 508, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2379, 508, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
+INSERT INTO public.rainloop_ab_properties VALUES (2380, 508, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2381, 508, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2382, 508, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2383, 508, 1, 9, '', '70eba4a1-a582-4356-b62a-a6510d86ec7e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2393, 510, 1, 10, '', 'Annette Kappestein', '', 0, 'annette kappestein');
+INSERT INTO public.rainloop_ab_properties VALUES (2394, 510, 1, 16, '', 'Kappestein', '', 0, 'kappestein');
+INSERT INTO public.rainloop_ab_properties VALUES (2395, 510, 1, 15, '', 'Annette', '', 0, 'annette');
+INSERT INTO public.rainloop_ab_properties VALUES (2396, 510, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2397, 510, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2398, 510, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2399, 510, 1, 31, 'CELL', '+4915222717364', '4915222717364', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2400, 510, 1, 31, 'WORK', '+4991153901073', '4991153901073', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2401, 510, 1, 9, '', 'd8949f12-948b-41b8-90f0-6a9be2510afc', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2402, 511, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2403, 511, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2404, 511, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2405, 511, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2406, 511, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2407, 511, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2408, 511, 1, 9, '', '67720ceb-6ded-449c-a5c5-aec046b4b256', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2418, 513, 1, 10, '', 'Astrid Hirschmann', '', 0, 'astrid hirschmann');
+INSERT INTO public.rainloop_ab_properties VALUES (2419, 513, 1, 16, '', 'Hirschmann', '', 0, 'hirschmann');
+INSERT INTO public.rainloop_ab_properties VALUES (2420, 513, 1, 15, '', 'Astrid', '', 0, 'astrid');
+INSERT INTO public.rainloop_ab_properties VALUES (2421, 513, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2422, 513, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2423, 513, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2424, 513, 1, 31, 'CELL', '+491726621557', '491726621557', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2425, 513, 1, 31, 'FAX', '+499187906330', '499187906330', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2426, 513, 1, 31, 'WORK', '+499187906488', '499187906488', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2427, 513, 1, 9, '', '12e42e19-9b3b-4fc5-8bbe-a106f3fd772c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2428, 514, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2429, 514, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2430, 514, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2431, 514, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2432, 514, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2433, 514, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2434, 514, 1, 9, '', '08bd83fb-a265-4495-bb13-a5a60b8cbd4b', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2444, 516, 1, 10, '', 'Astrid Schuh', '', 0, 'astrid schuh');
+INSERT INTO public.rainloop_ab_properties VALUES (2445, 516, 1, 16, '', 'Schuh', '', 0, 'schuh');
+INSERT INTO public.rainloop_ab_properties VALUES (2446, 516, 1, 15, '', 'Astrid', '', 0, 'astrid');
+INSERT INTO public.rainloop_ab_properties VALUES (2447, 516, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2448, 516, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2449, 516, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2450, 516, 1, 30, 'OTHER', 'schuh4you@outlook.com', '', 0, 'schuh4you@outlook.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2451, 516, 1, 31, 'CELL', '+491796992304', '491796992304', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2452, 516, 1, 31, 'HOME', '+4991189653433', '4991189653433', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2453, 516, 1, 9, '', '2b9e059c-f5ef-4eba-bbfd-afb9843fc5b1', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2454, 517, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2455, 517, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2456, 517, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2457, 517, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2458, 517, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2459, 517, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2460, 517, 1, 9, '', '28ec3ba1-a38b-4fdc-8e5d-c5685c6f6651', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2470, 519, 1, 10, '', 'Benjamin Skoda', '', 0, 'benjamin skoda');
+INSERT INTO public.rainloop_ab_properties VALUES (2471, 519, 1, 16, '', 'Skoda', '', 0, 'skoda');
+INSERT INTO public.rainloop_ab_properties VALUES (2472, 519, 1, 15, '', 'Benjamin', '', 0, 'benjamin');
+INSERT INTO public.rainloop_ab_properties VALUES (2473, 519, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2474, 519, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2475, 519, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2476, 519, 1, 31, 'CELL', '+4915159988772', '4915159988772', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2477, 519, 1, 9, '', '9de33854-bf89-4b1d-9b95-00a1016801aa', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2478, 520, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2479, 520, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2480, 520, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2481, 520, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2482, 520, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2483, 520, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2484, 520, 1, 9, '', '16f2fa2d-2f5b-44f4-988a-125c83c8618b', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2494, 522, 1, 10, '', 'Carolin Frank', '', 0, 'carolin frank');
+INSERT INTO public.rainloop_ab_properties VALUES (2495, 522, 1, 16, '', 'Frank', '', 0, 'frank');
+INSERT INTO public.rainloop_ab_properties VALUES (2496, 522, 1, 15, '', 'Carolin', '', 0, 'carolin');
+INSERT INTO public.rainloop_ab_properties VALUES (2497, 522, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2498, 522, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2499, 522, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2500, 522, 1, 30, 'OTHER', 'frankcarolin@web.de', '', 0, 'frankcarolin@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2501, 522, 1, 31, 'CELL', '+491792094809', '491792094809', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2502, 522, 1, 31, 'HOME', '+4991319249343', '4991319249343', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2503, 522, 1, 9, '', '88732c33-11b4-4139-9699-44929514a4b6', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2504, 523, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2505, 523, 1, 16, '', 'Türen', '', 0, 'türen');
+INSERT INTO public.rainloop_ab_properties VALUES (2506, 523, 1, 15, '', 'Hürol', '', 0, 'hürol');
+INSERT INTO public.rainloop_ab_properties VALUES (2507, 523, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2508, 523, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2509, 523, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2510, 523, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2511, 523, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
+INSERT INTO public.rainloop_ab_properties VALUES (2512, 523, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2513, 523, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2514, 523, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2515, 523, 1, 9, '', 'd981a48e-ddfe-405c-90f5-ab89a71ae65b', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2516, 524, 1, 10, '', 'Tom Czernicky', '', 0, 'tom czernicky');
+INSERT INTO public.rainloop_ab_properties VALUES (2517, 524, 1, 16, '', 'Czernicky', '', 0, 'czernicky');
+INSERT INTO public.rainloop_ab_properties VALUES (2518, 524, 1, 15, '', 'Tom', '', 0, 'tom');
+INSERT INTO public.rainloop_ab_properties VALUES (2519, 524, 1, 31, 'cell', '+49 1512 8754650', '4915128754650', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2520, 524, 1, 9, '', '8634d159-922c-4eb0-a762-ed51b3b81e36', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2530, 526, 1, 10, '', 'Carolin Hoose', '', 0, 'carolin hoose');
+INSERT INTO public.rainloop_ab_properties VALUES (2531, 526, 1, 16, '', 'Hoose', '', 0, 'hoose');
+INSERT INTO public.rainloop_ab_properties VALUES (2532, 526, 1, 15, '', 'Carolin', '', 0, 'carolin');
+INSERT INTO public.rainloop_ab_properties VALUES (2533, 526, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2534, 526, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2535, 526, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2536, 526, 1, 31, 'CELL', '+491737005766', '491737005766', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2537, 526, 1, 9, '', 'fb316956-b9fd-46be-b91c-6197e6fb2cde', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2538, 527, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2539, 527, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2540, 527, 1, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (2541, 527, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2542, 527, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2543, 527, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2544, 527, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2545, 527, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2546, 527, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2547, 527, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2548, 527, 1, 9, '', '994933fd-edcc-4ba5-87f8-4691ece6dab5', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2558, 529, 1, 10, '', 'Christian Schmidt', '', 0, 'christian schmidt');
+INSERT INTO public.rainloop_ab_properties VALUES (2559, 529, 1, 16, '', 'Schmidt', '', 0, 'schmidt');
+INSERT INTO public.rainloop_ab_properties VALUES (2560, 529, 1, 15, '', 'Christian', '', 0, 'christian');
+INSERT INTO public.rainloop_ab_properties VALUES (2561, 529, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2562, 529, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2563, 529, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2564, 529, 1, 31, 'CELL', '+4915167201301', '4915167201301', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2565, 529, 1, 9, '', '62560719-245e-4464-9238-5bbafc545703', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2566, 530, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2567, 530, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2568, 530, 1, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (2569, 530, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2570, 530, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2571, 530, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2572, 530, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2573, 530, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2574, 530, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2575, 530, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2576, 530, 1, 9, '', '6c725fe8-3b48-43ae-9ef6-f2e5607118fe', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2586, 532, 1, 10, '', 'Christine Dr. Conrad', '', 0, 'christine dr. conrad');
+INSERT INTO public.rainloop_ab_properties VALUES (2587, 532, 1, 16, '', 'Dr. Conrad', '', 0, 'dr. conrad');
+INSERT INTO public.rainloop_ab_properties VALUES (2588, 532, 1, 15, '', 'Christine', '', 0, 'christine');
+INSERT INTO public.rainloop_ab_properties VALUES (2589, 532, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2590, 532, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2591, 532, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2592, 532, 1, 30, 'OTHER', 'info@gesundzaubern.de', '', 0, 'info@gesundzaubern.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2593, 532, 1, 31, 'CELL', '+4915770691239', '4915770691239', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2594, 532, 1, 31, 'FAX', '+499115980001', '499115980001', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2595, 532, 1, 31, 'WORK', '+499115979049', '499115979049', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2596, 532, 1, 9, '', '10b45eee-f5e0-486c-acc3-07a94422943b', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2597, 533, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2598, 533, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2599, 533, 1, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (2600, 533, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2601, 533, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2602, 533, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2603, 533, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2604, 533, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2605, 533, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2606, 533, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2607, 533, 1, 9, '', '15892e4c-9d97-4636-ae87-f1a42b72ce47', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2617, 535, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2618, 535, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2619, 535, 1, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (2620, 535, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2621, 535, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2622, 535, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2623, 535, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2624, 535, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2625, 535, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2626, 535, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2627, 535, 1, 9, '', '6a3142f3-58c5-4884-a0b9-c22991e14ca9', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2628, 536, 1, 30, '', 'christine.goecke@gmx.net', '', 0, 'christine.goecke@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (2629, 536, 1, 10, '', 'Christine Göcke', '', 0, 'christine göcke');
+INSERT INTO public.rainloop_ab_properties VALUES (2630, 536, 1, 16, '', 'Göcke', '', 0, 'göcke');
+INSERT INTO public.rainloop_ab_properties VALUES (2631, 536, 1, 15, '', 'Christine', '', 0, 'christine');
+INSERT INTO public.rainloop_ab_properties VALUES (2632, 536, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2633, 536, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2634, 536, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2635, 536, 1, 31, 'cell', '+4917679323857', '4917679323857', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2636, 536, 1, 31, 'home', '+4977326010661', '4977326010661', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2637, 536, 1, 9, '', '881a01c5-6baa-4971-a474-8c23f440cb12', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2638, 537, 1, 30, '', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2639, 537, 1, 30, '', 'alex@designerei-dech.de', '', 0, 'alex@designerei-dech.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2640, 537, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2641, 537, 1, 16, '', 'Dech', '', 0, 'dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2642, 537, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (2643, 537, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2644, 537, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2645, 537, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2646, 537, 1, 31, 'cell', '+4917620903630', '4917620903630', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2647, 537, 1, 9, '', '8e74f066-1c5f-4a57-b37e-576c8f7c0e11', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2648, 538, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2649, 538, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2650, 538, 1, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (2651, 538, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2652, 538, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2653, 538, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2654, 538, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2655, 538, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2656, 538, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2657, 538, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2658, 538, 1, 9, '', 'b2319765-08f0-4869-9443-2464aa905428', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2660, 539, 1, 10, '', 'Christine Meergans', '', 0, 'christine meergans');
+INSERT INTO public.rainloop_ab_properties VALUES (2661, 539, 1, 18, '', 'Tini', '', 0, 'tini');
+INSERT INTO public.rainloop_ab_properties VALUES (2662, 539, 1, 16, '', 'Meergans', '', 0, 'meergans');
+INSERT INTO public.rainloop_ab_properties VALUES (2663, 539, 1, 15, '', 'Christine', '', 0, 'christine');
+INSERT INTO public.rainloop_ab_properties VALUES (2664, 539, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2665, 539, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2666, 539, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2667, 539, 1, 31, 'cell', '+49 175 8625890', '491758625890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2668, 539, 1, 31, 'home', '+49 89 843522', '4989843522', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2669, 539, 1, 9, '', '97573051-ff2a-4c74-a2dc-d8fb14ec2311', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2670, 540, 1, 30, '', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2671, 540, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2672, 540, 1, 16, '', 'Dech', '', 0, 'dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2673, 540, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (2674, 540, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2675, 540, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2676, 540, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2677, 540, 1, 31, 'cell', '+4917620903630', '4917620903630', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2678, 540, 1, 9, '', '06543eb9-f193-4ee7-aa87-33ecf76d156d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2679, 541, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2680, 541, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2681, 541, 1, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (2682, 541, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2683, 541, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2684, 541, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2685, 541, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2686, 541, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2687, 541, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2688, 541, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2689, 541, 1, 9, '', '52688c51-1b5a-42ea-851d-cfa1aeafed03', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2690, 542, 1, 30, '', 'clarissakressmann@gmx.de', '', 0, 'clarissakressmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2691, 542, 1, 10, '', 'Clarissa Kreßmann', '', 0, 'clarissa kreßmann');
+INSERT INTO public.rainloop_ab_properties VALUES (2692, 542, 1, 18, '', 'Reh', '', 0, 'reh');
+INSERT INTO public.rainloop_ab_properties VALUES (2693, 542, 1, 16, '', 'Kreßmann', '', 0, 'kreßmann');
+INSERT INTO public.rainloop_ab_properties VALUES (2694, 542, 1, 15, '', 'Clarissa', '', 0, 'clarissa');
+INSERT INTO public.rainloop_ab_properties VALUES (2695, 542, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2696, 542, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2697, 542, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2698, 542, 1, 31, 'cell', '+4915209893969', '4915209893969', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2699, 542, 1, 31, 'home', '+4991955073151', '4991955073151', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2700, 542, 1, 9, '', '9cff083a-ed33-4526-ba09-a88df892bfa7', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2701, 543, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2702, 543, 1, 16, '', 'Dech', '', 0, 'dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2703, 543, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (2704, 543, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2705, 543, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2706, 543, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2707, 543, 1, 30, 'OTHER', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2708, 543, 1, 31, 'CELL', '+4917620903630', '4917620903630', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2709, 543, 1, 9, '', '2a573cde-5b8b-4aea-8751-656192d62b6b', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2710, 544, 1, 10, '', 'Corinna Voos', '', 0, 'corinna voos');
+INSERT INTO public.rainloop_ab_properties VALUES (2711, 544, 1, 16, '', 'Voos', '', 0, 'voos');
+INSERT INTO public.rainloop_ab_properties VALUES (2659, 539, 1, 30, '', 'tinimayer@gmx.de', '', 1, 'tinimayer@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2712, 544, 1, 15, '', 'Corinna', '', 0, 'corinna');
+INSERT INTO public.rainloop_ab_properties VALUES (2713, 544, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2714, 544, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2715, 544, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2716, 544, 1, 31, 'CELL', '+491775115447', '491775115447', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2717, 544, 1, 31, 'WORK', '+492103899541', '492103899541', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2718, 544, 1, 9, '', '46853e17-27d9-47f6-bd7a-2eebde6ef82e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2719, 545, 1, 30, '', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2720, 545, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2721, 545, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2722, 545, 1, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (2723, 545, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2724, 545, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2725, 545, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2726, 545, 1, 31, 'cell', '+4917653869886', '4917653869886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2727, 545, 1, 31, 'work', '+494036138748', '494036138748', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2728, 545, 1, 31, 'home', '+494059371615', '494059371615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2729, 545, 1, 9, '', '2bbccab9-6abe-4fa4-8a88-52aef5ab528a', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2730, 546, 1, 30, '', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2731, 546, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2732, 546, 1, 16, '', 'Dech', '', 0, 'dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2733, 546, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (2734, 546, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2735, 546, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2736, 546, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2737, 546, 1, 31, 'cell', '+4917620903630', '4917620903630', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2738, 546, 1, 9, '', '7c9491af-d3fa-4a32-8311-e1944bddbc21', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2739, 547, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2740, 547, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2741, 547, 1, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (2742, 547, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2743, 547, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2744, 547, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2745, 547, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2746, 547, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2747, 547, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2748, 547, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2749, 547, 1, 9, '', '3452d920-faa0-4a8e-b189-545c3428f141', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2750, 548, 1, 10, '', 'Cornelia Böttcher', '', 0, 'cornelia böttcher');
+INSERT INTO public.rainloop_ab_properties VALUES (2751, 548, 1, 16, '', 'Böttcher', '', 0, 'böttcher');
+INSERT INTO public.rainloop_ab_properties VALUES (2752, 548, 1, 15, '', 'Cornelia', '', 0, 'cornelia');
+INSERT INTO public.rainloop_ab_properties VALUES (2753, 548, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2754, 548, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2755, 548, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2756, 548, 1, 31, 'cell', '+491778054227', '491778054227', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2757, 548, 1, 9, '', 'c0d0c65f-afab-40c4-91f4-30ae6665ca5d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2758, 549, 1, 30, '', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2759, 549, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2760, 549, 1, 16, '', 'Dech', '', 0, 'dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2761, 549, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (2762, 549, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2763, 549, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2764, 549, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2765, 549, 1, 31, 'cell', '+4917620903630', '4917620903630', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2766, 549, 1, 9, '', 'ada3e60b-2201-4afa-b3b8-7ad7e803896e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2767, 550, 1, 10, '', 'Dagmar van der Horst', '', 0, 'dagmar van der horst');
+INSERT INTO public.rainloop_ab_properties VALUES (2768, 550, 1, 16, '', 'van der Horst', '', 0, 'van der horst');
+INSERT INTO public.rainloop_ab_properties VALUES (2769, 550, 1, 15, '', 'Dagmar', '', 0, 'dagmar');
+INSERT INTO public.rainloop_ab_properties VALUES (2770, 550, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2771, 550, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2772, 550, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2773, 550, 1, 31, 'cell', '+49 173 3810216', '491733810216', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2774, 550, 1, 9, '', '909b73fc-083d-4a67-9232-39c73b7cb821', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2775, 551, 1, 30, '', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2776, 551, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2777, 551, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2778, 551, 1, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (2779, 551, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2780, 551, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2781, 551, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2782, 551, 1, 31, 'cell', '+4917653869886', '4917653869886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2783, 551, 1, 31, 'work', '+494036138748', '494036138748', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2784, 551, 1, 31, 'home', '+494059371615', '494059371615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2785, 551, 1, 9, '', '226eddc8-7aa7-44ee-8e2c-ae1cede3bfaf', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2786, 552, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2787, 552, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2788, 552, 1, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (2789, 552, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2790, 552, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2791, 552, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2792, 552, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2793, 552, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2794, 552, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2795, 552, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2796, 552, 1, 9, '', 'c4361436-59fd-4db5-b48f-1132abf3a8a1', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2797, 553, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2798, 553, 1, 16, '', 'Dech', '', 0, 'dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2799, 553, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (2800, 553, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2801, 553, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2802, 553, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2803, 553, 1, 9, '', 'fe339e8e-ab58-42d7-9e05-3d43ee549866', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2804, 554, 1, 10, '', 'Dominik Jaroch', '', 0, 'dominik jaroch');
+INSERT INTO public.rainloop_ab_properties VALUES (2805, 554, 1, 16, '', 'Jaroch', '', 0, 'jaroch');
+INSERT INTO public.rainloop_ab_properties VALUES (2806, 554, 1, 15, '', 'Dominik', '', 0, 'dominik');
+INSERT INTO public.rainloop_ab_properties VALUES (2807, 554, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2808, 554, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2809, 554, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2810, 554, 1, 30, 'OTHER', 'd.jaroch@gmx.de', '', 0, 'd.jaroch@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2811, 554, 1, 31, 'CELL', '+491636008468', '491636008468', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2812, 554, 1, 31, 'WORK', '+499118370202', '499118370202', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2813, 554, 1, 31, 'HOME', '+4991198808787', '4991198808787', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2814, 554, 1, 9, '', '02d09437-aaaf-4f21-b485-262e13f577f8', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2815, 555, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2816, 555, 1, 16, '', 'Dech', '', 0, 'dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2817, 555, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (2818, 555, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2819, 555, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2820, 555, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2821, 555, 1, 30, 'OTHER', 'alex@designerei-dech.de', '', 0, 'alex@designerei-dech.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2822, 555, 1, 30, 'OTHER', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2823, 555, 1, 31, 'CELL', '+4917620903630', '4917620903630', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2824, 555, 1, 9, '', 'e9622531-a381-4f6b-a3cc-b7e8fb8577ef', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2825, 556, 1, 10, '', 'Dr. Alexandra Krenmayer', '', 0, 'dr. alexandra krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (2826, 556, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (2827, 556, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (2828, 556, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2829, 556, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2830, 556, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2831, 556, 1, 31, 'CELL', '+49 172 2132888', '491722132888', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2832, 556, 1, 9, '', '856bf148-15d3-467e-b91f-21994de4d03c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2833, 557, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2834, 557, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2835, 557, 1, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (2836, 557, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2837, 557, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2838, 557, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2839, 557, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2840, 557, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2841, 557, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2842, 557, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2843, 557, 1, 9, '', '9b84cc94-e001-49a3-a756-772109149cdf', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2844, 558, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2845, 558, 1, 16, '', 'Dech', '', 0, 'dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2846, 558, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (2847, 558, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2848, 558, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2849, 558, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2850, 558, 1, 9, '', '85c3fc38-b2c9-42f7-a00c-ad464732ca3b', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2851, 559, 1, 10, '', 'Dr. Jungkunz', '', 0, 'dr. jungkunz');
+INSERT INTO public.rainloop_ab_properties VALUES (2852, 559, 1, 16, '', 'Jungkunz', '', 0, 'jungkunz');
+INSERT INTO public.rainloop_ab_properties VALUES (2853, 559, 1, 15, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2854, 559, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2855, 559, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2856, 559, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2857, 559, 1, 31, 'WORK', '+499119569944', '499119569944', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2858, 559, 1, 9, '', '423d1d73-14c0-4407-9fd4-03fcd0b6c41c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2859, 560, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2860, 560, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2861, 560, 1, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (2862, 560, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2863, 560, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2864, 560, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2865, 560, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2866, 560, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2867, 560, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2868, 560, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2869, 560, 1, 9, '', '6d01c11d-d40f-4ed3-8364-d377908c2d55', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2870, 561, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2871, 561, 1, 16, '', 'Dech', '', 0, 'dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2872, 561, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (2873, 561, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2874, 561, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2875, 561, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2876, 561, 1, 30, 'OTHER', 'alex@designerei-dech.de', '', 0, 'alex@designerei-dech.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2877, 561, 1, 30, 'OTHER', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2878, 561, 1, 31, 'CELL', '+4917620903630', '4917620903630', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2879, 561, 1, 9, '', 'ebeed563-8e20-49ac-9486-2545d045174f', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2880, 562, 1, 10, '', 'Dr. Rometsch', '', 0, 'dr. rometsch');
+INSERT INTO public.rainloop_ab_properties VALUES (2881, 562, 1, 16, '', 'Rometsch', '', 0, 'rometsch');
+INSERT INTO public.rainloop_ab_properties VALUES (2882, 562, 1, 15, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2883, 562, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2884, 562, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2885, 562, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2886, 562, 1, 30, 'OTHER', 'Glogauer Straße 15, 90473 Nürnberg', '', 0, 'glogauer straße 15, 90473 nürnberg');
+INSERT INTO public.rainloop_ab_properties VALUES (2887, 562, 1, 31, 'WORK', '+49911808366', '49911808366', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2888, 562, 1, 9, '', '0ff544b9-1ba0-4bba-876f-434cd71182a2', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2889, 563, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2890, 563, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (2891, 563, 1, 15, '', 'Ina', '', 0, 'ina');
+INSERT INTO public.rainloop_ab_properties VALUES (2892, 563, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2893, 563, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2894, 563, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2895, 563, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2896, 563, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2897, 563, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2898, 563, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2899, 563, 1, 9, '', '9fc01974-4803-4b2b-beaf-f2ed0cf19790', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2900, 564, 1, 30, '', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2901, 564, 1, 30, '', 'alex@designerei-dech.de', '', 0, 'alex@designerei-dech.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2902, 564, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2903, 564, 1, 16, '', 'Dech', '', 0, 'dech');
+INSERT INTO public.rainloop_ab_properties VALUES (2904, 564, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (2905, 564, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2906, 564, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2907, 564, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2908, 564, 1, 31, 'cell', '+4917620903630', '4917620903630', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2909, 564, 1, 9, '', '812d5cd9-496e-4e94-9664-3cc861843568', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2910, 565, 1, 10, '', 'Esther Sanchez del Pozo', '', 0, 'esther sanchez del pozo');
+INSERT INTO public.rainloop_ab_properties VALUES (2911, 565, 1, 16, '', 'Sanchez del Pozo', '', 0, 'sanchez del pozo');
+INSERT INTO public.rainloop_ab_properties VALUES (2912, 565, 1, 15, '', 'Esther', '', 0, 'esther');
+INSERT INTO public.rainloop_ab_properties VALUES (2913, 565, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2914, 565, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2915, 565, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2916, 565, 1, 30, 'OTHER', 'esther.sanchezdelpozo@gmail.com', '', 0, 'esther.sanchezdelpozo@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2917, 565, 1, 31, 'CELL', '+34637752528', '34637752528', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2918, 565, 1, 9, '', 'da62a8f3-852a-4c44-9bcc-58a92bb6c8bb', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2919, 566, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
+INSERT INTO public.rainloop_ab_properties VALUES (2920, 566, 1, 16, '', 'Daun', '', 0, 'daun');
+INSERT INTO public.rainloop_ab_properties VALUES (2921, 566, 1, 15, '', 'Ines', '', 0, 'ines');
+INSERT INTO public.rainloop_ab_properties VALUES (2922, 566, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2923, 566, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2924, 566, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2925, 566, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2926, 566, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2927, 566, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2928, 566, 1, 9, '', 'a76c606b-8cec-4fdb-930b-a24a1610c648', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2929, 567, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (2930, 567, 1, 16, '', 'da Silva', '', 0, 'da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (2931, 567, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
+INSERT INTO public.rainloop_ab_properties VALUES (2932, 567, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2933, 567, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2934, 567, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2935, 567, 1, 30, 'OTHER', 'alexandra.adv@outlook.com', '', 0, 'alexandra.adv@outlook.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2936, 567, 1, 31, 'CELL', '005-581-85749118', '00558185749118', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2937, 567, 1, 9, '', 'b3105ce1-529c-4bc5-9d61-369106f0e061', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2938, 568, 1, 10, '', 'Eva Rundholz', '', 0, 'eva rundholz');
+INSERT INTO public.rainloop_ab_properties VALUES (2939, 568, 1, 16, '', 'Rundholz', '', 0, 'rundholz');
+INSERT INTO public.rainloop_ab_properties VALUES (2940, 568, 1, 15, '', 'Eva', '', 0, 'eva');
+INSERT INTO public.rainloop_ab_properties VALUES (2941, 568, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2942, 568, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2943, 568, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2944, 568, 1, 31, 'CELL', '+4915123037973', '4915123037973', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2945, 568, 1, 9, '', 'f5df9943-585e-4ebc-a269-9b1b8aaefaa1', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2946, 569, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
+INSERT INTO public.rainloop_ab_properties VALUES (2947, 569, 1, 16, '', 'Daun', '', 0, 'daun');
+INSERT INTO public.rainloop_ab_properties VALUES (2948, 569, 1, 15, '', 'Ines', '', 0, 'ines');
+INSERT INTO public.rainloop_ab_properties VALUES (2949, 569, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2950, 569, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2951, 569, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2952, 569, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2953, 569, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2954, 569, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2955, 569, 1, 9, '', '929ea148-6e78-4f1f-bf74-930a45bd236d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2956, 570, 1, 30, '', 'alexandra.adv@outlook.com', '', 0, 'alexandra.adv@outlook.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2957, 570, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (2958, 570, 1, 16, '', 'da Silva', '', 0, 'da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (2959, 570, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
+INSERT INTO public.rainloop_ab_properties VALUES (2960, 570, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2961, 570, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2962, 570, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2963, 570, 1, 31, 'cell', '005-581-85749118', '00558185749118', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2964, 570, 1, 9, '', '7e7e4cd4-22ab-4563-9c41-769fee405140', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2965, 571, 1, 10, '', 'Fabian Schiller', '', 0, 'fabian schiller');
+INSERT INTO public.rainloop_ab_properties VALUES (2966, 571, 1, 16, '', 'Schiller', '', 0, 'schiller');
+INSERT INTO public.rainloop_ab_properties VALUES (2967, 571, 1, 15, '', 'Fabian', '', 0, 'fabian');
+INSERT INTO public.rainloop_ab_properties VALUES (2968, 571, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2969, 571, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2970, 571, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2971, 571, 1, 31, 'CELL', '+4915151917650', '4915151917650', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2972, 571, 1, 9, '', 'a8367713-2c53-4970-94f6-5ba3aa1939d5', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2973, 572, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
+INSERT INTO public.rainloop_ab_properties VALUES (2974, 572, 1, 16, '', 'Daun', '', 0, 'daun');
+INSERT INTO public.rainloop_ab_properties VALUES (2975, 572, 1, 15, '', 'Ines', '', 0, 'ines');
+INSERT INTO public.rainloop_ab_properties VALUES (2976, 572, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2977, 572, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2978, 572, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2979, 572, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
+INSERT INTO public.rainloop_ab_properties VALUES (2980, 572, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2981, 572, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2982, 572, 1, 9, '', '35fd6806-e691-456e-9350-efa20755d00c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2983, 573, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (2984, 573, 1, 16, '', 'da Silva', '', 0, 'da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (2985, 573, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
+INSERT INTO public.rainloop_ab_properties VALUES (2986, 573, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2987, 573, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2988, 573, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2989, 573, 1, 30, 'OTHER', 'alexandra.adv@outlook.com', '', 0, 'alexandra.adv@outlook.com');
+INSERT INTO public.rainloop_ab_properties VALUES (2990, 573, 1, 31, 'CELL', '+55 81 8461-4113', '558184614113', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2991, 573, 1, 9, '', 'c1e4e5cc-e2ab-43ad-9402-e7b215d78ef8', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2992, 574, 1, 10, '', 'Frank Kraeker', '', 0, 'frank kraeker');
+INSERT INTO public.rainloop_ab_properties VALUES (2993, 574, 1, 16, '', 'Kraeker', '', 0, 'kraeker');
+INSERT INTO public.rainloop_ab_properties VALUES (2994, 574, 1, 15, '', 'Frank', '', 0, 'frank');
+INSERT INTO public.rainloop_ab_properties VALUES (2995, 574, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2996, 574, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2997, 574, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2998, 574, 1, 31, 'WORK', '+4916098908710', '4916098908710', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (2999, 574, 1, 9, '', '5ceb9b96-d27a-4671-968b-d860a09e3c20', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3000, 575, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3001, 575, 1, 16, '', 'Daun', '', 0, 'daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3002, 575, 1, 15, '', 'Ines', '', 0, 'ines');
+INSERT INTO public.rainloop_ab_properties VALUES (3003, 575, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3004, 575, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3005, 575, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3006, 575, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3007, 575, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3008, 575, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3009, 575, 1, 9, '', 'd258f00b-3d64-4d41-bae3-c0ca603a7bdf', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3010, 576, 1, 10, '', 'Sarah Matthe', '', 0, 'sarah matthe');
+INSERT INTO public.rainloop_ab_properties VALUES (3011, 576, 1, 16, '', 'Matthe', '', 0, 'matthe');
+INSERT INTO public.rainloop_ab_properties VALUES (3012, 576, 1, 15, '', 'Sarah', '', 0, 'sarah');
+INSERT INTO public.rainloop_ab_properties VALUES (3013, 576, 1, 31, 'cell', '+49 160 2406578', '491602406578', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3014, 576, 1, 9, '', '387703d1-593e-4548-9f93-be5115d56e94', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3015, 577, 1, 30, '', 'alexandra.adv@outlook.com', '', 0, 'alexandra.adv@outlook.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3016, 577, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3017, 577, 1, 16, '', 'da Silva', '', 0, 'da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3018, 577, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
+INSERT INTO public.rainloop_ab_properties VALUES (3019, 577, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3020, 577, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3021, 577, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3022, 577, 1, 31, 'cell', '005-581-85749118', '00558185749118', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3023, 577, 1, 9, '', 'efebb251-bd41-4ee5-b1d2-000c9a8bab4b', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3024, 578, 1, 10, '', 'Franziska Rabensteiner', '', 0, 'franziska rabensteiner');
+INSERT INTO public.rainloop_ab_properties VALUES (3025, 578, 1, 16, '', 'Rabensteiner', '', 0, 'rabensteiner');
+INSERT INTO public.rainloop_ab_properties VALUES (3026, 578, 1, 15, '', 'Franziska', '', 0, 'franziska');
+INSERT INTO public.rainloop_ab_properties VALUES (3027, 578, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3028, 578, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3029, 578, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3030, 578, 1, 31, 'CELL', '+491736821075', '491736821075', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3031, 578, 1, 31, 'WORK', '+499119231529', '499119231529', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3032, 578, 1, 9, '', '61808fde-69c3-4929-a08e-18dcbfa33a5a', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3033, 579, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3034, 579, 1, 16, '', 'Daun', '', 0, 'daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3035, 579, 1, 15, '', 'Ines', '', 0, 'ines');
+INSERT INTO public.rainloop_ab_properties VALUES (3036, 579, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3037, 579, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3038, 579, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3039, 579, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3040, 579, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3041, 579, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3042, 579, 1, 9, '', '4a1885b8-a2bf-4ace-bad7-e3237c03f21a', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3043, 580, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3044, 580, 1, 16, '', 'da Silva', '', 0, 'da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3045, 580, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
+INSERT INTO public.rainloop_ab_properties VALUES (3046, 580, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3047, 580, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3048, 580, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3049, 580, 1, 9, '', '935aadb9-8a9d-4aff-b4d6-22a34711a558', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3050, 581, 1, 10, '', 'Franziska Steinmetz', '', 0, 'franziska steinmetz');
+INSERT INTO public.rainloop_ab_properties VALUES (3051, 581, 1, 16, '', 'Steinmetz', '', 0, 'steinmetz');
+INSERT INTO public.rainloop_ab_properties VALUES (3052, 581, 1, 15, '', 'Franziska', '', 0, 'franziska');
+INSERT INTO public.rainloop_ab_properties VALUES (3053, 581, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3054, 581, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3055, 581, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3056, 581, 1, 31, 'CELL', '+491755277412', '491755277412', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3057, 581, 1, 9, '', '830e2195-950a-4676-8042-a0a17b4f2d96', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3058, 582, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3059, 582, 1, 16, '', 'Daun', '', 0, 'daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3060, 582, 1, 15, '', 'Ines', '', 0, 'ines');
+INSERT INTO public.rainloop_ab_properties VALUES (3061, 582, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3062, 582, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3063, 582, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3064, 582, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3065, 582, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3066, 582, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3067, 582, 1, 9, '', '111db708-867d-4f2a-b2f1-dd8eea55a52b', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3068, 583, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3069, 583, 1, 16, '', 'da Silva', '', 0, 'da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3070, 583, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
+INSERT INTO public.rainloop_ab_properties VALUES (3071, 583, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3072, 583, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3073, 583, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3074, 583, 1, 9, '', '415d4ee1-74e1-4bbf-b874-f31654359169', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3075, 584, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3076, 584, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3077, 584, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3078, 584, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3079, 584, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3080, 584, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3081, 584, 1, 30, 'OTHER', 'f.gehrmann@proge.de', '', 0, 'f.gehrmann@proge.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3082, 584, 1, 9, '', 'db2c24f8-e090-4edd-b479-70c1465a1d59', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3083, 585, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3084, 585, 1, 16, '', 'Daun', '', 0, 'daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3085, 585, 1, 15, '', 'Ines', '', 0, 'ines');
+INSERT INTO public.rainloop_ab_properties VALUES (3086, 585, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3087, 585, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3088, 585, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3089, 585, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3090, 585, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3091, 585, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3092, 585, 1, 9, '', '1c034044-9959-464d-80f2-12504929d6e6', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3093, 586, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3094, 586, 1, 16, '', 'da Silva', '', 0, 'da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3095, 586, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
+INSERT INTO public.rainloop_ab_properties VALUES (3096, 586, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3097, 586, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3098, 586, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3099, 586, 1, 9, '', '32791414-655d-4428-849a-5a6bd11cae2d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3100, 587, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3101, 587, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3102, 587, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3103, 587, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3104, 587, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3105, 587, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3106, 587, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3107, 587, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3108, 587, 1, 9, '', 'fd4a7258-1cb6-4fc7-8637-adc61b9bd32e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3109, 588, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3110, 588, 1, 16, '', 'Daun', '', 0, 'daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3111, 588, 1, 15, '', 'Ines', '', 0, 'ines');
+INSERT INTO public.rainloop_ab_properties VALUES (3112, 588, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3113, 588, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3114, 588, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3115, 588, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3217, 601, 1, 16, '', 'Daun', '', 0, 'daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3116, 588, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3117, 588, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3118, 588, 1, 9, '', '4049656b-01af-4c35-819e-5c94622ad208', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3119, 589, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3120, 589, 1, 16, '', 'da Silva', '', 0, 'da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3121, 589, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
+INSERT INTO public.rainloop_ab_properties VALUES (3122, 589, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3123, 589, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3124, 589, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3125, 589, 1, 9, '', '1cc1a71b-be4f-47aa-a4fb-5dc0c7f665d1', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3126, 590, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3127, 590, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3128, 590, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3129, 590, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3130, 590, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3131, 590, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3132, 590, 1, 30, 'OTHER', 'f.gehrmann@proge.de', '', 0, 'f.gehrmann@proge.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3133, 590, 1, 9, '', '2ab6414b-6ad9-4052-8d38-d911fac0ab43', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3134, 591, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3135, 591, 1, 16, '', 'Daun', '', 0, 'daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3136, 591, 1, 15, '', 'Ines', '', 0, 'ines');
+INSERT INTO public.rainloop_ab_properties VALUES (3137, 591, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3138, 591, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3139, 591, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3140, 591, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3141, 591, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3142, 591, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3143, 591, 1, 9, '', 'c6cbbc83-a994-4c8c-ab0e-5e8ef421d7e5', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3144, 592, 1, 10, '', 'Michael Ultsch', '', 0, 'michael ultsch');
+INSERT INTO public.rainloop_ab_properties VALUES (3145, 592, 1, 16, '', 'Ultsch', '', 0, 'ultsch');
+INSERT INTO public.rainloop_ab_properties VALUES (3146, 592, 1, 15, '', 'Michael', '', 0, 'michael');
+INSERT INTO public.rainloop_ab_properties VALUES (3147, 592, 1, 31, 'cell', '+49 160 3680010', '491603680010', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3148, 592, 1, 9, '', '4103dcb4-a380-4893-8c8a-f44c79bd777c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3149, 593, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3150, 593, 1, 16, '', 'da Silva', '', 0, 'da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3151, 593, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
+INSERT INTO public.rainloop_ab_properties VALUES (3152, 593, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3153, 593, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3154, 593, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3155, 593, 1, 9, '', '7c6c3fc9-fa71-44ed-864e-2ac1ef7f8204', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3156, 594, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3157, 594, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3158, 594, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3159, 594, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3160, 594, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3161, 594, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3162, 594, 1, 30, 'OTHER', 'f.gehrmann@proge.de', '', 0, 'f.gehrmann@proge.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3163, 594, 1, 9, '', 'aaac55e0-1bc6-4fb3-a710-c2e7890ed000', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3164, 595, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3165, 595, 1, 16, '', 'Daun', '', 0, 'daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3166, 595, 1, 15, '', 'Ines', '', 0, 'ines');
+INSERT INTO public.rainloop_ab_properties VALUES (3167, 595, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3168, 595, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3169, 595, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3170, 595, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3171, 595, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3172, 595, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3173, 595, 1, 9, '', '7d779091-413c-46f8-9b24-16197b95a9e1', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3174, 596, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3175, 596, 1, 16, '', 'da Silva', '', 0, 'da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3176, 596, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
+INSERT INTO public.rainloop_ab_properties VALUES (3177, 596, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3178, 596, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3179, 596, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3180, 596, 1, 9, '', 'fda5d1a9-8586-40d1-a65b-59ab3e3f5f10', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3181, 597, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3182, 597, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3183, 597, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3184, 597, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3185, 597, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3186, 597, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3187, 597, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3188, 597, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3189, 597, 1, 9, '', '2d66b05d-90be-47af-8589-15a62fd3e8a0', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3190, 598, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3191, 598, 1, 16, '', 'Daun', '', 0, 'daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3192, 598, 1, 15, '', 'Ines', '', 0, 'ines');
+INSERT INTO public.rainloop_ab_properties VALUES (3193, 598, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3194, 598, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3195, 598, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3196, 598, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3197, 598, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3198, 598, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3199, 598, 1, 9, '', '1b5743f9-d911-45f0-a23f-14d2607c233a', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3200, 599, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3201, 599, 1, 16, '', 'da Silva', '', 0, 'da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3202, 599, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
+INSERT INTO public.rainloop_ab_properties VALUES (3203, 599, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3204, 599, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3205, 599, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3206, 599, 1, 9, '', '611f2bbb-92e2-479d-94b8-a97a4bcd8631', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3207, 600, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3208, 600, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3209, 600, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3210, 600, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3211, 600, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3212, 600, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3213, 600, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3214, 600, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3215, 600, 1, 9, '', '54bf619a-7bda-4293-8e7b-ed725ef073ad', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3216, 601, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3218, 601, 1, 15, '', 'Ines', '', 0, 'ines');
+INSERT INTO public.rainloop_ab_properties VALUES (3219, 601, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3220, 601, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3221, 601, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3222, 601, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3223, 601, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3224, 601, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3225, 601, 1, 9, '', '0cd421c3-f263-4d06-96d1-b05e3854286f', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3226, 602, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3227, 602, 1, 16, '', 'da Silva', '', 0, 'da silva');
+INSERT INTO public.rainloop_ab_properties VALUES (3228, 602, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
+INSERT INTO public.rainloop_ab_properties VALUES (3229, 602, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3230, 602, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3231, 602, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3232, 602, 1, 9, '', '18a82fd8-e075-4f76-a03b-63bd76befdc4', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3233, 603, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3234, 603, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3235, 603, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3236, 603, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3237, 603, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3238, 603, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3239, 603, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3240, 603, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3241, 603, 1, 9, '', 'addd7cbb-504b-4c3b-9434-2d8c4940922a', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3242, 604, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3243, 604, 1, 16, '', 'Daun', '', 0, 'daun');
+INSERT INTO public.rainloop_ab_properties VALUES (3244, 604, 1, 15, '', 'Ines', '', 0, 'ines');
+INSERT INTO public.rainloop_ab_properties VALUES (3245, 604, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3246, 604, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3247, 604, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3248, 604, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3249, 604, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3250, 604, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3251, 604, 1, 9, '', 'e33fba03-5df1-4585-aff2-331893ecb1c1', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3252, 605, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3253, 605, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3254, 605, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (3255, 605, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3256, 605, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3257, 605, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3258, 605, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3259, 605, 1, 9, '', '8c376ee1-f231-4267-83c0-388536d582b7', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3260, 606, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3261, 606, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3262, 606, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3263, 606, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3264, 606, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3265, 606, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3266, 606, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3267, 606, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3268, 606, 1, 9, '', '96e40e56-cdcf-4504-8b7b-3595feb1d077', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3269, 607, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3270, 607, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3271, 607, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3272, 607, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3273, 607, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3274, 607, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3275, 607, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3276, 607, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3277, 607, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3278, 607, 1, 9, '', '37aa60c7-b75c-47f6-ba03-9b4ab383deef', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3279, 608, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3280, 608, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3281, 608, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (3282, 608, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3283, 608, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3284, 608, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3285, 608, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3286, 608, 1, 9, '', '93d860cf-821b-43d3-a6ab-bc2fea1223c9', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3287, 609, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3288, 609, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3289, 609, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3290, 609, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3291, 609, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3292, 609, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3293, 609, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3294, 609, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3295, 609, 1, 9, '', 'e5a43ac2-7807-4fd4-8b0c-f0a5670e7a7a', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3296, 610, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3297, 610, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3298, 610, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3299, 610, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3300, 610, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3301, 610, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3302, 610, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3303, 610, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3304, 610, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3305, 610, 1, 9, '', '1d6d680f-96d3-4b3d-b499-20168ff48bfa', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3306, 611, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3307, 611, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3308, 611, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (3309, 611, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3310, 611, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3311, 611, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3312, 611, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3313, 611, 1, 9, '', '979f879c-6a13-46d3-8d4d-3ac467fc0bc8', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3314, 612, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3315, 612, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3316, 612, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3317, 612, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3318, 612, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3319, 612, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3320, 612, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3321, 612, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3322, 612, 1, 9, '', '97784153-44bf-4a2d-a23f-ea70751372fc', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3323, 613, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3324, 613, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3325, 613, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3326, 613, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3327, 613, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3328, 613, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3329, 613, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3330, 613, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3331, 613, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3332, 613, 1, 9, '', 'bd40a7bc-a629-421a-ac81-a1666fd153c6', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3333, 614, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3334, 614, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3335, 614, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (3336, 614, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3337, 614, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3338, 614, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3339, 614, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3340, 614, 1, 9, '', '6ffc569f-12e1-4116-b519-c0e5fec869c3', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3341, 615, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3342, 615, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3343, 615, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3344, 615, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3345, 615, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3346, 615, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3347, 615, 1, 9, '', '251d7441-ad83-4084-9cc7-36c57d09faee', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3348, 616, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3349, 616, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3350, 616, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3351, 616, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3352, 616, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3353, 616, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3354, 616, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3355, 616, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3356, 616, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3357, 616, 1, 9, '', 'f4bc455c-066f-406f-9b27-608a743c2f5d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3358, 617, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3359, 617, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3360, 617, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (3361, 617, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3362, 617, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3363, 617, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3364, 617, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3365, 617, 1, 9, '', '9cf24dae-1e53-4399-9443-5c7d0c0d6aa0', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3366, 618, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3367, 618, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3368, 618, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3369, 618, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3370, 618, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3371, 618, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3372, 618, 1, 9, '', 'b80d2705-bb0c-4184-a5b4-2900c6ad48a2', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3373, 619, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3374, 619, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3375, 619, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3376, 619, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3377, 619, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3378, 619, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3379, 619, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3380, 619, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3381, 619, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3382, 619, 1, 9, '', 'fa4ba2fd-99cc-43f0-9ec6-1070435e19a2', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3383, 620, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3384, 620, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3385, 620, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (3386, 620, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3387, 620, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3388, 620, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3389, 620, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3390, 620, 1, 9, '', '9c7ec803-c867-49e2-8854-65a509910a43', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3391, 621, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3392, 621, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3393, 621, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3394, 621, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3395, 621, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3396, 621, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3397, 621, 1, 9, '', '38e9d6ba-6050-4e69-86d4-22ac6eb327c2', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3398, 622, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3399, 622, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3400, 622, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3401, 622, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3402, 622, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3403, 622, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3404, 622, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3405, 622, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3406, 622, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3407, 622, 1, 9, '', '68faaa84-9a33-4571-b498-052da8ff9c89', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3408, 623, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3409, 623, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3410, 623, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (3411, 623, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3412, 623, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3413, 623, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3414, 623, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3415, 623, 1, 9, '', 'd3fe7e00-b91b-4a40-a477-d80ce3fe6e26', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3416, 624, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3417, 624, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3418, 624, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3419, 624, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3420, 624, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3421, 624, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3422, 624, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3423, 624, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3424, 624, 1, 9, '', '1a39dc66-d311-4200-bb7b-7933b065a524', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3425, 625, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3426, 625, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3427, 625, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3428, 625, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3429, 625, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3430, 625, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3431, 625, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3432, 625, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3433, 625, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3434, 625, 1, 9, '', '3c2f1f7a-beb4-4459-84dd-4e128fc37224', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3435, 626, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3436, 626, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3437, 626, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (3438, 626, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3439, 626, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3440, 626, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3441, 626, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3442, 626, 1, 9, '', '97465b64-9af4-4c0c-aea3-1174c0342a0e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3443, 627, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3444, 627, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3445, 627, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3446, 627, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3447, 627, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3448, 627, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3449, 627, 1, 30, 'OTHER', 'f.gehrmann@proge.de', '', 0, 'f.gehrmann@proge.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3450, 627, 1, 9, '', '9cb840f3-255e-4d26-887c-afb7c776e7ea', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3451, 628, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3452, 628, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3453, 628, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3454, 628, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3455, 628, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3456, 628, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3457, 628, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3458, 628, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3459, 628, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3460, 628, 1, 9, '', 'f0532d6c-bb66-4771-8ec9-0e12dfbd096c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3461, 629, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3462, 629, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3463, 629, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (3464, 629, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3465, 629, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3466, 629, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3467, 629, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3468, 629, 1, 9, '', 'cccb6ee9-0859-4474-b095-d902a4c976c1', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3469, 630, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3470, 630, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3471, 630, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3472, 630, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3473, 630, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3474, 630, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3475, 630, 1, 9, '', '11a6b6a2-e17d-4f5e-b946-58b5bd23a1d8', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3476, 631, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3477, 631, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3478, 631, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3479, 631, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3480, 631, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3481, 631, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3482, 631, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3483, 631, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3484, 631, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3485, 631, 1, 9, '', '93f18396-da54-4435-9ce2-a843df6697a3', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3486, 632, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3487, 632, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3488, 632, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (3489, 632, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3490, 632, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3491, 632, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3492, 632, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3493, 632, 1, 9, '', '389b94d1-4707-4695-bc8f-6e1e8901427a', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3494, 633, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3495, 633, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3496, 633, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3497, 633, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3498, 633, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3499, 633, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3500, 633, 1, 9, '', 'fb843566-363c-44d2-abce-1a3a1a28f92a', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3501, 634, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3502, 634, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3503, 634, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3504, 634, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3505, 634, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3506, 634, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3507, 634, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3508, 634, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3509, 634, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3510, 634, 1, 9, '', 'e7f36a0c-582c-4fb8-8f70-988610d21958', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3511, 635, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3512, 635, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
+INSERT INTO public.rainloop_ab_properties VALUES (3513, 635, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (3514, 635, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3515, 635, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3516, 635, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3517, 635, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3518, 635, 1, 9, '', '2e1cd761-0b8f-4d10-a973-606ff6bca014', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3519, 636, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3520, 636, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3521, 636, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3522, 636, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3523, 636, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3524, 636, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3525, 636, 1, 9, '', '3499ba98-e9e4-4f5b-a150-49755cf4a7b5', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3526, 637, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3527, 637, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3528, 637, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3529, 637, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3530, 637, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3531, 637, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3532, 637, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3533, 637, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3534, 637, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3535, 637, 1, 9, '', '91fb5eb6-5816-412f-ab4c-28a513d43864', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3536, 638, 1, 10, '', 'Gudrun Veitinger', '', 0, 'gudrun veitinger');
+INSERT INTO public.rainloop_ab_properties VALUES (3537, 638, 1, 16, '', 'Veitinger', '', 0, 'veitinger');
+INSERT INTO public.rainloop_ab_properties VALUES (3538, 638, 1, 15, '', 'Gudrun', '', 0, 'gudrun');
+INSERT INTO public.rainloop_ab_properties VALUES (3539, 638, 1, 31, 'x-privat', '+49 176 20046434', '4917620046434', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3540, 638, 1, 31, 'work', '+49 911 6104452', '499116104452', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3541, 638, 1, 9, '', 'b511740b-fdf0-481b-82fb-e4002a191763', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3542, 639, 1, 10, '', 'Alfred Honermann', '', 0, 'alfred honermann');
+INSERT INTO public.rainloop_ab_properties VALUES (3543, 639, 1, 16, '', 'Honermann', '', 0, 'honermann');
+INSERT INTO public.rainloop_ab_properties VALUES (3544, 639, 1, 15, '', 'Alfred', '', 0, 'alfred');
+INSERT INTO public.rainloop_ab_properties VALUES (3545, 639, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3546, 639, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3547, 639, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3548, 639, 1, 30, 'OTHER', 'ahonermann@t-online.de', '', 0, 'ahonermann@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3549, 639, 1, 9, '', '12aa7998-a598-4f55-99f8-5d77d7e94324', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3550, 640, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3551, 640, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3552, 640, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3553, 640, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3554, 640, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3555, 640, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3556, 640, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3557, 640, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3558, 640, 1, 9, '', 'ea37b388-b940-4878-bec8-1affa4a71f19', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3559, 641, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3560, 641, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3561, 641, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3562, 641, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3563, 641, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3564, 641, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3565, 641, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3566, 641, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3567, 641, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3568, 641, 1, 9, '', 'f068a680-c644-4892-b1f2-0050e009222c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3569, 642, 1, 10, '', 'Roland Steinmetz', '', 0, 'roland steinmetz');
+INSERT INTO public.rainloop_ab_properties VALUES (3570, 642, 1, 16, '', 'Steinmetz', '', 0, 'steinmetz');
+INSERT INTO public.rainloop_ab_properties VALUES (3571, 642, 1, 15, '', 'Roland', '', 0, 'roland');
+INSERT INTO public.rainloop_ab_properties VALUES (3572, 642, 1, 31, 'x-mobil', '+49 172 8139933', '491728139933', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3573, 642, 1, 9, '', 'e3529b33-c0dc-476c-8e0f-82814824929e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3574, 643, 1, 10, '', 'Alfred Honermann', '', 0, 'alfred honermann');
+INSERT INTO public.rainloop_ab_properties VALUES (3575, 643, 1, 16, '', 'Honermann', '', 0, 'honermann');
+INSERT INTO public.rainloop_ab_properties VALUES (3576, 643, 1, 15, '', 'Alfred', '', 0, 'alfred');
+INSERT INTO public.rainloop_ab_properties VALUES (3577, 643, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3578, 643, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3579, 643, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3580, 643, 1, 30, 'OTHER', 'ahonermann@t-online.de', '', 0, 'ahonermann@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3581, 643, 1, 9, '', 'a1191390-cc1b-40fd-8d0d-58d11bdae66e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3582, 644, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3583, 644, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3584, 644, 1, 15, '', 'Frauke', '', 0, 'frauke');
+INSERT INTO public.rainloop_ab_properties VALUES (3585, 644, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3586, 644, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3587, 644, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3588, 644, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3589, 644, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3590, 644, 1, 9, '', '2d37bcc7-00aa-44e1-8c24-cf1709d63fa7', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3591, 645, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3592, 645, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3593, 645, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3594, 645, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3595, 645, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3596, 645, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3597, 645, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3598, 645, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3599, 645, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3600, 645, 1, 9, '', '41e033cb-f026-4a55-94d1-9c8ac0e34538', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3601, 646, 1, 10, '', 'Alica Jacobi', '', 0, 'alica jacobi');
+INSERT INTO public.rainloop_ab_properties VALUES (3602, 646, 1, 16, '', 'Jacobi', '', 0, 'jacobi');
+INSERT INTO public.rainloop_ab_properties VALUES (3603, 646, 1, 15, '', 'Alica', '', 0, 'alica');
+INSERT INTO public.rainloop_ab_properties VALUES (3604, 646, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3605, 646, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3606, 646, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3607, 646, 1, 31, 'CELL', '+49 160 1233708', '491601233708', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3608, 646, 1, 9, '', '08aeec18-2e1a-4c6e-b7f5-e7fe46e7ef10', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3609, 647, 1, 16, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3610, 647, 1, 15, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3611, 647, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3612, 647, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3613, 647, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3614, 647, 1, 30, 'OTHER', 'frauke.gehrmann@proge.de', '', 0, 'frauke.gehrmann@proge.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3615, 647, 1, 9, '', 'c4de0720-97dd-4ba2-b30b-9b8d186471b4', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3616, 647, 1, 10, '', 'frauke.gehrmann@proge.de', '', 0, 'frauke.gehrmann@proge.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3617, 648, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3618, 648, 1, 16, '', 'Samoray', '', 0, 'samoray');
+INSERT INTO public.rainloop_ab_properties VALUES (3619, 648, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
+INSERT INTO public.rainloop_ab_properties VALUES (3620, 648, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3621, 648, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3622, 648, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3623, 648, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3624, 648, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3625, 648, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3626, 648, 1, 9, '', '2845d1c4-a615-4214-9320-1fe482d78ae4', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3627, 649, 1, 10, '', 'Alica Jacobi', '', 0, 'alica jacobi');
+INSERT INTO public.rainloop_ab_properties VALUES (3628, 649, 1, 16, '', 'Jacobi', '', 0, 'jacobi');
+INSERT INTO public.rainloop_ab_properties VALUES (3629, 649, 1, 15, '', 'Alica', '', 0, 'alica');
+INSERT INTO public.rainloop_ab_properties VALUES (3630, 649, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3631, 649, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3632, 649, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3633, 649, 1, 31, 'CELL', '+491601233708', '491601233708', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3634, 649, 1, 9, '', '60177934-6ffe-43eb-bbe5-7394b53c36ae', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3635, 650, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3636, 650, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3637, 650, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (3638, 650, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3639, 650, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3640, 650, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3641, 650, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3642, 650, 1, 9, '', '72456c82-f058-4c7a-934a-e11dd57777c1', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3643, 651, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (3644, 651, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (3645, 651, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (3646, 651, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3647, 651, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3648, 651, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3649, 651, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3650, 651, 1, 31, 'CELL', '+49 162 7184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3651, 651, 1, 31, 'HOME', '+49 2104 40954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3652, 651, 1, 9, '', '0044422f-f891-4e70-9055-f2409d9fa6c8', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3653, 652, 1, 10, '', 'Alica Jacobi', '', 0, 'alica jacobi');
+INSERT INTO public.rainloop_ab_properties VALUES (3654, 652, 1, 16, '', 'Jacobi', '', 0, 'jacobi');
+INSERT INTO public.rainloop_ab_properties VALUES (3655, 652, 1, 15, '', 'Alica', '', 0, 'alica');
+INSERT INTO public.rainloop_ab_properties VALUES (3656, 652, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3657, 652, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3658, 652, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3659, 652, 1, 31, 'CELL', '+491601233708', '491601233708', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3660, 652, 1, 9, '', '76be16e7-7cc0-465d-93fb-8763f0ad6e8b', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3661, 653, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3662, 653, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3663, 653, 1, 15, '', 'Heike', '', 0, 'heike');
+INSERT INTO public.rainloop_ab_properties VALUES (3664, 653, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3665, 653, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3666, 653, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3667, 653, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3668, 653, 1, 32, 'HOME', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
+INSERT INTO public.rainloop_ab_properties VALUES (3669, 653, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3670, 653, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3671, 653, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3672, 653, 1, 9, '', 'f2426073-2de2-496a-b6c5-a1aa8883a1d1', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3673, 654, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (3674, 654, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (3675, 654, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (3676, 654, 1, 17, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3677, 654, 1, 20, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3678, 654, 1, 21, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3679, 654, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3680, 654, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3681, 654, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3682, 654, 1, 9, '', 'b05aab9e-6282-47d0-a209-bc893f4d01f1', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3684, 655, 2, 10, '', 'support@zentempel.zendesk.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3683, 655, 2, 30, '', 'support@zentempel.zendesk.com', '', 1, 'support@zentempel.zendesk.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3686, 656, 2, 10, '', 'retoure@ladybikewear.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3685, 656, 2, 30, '', 'retoure@ladybikewear.de', '', 1, 'retoure@ladybikewear.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3688, 657, 2, 15, '', 'Zen', '', 0, 'zen');
+INSERT INTO public.rainloop_ab_properties VALUES (3689, 657, 2, 16, '', 'Tempel', '', 0, 'tempel');
+INSERT INTO public.rainloop_ab_properties VALUES (3690, 657, 2, 10, '', 'Zen Tempel', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3687, 657, 2, 30, '', 'support+id36185@zentempel.zendesk.com', '', 1, 'support+id36185@zentempel.zendesk.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3692, 658, 2, 10, '', 'info@platinumeurope.biz', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3697, 661, 2, 30, '', 'alma-jaiser@t-online.de', '', 7, 'alma-jaiser@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3694, 659, 2, 10, '', 'bimsertec@gmail.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3700, 662, 2, 10, '', 'praxis.dr.wernicke@gmail.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3696, 660, 2, 10, '', 'freicha@web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3695, 660, 2, 30, '', 'freicha@web.de', '', 16, 'freicha@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3693, 659, 2, 30, '', 'bimsertec@gmail.com', '', 4, 'bimsertec@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3699, 662, 2, 30, '', 'praxis.dr.wernicke@gmail.com', '', 4, 'praxis.dr.wernicke@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3705, 664, 2, 30, '', 'Leonie.gueldenpfennig@gmx.de', '', 3, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3698, 661, 2, 10, '', 'alma-jaiser@t-online.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3959, 732, 1, 15, '', 'Ely', '', 0, 'ely');
+INSERT INTO public.rainloop_ab_properties VALUES (3702, 663, 2, 15, '', 'Judith', '', 0, 'judith');
+INSERT INTO public.rainloop_ab_properties VALUES (3703, 663, 2, 16, '', 'Rauxloh', '', 0, 'rauxloh');
+INSERT INTO public.rainloop_ab_properties VALUES (3704, 663, 2, 10, '', 'Judith Rauxloh', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3701, 663, 2, 30, '', 'Judith.Rauxloh@gmx.de', '', 1, 'judith.rauxloh@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3706, 664, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (3707, 664, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (3708, 664, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3710, 665, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (3711, 665, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (3712, 665, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3691, 658, 2, 30, '', 'info@platinumeurope.biz', '', 7, 'info@platinumeurope.biz');
+INSERT INTO public.rainloop_ab_properties VALUES (301, 89, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 23, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3960, 732, 1, 31, 'cell', '+34 607 77 42 31', '34607774231', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3961, 732, 1, 9, '', 'd9782c63-d171-4dd0-bfbc-3b63762d2ed3', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3962, 733, 1, 10, '', 'Flo Gilly', '', 0, 'flo gilly');
+INSERT INTO public.rainloop_ab_properties VALUES (3963, 733, 1, 16, '', 'Gilly', '', 0, 'gilly');
+INSERT INTO public.rainloop_ab_properties VALUES (3964, 733, 1, 15, '', 'Flo', '', 0, 'flo');
+INSERT INTO public.rainloop_ab_properties VALUES (3714, 666, 2, 15, '', 'Beatsox', '', 0, 'beatsox');
+INSERT INTO public.rainloop_ab_properties VALUES (3715, 666, 2, 10, '', 'Beatsox', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3750, 677, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (3717, 667, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (3718, 667, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (3719, 667, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3751, 677, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (3752, 677, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4052, 761, 2, 30, '', 'uwe.czesnat@zeppelin-team.de', '', 1, 'uwe.czesnat@zeppelin-team.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3754, 678, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (3755, 678, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (3756, 678, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3753, 678, 2, 30, '', 'yvonne_Ewen@gmx.net', '', 1, 'yvonne_ewen@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (3713, 666, 2, 30, '', 'info@beatsox.de', '', 4, 'info@beatsox.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3721, 668, 2, 15, '', 'Triabolos', '', 0, 'triabolos');
+INSERT INTO public.rainloop_ab_properties VALUES (3722, 668, 2, 16, '', 'Hamburg e.V.', '', 0, 'hamburg e.v.');
+INSERT INTO public.rainloop_ab_properties VALUES (3723, 668, 2, 10, '', 'Triabolos Hamburg e.V.', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3720, 668, 2, 30, '', 'newsletter@triabolos.de', '', 1, 'newsletter@triabolos.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3728, 670, 2, 30, '', 'digitalabo@zeit.de', '', 2, 'digitalabo@zeit.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3729, 670, 2, 10, '', 'digitalabo@zeit.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3731, 671, 2, 10, '', 'stephan.schepe@triathlon.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3733, 672, 2, 15, '', 'fahrrad.de', '', 0, 'fahrrad.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3734, 672, 2, 16, '', '| Service', '', 0, '| service');
+INSERT INTO public.rainloop_ab_properties VALUES (3735, 672, 2, 10, '', 'fahrrad.de | Service', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3732, 672, 2, 30, '', 'service@fahrrad.de', '', 1, 'service@fahrrad.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3758, 679, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (3737, 673, 2, 15, '', 'Mika', '', 0, 'mika');
+INSERT INTO public.rainloop_ab_properties VALUES (3738, 673, 2, 16, '', 'Keiling', '', 0, 'keiling');
+INSERT INTO public.rainloop_ab_properties VALUES (3739, 673, 2, 10, '', 'Mika Keiling', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3736, 673, 2, 30, '', 'mika.keiling@triathlon.de', '', 1, 'mika.keiling@triathlon.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3741, 674, 2, 15, '', 'help@photobox', '', 0, 'help@photobox');
+INSERT INTO public.rainloop_ab_properties VALUES (3742, 674, 2, 10, '', 'help@photobox', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3759, 679, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (3760, 679, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3740, 674, 2, 30, '', 'help@photobox.co.uk', '', 3, 'help@photobox.co.uk');
+INSERT INTO public.rainloop_ab_properties VALUES (3744, 675, 2, 15, '', 'INCYLENCE', '', 0, 'incylence');
+INSERT INTO public.rainloop_ab_properties VALUES (3745, 675, 2, 10, '', 'INCYLENCE', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3743, 675, 2, 30, '', 'hello@incylence.com', '', 1, 'hello@incylence.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3747, 676, 2, 15, '', 'Leo', '', 0, 'leo');
+INSERT INTO public.rainloop_ab_properties VALUES (3748, 676, 2, 10, '', 'Leo', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3730, 671, 2, 30, '', 'stephan.schepe@triathlon.de', '', 5, 'stephan.schepe@triathlon.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3749, 677, 2, 30, '', 'Yvonne_Ewen@gmx.net', '', 5, 'yvonne_ewen@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (3757, 679, 2, 30, '', 'Yvonne_Ewen@gmx.net', '', 4, 'yvonne_ewen@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (4053, 761, 2, 15, '', 'Uwe', '', 0, 'uwe');
+INSERT INTO public.rainloop_ab_properties VALUES (4054, 761, 2, 16, '', 'Czesnat - Zeppelin Team', '', 0, 'czesnat - zeppelin team');
+INSERT INTO public.rainloop_ab_properties VALUES (4055, 761, 2, 10, '', 'Uwe Czesnat - Zeppelin Team', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (1119, 355, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 10, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3762, 680, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (3763, 680, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (3764, 680, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3769, 682, 2, 30, '', 'zeit@dpv.de', '', 2, 'zeit@dpv.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3772, 683, 2, 15, '', 'pinkmilk', '', 0, 'pinkmilk');
+INSERT INTO public.rainloop_ab_properties VALUES (3773, 683, 2, 10, '', 'pinkmilk', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3776, 685, 2, 30, '', 'info@wilkens-wohnstudio.de', '', 2, 'info@wilkens-wohnstudio.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3775, 684, 2, 10, '', 'service@pinkmilk.d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3774, 684, 2, 30, '', 'service@pinkmilk.d', '', 1, 'service@pinkmilk.d');
+INSERT INTO public.rainloop_ab_properties VALUES (3771, 683, 2, 30, '', 'service@pinkmilk.de', '', 2, 'service@pinkmilk.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3777, 685, 2, 10, '', 'info@wilkens-wohnstudio.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3784, 688, 2, 30, '', 'monika.letzel@vlh.de', '', 1, 'monika.letzel@vlh.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3766, 681, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (3767, 681, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (3768, 681, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3770, 682, 2, 10, '', 'zeit@dpv.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3779, 686, 2, 15, '', 'car-Möbel', '', 0, 'car-möbel');
+INSERT INTO public.rainloop_ab_properties VALUES (3780, 686, 2, 16, '', '* Torben Stolten', '', 0, '* torben stolten');
+INSERT INTO public.rainloop_ab_properties VALUES (3781, 686, 2, 10, '', 'car-Möbel * Torben Stolten', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3778, 686, 2, 30, '', 'torben.stolten@car-moebel.de', '', 1, 'torben.stolten@car-moebel.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3783, 687, 2, 10, '', 'support@bodyfx.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3785, 688, 2, 10, '', 'monika.letzel@vlh.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3787, 689, 2, 10, '', 'kuendigung@1und1.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3782, 687, 2, 30, '', 'support@bodyfx.com', '', 5, 'support@bodyfx.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3789, 690, 2, 10, '', 'kundenservice@peterhahn.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3788, 690, 2, 30, '', 'kundenservice@peterhahn.de', '', 3, 'kundenservice@peterhahn.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3791, 691, 2, 10, '', 'stechling@on-potsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3790, 691, 2, 30, '', 'stechling@on-potsdam.de', '', 2, 'stechling@on-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3793, 692, 2, 15, '', 'Volkan', '', 0, 'volkan');
+INSERT INTO public.rainloop_ab_properties VALUES (3794, 692, 2, 16, '', 'Sabaz CHECK24', '', 0, 'sabaz check24');
+INSERT INTO public.rainloop_ab_properties VALUES (3786, 689, 2, 30, '', 'kuendigung@1und1.de', '', 3, 'kuendigung@1und1.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3795, 692, 2, 10, '', 'Volkan Sabaz CHECK24', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3792, 692, 2, 30, '', 'kredit-158192030@kredit.check24.de', '', 1, 'kredit-158192030@kredit.check24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3797, 693, 2, 10, '', 'zentraleauszahlung@creditplus.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3796, 693, 2, 30, '', 'zentraleauszahlung@creditplus.de', '', 1, 'zentraleauszahlung@creditplus.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3799, 694, 2, 15, '', 'Volkan', '', 0, 'volkan');
+INSERT INTO public.rainloop_ab_properties VALUES (3800, 694, 2, 16, '', 'Sabaz CHECK24', '', 0, 'sabaz check24');
+INSERT INTO public.rainloop_ab_properties VALUES (3801, 694, 2, 10, '', 'Volkan Sabaz CHECK24', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3798, 694, 2, 30, '', 'kredit-158192345@kredit.check24.de', '', 1, 'kredit-158192345@kredit.check24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3803, 695, 2, 10, '', 'martin.bergmann@smava.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3832, 705, 2, 30, '', 'info@ravensberger-hof.com', '', 4, 'info@ravensberger-hof.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3805, 696, 2, 15, '', 'HANNUN', '', 0, 'hannun');
+INSERT INTO public.rainloop_ab_properties VALUES (3806, 696, 2, 10, '', 'HANNUN', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3804, 696, 2, 30, '', 'tienda@hannun.com', '', 1, 'tienda@hannun.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3868, 715, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (3808, 697, 2, 15, '', 'HANNUN', '', 0, 'hannun');
+INSERT INTO public.rainloop_ab_properties VALUES (3809, 697, 2, 10, '', 'HANNUN', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3869, 715, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (3870, 715, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3851, 711, 2, 30, '', 'c_be@gmx.de', '', 3, 'c_be@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3807, 697, 2, 30, '', 'support+id89047@hannun.zendesk.com', '', 4, 'support+id89047@hannun.zendesk.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3828, 704, 2, 30, '', 'info@osteopathie-praxis-potsdam.de', '', 3, 'info@osteopathie-praxis-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3802, 695, 2, 30, '', 'martin.bergmann@smava.de', '', 5, 'martin.bergmann@smava.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3811, 698, 2, 10, '', 'servicecenter@hamburgwasser.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3810, 698, 2, 30, '', 'servicecenter@hamburgwasser.de', '', 1, 'servicecenter@hamburgwasser.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3813, 699, 2, 15, '', 'Julia', '', 0, 'julia');
+INSERT INTO public.rainloop_ab_properties VALUES (3814, 699, 2, 16, '', 'Müller', '', 0, 'müller');
+INSERT INTO public.rainloop_ab_properties VALUES (3815, 699, 2, 10, '', 'Julia Müller', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3812, 699, 2, 30, '', 'julia.mueller@ratenkredit.verivox.com', '', 1, 'julia.mueller@ratenkredit.verivox.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3817, 700, 2, 15, '', 'Justin', '', 0, 'justin');
+INSERT INTO public.rainloop_ab_properties VALUES (3818, 700, 2, 16, '', 'Rose', '', 0, 'rose');
+INSERT INTO public.rainloop_ab_properties VALUES (3819, 700, 2, 10, '', 'Justin Rose', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3816, 700, 2, 30, '', 'justin.rose@ratenkredit.verivox.com', '', 1, 'justin.rose@ratenkredit.verivox.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3821, 701, 2, 15, '', 'Erik', '', 0, 'erik');
+INSERT INTO public.rainloop_ab_properties VALUES (3822, 701, 2, 16, '', 'Bittmann', '', 0, 'bittmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3823, 701, 2, 10, '', 'Erik Bittmann', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3820, 701, 2, 30, '', 'info@erikbittmann.de', '', 2, 'info@erikbittmann.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3825, 702, 2, 10, '', 'a.halloch@knappworst.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3824, 702, 2, 30, '', 'a.halloch@knappworst.de', '', 1, 'a.halloch@knappworst.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3827, 703, 2, 10, '', 'volkspark@osteopathie-praxis-potsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3826, 703, 2, 30, '', 'volkspark@osteopathie-praxis-potsdam.de', '', 1, 'volkspark@osteopathie-praxis-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3829, 704, 2, 15, '', 'Osteopathie', '', 0, 'osteopathie');
+INSERT INTO public.rainloop_ab_properties VALUES (3830, 704, 2, 16, '', 'Zentrum Potsdam', '', 0, 'zentrum potsdam');
+INSERT INTO public.rainloop_ab_properties VALUES (3831, 704, 2, 10, '', 'Osteopathie Zentrum Potsdam', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3843, 708, 2, 15, '', 'DERTOUR', '', 0, 'dertour');
+INSERT INTO public.rainloop_ab_properties VALUES (3852, 712, 2, 30, '', 'c_be@gmx.de', '', 3, 'c_be@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3833, 705, 2, 10, '', 'info@ravensberger-hof.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3844, 708, 2, 10, '', 'DERTOUR', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3835, 706, 2, 15, '', 'Jörg', '', 0, 'jörg');
+INSERT INTO public.rainloop_ab_properties VALUES (3836, 706, 2, 16, '', 'Birkel', '', 0, 'birkel');
+INSERT INTO public.rainloop_ab_properties VALUES (3837, 706, 2, 10, '', 'Jörg Birkel', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3838, 707, 2, 30, '', 'info@holidayhotline.de', '', 22, 'info@holidayhotline.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3839, 707, 2, 15, '', 'Holiday', '', 0, 'holiday');
+INSERT INTO public.rainloop_ab_properties VALUES (3840, 707, 2, 16, '', 'Hotline', '', 0, 'hotline');
+INSERT INTO public.rainloop_ab_properties VALUES (3841, 707, 2, 10, '', 'Holiday Hotline', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3860, 713, 2, 15, '', 'Manja', '', 0, 'manja');
+INSERT INTO public.rainloop_ab_properties VALUES (3842, 708, 2, 30, '', 'no-reply@dertouristik.com', '', 1, 'no-reply@dertouristik.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3861, 713, 2, 16, '', 'Seemann', '', 0, 'seemann');
+INSERT INTO public.rainloop_ab_properties VALUES (3862, 713, 2, 10, '', 'Manja Seemann', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3846, 709, 2, 10, '', 'kontakt@gesundheitspraxen-osteopathie.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3845, 709, 2, 30, '', 'kontakt@gesundheitspraxen-osteopathie.de', '', 5, 'kontakt@gesundheitspraxen-osteopathie.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3848, 710, 2, 15, '', 'Andreas', '', 0, 'andreas');
+INSERT INTO public.rainloop_ab_properties VALUES (3849, 710, 2, 16, '', 'Husmann', '', 0, 'husmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3850, 710, 2, 10, '', 'Andreas Husmann', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3847, 710, 2, 30, '', 'post@die-hauselben.de', '', 37, 'post@die-hauselben.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3834, 706, 2, 30, '', 'jorge@jorge-sports.com', '', 2, 'jorge@jorge-sports.com');
+INSERT INTO public.rainloop_ab_properties VALUES (3853, 711, 2, 15, '', 'Christoph', '', 0, 'christoph');
+INSERT INTO public.rainloop_ab_properties VALUES (3854, 712, 2, 15, '', 'Christoph', '', 0, 'christoph');
+INSERT INTO public.rainloop_ab_properties VALUES (3855, 711, 2, 16, '', 'Becker', '', 0, 'becker');
+INSERT INTO public.rainloop_ab_properties VALUES (3856, 712, 2, 16, '', 'Becker', '', 0, 'becker');
+INSERT INTO public.rainloop_ab_properties VALUES (3857, 711, 2, 10, '', 'Christoph Becker', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3858, 712, 2, 10, '', 'Christoph Becker', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3864, 714, 2, 15, '', 'Grit', '', 0, 'grit');
+INSERT INTO public.rainloop_ab_properties VALUES (3865, 714, 2, 16, '', 'Kowsky', '', 0, 'kowsky');
+INSERT INTO public.rainloop_ab_properties VALUES (3866, 714, 2, 10, '', 'Grit Kowsky', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3859, 713, 2, 30, '', 'manja@fit4bike.de', '', 22, 'manja@fit4bike.de');
+INSERT INTO public.rainloop_ab_properties VALUES (437, 127, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 15, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3863, 714, 2, 30, '', 'grit.kowsky@gmx.de', '', 6, 'grit.kowsky@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3872, 716, 2, 15, '', 'Petra', '', 0, 'petra');
+INSERT INTO public.rainloop_ab_properties VALUES (3873, 716, 2, 16, '', 'Blossey', '', 0, 'blossey');
+INSERT INTO public.rainloop_ab_properties VALUES (3874, 716, 2, 10, '', 'Petra Blossey', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3871, 716, 2, 30, '', 'sanssouci-privat@gmx.de', '', 5, 'sanssouci-privat@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3877, 290, 2, 15, '', 'Silke', '', 0, 'silke');
+INSERT INTO public.rainloop_ab_properties VALUES (3878, 290, 2, 16, '', 'Grundmann', '', 0, 'grundmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3880, 290, 2, 10, '', 'Silke Grundmann', '', 0, 'silke grundmann');
+INSERT INTO public.rainloop_ab_properties VALUES (3879, 290, 2, 30, '', 'blossy84@t-online.de', '', 13, 'blossy84@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3881, 717, 1, 10, '', 'Tobias Barzen', '', 0, 'tobias barzen');
+INSERT INTO public.rainloop_ab_properties VALUES (3882, 717, 1, 16, '', 'Barzen', '', 0, 'barzen');
+INSERT INTO public.rainloop_ab_properties VALUES (3883, 717, 1, 15, '', 'Tobias', '', 0, 'tobias');
+INSERT INTO public.rainloop_ab_properties VALUES (3884, 717, 1, 31, 'cell', '+49 1514 3888930', '4915143888930', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3885, 717, 1, 9, '', 'af1eb2c4-6b8f-4dbc-9a84-784f8a614c3d', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3886, 718, 1, 10, '', 'HHT', '', 0, 'hht');
+INSERT INTO public.rainloop_ab_properties VALUES (3887, 718, 1, 16, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3888, 718, 1, 15, '', 'HHT', '', 0, 'hht');
+INSERT INTO public.rainloop_ab_properties VALUES (3889, 718, 1, 31, 'cell', '+49 8323 9589155', '4983239589155', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3890, 718, 1, 9, '', '8a758cfd-63f5-4244-8ba1-97c4312a9ad1', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3891, 719, 1, 10, '', 'Super SoSoX', '', 0, 'super sosox');
+INSERT INTO public.rainloop_ab_properties VALUES (3892, 719, 1, 16, '', 'SoSoX', '', 0, 'sosox');
+INSERT INTO public.rainloop_ab_properties VALUES (3893, 719, 1, 15, '', 'Super', '', 0, 'super');
+INSERT INTO public.rainloop_ab_properties VALUES (3894, 719, 1, 31, 'cell', '+49 1525 2628642', '4915252628642', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3895, 719, 1, 9, '', 'd4b48da0-58d5-423c-bc1a-1fb38e332521', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3896, 720, 1, 10, '', 'kerstin storch', '', 0, 'kerstin storch');
+INSERT INTO public.rainloop_ab_properties VALUES (3897, 720, 1, 16, '', 'storch', '', 0, 'storch');
+INSERT INTO public.rainloop_ab_properties VALUES (3898, 720, 1, 15, '', 'kerstin', '', 0, 'kerstin');
+INSERT INTO public.rainloop_ab_properties VALUES (3899, 720, 1, 30, 'x-internet', 'kerstin.storch@erdbeer-deluxe.de', '', 0, 'kerstin.storch@erdbeer-deluxe.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3900, 720, 1, 31, 'x-mobil', '+49 160 7236182', '491607236182', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3901, 720, 1, 9, '', 'ab98dd57-13de-4989-80b0-2f988981c301', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3902, 721, 1, 10, '', 'Jan Eggert', '', 0, 'jan eggert');
+INSERT INTO public.rainloop_ab_properties VALUES (3903, 721, 1, 16, '', 'Eggert', '', 0, 'eggert');
+INSERT INTO public.rainloop_ab_properties VALUES (3904, 721, 1, 15, '', 'Jan', '', 0, 'jan');
+INSERT INTO public.rainloop_ab_properties VALUES (3905, 721, 1, 31, 'cell', '+49 163 4051068', '491634051068', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3906, 721, 1, 9, '', 'f5e72ab4-c469-4c38-85a4-2d2c97bc83e8', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3907, 722, 1, 10, '', 'Sfizianmi', '', 0, 'sfizianmi');
+INSERT INTO public.rainloop_ab_properties VALUES (3908, 722, 1, 16, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3909, 722, 1, 15, '', 'Sfizianmi', '', 0, 'sfizianmi');
+INSERT INTO public.rainloop_ab_properties VALUES (3910, 722, 1, 31, 'cell', '+39 334 944 9054', '393349449054', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3911, 722, 1, 9, '', 'f1561e3a-c55b-4252-a389-4acb54a67ede', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3912, 723, 1, 10, '', 'Peter Meyerhofer', '', 0, 'peter meyerhofer');
+INSERT INTO public.rainloop_ab_properties VALUES (3913, 723, 1, 16, '', 'Meyerhofer', '', 0, 'meyerhofer');
+INSERT INTO public.rainloop_ab_properties VALUES (3914, 723, 1, 15, '', 'Peter', '', 0, 'peter');
+INSERT INTO public.rainloop_ab_properties VALUES (3915, 723, 1, 31, 'cell', '+49 1511 9442886', '4915119442886', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3916, 723, 1, 9, '', '78b16d49-38cf-4161-a305-c3cf8312c658', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3917, 724, 1, 10, '', 'Andreas Kimmerle', '', 0, 'andreas kimmerle');
+INSERT INTO public.rainloop_ab_properties VALUES (3918, 724, 1, 16, '', 'Kimmerle', '', 0, 'kimmerle');
+INSERT INTO public.rainloop_ab_properties VALUES (3919, 724, 1, 15, '', 'Andreas', '', 0, 'andreas');
+INSERT INTO public.rainloop_ab_properties VALUES (3920, 724, 1, 31, 'cell', '+49 1512 3073502', '4915123073502', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3921, 724, 1, 9, '', 'c60ab457-dfac-473c-9021-3ed5ada1bdf4', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3922, 725, 1, 10, '', 'Daniel', '', 0, 'daniel');
+INSERT INTO public.rainloop_ab_properties VALUES (3923, 725, 1, 16, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3924, 725, 1, 15, '', 'Daniel', '', 0, 'daniel');
+INSERT INTO public.rainloop_ab_properties VALUES (3925, 725, 1, 31, 'cell', '+49 1523 1038765', '4915231038765', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3926, 725, 1, 9, '', '2bf79fe6-cfdf-4741-b8c5-26a1d4345c38', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3927, 726, 1, 10, '', 'Dustin', '', 0, 'dustin');
+INSERT INTO public.rainloop_ab_properties VALUES (3928, 726, 1, 16, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3929, 726, 1, 15, '', 'Dustin', '', 0, 'dustin');
+INSERT INTO public.rainloop_ab_properties VALUES (3930, 726, 1, 31, 'cell', '+49 172 8742600', '491728742600', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3931, 726, 1, 9, '', '02169e89-ea18-45a0-ac3e-ea85505b009e', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3932, 727, 1, 10, '', 'Lucas Jacobi', '', 0, 'lucas jacobi');
+INSERT INTO public.rainloop_ab_properties VALUES (3933, 727, 1, 16, '', 'Jacobi', '', 0, 'jacobi');
+INSERT INTO public.rainloop_ab_properties VALUES (3934, 727, 1, 15, '', 'Lucas', '', 0, 'lucas');
+INSERT INTO public.rainloop_ab_properties VALUES (3935, 727, 1, 31, 'x-mobil', '+49 174 9279392', '491749279392', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3936, 727, 1, 9, '', '3d041060-f935-4fc7-8a52-4b62953c137a', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3937, 728, 1, 10, '', 'Christoph Schwerdt', '', 0, 'christoph schwerdt');
+INSERT INTO public.rainloop_ab_properties VALUES (3938, 728, 1, 16, '', 'Schwerdt', '', 0, 'schwerdt');
+INSERT INTO public.rainloop_ab_properties VALUES (3939, 728, 1, 15, '', 'Christoph', '', 0, 'christoph');
+INSERT INTO public.rainloop_ab_properties VALUES (3940, 728, 1, 31, 'cell', '01514 2600744', '015142600744', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3941, 728, 1, 9, '', 'e15335e9-42dc-4a41-a5c8-7223fb07340c', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3942, 729, 1, 10, '', 'David Fuchs', '', 0, 'david fuchs');
+INSERT INTO public.rainloop_ab_properties VALUES (3943, 729, 1, 16, '', 'Fuchs', '', 0, 'fuchs');
+INSERT INTO public.rainloop_ab_properties VALUES (3944, 729, 1, 15, '', 'David', '', 0, 'david');
+INSERT INTO public.rainloop_ab_properties VALUES (3945, 729, 1, 31, 'cell', '+49 160 5336217', '491605336217', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3946, 729, 1, 9, '', '1150f261-44a5-4172-a483-19d2d0aaebeb', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3947, 730, 1, 10, '', 'Jörg Müller-Ali', '', 0, 'jörg müller-ali');
+INSERT INTO public.rainloop_ab_properties VALUES (3948, 730, 1, 16, '', 'Müller-Ali', '', 0, 'müller-ali');
+INSERT INTO public.rainloop_ab_properties VALUES (3949, 730, 1, 15, '', 'Jörg', '', 0, 'jörg');
+INSERT INTO public.rainloop_ab_properties VALUES (3950, 730, 1, 31, 'x-mobil', '+49 173 3856263', '491733856263', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3951, 730, 1, 9, '', 'cf07d6ce-963a-42f6-a409-6d1ece6cf5b3', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3952, 731, 1, 10, '', 'Bernd Burkhardt', '', 0, 'bernd burkhardt');
+INSERT INTO public.rainloop_ab_properties VALUES (3953, 731, 1, 16, '', 'Burkhardt', '', 0, 'burkhardt');
+INSERT INTO public.rainloop_ab_properties VALUES (3954, 731, 1, 15, '', 'Bernd', '', 0, 'bernd');
+INSERT INTO public.rainloop_ab_properties VALUES (3955, 731, 1, 31, 'cell', '+49 170 1897930', '491701897930', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3956, 731, 1, 9, '', '2c872bc3-ab57-452f-8787-2c04884d9244', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3957, 732, 1, 10, '', 'Ely', '', 0, 'ely');
+INSERT INTO public.rainloop_ab_properties VALUES (3958, 732, 1, 16, '', '', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3761, 680, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 5, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3765, 681, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 4, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3867, 715, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 3, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3965, 733, 1, 31, 'cell', '+43 660 5013341', '436605013341', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3966, 733, 1, 9, '', '9a3130ae-64c9-4420-8a5b-59c96f9ddd64', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3967, 734, 1, 10, '', 'Alexandra Haderlein', '', 0, 'alexandra haderlein');
+INSERT INTO public.rainloop_ab_properties VALUES (3968, 734, 1, 16, '', 'Haderlein', '', 0, 'haderlein');
+INSERT INTO public.rainloop_ab_properties VALUES (3969, 734, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
+INSERT INTO public.rainloop_ab_properties VALUES (3970, 734, 1, 31, 'cell', '+49 176 82094079', '4917682094079', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3971, 734, 1, 9, '', 'da022dae-b457-4357-a2b2-c96f971f1e3b', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3972, 735, 1, 10, '', 'Katja Neousypin', '', 0, 'katja neousypin');
+INSERT INTO public.rainloop_ab_properties VALUES (3973, 735, 1, 16, '', 'Neousypin', '', 0, 'neousypin');
+INSERT INTO public.rainloop_ab_properties VALUES (3974, 735, 1, 15, '', 'Katja', '', 0, 'katja');
+INSERT INTO public.rainloop_ab_properties VALUES (3975, 735, 1, 31, 'x-mobil', '+49 1590 5816098', '4915905816098', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3976, 735, 1, 9, '', 'e78c6c86-eaf9-4733-bc51-31ad12d537dc', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3978, 736, 2, 15, '', 'LOBERON', '', 0, 'loberon');
+INSERT INTO public.rainloop_ab_properties VALUES (3979, 736, 2, 16, '', 'Kundenservice', '', 0, 'kundenservice');
+INSERT INTO public.rainloop_ab_properties VALUES (3980, 736, 2, 10, '', 'LOBERON Kundenservice', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3993, 742, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 2, 'jams_o_donnell@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (3982, 737, 2, 10, '', 'verein@urania-potsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4015, 748, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 1, 'jams_o_donnell@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (3981, 737, 2, 30, '', 'verein@urania-potsdam.de', '', 2, 'verein@urania-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3984, 738, 2, 15, '', 'Märkische', '', 0, 'märkische');
+INSERT INTO public.rainloop_ab_properties VALUES (3985, 738, 2, 16, '', 'Kiste', '', 0, 'kiste');
+INSERT INTO public.rainloop_ab_properties VALUES (3986, 738, 2, 10, '', 'Märkische Kiste', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4020, 749, 2, 10, '', 'anja@jcs-home.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3988, 739, 2, 10, '', 'abo@zeitakademie.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3987, 739, 2, 30, '', 'abo@zeitakademie.de', '', 1, 'abo@zeitakademie.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3990, 740, 2, 10, '', 'praxis-petersen@gmx.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3983, 738, 2, 30, '', 'bestellung@maerkischekiste.de', '', 7, 'bestellung@maerkischekiste.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4019, 749, 2, 30, '', 'anja@jcs-home.de', '', 1, 'anja@jcs-home.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4029, 753, 2, 30, '', 'm.lukoschewski@web.de', '', 1, 'm.lukoschewski@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3992, 741, 2, 10, '', 'info@antik-living.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3994, 742, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (3995, 742, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (3996, 742, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3998, 743, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (3999, 743, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (4000, 743, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4022, 750, 2, 10, '', 'hejahagen@t-online.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4043, 758, 2, 30, '', 'info@fit4bike.de', '', 5, 'info@fit4bike.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4002, 744, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (4003, 744, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (4004, 744, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4024, 751, 2, 10, '', 'ju_schulze@t-online.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4006, 745, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (4007, 745, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (4008, 745, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3997, 743, 2, 30, '', 'Yvonne_Ewen@gmx.net', '', 3, 'yvonne_ewen@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (4001, 744, 2, 30, '', 'Yvonne_Ewen@gmx.net', '', 2, 'yvonne_ewen@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (4005, 745, 2, 30, '', 'Yvonne_Ewen@gmx.net', '', 1, 'yvonne_ewen@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (4023, 751, 2, 30, '', 'ju_schulze@t-online.de', '', 1, 'ju_schulze@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4032, 754, 2, 10, '', 'bahnbonus-service@bahn.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3977, 736, 2, 30, '', 'service@loberon.de', '', 3, 'service@loberon.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3991, 741, 2, 30, '', 'info@antik-living.de', '', 5, 'info@antik-living.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4010, 746, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (4011, 746, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (4012, 746, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4031, 754, 2, 30, '', 'bahnbonus-service@bahn.de', '', 1, 'bahnbonus-service@bahn.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4014, 747, 2, 10, '', 'pgreve@gmail.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4021, 750, 2, 30, '', 'hejahagen@t-online.de', '', 5, 'hejahagen@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4016, 748, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
+INSERT INTO public.rainloop_ab_properties VALUES (4017, 748, 2, 16, '', 'Ewen', '', 0, 'ewen');
+INSERT INTO public.rainloop_ab_properties VALUES (4018, 748, 2, 10, '', 'Yvonne Ewen', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4026, 752, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (4027, 752, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (4028, 752, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4009, 746, 2, 30, '', 'Leonie.gueldenpfennig@gmx.de', '', 2, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (451, 131, 2, 30, '', 'Leonie.gueldenpfennig@gmx.de', '', 4, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4025, 752, 2, 30, '', 'Leonie.gueldenpfennig@gmx.de', '', 1, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4034, 755, 2, 15, '', 'Uwe', '', 0, 'uwe');
+INSERT INTO public.rainloop_ab_properties VALUES (4037, 756, 2, 30, '', 'anbieter.b9c6bb3a4ba04d31ab5c55c51c301dff@nachrichten.immobilienscout24.de', '', 1, 'anbieter.b9c6bb3a4ba04d31ab5c55c51c301dff@nachrichten.immobilienscout24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4030, 753, 2, 10, '', 'm.lukoschewski@web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4035, 755, 2, 16, '', 'Czesnat', '', 0, 'czesnat');
+INSERT INTO public.rainloop_ab_properties VALUES (4036, 755, 2, 10, '', 'Uwe Czesnat', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4033, 755, 2, 30, '', 'u.czesnat@web.de', '', 1, 'u.czesnat@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4038, 756, 2, 15, '', 'Herr', '', 0, 'herr');
+INSERT INTO public.rainloop_ab_properties VALUES (4039, 756, 2, 16, '', 'Geller', '', 0, 'geller');
+INSERT INTO public.rainloop_ab_properties VALUES (4040, 756, 2, 10, '', 'Herr Geller', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4042, 757, 2, 10, '', 'anita--meyer@t-online.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4041, 757, 2, 30, '', 'anita--meyer@t-online.de', '', 1, 'anita--meyer@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4044, 758, 2, 15, '', 'Info@Fit4Bike.de', '', 0, 'info@fit4bike.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4045, 758, 2, 10, '', 'Info@Fit4Bike.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4013, 747, 2, 30, '', 'pgreve@gmail.com', '', 2, 'pgreve@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4047, 759, 2, 10, '', 'Coaching-jaiser@web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4046, 759, 2, 30, '', 'Coaching-jaiser@web.de', '', 1, 'coaching-jaiser@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4049, 760, 2, 15, '', 'Thorsten', '', 0, 'thorsten');
+INSERT INTO public.rainloop_ab_properties VALUES (4050, 760, 2, 16, '', 'Kuechler', '', 0, 'kuechler');
+INSERT INTO public.rainloop_ab_properties VALUES (4051, 760, 2, 10, '', 'Thorsten Kuechler', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (3989, 740, 2, 30, '', 'praxis-petersen@gmx.de', '', 2, 'praxis-petersen@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4048, 760, 2, 30, '', 'thorsten.kuechler@gmx.net', '', 2, 'thorsten.kuechler@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (79, 29, 2, 30, '', 'uirosentreter@t-online.de', '', 98, 'uirosentreter@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4057, 762, 2, 15, '', 'esn.com', '', 0, 'esn.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4058, 762, 2, 10, '', 'esn.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4060, 763, 2, 10, '', 'info@fitmart.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4098, 776, 2, 30, '', 'info@bloominghome.de', '', 1, 'info@bloominghome.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4062, 764, 2, 15, '', 'Christian', '', 0, 'christian');
+INSERT INTO public.rainloop_ab_properties VALUES (4063, 764, 2, 16, '', 'Nagel', '', 0, 'nagel');
+INSERT INTO public.rainloop_ab_properties VALUES (4064, 764, 2, 10, '', 'Christian Nagel', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4066, 765, 2, 15, '', 'Lars', '', 0, 'lars');
+INSERT INTO public.rainloop_ab_properties VALUES (4067, 765, 2, 16, '', 'Lundin', '', 0, 'lundin');
+INSERT INTO public.rainloop_ab_properties VALUES (4068, 765, 2, 10, '', 'Lars Lundin', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4103, 777, 2, 10, '', 'retoure@bloominghome.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4065, 765, 2, 30, '', 'contact@lundin-wind-solar.com', '', 2, 'contact@lundin-wind-solar.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4102, 777, 2, 30, '', 'retoure@bloominghome.de', '', 1, 'retoure@bloominghome.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4070, 766, 2, 15, '', 'Heinz', '', 0, 'heinz');
+INSERT INTO public.rainloop_ab_properties VALUES (4071, 766, 2, 16, '', 'Hillmer', '', 0, 'hillmer');
+INSERT INTO public.rainloop_ab_properties VALUES (4072, 766, 2, 10, '', 'Heinz Hillmer', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4069, 766, 2, 30, '', 'heinz.hillmer@verimag.de', '', 1, 'heinz.hillmer@verimag.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4061, 764, 2, 30, '', 'nagel.anita@t-online.de', '', 3, 'nagel.anita@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4059, 763, 2, 30, '', 'info@fitmart.de', '', 2, 'info@fitmart.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4056, 762, 2, 30, '', 'help@esn.com', '', 2, 'help@esn.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4074, 767, 2, 15, '', 'Klaus', '', 0, 'klaus');
+INSERT INTO public.rainloop_ab_properties VALUES (4075, 767, 2, 16, '', 'Locker - Märkische Immobilien Potsdam', '', 0, 'locker - märkische immobilien potsdam');
+INSERT INTO public.rainloop_ab_properties VALUES (4076, 767, 2, 10, '', 'Klaus Locker - Märkische Immobilien Potsdam', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4073, 767, 2, 30, '', 'locker@mipotsdam.de', '', 1, 'locker@mipotsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4078, 768, 4, 10, '', 'voker.voss@gywi.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4080, 769, 4, 10, '', 'volker.voss@gywi.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4091, 773, 2, 30, '', 'kundenbetreuung@dertouristik.com', '', 2, 'kundenbetreuung@dertouristik.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4081, 770, 4, 15, '', 'Volker', '', 0, 'volker');
+INSERT INTO public.rainloop_ab_properties VALUES (4082, 770, 4, 16, '', 'Voß', '', 0, 'voß');
+INSERT INTO public.rainloop_ab_properties VALUES (4084, 770, 4, 10, '', 'Volker Voß', '', 0, 'volker voß');
+INSERT INTO public.rainloop_ab_properties VALUES (4121, 784, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (4105, 778, 2, 15, '', 'Hagen', '', 0, 'hagen');
+INSERT INTO public.rainloop_ab_properties VALUES (4106, 778, 2, 16, '', 'Schanze', '', 0, 'schanze');
+INSERT INTO public.rainloop_ab_properties VALUES (4107, 778, 2, 10, '', 'Hagen Schanze', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4126, 786, 2, 30, '', 'M_Schneider@gmx.net', '', 3, 'm_schneider@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (4122, 784, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (4123, 784, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4079, 769, 4, 30, '', 'volker.voss@gywi.de', '', 6, 'volker.voss@gywi.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4083, 770, 4, 30, 'Home', 'volker.voss@gywi.de', '', 5, 'volker.voss@gywi.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4077, 768, 4, 30, '', 'voker.voss@gywi.de', '', 4, 'voker.voss@gywi.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4086, 771, 2, 15, '', 'Anne', '', 0, 'anne');
+INSERT INTO public.rainloop_ab_properties VALUES (4087, 771, 2, 16, '', 'Aegerter', '', 0, 'aegerter');
+INSERT INTO public.rainloop_ab_properties VALUES (4088, 771, 2, 10, '', 'Anne Aegerter', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4085, 771, 2, 30, '', 'hey@anne-aegerter.de', '', 1, 'hey@anne-aegerter.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4090, 772, 2, 10, '', 'alexandrowka-potsdam@web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4092, 773, 2, 10, '', 'kundenbetreuung@dertouristik.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4089, 772, 2, 30, '', 'alexandrowka-potsdam@web.de', '', 2, 'alexandrowka-potsdam@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4094, 774, 2, 15, '', 'Ingo', '', 0, 'ingo');
+INSERT INTO public.rainloop_ab_properties VALUES (4095, 774, 2, 10, '', 'Ingo', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4097, 775, 2, 10, '', 'christine.maertner@polizei.brandenburg.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4096, 775, 2, 30, '', 'christine.maertner@polizei.brandenburg.de', '', 1, 'christine.maertner@polizei.brandenburg.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4099, 776, 2, 15, '', 'Bloominghome', '', 0, 'bloominghome');
+INSERT INTO public.rainloop_ab_properties VALUES (4100, 776, 2, 16, '', 'GmbH & Co. KG', '', 0, 'gmbh & co. kg');
+INSERT INTO public.rainloop_ab_properties VALUES (4101, 776, 2, 10, '', 'Bloominghome GmbH & Co. KG', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4109, 779, 2, 10, '', 'choose75@gmx.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4108, 779, 2, 30, '', 'choose75@gmx.de', '', 1, 'choose75@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4111, 780, 2, 10, '', 'CHoose75@gmx.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4110, 780, 2, 30, '', 'CHoose75@gmx.de', '', 1, 'choose75@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4113, 781, 6, 10, '', 'ip8jkt@libero.it', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4112, 781, 6, 30, '', 'ip8jkt@libero.it', '', 1, 'ip8jkt@libero.it');
+INSERT INTO public.rainloop_ab_properties VALUES (4115, 782, 2, 15, '', 'Irmtraud', '', 0, 'irmtraud');
+INSERT INTO public.rainloop_ab_properties VALUES (4116, 782, 2, 16, '', 'Rosentreter', '', 0, 'rosentreter');
+INSERT INTO public.rainloop_ab_properties VALUES (4117, 782, 2, 10, '', 'Irmtraud Rosentreter', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4118, 783, 2, 30, '', 'M_Schneider@gmx.net', '', 5, 'm_schneider@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (4119, 783, 2, 10, '', 'M_Schneider@gmx.net', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4125, 785, 2, 10, '', 'M_Schneider@gmx.net', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4129, 787, 2, 10, '', 'ronald@runningwolf.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4127, 786, 2, 10, '', 'M_Schneider@gmx.net', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4124, 785, 2, 30, '', 'M_Schneider@gmx.net', '', 4, 'm_schneider@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (4114, 782, 2, 30, '', 'uirosentreter@gmail.com', '', 5, 'uirosentreter@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4093, 774, 2, 30, '', 'isch35@web.de', '', 55, 'isch35@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4131, 788, 2, 10, '', 'ina.rosentreter@rifs-potsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4130, 788, 2, 30, '', 'ina.rosentreter@rifs-potsdam.de', '', 1, 'ina.rosentreter@rifs-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4128, 787, 2, 30, '', 'ronald@runningwolf.de', '', 3, 'ronald@runningwolf.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4133, 789, 2, 10, '', 'allgemeiner-spam@internet-beschwerdestelle.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4120, 784, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 2, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4104, 778, 2, 30, '', 'hagen@fit4bike.de', '', 2, 'hagen@fit4bike.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4132, 789, 2, 30, '', 'allgemeiner-spam@internet-beschwerdestelle.de', '', 1, 'allgemeiner-spam@internet-beschwerdestelle.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4135, 790, 2, 15, '', 'Engel', '', 0, 'engel');
+INSERT INTO public.rainloop_ab_properties VALUES (4136, 790, 2, 16, '', '& Völkers Potsdam', '', 0, '& völkers potsdam');
+INSERT INTO public.rainloop_ab_properties VALUES (4137, 790, 2, 10, '', 'Engel & Völkers Potsdam', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4134, 790, 2, 30, '', 'potsdam@news.engelvoelkers.com', '', 1, 'potsdam@news.engelvoelkers.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4139, 791, 2, 15, '', 'Leonie', '', 0, 'leonie');
+INSERT INTO public.rainloop_ab_properties VALUES (4140, 791, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
+INSERT INTO public.rainloop_ab_properties VALUES (4141, 791, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (533, 161, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 14, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1003, 315, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 12, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (1007, 316, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 11, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3709, 665, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 8, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3716, 667, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 7, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (321, 94, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 22, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (335, 98, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 21, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (369, 108, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 20, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (3746, 676, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 6, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4138, 791, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 1, 'leonie.gueldenpfennig@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4143, 792, 2, 10, '', 'M_Schneider@gmx.net', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4179, 806, 2, 30, '', 'kurfuersten@roentgenpraxis-potsdam.de', '', 1, 'kurfuersten@roentgenpraxis-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4145, 793, 2, 15, '', 'Zahn', '', 0, 'zahn');
+INSERT INTO public.rainloop_ab_properties VALUES (4146, 793, 2, 16, '', 'Dietrich', '', 0, 'dietrich');
+INSERT INTO public.rainloop_ab_properties VALUES (4147, 793, 2, 10, '', 'Zahn Dietrich', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4144, 793, 2, 30, '', 'dietrich.zahn@googlemail.com', '', 1, 'dietrich.zahn@googlemail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4149, 794, 2, 15, '', 'Steffen', '', 0, 'steffen');
+INSERT INTO public.rainloop_ab_properties VALUES (4150, 794, 2, 16, '', 'Ulbrich', '', 0, 'ulbrich');
+INSERT INTO public.rainloop_ab_properties VALUES (4151, 794, 2, 10, '', 'Steffen Ulbrich', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4148, 794, 2, 30, '', 'steffen@fit4bike.de', '', 1, 'steffen@fit4bike.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4153, 795, 2, 10, '', 'bahncard-service@bahn.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4152, 795, 2, 30, '', 'bahncard-service@bahn.de', '', 1, 'bahncard-service@bahn.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4155, 796, 2, 10, '', 'reisen@rucksack-reisen.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4154, 796, 2, 30, '', 'reisen@rucksack-reisen.de', '', 1, 'reisen@rucksack-reisen.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4157, 797, 2, 15, '', 'Jil', '', 0, 'jil');
+INSERT INTO public.rainloop_ab_properties VALUES (4158, 797, 2, 16, '', 'Szabo', '', 0, 'szabo');
+INSERT INTO public.rainloop_ab_properties VALUES (4159, 797, 2, 10, '', 'Jil Szabo', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4156, 797, 2, 30, '', 'jil.szabo@horl-1993.de', '', 1, 'jil.szabo@horl-1993.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4161, 798, 2, 15, '', 'Melanie', '', 0, 'melanie');
+INSERT INTO public.rainloop_ab_properties VALUES (4162, 798, 2, 16, '', 'Schneider', '', 0, 'schneider');
+INSERT INTO public.rainloop_ab_properties VALUES (4163, 798, 2, 10, '', 'Melanie Schneider', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4165, 799, 2, 10, '', 'M_Schneider@gmx.net', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4142, 792, 2, 30, '', 'M_Schneider@gmx.net', '', 2, 'm_schneider@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (4164, 799, 2, 30, '', 'M_Schneider@gmx.net', '', 1, 'm_schneider@gmx.net');
+INSERT INTO public.rainloop_ab_properties VALUES (4167, 800, 2, 10, '', 'amazon-student-verifizierung@amazon.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4166, 800, 2, 30, '', 'amazon-student-verifizierung@amazon.de', '', 1, 'amazon-student-verifizierung@amazon.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4160, 798, 2, 30, '', 'wp.melanieschneider@gmail.com', '', 2, 'wp.melanieschneider@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4169, 801, 4, 10, '', 'frank-etgeton@osnanet.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4168, 801, 4, 30, '', 'frank-etgeton@osnanet.de', '', 1, 'frank-etgeton@osnanet.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4171, 802, 2, 10, '', 'sch@radiologische-allianz.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4170, 802, 2, 30, '', 'sch@radiologische-allianz.de', '', 1, 'sch@radiologische-allianz.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4173, 803, 2, 10, '', 'mammo_screening_brb_west@t-online.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4172, 803, 2, 30, '', 'mammo_screening_brb_west@t-online.de', '', 1, 'mammo_screening_brb_west@t-online.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4175, 804, 2, 10, '', 'praxis-belzer@web.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4174, 804, 2, 30, '', 'praxis-belzer@web.de', '', 1, 'praxis-belzer@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4177, 805, 2, 15, '', 'Vätternrundan', '', 0, 'vätternrundan');
+INSERT INTO public.rainloop_ab_properties VALUES (4178, 805, 2, 10, '', 'Vätternrundan', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4176, 805, 2, 30, '', 'info@vatternrundan.se', '', 1, 'info@vatternrundan.se');
+INSERT INTO public.rainloop_ab_properties VALUES (4180, 806, 2, 10, '', 'kurfuersten@roentgenpraxis-potsdam.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4182, 807, 2, 10, '', 'support@saal-digital.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4184, 808, 2, 10, '', 'info@potsdamer-laufclub.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4183, 808, 2, 30, '', 'info@potsdamer-laufclub.de', '', 1, 'info@potsdamer-laufclub.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4181, 807, 2, 30, '', 'support@saal-digital.de', '', 2, 'support@saal-digital.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4186, 809, 2, 10, '', 'event@wannseeterrassen.berlin', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4185, 809, 2, 30, '', 'event@wannseeterrassen.berlin', '', 1, 'event@wannseeterrassen.berlin');
+INSERT INTO public.rainloop_ab_properties VALUES (4188, 810, 2, 10, '', 'booking@spidsbergseter.no', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4190, 811, 2, 15, '', 'Resepsjonen', '', 0, 'resepsjonen');
+INSERT INTO public.rainloop_ab_properties VALUES (4191, 811, 2, 16, '', 'Spidsbergseter', '', 0, 'spidsbergseter');
+INSERT INTO public.rainloop_ab_properties VALUES (4192, 811, 2, 10, '', 'Resepsjonen Spidsbergseter', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4194, 812, 2, 15, '', 'Resepsjonen', '', 0, 'resepsjonen');
+INSERT INTO public.rainloop_ab_properties VALUES (4195, 812, 2, 16, '', 'Spidsbergseter', '', 0, 'spidsbergseter');
+INSERT INTO public.rainloop_ab_properties VALUES (4196, 812, 2, 10, '', 'Resepsjonen Spidsbergseter', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4289, 841, 2, 16, '', 'Diagnostikum Berlin', '', 0, 'diagnostikum berlin');
+INSERT INTO public.rainloop_ab_properties VALUES (4290, 841, 2, 10, '', 'Servicecenter Diagnostikum Berlin', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4198, 813, 2, 15, '', 'Termin_Zusage', '', 0, 'termin_zusage');
+INSERT INTO public.rainloop_ab_properties VALUES (4199, 813, 2, 10, '', 'Termin_Zusage', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4197, 813, 2, 30, '', 'anbieter.39bb36e780024b11a18010f39c8a7bc6@nachrichten.immobilienscout24.de', '', 1, 'anbieter.39bb36e780024b11a18010f39c8a7bc6@nachrichten.immobilienscout24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4187, 810, 2, 30, '', 'booking@spidsbergseter.no', '', 2, 'booking@spidsbergseter.no');
+INSERT INTO public.rainloop_ab_properties VALUES (4201, 814, 2, 15, '', 'Resepsjonen', '', 0, 'resepsjonen');
+INSERT INTO public.rainloop_ab_properties VALUES (4202, 814, 2, 16, '', 'Spidsbergseter', '', 0, 'spidsbergseter');
+INSERT INTO public.rainloop_ab_properties VALUES (4203, 814, 2, 10, '', 'Resepsjonen Spidsbergseter', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4200, 814, 2, 30, '', 'Booking@spidsbergseter.no', '', 1, 'booking@spidsbergseter.no');
+INSERT INTO public.rainloop_ab_properties VALUES (4287, 841, 2, 30, '', 'sc@diagnostikum-berlin.de', '', 1, 'sc@diagnostikum-berlin.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4292, 842, 2, 10, '', 'ina.rosentreter@gmail.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4189, 811, 2, 30, '', 'Booking@spidsbergseter.no', '', 3, 'booking@spidsbergseter.no');
+INSERT INTO public.rainloop_ab_properties VALUES (4193, 812, 2, 30, '', 'Booking@spidsbergseter.no', '', 2, 'booking@spidsbergseter.no');
+INSERT INTO public.rainloop_ab_properties VALUES (4205, 815, 2, 10, '', 'ordre@taxi03650.no', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4204, 815, 2, 30, '', 'ordre@taxi03650.no', '', 1, 'ordre@taxi03650.no');
+INSERT INTO public.rainloop_ab_properties VALUES (4207, 816, 2, 15, '', 'Ringebu-Fåvang', '', 0, 'ringebu-fåvang');
+INSERT INTO public.rainloop_ab_properties VALUES (4208, 816, 2, 16, '', 'taxisentral', '', 0, 'taxisentral');
+INSERT INTO public.rainloop_ab_properties VALUES (4209, 816, 2, 10, '', 'Ringebu-Fåvang taxisentral', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4206, 816, 2, 30, '', 'ringebutaxi@hotmail.com', '', 1, 'ringebutaxi@hotmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4211, 817, 2, 15, '', 'Sportschrank.de', '', 0, 'sportschrank.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4212, 817, 2, 10, '', 'Sportschrank.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4210, 817, 2, 30, '', 'info@sportschrank.de', '', 1, 'info@sportschrank.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4214, 818, 2, 10, '', 'nicht-antworten@gebuhrenfrei.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4213, 818, 2, 30, '', 'nicht-antworten@gebuhrenfrei.com', '', 1, 'nicht-antworten@gebuhrenfrei.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4216, 819, 2, 10, '', 'service@gebuhrenfrei.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4215, 819, 2, 30, '', 'service@gebuhrenfrei.com', '', 1, 'service@gebuhrenfrei.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4218, 820, 2, 10, '', 'joana.ludwig@hotmail.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4217, 820, 2, 30, '', 'joana.ludwig@hotmail.de', '', 1, 'joana.ludwig@hotmail.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4220, 821, 2, 10, '', 'vermietung@vermietungsbuero-mueller.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4222, 822, 4, 15, '', 'Roblox', '', 0, 'roblox');
+INSERT INTO public.rainloop_ab_properties VALUES (4223, 822, 4, 16, '', 'Support', '', 0, 'support');
+INSERT INTO public.rainloop_ab_properties VALUES (4224, 822, 4, 10, '', 'Roblox Support', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4255, 832, 2, 15, '', 'Saletovic,', '', 0, 'saletovic,');
+INSERT INTO public.rainloop_ab_properties VALUES (4256, 832, 2, 16, '', 'Elvis', '', 0, 'elvis');
+INSERT INTO public.rainloop_ab_properties VALUES (4221, 822, 4, 30, '', 'support-en@roblox.com', '', 3, 'support-en@roblox.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4226, 823, 2, 10, '', 'kontakt@restaurantzanotto.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4225, 823, 2, 30, '', 'kontakt@restaurantzanotto.de', '', 1, 'kontakt@restaurantzanotto.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4257, 832, 2, 10, '', 'Saletovic, Elvis', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4228, 824, 2, 15, '', 'Jens-Martin', '', 0, 'jens-martin');
+INSERT INTO public.rainloop_ab_properties VALUES (4229, 824, 2, 16, '', 'Schröder', '', 0, 'schröder');
+INSERT INTO public.rainloop_ab_properties VALUES (4230, 824, 2, 10, '', 'Jens-Martin Schröder', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4227, 824, 2, 30, '', 'jensmartinschroeder@gmx.de', '', 1, 'jensmartinschroeder@gmx.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4279, 839, 2, 30, '', 'isabell.kruse@engelvoelkers.com', '', 3, 'isabell.kruse@engelvoelkers.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4232, 825, 2, 15, '', 'Saletovic,', '', 0, 'saletovic,');
+INSERT INTO public.rainloop_ab_properties VALUES (4233, 825, 2, 16, '', 'Elvis', '', 0, 'elvis');
+INSERT INTO public.rainloop_ab_properties VALUES (4234, 825, 2, 10, '', 'Saletovic, Elvis', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4254, 832, 2, 30, '', 'Saletovic_E@dibag.de', '', 1, 'saletovic_e@dibag.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4236, 826, 2, 15, '', 'Saletovic,', '', 0, 'saletovic,');
+INSERT INTO public.rainloop_ab_properties VALUES (4237, 826, 2, 16, '', 'Elvis', '', 0, 'elvis');
+INSERT INTO public.rainloop_ab_properties VALUES (4238, 826, 2, 10, '', 'Saletovic, Elvis', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4272, 837, 2, 15, '', 'xxx', '', 0, 'xxx');
+INSERT INTO public.rainloop_ab_properties VALUES (4240, 827, 2, 15, '', 'Termin_Zusage', '', 0, 'termin_zusage');
+INSERT INTO public.rainloop_ab_properties VALUES (4241, 827, 2, 10, '', 'Termin_Zusage', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4239, 827, 2, 30, '', 'anbieter.d5fd145928f24a30bef57f70bfccdd69@nachrichten.immobilienscout24.de', '', 1, 'anbieter.d5fd145928f24a30bef57f70bfccdd69@nachrichten.immobilienscout24.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4243, 828, 2, 15, '', 'Weber,', '', 0, 'weber,');
+INSERT INTO public.rainloop_ab_properties VALUES (4244, 828, 2, 16, '', 'Niko', '', 0, 'niko');
+INSERT INTO public.rainloop_ab_properties VALUES (4245, 828, 2, 10, '', 'Weber, Niko', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4231, 825, 2, 30, '', 'Saletovic_E@dibag.de', '', 3, 'saletovic_e@dibag.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4247, 829, 2, 10, '', 'lydia.p97@gmail.com', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4246, 829, 2, 30, '', 'lydia.p97@gmail.com', '', 1, 'lydia.p97@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4249, 830, 2, 10, '', 'kontakt@maerkischekiste.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4248, 830, 2, 30, '', 'kontakt@maerkischekiste.de', '', 1, 'kontakt@maerkischekiste.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4251, 831, 2, 15, '', 'Weber,', '', 0, 'weber,');
+INSERT INTO public.rainloop_ab_properties VALUES (4252, 831, 2, 16, '', 'Niko', '', 0, 'niko');
+INSERT INTO public.rainloop_ab_properties VALUES (4253, 831, 2, 10, '', 'Weber, Niko', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4273, 837, 2, 16, '', 'Kardiologische Gemeinschaftspraxis am Park Sanssouci', '', 0, 'kardiologische gemeinschaftspraxis am park sanssouci');
+INSERT INTO public.rainloop_ab_properties VALUES (4274, 837, 2, 10, '', 'xxx Kardiologische Gemeinschaftspraxis am Park Sanssouci', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4235, 826, 2, 30, '', 'Saletovic_E@dibag.de', '', 2, 'saletovic_e@dibag.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4259, 833, 2, 15, '', 'Weber,', '', 0, 'weber,');
+INSERT INTO public.rainloop_ab_properties VALUES (4260, 833, 2, 16, '', 'Niko', '', 0, 'niko');
+INSERT INTO public.rainloop_ab_properties VALUES (4261, 833, 2, 10, '', 'Weber, Niko', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4242, 828, 2, 30, '', 'Niko.Weber@kud-hausbau.de', '', 3, 'niko.weber@kud-hausbau.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4250, 831, 2, 30, '', 'Niko.Weber@kud-hausbau.de', '', 2, 'niko.weber@kud-hausbau.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4258, 833, 2, 30, '', 'Niko.Weber@kud-hausbau.de', '', 1, 'niko.weber@kud-hausbau.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4263, 834, 2, 15, '', 'Pospiech,', '', 0, 'pospiech,');
+INSERT INTO public.rainloop_ab_properties VALUES (4264, 834, 2, 16, '', 'Mandy', '', 0, 'mandy');
+INSERT INTO public.rainloop_ab_properties VALUES (4265, 834, 2, 10, '', 'Pospiech, Mandy', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4262, 834, 2, 30, '', 'Mandy.Pospiech@bundesimmobilien.de', '', 3, 'mandy.pospiech@bundesimmobilien.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4267, 835, 2, 15, '', 'Lieferando.de', '', 0, 'lieferando.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4268, 835, 2, 10, '', 'Lieferando.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4266, 835, 2, 30, '', 'info@lieferando.de', '', 1, 'info@lieferando.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4270, 836, 2, 10, '', 'Belegungsrechte@vonovia.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4269, 836, 2, 30, '', 'Belegungsrechte@vonovia.de', '', 1, 'belegungsrechte@vonovia.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4271, 837, 2, 30, '', 'termine@kardiologie-potsdam.de', '', 1, 'termine@kardiologie-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4276, 838, 2, 15, '', 'Antje', '', 0, 'antje');
+INSERT INTO public.rainloop_ab_properties VALUES (4277, 838, 2, 16, '', 'Evers', '', 0, 'evers');
+INSERT INTO public.rainloop_ab_properties VALUES (4278, 838, 2, 10, '', 'Antje Evers', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4275, 838, 2, 30, '', 'aevers75@web.de', '', 1, 'aevers75@web.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4280, 839, 2, 15, '', 'Isabell', '', 0, 'isabell');
+INSERT INTO public.rainloop_ab_properties VALUES (4281, 839, 2, 16, '', 'Kruse', '', 0, 'kruse');
+INSERT INTO public.rainloop_ab_properties VALUES (4282, 839, 2, 10, '', 'Isabell Kruse', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4219, 821, 2, 30, '', 'vermietung@vermietungsbuero-mueller.de', '', 5, 'vermietung@vermietungsbuero-mueller.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4284, 840, 2, 15, '', 'Mieterverein', '', 0, 'mieterverein');
+INSERT INTO public.rainloop_ab_properties VALUES (4285, 840, 2, 16, '', 'Potsdam', '', 0, 'potsdam');
+INSERT INTO public.rainloop_ab_properties VALUES (4286, 840, 2, 10, '', 'Mieterverein Potsdam', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4283, 840, 2, 30, '', 'info@mieterverein-potsdam.de', '', 1, 'info@mieterverein-potsdam.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4288, 841, 2, 15, '', 'Servicecenter', '', 0, 'servicecenter');
+INSERT INTO public.rainloop_ab_properties VALUES (4291, 842, 2, 30, '', 'ina.rosentreter@gmail.com', '', 1, 'ina.rosentreter@gmail.com');
+INSERT INTO public.rainloop_ab_properties VALUES (4294, 843, 2, 15, '', 'Pospiech,', '', 0, 'pospiech,');
+INSERT INTO public.rainloop_ab_properties VALUES (4295, 843, 2, 16, '', 'Mandy', '', 0, 'mandy');
+INSERT INTO public.rainloop_ab_properties VALUES (4296, 843, 2, 10, '', 'Pospiech, Mandy', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4298, 844, 2, 15, '', 'Pospiech,', '', 0, 'pospiech,');
+INSERT INTO public.rainloop_ab_properties VALUES (4299, 844, 2, 16, '', 'Mandy', '', 0, 'mandy');
+INSERT INTO public.rainloop_ab_properties VALUES (4300, 844, 2, 10, '', 'Pospiech, Mandy', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4293, 843, 2, 30, '', 'Mandy.Pospiech@bundesimmobilien.de', '', 2, 'mandy.pospiech@bundesimmobilien.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4297, 844, 2, 30, '', 'Mandy.Pospiech@bundesimmobilien.de', '', 1, 'mandy.pospiech@bundesimmobilien.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4302, 845, 2, 10, '', 'rezeption@hotel-chorin.de', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4301, 845, 2, 30, '', 'rezeption@hotel-chorin.de', '', 4, 'rezeption@hotel-chorin.de');
+INSERT INTO public.rainloop_ab_properties VALUES (4304, 846, 2, 15, '', 'Miriam', '', 0, 'miriam');
+INSERT INTO public.rainloop_ab_properties VALUES (4305, 846, 2, 16, '', 'Lewin', '', 0, 'lewin');
+INSERT INTO public.rainloop_ab_properties VALUES (4306, 846, 2, 10, '', 'Miriam Lewin', '', 0, '');
+INSERT INTO public.rainloop_ab_properties VALUES (4303, 846, 2, 30, '', 'immo@miriamlewin.de', '', 2, 'immo@miriamlewin.de');
+
+
+--
+-- Name: rainloop_ab_properties_id_prop_seq; Type: SEQUENCE SET; Schema: public; Owner: rainloop
+--
+
+SELECT pg_catalog.setval('public.rainloop_ab_properties_id_prop_seq', 4306, true);
+
+
+--
+-- Data for Name: rainloop_system; Type: TABLE DATA; Schema: public; Owner: rainloop
+--
+
+INSERT INTO public.rainloop_system VALUES ('pgsql-ab-version_version', 2, '');
+
+
+--
+-- Data for Name: rainloop_users; Type: TABLE DATA; Schema: public; Owner: rainloop
+--
+
+INSERT INTO public.rainloop_users VALUES (1, 'privat@ole-b-rosentreter.de');
+INSERT INTO public.rainloop_users VALUES (2, 'privat@ina-rosentreter.de');
+INSERT INTO public.rainloop_users VALUES (3, 'privat@lasse-gehrmann.de');
+INSERT INTO public.rainloop_users VALUES (4, 'privat@matthies-gehrmann.de');
+INSERT INTO public.rainloop_users VALUES (5, 'kontakt@laktatnebel.de');
+INSERT INTO public.rainloop_users VALUES (6, 'sports@laktatnebel.de');
+
+
+--
+-- PostgreSQL database dump complete
+--
+
--- /dev/null
+1.17.0
\ No newline at end of file
--- /dev/null
+1.17.0
\ No newline at end of file
--- /dev/null
+<?php //9beeb01b864dfe83b62edeed1337ca361ea29ee1ff89e906447febb1cd28310c541e9b302a554c767aa61669cb2c6ea6
\ No newline at end of file
--- /dev/null
+1.17.0
\ No newline at end of file
--- /dev/null
+window.rainloopI18N={"LANGS_NAMES/LANG_EN":"English","LANGS_NAMES/LANG_EN_US":"English","LANGS_NAMES/LANG_EN_GB":"English (UK)","LANGS_NAMES/LANG_EN_UK":"English (UK)","LANGS_NAMES/LANG_EN_CA":"English (Canadian)","LANGS_NAMES/LANG_TH_TH":"ภาษาไทย","LANGS_NAMES/LANG_EL_GR":"Ελληνικά","LANGS_NAMES/LANG_NL_NL":"Nederlands","LANGS_NAMES/LANG_NB_NO":"Norsk (bokmål)","LANGS_NAMES/LANG_PL_PL":"Polski","LANGS_NAMES/LANG_RU_RU":"Русский","LANGS_NAMES/LANG_RO_RO":"Română","LANGS_NAMES/LANG_UK_UA":"Українська","LANGS_NAMES/LANG_DE_DE":"Deutsch","LANGS_NAMES/LANG_FI_FI":"Suomi","LANGS_NAMES/LANG_FR_FR":"Français (France)","LANGS_NAMES/LANG_FR_CA":"Français (Canada)","LANGS_NAMES/LANG_PT_PT":"Português (Portugal)","LANGS_NAMES/LANG_PT_BR":"Português (Brasil)","LANGS_NAMES/LANG_ES_ES":"Español (España)","LANGS_NAMES/LANG_ES_LA":"Español","LANGS_NAMES/LANG_ET_EE":"Eesti","LANGS_NAMES/LANG_FA_IR":"فارسی","LANGS_NAMES/LANG_IT_IT":"Italiano","LANGS_NAMES/LANG_LT_LT":"Lietuvių","LANGS_NAMES/LANG_LV_LV":"Latviešu","LANGS_NAMES/LANG_IS_IS":"Íslenska","LANGS_NAMES/LANG_HU_HU":"Magyar","LANGS_NAMES/LANG_TR_TR":"Türkçe","LANGS_NAMES/LANG_SK_SK":"Slovenčina","LANGS_NAMES/LANG_SV_SE":"Svenska","LANGS_NAMES/LANG_SL_SI":"Slovenščina","LANGS_NAMES/LANG_JA_JP":"日本語","LANGS_NAMES/LANG_ZH_TW":"中文(台灣)","LANGS_NAMES/LANG_ZH_CN":"中文(简体)","LANGS_NAMES/LANG_ZH_HK":"中文(香港)","LANGS_NAMES/LANG_KO_KR":"한국어","LANGS_NAMES/LANG_BG_BG":"Български","LANGS_NAMES/LANG_CS_CZ":"Čeština","LANGS_NAMES/LANG_AR_SA":"العربية","LANGS_NAMES/LANG_DA_DK":"Dansk","LANGS_NAMES/LANG_ID_ID":"Bahasa Indonesia","LANGS_NAMES/LANG_CA":"Catalan","LANGS_NAMES/LANG_CA_ES":"Catalan (Spain)","LANGS_NAMES/LANG_EU":"Basque","LANGS_NAMES_EN/LANG_EN":"English","LANGS_NAMES_EN/LANG_EN_US":"English (US)","LANGS_NAMES_EN/LANG_EN_GB":"English (UK)","LANGS_NAMES_EN/LANG_EN_UK":"English (UK)","LANGS_NAMES_EN/LANG_EN_CA":"English (Canadian)","LANGS_NAMES_EN/LANG_TH_TH":"Thai","LANGS_NAMES_EN/LANG_EL_GR":"Greek","LANGS_NAMES_EN/LANG_NL_NL":"Dutch","LANGS_NAMES_EN/LANG_NB_NO":"Norwegian (bokmal)","LANGS_NAMES_EN/LANG_PL_PL":"Polish","LANGS_NAMES_EN/LANG_RU_RU":"Russian","LANGS_NAMES_EN/LANG_RO_RO":"Romanian","LANGS_NAMES_EN/LANG_UK_UA":"Ukrainian","LANGS_NAMES_EN/LANG_DE_DE":"German","LANGS_NAMES_EN/LANG_FI_FI":"Finnish","LANGS_NAMES_EN/LANG_FR_FR":"French (France)","LANGS_NAMES_EN/LANG_FR_CA":"France (Canada)","LANGS_NAMES_EN/LANG_PT_PT":"Portuguese (Portugal)","LANGS_NAMES_EN/LANG_PT_BR":"Portuguese (Brazil)","LANGS_NAMES_EN/LANG_ES_ES":"Spanish","LANGS_NAMES_EN/LANG_ES_LA":"Spanish","LANGS_NAMES_EN/LANG_ET_EE":"Estonian","LANGS_NAMES_EN/LANG_FA_IR":"Persian","LANGS_NAMES_EN/LANG_IT_IT":"Italian","LANGS_NAMES_EN/LANG_LT_LT":"Lithuanian","LANGS_NAMES_EN/LANG_LV_LV":"Latvian","LANGS_NAMES_EN/LANG_IS_IS":"Icelandic","LANGS_NAMES_EN/LANG_HU_HU":"Hungarian","LANGS_NAMES_EN/LANG_TR_TR":"Turkish","LANGS_NAMES_EN/LANG_SK_SK":"Slovak","LANGS_NAMES_EN/LANG_SL_SI":"Slovenian","LANGS_NAMES_EN/LANG_SV_SE":"Swedish","LANGS_NAMES_EN/LANG_JA_JP":"Japanese","LANGS_NAMES_EN/LANG_ZH_TW":"Traditional Chinese (Taiwan)","LANGS_NAMES_EN/LANG_ZH_CN":"Simplified Chinese (China)","LANGS_NAMES_EN/LANG_ZH_HK":"Traditional Chinese (Hong Kong)","LANGS_NAMES_EN/LANG_KO_KR":"Korean","LANGS_NAMES_EN/LANG_BG_BG":"Bulgarian","LANGS_NAMES_EN/LANG_CS_CZ":"Czech","LANGS_NAMES_EN/LANG_AR_SA":"Arabic","LANGS_NAMES_EN/LANG_DA_DK":"Danish","LANGS_NAMES_EN/LANG_ID_ID":"Indonesian","LANGS_NAMES_EN/LANG_CA":"Catalan","LANGS_NAMES_EN/LANG_CA_ES":"Catalan (Spain)","LANGS_NAMES_EN/LANG_EU":"Basque","LOGIN/LABEL_EMAIL":"E-Mail","LOGIN/LABEL_LOGIN":"Login","LOGIN/LABEL_PASSWORD":"Passwort","LOGIN/LABEL_SIGN_ME":"Anmeldung merken","LOGIN/LABEL_VERIFICATION_CODE":"Verifizierungscode","LOGIN/LABEL_DONT_ASK_VERIFICATION_CODE":"Für zwei Wochen nicht nach dem Code fragen","LOGIN/BUTTON_SIGN_IN":"Anmelden","LOGIN/TITLE_SIGN_IN_GOOGLE":"Mit Google anmelden","LOGIN/TITLE_SIGN_IN_GMAIL":"Sign In using Gmail","LOGIN/TITLE_SIGN_IN_FACEBOOK":"Mit Facebook anmelden","LOGIN/TITLE_SIGN_IN_TWITTER":"Mit Twitter anmelden","LOGIN/LABEL_FORGOT_PASSWORD":"Passwort vergessen","LOGIN/LABEL_REGISTRATION":"Registrierung","TOP_TOOLBAR/BUTTON_ADD_ACCOUNT":"Konto hinzufügen","TOP_TOOLBAR/BUTTON_SETTINGS":"Einstellungen","TOP_TOOLBAR/BUTTON_HELP":"Hilfe","TOP_TOOLBAR/BUTTON_LOGOUT":"Abmelden","MOBILE/BUTTON_MOBILE_VERSION":"mobile Version","MOBILE/BUTTON_DESKTOP_VERSION":"Desktop Version","SEARCH/MAIN_INPUT_PLACEHOLDER":"Suche","SEARCH/TITLE_ADV":"Erweiterte Suche","SEARCH/LABEL_ADV_FROM":"Von","SEARCH/LABEL_ADV_TO":"An","SEARCH/LABEL_ADV_SUBJECT":"Betreff","SEARCH/LABEL_ADV_TEXT":"Text","SEARCH/LABEL_ADV_HAS_ATTACHMENT":"Anhang vorhanden","SEARCH/LABEL_ADV_HAS_ATTACHMENTS":"Anhänge vorhanden","SEARCH/LABEL_ADV_FLAGGED":"Markiert","SEARCH/LABEL_ADV_UNSEEN":"Ungelesen","SEARCH/LABEL_ADV_DATE":"Datum","SEARCH/LABEL_ADV_DATE_ALL":"Alle","SEARCH/LABEL_ADV_DATE_3_DAYS":"Nicht älter als 3 Tage","SEARCH/LABEL_ADV_DATE_7_DAYS":"Nicht älter als 1 Woche","SEARCH/LABEL_ADV_DATE_MONTH":"Nicht älter als 1 Monat","SEARCH/LABEL_ADV_DATE_3_MONTHS":"Nicht älter als 3 Monate","SEARCH/LABEL_ADV_DATE_6_MONTHS":"Nicht älter als 6 Monate","SEARCH/LABEL_ADV_DATE_YEAR":"Nicht älter als 1 Jahr","SEARCH/BUTTON_ADV_SEARCH":"Suchen","PREVIEW_POPUP/FULLSCREEN":"Vollbild umschalten","PREVIEW_POPUP/ZOOM":"Herein-/Herauszoomen","PREVIEW_POPUP/CLOSE":"Schließen (Esc)","PREVIEW_POPUP/LOADING":"Wird geladen ...","PREVIEW_POPUP/GALLERY_PREV":"Zurück (Linke Pfeil-Taste)","PREVIEW_POPUP/GALLERY_NEXT":"Weiter (Rechte Pfeil-Taste)","PREVIEW_POPUP/GALLERY_COUNTER":"%curr% von %total%","PREVIEW_POPUP/IMAGE_ERROR":"<a href=\"%url%\" target=\"_blank\">Die Grafikdatei</a> konnte nicht geladen werden.","PREVIEW_POPUP/AJAX_ERROR":"<a href=\"%url%\" target=\"_blank\">Der Inhalt</a> konnte nicht geladen werden.","FOLDER_LIST/BUTTON_COMPOSE":"Erstellen","FOLDER_LIST/BUTTON_CONTACTS":"Kontakte","FOLDER_LIST/BUTTON_NEW_MESSAGE":"Neue Nachricht","FOLDER_LIST/INBOX_NAME":"Posteingang","FOLDER_LIST/SENT_NAME":"Gesendet","FOLDER_LIST/DRAFTS_NAME":"Entwürfe","FOLDER_LIST/SPAM_NAME":"Spam","FOLDER_LIST/TRASH_NAME":"Papierkorb","FOLDER_LIST/ARCHIVE_NAME":"Archiv","QUOTA/TITLE":"Speicherplatz-Nutzung","MESSAGE_LIST/BUTTON_RELOAD":"Nachrichtenliste neu laden","MESSAGE_LIST/BUTTON_MOVE_TO":"Verschieben nach","MESSAGE_LIST/BUTTON_DELETE":"Löschen","MESSAGE_LIST/BUTTON_ARCHIVE":"Archiv","MESSAGE_LIST/BUTTON_SPAM":"Spam","MESSAGE_LIST/BUTTON_NOT_SPAM":"Kein Spam","MESSAGE_LIST/BUTTON_EMPTY_FOLDER":"Ordner leeren","MESSAGE_LIST/BUTTON_MULTY_FORWARD":"Nachrichten weiterleiten","MESSAGE_LIST/BUTTON_DELETE_WITHOUT_MOVE":"Endgültig löschen","MESSAGE_LIST/BUTTON_MORE":"Mehr","MESSAGE_LIST/MENU_SET_SEEN":"Als gelesen markieren","MESSAGE_LIST/MENU_SET_ALL_SEEN":"Alle als gelesen markieren","MESSAGE_LIST/MENU_UNSET_SEEN":"Als ungelesen markieren","MESSAGE_LIST/MENU_SET_FLAG":"Markieren","MESSAGE_LIST/MENU_UNSET_FLAG":"Markierung entfernen","MESSAGE_LIST/MENU_SELECT_ALL":"Alle","MESSAGE_LIST/MENU_SELECT_NONE":"Keine","MESSAGE_LIST/MENU_SELECT_INVERT":"Umkehren","MESSAGE_LIST/MENU_SELECT_UNSEEN":"Ungelesen","MESSAGE_LIST/MENU_SELECT_SEEN":"Gelesen","MESSAGE_LIST/MENU_SELECT_FLAGGED":"Markiert","MESSAGE_LIST/MENU_SELECT_UNFLAGGED":"Nicht markiert","MESSAGE_LIST/EMPTY_LIST":"Liste ist leer.","MESSAGE_LIST/EMPTY_SEARCH_LIST":"Keine Treffer für Ihre Suche.","MESSAGE_LIST/SEARCH_RESULT_FOR":"Suchergebnisse für \"%SEARCH%\"","MESSAGE_LIST/BACK_TO_MESSAGE_LIST":"Zurück zur Nachrichtenliste","MESSAGE_LIST/LIST_LOADING":"Die Liste wird geladen","MESSAGE_LIST/EMPTY_SUBJECT_TEXT":"(Kein Betreff)","MESSAGE_LIST/PUT_MESSAGE_HERE":"Ziehen Sie die Nachricht hierhin, um sie in der Liste anzuzeigen","MESSAGE_LIST/TODAY_AT":"Heute um %TIME%","MESSAGE_LIST/YESTERDAY_AT":"Gestern um %TIME%","MESSAGE_LIST/SEARCH_PLACEHOLDER":"Suche","MESSAGE_LIST/NEW_MESSAGE_NOTIFICATION":"Sie haben %COUNT% neue Nachrichten!","MESSAGE_LIST/QUOTA_SIZE":"Sie nutzen <strong>%SIZE% (%PROC%%)</strong> von <strong>%LIMIT%</strong>.","MESSAGE/BUTTON_EDIT":"Bearbeiten","MESSAGE/BUTTON_BACK":"Zurück","MESSAGE/BUTTON_CLOSE":"Schließen","MESSAGE/BUTTON_DELETE":"Löschen","MESSAGE/BUTTON_UNSUBSCRIBE":"Diese Liste abbestellen","MESSAGE/BUTTON_ARCHIVE":"Archiv","MESSAGE/BUTTON_SPAM":"Spam","MESSAGE/BUTTON_NOT_SPAM":"Kein Spam","MESSAGE/BUTTON_MOVE_TO":"Verschieben nach","MESSAGE/BUTTON_MORE":"Mehr","MESSAGE/BUTTON_REPLY":"Antworten","MESSAGE/BUTTON_REPLY_ALL":"Allen antworten","MESSAGE/BUTTON_FORWARD":"Weiterleiten","MESSAGE/BUTTON_FORWARD_AS_ATTACHMENT":"Als Anhang weiterleiten","MESSAGE/BUTTON_EDIT_AS_NEW":"Als neue Nachricht öffnen","MESSAGE/BUTTON_SHOW_IMAGES":"Bilder anzeigen","MESSAGE/BUTTON_NOTIFY_READ_RECEIPT":"Der Absender hat darum gebeten, benachrichtigt zu werden, wenn Sie diese Nachricht lesen.","MESSAGE/BUTTON_IN_NEW_WINDOW":"In neuem Fenster anzeigen","MESSAGE/BUTTON_THREAD_LIST":"Unterhaltungsliste","MESSAGE/BUTTON_THREAD_PREV":"Zurück","MESSAGE/BUTTON_THREAD_NEXT":"Weiter","MESSAGE/BUTTON_THREAD_MORE":"Mehr Nachrichten","MESSAGE/MENU_HEADERS":"Kopfzeilen anzeigen","MESSAGE/MENU_VIEW_ORIGINAL":"Original anzeigen","MESSAGE/MENU_DOWNLOAD_ORIGINAL":"Als .eml-Datei herunterladen","MESSAGE/MENU_FILTER_SIMILAR":"Ähnliche Nachrichten","MESSAGE/MENU_PRINT":"Drucken","MESSAGE/EMPTY_SUBJECT_TEXT":"(Kein Betreff)","MESSAGE/LABEL_SUBJECT":"Betreff","MESSAGE/LABEL_DATE":"Datum","MESSAGE/LABEL_FROM":"Von","MESSAGE/LABEL_FROM_SHORT":"von","MESSAGE/LABEL_TO":"An","MESSAGE/LABEL_TO_SHORT":"an","MESSAGE/LABEL_CC":"CC","MESSAGE/LABEL_BCC":"BCC","MESSAGE/LABEL_REPLY_TO":"Antwort an","MESSAGE/PRINT_LABEL_FROM":"Von","MESSAGE/PRINT_LABEL_TO":"An","MESSAGE/PRINT_LABEL_CC":"CC","MESSAGE/PRINT_LABEL_BCC":"BCC","MESSAGE/PRINT_LABEL_REPLY_TO":"Antwort an","MESSAGE/PRINT_LABEL_DATE":"Datum","MESSAGE/PRINT_LABEL_SUBJECT":"Betreff","MESSAGE/PRINT_LABEL_ATTACHMENTS":"Anhänge","MESSAGE/MESSAGE_LOADING":"Nachricht wird geladen","MESSAGE/MESSAGE_VIEW_DESC":"Wählen Sie eine Nachricht aus der Liste aus, um sie anzuzeigen.","MESSAGE/MESSAGE_VIEW_MOVE_DESC":"Klicke auf den Ordnernamen auf der linken Seite, um die Nachricht zu verschieben.","MESSAGE/PGP_PASSWORD_INPUT_PLACEHOLDER":"Passwort","MESSAGE/PGP_SIGNED_MESSAGE_DESC":"OpenPGP-signierte Nachricht (klicken, um zu überprüfen)","MESSAGE/PGP_ENCRYPTED_MESSAGE_DESC":"OpenPGP-verschlüsselte Nachricht (klicken, um zu entschlüsseln)","MESSAGE/LINK_DOWNLOAD_AS_ZIP":"Als ZIP-Datei herunterladen","MESSAGE/LINK_SAVE_TO_OWNCLOUD":"In ownCloud speichern","MESSAGE/LINK_SAVE_TO_CLOUD":"In der Cloud speichern","MESSAGE/LINK_SAVE_TO_DROPBOX":"In Dropbox speichern","READ_RECEIPT/SUBJECT":"Empfangsbestätigung (angezeigt) - %SUBJECT%","READ_RECEIPT/BODY":"Dies ist eine Empfangsbestätigung für die Nachricht, die Sie an %READ-RECEIPT% gesendet haben.\n\nHinweis: Diese Empfangsbestätigung bestätigt nur, dass die Nachricht auf dem Computer des Empfängers angezeigt wurde.\nEs besteht keine Garantie, dass der Empfänger den Inhalt der Nachricht gelesen oder verstanden hat.","SUGGESTIONS/SEARCHING_DESC":"Suche läuft...","CONTACTS/LEGEND_CONTACTS":"Kontakte","CONTACTS/SEARCH_INPUT_PLACEHOLDER":"Suche","CONTACTS/BUTTON_ADD_CONTACT":"Kontakt hinzufügen","CONTACTS/BUTTON_CREATE_CONTACT":"Kontakt anlegen","CONTACTS/BUTTON_UPDATE_CONTACT":"Kontakt aktualisieren","CONTACTS/BUTTON_IMPORT":"Import (csv, vcf, vCard)","CONTACTS/BUTTON_EXPORT_VCARD":"Export (vcf, vCard)","CONTACTS/BUTTON_EXPORT_CSV":"Export (csv)","CONTACTS/ERROR_IMPORT_FILE":"Importfehler (ungültiges Dateiformat)","CONTACTS/LIST_LOADING":"Kontakte werden geladen","CONTACTS/EMPTY_LIST":"Keine Kontakte","CONTACTS/EMPTY_SEARCH":"Keine Kontakte gefunden","CONTACTS/CLEAR_SEARCH":"Suche leeren","CONTACTS/CONTACT_VIEW_DESC":"Kontakt aus der Liste wählen, um ihn anzuzeigen.","CONTACTS/LABEL_DISPLAY_NAME":"Anzeigename","CONTACTS/LABEL_EMAIL":"E-Mail","CONTACTS/LABEL_PHONE":"Telefon","CONTACTS/LABEL_WEB":"Web","CONTACTS/LABEL_BIRTHDAY":"Geburtstag","CONTACTS/LINK_ADD_EMAIL":"E-Mail-Adresse hinzufügen","CONTACTS/LINK_ADD_PHONE":"Nummer hinzufügen","CONTACTS/LINK_BIRTHDAY":"Geburtstag","CONTACTS/PLACEHOLDER_ENTER_DISPLAY_NAME":"Anzeigename eingeben","CONTACTS/PLACEHOLDER_ENTER_LAST_NAME":"Nachnamen eingeben","CONTACTS/PLACEHOLDER_ENTER_FIRST_NAME":"Vornamen eingeben","CONTACTS/PLACEHOLDER_ENTER_NICK_NAME":"Spitzname eingeben","CONTACTS/LABEL_READ_ONLY":"Schreibgeschützt","CONTACTS/LABEL_SHARE":"Teilen","CONTACTS/ADD_MENU_LABEL":"Hinzufügen","CONTACTS/ADD_MENU_NICKNAME":"Spitzname","CONTACTS/ADD_MENU_NOTES":"Anmerkung","CONTACTS/ADD_MENU_EMAIL":"E-Mail","CONTACTS/ADD_MENU_PHONE":"Telefon","CONTACTS/ADD_MENU_URL":"URL","CONTACTS/ADD_MENU_ADDRESS":"Adresse","CONTACTS/ADD_MENU_BIRTHDAY":"Geburtstag","CONTACTS/ADD_MENU_TAGS":"Tags","CONTACTS/BUTTON_SHARE_NONE":"Niemand","CONTACTS/BUTTON_SHARE_ALL":"Jeder","CONTACTS/BUTTON_SYNC":"Synchronisierung (CardDAV)","COMPOSE/TITLE_FROM":"Von","COMPOSE/TITLE_TO":"An","COMPOSE/TITLE_CC":"CC","COMPOSE/TITLE_BCC":"BCC","COMPOSE/TITLE_REPLY_TO":"Antwort an","COMPOSE/TITLE_SUBJECT":"Betreff","COMPOSE/LINK_SHOW_INPUTS":"alle Felder anzeigen","COMPOSE/BUTTON_SEND":"Senden","COMPOSE/BUTTON_SAVE":"Speichern","COMPOSE/BUTTON_DELETE":"Löschen","COMPOSE/BUTTON_CANCEL":"Abbrechen","COMPOSE/BUTTON_MINIMIZE":"Minimieren","COMPOSE/SAVED_TIME":"Gespeichert um %TIME%","COMPOSE/SAVED_ERROR_ON_SEND":"Die Nachricht wurde gesendet, konnte aber nicht im Gesendet-Ordner gespeichert werden.","COMPOSE/DISCARD_UNSAVED_DATA":"Nicht gespeicherte Daten löschen?","COMPOSE/ATTACH_FILES":"Dateien anhängen","COMPOSE/ATTACH_DROP_FILES_DESC":"Fügen Sie hier Dateien ein","COMPOSE/ATTACH_ITEM_CANCEL":"Abbrechen","COMPOSE/DROPBOX":"Dropbox","COMPOSE/GOOGLE_DRIVE":"Google Drive","COMPOSE/REPLY_MESSAGE_TITLE":"%DATETIME%, %EMAIL% schrieb","COMPOSE/FORWARD_MESSAGE_TOP_TITLE":"-------- Weitergeleitete Nachricht -------","COMPOSE/FORWARD_MESSAGE_TOP_FROM":"Von","COMPOSE/FORWARD_MESSAGE_TOP_TO":"An","COMPOSE/FORWARD_MESSAGE_TOP_CC":"CC","COMPOSE/FORWARD_MESSAGE_TOP_SENT":"Gesendet","COMPOSE/FORWARD_MESSAGE_TOP_SUBJECT":"Betreff","COMPOSE/EMPTY_TO_ERROR_DESC":"Geben Sie bitte mindestens einen Empfänger an","COMPOSE/NO_ATTACHMENTS_HERE_DESC":"Keine Anhänge vorhanden.","COMPOSE/ATTACHMENTS_ERROR_DESC":"Warnung! Nicht alle Anhänge wurden hochgeladen.","COMPOSE/ATTACHMENTS_UPLOAD_ERROR_DESC":"Es wurden noch nicht alle Anhänge hochgeladen.","COMPOSE/BUTTON_REQUEST_READ_RECEIPT":"Empfangsbestätigung anfordern","COMPOSE/BUTTON_MARK_AS_IMPORTANT":"Als Wichtig markieren","COMPOSE/BUTTON_OPEN_PGP":"OpenPGP (nur bei unformatiertem Text)","COMPOSE/BUTTON_REQUEST_DSN":"Übermittlungsstatus anfordern","POPUPS_WELCOME_PAGE/BUTTON_CLOSE":"Schließen","POPUPS_ASK/BUTTON_YES":"Ja","POPUPS_ASK/BUTTON_NO":"Nein","POPUPS_ASK/DESC_WANT_CLOSE_THIS_WINDOW":"Sind Sie sicher, dass Sie dieses Fenster schließen möchten?","POPUPS_ASK/DESC_WANT_DELETE_MESSAGES":"Sind Sie sicher, dass Sie diese Nachricht(en) löschen möchten?","POPUPS_LANGUAGES/TITLE_LANGUAGES":"Sprache auswählen","POPUPS_ADD_ACCOUNT/TITLE_ADD_ACCOUNT":"Konto hinzufügen?","POPUPS_ADD_ACCOUNT/BUTTON_ADD_ACCOUNT":"Hinzufügen","POPUPS_ADD_ACCOUNT/TITLE_UPDATE_ACCOUNT":"Konto aktualisieren?","POPUPS_ADD_ACCOUNT/BUTTON_UPDATE_ACCOUNT":"Aktualisieren","POPUPS_IDENTITY/TITLE_ADD_IDENTITY":"Identität hinzufügen?","POPUPS_IDENTITY/TITLE_UPDATE_IDENTITY":"Identität aktualisieren?","POPUPS_IDENTITY/BUTTON_ADD_IDENTITY":"Hinzufügen","POPUPS_IDENTITY/BUTTON_UPDATE_IDENTITY":"Aktualisieren","POPUPS_IDENTITY/LABEL_EMAIL":"E-Mail","POPUPS_IDENTITY/LABEL_NAME":"Name","POPUPS_IDENTITY/LABEL_REPLY_TO":"Antwort an","POPUPS_IDENTITY/LABEL_SIGNATURE":"Signatur","POPUPS_IDENTITY/LABEL_CC":"CC","POPUPS_IDENTITY/LABEL_BCC":"BCC","POPUPS_IDENTITY/LABEL_SIGNATURE_INSERT_BEFORE":"Diese Signatur in Antworten vor dem zitierten Text einfügen","POPUPS_CREATE_FOLDER/TITLE_CREATE_FOLDER":"Ordner anlegen?","POPUPS_CREATE_FOLDER/LABEL_NAME":"Ordnername","POPUPS_CREATE_FOLDER/LABEL_PARENT":"Übergeordneter Ordner","POPUPS_CREATE_FOLDER/BUTTON_CREATE":"Anlegen","POPUPS_CREATE_FOLDER/BUTTON_CANCEL":"Abbrechen","POPUPS_CREATE_FOLDER/BUTTON_CLOSE":"Schließen","POPUPS_CREATE_FOLDER/TITLE_CREATING_PROCESS":"Ordner wird angelegt","POPUPS_CLEAR_FOLDER/TITLE_CLEAR_FOLDER":"Alle Nachrichten in diesem Ordner löschen?","POPUPS_CLEAR_FOLDER/BUTTON_CLEAR":"Bereinigen","POPUPS_CLEAR_FOLDER/BUTTON_CANCEL":"Abbrechen","POPUPS_CLEAR_FOLDER/BUTTON_CLOSE":"Schließen","POPUPS_CLEAR_FOLDER/DANGER_DESC_WARNING":"Achtung!","POPUPS_CLEAR_FOLDER/DANGER_DESC_HTML_1":"Dieser Schritt wird alle Nachrichten im Ordner <strong>%FOLDER%</strong> endgültig löschen.","POPUPS_CLEAR_FOLDER/DANGER_DESC_HTML_2":"Einmal begonnen, kann dieser Vorgang nicht mehr abgebrochen oder beendet werden.","POPUPS_CLEAR_FOLDER/TITLE_CLEARING_PROCESS":"Ordner wird gelöscht ...","POPUPS_IMPORT_OPEN_PGP_KEY/TITLE_IMPORT_OPEN_PGP_KEY":"OpenPGP-Schlüssel importieren","POPUPS_IMPORT_OPEN_PGP_KEY/BUTTON_IMPORT_OPEN_PGP_KEY":"Importieren","POPUPS_VIEW_OPEN_PGP_KEY/TITLE_VIEW_OPEN_PGP_KEY":"OpenPGP-Schlüssel anzeigen","POPUPS_VIEW_OPEN_PGP_KEY/BUTTON_SELECT":"Auswählen","POPUPS_VIEW_OPEN_PGP_KEY/BUTTON_CLOSE":"Schließen","POPUPS_GENERATE_OPEN_PGP_KEYS/TITLE_GENERATE_OPEN_PGP_KEYS":"OpenPGP-Schlüssel generieren","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_EMAIL":"E-Mail","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_NAME":"Name","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_PASSWORD":"Passwort","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_KEY_BIT_LENGTH":"Schlüssellänge","POPUPS_GENERATE_OPEN_PGP_KEYS/BUTTON_GENERATE_OPEN_PGP_KEYS":"Generieren","POPUPS_COMPOSE_OPEN_PGP/TITLE_COMPOSE_OPEN_PGP":"OpenPGP unterschreiben/verschlüsseln","POPUPS_COMPOSE_OPEN_PGP/LABEL_SIGN":"Unterschrift","POPUPS_COMPOSE_OPEN_PGP/LABEL_ENCRYPT":"Verschlüsselung","POPUPS_COMPOSE_OPEN_PGP/LABEL_PASSWORD":"Passwort","POPUPS_COMPOSE_OPEN_PGP/BUTTON_SIGN":"Unterschreiben","POPUPS_COMPOSE_OPEN_PGP/BUTTON_ENCRYPT":"Verschlüsseln","POPUPS_COMPOSE_OPEN_PGP/BUTTON_SIGN_AND_ENCRYPT":"Unterschreiben und verschlüsseln","POPUPS_MESSAGE_OPEN_PGP/TITLE_MESSAGE_OPEN_PGP":"OpenPGP Decrypt","POPUPS_MESSAGE_OPEN_PGP/LABEL_KEY":"Private Key","POPUPS_MESSAGE_OPEN_PGP/LABEL_PASSWORD":"Password","POPUPS_MESSAGE_OPEN_PGP/BUTTON_DECRYPT":"Decrypt","POPUPS_TWO_FACTOR_TEST/TITLE_TEST_CODE":"Zwei-Faktor-Authentifizierung","POPUPS_TWO_FACTOR_TEST/LABEL_CODE":"Code","POPUPS_TWO_FACTOR_TEST/BUTTON_TEST":"Testen","POPUPS_FILTER/TITLE_CREATE_FILTER":"Filter erstellen?","POPUPS_FILTER/TITLE_EDIT_FILTER":"Filter bearbeiten?","POPUPS_FILTER/FILTER_NAME":"Name","POPUPS_FILTER/LEGEND_CONDITIONS":"Bedingungen","POPUPS_FILTER/LEGEND_ACTIONS":"Aktionen","POPUPS_FILTER/BUTTON_DONE":"Erledigt","POPUPS_FILTER/BUTTON_ADD_CONDITION":"Bedingung hinzufügen","POPUPS_FILTER/SELECT_ACTION_NONE":"Keine","POPUPS_FILTER/SELECT_ACTION_MOVE_TO":"Verschieben nach","POPUPS_FILTER/SELECT_ACTION_FORWARD_TO":"Weiterleiten nach","POPUPS_FILTER/SELECT_ACTION_REJECT":"Ablehnen","POPUPS_FILTER/SELECT_ACTION_VACATION_MESSAGE":"Urlaubsbenachrichtigung","POPUPS_FILTER/SELECT_ACTION_DISCARD":"Verwerfen","POPUPS_FILTER/SELECT_FIELD_FROM":"Von","POPUPS_FILTER/SELECT_FIELD_RECIPIENTS":"Empfänger (An oder CC)","POPUPS_FILTER/SELECT_FIELD_SUBJECT":"Betreff","POPUPS_FILTER/SELECT_FIELD_HEADER":"Nachrichtenkopf","POPUPS_FILTER/SELECT_FIELD_SIZE":"Größe","POPUPS_FILTER/SELECT_TYPE_CONTAINS":"Enthält","POPUPS_FILTER/SELECT_TYPE_NOT_CONTAINS":"Enthält nicht","POPUPS_FILTER/SELECT_TYPE_MATCHES":"Übereinstimmung (* und ? unterstützt)","POPUPS_FILTER/SELECT_TYPE_NOT_MATCHES":"Keine Übereinstimmung (* und ? unterstützt)","POPUPS_FILTER/SELECT_TYPE_REGEXP":"Regulärer Ausdruck","POPUPS_FILTER/SELECT_TYPE_NOT_REGEXP":"Regulärer Ausdruck (negiert)","POPUPS_FILTER/SELECT_TYPE_EQUAL_TO":"Gleich","POPUPS_FILTER/SELECT_TYPE_NOT_EQUAL_TO":"Ungleich","POPUPS_FILTER/SELECT_TYPE_OVER":"Über","POPUPS_FILTER/SELECT_TYPE_UNDER":"Unter","POPUPS_FILTER/SELECT_MATCH_ANY":"Eine der folgenden Regeln trifft zu","POPUPS_FILTER/SELECT_MATCH_ALL":"Alle folgenden Regeln treffen zu","POPUPS_FILTER/MARK_AS_READ_LABEL":"Als Gelesen markieren","POPUPS_FILTER/REPLY_INTERVAL_LABEL":"Antwortintervall (Tage)","POPUPS_FILTER/KEEP_LABEL":"Behalten","POPUPS_FILTER/STOP_LABEL":"Weiterverarbeitung der Regeln nicht verhindern","POPUPS_FILTER/EMAIL_LABEL":"E-Mail","POPUPS_FILTER/VACATION_SUBJECT_LABEL":"Betreff (optional)","POPUPS_FILTER/VACATION_MESSAGE_LABEL":"Nachricht","POPUPS_FILTER/VACATION_RECIPIENTS_LABEL":"Empfänger (durch Komma getrennt)","POPUPS_FILTER/REJECT_MESSAGE_LABEL":"Ablehnnachricht","POPUPS_FILTER/ALL_INCOMING_MESSAGES_DESC":"Alle eingehenden Nachrichten","POPUPS_SYSTEM_FOLDERS/TITLE_SYSTEM_FOLDERS":"Wählen Sie die Systemordner aus","POPUPS_SYSTEM_FOLDERS/SELECT_CHOOSE_ONE":"Wählen Sie einen aus","POPUPS_SYSTEM_FOLDERS/SELECT_UNUSE_NAME":"Nicht anwenden","POPUPS_SYSTEM_FOLDERS/LABEL_SENT":"Gesendet","POPUPS_SYSTEM_FOLDERS/LABEL_DRAFTS":"Entwürfe","POPUPS_SYSTEM_FOLDERS/LABEL_SPAM":"Spam","POPUPS_SYSTEM_FOLDERS/LABEL_TRASH":"Papierkorb","POPUPS_SYSTEM_FOLDERS/LABEL_ARCHIVE":"Archiv","POPUPS_SYSTEM_FOLDERS/BUTTON_CANCEL":"Abbrechen","POPUPS_SYSTEM_FOLDERS/BUTTON_CLOSE":"Schließen","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_SENT":"Sie haben keinen \"Gesendet\"-Systemordner gewählt, in dem Nachrichten nach dem Versenden gespeichert werden.\nFalls Sie versandte Nachrichten nicht speichern möchten, wählen Sie die Option \"Nicht anwenden\".","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_DRAFTS":"Sie haben keinen \"Entwürfe\"-Systemordner gewählt, in dem Nachrichten beim Erstellen gespeichert werden.","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_SPAM":"Sie haben keinen \"Spam\"-Systemordner gewählt, in dem die Spam-Nachrichten abgelegt werden.\nFalls Sie Spam-Nachrichten endgültig löschen möchten, wählen Sie die Option \"Nicht anwenden\".","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_TRASH":"Sie haben keinen \"Papierkorb\"-Systemordner gewählt, in dem die gelöschten Nachrichten abgelegt werden.\nFalls Sie gelöschte Nachrichten endgültig löschen möchten, wählen Sie die Option \"Nicht anwenden\".","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_ARCHIVE":"Sie haben keinen \"Archiv\"-Systemordner gewählt, in dem die archivierten Nachrichten abgelegt werden.","POPUPS_TWO_FACTOR_CFG/LEGEND_TWO_FACTOR_AUTH":"Zwei-Faktor-Authentifizierung","POPUPS_TWO_FACTOR_CFG/LABEL_ENABLE_TWO_FACTOR":"Zwei-Faktor-Authentifizierung aktivieren","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_USER":"Benutzer","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_STATUS":"Status","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_SECRET":"Geheimnis","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_BACKUP_CODES":"Sicherungscodes","POPUPS_TWO_FACTOR_CFG/BUTTON_CREATE":"Neues Geheimnis erstellen","POPUPS_TWO_FACTOR_CFG/BUTTON_ACTIVATE":"Aktivieren","POPUPS_TWO_FACTOR_CFG/BUTTON_CLEAR":"Löschen","POPUPS_TWO_FACTOR_CFG/BUTTON_LOGOUT":"Abmelden","POPUPS_TWO_FACTOR_CFG/BUTTON_DONE":"Erledigt","POPUPS_TWO_FACTOR_CFG/BUTTON_TEST":"Test","POPUPS_TWO_FACTOR_CFG/LINK_TEST":"test","POPUPS_TWO_FACTOR_CFG/BUTTON_SHOW_SECRET":"Geheimnis einblenden","POPUPS_TWO_FACTOR_CFG/BUTTON_HIDE_SECRET":"Geheminis ausblenden","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_REQUIRE_DESC":"Ihr Benutzerkonto erfordert die Einrichtung der Zwei-Faktor-Authentifizierung.","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_CONFIGURED_DESC":"Konfiguriert","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_NOT_CONFIGURED_DESC":"Nicht konfiguriert","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_DESC":"Importieren Sie diese Information in Ihre Google-Authenticator-Anwendung (oder andere TOTP-Anwendung), indem Sie den unten bereitgestellten QR-Code verwenden oder den Code manuell eingeben.","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_BACKUP_CODES_DESC":"Sollten Sie keine Codes über den Google Authenticator erhalten, können Sie einen Sicherungscode zur Anmeldung verwenden. Der Sicherungscode wird inaktiv, sobald Sie ihn zur Anmeldung verwendet haben.","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_TEST_BEFORE_DESC":"Sie können diese Einstellung nicht ohne vorherigen Test verändern.","TITLES/LOADING":"Wird geladen","TITLES/LOGIN":"Anmeldung","TITLES/MAILBOX":"Postfach","TITLES/SETTINGS":"Einstellungen","TITLES/COMPOSE":"Erstellen","UPLOAD/ERROR_FILE_IS_TOO_BIG":"Datei ist zu groß","UPLOAD/ERROR_FILE_PARTIALLY_UPLOADED":"Die Datei wurde aus einem unbekannten Grund unvollständig hochgeladen.","UPLOAD/ERROR_NO_FILE_UPLOADED":"Keine Datei hochgeladen","UPLOAD/ERROR_MISSING_TEMP_FOLDER":"Die temporäre Datei fehlt","UPLOAD/ERROR_ON_SAVING_FILE":"Ein unbekannter Fehler trat beim Hochladen auf","UPLOAD/ERROR_FILE_TYPE":"Ungültiger Dateityp","UPLOAD/ERROR_UNKNOWN":"Ein unbekannter Fehler trat beim Hochladen auf","EDITOR/TEXT_SWITCHER_PLAINT_TEXT":"HTML <-> TEXT","EDITOR/TEXT_SWITCHER_RICH_FORMATTING":"Formatierter Text (Rich Text)","EDITOR/TEXT_SWITCHER_CONFIRM":"Alle Textformatierungen und Grafiken gehen verloren. Wollen Sie wirklich fortfahren?","SETTINGS_LABELS/LABEL_PERSONAL_NAME":"Persönlich","SETTINGS_LABELS/LABEL_GENERAL_NAME":"Allgemein","SETTINGS_LABELS/LABEL_CONTACTS_NAME":"Kontakte","SETTINGS_LABELS/LABEL_FOLDERS_NAME":"Ordner","SETTINGS_LABELS/LABEL_ACCOUNTS_NAME":"Konten","SETTINGS_LABELS/LABEL_IDENTITY_NAME":"Identität","SETTINGS_LABELS/LABEL_IDENTITIES_NAME":"Identitäten","SETTINGS_LABELS/LABEL_FILTERS_NAME":"Filter","SETTINGS_LABELS/LABEL_TEMPLATES_NAME":"Vorlagen","SETTINGS_LABELS/LABEL_SECURITY_NAME":"Sicherheit","SETTINGS_LABELS/LABEL_SOCIAL_NAME":"Social","SETTINGS_LABELS/LABEL_THEMES_NAME":"Themen","SETTINGS_LABELS/LABEL_CHANGE_PASSWORD_NAME":"Passwort","SETTINGS_LABELS/LABEL_OPEN_PGP_NAME":"OpenPGP","SETTINGS_LABELS/BUTTON_BACK":"Zurück","SETTINGS_FILTERS/LEGEND_FILTERS":"Filter","SETTINGS_FILTERS/BUTTON_SAVE":"Speichern","SETTINGS_FILTERS/BUTTON_ADD_FILTER":"Filter hinzufügen","SETTINGS_FILTERS/BUTTON_DELETE":"Löschen","SETTINGS_FILTERS/BUTTON_RAW_SCRIPT":"Benutzerdefiniertes Skript verwenden","SETTINGS_FILTERS/SUBNAME_NONE":"Keine","SETTINGS_FILTERS/SUBNAME_MOVE_TO":"Verschieben nach \"%FOLDER%\"","SETTINGS_FILTERS/SUBNAME_FORWARD_TO":"Weiterleiten nach \"%EMAIL%\"","SETTINGS_FILTERS/SUBNAME_REJECT":"Ablehnen","SETTINGS_FILTERS/SUBNAME_VACATION_MESSAGE":"Urlaubsbenachrichtigung","SETTINGS_FILTERS/SUBNAME_DISCARD":"Verwerfen","SETTINGS_FILTERS/CAPABILITY_LABEL":"Unterstützte Module","SETTINGS_FILTERS/LOADING_PROCESS":"Aktualisiere Filterliste","SETTINGS_FILTERS/DELETING_ASK":"Sind Sie sicher?","SETTINGS_FILTERS/CHACHES_NEED_TO_BE_SAVED_DESC":"Die Änderungen müssen auf dem Server gespeichert werden.","SETTINGS_IDENTITY/LEGEND_IDENTITY":"Identität","SETTINGS_IDENTITY/LABEL_DISPLAY_NAME":"Name","SETTINGS_IDENTITY/LABEL_REPLY_TO":"Antwort an","SETTINGS_IDENTITY/LABEL_SIGNATURE":"Signatur","SETTINGS_IDENTITY/LABEL_ADD_SIGNATURE_TO_ALL":"Signatur zu allen ausgehenden Nachrichten hinzufügen","SETTINGS_SECURITY/LEGEND_SECURITY":"Sicherheit","SETTINGS_SECURITY/LABEL_CONFIGURE_TWO_FACTOR":"Zwei-Faktor-Authentifizierung konfigurieren","SETTINGS_SECURITY/LABEL_AUTOLOGOUT":"Automatische Abmeldung","SETTINGS_SECURITY/AUTOLOGIN_NEVER_OPTION_NAME":"Nie","SETTINGS_SECURITY/AUTOLOGIN_MINUTES_OPTION_NAME":"%MINUTES% Minute(n)","SETTINGS_SECURITY/AUTOLOGIN_HOURS_OPTION_NAME":"%HOURS% Stunde(n)","SETTINGS_GENERAL/LEGEND_GENERAL":"Allgemein","SETTINGS_GENERAL/LABEL_LANGUAGE":"Sprache","SETTINGS_GENERAL/LABEL_IDENTITY":"Identity","SETTINGS_GENERAL/LABEL_LAYOUT":"Layout","SETTINGS_GENERAL/LABEL_LAYOUT_NO_SPLIT":"Keine Aufteilung","SETTINGS_GENERAL/LABEL_LAYOUT_VERTICAL_SPLIT":"Vertikale Aufteilung","SETTINGS_GENERAL/LABEL_LAYOUT_HORIZONTAL_SPLIT":"Horizontale Aufteilung","SETTINGS_GENERAL/LABEL_EDITOR":"Standard-Texteditor","SETTINGS_GENERAL/LABEL_EDITOR_HTML":"HTML","SETTINGS_GENERAL/LABEL_EDITOR_PLAIN":"Unformatierter Text","SETTINGS_GENERAL/LABEL_EDITOR_HTML_FORCED":"HTML (erzwungen)","SETTINGS_GENERAL/LABEL_EDITOR_PLAIN_FORCED":"Unformatierter Text (erzwungen)","SETTINGS_GENERAL/LABEL_ANIMATION":"Interface-Animation","SETTINGS_GENERAL/LABEL_ANIMATION_FULL":"Komplett","SETTINGS_GENERAL/LABEL_ANIMATION_NORMAL":"Normal","SETTINGS_GENERAL/LABEL_ANIMATION_NONE":"Keine","SETTINGS_GENERAL/LABEL_VIEW_OPTIONS":"Optionen anzeigen","SETTINGS_GENERAL/LABEL_USE_PREVIEW_PANE":"Vorschaufenster nutzen","SETTINGS_GENERAL/LABEL_USE_CHECKBOXES_IN_LIST":"Kontrollkästchen in der Liste anzeigen","SETTINGS_GENERAL/LABEL_USE_THREADS":"Als Unterhaltungen anzeigen","SETTINGS_GENERAL/LABEL_REPLY_SAME_FOLDER":"Antworten im gleichen Ordner wie die Nachricht, auf die geantwortet wurde, abspeichern","SETTINGS_GENERAL/LABEL_SHOW_IMAGES":"In der Nachricht enthaltene Bilder immer anzeigen","SETTINGS_GENERAL/LABEL_SHOW_ANIMATION":"Animation anzeigen","SETTINGS_GENERAL/LABEL_MESSAGE_PER_PAGE":"Nachrichten pro Seite","SETTINGS_GENERAL/LABEL_NOTIFICATIONS":"Benachrichtigungen","SETTINGS_GENERAL/LABEL_SOUND_NOTIFICATION":"Benachrichtigungston","SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC":"Popups einblenden, wenn neue Nachrichten vorhanden sind","SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC_DENIED":"(Vom Browser blockiert.)","SETTINGS_CONTACTS/LEGEND_CONTACTS":"Kontakte","SETTINGS_CONTACTS/LABEL_CONTACTS_AUTOSAVE":"Empfänger automatisch zu Ihrem Adressbuch hinzuzufügen","SETTINGS_CONTACTS/LEGEND_CONTACTS_SYNC":"Remote-Synchronisierung (CardDAV)","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_ENABLE":"Remote-Synchronisierung aktivieren","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_SERVER":"Server","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_AB_URL":"Adressbuch-URL","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_USER":"Benutzer","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_PASSWORD":"Passwort","SETTINGS_THEMES/LEGEND_THEMES":"Themen","SETTINGS_THEMES/LEGEND_THEMES_CUSTOM":"Konfiguration der selbsterstellten Themen","SETTINGS_THEMES/LABEL_CUSTOM_TYPE":"Typ","SETTINGS_THEMES/LABEL_CUSTOM_TYPE_LIGHT":"Hell","SETTINGS_THEMES/LABEL_CUSTOM_TYPE_DARK":"Dunkel","SETTINGS_THEMES/LABEL_CUSTOM_BACKGROUND_IMAGE":"Hintergrund","SETTINGS_THEMES/BUTTON_UPLOAD_BACKGROUND_IMAGE":"Hintergrundbild hochladen (JPG, PNG)","SETTINGS_THEMES/ERROR_FILE_IS_TOO_BIG":"Datei ist zu groß","SETTINGS_THEMES/ERROR_FILE_TYPE_ERROR":"Ungültiger Dateityp (nur JPG und PNG)","SETTINGS_THEMES/ERROR_UNKNOWN":"Ein unbekannter Fehler trat beim Hochladen auf","SETTINGS_SOCIAL/LEGEND_GOOGLE":"Google","SETTINGS_SOCIAL/BUTTON_GOOGLE_CONNECT":"Mit Google verbinden","SETTINGS_SOCIAL/BUTTON_GOOGLE_DISCONNECT":"Von Google abmelden","SETTINGS_SOCIAL/MAIN_GOOGLE_DESC":"Nach der Aktivierung der Anmeldung per Google können Sie sich hier mit dem Google-Button im Anmeldedialog anmelden.","SETTINGS_SOCIAL/LEGEND_FACEBOOK":"Facebook","SETTINGS_SOCIAL/BUTTON_FACEBOOK_CONNECT":"Mit Facebook verbinden","SETTINGS_SOCIAL/BUTTON_FACEBOOK_DISCONNECT":"Von Facebook abmelden","SETTINGS_SOCIAL/MAIN_FACEBOOK_DESC":"Nach der Aktivierung der Anmeldung per Facebook können Sie sich hier mit dem Facebook-Button im Anmeldedialog anmelden.","SETTINGS_SOCIAL/LEGEND_TWITTER":"Twitter","SETTINGS_SOCIAL/BUTTON_TWITTER_CONNECT":"Mit Twitter verbinden","SETTINGS_SOCIAL/BUTTON_TWITTER_DISCONNECT":"Von Twitter abmelden","SETTINGS_SOCIAL/MAIN_TWITTER_DESC":"Nach der Aktivierung der Anmeldung per Twitter können Sie sich hier mit dem Twitter-Button im Anmeldedialog anmelden.","SETTINGS_FOLDERS/LEGEND_FOLDERS":"Ordnerliste","SETTINGS_FOLDERS/BUTTON_CREATE":"Ordner anlegen","SETTINGS_FOLDERS/BUTTON_SYSTEM":"Systemordner","SETTINGS_FOLDERS/BUTTON_DELETE":"Löschen","SETTINGS_FOLDERS/BUTTON_SUBSCRIBE":"Abonnieren","SETTINGS_FOLDERS/BUTTON_UNSUBSCRIBE":"Abonnement beenden","SETTINGS_FOLDERS/LOADING_PROCESS":"Ordnerliste wird geladen","SETTINGS_FOLDERS/CREATING_PROCESS":"Ordner wird angelegt","SETTINGS_FOLDERS/DELETING_PROCESS":"Ordner wird gelöscht","SETTINGS_FOLDERS/RENAMING_PROCESS":"Ordner wird umbenannt","SETTINGS_FOLDERS/DELETING_ASK":"Sind Sie sicher?","SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_1":"Sie haben zu viele Ordner!","SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_2":"Aus Leistungsgründen zeigen wir nur einen Teil davon an.","SETTINGS_FOLDERS/HELP_DELETE_FOLDER":"Ordner löschen","SETTINGS_FOLDERS/HELP_SHOW_HIDE_FOLDER":"Ordner ein-/ausblenden","SETTINGS_FOLDERS/HELP_CHECK_FOR_NEW_MESSAGES":"Auf neue Nachrichten prüfen/nicht prüfen","SETTINGS_ACCOUNTS/LEGEND_ACCOUNTS":"Konten","SETTINGS_ACCOUNTS/LEGEND_IDENTITIES":"Identitäten","SETTINGS_ACCOUNTS/LEGEND_ACCOUNTS_AND_IDENTITIES":"Konten und Identitäten","SETTINGS_ACCOUNTS/BUTTON_ADD_ACCOUNT":"Konto hinzufügen","SETTINGS_ACCOUNTS/BUTTON_ADD_IDENTITY":"Identität hinzufügen","SETTINGS_ACCOUNTS/BUTTON_DELETE":"Löschen","SETTINGS_ACCOUNTS/LOADING_PROCESS":"Aktualisiere Kontenliste","SETTINGS_ACCOUNTS/DELETING_ASK":"Sind Sie sicher?","SETTINGS_ACCOUNTS/DEFAULT_IDENTITY_LABEL":"Standard","SETTINGS_IDENTITIES/LEGEND_IDENTITY":"Identität","SETTINGS_IDENTITIES/LEGEND_IDENTITIES":"Zusätzliche Identitäten","SETTINGS_IDENTITIES/LABEL_DEFAULT":"Standard","SETTINGS_IDENTITIES/LABEL_DISPLAY_NAME":"Name","SETTINGS_IDENTITIES/LABEL_REPLY_TO":"Antwort an","SETTINGS_IDENTITIES/LABEL_SIGNATURE":"Signatur","SETTINGS_IDENTITIES/LABEL_ADD_SIGNATURE_TO_ALL":"Signatur zu allen ausgehenden Nachrichten hinzufügen","SETTINGS_IDENTITIES/BUTTON_ADD_IDENTITY":"Identität hinzufügen","SETTINGS_IDENTITIES/BUTTON_DELETE":"Löschen","SETTINGS_IDENTITIES/LOADING_PROCESS":"Aktualisiere Identitätsliste","SETTINGS_IDENTITIES/DELETING_ASK":"Sind Sie sicher?","SETTINGS_CHANGE_PASSWORD/LEGEND_CHANGE_PASSWORD":"Passwort ändern","SETTINGS_CHANGE_PASSWORD/LABEL_CURRENT_PASSWORD":"Aktuelles Passwort","SETTINGS_CHANGE_PASSWORD/LABEL_NEW_PASSWORD":"Neues Passwort","SETTINGS_CHANGE_PASSWORD/LABEL_REPEAT_PASSWORD":"Neues Passwort bestätigen","SETTINGS_CHANGE_PASSWORD/BUTTON_UPDATE_PASSWORD":"Neues Passwort setzen","SETTINGS_CHANGE_PASSWORD/ERROR_PASSWORD_MISMATCH":"Passwörter stimmen nicht überein; versuchen Sie es bitte erneut","SETTINGS_OPEN_PGP/LEGEND_OPEN_PGP":"OpenPGP","SETTINGS_OPEN_PGP/BUTTON_ADD_OPEN_PGP_KEY":"OpenPGP-Schlüssel importieren","SETTINGS_OPEN_PGP/BUTTON_GENERATE_OPEN_PGP_KEYS":"OpenPGP-Schlüssel generieren","SETTINGS_OPEN_PGP/TITLE_PRIVATE":"Privat","SETTINGS_OPEN_PGP/TITLE_PUBLIC":"Öffentlich","SETTINGS_OPEN_PGP/DELETING_ASK":"Sind Sie sicher?","SETTINGS_OPEN_PGP/GENERATE_ONLY_HTTPS":"Nur HTTPS","SETTINGS_OPEN_PGP/LABEL_ALLOW_DRAFT_AUTOSAVE":"Automatisch Entwurf speichern","SHORTCUTS_HELP/LEGEND_SHORTCUTS_HELP":"Tastaturkürzel-Hilfe","SHORTCUTS_HELP/TAB_MAILBOX":"Postfach","SHORTCUTS_HELP/TAB_MESSAGE_LIST":"Nachrichtenliste","SHORTCUTS_HELP/TAB_MESSAGE_VIEW":"Nachrichtenansicht","SHORTCUTS_HELP/TAB_COMPOSE":"Nachricht schreiben","SHORTCUTS_HELP/LABEL_OPEN_USER_DROPDOWN":"Benutzerauswahl öffnen","SHORTCUTS_HELP/LABEL_REPLY":"Antworten","SHORTCUTS_HELP/LABEL_REPLY_ALL":"Allen Antworten","SHORTCUTS_HELP/LABEL_FORWARD":"Weiterleiten","SHORTCUTS_HELP/LABEL_FORWARD_MULTIPLY":"Als Anhang/Anhänge weiterleiten","SHORTCUTS_HELP/LABEL_HELP":"Hilfe","SHORTCUTS_HELP/LABEL_CHECK_ALL":"Alle Nachrichten auswählen","SHORTCUTS_HELP/LABEL_ARCHIVE":"Archivieren","SHORTCUTS_HELP/LABEL_DELETE":"Löschen","SHORTCUTS_HELP/LABEL_OPEN_THREAD":"Ausgewählte Unterhaltung öffnen","SHORTCUTS_HELP/LABEL_MOVE":"Verschieben","SHORTCUTS_HELP/LABEL_READ":"Ausgewählte Nachrichten als gelesen markieren","SHORTCUTS_HELP/LABEL_UNREAD":"Ausgewählte Nachrichten als ungelesen markieren","SHORTCUTS_HELP/LABEL_IMPORTANT":"Wichtig, ausgewählte Nachrichten markieren","SHORTCUTS_HELP/LABEL_SEARCH":"Suchen","SHORTCUTS_HELP/LABEL_CANCEL_SEARCH":"Suche abbrechen","SHORTCUTS_HELP/LABEL_FULLSCREEN_ENTER":"Vollbild (Vorschaubereich-Layout)","SHORTCUTS_HELP/LABEL_VIEW_MESSAGE_ENTER":"Nachricht anzeigen (kein Vorschaubereich-Layout)","SHORTCUTS_HELP/LABEL_SWITCH_TO_MESSAGE":"Fokus auf ausgewählte Nachricht schalten","SHORTCUTS_HELP/LABEL_SWITCH_TO_FOLDER_LIST":"Fokus auf Ordnerliste schalten","SHORTCUTS_HELP/LABEL_FULLSCREEN_TOGGLE":"Vollbildmodus umschalten","SHORTCUTS_HELP/LABEL_BLOCKQUOTES_TOGGLE":"Nachrichten-Blockzitate umschalten","SHORTCUTS_HELP/LABEL_THREAD_NEXT":"Nächste Nachricht in Unterhaltung","SHORTCUTS_HELP/LABEL_THREAD_PREV":"Vorherige Nachricht in Unterhaltung","SHORTCUTS_HELP/LABEL_PRINT":"Drucken","SHORTCUTS_HELP/LABEL_EXIT_FULLSCREEN":"Vollbildmodus verlassen","SHORTCUTS_HELP/LABEL_CLOSE_MESSAGE":"Nachricht schließen (kein Vorschaubereich-Layout)","SHORTCUTS_HELP/LABEL_SWITCH_TO_LIST":"Fokus auf Nachrichtenliste zurückschalten","SHORTCUTS_HELP/LABEL_OPEN_COMPOSE_POPUP":"Erstellen-Popup öffnen","SHORTCUTS_HELP/LABEL_MINIMIZE_COMPOSE_POPUP":"Minimize compose popup","SHORTCUTS_HELP/LABEL_OPEN_IDENTITIES_DROPDOWN":"Identitätsauswahl öffnen","SHORTCUTS_HELP/LABEL_SAVE_MESSAGE":"Nachricht speichern","SHORTCUTS_HELP/LABEL_SEND_MESSAGE":"Nachricht senden","SHORTCUTS_HELP/LABEL_CLOSE_COMPOSE":"Popup schließen","PGP_NOTIFICATIONS/NO_PUBLIC_KEYS_FOUND":"Keine öffentlichen Schlüssel gefunden","PGP_NOTIFICATIONS/NO_PUBLIC_KEYS_FOUND_FOR":"Keine öffentlichen Schlüssel für die E-Mail \"%EMAIL%\" gefunden","PGP_NOTIFICATIONS/NO_PRIVATE_KEY_FOUND":"Keine privaten Schlüssel gefunden","PGP_NOTIFICATIONS/NO_PRIVATE_KEY_FOUND_FOR":"Keine privaten Schlüssel für die E-Mail \"%EMAIL%\" gefunden","PGP_NOTIFICATIONS/ADD_A_PUBLICK_KEY":"Öffentlicher Schlüssel hinzufügen","PGP_NOTIFICATIONS/SELECT_A_PRIVATE_KEY":"Privaten Schlüssel auswählen","PGP_NOTIFICATIONS/UNVERIFIRED_SIGNATURE":"Nich verifizierte Unterschrift","PGP_NOTIFICATIONS/DECRYPTION_ERROR":"OpenPGP-Entschlüsselungsfehler","PGP_NOTIFICATIONS/GOOD_SIGNATURE":"Gültige Unterschrift von %USER%","PGP_NOTIFICATIONS/PGP_ERROR":"OpenPGP-Fehler: %ERROR%","PGP_NOTIFICATIONS/SPECIFY_FROM_EMAIL":"Bitte die VON-E-Mail-Adresse angeben","PGP_NOTIFICATIONS/SPECIFY_AT_LEAST_ONE_RECIPIENT":"Bitte geben Sie mindestens einen Empfänger an","NOTIFICATIONS/INVALID_TOKEN":"Ungültiger Token","NOTIFICATIONS/AUTH_ERROR":"Authentifizierung fehlgeschlagen","NOTIFICATIONS/ACCESS_ERROR":"Zugriffsfehler","NOTIFICATIONS/CONNECTION_ERROR":"Serververbindung kann nicht hergestellt werden","NOTIFICATIONS/CAPTCHA_ERROR":"Falsche CAPTCHA-Eingabe.","NOTIFICATIONS/SOCIAL_FACEBOOK_LOGIN_ACCESS_DISABLE":"Diese Social-ID ist bisher mit keinem E-Mail-Konto verbunden. Melden Sie sich mit Ihren E-Mail-Anmeldedaten an und aktivieren Sie diese Funktion in Ihren Konteneinstellungen.","NOTIFICATIONS/SOCIAL_TWITTER_LOGIN_ACCESS_DISABLE":"Diese Social-ID ist bisher mit keinem E-Mail-Konto verbunden. Melden Sie sich mit Ihren E-Mail-Anmeldedaten an und aktivieren Sie diese Funktion in Ihren Konteneinstellungen.","NOTIFICATIONS/SOCIAL_GOOGLE_LOGIN_ACCESS_DISABLE":"Diese Social-ID ist bisher mit keinem E-Mail-Konto verbunden. Melden Sie sich mit Ihren E-Mail-Anmeldedaten an und aktivieren Sie diese Funktion in Ihren Konteneinstellungen.","NOTIFICATIONS/DOMAIN_NOT_ALLOWED":"Diese Domain ist nicht zugelassen.","NOTIFICATIONS/ACCOUNT_NOT_ALLOWED":"Konto ist nicht zugelassen.","NOTIFICATIONS/ACCOUNT_TWO_FACTOR_AUTH_REQUIRED":"Zwei-Faktor-Authentifizierung erforderlich","NOTIFICATIONS/ACCOUNT_TWO_FACTOR_AUTH_ERROR":"Fehler bei Zwei-Faktor-Authentifizierung","NOTIFICATIONS/COULD_NOT_SAVE_NEW_PASSWORD":"Neues Passwort konnte nicht gespeichert werden","NOTIFICATIONS/CURRENT_PASSWORD_INCORRECT":"Aktuelles Passwort falsch","NOTIFICATIONS/NEW_PASSWORD_SHORT":"Passwort ist zu kurz","NOTIFICATIONS/NEW_PASSWORD_WEAK":"Passwort ist zu einfach","NOTIFICATIONS/NEW_PASSWORD_FORBIDDENT":"Passwort enthält unzulässige Zeichen","NOTIFICATIONS/CONTACTS_SYNC_ERROR":"Fehler bei Kontakte-Synchronisierung","NOTIFICATIONS/CANT_GET_MESSAGE_LIST":"Die Nachrichtenliste ist nicht verfügbar","NOTIFICATIONS/CANT_GET_MESSAGE":"Diese Nachricht ist nicht verfügbar","NOTIFICATIONS/CANT_DELETE_MESSAGE":"Diese Nachricht kann nicht gelöscht werden","NOTIFICATIONS/CANT_MOVE_MESSAGE":"Diese Nachricht kann nicht verschoben werden","NOTIFICATIONS/CANT_SAVE_MESSAGE":"Diese Nachricht kann nicht gespeichert werden","NOTIFICATIONS/CANT_SEND_MESSAGE":"Diese Nachricht kann nicht gesendet werden","NOTIFICATIONS/INVALID_RECIPIENTS":"Ungültige Empfängeradressen","NOTIFICATIONS/CANT_SAVE_FILTERS":"Die Filter können nicht gespeichert werden","NOTIFICATIONS/CANT_GET_FILTERS":"Die Filter sind nicht verfügbar","NOTIFICATIONS/FILTERS_ARE_NOT_CORRECT":"Die Filter sind fehlerhaft","NOTIFICATIONS/CANT_CREATE_FOLDER":"Dieser Ordner kann nicht angelegt werden","NOTIFICATIONS/CANT_RENAME_FOLDER":"Dieser Ordner kann nicht umbenannt werden","NOTIFICATIONS/CANT_DELETE_FOLDER":"Dieser Ordner kann nicht gelöscht werden","NOTIFICATIONS/CANT_DELETE_NON_EMPTY_FOLDER":"Der Ordner kann nicht gelöscht werden; er ist nicht leer","NOTIFICATIONS/CANT_SUBSCRIBE_FOLDER":"Dieser Ordner kann nicht abonniert werden","NOTIFICATIONS/CANT_UNSUBSCRIBE_FOLDER":"Das Abonnement dieses Ordners kann nicht gelöscht werden","NOTIFICATIONS/CANT_SAVE_SETTINGS":"Einstellungen können nicht gespeichert werden","NOTIFICATIONS/CANT_SAVE_PLUGIN_SETTINGS":"Einstellungen können nicht gespeichert werden","NOTIFICATIONS/DOMAIN_ALREADY_EXISTS":"Diese Domain existiert bereits","NOTIFICATIONS/CANT_INSTALL_PACKAGE":"Paket konnte nicht installiert werden","NOTIFICATIONS/CANT_DELETE_PACKAGE":"Paket konnte nicht entfernt werden","NOTIFICATIONS/INVALID_PLUGIN_PACKAGE":"Plugin-Paket ist ungültig","NOTIFICATIONS/UNSUPPORTED_PLUGIN_PACKAGE":"Plugin-Paket wird nicht unterstützt","NOTIFICATIONS/LICENSING_SERVER_IS_UNAVAILABLE":"Der Subscription-Server kann nicht erreicht werden","NOTIFICATIONS/LICENSING_DOMAIN_EXPIRED":"Die Subscription dieser Domain ist abgelaufen.","NOTIFICATIONS/LICENSING_DOMAIN_BANNED":"Die Subscription dieser Domain ist gesperrt.","NOTIFICATIONS/DEMO_SEND_MESSAGE_ERROR":"Dieses Demokonto darf aus Sicherheitsgründen keine Nachrichten an externe E-Mail-Adressen versenden!","NOTIFICATIONS/DEMO_ACCOUNT_ERROR":"Aus Sicherheitsgründen ist dieses Konto nicht zu dieser Aktion berechtigt!","NOTIFICATIONS/ACCOUNT_ALREADY_EXISTS":"Dieses Konto existiert bereits","NOTIFICATIONS/ACCOUNT_DOES_NOT_EXIST":"Dieser Account existiert nicht.","NOTIFICATIONS/MAIL_SERVER_ERROR":"Beim Zugriff auf den E-Mail-Server trat ein Fehler auf.","NOTIFICATIONS/INVALID_INPUT_ARGUMENT":"Ungültige Eingabe","NOTIFICATIONS/UNKNOWN_ERROR":"Unbekannter Fehler","STATIC/BACK_LINK":"Aktualisieren","STATIC/DOMAIN_LIST_DESC":"Liste der Domains, auf die zugegriffen werden darf","STATIC/PHP_EXSTENSIONS_ERROR_DESC":"Notwendige PHP-Erweiterungen sind in Ihrer PHP-Konfiguration nicht vorhanden!","STATIC/PHP_VERSION_ERROR_DESC":"Ihre PHP Version (%VERSION%) ist älter als die notwendige Version: 5.3.0!","STATIC/NO_SCRIPT_TITLE":"Diese Anwendung benötigt JavaScript.","STATIC/NO_SCRIPT_DESC":"Ihr Browser unterstützt JavaScript nicht.\nAktivieren Sie bitte die JavaScript-Unterstützung in Ihrem Browser und versuchen Sie es erneut.","STATIC/NO_COOKIE_TITLE":"Diese Anwendung benötigt Cookies.","STATIC/NO_COOKIE_DESC":"Ihr Browser unterstützt Cookies nicht.\nAktivieren Sie bitte die Cookie-Unterstützung in Ihrem Browser und versuchen Sie es erneut.","STATIC/BAD_BROWSER_TITLE":"Ihr Browser ist veraltet.","STATIC/BAD_BROWSER_DESC":"Um alle Funktionen dieser Anwendung nutzen zu können,\nsollten Sie einen der folgenden Browser herunterladen und installieren"};
+;(function (global, factory) {
+ typeof exports === 'object' && typeof module !== 'undefined'
+ && typeof require === 'function' ? factory(require('../moment')) :
+ typeof define === 'function' && define.amd ? define(['../moment'], factory) :
+ factory(global.moment)
+}(this, (function (moment) { 'use strict';
+
+
+ function processRelativeTime(number, withoutSuffix, key, isFuture) {
+ var format = {
+ m: ['eine Minute', 'einer Minute'],
+ h: ['eine Stunde', 'einer Stunde'],
+ d: ['ein Tag', 'einem Tag'],
+ dd: [number + ' Tage', number + ' Tagen'],
+ w: ['eine Woche', 'einer Woche'],
+ M: ['ein Monat', 'einem Monat'],
+ MM: [number + ' Monate', number + ' Monaten'],
+ y: ['ein Jahr', 'einem Jahr'],
+ yy: [number + ' Jahre', number + ' Jahren'],
+ };
+ return withoutSuffix ? format[key][0] : format[key][1];
+ }
+
+ var de = moment.defineLocale('de', {
+ months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
+ '_'
+ ),
+ monthsShort: 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split(
+ '_'
+ ),
+ monthsParseExact: true,
+ weekdays: 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
+ '_'
+ ),
+ weekdaysShort: 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
+ weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
+ weekdaysParseExact: true,
+ longDateFormat: {
+ LT: 'HH:mm',
+ LTS: 'HH:mm:ss',
+ L: 'DD.MM.YYYY',
+ LL: 'D. MMMM YYYY',
+ LLL: 'D. MMMM YYYY HH:mm',
+ LLLL: 'dddd, D. MMMM YYYY HH:mm',
+ },
+ calendar: {
+ sameDay: '[heute um] LT [Uhr]',
+ sameElse: 'L',
+ nextDay: '[morgen um] LT [Uhr]',
+ nextWeek: 'dddd [um] LT [Uhr]',
+ lastDay: '[gestern um] LT [Uhr]',
+ lastWeek: '[letzten] dddd [um] LT [Uhr]',
+ },
+ relativeTime: {
+ future: 'in %s',
+ past: 'vor %s',
+ s: 'ein paar Sekunden',
+ ss: '%d Sekunden',
+ m: processRelativeTime,
+ mm: '%d Minuten',
+ h: processRelativeTime,
+ hh: '%d Stunden',
+ d: processRelativeTime,
+ dd: processRelativeTime,
+ w: processRelativeTime,
+ ww: '%d Wochen',
+ M: processRelativeTime,
+ MM: processRelativeTime,
+ y: processRelativeTime,
+ yy: processRelativeTime,
+ },
+ dayOfMonthOrdinalParse: /\d{1,2}\./,
+ ordinal: '%d.',
+ week: {
+ dow: 1, doy: 4, },
+ });
+
+ return de;
+
+})));
--- /dev/null
+window.rainloopI18N={"LANGS_NAMES/LANG_EN":"English","LANGS_NAMES/LANG_EN_US":"English","LANGS_NAMES/LANG_EN_GB":"English (UK)","LANGS_NAMES/LANG_EN_UK":"English (UK)","LANGS_NAMES/LANG_EN_CA":"English (Canadian)","LANGS_NAMES/LANG_TH_TH":"ภาษาไทย","LANGS_NAMES/LANG_EL_GR":"Ελληνικά","LANGS_NAMES/LANG_NL_NL":"Nederlands","LANGS_NAMES/LANG_NB_NO":"Norsk (bokmål)","LANGS_NAMES/LANG_PL_PL":"Polski","LANGS_NAMES/LANG_RU_RU":"Русский","LANGS_NAMES/LANG_RO_RO":"Română","LANGS_NAMES/LANG_UK_UA":"Українська","LANGS_NAMES/LANG_DE_DE":"Deutsch","LANGS_NAMES/LANG_FI_FI":"Suomi","LANGS_NAMES/LANG_FR_FR":"Français (France)","LANGS_NAMES/LANG_FR_CA":"Français (Canada)","LANGS_NAMES/LANG_PT_PT":"Português (Portugal)","LANGS_NAMES/LANG_PT_BR":"Português (Brasil)","LANGS_NAMES/LANG_ES_ES":"Español (España)","LANGS_NAMES/LANG_ES_LA":"Español","LANGS_NAMES/LANG_ET_EE":"Eesti","LANGS_NAMES/LANG_FA_IR":"فارسی","LANGS_NAMES/LANG_IT_IT":"Italiano","LANGS_NAMES/LANG_LT_LT":"Lietuvių","LANGS_NAMES/LANG_LV_LV":"Latviešu","LANGS_NAMES/LANG_IS_IS":"Íslenska","LANGS_NAMES/LANG_HU_HU":"Magyar","LANGS_NAMES/LANG_TR_TR":"Türkçe","LANGS_NAMES/LANG_SK_SK":"Slovenčina","LANGS_NAMES/LANG_SV_SE":"Svenska","LANGS_NAMES/LANG_SL_SI":"Slovenščina","LANGS_NAMES/LANG_JA_JP":"日本語","LANGS_NAMES/LANG_ZH_TW":"中文(台灣)","LANGS_NAMES/LANG_ZH_CN":"中文(简体)","LANGS_NAMES/LANG_ZH_HK":"中文(香港)","LANGS_NAMES/LANG_KO_KR":"한국어","LANGS_NAMES/LANG_BG_BG":"Български","LANGS_NAMES/LANG_CS_CZ":"Čeština","LANGS_NAMES/LANG_AR_SA":"العربية","LANGS_NAMES/LANG_DA_DK":"Dansk","LANGS_NAMES/LANG_ID_ID":"Bahasa Indonesia","LANGS_NAMES/LANG_CA":"Catalan","LANGS_NAMES/LANG_CA_ES":"Catalan (Spain)","LANGS_NAMES/LANG_EU":"Basque","LANGS_NAMES_EN/LANG_EN":"English","LANGS_NAMES_EN/LANG_EN_US":"English (US)","LANGS_NAMES_EN/LANG_EN_GB":"English (UK)","LANGS_NAMES_EN/LANG_EN_UK":"English (UK)","LANGS_NAMES_EN/LANG_EN_CA":"English (Canadian)","LANGS_NAMES_EN/LANG_TH_TH":"Thai","LANGS_NAMES_EN/LANG_EL_GR":"Greek","LANGS_NAMES_EN/LANG_NL_NL":"Dutch","LANGS_NAMES_EN/LANG_NB_NO":"Norwegian (bokmal)","LANGS_NAMES_EN/LANG_PL_PL":"Polish","LANGS_NAMES_EN/LANG_RU_RU":"Russian","LANGS_NAMES_EN/LANG_RO_RO":"Romanian","LANGS_NAMES_EN/LANG_UK_UA":"Ukrainian","LANGS_NAMES_EN/LANG_DE_DE":"German","LANGS_NAMES_EN/LANG_FI_FI":"Finnish","LANGS_NAMES_EN/LANG_FR_FR":"French (France)","LANGS_NAMES_EN/LANG_FR_CA":"France (Canada)","LANGS_NAMES_EN/LANG_PT_PT":"Portuguese (Portugal)","LANGS_NAMES_EN/LANG_PT_BR":"Portuguese (Brazil)","LANGS_NAMES_EN/LANG_ES_ES":"Spanish","LANGS_NAMES_EN/LANG_ES_LA":"Spanish","LANGS_NAMES_EN/LANG_ET_EE":"Estonian","LANGS_NAMES_EN/LANG_FA_IR":"Persian","LANGS_NAMES_EN/LANG_IT_IT":"Italian","LANGS_NAMES_EN/LANG_LT_LT":"Lithuanian","LANGS_NAMES_EN/LANG_LV_LV":"Latvian","LANGS_NAMES_EN/LANG_IS_IS":"Icelandic","LANGS_NAMES_EN/LANG_HU_HU":"Hungarian","LANGS_NAMES_EN/LANG_TR_TR":"Turkish","LANGS_NAMES_EN/LANG_SK_SK":"Slovak","LANGS_NAMES_EN/LANG_SL_SI":"Slovenian","LANGS_NAMES_EN/LANG_SV_SE":"Swedish","LANGS_NAMES_EN/LANG_JA_JP":"Japanese","LANGS_NAMES_EN/LANG_ZH_TW":"Traditional Chinese (Taiwan)","LANGS_NAMES_EN/LANG_ZH_CN":"Simplified Chinese (China)","LANGS_NAMES_EN/LANG_ZH_HK":"Traditional Chinese (Hong Kong)","LANGS_NAMES_EN/LANG_KO_KR":"Korean","LANGS_NAMES_EN/LANG_BG_BG":"Bulgarian","LANGS_NAMES_EN/LANG_CS_CZ":"Czech","LANGS_NAMES_EN/LANG_AR_SA":"Arabic","LANGS_NAMES_EN/LANG_DA_DK":"Danish","LANGS_NAMES_EN/LANG_ID_ID":"Indonesian","LANGS_NAMES_EN/LANG_CA":"Catalan","LANGS_NAMES_EN/LANG_CA_ES":"Catalan (Spain)","LANGS_NAMES_EN/LANG_EU":"Basque","LOGIN/LABEL_EMAIL":"Email","LOGIN/LABEL_LOGIN":"Login","LOGIN/LABEL_PASSWORD":"Password","LOGIN/LABEL_SIGN_ME":"Remember Me","LOGIN/LABEL_VERIFICATION_CODE":"Verification Code","LOGIN/LABEL_DONT_ASK_VERIFICATION_CODE":"Don't ask for the code for 2 weeks","LOGIN/BUTTON_SIGN_IN":"Sign In","LOGIN/TITLE_SIGN_IN_GOOGLE":"Sign In using Google","LOGIN/TITLE_SIGN_IN_GMAIL":"Sign In using Gmail","LOGIN/TITLE_SIGN_IN_FACEBOOK":"Sign In using Facebook","LOGIN/TITLE_SIGN_IN_TWITTER":"Sign In using Twitter","LOGIN/LABEL_FORGOT_PASSWORD":"Forgot password","LOGIN/LABEL_REGISTRATION":"Registration","TOP_TOOLBAR/BUTTON_ADD_ACCOUNT":"Add Account","TOP_TOOLBAR/BUTTON_SETTINGS":"Settings","TOP_TOOLBAR/BUTTON_HELP":"Help","TOP_TOOLBAR/BUTTON_LOGOUT":"Logout","MOBILE/BUTTON_MOBILE_VERSION":"Mobile version","MOBILE/BUTTON_DESKTOP_VERSION":"Desktop version","SEARCH/MAIN_INPUT_PLACEHOLDER":"Search","SEARCH/TITLE_ADV":"Advanced Search","SEARCH/LABEL_ADV_FROM":"From","SEARCH/LABEL_ADV_TO":"To","SEARCH/LABEL_ADV_SUBJECT":"Subject","SEARCH/LABEL_ADV_TEXT":"Text","SEARCH/LABEL_ADV_HAS_ATTACHMENT":"Has attachment","SEARCH/LABEL_ADV_HAS_ATTACHMENTS":"Has attachments","SEARCH/LABEL_ADV_FLAGGED":"Flagged","SEARCH/LABEL_ADV_UNSEEN":"Unseen","SEARCH/LABEL_ADV_DATE":"Date","SEARCH/LABEL_ADV_DATE_ALL":"All","SEARCH/LABEL_ADV_DATE_3_DAYS":"Up to 3 days old","SEARCH/LABEL_ADV_DATE_7_DAYS":"Up to 1 week old","SEARCH/LABEL_ADV_DATE_MONTH":"Up to 1 month old","SEARCH/LABEL_ADV_DATE_3_MONTHS":"Up to 3 months old","SEARCH/LABEL_ADV_DATE_6_MONTHS":"Up to 6 months old","SEARCH/LABEL_ADV_DATE_YEAR":"Up to 1 year old","SEARCH/BUTTON_ADV_SEARCH":"Search","PREVIEW_POPUP/FULLSCREEN":"Toggle fullscreen","PREVIEW_POPUP/ZOOM":"Zoom in/out","PREVIEW_POPUP/CLOSE":"Close (Esc)","PREVIEW_POPUP/LOADING":"Loading...","PREVIEW_POPUP/GALLERY_PREV":"Previous (arrow left)","PREVIEW_POPUP/GALLERY_NEXT":"Next (arrow right)","PREVIEW_POPUP/GALLERY_COUNTER":"%curr% of %total%","PREVIEW_POPUP/IMAGE_ERROR":"<a href=\"%url%\" target=\"_blank\">The image</a> could not be loaded.","PREVIEW_POPUP/AJAX_ERROR":"<a href=\"%url%\" target=\"_blank\">The content</a> could not be loaded.","FOLDER_LIST/BUTTON_COMPOSE":"Compose","FOLDER_LIST/BUTTON_CONTACTS":"Contacts","FOLDER_LIST/BUTTON_NEW_MESSAGE":"New message","FOLDER_LIST/INBOX_NAME":"Inbox","FOLDER_LIST/SENT_NAME":"Sent","FOLDER_LIST/DRAFTS_NAME":"Drafts","FOLDER_LIST/SPAM_NAME":"Spam","FOLDER_LIST/TRASH_NAME":"Trash","FOLDER_LIST/ARCHIVE_NAME":"Archive","QUOTA/TITLE":"Quota usage","MESSAGE_LIST/BUTTON_RELOAD":"Reload Message List","MESSAGE_LIST/BUTTON_MOVE_TO":"Move To","MESSAGE_LIST/BUTTON_DELETE":"Delete","MESSAGE_LIST/BUTTON_ARCHIVE":"Archive","MESSAGE_LIST/BUTTON_SPAM":"Spam","MESSAGE_LIST/BUTTON_NOT_SPAM":"Not Spam","MESSAGE_LIST/BUTTON_EMPTY_FOLDER":"Clear Folder","MESSAGE_LIST/BUTTON_MULTY_FORWARD":"Forward as attachment(s)","MESSAGE_LIST/BUTTON_DELETE_WITHOUT_MOVE":"Delete permanently","MESSAGE_LIST/BUTTON_MORE":"More","MESSAGE_LIST/MENU_SET_SEEN":"Mark as read","MESSAGE_LIST/MENU_SET_ALL_SEEN":"Mark all as read","MESSAGE_LIST/MENU_UNSET_SEEN":"Mark as unread","MESSAGE_LIST/MENU_SET_FLAG":"Flag","MESSAGE_LIST/MENU_UNSET_FLAG":"Unflag","MESSAGE_LIST/MENU_SELECT_ALL":"All","MESSAGE_LIST/MENU_SELECT_NONE":"None","MESSAGE_LIST/MENU_SELECT_INVERT":"Invert","MESSAGE_LIST/MENU_SELECT_UNSEEN":"Unread","MESSAGE_LIST/MENU_SELECT_SEEN":"Read","MESSAGE_LIST/MENU_SELECT_FLAGGED":"Flagged","MESSAGE_LIST/MENU_SELECT_UNFLAGGED":"Unflagged","MESSAGE_LIST/EMPTY_LIST":"Empty list.","MESSAGE_LIST/EMPTY_SEARCH_LIST":"No messages matched your search.","MESSAGE_LIST/SEARCH_RESULT_FOR":"Search results for \"%SEARCH%\"","MESSAGE_LIST/BACK_TO_MESSAGE_LIST":"back to message list","MESSAGE_LIST/LIST_LOADING":"Loading","MESSAGE_LIST/EMPTY_SUBJECT_TEXT":"(No subject)","MESSAGE_LIST/PUT_MESSAGE_HERE":"Drop message here to view it in the list","MESSAGE_LIST/TODAY_AT":"today at %TIME%","MESSAGE_LIST/YESTERDAY_AT":"yesterday at %TIME%","MESSAGE_LIST/SEARCH_PLACEHOLDER":"Search","MESSAGE_LIST/NEW_MESSAGE_NOTIFICATION":"You have %COUNT% new messages!","MESSAGE_LIST/QUOTA_SIZE":"Using <strong>%SIZE% (%PROC%%)</strong> of your <strong>%LIMIT%</strong>","MESSAGE/BUTTON_EDIT":"Edit","MESSAGE/BUTTON_BACK":"Back","MESSAGE/BUTTON_CLOSE":"Close","MESSAGE/BUTTON_DELETE":"Delete","MESSAGE/BUTTON_UNSUBSCRIBE":"Unsubscribe from this list","MESSAGE/BUTTON_ARCHIVE":"Archive","MESSAGE/BUTTON_SPAM":"Spam","MESSAGE/BUTTON_NOT_SPAM":"Not Spam","MESSAGE/BUTTON_MOVE_TO":"Move To","MESSAGE/BUTTON_MORE":"More","MESSAGE/BUTTON_REPLY":"Reply","MESSAGE/BUTTON_REPLY_ALL":"Reply All","MESSAGE/BUTTON_FORWARD":"Forward","MESSAGE/BUTTON_FORWARD_AS_ATTACHMENT":"Forward as attachment","MESSAGE/BUTTON_EDIT_AS_NEW":"Edit as New","MESSAGE/BUTTON_SHOW_IMAGES":"Display external images","MESSAGE/BUTTON_NOTIFY_READ_RECEIPT":"The sender has asked to be notified when you read this message.","MESSAGE/BUTTON_IN_NEW_WINDOW":"View in separate window","MESSAGE/BUTTON_THREAD_LIST":"Thread list","MESSAGE/BUTTON_THREAD_PREV":"Previous","MESSAGE/BUTTON_THREAD_NEXT":"Next","MESSAGE/BUTTON_THREAD_MORE":"More messages","MESSAGE/MENU_HEADERS":"Show message headers","MESSAGE/MENU_VIEW_ORIGINAL":"Show Source","MESSAGE/MENU_DOWNLOAD_ORIGINAL":"Download as .eml file","MESSAGE/MENU_FILTER_SIMILAR":"Filter messages like this","MESSAGE/MENU_PRINT":"Print","MESSAGE/EMPTY_SUBJECT_TEXT":"(No subject)","MESSAGE/LABEL_SUBJECT":"Subject","MESSAGE/LABEL_DATE":"Date","MESSAGE/LABEL_FROM":"From","MESSAGE/LABEL_FROM_SHORT":"from","MESSAGE/LABEL_TO":"To","MESSAGE/LABEL_TO_SHORT":"to","MESSAGE/LABEL_CC":"CC","MESSAGE/LABEL_BCC":"BCC","MESSAGE/LABEL_REPLY_TO":"Reply-To","MESSAGE/PRINT_LABEL_FROM":"From","MESSAGE/PRINT_LABEL_TO":"To","MESSAGE/PRINT_LABEL_CC":"CC","MESSAGE/PRINT_LABEL_BCC":"BCC","MESSAGE/PRINT_LABEL_REPLY_TO":"Reply-To","MESSAGE/PRINT_LABEL_DATE":"Date","MESSAGE/PRINT_LABEL_SUBJECT":"Subject","MESSAGE/PRINT_LABEL_ATTACHMENTS":"Attachments","MESSAGE/MESSAGE_LOADING":"Loading","MESSAGE/MESSAGE_VIEW_DESC":"Select any message in the list to view it here.","MESSAGE/MESSAGE_VIEW_MOVE_DESC":"Click folder name in the left panel to select the destination.","MESSAGE/PGP_PASSWORD_INPUT_PLACEHOLDER":"Password","MESSAGE/PGP_SIGNED_MESSAGE_DESC":"OpenPGP signed message (click to verify)","MESSAGE/PGP_ENCRYPTED_MESSAGE_DESC":"OpenPGP encrypted message (click to decrypt)","MESSAGE/LINK_DOWNLOAD_AS_ZIP":"Download as zip","MESSAGE/LINK_SAVE_TO_OWNCLOUD":"Save to ownCloud","MESSAGE/LINK_SAVE_TO_CLOUD":"Save to Cloud","MESSAGE/LINK_SAVE_TO_DROPBOX":"Save to Dropbox","READ_RECEIPT/SUBJECT":"Return Receipt (displayed) - %SUBJECT%","READ_RECEIPT/BODY":"This is a Return Receipt for the mail that you sent to %READ-RECEIPT%.\n\nNote: \"This Return Receipt only acknowledges that the message was displayed on the recipient's computer.\"\nThere is no guarantee that the recipient has read or understood the message contents.","SUGGESTIONS/SEARCHING_DESC":"Searching...","CONTACTS/LEGEND_CONTACTS":"Contacts","CONTACTS/SEARCH_INPUT_PLACEHOLDER":"Search","CONTACTS/BUTTON_ADD_CONTACT":"Add Contact","CONTACTS/BUTTON_CREATE_CONTACT":"Create","CONTACTS/BUTTON_UPDATE_CONTACT":"Update","CONTACTS/BUTTON_IMPORT":"Import (csv, vcf, vCard)","CONTACTS/BUTTON_EXPORT_VCARD":"Export (vcf, vCard)","CONTACTS/BUTTON_EXPORT_CSV":"Export (csv)","CONTACTS/ERROR_IMPORT_FILE":"Import error (invalid file format)","CONTACTS/LIST_LOADING":"Loading","CONTACTS/EMPTY_LIST":"No contacts here","CONTACTS/EMPTY_SEARCH":"No contacts found","CONTACTS/CLEAR_SEARCH":"Clear search","CONTACTS/CONTACT_VIEW_DESC":"Select contact in the list to view it here.","CONTACTS/LABEL_DISPLAY_NAME":"Display name","CONTACTS/LABEL_EMAIL":"Email","CONTACTS/LABEL_PHONE":"Phone","CONTACTS/LABEL_WEB":"Web","CONTACTS/LABEL_BIRTHDAY":"Birthday","CONTACTS/LINK_ADD_EMAIL":"Add an email address","CONTACTS/LINK_ADD_PHONE":"Add a phone","CONTACTS/LINK_BIRTHDAY":"Birthday","CONTACTS/PLACEHOLDER_ENTER_DISPLAY_NAME":"Enter display name","CONTACTS/PLACEHOLDER_ENTER_LAST_NAME":"Enter last name","CONTACTS/PLACEHOLDER_ENTER_FIRST_NAME":"Enter first name","CONTACTS/PLACEHOLDER_ENTER_NICK_NAME":"Enter nickname","CONTACTS/LABEL_READ_ONLY":"Read only","CONTACTS/LABEL_SHARE":"Share","CONTACTS/ADD_MENU_LABEL":"Add","CONTACTS/ADD_MENU_NICKNAME":"Nickname","CONTACTS/ADD_MENU_NOTES":"Notes","CONTACTS/ADD_MENU_EMAIL":"Email","CONTACTS/ADD_MENU_PHONE":"Phone","CONTACTS/ADD_MENU_URL":"URL","CONTACTS/ADD_MENU_ADDRESS":"Address","CONTACTS/ADD_MENU_BIRTHDAY":"Birthday","CONTACTS/ADD_MENU_TAGS":"Tags","CONTACTS/BUTTON_SHARE_NONE":"None","CONTACTS/BUTTON_SHARE_ALL":"Everyone","CONTACTS/BUTTON_SYNC":"Synchronization (CardDAV)","COMPOSE/TITLE_FROM":"From","COMPOSE/TITLE_TO":"To","COMPOSE/TITLE_CC":"CC","COMPOSE/TITLE_BCC":"BCC","COMPOSE/TITLE_REPLY_TO":"Reply-To","COMPOSE/TITLE_SUBJECT":"Subject","COMPOSE/LINK_SHOW_INPUTS":"show all fields","COMPOSE/BUTTON_SEND":"Send","COMPOSE/BUTTON_SAVE":"Save","COMPOSE/BUTTON_DELETE":"Delete","COMPOSE/BUTTON_CANCEL":"Cancel","COMPOSE/BUTTON_MINIMIZE":"Minimize","COMPOSE/SAVED_TIME":"Saved at %TIME%","COMPOSE/SAVED_ERROR_ON_SEND":"Message was sent but not saved to sent items folder","COMPOSE/DISCARD_UNSAVED_DATA":"Discard unsaved data?","COMPOSE/ATTACH_FILES":"Attach files","COMPOSE/ATTACH_DROP_FILES_DESC":"Drop files here","COMPOSE/ATTACH_ITEM_CANCEL":"Cancel","COMPOSE/DROPBOX":"Dropbox","COMPOSE/GOOGLE_DRIVE":"Google Drive","COMPOSE/REPLY_MESSAGE_TITLE":"%DATETIME%, %EMAIL% wrote","COMPOSE/FORWARD_MESSAGE_TOP_TITLE":"-------- Forwarded message -------","COMPOSE/FORWARD_MESSAGE_TOP_FROM":"From","COMPOSE/FORWARD_MESSAGE_TOP_TO":"To","COMPOSE/FORWARD_MESSAGE_TOP_CC":"CC","COMPOSE/FORWARD_MESSAGE_TOP_SENT":"Sent","COMPOSE/FORWARD_MESSAGE_TOP_SUBJECT":"Subject","COMPOSE/EMPTY_TO_ERROR_DESC":"Please specify at least one recipient","COMPOSE/NO_ATTACHMENTS_HERE_DESC":"No attachments here.","COMPOSE/ATTACHMENTS_ERROR_DESC":"Warning! Not all attachments have been uploaded.","COMPOSE/ATTACHMENTS_UPLOAD_ERROR_DESC":"Not all attachments have been uploaded yet.","COMPOSE/BUTTON_REQUEST_READ_RECEIPT":"Request a read receipt","COMPOSE/BUTTON_MARK_AS_IMPORTANT":"Mark as important","COMPOSE/BUTTON_OPEN_PGP":"OpenPGP (Plain Text Only)","COMPOSE/BUTTON_REQUEST_DSN":"Request a delivery receipt","POPUPS_WELCOME_PAGE/BUTTON_CLOSE":"Close","POPUPS_ASK/BUTTON_YES":"Yes","POPUPS_ASK/BUTTON_NO":"No","POPUPS_ASK/DESC_WANT_CLOSE_THIS_WINDOW":"Are you sure you want to close this window?","POPUPS_ASK/DESC_WANT_DELETE_MESSAGES":"Are you sure you want to delete the message(s)?","POPUPS_LANGUAGES/TITLE_LANGUAGES":"Choose your language","POPUPS_ADD_ACCOUNT/TITLE_ADD_ACCOUNT":"Add Account?","POPUPS_ADD_ACCOUNT/BUTTON_ADD_ACCOUNT":"Add","POPUPS_ADD_ACCOUNT/TITLE_UPDATE_ACCOUNT":"Update Account?","POPUPS_ADD_ACCOUNT/BUTTON_UPDATE_ACCOUNT":"Update","POPUPS_IDENTITY/TITLE_ADD_IDENTITY":"Add Identity?","POPUPS_IDENTITY/TITLE_UPDATE_IDENTITY":"Update Identity?","POPUPS_IDENTITY/BUTTON_ADD_IDENTITY":"Add","POPUPS_IDENTITY/BUTTON_UPDATE_IDENTITY":"Update","POPUPS_IDENTITY/LABEL_EMAIL":"Email","POPUPS_IDENTITY/LABEL_NAME":"Name","POPUPS_IDENTITY/LABEL_REPLY_TO":"Reply-To","POPUPS_IDENTITY/LABEL_SIGNATURE":"Signature","POPUPS_IDENTITY/LABEL_CC":"Cc","POPUPS_IDENTITY/LABEL_BCC":"Bcc","POPUPS_IDENTITY/LABEL_SIGNATURE_INSERT_BEFORE":"Insert this signature before quoted text in replies","POPUPS_CREATE_FOLDER/TITLE_CREATE_FOLDER":"Create a folder?","POPUPS_CREATE_FOLDER/LABEL_NAME":"Folder name","POPUPS_CREATE_FOLDER/LABEL_PARENT":"Parent folder","POPUPS_CREATE_FOLDER/BUTTON_CREATE":"Create","POPUPS_CREATE_FOLDER/BUTTON_CANCEL":"Cancel","POPUPS_CREATE_FOLDER/BUTTON_CLOSE":"Close","POPUPS_CREATE_FOLDER/TITLE_CREATING_PROCESS":"Creating a folder","POPUPS_CLEAR_FOLDER/TITLE_CLEAR_FOLDER":"Purge all messages from the folder?","POPUPS_CLEAR_FOLDER/BUTTON_CLEAR":"Clear","POPUPS_CLEAR_FOLDER/BUTTON_CANCEL":"Cancel","POPUPS_CLEAR_FOLDER/BUTTON_CLOSE":"Close","POPUPS_CLEAR_FOLDER/DANGER_DESC_WARNING":"Warning!","POPUPS_CLEAR_FOLDER/DANGER_DESC_HTML_1":"This action will result in removing all mails from <strong>%FOLDER%</strong> folder completely.","POPUPS_CLEAR_FOLDER/DANGER_DESC_HTML_2":"Once started, the process cannot be aborted or cancelled.","POPUPS_CLEAR_FOLDER/TITLE_CLEARING_PROCESS":"Purging the folder...","POPUPS_IMPORT_OPEN_PGP_KEY/TITLE_IMPORT_OPEN_PGP_KEY":"Import OpenPGP key","POPUPS_IMPORT_OPEN_PGP_KEY/BUTTON_IMPORT_OPEN_PGP_KEY":"Import","POPUPS_VIEW_OPEN_PGP_KEY/TITLE_VIEW_OPEN_PGP_KEY":"View OpenPGP key","POPUPS_VIEW_OPEN_PGP_KEY/BUTTON_SELECT":"Select","POPUPS_VIEW_OPEN_PGP_KEY/BUTTON_CLOSE":"Close","POPUPS_GENERATE_OPEN_PGP_KEYS/TITLE_GENERATE_OPEN_PGP_KEYS":"Generate OpenPGP keys","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_EMAIL":"Email","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_NAME":"Name","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_PASSWORD":"Password","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_KEY_BIT_LENGTH":"Key length","POPUPS_GENERATE_OPEN_PGP_KEYS/BUTTON_GENERATE_OPEN_PGP_KEYS":"Generate","POPUPS_COMPOSE_OPEN_PGP/TITLE_COMPOSE_OPEN_PGP":"OpenPGP Sign/Encrypt","POPUPS_COMPOSE_OPEN_PGP/LABEL_SIGN":"Sign","POPUPS_COMPOSE_OPEN_PGP/LABEL_ENCRYPT":"Encrypt","POPUPS_COMPOSE_OPEN_PGP/LABEL_PASSWORD":"Password","POPUPS_COMPOSE_OPEN_PGP/BUTTON_SIGN":"Sign","POPUPS_COMPOSE_OPEN_PGP/BUTTON_ENCRYPT":"Encrypt","POPUPS_COMPOSE_OPEN_PGP/BUTTON_SIGN_AND_ENCRYPT":"Sign and encrypt","POPUPS_MESSAGE_OPEN_PGP/TITLE_MESSAGE_OPEN_PGP":"OpenPGP Decrypt","POPUPS_MESSAGE_OPEN_PGP/LABEL_KEY":"Private Key","POPUPS_MESSAGE_OPEN_PGP/LABEL_PASSWORD":"Password","POPUPS_MESSAGE_OPEN_PGP/BUTTON_DECRYPT":"Decrypt","POPUPS_TWO_FACTOR_TEST/TITLE_TEST_CODE":"2-Step verification test","POPUPS_TWO_FACTOR_TEST/LABEL_CODE":"Code","POPUPS_TWO_FACTOR_TEST/BUTTON_TEST":"Test","POPUPS_FILTER/TITLE_CREATE_FILTER":"Create a filter?","POPUPS_FILTER/TITLE_EDIT_FILTER":"Update filter?","POPUPS_FILTER/FILTER_NAME":"Name","POPUPS_FILTER/LEGEND_CONDITIONS":"Conditions","POPUPS_FILTER/LEGEND_ACTIONS":"Actions","POPUPS_FILTER/BUTTON_DONE":"Done","POPUPS_FILTER/BUTTON_ADD_CONDITION":"Add a Condition","POPUPS_FILTER/SELECT_ACTION_NONE":"None","POPUPS_FILTER/SELECT_ACTION_MOVE_TO":"Move to","POPUPS_FILTER/SELECT_ACTION_FORWARD_TO":"Forward to","POPUPS_FILTER/SELECT_ACTION_REJECT":"Reject","POPUPS_FILTER/SELECT_ACTION_VACATION_MESSAGE":"Vacation message","POPUPS_FILTER/SELECT_ACTION_DISCARD":"Discard","POPUPS_FILTER/SELECT_FIELD_FROM":"From","POPUPS_FILTER/SELECT_FIELD_RECIPIENTS":"Recipients (To or CC)","POPUPS_FILTER/SELECT_FIELD_SUBJECT":"Subject","POPUPS_FILTER/SELECT_FIELD_HEADER":"Header","POPUPS_FILTER/SELECT_FIELD_SIZE":"Size","POPUPS_FILTER/SELECT_TYPE_CONTAINS":"Contains","POPUPS_FILTER/SELECT_TYPE_NOT_CONTAINS":"Not Contains","POPUPS_FILTER/SELECT_TYPE_MATCHES":"Matches (* and ? supported)","POPUPS_FILTER/SELECT_TYPE_NOT_MATCHES":"Not Matches (* and ? supported)","POPUPS_FILTER/SELECT_TYPE_REGEXP":"Regexp","POPUPS_FILTER/SELECT_TYPE_NOT_REGEXP":"Not Regexp","POPUPS_FILTER/SELECT_TYPE_EQUAL_TO":"Equal To","POPUPS_FILTER/SELECT_TYPE_NOT_EQUAL_TO":"Not Equal To","POPUPS_FILTER/SELECT_TYPE_OVER":"Over","POPUPS_FILTER/SELECT_TYPE_UNDER":"Under","POPUPS_FILTER/SELECT_MATCH_ANY":"Matching ANY of the following rules","POPUPS_FILTER/SELECT_MATCH_ALL":"Matching ALL of the following rules","POPUPS_FILTER/MARK_AS_READ_LABEL":"Mark as read","POPUPS_FILTER/REPLY_INTERVAL_LABEL":"Reply interval (days)","POPUPS_FILTER/KEEP_LABEL":"Keep","POPUPS_FILTER/STOP_LABEL":"Don't stop processing rules","POPUPS_FILTER/EMAIL_LABEL":"Email","POPUPS_FILTER/VACATION_SUBJECT_LABEL":"Subject (optional)","POPUPS_FILTER/VACATION_MESSAGE_LABEL":"Message","POPUPS_FILTER/VACATION_RECIPIENTS_LABEL":"Recipients (comma separated)","POPUPS_FILTER/REJECT_MESSAGE_LABEL":"Reject message","POPUPS_FILTER/ALL_INCOMING_MESSAGES_DESC":"All incoming messages","POPUPS_SYSTEM_FOLDERS/TITLE_SYSTEM_FOLDERS":"Select system folders","POPUPS_SYSTEM_FOLDERS/SELECT_CHOOSE_ONE":"Choose one","POPUPS_SYSTEM_FOLDERS/SELECT_UNUSE_NAME":"Do not use","POPUPS_SYSTEM_FOLDERS/LABEL_SENT":"Sent","POPUPS_SYSTEM_FOLDERS/LABEL_DRAFTS":"Drafts","POPUPS_SYSTEM_FOLDERS/LABEL_SPAM":"Spam","POPUPS_SYSTEM_FOLDERS/LABEL_TRASH":"Trash","POPUPS_SYSTEM_FOLDERS/LABEL_ARCHIVE":"Archive","POPUPS_SYSTEM_FOLDERS/BUTTON_CANCEL":"Cancel","POPUPS_SYSTEM_FOLDERS/BUTTON_CLOSE":"Close","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_SENT":"You haven't selected \"Sent\" system folder messages are put to after sending.\nIf you don't want to save sent message, please select \"Do not use\" option.","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_DRAFTS":"You haven't selected \"Drafts\" system folder messages are saved to while composing.","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_SPAM":"You haven't selected \"Spam\" system folder spamed messages are placed to.\nIf you wish to remove messages permanently, please select \"Do not use\" option.","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_TRASH":"You haven't selected \"Trash\" system folder deleted messages are placed to.\nIf you wish to remove messages permanently, please select \"Do not use\" option.","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_ARCHIVE":"You haven't selected \"Archive\" system folder achived messages are placed to.","POPUPS_TWO_FACTOR_CFG/LEGEND_TWO_FACTOR_AUTH":"2-Step Verification (TOTP)","POPUPS_TWO_FACTOR_CFG/LABEL_ENABLE_TWO_FACTOR":"Enable 2-Step verification","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_USER":"User","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_STATUS":"Status","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_SECRET":"Secret","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_BACKUP_CODES":"Backup codes","POPUPS_TWO_FACTOR_CFG/BUTTON_CREATE":"Create a secret","POPUPS_TWO_FACTOR_CFG/BUTTON_ACTIVATE":"Activate","POPUPS_TWO_FACTOR_CFG/BUTTON_CLEAR":"Clear","POPUPS_TWO_FACTOR_CFG/BUTTON_LOGOUT":"Logout","POPUPS_TWO_FACTOR_CFG/BUTTON_DONE":"Done","POPUPS_TWO_FACTOR_CFG/BUTTON_TEST":"Test","POPUPS_TWO_FACTOR_CFG/LINK_TEST":"test","POPUPS_TWO_FACTOR_CFG/BUTTON_SHOW_SECRET":"Show Secret","POPUPS_TWO_FACTOR_CFG/BUTTON_HIDE_SECRET":"Hide Secret","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_REQUIRE_DESC":"Your account requires 2-Step verification configuration.","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_CONFIGURED_DESC":"Configured","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_NOT_CONFIGURED_DESC":"Not configured","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_DESC":"Import this info into your Google Authenticator client (or other TOTP client) using the provided QR code below or by entering the code manually.","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_BACKUP_CODES_DESC":"If you can't receive codes via Google Authenticator (or other TOTP client), you can use backup codes to sign in. After you’ve used a backup code to sign in, it will become inactive.","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_TEST_BEFORE_DESC":"You can't change this setting before test.","TITLES/LOADING":"Loading","TITLES/LOGIN":"Login","TITLES/MAILBOX":"MailBox","TITLES/SETTINGS":"Settings","TITLES/COMPOSE":"Compose","UPLOAD/ERROR_FILE_IS_TOO_BIG":"File is too big","UPLOAD/ERROR_FILE_PARTIALLY_UPLOADED":"File was partially uploaded due to unknown error","UPLOAD/ERROR_NO_FILE_UPLOADED":"No file uploaded","UPLOAD/ERROR_MISSING_TEMP_FOLDER":"The temporary file is missing","UPLOAD/ERROR_ON_SAVING_FILE":"An unknown file upload error occurred","UPLOAD/ERROR_FILE_TYPE":"Invalid file type","UPLOAD/ERROR_UNKNOWN":"An unknown file upload error occurred","EDITOR/TEXT_SWITCHER_PLAINT_TEXT":"HTML <-> TEXT","EDITOR/TEXT_SWITCHER_RICH_FORMATTING":"Rich formatting","EDITOR/TEXT_SWITCHER_CONFIRM":"Text formatting and images will be lost. Are you sure you want to continue?","SETTINGS_LABELS/LABEL_PERSONAL_NAME":"Personal","SETTINGS_LABELS/LABEL_GENERAL_NAME":"General","SETTINGS_LABELS/LABEL_CONTACTS_NAME":"Contacts","SETTINGS_LABELS/LABEL_FOLDERS_NAME":"Folders","SETTINGS_LABELS/LABEL_ACCOUNTS_NAME":"Accounts","SETTINGS_LABELS/LABEL_IDENTITY_NAME":"Identity","SETTINGS_LABELS/LABEL_IDENTITIES_NAME":"Identities","SETTINGS_LABELS/LABEL_FILTERS_NAME":"Filters","SETTINGS_LABELS/LABEL_TEMPLATES_NAME":"Templates","SETTINGS_LABELS/LABEL_SECURITY_NAME":"Security","SETTINGS_LABELS/LABEL_SOCIAL_NAME":"Social","SETTINGS_LABELS/LABEL_THEMES_NAME":"Themes","SETTINGS_LABELS/LABEL_CHANGE_PASSWORD_NAME":"Password","SETTINGS_LABELS/LABEL_OPEN_PGP_NAME":"OpenPGP","SETTINGS_LABELS/BUTTON_BACK":"Back","SETTINGS_FILTERS/LEGEND_FILTERS":"Filters","SETTINGS_FILTERS/BUTTON_SAVE":"Save","SETTINGS_FILTERS/BUTTON_ADD_FILTER":"Add a Filter","SETTINGS_FILTERS/BUTTON_DELETE":"Delete","SETTINGS_FILTERS/BUTTON_RAW_SCRIPT":"Use Custom User Script","SETTINGS_FILTERS/SUBNAME_NONE":"None","SETTINGS_FILTERS/SUBNAME_MOVE_TO":"Move to \"%FOLDER%\"","SETTINGS_FILTERS/SUBNAME_FORWARD_TO":"Forward to \"%EMAIL%\"","SETTINGS_FILTERS/SUBNAME_REJECT":"Reject","SETTINGS_FILTERS/SUBNAME_VACATION_MESSAGE":"Vacation message","SETTINGS_FILTERS/SUBNAME_DISCARD":"Discard","SETTINGS_FILTERS/CAPABILITY_LABEL":"Capability","SETTINGS_FILTERS/LOADING_PROCESS":"Updating filter list","SETTINGS_FILTERS/DELETING_ASK":"Are you sure?","SETTINGS_FILTERS/CHACHES_NEED_TO_BE_SAVED_DESC":"These changes need to be saved to the server.","SETTINGS_IDENTITY/LEGEND_IDENTITY":"Identity","SETTINGS_IDENTITY/LABEL_DISPLAY_NAME":"Name","SETTINGS_IDENTITY/LABEL_REPLY_TO":"Reply-To","SETTINGS_IDENTITY/LABEL_SIGNATURE":"Signature","SETTINGS_IDENTITY/LABEL_ADD_SIGNATURE_TO_ALL":"Add your signature to all the outgoing messages","SETTINGS_SECURITY/LEGEND_SECURITY":"Security","SETTINGS_SECURITY/LABEL_CONFIGURE_TWO_FACTOR":"Configure 2-Step verification","SETTINGS_SECURITY/LABEL_AUTOLOGOUT":"Auto Logout","SETTINGS_SECURITY/AUTOLOGIN_NEVER_OPTION_NAME":"Never","SETTINGS_SECURITY/AUTOLOGIN_MINUTES_OPTION_NAME":"%MINUTES% minute(s)","SETTINGS_SECURITY/AUTOLOGIN_HOURS_OPTION_NAME":"%HOURS% hour(s)","SETTINGS_GENERAL/LEGEND_GENERAL":"General","SETTINGS_GENERAL/LABEL_LANGUAGE":"Language","SETTINGS_GENERAL/LABEL_IDENTITY":"Identity","SETTINGS_GENERAL/LABEL_LAYOUT":"Layout","SETTINGS_GENERAL/LABEL_LAYOUT_NO_SPLIT":"No Split","SETTINGS_GENERAL/LABEL_LAYOUT_VERTICAL_SPLIT":"Vertical Split","SETTINGS_GENERAL/LABEL_LAYOUT_HORIZONTAL_SPLIT":"Horizontal Split","SETTINGS_GENERAL/LABEL_EDITOR":"Default text editor","SETTINGS_GENERAL/LABEL_EDITOR_HTML":"Html","SETTINGS_GENERAL/LABEL_EDITOR_PLAIN":"Plain","SETTINGS_GENERAL/LABEL_EDITOR_HTML_FORCED":"Html (forced)","SETTINGS_GENERAL/LABEL_EDITOR_PLAIN_FORCED":"Plain (forced)","SETTINGS_GENERAL/LABEL_ANIMATION":"Interface animation","SETTINGS_GENERAL/LABEL_ANIMATION_FULL":"Full","SETTINGS_GENERAL/LABEL_ANIMATION_NORMAL":"Normal","SETTINGS_GENERAL/LABEL_ANIMATION_NONE":"None","SETTINGS_GENERAL/LABEL_VIEW_OPTIONS":"View options","SETTINGS_GENERAL/LABEL_USE_PREVIEW_PANE":"Use preview pane","SETTINGS_GENERAL/LABEL_USE_CHECKBOXES_IN_LIST":"Display checkboxes in list","SETTINGS_GENERAL/LABEL_USE_THREADS":"Use threads","SETTINGS_GENERAL/LABEL_REPLY_SAME_FOLDER":"Place replies in the folder of the message being replied to","SETTINGS_GENERAL/LABEL_SHOW_IMAGES":"Always display external images in message body","SETTINGS_GENERAL/LABEL_SHOW_ANIMATION":"Show animation","SETTINGS_GENERAL/LABEL_MESSAGE_PER_PAGE":"Messages on page","SETTINGS_GENERAL/LABEL_NOTIFICATIONS":"Notifications","SETTINGS_GENERAL/LABEL_SOUND_NOTIFICATION":"Sound notification","SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC":"Show new messages notification popups","SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC_DENIED":"(Blocked by the browser)","SETTINGS_CONTACTS/LEGEND_CONTACTS":"Contacts","SETTINGS_CONTACTS/LABEL_CONTACTS_AUTOSAVE":"Automatically add recipients to your address book","SETTINGS_CONTACTS/LEGEND_CONTACTS_SYNC":"Remote Synchronization (CardDAV)","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_ENABLE":"Enable remote synchronization","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_SERVER":"Server","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_AB_URL":"Addressbook URL","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_USER":"User","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_PASSWORD":"Password","SETTINGS_THEMES/LEGEND_THEMES":"Themes","SETTINGS_THEMES/LEGEND_THEMES_CUSTOM":"Custom Theme Configuration","SETTINGS_THEMES/LABEL_CUSTOM_TYPE":"Type","SETTINGS_THEMES/LABEL_CUSTOM_TYPE_LIGHT":"Light","SETTINGS_THEMES/LABEL_CUSTOM_TYPE_DARK":"Dark","SETTINGS_THEMES/LABEL_CUSTOM_BACKGROUND_IMAGE":"Background","SETTINGS_THEMES/BUTTON_UPLOAD_BACKGROUND_IMAGE":"Upload background image (JPG, PNG)","SETTINGS_THEMES/ERROR_FILE_IS_TOO_BIG":"File is too big","SETTINGS_THEMES/ERROR_FILE_TYPE_ERROR":"Invalid file type (JPG and PNG only)","SETTINGS_THEMES/ERROR_UNKNOWN":"An unknown file upload error occurred","SETTINGS_SOCIAL/LEGEND_GOOGLE":"Google","SETTINGS_SOCIAL/BUTTON_GOOGLE_CONNECT":"Connect Google","SETTINGS_SOCIAL/BUTTON_GOOGLE_DISCONNECT":"Disconnect Google","SETTINGS_SOCIAL/MAIN_GOOGLE_DESC":"After enabling login via Google, you can log into this account using Google button on the login screen.","SETTINGS_SOCIAL/LEGEND_FACEBOOK":"Facebook","SETTINGS_SOCIAL/BUTTON_FACEBOOK_CONNECT":"Connect Facebook","SETTINGS_SOCIAL/BUTTON_FACEBOOK_DISCONNECT":"Disconnect Facebook","SETTINGS_SOCIAL/MAIN_FACEBOOK_DESC":"After enabling login via Facebook, you can log into this account using Facebook button on the login screen.","SETTINGS_SOCIAL/LEGEND_TWITTER":"Twitter","SETTINGS_SOCIAL/BUTTON_TWITTER_CONNECT":"Connect Twitter","SETTINGS_SOCIAL/BUTTON_TWITTER_DISCONNECT":"Disconnect Twitter","SETTINGS_SOCIAL/MAIN_TWITTER_DESC":"After enabling login via Twitter, you can log into this account using Twitter button on the login screen.","SETTINGS_FOLDERS/LEGEND_FOLDERS":"Folder List","SETTINGS_FOLDERS/BUTTON_CREATE":"Create Folder","SETTINGS_FOLDERS/BUTTON_SYSTEM":"System Folders","SETTINGS_FOLDERS/BUTTON_DELETE":"Delete","SETTINGS_FOLDERS/BUTTON_SUBSCRIBE":"Subscribe","SETTINGS_FOLDERS/BUTTON_UNSUBSCRIBE":"Unsubscribe","SETTINGS_FOLDERS/LOADING_PROCESS":"Updating folder list","SETTINGS_FOLDERS/CREATING_PROCESS":"Creating a folder","SETTINGS_FOLDERS/DELETING_PROCESS":"Deleting a folder","SETTINGS_FOLDERS/RENAMING_PROCESS":"Renaming a folder","SETTINGS_FOLDERS/DELETING_ASK":"Are you sure?","SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_1":"You have too many folders!","SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_2":"We have shown only a part of them, to avoid performance problems.","SETTINGS_FOLDERS/HELP_DELETE_FOLDER":"Delete folder","SETTINGS_FOLDERS/HELP_SHOW_HIDE_FOLDER":"Show/hide folder","SETTINGS_FOLDERS/HELP_CHECK_FOR_NEW_MESSAGES":"Check/don't check for new messages","SETTINGS_ACCOUNTS/LEGEND_ACCOUNTS":"Accounts","SETTINGS_ACCOUNTS/LEGEND_IDENTITIES":"Identities","SETTINGS_ACCOUNTS/LEGEND_ACCOUNTS_AND_IDENTITIES":"Accounts and Identities","SETTINGS_ACCOUNTS/BUTTON_ADD_ACCOUNT":"Add an Account","SETTINGS_ACCOUNTS/BUTTON_ADD_IDENTITY":"Add an Identity","SETTINGS_ACCOUNTS/BUTTON_DELETE":"Delete","SETTINGS_ACCOUNTS/LOADING_PROCESS":"Updating...","SETTINGS_ACCOUNTS/DELETING_ASK":"Are you sure?","SETTINGS_ACCOUNTS/DEFAULT_IDENTITY_LABEL":"default","SETTINGS_IDENTITIES/LEGEND_IDENTITY":"Identity","SETTINGS_IDENTITIES/LEGEND_IDENTITIES":"Additional Identities","SETTINGS_IDENTITIES/LABEL_DEFAULT":"Default","SETTINGS_IDENTITIES/LABEL_DISPLAY_NAME":"Name","SETTINGS_IDENTITIES/LABEL_REPLY_TO":"Reply-To","SETTINGS_IDENTITIES/LABEL_SIGNATURE":"Signature","SETTINGS_IDENTITIES/LABEL_ADD_SIGNATURE_TO_ALL":"Add your signature to all the outgoing messages","SETTINGS_IDENTITIES/BUTTON_ADD_IDENTITY":"Add Identity","SETTINGS_IDENTITIES/BUTTON_DELETE":"Delete","SETTINGS_IDENTITIES/LOADING_PROCESS":"Updating identity list","SETTINGS_IDENTITIES/DELETING_ASK":"Are you sure?","SETTINGS_CHANGE_PASSWORD/LEGEND_CHANGE_PASSWORD":"Change Password","SETTINGS_CHANGE_PASSWORD/LABEL_CURRENT_PASSWORD":"Current password","SETTINGS_CHANGE_PASSWORD/LABEL_NEW_PASSWORD":"New password","SETTINGS_CHANGE_PASSWORD/LABEL_REPEAT_PASSWORD":"Confirm New Password","SETTINGS_CHANGE_PASSWORD/BUTTON_UPDATE_PASSWORD":"Set New Password","SETTINGS_CHANGE_PASSWORD/ERROR_PASSWORD_MISMATCH":"Passwords do not match, please try again","SETTINGS_OPEN_PGP/LEGEND_OPEN_PGP":"OpenPGP","SETTINGS_OPEN_PGP/BUTTON_ADD_OPEN_PGP_KEY":"Import OpenPGP Key","SETTINGS_OPEN_PGP/BUTTON_GENERATE_OPEN_PGP_KEYS":"Generate OpenPGP Keys","SETTINGS_OPEN_PGP/TITLE_PRIVATE":"Private","SETTINGS_OPEN_PGP/TITLE_PUBLIC":"Public","SETTINGS_OPEN_PGP/DELETING_ASK":"Are you sure?","SETTINGS_OPEN_PGP/GENERATE_ONLY_HTTPS":"HTTPS only","SETTINGS_OPEN_PGP/LABEL_ALLOW_DRAFT_AUTOSAVE":"Automatically save draft","SHORTCUTS_HELP/LEGEND_SHORTCUTS_HELP":"Keyboard shortcuts help","SHORTCUTS_HELP/TAB_MAILBOX":"Mailbox","SHORTCUTS_HELP/TAB_MESSAGE_LIST":"Message list","SHORTCUTS_HELP/TAB_MESSAGE_VIEW":"Message view","SHORTCUTS_HELP/TAB_COMPOSE":"Compose","SHORTCUTS_HELP/LABEL_OPEN_USER_DROPDOWN":"Open user dropdown","SHORTCUTS_HELP/LABEL_REPLY":"Reply","SHORTCUTS_HELP/LABEL_REPLY_ALL":"Reply All","SHORTCUTS_HELP/LABEL_FORWARD":"Forward","SHORTCUTS_HELP/LABEL_FORWARD_MULTIPLY":"Forward as attachment(s)","SHORTCUTS_HELP/LABEL_HELP":"Help","SHORTCUTS_HELP/LABEL_CHECK_ALL":"Select all messages","SHORTCUTS_HELP/LABEL_ARCHIVE":"Archive","SHORTCUTS_HELP/LABEL_DELETE":"Delete","SHORTCUTS_HELP/LABEL_OPEN_THREAD":"Open selected thread","SHORTCUTS_HELP/LABEL_MOVE":"Move","SHORTCUTS_HELP/LABEL_READ":"Read selected messages","SHORTCUTS_HELP/LABEL_UNREAD":"Unread selected messages","SHORTCUTS_HELP/LABEL_IMPORTANT":"Important, flag selected messages","SHORTCUTS_HELP/LABEL_SEARCH":"Search","SHORTCUTS_HELP/LABEL_CANCEL_SEARCH":"Cancel search","SHORTCUTS_HELP/LABEL_FULLSCREEN_ENTER":"Fullscreen (Preview pane layout)","SHORTCUTS_HELP/LABEL_VIEW_MESSAGE_ENTER":"View message (No preview pane layout)","SHORTCUTS_HELP/LABEL_SWITCH_TO_MESSAGE":"Switch focus to selected message","SHORTCUTS_HELP/LABEL_SWITCH_TO_FOLDER_LIST":"Switch focus to folder list","SHORTCUTS_HELP/LABEL_FULLSCREEN_TOGGLE":"Toggle fullscreen mode","SHORTCUTS_HELP/LABEL_BLOCKQUOTES_TOGGLE":"Toggle message blockquotes","SHORTCUTS_HELP/LABEL_THREAD_NEXT":"Next message in thread","SHORTCUTS_HELP/LABEL_THREAD_PREV":"Previous message in thread","SHORTCUTS_HELP/LABEL_PRINT":"Print","SHORTCUTS_HELP/LABEL_EXIT_FULLSCREEN":"Exit fullscreen mode","SHORTCUTS_HELP/LABEL_CLOSE_MESSAGE":"Close message (No preview pane layout)","SHORTCUTS_HELP/LABEL_SWITCH_TO_LIST":"Switch focus back to message list","SHORTCUTS_HELP/LABEL_OPEN_COMPOSE_POPUP":"Open compose popup","SHORTCUTS_HELP/LABEL_MINIMIZE_COMPOSE_POPUP":"Minimize compose popup","SHORTCUTS_HELP/LABEL_OPEN_IDENTITIES_DROPDOWN":"Open identities dropdown","SHORTCUTS_HELP/LABEL_SAVE_MESSAGE":"Save message","SHORTCUTS_HELP/LABEL_SEND_MESSAGE":"Send message","SHORTCUTS_HELP/LABEL_CLOSE_COMPOSE":"Close compose","PGP_NOTIFICATIONS/NO_PUBLIC_KEYS_FOUND":"No public keys found","PGP_NOTIFICATIONS/NO_PUBLIC_KEYS_FOUND_FOR":"No public keys found for \"%EMAIL%\" email","PGP_NOTIFICATIONS/NO_PRIVATE_KEY_FOUND":"No private key found","PGP_NOTIFICATIONS/NO_PRIVATE_KEY_FOUND_FOR":"No private key found for \"%EMAIL%\" email","PGP_NOTIFICATIONS/ADD_A_PUBLICK_KEY":"Add a public key","PGP_NOTIFICATIONS/SELECT_A_PRIVATE_KEY":"Select a private key","PGP_NOTIFICATIONS/UNVERIFIRED_SIGNATURE":"Unverified signature","PGP_NOTIFICATIONS/DECRYPTION_ERROR":"OpenPGP decryption error","PGP_NOTIFICATIONS/GOOD_SIGNATURE":"Good signature from %USER%","PGP_NOTIFICATIONS/PGP_ERROR":"OpenPGP error: %ERROR%","PGP_NOTIFICATIONS/SPECIFY_FROM_EMAIL":"Please specify FROM email address","PGP_NOTIFICATIONS/SPECIFY_AT_LEAST_ONE_RECIPIENT":"Please specify at least one recipient","NOTIFICATIONS/INVALID_TOKEN":"Invalid token","NOTIFICATIONS/AUTH_ERROR":"Authentication failed","NOTIFICATIONS/ACCESS_ERROR":"Access error","NOTIFICATIONS/CONNECTION_ERROR":"Can't connect to server","NOTIFICATIONS/CAPTCHA_ERROR":"Incorrect CAPTCHA.","NOTIFICATIONS/SOCIAL_FACEBOOK_LOGIN_ACCESS_DISABLE":"This social ID is not assigned for any email account yet. Log in using email credentials and enable this feature in account settings.","NOTIFICATIONS/SOCIAL_TWITTER_LOGIN_ACCESS_DISABLE":"This social ID is not assigned for any email account yet. Log in using email credentials and enable this feature in account settings.","NOTIFICATIONS/SOCIAL_GOOGLE_LOGIN_ACCESS_DISABLE":"This social ID is not assigned for any email account yet. Log in using email credentials and enable this feature in account settings.","NOTIFICATIONS/DOMAIN_NOT_ALLOWED":"Domain is not allowed","NOTIFICATIONS/ACCOUNT_NOT_ALLOWED":"Account is not allowed","NOTIFICATIONS/ACCOUNT_TWO_FACTOR_AUTH_REQUIRED":"Two factor verification required","NOTIFICATIONS/ACCOUNT_TWO_FACTOR_AUTH_ERROR":"Two factor verification error","NOTIFICATIONS/COULD_NOT_SAVE_NEW_PASSWORD":"Could not save new password","NOTIFICATIONS/CURRENT_PASSWORD_INCORRECT":"Current password incorrect","NOTIFICATIONS/NEW_PASSWORD_SHORT":"Password is too short","NOTIFICATIONS/NEW_PASSWORD_WEAK":"Password is too easy","NOTIFICATIONS/NEW_PASSWORD_FORBIDDENT":"Password contains forbidden characters","NOTIFICATIONS/CONTACTS_SYNC_ERROR":"Contacts synchronization error","NOTIFICATIONS/CANT_GET_MESSAGE_LIST":"Can't get message list","NOTIFICATIONS/CANT_GET_MESSAGE":"Can't get message","NOTIFICATIONS/CANT_DELETE_MESSAGE":"Can't delete message","NOTIFICATIONS/CANT_MOVE_MESSAGE":"Can't move message","NOTIFICATIONS/CANT_SAVE_MESSAGE":"Can't save message","NOTIFICATIONS/CANT_SEND_MESSAGE":"Can't send message","NOTIFICATIONS/INVALID_RECIPIENTS":"Invalid recipients","NOTIFICATIONS/CANT_SAVE_FILTERS":"Can't save filters","NOTIFICATIONS/CANT_GET_FILTERS":"Can't get filters","NOTIFICATIONS/FILTERS_ARE_NOT_CORRECT":"Filters are not correct","NOTIFICATIONS/CANT_CREATE_FOLDER":"Can't create folder","NOTIFICATIONS/CANT_RENAME_FOLDER":"Can't rename folder","NOTIFICATIONS/CANT_DELETE_FOLDER":"Can't delete folder","NOTIFICATIONS/CANT_DELETE_NON_EMPTY_FOLDER":"Can't delete non-empty directory","NOTIFICATIONS/CANT_SUBSCRIBE_FOLDER":"Can't subscribe folder","NOTIFICATIONS/CANT_UNSUBSCRIBE_FOLDER":"Can't unsubscribe folder","NOTIFICATIONS/CANT_SAVE_SETTINGS":"Can't save settings","NOTIFICATIONS/CANT_SAVE_PLUGIN_SETTINGS":"Can't save settings","NOTIFICATIONS/DOMAIN_ALREADY_EXISTS":"Domain already exists","NOTIFICATIONS/CANT_INSTALL_PACKAGE":"Failed to install package","NOTIFICATIONS/CANT_DELETE_PACKAGE":"Failed to remove package","NOTIFICATIONS/INVALID_PLUGIN_PACKAGE":"Invalid plugin package","NOTIFICATIONS/UNSUPPORTED_PLUGIN_PACKAGE":"Unsupported plugin package","NOTIFICATIONS/LICENSING_SERVER_IS_UNAVAILABLE":"Subscription server is unvailable","NOTIFICATIONS/LICENSING_DOMAIN_EXPIRED":"Subscription for this domain has expired.","NOTIFICATIONS/LICENSING_DOMAIN_BANNED":"Subscription for this domain is banned.","NOTIFICATIONS/DEMO_SEND_MESSAGE_ERROR":"For security purposes, this account is not allowed to send messages to external e-mail addresses!","NOTIFICATIONS/DEMO_ACCOUNT_ERROR":"For security purposes, this account is not allowed for this action!","NOTIFICATIONS/ACCOUNT_ALREADY_EXISTS":"Account already exists","NOTIFICATIONS/ACCOUNT_DOES_NOT_EXIST":"Account doesn't exist","NOTIFICATIONS/MAIL_SERVER_ERROR":"An error has occured while accessing mail server","NOTIFICATIONS/INVALID_INPUT_ARGUMENT":"Invalid input argument","NOTIFICATIONS/UNKNOWN_ERROR":"Unknown error","STATIC/BACK_LINK":"Reload","STATIC/DOMAIN_LIST_DESC":"List of domains webmail is allowed to access.","STATIC/PHP_EXSTENSIONS_ERROR_DESC":"Required PHP extension are not available in your PHP configuration!","STATIC/PHP_VERSION_ERROR_DESC":"Your PHP version (%VERSION%) is lower than the minimal required 5.3.0!","STATIC/NO_SCRIPT_TITLE":"JavaScript is required for this application.","STATIC/NO_SCRIPT_DESC":"JavaScript support is not available in your browser.\nPlease enable JavaScript support in your browser settings and retry.","STATIC/NO_COOKIE_TITLE":"Cookies support is required for this application.","STATIC/NO_COOKIE_DESC":"Cookies support is not available in your browser.\nPlease enable Cookie support in your browser settings and retry.","STATIC/BAD_BROWSER_TITLE":"Your browser is outdated.","STATIC/BAD_BROWSER_DESC":"To use all the features of the application,\ndownload and install one of these browsers:"};window.moment && window.moment.locale && window.moment.locale('en');
\ No newline at end of file
--- /dev/null
+.thm-body{color:#333;background-color:#48525c;background-size:inherit;background-image:url("rainloop/v/1.17.0/themes/SquaresDark/images/background.jpg") !important;}.thm-loading{color:#ddd !important;text-shadow:0px 1px 0px rgba(0,0,0,0.5) !important;}.thm-loading .e-spinner .e-bounce{background-color:#ddd !important;}.thm-login-desc .desc{color:#ddd !important;text-shadow:0px 1px 0px rgba(0,0,0,0.5) !important;}.thm-login{border:none !important;background-color:#2b333d !important;background-color:rgba(0,0,0,0.5) !important;-webkit-border-radius:7px !important;-moz-border-radius:7px !important;border-radius:7px !important;-webkit-box-shadow:0px 2px 10px rgba(0,0,0,0.5) !important;-moz-box-shadow:0px 2px 10px rgba(0,0,0,0.5) !important;box-shadow:0px 2px 10px rgba(0,0,0,0.5) !important;}.thm-login.submitting-pane.submitting:before{background:rgba(0,0,0,0.3);-webkit-border-radius:7px !important;-moz-border-radius:7px !important;border-radius:7px !important;}.thm-login.submitting-pane.submitting:after{border-top-color:#fff;}.thm-login-text{color:#eee !important;}.thm-login-text .legend,.thm-login-text .e-checkbox-icon,.thm-login-text .g-ui-link,.thm-login-text .social-button,.thm-login-text .language-button{color:#eee !important;}.thm-powered,.thm-mobile-switcher{color:#ddd;}.thm-powered a,.thm-mobile-switcher a{color:#ddd;}.thm-powered a:hover,.thm-mobile-switcher a:hover{color:#fff;}.thm-languages{color:#ddd;}.thm-languages .flag-name{color:#ddd;border-color:#ddd;}.g-ui-menu{color:#333 !important;background-color:#fff !important;}.g-ui-menu .e-item > .e-link{color:#333 !important;background-color:#fff !important;}.g-ui-menu .e-item > .e-link > i{color:#333 !important;}.g-ui-menu .e-item.selected > .e-link{background-color:#eee !important;}.g-ui-menu .e-item > .e-link:hover,.g-ui-menu .e-item > .e-link:focus{color:#eee !important;background-color:#48525c !important;}.g-ui-menu .e-item > .e-link:hover > i,.g-ui-menu .e-item > .e-link:focus > i{color:#eee !important;}.g-ui-menu .e-item.disabled > .e-link,.g-ui-menu .e-item.disabled > .e-link:hover{color:#999 !important;background-color:#fff !important;}.g-ui-menu .e-item.disabled > .e-link > i,.g-ui-menu .e-item.disabled > .e-link:hover > i{color:#999 !important;}.thm-message-list-top-toolbar,.thm-message-list-bottom-toolbar{background-color:#eee !important;background-color:#ececec !important;background-image:-moz-linear-gradient(top,#f4f4f4,#dfdfdf) !important;background-image:-webkit-gradient(linear,0 0,0 100%,from(#f4f4f4),to(#dfdfdf)) !important;background-image:-webkit-linear-gradient(top,#f4f4f4,#dfdfdf) !important;background-image:-o-linear-gradient(top,#f4f4f4,#dfdfdf !important);background-image:linear-gradient(to bottom,#f4f4f4,#dfdfdf) !important;background-repeat:repeat-x !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff4f4f4', endColorstr='#ffdfdfdf', GradientType=0) !important;}.thm-folders .e-link{color:#aaa !important;}.thm-folders .e-link.selectable{color:#fff !important;}.thm-folders .e-link.selectable:hover{color:#fff !important;background-color:#2b333d !important;background-color:rgba(0,0,0,0.5) !important;}.thm-folders .e-link.selectable.selected{color:#fff !important;background-color:#2b333d !important;background-color:rgba(0,0,0,0.5) !important;}.thm-folders .e-link.focused{color:#fff !important;background-color:#2b333d !important;background-color:rgba(0,0,0,0.7) !important;}.thm-folders .e-link.selectable.droppableHover{color:#fff !important;background-color:#2b333d !important;background-color:rgba(0,0,0,0.5) !important;}.thm-settings-menu .e-item .e-link{color:#aaa !important;}.thm-settings-menu .e-item.selectable .e-link{color:#fff !important;}.thm-settings-menu .e-item.selectable:hover .e-link{background-color:#2b333d !important;background-color:rgba(0,0,0,0.5) !important;color:#fff !important;}.thm-settings-menu .e-item.selectable.selected .e-link{background-color:#2b333d !important;background-color:rgba(0,0,0,0.5) !important;color:#fff !important;}.thm-message-view-background-color{background-color:#fff !important;}#rl-app{display:block;}html.no-css{margin:0;padding:0;font-family:Arial, Verdana, Geneva, sans-serif;}html.no-css body{margin:0;padding:0;}html.no-css #rl-loading,html.no-css #rl-loading-error{position:absolute;font-size:30px;line-height:130%;top:50%;width:100%;height:65px;margin:0;margin-top:-60px;background-color:transparent;text-align:center;color:#333;}html.no-css .progressjs-container{display:none;}html.no-css .thm-body{color:#333;background-color:#aaa;background-image:none;}html.no-css .thm-loading{color:#333 !important;text-shadow:none !important;}html.no-css .thm-loading .e-spinner .e-bounce{display:none !important;}html.no-css .thm-login-desc .desc{color:#333 !important;text-shadow:none !important;}html.glass .thm-login{background:none !important;background:rgba(0,0,0,0.5) !important;box-shadow:none !important;border:none !important;border:1px solid rgba(255,255,255,0.2) !important;}html.glass .thm-login .controls .input-append .add-on i{color:rgba(255,255,255,0.8) !important;text-shadow:none !important;outline:none !important;box-shadow:none !important;}html.glass .thm-login .controls input{border:1px solid none !important;background:none !important;outline:none !important;text-shadow:none !important;box-shadow:none !important;color:#fff !important;border-color:rgba(255,255,255,0.8) !important;}html.glass .thm-login .controls input::-webkit-input-placeholder{color:#fff !important;text-shadow:none !important;}html.glass .thm-login .controls input::-moz-placeholder{color:#fff !important;text-shadow:none !important;}html.glass .thm-login .controls input:-moz-placeholder{color:#fff !important;text-shadow:none !important;}html.glass .thm-login .controls input:-ms-input-placeholder{color:#fff !important;text-shadow:none !important;}html.glass .thm-login .controls input:input-placeholder{color:#fff !important;text-shadow:none !important;}html.glass .thm-login .controls input:placeholder{color:#fff !important;text-shadow:none !important;}html.glass .thm-login .controls input:focus,html.glass .thm-login .controls input:hover{border-color:#fff !important;}html.glass .thm-login .controls .btn{border:1px solid none !important;background:none !important;outline:none !important;text-shadow:none !important;box-shadow:none !important;color:#fff !important;border-color:rgba(255,255,255,0.8) !important;text-transform:uppercase;font-size:13px;}html.glass .thm-login .controls .btn:hover,html.glass .thm-login .controls .btn:active{border-color:#fff !important;}html.glass .thm-login .controls.error .input-append .add-on i{color:#f76260 !important;}html.glass .thm-login .controls.error input{color:#f76260 !important;border-color:#f76260 !important;}html.glass .thm-login-text{color:rgba(255,255,255,0.8) !important;text-shadow:none !important;}html.glass .thm-login-text .legend,html.glass .thm-login-text .e-checkbox-icon,html.glass .thm-login-text .g-ui-link,html.glass .thm-login-text .social-button,html.glass .thm-login-text .language-button{color:rgba(255,255,255,0.8) !important;text-shadow:none !important;}
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html><html class="no-js rl-booted-trigger rl-started-trigger glass" dir="ltr"><head><noscript><meta http-equiv="refresh" content="0; URL=./?/NoScript"/></noscript><!--[if lte IE 8]><meta http-equiv="refresh" content="0; URL=./?/BadBrowser"/><![endif]--><meta charset="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/><meta name="viewport" content="width=950,maximum-scale=2"><meta name="apple-mobile-web-app-capable" content="yes"/><meta name="google" content="notranslate"/><meta name="robots" content="noindex,nofollow,noodp"/><meta name="AppBootData" content='{"admin":false,"language":"de_DE","theme":"SquaresDark","mobile":false,"mobileDevice":false}' id="app-boot-data"/><script type="text/javascript" data-cfasync="false" src="rainloop/v/1.17.0/static/js/min/polyfills.min.js?legacy"></script><title></title><link type="image/png" rel="shortcut icon" href="rainloop/v/1.17.0/static/apple-touch-icon.png?legacy"/><link type="image/png" rel="apple-touch-icon" href="rainloop/v/1.17.0/static/apple-touch-icon.png?legacy"/><link type="text/css" rel="stylesheet" href="rainloop/v/1.17.0/static/css/app.min.css?legacy" rel="preload"/><link type="text/css" rel="stylesheet" href="./?/Css/0/User/-/SquaresDark/-/3c07b66115715402a1dc3fff313433ad/Hash/-/" id="app-theme-link" rel="preload"/><link rel="manifest" href="rainloop/v/1.17.0/static/manifest.json?legacy"/></head><body><div id="rl-app"></div><div id="rl-check"></div><script id="rainloop-templates-id"></script><script id="InputComponent" type="text/html" data-cfasync="false"><input class="i18n" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: value, attr: {'placeholder': placeholder}, enable: enable, css: className"/><!-- ko if: labeled --> <span class="i18n" data-bind="attr: {'data-i18n': label}"></span> <!-- /ko --><!-- ko if: triggered --> <div data-bind="component: { name: 'SaveTrigger', params: { value: trigger } }"></div><!-- /ko --></script><script id="CheckboxMaterialDesignComponent" type="text/html" data-cfasync="false"><span class="e-component e-checkbox material-design inline" tabindex="0" data-bind="click: click, onSpace: click, css: { 'disabled': disable() || !enable() }"><div class="sub-checkbox-container" role="checkbox"><div class="sub-checkbox" data-bind="css: {'checked': (value() && !inverted) || (!value() && inverted), 'unchecked': (!value() && !inverted) || (value() && inverted), 'box': animationBox, 'checkmark': animationCheckmark}"></div></div><!-- ko if: labeled --><span class="sub-label i18n" data-bind="attr: {'data-i18n': label}, css: {'i18n-animation': labelAnimated}"></span><!-- /ko --></span></script><script id="SelectComponent" type="text/html" data-cfasync="false"><div class="e-component e-select inline"><!-- ko if: preLabeled --><span class="i18n" data-bind="attr: {'data-i18n': preLabel}"></span> <!-- /ko --><select data-bind="options: options, value: value, enable: enable, optionsText: optionsText, optionsValue: optionsValue, optionsCaption: optionsCaption, css: className, optionsAfterRender: defautOptionsAfterRender"></select><!-- ko if: labeled --> <span class="i18n" data-bind="attr: {'data-i18n': label}"></span> <!-- /ko --><!-- ko if: triggered --> <div data-bind="component: { name: 'SaveTrigger', params: { value: trigger } }"></div><!-- /ko --></div></script><script id="TextAreaComponent" type="text/html" data-cfasync="false"><textarea class="i18n" rows="5" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, enable: enable, attr: { 'placeholder': placeholder, 'rows': rows, 'spellcheck': spellcheck ? 'true' : 'false' }, css: className"></textarea><!-- ko if: triggered --> <div data-bind="component: { name: 'SaveTrigger', params: { value: trigger, verticalAlign: 'top' } }"></div><!-- /ko --></script><script id="DateComponent" type="text/html" data-cfasync="false"><input class="i18n" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="pikaday: value, attr: {'placeholder': placeholder}, enable: enable, css: className"/><!-- ko if: labeled --> <span class="i18n" data-bind="attr: {'data-i18n': label}"></span> <!-- /ko --><!-- ko if: triggered --> <div data-bind="component: { name: 'SaveTrigger', params: { value: trigger } }"></div><!-- /ko --></script><script id="RadioComponent" type="text/html" data-cfasync="false"><div class="e-component e-radio" data-bind="foreach: values"><label tabindex="0" data-bind="click: $parent.click, css: {'inline': $parent.inline}"><i role="radio" data-bind="css: $parent.value() === value ? 'icon-radio-checked' : 'icon-radio-unchecked'"></i> <span class="sub-label i18n" data-bind="attr: {'data-i18n': label}"></span></label></div></script><script id="CheckboxComponent" type="text/html" data-cfasync="false"><span class="e-component e-checkbox inline" tabindex="0" data-bind="click: click, onSpace: click, css: { 'disabled': disable() || !enable() }"><i role="checkbox" class="e-checkbox-icon" data-bind="css: value() ? (inverted ? 'icon-checkbox-unchecked' : 'icon-checkbox-checked') : (inverted ? 'icon-checkbox-checked' : 'icon-checkbox-unchecked') "></i><!-- ko if: labeled --> <span class="sub-label i18n" data-bind="attr: {'data-i18n': label}, css: {'i18n-animation': labelAnimated}"></span><!-- /ko --></span></script><script id="SaveTriggerComponent" type="text/html" data-cfasync="false"><div class="e-component settings-saved-trigger"><i class="icon-spinner animated"></i><i class="icon-remove error"></i><i class="icon-ok success"></i></div></script><script id="CheckboxClassicComponent" type="text/html" data-cfasync="false"><label class="e-component e-checkbox inline" data-bind="css: { 'disabled': disable() || !enable() }"><input type="checkbox" data-bind="checked: value, disable: disable() || !enable()" style="margin: 0 0 1px 0;"/><!-- ko if: labeled --> <span class="sub-label i18n" data-bind="attr: {'data-i18n': label}, css: {'i18n-animation': labelAnimated}"></span><!-- /ko --></label></script><script id="MailMessageListItem" type="text/html" data-cfasync="false"><div class="messageListItem" data-bind="css: lineAsCss()"><div class="sidebarParent"> </div><div class="delimiter"></div><div class="wrapper"><div class="flagParent"><span class="flagOn"><i class="icon-star"></i></span><span class="flagOnHalf"><i class="icon-star-empty"></i></span><span class="flagOff"><i class="icon-star-empty"></i></span></div><div class="dateParent actionHandle dragHandle"><span class="date" data-moment-format="SHORT" data-moment-format-title="FULL" data-bind="moment: dateTimeStampInUTC"></span></div><div class="threadsParent" data-bind="visible: 1 < threadsLen()"><span class="threads-len"><span class="threads-len-data"><span data-bind="text: threadsLen"></span><i class="icon-right-mini"></i></span></span></div><div class="checkedParent"><i class="checkboxMessage" data-bind="css: checked() ? 'checkboxMessage icon-checkbox-checked' : 'checkboxMessage icon-checkbox-unchecked'"></i></div><div class="senderParent actionHandle dragHandle"><span class="replyFlag"><i class="icon-reply"></i> </span><span class="forwardFlag"><i class="icon-forward"></i> </span><span class="sender" data-bind="text: senderEmailsString, attr: {'title': senderClearEmailsString}"></span> </div><div class="attachmentParent actionHandle dragHandle"><span class="attachment"><i data-bind="css: attachmentIconClass"></i></span></div><div class="subjectParent actionHandle dragHandle"><b class="importantMark">!</b><span class="subject emptySubjectText" data-bind="text: $root.emptySubjectValue"></span><span class="subject-prefix" data-bind="text: subjectPrefix"></span><span class="subject-suffix" data-bind="text: subjectSuffix"></span></div></div></div></script><script id="PopupsMessageOpenPgp" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-message-open-pgp-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_MESSAGE_OPEN_PGP/TITLE_MESSAGE_OPEN_PGP"></span></h3></div><div class="modal-body"><div class="form-horizontal"><div class="alert" data-bind="visible: '' !== notification()"><span data-bind="text: notification"></span></div><br /><div class="control-group"><label class="i18n control-label" data-i18n="POPUPS_MESSAGE_OPEN_PGP/LABEL_KEY"></label><div class="controls key-list" data-bind="foreach: privateKeys" style="margin-top: 5px"><div class="key-list__item"><i class="key-list__item__radio icon-radio-unchecked"></i><div class="key-list__item__names"><span data-bind="foreach: users"><div><span class="key-list__item__name"><span data-bind="text: $data"></span> <span>[<span data-bind="text: $parent.id"></span>]</span></span></div></span></div></div><!--<div data-bind="json: $data"></div>--></div></div><div class="control-group"><label class="i18n control-label" data-i18n="POPUPS_MESSAGE_OPEN_PGP/LABEL_PASSWORD"></label><div class="controls"><input type="password" class="inputPassword input-xlarge" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: password, hasfocus: password.focus, onEnter: doCommand"/></div></div></div></div><div class="modal-footer"><button class="btn buttonDo" data-bind="command: doCommand, hasfocus: buttonFocus"><i data-bind="css: {'icon-key': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i> <span class="i18n" data-i18n="POPUPS_MESSAGE_OPEN_PGP/BUTTON_DECRYPT"></span></button></div></div></div></div></script><script id="SettingsAccounts" type="text/html" data-cfasync="false"><div class="b-settings-accounts g-ui-user-select-none"><div data-bind="visible: allowAdditionalAccount"><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_ACCOUNTS/LEGEND_ACCOUNTS"></span> <i class="icon-spinner animated" style="margin-top: 5px" data-bind="visible: accounts.loading"></i></div></div><a class="btn" data-bind="click: addNewAccount"><i class="icon-user-add"></i> <span class="i18n" data-i18n="SETTINGS_ACCOUNTS/BUTTON_ADD_ACCOUNT"></span></a><br /><br /><br /><div class="accounts-list-wrp"><div class="accounts-list-top-padding"></div><table class="table table-hover list-table accounts-list" data-bind="i18nUpdate: accounts"><colgroup><col /><col style="width: 150px"/><col style="width: 1%"/></colgroup><tbody data-bind="sortable: {data: accounts, options: scrollableOptions('.accounts-list-wrp'), afterMove: accountsAndIdentitiesAfterMove}"><tr class="account-item"><td class="e-action" data-bind="css: {'e-action': canBeEdit}"><span class="account-img icon-user"></span><i class="icon-braille drag-handle"></i> <span class="account-name" data-bind="text: email"></span></td><td><span data-bind="visible: !canBeDeleted()"></span><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="visible: canBeDeleted, css: {'delete-access': deleteAccess}, click: function(oAccount) { $root.deleteAccount(oAccount); }"><span class="i18n" data-i18n="SETTINGS_ACCOUNTS/DELETING_ASK"></span></a></td><td><span class="delete-account" data-bind="visible: !deleteAccess() && canBeDeleted(), click: function (oAccount) { $root.accountForDeletion(oAccount); }"><i class="icon-trash"></i></span></td></tr></tbody></table></div></div><div data-bind="visible: allowIdentities"><br /><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_ACCOUNTS/LEGEND_IDENTITIES"></span></div></div><a class="btn" data-bind="click: addNewIdentity"><i class="icon-user-add"></i> <span class="i18n" data-i18n="SETTINGS_ACCOUNTS/BUTTON_ADD_IDENTITY"></span></a><br /><br /><br /><div class="identities-list-wrp"><div class="identities-list-top-padding"></div><table class="table table-hover list-table identities-list" data-bind="i18nUpdate: identities"><colgroup><col /><col style="width: 150px"/><col style="width: 1%"/></colgroup><tbody data-bind="sortable: {data: identities, options: scrollableOptions('.identities-list-wrp'), afterMove: accountsAndIdentitiesAfterMove}"><tr class="identity-item"><td class="e-action"><span class="identity-img icon-user"></span><i class="icon-braille drag-handle"></i> <span class="identity-name" data-bind="text: formattedName()"></span> <span class="identity-default" data-bind="visible: 0 === $index()"> (<span class="i18n" data-i18n="SETTINGS_ACCOUNTS/DEFAULT_IDENTITY_LABEL"></span>) </span></td><td><span data-bind="visible: !canBeDeleted()"></span><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="visible: canBeDeleted, css: {'delete-access': deleteAccess}, click: function(oIdentity) { $root.deleteIdentity(oIdentity); }"><span class="i18n" data-i18n="SETTINGS_ACCOUNTS/DELETING_ASK"></span></a></td><td><span class="delete-identity" data-bind="visible: !deleteAccess() && canBeDeleted(), click: function (oIdentity) { $root.identityForDeletion(oIdentity); }"><i class="icon-trash"></i></span></td></tr></tbody></table></div></div></div></script><script id="SettingsSocial" type="text/html" data-cfasync="false"><div class="b-settings-social g-ui-user-select-none"><div class="form-horizontal" data-bind="visible: googleEnable() && googleEnableAuth()"><div class="legend"><span class="i18n" data-i18n="SETTINGS_SOCIAL/LEGEND_GOOGLE"></span></div><div class="control-group" data-bind="visible: !googleLoggined()"><button class="btn" data-bind="command: connectGoogleCommand"><i class="icon-google" data-bind="visible: !googleActions()"></i><i class="icon-spinner animated" data-bind="visible: googleActions()"></i> <span class="i18n" data-i18n="SETTINGS_SOCIAL/BUTTON_GOOGLE_CONNECT"></span></button><br /><br /><blockquote><p class="i18n muted" style="width: 500px" data-i18n="SETTINGS_SOCIAL/MAIN_GOOGLE_DESC"></p></blockquote></div><div class="control-group" data-bind="visible: googleLoggined"><strong><i class="icon-google"></i> <span data-bind="text: googleUserName"></span></strong><br /><br /><button class="btn" data-bind="command: disconnectGoogleCommand"><i class="icon-remove" data-bind="visible: !googleActions()"></i><i class="icon-spinner animated" data-bind="visible: googleActions()"></i> <span class="i18n" data-i18n="SETTINGS_SOCIAL/BUTTON_GOOGLE_DISCONNECT"></span></button></div></div><div class="form-horizontal" data-bind="visible: facebookEnable"><div class="legend"><span class="i18n" data-i18n="SETTINGS_SOCIAL/LEGEND_FACEBOOK"></span></div><div class="control-group" data-bind="visible: !facebookLoggined()"><button class="btn" data-bind="command: connectFacebookCommand"><i class="icon-facebook" data-bind="visible: !facebookActions()"></i><i class="icon-spinner animated" data-bind="visible: facebookActions()"></i> <span class="i18n" data-i18n="SETTINGS_SOCIAL/BUTTON_FACEBOOK_CONNECT"></span></button><br /><br /><blockquote><p class="i18n muted" style="width: 500px" data-i18n="SETTINGS_SOCIAL/MAIN_FACEBOOK_DESC"></p></blockquote></div><div class="control-group" data-bind="visible: facebookLoggined"><strong><i class="icon-facebook"></i> <span data-bind="text: facebookUserName"></span></strong><br /><br /><button class="btn" data-bind="command: disconnectFacebookCommand"><i class="icon-remove" data-bind="visible: !facebookActions()"></i><i class="icon-spinner animated" data-bind="visible: facebookActions()"></i> <span class="i18n" data-i18n="SETTINGS_SOCIAL/BUTTON_FACEBOOK_DISCONNECT"></span></button></div></div><div class="form-horizontal" data-bind="visible: twitterEnable"><div class="legend"><span class="i18n" data-i18n="SETTINGS_SOCIAL/LEGEND_TWITTER"></span></div><div class="control-group" data-bind="visible: !twitterLoggined()"><button class="btn" data-bind="command: connectTwitterCommand"><i class="icon-twitter" data-bind="visible: !twitterActions()"></i><i class="icon-spinner animated" data-bind="visible: twitterActions()"></i> <span class="i18n" data-i18n="SETTINGS_SOCIAL/BUTTON_TWITTER_CONNECT"></span></button><br /><br /><blockquote><p class="i18n muted" style="width: 500px" data-i18n="SETTINGS_SOCIAL/MAIN_TWITTER_DESC"></p></blockquote></div><div class="control-group" data-bind="visible: twitterLoggined"><strong><i class="icon-twitter"></i> <span data-bind="text: twitterUserName"></span></strong><br /><br /><button class="btn" data-bind="command: disconnectTwitterCommand"><i class="icon-remove" data-bind="visible: !twitterActions()"></i><i class="icon-spinner animated" data-bind="visible: twitterActions()"></i> <span class="i18n" data-i18n="SETTINGS_SOCIAL/BUTTON_TWITTER_DISCONNECT"></span></button></div></div></div></script><script id="SystemDropDown" type="text/html" data-cfasync="false"><div class="b-system-drop-down g-ui-user-select-none"><div class="b-toolbar"><div class="btn-toolbar"><div class="btn-group btn-group-last pull-right dropdown colored-toggle" data-bind="registrateBootstrapDropdown: true, openDropdownTrigger: accountMenuDropdownTrigger"><a id="top-system-dropdown-id" href="#" tabindex="-1" class="btn single btn-ellipsis btn-block dropdown-toggle system-dropdown" data-toggle="dropdown"><i data-bind="css: {'icon-user': !accounts.loading(), 'icon-spinner animated': accounts.loading()}"></i><!-- <b data-bind="text: accountsUnreadCount, visible: 100 > accountsUnreadCount() && 0 < accountsUnreadCount()"></b><b data-bind="visible: 99 < accountsUnreadCount()">99+</b> --> <span class="caret"></span></a><ul class="dropdown-menu g-ui-menu" tabindex="-1" role="menu" aria-labelledby="top-system-dropdown-id"><!-- ko if: accounts().length --><!-- ko foreach: accounts --><li class="e-item" role="presentation"><a class="e-link menuitem account-item" href="#" data-bind="click: $root.accountClick, attr: {'href': changeAccountLink()}, css: {'current': $root.accountEmail() === email}"><!-- <b class="pull-right counter" data-bind="visible: 0 < count()"><span data-bind="text: count, visible: 100 > count()"></span><span data-bind="visible: 99 < count()">99+</span></b>--><i class="icon-ok"></i><i class="icon-user"></i> <span class="email-title" data-bind="text: email, attr: {title: email}"></span></a></li><!-- /ko --><!-- /ko --><!-- ko if: capaAdditionalAccounts --><li class="divider" role="presentation"></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: addAccountClick"><i class="icon-plus"></i> <span class="i18n" data-i18n="TOP_TOOLBAR/BUTTON_ADD_ACCOUNT"></span></a></li><!-- /ko --><li class="e-item" role="presentation" data-bind="visible: allowSettings"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: settingsClick"><i class="icon-cog"></i> <span class="i18n" data-i18n="TOP_TOOLBAR/BUTTON_SETTINGS"></span></a></li><li class="e-item" role="presentation" data-bind="visible: allowHelp"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: settingsHelp"><i class="icon-help"></i> <span class="i18n" data-i18n="TOP_TOOLBAR/BUTTON_HELP"></span></a></li><li class="divider" role="presentation" data-bind="visible: allowSettings || allowHelp"></li><li class="e-item" role="presentation" data-bind="visible: mobile"><a class="e-link menuitem" href="./?/DesktopVersion/" tabindex="-1"><i class="icon-laptop"></i> <span class="i18n" data-i18n="MOBILE/BUTTON_DESKTOP_VERSION"></span></a></li><li class="e-item" role="presentation" data-bind="visible: !mobile"><a class="e-link menuitem" href="./?/MobileVersion/" tabindex="-1"><i class="icon-mobile"></i> <span class="i18n" data-i18n="MOBILE/BUTTON_MOBILE_VERSION"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: logoutClick"><i class="icon-power"></i> <span class="i18n" data-i18n="TOP_TOOLBAR/BUTTON_LOGOUT"></span></a></li></ul></div><div class="accountPlace pull-right hide-on-mobile" data-bind="text: emailTitle()"></div><div class="audioPlace pull-right" data-tooltip-i18n="off" data-tooltip-mobile="on" data-tooltip-join="right top" data-bind="visible: '' !== currentAudio(), tooltip: currentAudio, click: stopPlay"><div class="playIcon equaliser" data-bind="css: {'animated': '' !== currentAudio()}"><div class="bar first"></div><div class="bar second"></div><div class="bar third"></div></div><i class="stopIcon icon-pause"></i></div><div class="logoPlace pull-right" data-bind="if: logoImg"><img style="height: 99%" data-tooltip-i18n="off" data-tooltip-mobile="on" data-tooltip-join="right" data-bind="attr: { 'src': logoImg }, tooltip: logoTitle"/></div></div></div></div></script><script id="PhotoSwipe" type="text/html" data-cfasync="false"><div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> <div class="pswp__bg"></div> <div class="pswp__scroll-wrap"> <div class="pswp__container"> <div class="pswp__item"></div> <div class="pswp__item"></div> <div class="pswp__item"></div> </div> <div class="pswp__ui pswp__ui--hidden"> <div class="pswp__top-bar"> <div class="pswp__counter"></div> <button class="pswp__button pswp__button--close i18n" title="Close (Esc)" data-i18n="[title]PREVIEW_POPUP/CLOSE"></button> <button class="pswp__button pswp__button--fs i18n" title="Toggle fullscreen" data-i18n="[title]PREVIEW_POPUP/FULLSCREEN"></button> <button class="pswp__button pswp__button--zoom i18n" title="Zoom in/out" data-i18n="[title]PREVIEW_POPUP/ZOOM"></button> <div class="pswp__preloader"> <div class="pswp__preloader__icn"><div class="pswp__preloader__cut"><div class="pswp__preloader__donut"></div></div> </div> </div> </div> <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> <div class="pswp__share-tooltip"></div> </div> <button class="pswp__button pswp__button--arrow--left i18n" title="Previous (arrow left)" data-i18n="[title]PREVIEW_POPUP/GALLERY_PREV"></button> <button class="pswp__button pswp__button--arrow--right i18n" title="Next (arrow right)" data-i18n="[title]PREVIEW_POPUP/GALLERY_NEXT"></button> <div class="pswp__caption"> <div class="pswp__caption__center"></div> </div></div></div></div></script><script id="SettingsFiltersConditionSize" type="text/html" data-cfasync="false"><div class="control-group" data-bind="css: {'error': value.error}" style="margin-bottom: 0"><select class="span3" data-bind="options: $root.fieldOptions, value: field, optionsText: 'name', optionsValue: 'id'"></select> <select class="span2" data-bind="options: $root.typeOptionsSize, value: type, optionsText: 'name', optionsValue: 'id'"></select> <input class="span3" type="text" data-bind="value: value"/> <span class="delete-action button-delete pull-right" style="margin-top: 5px;" data-bind="click: function (oCondition) { $root.removeCondition(oCondition); }"><i class="icon-trash"></i></span></div></script><script id="PopupsFilter" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-filter-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_FILTER/TITLE_CREATE_FILTER" data-bind="visible: isNew"></span><span class="i18n" data-i18n="POPUPS_FILTER/TITLE_EDIT_FILTER" data-bind="visible: !isNew()"></span></h3></div><div class="modal-body"><div class="row filter" data-bind="with: filter, i18nInit: filter"><div class="span9" data-bind="i18nInit: true"><div class="control-group" data-bind="css: {'error': name.error}"><div class="controls"><input type="text" class="i18n span5" data-bind="value: name, hasFocus: name.focused" autocorrect="off" autocapitalize="off" spellcheck="false" data-i18n="[placeholder]POPUPS_FILTER/FILTER_NAME"/></div></div><div class="legend i18n" data-i18n="POPUPS_FILTER/LEGEND_CONDITIONS"></div><div><div data-bind="visible: 1 < conditions().length"><select class="span4" data-bind="value: conditionsType"><option value="Any" class="i18n" data-i18n="POPUPS_FILTER/SELECT_MATCH_ANY"></option><option value="All" class="i18n" data-i18n="POPUPS_FILTER/SELECT_MATCH_ALL"></option></select></div><div data-bind="visible: 0 < conditions().length, foreach: conditions"><div data-bind="template: {'name': template(), 'data': $data}"></div></div><div data-bind="visible: 0 === conditions().length"><span class="i18n" data-i18n="POPUPS_FILTER/ALL_INCOMING_MESSAGES_DESC"></span></div><br /><a class="btn" data-bind="click: addCondition, i18nInit: true"><i class="icon-plus"></i> <span class="i18n" data-i18n="POPUPS_FILTER/BUTTON_ADD_CONDITION"></span></a></div><br /><div class="legend i18n" data-i18n="POPUPS_FILTER/LEGEND_ACTIONS"></div><select class="span3" data-bind="options: $root.actionTypeOptions, value: actionType, optionsText: 'name', optionsValue: 'id'"></select><div data-bind="template: {'name': actionTemplate()}, i18nUpdate: actionTemplate"></div></div></div></div><div class="modal-footer"><a class="btn buttonSave" data-bind="command: saveFilterCommand"><i class="icon-ok"></i> <span class="i18n" data-i18n="POPUPS_FILTER/BUTTON_DONE"></span></a></div></div></div></div></script><script id="PopupsCompose" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-compose" data-backdrop="static" data-bind="modal: modalVisibility, css: {'loading': saving() || sending()}"><div class="modal-header b-header-toolbar g-ui-user-select-none"><a class="btn btn-large button-send" data-bind="command: sendCommand, tooltipErrorTip: sendErrorDesc, css: {'btn-success': sendButtonSuccess, 'btn-danger': sendError, 'btn-warning': sendSuccessButSaveError }"><i class="icon-white" data-bind="css: {'icon-paper-plane': !sending(), 'icon-spinner animated big': sending()}"></i><span class="i18n btn-text hide-on-mobile" data-i18n="COMPOSE/BUTTON_SEND"></span></a><a class="btn button-save" data-bind="visible: allowFolders, command: saveCommand, tooltipErrorTip: savedErrorDesc, css: {'btn-danger': savedError }"><i data-bind="css: {'icon-floppy': !saving(), 'icon-spinner animated': saving(), 'icon-white': savedError()}"></i><span class="i18n btn-text hide-on-mobile" data-i18n="COMPOSE/BUTTON_SAVE"></span></a><a class="close-custom" data-tooltip-join="top" data-bind="click: tryToClosePopup, tooltip: 'COMPOSE/BUTTON_CANCEL'">×</a><a class="minimize-custom" data-tooltip-join="top" data-bind="click: skipCommand, tooltip: 'COMPOSE/BUTTON_MINIMIZE'"></a><a class="btn btn-danger button-delete button-delete-transitions" data-bind="command: deleteCommand"><i class="icon-trash icon-white"></i></a><span class="saved-text hide-on-mobile" data-bind="text: savedTimeText"></span></div><div class="modal-body"><div><div class="b-header g-ui-user-select-none"><div class="g-ui-table"><div class="e-row" style="height: 40px;"><div class="e-cell e-label"><label class="control-label"><span class="i18n" data-i18n="COMPOSE/TITLE_FROM"></span></label></div><div class="e-cell e-value"><div class="dropdown pull-left" data-bind="registrateBootstrapDropdown: true, openDropdownTrigger: identitiesDropdownTrigger"><a class="dropdown-toggle g-ui-dropdown e-identity" href="#" tabindex="-1" id="identity-label-id" role="button" data-toggle="dropdown" data-bind="text: currentIdentityView, dropdownCloser: true, css: {'multiply': 1 < identitiesOptions().length }"></a><!-- ko if: 1 < identitiesOptions().length --><ul class="dropdown-menu g-ui-menu" role="menu" aria-labelledby="identity-label-id"><!-- ko foreach: identitiesOptions --><li class="e-item" role="presentation"><a class="e-link menuitem" tabindex="-1" href="javascript:void(0);" data-bind="click: function (oIdentity) { $root.selectIdentity(oIdentity); return true; }"><span data-bind="text: optText"></span></a></li><!-- /ko --></ul><!-- /ko --></div><div class="pull-right"><div class="btn-group dropdown colored-toggle pull-right" style="margin-right: 4px;"><a class="btn single dropdown-toggle buttonMore" data-toggle="dropdown"><i class="icon-list"></i></a><ul class="dropdown-menu g-ui-menu" role="menu"><li class="e-item" data-bind="click: function () { requestReadReceipt(!requestReadReceipt()); }"><a class="e-link"><i class="icon-checkbox-unchecked" data-bind="css: {'icon-checkbox-checked': requestReadReceipt(), 'icon-checkbox-unchecked': !requestReadReceipt() }"></i> <span class="i18n" data-i18n="COMPOSE/BUTTON_REQUEST_READ_RECEIPT"></span></a></li><li class="e-item" data-bind="click: function () { requestDsn(!requestDsn()); }"><a class="e-link"><i class="icon-checkbox-unchecked" data-bind="css: {'icon-checkbox-checked': requestDsn(), 'icon-checkbox-unchecked': !requestDsn() }"></i> <span class="i18n" data-i18n="COMPOSE/BUTTON_REQUEST_DSN"></span></a></li><li class="e-item" data-bind="click: function () { markAsImportant(!markAsImportant()); }"><a class="e-link"><i class="icon-checkbox-unchecked" data-bind="css: {'icon-checkbox-checked': markAsImportant(), 'icon-checkbox-unchecked': !markAsImportant() }"></i> <span class="i18n" data-i18n="COMPOSE/BUTTON_MARK_AS_IMPORTANT"></span></a></li><li class="divider" data-bind="visible: capaOpenPGP"></li><li class="e-item" data-bind="visible: capaOpenPGP, click: openOpenPgpPopup, css: {'disabled': isHtml()}"><a class="e-link"><i class="icon-key"></i> <span class="i18n" data-i18n="COMPOSE/BUTTON_OPEN_PGP"></span></a></li></ul></div><div class="btn-group pull-right"> </div><div class="btn-group pull-right"><a class="btn single" data-tooltip-join="top" data-bind="visible: allowContacts, command: contactsCommand, tooltip: 'FOLDER_LIST/BUTTON_CONTACTS'"><i class="icon-address-book"></i></a></div><div class="btn-group pull-right"> </div></div><span class="pull-right"><span class="i18n g-ui-link" data-i18n="COMPOSE/TITLE_CC" data-bind="visible: !showCc(), click: function () { showCc(true); }"></span> <span data-bind="visible: !showBcc()"><span class="i18n g-ui-link" data-i18n="COMPOSE/TITLE_BCC" data-bind="click: function () { showBcc(true); }"></span> </span><span class="i18n g-ui-link" data-i18n="COMPOSE/TITLE_REPLY_TO" data-bind="visible: !showReplyTo(), click: function () { showReplyTo(true); }"></span> </span></div></div><div class="e-row"><div class="e-cell e-label"><label class="control-label" data-bind="css: {'error-to': emptyToError}"><span class="i18n" data-i18n="COMPOSE/TITLE_TO" data-tooltip-join="top" data-bind="tooltipErrorTip: emptyToErrorTooltip"></span></label></div><div class="e-cell e-value"><input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: to, emailsTagsFocus: to.focused, autoCompleteSource: emailsSource"/></div></div><div class="e-row cc-row" data-bind="visible: showCc"><div class="e-cell e-label"><span class="i18n" data-i18n="COMPOSE/TITLE_CC"></span></div><div class="e-cell e-value"><input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: cc, autoCompleteSource: emailsSource"/></div></div><div class="e-row bcc-row" data-bind="visible: showBcc"><div class="e-cell e-label"><span class="i18n" data-i18n="COMPOSE/TITLE_BCC"></span></div><div class="e-cell e-value"><input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: bcc, autoCompleteSource: emailsSource"/></div></div><div class="e-row reply-to-row" data-bind="visible: showReplyTo"><div class="e-cell e-label"><span class="i18n" data-i18n="COMPOSE/TITLE_REPLY_TO"></span></div><div class="e-cell e-value"><input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: replyTo, autoCompleteSource: emailsSource"/></div></div><div class="e-row"><div class="e-cell e-label"><span class="i18n" data-i18n="COMPOSE/TITLE_SUBJECT"></span></div><div class="e-cell e-value"><input type="text" size="70" autocomplete="off" data-bind="textInput: subject, hasFocus: subject.focused"/></div></div><div class="e-row"><div class="e-cell e-label"></div><div class="e-cell e-value"><div><div class="pull-left"><div class="btn-group" data-toggle="buttons-radio"><button type="button" class="btn first" data-bind="click: function () { attachmentsPlace(false); }, css: { 'active': !attachmentsPlace() }"><i class="icon-file-text"></i></button><button type="button" class="btn last" data-tooltip-join="left" data-bind="click: function () { attachmentsPlace(true); }, css: { 'btn-danger': 0 < attachmentsInErrorCount(), 'active': attachmentsPlace() }, tooltipErrorTip: attachmentsErrorTooltip"><span data-bind="visible: 0 < attachmentsCount()"><b data-bind="text: attachmentsCount"></b> </span><i data-bind="css: { 'icon-attachment': 0 === attachmentsInProcessCount(), 'icon-spinner animated': 0 < attachmentsInProcessCount(), 'icon-white': 0 < attachmentsInErrorCount() }"></i></button></div></div><div class="pull-right" style="margin-right: 4px;"><div class="btn-group pull-right"><a class="btn first" data-tooltip-join="bottom" style="padding-left: 10px; padding-right: 10px;" data-bind="visible: addAttachmentEnabled(), initDom: composeUploaderButton, tooltip: 'COMPOSE/ATTACH_FILES', css: {'last': !(driveEnabled() && driveVisible()) && !(dropboxEnabled())}"><sup style="font-weight: bold; font-size: 100%; top: -0.3em;">+</sup><i class="icon-attachment"></i></a><a class="btn" data-tooltip-join="bottom" data-bind="visible: dropboxEnabled, command: dropboxCommand, tooltip: 'COMPOSE/DROPBOX', css: {'first': !addAttachmentEnabled(), 'last': !(driveEnabled() && driveVisible())}"><i class="icon-dropbox"></i></a><a class="btn last" data-tooltip-join="bottom" data-bind="visible: driveEnabled() && driveVisible(), command: driveCommand, tooltip: 'COMPOSE/GOOGLE_DRIVE', css: {'first': !addAttachmentEnabled() && !(driveEnabled() && driveVisible())}"><i class="icon-google-drive"></i></a></div></div></div></div></div></div></div><div class="attachmentAreaParent b-content" style="height: 200px; min-height: 200px" data-bind="nano: true, scrollerShadows: true, visible: attachmentsPlace, initResizeTrigger: [resizer(), 200, 57]"><div class="content g-scrollbox" data-scroller-shadows-content><div class="content-wrapper"><div class="b-attachment-place" data-bind="visible: addAttachmentEnabled() && dragAndDropEnabled() && dragAndDropVisible(), initDom: composeUploaderDropPlace, css: {'dragAndDropOver': dragAndDropOver}"><span class="i18n" data-i18n="COMPOSE/ATTACH_DROP_FILES_DESC"></span></div><ul class="attachmentList" data-bind="template: { name: 'ComposeAttachment', foreach: attachments }"></ul><div class="no-attachments-desc" data-bind="visible: 0 === attachments().length"><span class="i18n" data-i18n="COMPOSE/NO_ATTACHMENTS_HERE_DESC"></span></div></div></div></div><div class="textAreaParent" style="height: 200px; min-height: 200px" data-bind="visible: !attachmentsPlace(), initDom: composeEditorArea, initResizeTrigger: [resizer(), 200, 40]"></div></div></div></div></div></script><script id="PopupsTwoFactorConfiguration" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-two-factor-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="visible: viewEnable() || !lock(), command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/LEGEND_TWO_FACTOR_AUTH"></span></h3></div><div class="modal-body"><div class="form-horizontal" data-bind="visible: capaTwoFactor" style="margin-top: 10px;"><div class="control-group" data-bind="visible: twoFactorStatus"><div class="controls"><div style="display: inline-block" data-tooltip-join="top" data-bind="tooltip: viewTwoFactorEnableTooltip"><div data-bind="component: { name: 'Checkbox', params: { label: 'POPUPS_TWO_FACTOR_CFG/LABEL_ENABLE_TWO_FACTOR', enable: twoFactorAllowedEnable, value: viewEnable, inline: true } }"></div></div> <span class="i18n g-ui-link" data-bind="click: testTwoFactor, visible: twoFactorStatus" data-i18n="POPUPS_TWO_FACTOR_CFG/LINK_TEST"></span></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_USER"></span></label><div class="controls" style="padding-top: 5px;"><strong><span data-bind="text: viewUser"></span></strong><div style="padding-top: 15px;" data-bind="visible: lock"><blockquote><p class="muted i18n width100-on-mobile" style="width: 550px" data-i18n="POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_REQUIRE_DESC"></p></blockquote></div></div></div><div class="control-group" data-bind="visible: '' === viewSecret() && twoFactorStatus() && !clearing()"><div class="controls" style="padding-top: 5px;"><strong data-bind="visible: secreting">...</strong><span class="g-ui-link i18n" data-bind="click: showSecret, visible: !secreting()" data-i18n="POPUPS_TWO_FACTOR_CFG/BUTTON_SHOW_SECRET"></span></div></div><div class="control-group" data-bind="visible: '' !== viewSecret()"><label class="control-label"><span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_SECRET"></span></label><div class="controls" style="padding-top: 5px;"><strong data-bind="text: viewSecret"></strong> <span class="g-ui-link i18n" data-bind="click: hideSecret" data-i18n="POPUPS_TWO_FACTOR_CFG/BUTTON_HIDE_SECRET"></span><br /><br /><blockquote><p class="muted i18n width100-on-mobile" style="width: 550px" data-i18n="POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_DESC"></p></blockquote><!-- ko if: '' !== viewUrl() --><img style="margin-left: -7px;" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQIW2P8DwQACgAD/il4QJ8AAAAASUVORK5CYII=" data-bind="attr: {'src': viewUrl}"/><!-- /ko --></div></div><div class="control-group" data-bind="visible: '' !== viewBackupCodes()"><label class="control-label"><span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_BACKUP_CODES"></span></label><div class="controls" style="padding-top: 5px;"><pre data-bind="text: viewBackupCodes" style="width: 230px; word-break: break-word;"></pre><br /><blockquote><p class="muted i18n width100-on-mobile" style="width: 550px" data-i18n="POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_BACKUP_CODES_DESC"></p></blockquote></div></div></div></div><div class="modal-footer"><a class="btn pull-left" data-bind="visible: lock, click: logout"><i class="icon-power"></i> <span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/BUTTON_LOGOUT"></span></a><a class="btn btn-danger" data-bind="click: clearTwoFactor, visible: twoFactorStatus"><i class="icon-remove" data-bind="css: {'icon-remove': !clearing(), 'icon-spinner animated': clearing()}" ></i> <span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/BUTTON_CLEAR"></span></a><a class="btn" data-bind="click: createTwoFactor, visible: !twoFactorStatus()"><i class="icon-play" data-bind="css: {'icon-play': !processing(), 'icon-spinner animated': processing()}" ></i> <span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/BUTTON_ACTIVATE"></span></a><a class="btn" data-bind="command: cancelCommand, visible: viewEnable() || !lock()"><i class="icon-ok" ></i> <span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/BUTTON_DONE"></span></a></div></div></div></div></script><script id="PopupsNewOpenPgpKey" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-open-pgp-key-generate-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_GENERATE_OPEN_PGP_KEYS/TITLE_GENERATE_OPEN_PGP_KEYS"></span></h3></div><div class="modal-body"><div class="form-horizontal"><div class="alert" data-bind="visible: '' !== submitError()"><button type="button" class="close" data-bind="click: function () { submitError('') }">×</button><span data-bind="text: submitError"></span></div><br /><div class="control-group" data-bind="css: {'error': email.error}"><label class="i18n control-label" data-i18n="POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_EMAIL"></label><div class="controls"><input type="email" class="inputEmail input-large" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: email, hasfocus: email.focus"/></div></div><div class="control-group"><label class="i18n control-label" data-i18n="POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_NAME"></label><div class="controls"><input type="text" class="inputName input-large" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: name"/></div></div><div class="control-group"><label class="i18n control-label" data-i18n="POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_PASSWORD"></label><div class="controls"><input type="password" class="inputPassword input-large" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: password"/></div></div><div class="control-group"><label class="i18n control-label" data-i18n="POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_KEY_BIT_LENGTH"></label><div class="controls"><select data-bind="value: keyBitLength, options: [2048, 4096]"></select></div></div></div></div><div class="modal-footer"><a class="btn buttonHenerateOpenPgpKey" data-bind="command: generateOpenPgpKeyCommand"><i data-bind="css: {'icon-key': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i> <span class="i18n" data-i18n="POPUPS_GENERATE_OPEN_PGP_KEYS/BUTTON_GENERATE_OPEN_PGP_KEYS"></span></a></div></div></div></div></script><script id="PopupsTwoFactorTest" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-two-factor-test-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_TWO_FACTOR_TEST/TITLE_TEST_CODE"></span></h3></div><div class="modal-body"><div class="form-horizontal"><br /><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_TWO_FACTOR_TEST/LABEL_CODE"></span></label><div class="controls"><input type="text" class="uiInput inputName" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: code, hasfocus: code.focused, onEnter: testCodeCommand"/></div></div></div></div><div class="modal-footer"><a class="btn" data-bind="command: testCodeCommand, css: { 'btn-success': true === code.status(), 'btn-danger': false === code.status() }"><i data-bind="css: {'icon-ok': !testing(), 'icon-spinner animated': testing(), 'icon-white': true === code.status() || false === code.status() }"></i> <span class="i18n" data-i18n="POPUPS_TWO_FACTOR_TEST/BUTTON_TEST"></span></a></div></div></div></div></script><script id="SettingsFiltersActionNone" type="text/html" data-cfasync="false"></script><script id="SettingsTemplates" type="text/html" data-cfasync="false"><div class="b-settings-templates g-ui-user-select-none"><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_TEMPLATES/LEGEND_TEMPLATES"></span> <i class="icon-spinner animated" style="margin-top: 5px" data-bind="visible: templates.loading"></i></div></div><a class="btn" data-bind="click: addNewTemplate"><i class="icon-user-add"></i> <span class="i18n" data-i18n="SETTINGS_TEMPLATES/BUTTON_ADD_TEMPLATE"></span></a><br /><br /><br /><div class="templates-list-wrp"><div class="templates-list-top-padding"></div><table class="table table-hover list-table templates-list" data-bind="i18nUpdate: templates"><colgroup><col /><col style="width: 150px"/><col style="width: 1%"/></colgroup><tbody data-bind="sortable: {data: templates, options: scrollableOptions('.templates-list-wrp')}"><tr class="template-item"><td class="e-action"><span class="template-img icon-user"></span><i class="icon-braille drag-handle"></i> <span class="template-name" data-bind="text: name"></span></td><td><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="css: {'delete-access': deleteAccess}, click: function(oTemplate) { $root.deleteTemplate(oTemplate); }"><span class="i18n" data-i18n="SETTINGS_TEMPLATES/DELETING_ASK"></span></a></td><td><span class="delete-template" data-bind="visible: !deleteAccess(), click: function (oTemplate) { $root.templateForDeletion(oTemplate); }"><i class="icon-trash"></i></span></td></tr></tbody></table></div></div></div></script><script id="PopupsFolderCreate" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-folder-create-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_CREATE_FOLDER/TITLE_CREATE_FOLDER"></span></h3></div><div class="modal-body"><div class="form-horizontal"><br /><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_CREATE_FOLDER/LABEL_NAME"></span></label><div class="controls"><input type="text" class="uiInput inputName" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: folderName, hasfocus: folderName.focused, onEnter: createFolderCommand"/></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_CREATE_FOLDER/LABEL_PARENT"></span></label><div class="controls"><select data-bind="options: parentFolderSelectList, value: selectedParentValue, optionsText: 'name', optionsValue: 'id', optionsAfterRender: defautOptionsAfterRender"></select></div></div></div></div><div class="modal-footer"><a class="btn buttonCreate" data-bind="command: createFolderCommand"><i class="icon-folder-add"></i> <span class="i18n" data-i18n="POPUPS_CREATE_FOLDER/BUTTON_CREATE"></span></a></div></div></div></div></script><script id="Login" type="text/html" data-cfasync="false"><div class="b-login-content"><div class="loginFormWrapper" data-bind="css: {'afterLoginHide': formHidden}"><center class="plugin-mark-Login-BeforeLogo"><!-- ko if: logoImg --><div class="logoWrapper plugin-mark-Login-AfterLogo"><img class="logoImg" data-bind="attr: {'src': logoImg }"/></div><!-- /ko --><div class="descWrapper thm-login-desc plugin-mark-Login-AfterLogoDescription" data-bind="visible: '' !== loginDescription"><span class="desc" data-bind="text: loginDescription"></span></div><div class="alert alertError" data-bind="visibleAnimated: '' !== submitError()"><button type="button" class="close" data-bind="click: function () { submitError('') }">×</button><span data-bind="text: submitError"></span><div data-bind="visible: '' !== submitErrorAddidional()"><br /><span data-bind="text: submitErrorAddidional"></span></div></div><div class="wrapper-parent"><div class="wrapper loginWelcomeForm thm-login-text" data-bind="css: {'welcome-on': welcome}"><!-- ko template: { name: 'LoginWelcome' } --><!-- /ko --></div><form class="wrapper submitting-pane loginForm thm-login thm-login-text" action="#/" data-bind="submit: submitForm, css: {'errorAnimated': formError, 'welcome-off': welcome, 'submitting': submitRequest()}"><div class="controls plugin-mark-Login-TopControlGroup" data-bind="css: {'error': emailError, 'animated': emailErrorAnimation}"><div class="input-append"><input type="email" class="i18n input-block-level inputEmail checkAutocomplete" name="RainLoopEmail" id="RainLoopEmail" style="padding-right: 35px;" autocomplete="email" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: email, hasFocus: emailFocus, disable: submitRequest" data-i18n="[placeholder]LOGIN/LABEL_EMAIL"/><span class="add-on"><i class="icon-mail"></i></span></div></div><div class="controls" data-bind="css: {'error': passwordError, 'animated': passwordErrorAnimation}"><div class="input-append"><input type="password" class="i18n input-block-level inputPassword checkAutocomplete" name="RainLoopPassword" id="RainLoopPassword" style="padding-right: 35px;" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: password, hasFocus: passwordFocus, disable: submitRequest" data-i18n="[placeholder]LOGIN/LABEL_PASSWORD"/><span class="add-on" tabindex="-1" data-tooltip-join="left" data-bind="command: submitCommand, tooltip: 'LOGIN/BUTTON_SIGN_IN'"><i class="icon-key" data-bind="visible: '' === password()"></i><button type="submit" class="btn-submit-icon-wrp" data-bind="visible: '' !== password()"><i class="icon-right-middle login-submit-icon"></i></button></span></div></div><div class="controls" data-bind="visible: additionalCode.visibility(), css: {'error': additionalCode.error, 'animated': additionalCode.errorAnimation}"><div class="input-append"><input type="text" class="i18n input-block-level inputAdditionalCode" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" style="padding-right: 35px;" data-bind="textInput: additionalCode, hasFocus: additionalCode.focused, disable: submitRequest" data-i18n="[placeholder]LOGIN/LABEL_VERIFICATION_CODE"/><span class="add-on"><i class="icon-key"></i></span></div></div><div class="controls plugin-mark-Login-BottomControlGroup" data-bind="visible: additionalCode.visibility()"><div class="additionalCodeSignMeLabel" data-bind="component: { name: 'CheckboxSimple', params: { label: 'LOGIN/LABEL_DONT_ASK_VERIFICATION_CODE', value: additionalCodeSignMe } }"></div></div><div class="controls controls-submit-wrp" data-bind="css: {'display-none': hideSubmitButton}"><button type="submit" class="btn btn-large btn-block buttonLogin" data-bind="command: submitCommand"><span class="i18n i18n-animation" data-i18n="LOGIN/BUTTON_SIGN_IN"></span></button></div><div class="controls clearfix" style="margin-bottom: 10px"><div class="pull-right social-buttons"><a href="#" tabindex="-1" class="social-button" data-bind="visible: googleGmailLoginEnabled, command: googleGmailCommand, tooltip: 'LOGIN/TITLE_SIGN_IN_GMAIL'"><i class="icon-mail"></i></a><a href="#" tabindex="-1" class="social-button" data-bind="visible: googleLoginEnabled, command: googleCommand, tooltip: 'LOGIN/TITLE_SIGN_IN_GOOGLE'"><i class="icon-google"></i></a><a href="#" tabindex="-1" class="social-button" data-bind="visible: facebookLoginEnabled, command: facebookCommand, tooltip: 'LOGIN/TITLE_SIGN_IN_FACEBOOK'"><i class="icon-facebook-alt"></i></a><a href="#" tabindex="-1" class="social-button" data-bind="visible: twitterLoginEnabled, command: twitterCommand, tooltip: 'LOGIN/TITLE_SIGN_IN_TWITTER'"><i class="icon-twitter"></i></a><a href="#" tabindex="-1" class="language-button" data-bind="visible: allowLanguagesOnLogin() && !socialLoginEnabled(), click: selectLanguage, tooltip: 'POPUPS_LANGUAGES/TITLE_LANGUAGES'"><i data-bind="css: langRequest() ? 'icon-spinner animated' : 'icon-world'"></i></a></div><div class="signMeLabel" data-bind="visible: signMeVisibility, component: { name: 'CheckboxSimple', params: { label: 'LOGIN/LABEL_SIGN_ME', labelAnimated: true, value: signMe } }"></div></div><div class="controls clearfix" data-bind="visible: '' !== forgotPasswordLinkUrl || '' !== registrationLinkUrl"><div class="forgot-link thm-forgot pull-left" data-bind="visible: '' !== forgotPasswordLinkUrl" style="text-align: center"><a href="#" target="_blank" class="g-ui-link" data-bind="attr: {href: forgotPasswordLinkUrl}, css: {'pull-right': '' !== registrationLinkUrl}"><span class="i18n" data-i18n="LOGIN/LABEL_FORGOT_PASSWORD"></span></a></div> <div class="registration-link thm-registration pull-right" data-bind="visible: '' !== registrationLinkUrl" style="text-align: center"><a href="#" target="_blank" class="g-ui-link" data-bind="attr: {href: registrationLinkUrl}, css: {'pull-left': '' !== forgotPasswordLinkUrl}"><span class="i18n" data-i18n="LOGIN/LABEL_REGISTRATION"></span></a></div></div></form></div><div class="e-mobile-switcher thm-mobile-switcher"><span data-bind="visible: !mobile"><i class="icon-mobile"></i> <a href="./?/MobileVersion/" tabindex="-1"><span class="i18n" data-i18n="MOBILE/BUTTON_MOBILE_VERSION"></span></a></span><span data-bind="visible: mobile"><i class="icon-laptop"></i> <a href="./?/DesktopVersion/" tabindex="-1"><span class="i18n" data-i18n="MOBILE/BUTTON_DESKTOP_VERSION"></span></a></span></div><div class="e-languages thm-languages plugin-mark-Login-BottomFooter" data-bind="visible: allowLanguagesOnLogin() && socialLoginEnabled()"><label class="flag-selector"><i data-bind="css: langRequest() ? 'icon-spinner animated' : 'icon-world'"></i> <span class="flag-name" tabindex="0" data-bind="text: languageFullName, click: selectLanguage, onSpace: selectLanguage, onEnter: selectLanguage, onTab: selectLanguageOnTab"></span></label></div></center></div><a href="#" onclick="return false;"></a><div class="loginAfter"></div></div></script><script id="PopupsFolderSystem" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-folder-system-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_SYSTEM_FOLDERS/TITLE_SYSTEM_FOLDERS"></span></h3></div><div class="modal-body"><div class="form-horizontal"><div class="alert" data-bind="visible: '' !== notification()"><span data-bind="text: notification"></span></div><br /><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_SYSTEM_FOLDERS/LABEL_SENT"></span></label><div class="controls"><select data-bind="options: folderSelectList, value: sentFolder, optionsText: 'name', optionsValue: 'id', optionsAfterRender: $root.defautOptionsAfterRender"></select></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_SYSTEM_FOLDERS/LABEL_DRAFTS"></span></label><div class="controls"><select data-bind="options: folderSelectList, value: draftFolder, optionsText: 'name', optionsValue: 'id', optionsAfterRender: defautOptionsAfterRender"></select></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_SYSTEM_FOLDERS/LABEL_SPAM"></span></label><div class="controls"><select data-bind="options: folderSelectList, value: spamFolder, optionsText: 'name', optionsValue: 'id', optionsAfterRender: $root.defautOptionsAfterRender"></select></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_SYSTEM_FOLDERS/LABEL_TRASH"></span></label><div class="controls"><select data-bind="options: folderSelectList, value: trashFolder, optionsText: 'name', optionsValue: 'id', optionsAfterRender: $root.defautOptionsAfterRender"></select></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_SYSTEM_FOLDERS/LABEL_ARCHIVE"></span></label><div class="controls"><select data-bind="options: folderSelectList, value: archiveFolder, optionsText: 'name', optionsValue: 'id', optionsAfterRender: $root.defautOptionsAfterRender"></select></div></div></div></div></div></div></script><script id="SettingsFiltersActionReject" type="text/html" data-cfasync="false"><div class="control-group" data-bind="css: {'error': actionValue.error}" style="margin-bottom: 0"><div class="controls"><textarea class="span5 i18n" data-bind="value: actionValue" style="height: 100px;" data-i18n="[placeholder]POPUPS_FILTER/REJECT_MESSAGE_LABEL"></textarea></div></div></script><script id="PopupsComposeOpenPgp" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-compose-open-pgp-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_COMPOSE_OPEN_PGP/TITLE_COMPOSE_OPEN_PGP"></span></h3></div><div class="modal-body"><div class="alert" data-bind="visible: '' !== notification()"><span data-bind="text: notification"></span></div><div class="row-fluid"><div class="span6"><div data-bind="component: { name: 'Checkbox', params: { label: 'POPUPS_COMPOSE_OPEN_PGP/LABEL_SIGN', value: sign } }, click: updateCommand"></div><div class="key-list" data-bind="visible: sign"><div class="key-list-wrp empty" data-bind="visible: !signKey()"> No private key found </div><div class="key-list-wrp" data-bind="visible: signKey()"><div class="key-list__item row-fluid"><div class="key-list__item-hash span4"> (<span data-bind="text: signKey() ? signKey().hash : ''"></span>) </div><div class="key-list__item-names span8"><!-- ko if: signKey() --><!-- ko foreach: signKey().users --><div class="key-list__item-name" data-bind="text: $data"></div><!-- /ko --><!-- /ko --></div></div></div></div></div><div class="span6"><div data-bind="component: { name: 'Checkbox', params: { label: 'POPUPS_COMPOSE_OPEN_PGP/LABEL_ENCRYPT', value: encrypt } }"></div><div class="key-list" data-bind="visible: encrypt"><div class="key-list-wrp empty" data-bind="visible: !encryptKeys() || encryptKeys().length === 0"> No public keys selected </div><div class="key-list-wrp" data-bind="visible: encryptKeys() && encryptKeys().length > 0"><!-- ko foreach: encryptKeys --><div class="key-list__item row-fluid"><div class="key-list__item-delete span1" data-bind="click: removable() ? $parent.deletePublickKey : null, css: {'disabled': !removable()}"><i class="icon-trash"></i></div><div class="key-list__item-hash span3" data-bind="visible: !empty"> (<span data-bind="text: hash"></span>) </div><div class="span8"><span class="key-list__item-names" data-bind="css: {'empty': empty}"><!-- ko foreach: users --><div class="key-list__item-name" data-bind="text: $data"></div><!-- /ko --></span><span class="key-list__item-error" data-bind="visible: empty"> (Public key not found) </span></div></div><!-- /ko --></div></div></div></div><div class="row-fluid key-actions"><div class="span6"><div data-bind="visible: sign()"><input type="password" class="inputPassword input-block-level i18n" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-i18n="[placeholder]POPUPS_COMPOSE_OPEN_PGP/LABEL_PASSWORD" data-bind="textInput: password, hasfocus: password.focus, onEnter: doCommand"/><div class="form-inline" data-bind="visible: 0 < privateKeysOptions().length"><select class="input-block-level" data-bind="options: privateKeysOptions, value: selectedPrivateKey, optionsCaption: privateKeysOptionsCaption, optionsText: 'name', optionsValue: 'id', optionsAfterRender: addOptionClass"></select></div></div></div><div class="span6"><div class="form-inline" data-bind="visible: encrypt() && 0 < publicKeysOptions().length"><select class="input-block-level" data-bind="options: publicKeysOptions, value: selectedPublicKey, optionsCaption: publicKeysOptionsCaption, optionsText: 'name', optionsValue: 'id', optionsAfterRender: addOptionClass"></select></div></div></div></div><div class="modal-footer"><button class="btn buttonDo" data-bind="command: doCommand, hasfocus: buttonFocus, enable: (sign() || encrypt()) && (!encrypt() || encrypt() && encryptKeys().length > 0)"><i data-bind="css: {'icon-key': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i> <span class="i18n" data-bind="visible: sign() && !encrypt()" data-i18n="POPUPS_COMPOSE_OPEN_PGP/BUTTON_SIGN"></span><span class="i18n" data-bind="visible: !sign() && encrypt()" data-i18n="POPUPS_COMPOSE_OPEN_PGP/BUTTON_ENCRYPT"></span><span class="i18n" data-bind="visible: (sign() && encrypt()) || (!sign() && !encrypt())" data-i18n="POPUPS_COMPOSE_OPEN_PGP/BUTTON_SIGN_AND_ENCRYPT"></span></button></div></div></div></div></script><script id="MailFolderListSystemItem" type="text/html" data-cfasync="false"><div class="e-item b-folder-system-item"><a class="e-link" data-bind="droppable: function (oEvent, oUi) { $root.messagesDrop($data, oUi); }, css: { 'selected': selected, 'selectable': selectable, 'print-count': 0 < printableUnreadCount().length, 'anim-action-class': actionBlink, 'is-inbox': isInbox }"><span class="badge pull-right count" data-bind="text: printableUnreadCount"></span> <span class="focused-poiner"></span><span class="name" data-bind="text: localName()"></span><span class="inbox-star-icon"><i class="icon-star"></i><i class="icon-star-empty"></i></span></a></div></script><script id="SettingsFiltersConditionMore" type="text/html" data-cfasync="false"><div class="control-group" data-bind="css: {'error': value.error}" style="margin-bottom: 0"><select class="span2" data-bind="options: $root.fieldOptions, value: field, optionsText: 'name', optionsValue: 'id'"></select> <input class="span2" type="text" data-bind="value: valueSecond"/> <select class="span2" data-bind="options: $root.typeOptions, value: type, optionsText: 'name', optionsValue: 'id'"></select> <input class="span3" type="text" data-bind="value: value"/> <span class="delete-action button-delete pull-right" style="margin-top: 5px;" data-bind="click: function (oCondition) { $root.removeCondition(oCondition); }"><i class="icon-trash"></i></span></div></script><script id="SettingsFilters" type="text/html" data-cfasync="false"><div class="b-settings-filters g-ui-user-select-none"><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_FILTERS/LEGEND_FILTERS"></span> <i class="icon-spinner animated" style="margin-top: 5px" data-bind="visible: filters.loading"></i></div></div><div class="row" data-bind="visible: inited() && !serverError()"><div class="span5 width100-on-mobile"><a class="btn" data-bind="click: addFilter"><i class="icon-plus"></i> <span class="i18n" data-i18n="SETTINGS_FILTERS/BUTTON_ADD_FILTER"></span></a> <a class="btn" data-tooltip-join="top" data-bind="visible: filterRaw.allow, click: function () { filterRaw.active(!filterRaw.active()) }, css: {'active': filterRaw.active }, tooltip: 'SETTINGS_FILTERS/BUTTON_RAW_SCRIPT'"><i class="icon-file-code"></i></a> <a class="btn hide-on-disabled-command" data-placement="bottom" data-join="top" data-bind="command: saveChangesCommand, tooltipErrorTip: saveErrorText, css: {'btn-danger': '' !== saveErrorText()}"><i data-bind="css: {'icon-floppy': !filters.saving(), 'icon-spinner animated': filters.saving()}"></i> <span class="i18n" data-i18n="SETTINGS_FILTERS/BUTTON_SAVE"></span></a></div></div><div class="row" data-bind="visible: haveChanges"><div class="span8 width100-on-mobile"><br /><div class="alert g-ui-user-select-none" style="margin-bottom: 0"><i class="icon-warning"></i> <span class="i18n" data-i18n="SETTINGS_FILTERS/CHACHES_NEED_TO_BE_SAVED_DESC"></span></div></div></div><div class="row" data-bind="visible: serverError"><div class="span8 width100-on-mobile"><div class="alert alert-error g-ui-user-select-none" style="margin-bottom: 0"><i class="icon-warning"></i> <span data-bind="text: serverErrorDesc"></span></div></div></div><br /><br /><div class="row"><div class="span8 width100-on-mobile"><div class="control-group" data-bind="css: {'error': filterRaw.error}, visible: inited() && filterRaw.allow() && filterRaw.active()"><div class="controls"><pre style="word-break: break-word;" data-bind="visible: '' !== filterRaw.capa()"><b class="i18n" data-i18n="SETTINGS_FILTERS/CAPABILITY_LABEL"></b>: <span data-bind="text: filterRaw.capa"></span></pre><textarea class="span8" style="height: 300px; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;" data-bind="value: filterRaw, valueUpdate: 'afterkeydown'"></textarea></div></div><div class="filters-list-wrp"><div class="filters-list-top-padding"></div><table class="table table-hover list-table filters-list g-ui-user-select-none" data-bind="visible: inited() && (!filterRaw.active() || !filterRaw.active()), i18nUpdate: filters"><colgroup><col style="width: 30px"/><col style="width: 16px"/><col /><col style="width: 140px"/><col style="width: 1%"/></colgroup><tbody data-bind="sortable: {data: filters, options: scrollableOptions('.filters-list-wrp')}" style="width: 600px"><tr class="filter-item"><td><span class="disabled-filter" data-bind="click: function () { $root.haveChanges(true); enabled(!enabled()); }"><i data-bind="css: {'icon-checkbox-checked': enabled, 'icon-checkbox-unchecked': !enabled()}"></i></span></td><td class="drag-wrapper"><i class="icon-braille drag-handle"></i></td><td class="e-action"><span class="filter-name" data-bind="text: name()"></span> <span class="filter-sub-name" data-bind="text: nameSub()"></span></td><td><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="css: {'delete-access': deleteAccess()}, click: function(oFilter) { $root.deleteFilter(oFilter); }"><span class="i18n" data-i18n="SETTINGS_FILTERS/DELETING_ASK"></span></a></td><td><span class="delete-filter" data-bind="visible: !deleteAccess() && canBeDeleted(), click: function (oFilter) { $root.filterForDeletion(oFilter); }"><i class="icon-trash"></i></span></td></tr></tbody></table></div></div></div></div></div></script><script id="SettingsOpenPGP" type="text/html" data-cfasync="false"><div class="b-settings-open-pgp g-ui-user-select-none"><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_OPEN_PGP/LEGEND_OPEN_PGP"></span></div></div><button class="btn" data-bind="click: addOpenPgpKey"><i class="icon-list-add"></i> <span class="i18n" data-i18n="SETTINGS_OPEN_PGP/BUTTON_ADD_OPEN_PGP_KEY"></span></button> <div style="display: inline-block" data-tooltip-join="left" data-bind="tooltip: isHttps ? '' : 'SETTINGS_OPEN_PGP/GENERATE_ONLY_HTTPS'"><button class="btn" data-bind="click: generateOpenPgpKey, disable: !isHttps"><i class="icon-key"></i> <span class="i18n" data-i18n="SETTINGS_OPEN_PGP/BUTTON_GENERATE_OPEN_PGP_KEYS"></span></button></div><br /><br /><div class="control-group"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_OPEN_PGP/LABEL_ALLOW_DRAFT_AUTOSAVE', value: allowDraftAutosave } }"></div></div></div><br /><table class="table table-hover list-table" data-bind="i18nUpdate: openpgpkeys"><colgroup><col /><col style="width: 1%"/><col style="width: 1%"/></colgroup><tbody><!-- ko foreach: openpgpkeysPrivate --><tr class="open-pgp-key-item"><td><span class="open-pgp-key-img i18n" data-i18n="[title]SETTINGS_OPEN_PGP/TITLE_PRIVATE"><i class="icon-lock"></i></span><span class="open-pgp-key-user"><!-- ko foreach: users --><div class="open-pgp-key-user-address" data-bind="text: $data"></div><!-- /ko --></span><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="css: {'delete-access': deleteAccess()}, click: function(openPgpKey) { $root.deleteOpenPgpKey(openPgpKey); }"><span class="i18n" data-i18n="SETTINGS_OPEN_PGP/DELETING_ASK"></span></a></td><td><span class="delete-open-pgp-key" data-bind="visible: !deleteAccess(), click: function (openPgpKey) { $root.openPgpKeyForDeletion(openPgpKey); }"><i class="icon-trash"></i></span></td><td><span class="view-open-pgp-key" data-bind="click: function (openPgpKey) { $root.viewOpenPgpKey(openPgpKey); }"><i class="icon-eye"></i></span></td></tr><!-- /ko --><!-- ko foreach: openpgpkeysPublic --><tr class="open-pgp-key-item"><td><span class="open-pgp-key-img i18n" data-i18n="[title]SETTINGS_OPEN_PGP/TITLE_PUBLIC"><i class="icon-key"></i></span><span class="open-pgp-key-user"><!-- ko foreach: users --><div class="open-pgp-key-user-address"><span data-bind="text: $data"></span> (<span class="open-pgp-key-id" data-bind="text: $parent.id"></span>) </div><!-- /ko --></span><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="css: {'delete-access': deleteAccess()}, click: function(oOpenPGP) { $root.deleteOpenPgpKey(oOpenPGP); }"><span class="i18n" data-i18n="SETTINGS_OPEN_PGP/DELETING_ASK"></span></a></td><td><span class="delete-open-pgp-key" data-bind="visible: !deleteAccess(), click: function (openPgpKey) { $root.openPgpKeyForDeletion(openPgpKey); }"><i class="icon-trash"></i></span></td><td><span class="view-open-pgp-key" data-bind="click: function (openPgpKey) { $root.viewOpenPgpKey(openPgpKey); }"><i class="icon-eye"></i></span></td></tr><!-- /ko --></tbody></table></div></script><script id="SettingsFolderItem" type="text/html" data-cfasync="false"><tr class="folder-item" data-bind="css: { 'selectable': selectable, 'system': isSystemFolder }"><td><span class="folder-padding" data-bind="css: 'deep-' + deep"> </span><span class="folder-name" data-bind="text: name, visible: !edited(), css: { 'e-action': canBeEdited, 'can-be-edited': canBeEdited }, click: function (oFolder) { $root.folderForEdit(oFolder); }"></span> <span class="folder-system-name" data-bind="text: manageFolderSystemName, visible: isSystemFolder"></span><input type="text" class="folder-name-input" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: nameForEdit, visible: edited, hasfocus: edited, onEnter: function () { $root.folderEditOnEnter($data); }, onEsc: function () { $root.folderEditOnEsc($data); }"/><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="css: {'delete-access': deleteAccess()}, click: function() { $root.deleteFolder($data); }"><span class="i18n" data-i18n="SETTINGS_FOLDERS/DELETING_ASK"></span></a></td><td class="delete-folder-parent"><span class="delete-folder" data-bind="visible: canBeDeleted() && !deleteAccess(), click: function (oFolder) { $root.folderForDeletion(oFolder); }"><i class="icon-trash"></i></span></td><td class="subscribe-folder-parent"><span class="unsubscribe-folder" data-bind="visible: canBeSubScribed() && !subScribed(), click: function(oFolder) { $root.subscribeFolder(oFolder); }"><i class="icon-eye"></i></span><span class="subscribe-folder" data-bind="visible: canBeSubScribed() && subScribed(), click: function(oFolder) { $root.unSubscribeFolder(oFolder); }"><i class="icon-eye"></i></span></td><td class="check-folder-parent" data-bind="visible: $root.displaySpecSetting"><span class="uncheck-folder" data-bind="visible: canBeChecked() && subScribed() && !checkable(), click: function(oFolder) { $root.checkableTrueFolder(oFolder); }"><i class="icon-check-mark-circle-two"></i></span><span class="check-folder" data-bind="visible: canBeChecked() && subScribed() && checkable(), click: function(oFolder) { $root.checkableFalseFolder(oFolder); }"><i class="icon-check-mark-circle-two"></i></span></td></tr><!-- ko template: { name: 'SettingsFolderItem', foreach: subFolders } --><!-- /ko --></script><script id="SettingsFiltersActionForward" type="text/html" data-cfasync="false"><div class="control-group" data-bind="css: {'error': actionValue.error}"><div class="controls"><input type="text" class="span3 i18n" data-bind="value: actionValue" data-i18n="[placeholder]POPUPS_FILTER/EMAIL_LABEL"/></div></div><div class="control-group"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'POPUPS_FILTER/KEEP_LABEL', value: actionKeep } }"></div><div data-bind="visible: $root.allowMarkAsRead, component: { name: 'Checkbox', params: { label: 'POPUPS_FILTER/MARK_AS_READ_LABEL', value: actionMarkAsRead } }"></div></div></div></script><script id="PopupsIdentity" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-identity-content" data-bind="modal: modalVisibility"><div><div class="modal-header g-ui-user-select-none"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span data-bind="visible: !edit()" class="i18n" data-i18n="POPUPS_IDENTITY/TITLE_ADD_IDENTITY"></span><span data-bind="visible: edit" class="i18n" data-i18n="POPUPS_IDENTITY/TITLE_UPDATE_IDENTITY"></span></h3></div><div class="modal-body"><div class="form-horizontal g-ui-user-select-none"><div class="alert" data-bind="visible: '' !== submitError()"><button type="button" class="close" data-bind="click: function () { submitError('') }">×</button><span data-bind="text: submitError"></span></div><br /><div class="control-group" data-bind="visible: !owner(), css: {'error': email.hasError}"><label class="i18n control-label" data-i18n="POPUPS_IDENTITY/LABEL_EMAIL"></label><div class="controls"><input type="email" class="inputEmail input-xlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: email, onEnter: addOrEditIdentityCommand, hasfocus: email.focused"/></div></div><div class="control-group" data-bind="visible: owner"><label class="i18n control-label" data-i18n="POPUPS_IDENTITY/LABEL_EMAIL"></label><div class="controls"><div class="textEmail" data-bind="text: email"></div></div></div><div class="control-group"><label class="i18n control-label" data-i18n="POPUPS_IDENTITY/LABEL_NAME"></label><div class="controls"><input type="text" class="inputName input-xlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: name, onEnter: addOrEditIdentityCommand, hasfocus: name.focused"/></div></div><div class="control-group" data-bind="visible: showReplyTo, css: {'error': replyTo.hasError}"><label class="i18n control-label" data-i18n="POPUPS_IDENTITY/LABEL_REPLY_TO"></label><div class="controls"><input type="text" class="inputReplyTo input-xlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: replyTo, onEnter: addOrEditIdentityCommand, hasfocus: replyTo.focused"/></div></div><div class="control-group" data-bind="visible: showBcc, css: {'error': bcc.hasError}"><label class="i18n control-label" data-i18n="POPUPS_IDENTITY/LABEL_BCC"></label><div class="controls"><input type="text" class="inputBcc input-xlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: bcc, onEnter: addOrEditIdentityCommand, hasfocus: bcc.focused"/></div></div><div class="control-group" data-bind="visible: !showReplyTo() || !showBcc()"><div class="controls"><span data-bind="visible: !showReplyTo()"><span class="i18n g-ui-link" data-i18n="POPUPS_IDENTITY/LABEL_REPLY_TO" data-bind="click: function () { showReplyTo(true); }"></span> </span><span data-bind="visible: !showBcc()"><span class="i18n g-ui-link" data-i18n="POPUPS_IDENTITY/LABEL_BCC" data-bind="click: function () { showBcc(true); }"></span></span></div></div></div><hr /><div class="form-horizontal"><div class="control-group g-ui-user-select-none"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'POPUPS_IDENTITY/LABEL_SIGNATURE_INSERT_BEFORE', value: signatureInsertBefore } }"></div></div></div><div class="control-group"><div class="e-signature-place" data-bind="editor: signature"></div></div></div></div><div class="modal-footer"><a class="btn buttonAddIdentity" data-bind="command: addOrEditIdentityCommand"><i data-bind="visible: !edit(), css: {'icon-user-add': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i><i data-bind="visible: edit, css: {'icon-ok': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i> <span data-bind="visible: !edit()" class="i18n" data-i18n="POPUPS_IDENTITY/BUTTON_ADD_IDENTITY"></span><span data-bind="visible: edit" class="i18n" data-i18n="POPUPS_IDENTITY/BUTTON_UPDATE_IDENTITY"></span></a></div></div></div></div></script><script id="MailMessageListItemNoPreviewPane" type="text/html" data-cfasync="false"><div class="messageListItem e-single-line" data-bind="css: lineAsCss()"><div class="sidebarParent"> </div><div class="delimiter"></div><div class="wrapper"><div class="dateParent actionHandle dragHandle"><span class="date" data-moment-format="SHORT" data-moment-format-title="FULL" data-bind="moment: dateTimeStampInUTC"></span></div><div class="threadsParent" data-bind="visible: 1 < threadsLen()"><span class="threads-len"><span class="threads-len-data"><span data-bind="text: threadsLen"></span><i class="icon-right-mini"></i></span></span></div><div class="checkedParent"><i class="checkboxMessage" data-bind="css: checked() ? 'checkboxMessage icon-checkbox-checked' : 'checkboxMessage icon-checkbox-unchecked'"></i></div><div class="flagParent"><span class="flagOn"><i class="icon-star"></i></span><span class="flagOnHalf"><i class="icon-star-empty"></i></span><span class="flagOff"><i class="icon-star-empty"></i></span></div><div class="senderParent actionHandle dragHandle"><span class="replyFlag"><i class="icon-reply"></i> </span><span class="forwardFlag"><i class="icon-forward"></i> </span><span class="sender" data-bind="text: senderEmailsString, attr: {'title': senderClearEmailsString}"></span> </div><div class="attachmentParent actionHandle dragHandle"><span class="attachment"><i data-bind="css: attachmentIconClass"></i></span></div><div class="subjectParent actionHandle dragHandle"><b class="importantMark">!</b><span class="subject emptySubjectText" data-bind="text: $root.emptySubjectValue"></span><span class="subject-prefix" data-bind="text: subjectPrefix"></span><span class="subject-suffix" data-bind="text: subjectSuffix"></span></div><div class="clearfix"></div></div></div></script><script id="MailFolderListItem" type="text/html" data-cfasync="false"><div class="e-item" data-bind="visible: visible, css: { 'i-am-inbox-wrapper': isInbox }"><a class="e-link" data-bind="droppable: function (oEvent, oUi) { $root.messagesDrop($data, oUi); }, droppableOver: function (oEvent, oUi) { $root.messagesDropOver($data, oUi); }, droppableOut: function (oEvent, oUi) { $root.messagesDropOut($data, oUi); }, css: { 'i-am-inbox': isInbox, 'selected': selected() && !isSystemFolder(), 'selectable': selectableForFolderList, 'hidden' : hidden, 'print-count': hasUnreadMessages, 'unread-sub': hasSubScribedUnreadMessagesSubfolders, 'system': isSystemFolder, 'anim-action-class': actionBlink }"><span class="badge pull-right count" data-bind="text: printableUnreadCount"></span><i data-bind="css: collapsedCss()"></i><span class="focused-poiner"></span><span class="name" data-bind="text: name"></span></a><div class="b-sub-folders" data-bind="template: { name: 'MailFolderListItem', foreach: subFolders }, css: { 'collapsed': collapsed() }"></div></div></script><script id="SettingsChangePassword" type="text/html" data-cfasync="false"><div class="b-settings-general g-ui-user-select-none"><div class="form-horizontal long-label"><div class="legend"><span class="i18n" data-i18n="SETTINGS_CHANGE_PASSWORD/LEGEND_CHANGE_PASSWORD"></span></div><div class="row"><div class="span6"><div class="control-group" data-bind="css: {'error': currentPassword.error}"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_CHANGE_PASSWORD/LABEL_CURRENT_PASSWORD"></span></label><div class="controls"><input type="password" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: currentPassword"/></div></div><div class="control-group" data-bind="css: {'error': passwordMismatch}"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_CHANGE_PASSWORD/LABEL_NEW_PASSWORD"></span></label><div class="controls"><input type="password" autocomplete="new-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: newPassword"/></div></div><div class="control-group" data-bind="css: {'error': passwordMismatch}"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_CHANGE_PASSWORD/LABEL_REPEAT_PASSWORD"></span></label><div class="controls"><input type="password" autocomplete="new-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: newPassword2"/></div></div><div class="control-group"><div class="controls"><a class="btn" data-bind="command: saveNewPasswordCommand, css: { 'btn-success': passwordUpdateSuccess, 'btn-danger': passwordUpdateError }"><i data-bind="css: {'icon-spinner animated': changeProcess(), 'icon-key': !changeProcess(), 'icon-white': passwordUpdateSuccess() || passwordUpdateError() }"></i> <span class="i18n" data-i18n="SETTINGS_CHANGE_PASSWORD/BUTTON_UPDATE_PASSWORD"></span></a></div></div></div><div class="span4 alert alert-error alert-null-left-margin" data-bind="visible: '' !== errorDescription(), text: errorDescription"></div></div></div></div></script><script id="PopupsWindowSimpleMessage" type="text/html" data-cfasync="false"><style> html, body { margin: 0; padding: 0; background-color: #fff; font-size: 13px; font-family: arial, sans-serif; } .tbl {width: 100%; font-size: 12px; font-family: arial, sans-serif;} .tt {padding: 5px; border:solid #ddd; border-width:0px 0px 1px 0px} .tv {padding: 5px; border:solid #ddd; border-width:0px 0px 1px 1px} .tb {padding: 15px} a {color: blue; text-decoration: underline} a:visited {color: #609} a:active {color: red} blockquote {border-left: 2px solid black; margin: 0; padding: 0px 10px} pre { margin: 0px; padding: 0px; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; background: #fff; border: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-all; } .text-body { font-size: 13px; } .text-body.html div[data-x-div-type=body] { margin: 15px; } .text-body.html pre { font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; white-space: pre-wrap; word-wrap: break-word; word-break: break-all; } .text-body.plain { padding: 15px; white-space: pre-wrap; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; } .text-body.plain pre { margin: 0px; padding: 0px; background: #fff; border: none; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; white-space: pre-wrap; word-wrap: break-word; word-break: break-all; } .text-body.plain blockquote { border-left: 2px solid blue; color: blue; } .text-body.plain blockquote blockquote { border-left: 2px solid green; color: green; } .text-body.plain blockquote blockquote blockquote { border-left: 2px solid red; color: red; } </style><table cellpadding="0" cellspacing="0" class="tbl"><tbody><tr><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_FROM"></td><td class="tv" data-bind="text: popupFrom"></td></tr><tr><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_TO"></td><td class="tv" data-bind="text: popupTo"></td></tr><tr data-bind="visible: '' !== popupCc"><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_CC"></td><td class="tv" data-bind="text: popupCc"></td></tr><tr data-bind="visible: '' !== popupBcc"><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_BCC"></td><td class="tv" data-bind="text: popupBcc"></td></tr><tr data-bind="visible: '' !== popupReplyTo"><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_REPLY_TO"></td><td class="tv" data-bind="text: popupReplyTo"></td></tr><tr data-bind="visible: '' !== popupDate"><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_DATE"></td><td class="tv" data-bind="text: popupDate"></td></tr><tr><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_SUBJECT"></td><td class="tv" data-bind="text: popupSubject"></td></tr><tr data-bind="visible: '' !== popupAttachments"><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_ATTACHMENTS"></td><td class="tv" data-bind="text: popupAttachments"></td></tr><tr><td colspan="2" class="tb"><div class="text-body" data-bind="html: popupBody, css: {'plain': !popupIsHtml, 'html': popupIsHtml}"></div></td></tr></tbody></table></script><script id="SettingsPane" type="text/html" data-cfasync="false"><div class="b-settings b-settins-right"><div class="b-toolbar" style="padding-left: 0"><div class="btn-toolbar" style="margin-top: 2px;"><div class="btn-group" data-bind="visible: mobile && leftPanelDisabled()"><a class="btn btn-thin-2 single" data-bind="click: showLeft"><i class="icon-right-middle"></i></a></div><div class="btn-group" data-bind="visible: mobile && !leftPanelDisabled()" style="margin-left: -1px"><a class="btn btn-thin-2 single" data-bind="click: hideLeft"><i class="icon-left-middle"></i></a></div><a class="btn button-back" data-bind="click: backToMailBoxClick"><i class="icon-left"></i> <span class="i18n i18n-animation" data-i18n="SETTINGS_LABELS/BUTTON_BACK"></span></a></div></div><div class="b-content" data-bind="nano: true, scrollerShadows: true"><div class="content g-scrollbox" data-scroller-shadows-content><div class="content-wrapper"><div id="rl-settings-subscreen" class="b-settings-content" style="position: relative; z-index: 2"></div></div></div></div></div></script><script id="SettingsFolders" type="text/html" data-cfasync="false"><div class="b-settings-folders g-ui-user-select-none row" data-bind="css: { 'ignore-folder-subscribe': !useImapSubscribe }"><div class="span8 width100-on-mobile"><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_FOLDERS/LEGEND_FOLDERS"></span> <i class="icon-spinner animated" style="margin-top: 5px" data-bind="visible: loading"></i></div></div><a class="btn" data-bind="click: createFolder"><i class="icon-folder-add"></i> <span class="i18n" data-i18n="SETTINGS_FOLDERS/BUTTON_CREATE"></span></a> <a class="btn" data-bind="click: systemFolder"><i class="icon-wrench"></i> <span class="i18n" data-i18n="SETTINGS_FOLDERS/BUTTON_SYSTEM"></span></a><div class="alert folders-list-error" data-bind="visible: folderList.optimized"><b class="i18n" data-i18n="SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_1"></b><br /><span class="i18n" data-i18n="SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_2"></span></div><div class="alert folders-list-error" data-bind="visible: '' !== folderList.error()"><button type="button" class="close" data-bind="click: function () { folderList.error(''); }">×</button><span data-bind="text: folderList.error"></span></div><table class="table table-hover list-table" data-bind="i18nUpdate: folderList" style="margin-top: 40px"><colgroup><col /><col style="width: 1%"/><col style="width: 1%"/><col style="width: 1%" data-bind="visible: displaySpecSetting"/></colgroup><tbody data-bind="template: { name: 'SettingsFolderItem', foreach: folderList }"></tbody></table></div><div class="span4 hide-on-mobile" style="position: relative" data-bind="visible: '' !== folderListHelp()"><div class="alert alert-info" style="position: fixed"><span data-bind="text: folderListHelp"></span></div></div></div></script><script id="PopupsAddOpenPgpKey" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-open-pgp-key-add-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_IMPORT_OPEN_PGP_KEY/TITLE_IMPORT_OPEN_PGP_KEY"></span></h3></div><div class="modal-body"><div class="alert" data-bind="visible: key.error() && key.errorMessage(), text: key.errorMessage"></div><div class="form-horizontal"><div class="control-group" data-bind="css: {'error': key.error}"><textarea class="inputKey input-xxlarge" rows="14" autocomplete="off" data-bind="value: key, hasfocus: key.focus"></textarea></div></div></div><div class="modal-footer"><a class="btn buttonAddAccount" data-bind="command: addOpenPgpKeyCommand"><i class="icon-list-add"></i> <span class="i18n" data-i18n="POPUPS_IMPORT_OPEN_PGP_KEY/BUTTON_IMPORT_OPEN_PGP_KEY"></span></a></div></div></div></div></script><script id="SettingsMenu" type="text/html" data-cfasync="false"><div class="b-settins-left g-ui-user-select-none"><div class="b-content thm-settings-menu opacity-on-panel-disabled"><div class="b-settings-menu" data-bind="foreach: menu"><!-- ko if: disabled --><span class="e-item disabled"><span class="i18n e-link" data-bind="attr: { 'data-i18n': label }"></span></span><!-- /ko --><!-- ko ifnot: disabled --><a class="e-item selectable" href="#" data-bind="css: {'selected': selected }, attr: { 'href': $root.link(route) }"><span class="i18n e-link" data-bind="attr: { 'data-i18n': label }"></span></a><!-- /ko --></div></div><div class="b-content show-on-panel-disabled" data-bind="click: function () { leftPanelDisabled(false); }"></div><div class="b-footer"><nobr><div class="btn-toolbar"><div class="btn-group"><a class="btn single buttonResize" data-bind="click: function () { leftPanelDisabled(!leftPanelDisabled()); }"><i data-bind="css: {'icon-resize-out': leftPanelDisabled(), 'icon-resize-in': !leftPanelDisabled()}"></i></a></div></div></nobr></div></div></script><script id="PopupsContacts" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-contacts-content" data-bind="modal: modalVisibility"><div class="modal-header b-header-toolbar g-ui-user-select-none"><button type="button" class="close" data-bind="command: cancelCommand">×</button><div class="btn-toolbar"><div class="btn-group"><a class="btn single button-create-contact" data-bind="command: newCommand"><i class="icon-plus"></i> <span class="i18n" data-i18n="CONTACTS/BUTTON_ADD_CONTACT"></span></a></div><div class="btn-group"><a class="btn single btn-success button-new-message" data-bind="command: newMessageCommand"><i class="icon-mail icon-white"></i></a></div><div class="btn-group"><a class="btn single button-delete" data-bind="command: deleteCommand"><i class="icon-trash"></i></a></div><div class="btn-group dropdown colored-toggle" data-bind="registrateBootstrapDropdown: true"><a id="contacts-more-dropdown-id" class="btn single dropdown-toggle buttonMore" href="#" tabindex="-1" data-toggle="dropdown"><i data-bind="css: {'icon-list': !contacts.importing() && !contacts.syncing(), 'icon-spinner animated': contacts.importing() || contacts.syncing()}"></i></a><ul class="dropdown-menu g-ui-menu pull-right" role="menu" aria-labelledby="contacts-more-dropdown-id"><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="initDom: importUploaderButton"><i data-bind="css: {'icon-import': !contacts.importing(), 'icon-spinner animated': contacts.importing}"></i> <span class="i18n" data-i18n="CONTACTS/BUTTON_IMPORT"></span></a></li><li class="divider" role="presentation" data-bind="visible: allowExport"></li><li class="e-item" role="presentation" data-bind="visible: allowExport"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: exportCsv"><i data-bind="css: {'icon-export': !contacts.exportingCsv(), 'icon-spinner animated': contacts.exportingCsv}"></i> <span class="i18n" data-i18n="CONTACTS/BUTTON_EXPORT_CSV"></span></a></li><li class="e-item" role="presentation" data-bind="visible: allowExport" ><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: exportVcf"><i data-bind="css: {'icon-export': !contacts.exportingVcf(), 'icon-spinner animated': contacts.exportingVcf}"></i> <span class="i18n" data-i18n="CONTACTS/BUTTON_EXPORT_VCARD"></span></a></li><li class="divider" role="presentation" data-bind="visible: enableContactsSync() && allowContactsSync()"></li><li class="e-item" role="presentation" data-bind="visible: enableContactsSync() && allowContactsSync()"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: syncCommand"><i data-bind="css: {'icon-sync': !contacts.syncing(), 'icon-spinner animated': contacts.syncing}"></i> <span class="i18n" data-i18n="CONTACTS/BUTTON_SYNC"></span></a></li></ul></div></div></div><div class="modal-body" style="position: relative;"><div class="b-list-toolbar"><input type="text" class="i18n span3 e-search" placeholder="Search" autocorrect="off" autocapitalize="off" data-i18n="[placeholder]CONTACTS/SEARCH_INPUT_PLACEHOLDER" data-bind="value: search"/></div><div class="b-list-content g-ui-user-select-none" data-bind="nano: true, scrollerShadows: true, css: {'hideContactListCheckbox': !useCheckboxesInList()}"><div class="content g-scrollbox" data-scroller-shadows-content><div class="content-wrapper"><div class="listClear" data-bind="visible: viewClearSearch() && '' !== search()"><span class="g-ui-link i18n" data-i18n="CONTACTS/CLEAR_SEARCH" data-bind="command: clearCommand"></span></div><div class="listEmptyList" data-bind="visible: 0 === contacts().length && '' === search() && !contacts.loading()"><span class="i18n" data-i18n="CONTACTS/EMPTY_LIST"></span></div><div class="listEmptyListLoading" data-bind="visible: 0 === contacts().length && '' === search() && contacts.loading()"><span class="i18n" data-i18n="CONTACTS/LIST_LOADING"></span><span class="textLoadingAnimationD1">.</span><span class="textLoadingAnimationD2">.</span><span class="textLoadingAnimationD3">.</span></div><div class="listEmptySearchList" data-bind="visible: 0 === contacts().length && '' !== search() && !contacts.loading()"><span class="i18n" data-i18n="CONTACTS/EMPTY_SEARCH"></span></div><div class="e-contact-foreach g-ui-user-select-none" data-bind="foreach: contacts, visible: 0 < contacts().length"><div class="e-contact-item g-ui-user-select-none" data-bind="css: lineAsCss()"><div class="sidebarParent"> </div><div class="wrapper"><div class="checkedParent"><i class="checkboxItem" data-bind="css: checked() ? 'checkboxMessage icon-checkbox-checked' : 'checkboxMessage icon-checkbox-unchecked'"></i></div><div class="shareParent actionHandle"><i class="icon-share"></i></div><div class="nameParent actionHandle"><span class="listName" data-bind="text: display"></span> </div></div></div></div></div></div></div><div class="b-list-footer-toolbar"><div class="pull-right footer-pager"><!-- ko template: { name: 'Pagenator', data: contactsPagenator } --><!-- /ko --></div></div><div class="b-view-content-toolbar btn-toolbar" data-bind="css: {'read-only': viewReadOnly}"><div class="btn-group pull-right dropdown colored-toggle button-add-prop" data-bind="visible: !emptySelection(), registrateBootstrapDropdown: true"><a id="button-add-prop-dropdown-id" href="#" tabindex="-1" class="btn single dropdown-toggle" data-toggle="dropdown"><span class="i18n" data-i18n="CONTACTS/ADD_MENU_LABEL"></span> <span class="caret"></span></a><ul class="dropdown-menu g-ui-menu" style="text-align: left" tabindex="-1" role="menu" aria-labelledby="button-add-prop-dropdown-id"><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: addNewEmail"><i class="icon-none"></i> <span class="i18n" data-i18n="CONTACTS/ADD_MENU_EMAIL"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: addNewPhone"><i class="icon-none"></i> <span class="i18n" data-i18n="CONTACTS/ADD_MENU_PHONE"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: addNewWeb"><i class="icon-none"></i> <span class="i18n" data-i18n="CONTACTS/ADD_MENU_URL"></span></a></li><li class="divider" role="presentation"></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: addNewNickname"><i class="icon-none"></i> <span class="i18n" data-i18n="CONTACTS/ADD_MENU_NICKNAME"></span></a></li><!-- <li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: addNewAddress"><span class="i18n" data-i18n="CONTACTS/ADD_MENU_ADDRESS"></span></a></li>--></ul></div><div class="btn-group pull-right"> </div><div class="btn-group pull-right"><button class="btn single button-save-contact" data-bind="visible: !emptySelection(), command: saveCommand, css: {'dirty': watchDirty}"><i data-bind="css: {'icon-ok': !viewSaving(), 'icon-spinner animated': viewSaving()}"></i> <span class="i18n" data-i18n="CONTACTS/BUTTON_CREATE_CONTACT" data-bind="visible: '' === viewID()"></span><span class="i18n" data-i18n="CONTACTS/BUTTON_UPDATE_CONTACT" data-bind="visible: '' !== viewID()"></span></button></div></div><div class="b-view-content" data-bind="nano: true, scrollerShadows: true, css: {'read-only': viewReadOnly}"><div class="content g-scrollbox" data-scroller-shadows-content><div class="content-wrapper"><div class="b-contact-view-desc" data-bind="visible: emptySelection"><span class="i18n" data-i18n="CONTACTS/CONTACT_VIEW_DESC"></span></div><div data-bind="visible: !emptySelection()"><div class="form-horizontal top-part"><div class="control-group" data-bind="visible: !viewReadOnly() || 0 < viewPropertiesEmailsNonEmpty().length"><label class="control-label remove-padding-top fix-width"><i class="icon-user iconsize24"></i></label><div class="controls fix-width"><div data-bind="foreach: viewPropertiesNames"><div class="property-line"><span class="contactValueStatic" data-bind="text: value"></span><input type="text" class="contactValueInput" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, hasFocus: focused, valueUpdate: 'keyup', attr: {'placeholder': placeholderValue}"/></div></div><div data-bind="visible: 0 < viewPropertiesOther().length, foreach: viewPropertiesOther"><div class="property-line"><!-- ko if: !largeValue() --><span class="contactValueStatic" data-bind="text: value"></span><input type="text" class="contactValueInput" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, hasFocus: focused, valueUpdate: 'keyup', attr: {'placeholder': placeholderValue}"/><!-- /ko --><!-- ko if: largeValue --><span class="contactValueTextAreaStatic" data-bind="text: value"></span><textarea class="contactValueTextArea" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, hasFocus: focused, valueUpdate: 'keyup', attr: {'placeholder': placeholderValue}"></textarea><!-- /ko --></div></div></div></div><div class="control-group" data-bind="visible: !viewReadOnly() || 0 < viewPropertiesEmails().length"><label class="control-label remove-padding-top fix-width"><i class="icon-at iconsize24" data-tooltip-join="right" data-bind="tooltip: 'CONTACTS/LABEL_EMAIL'"></i></label><div class="controls fix-width"><div data-bind="foreach: viewPropertiesEmails"><div class="property-line"><span class="contactValueStatic" data-bind="text: value"></span><input type="text" class="contactValueInput" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, hasFocus: focused, valueUpdate: 'keyup'"/></div></div><a href="javascript:void(0);" class="g-ui-link add-link i18n" data-bind="visible: !viewReadOnly(), click: addNewEmail" data-i18n="CONTACTS/LINK_ADD_EMAIL"></a></div></div><div class="control-group" data-bind="visible: 0 < viewPropertiesPhones().length"><label class="control-label remove-padding-top fix-width"><i class="icon-telephone iconsize24" data-tooltip-join="right" data-bind="tooltip: 'CONTACTS/LABEL_PHONE'"></i></label><div class="controls fix-width"><div data-bind="foreach: viewPropertiesPhones"><div class="property-line"><span class="contactValueStatic" data-bind="text: value"></span><input type="text" class="contactValueInput" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, hasFocus: focused, valueUpdate: 'keyup'"/></div></div></div></div><div class="control-group" data-bind="visible: 0 < viewPropertiesWeb().length"><label class="control-label remove-padding-top fix-width"><i class="icon-earth iconsize24" data-tooltip-join="right" data-bind="tooltip: 'CONTACTS/LABEL_WEB'"></i></label><div class="controls fix-width"><div data-bind="foreach: viewPropertiesWeb"><div class="property-line"><span class="contactValueLargeStatic" data-bind="text: value"></span><input type="text" class="contactValueInputLarge" placeholder="http://" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, hasFocus: focused, valueUpdate: 'keyup'"/></div></div></div></div><div class="control-group"><div class="controls fix-width"><br /><br /></div></div></div><!-- <div class="e-read-only-sign"><i class="icon-lock iconsize24" data-tooltip-join="right" data-bind="tooltip: 'CONTACTS/LABEL_READ_ONLY'"></i></div>--></div></div></div></div></div></div></div></script><script id="PopupsTemplate" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-template-add-content" data-bind="modal: modalVisibility"><div><div class="modal-header g-ui-user-select-none"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span data-bind="visible: '' === id()" class="i18n" data-i18n="POPUPS_ADD_TEMPLATE/TITLE_ADD_TEMPLATE"></span><span data-bind="visible: '' !== id()" class="i18n" data-i18n="POPUPS_ADD_TEMPLATE/TITLE_UPDATE_TEMPLATE"></span></h3></div><div class="modal-body"><div class="form-horizontal g-ui-user-select-none"><div class="alert" data-bind="visible: '' !== submitError()"><button type="button" class="close" data-bind="click: function () { submitError('') }">×</button><span data-bind="text: submitError"></span></div><br /><div class="control-group" data-bind="css: {'error': name.error}"><label class="i18n control-label" data-i18n="POPUPS_ADD_TEMPLATE/LABEL_NAME"></label><div class="controls"><input type="text" class="inputName input-xlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: name, onEnter: addTemplateCommand, hasfocus: name.focus"/></div></div></div><hr /><div class="form-horizontal"><div class="control-group" data-bind="css: {'error': body.error}"><div class="e-template-place" data-bind="initDom: signatureDom"></div></div></div></div><div class="modal-footer"><a class="btn buttonAddAccount" data-bind="command: addTemplateCommand"><i data-bind="visible: '' == id(), css: {'icon-user-add': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i><i data-bind="visible: '' !== id(), css: {'icon-ok': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i> <span data-bind="visible: '' == id()" class="i18n" data-i18n="POPUPS_ADD_TEMPLATE/BUTTON_ADD_TEMPLATE"></span><span data-bind="visible: '' !== id()" class="i18n" data-i18n="POPUPS_ADD_TEMPLATE/BUTTON_UPDATE_TEMPLATE"></span></a></div></div></div></div></script><script id="SettingsContacts" type="text/html" data-cfasync="false"><div class="b-settings-contacts"><div class="form-horizontal g-ui-user-select-none"><div class="legend"><span class="i18n" data-i18n="SETTINGS_CONTACTS/LEGEND_CONTACTS"></span></div><div class="control-group"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_CONTACTS/LABEL_CONTACTS_AUTOSAVE', value: contactsAutosave } }"></div></div></div></div><br /><div class="form-horizontal" data-bind="visible: allowContactsSync"><div class="legend"><span class="i18n" data-i18n="SETTINGS_CONTACTS/LEGEND_CONTACTS_SYNC"></span></div><div class="control-group"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_ENABLE', value: enableContactsSync } }"></div></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_AB_URL"></span></label><div class="controls"><input type="text" class="input-xxlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: contactsSyncUrl" placeholder="https://"/></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_USER"></span></label><div class="controls"><input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: contactsSyncUser"/></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_PASSWORD"></span></label><div class="controls"><input type="password" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: contactsSyncPass"/></div></div></div></div></script><script id="MailFolderList" type="text/html" data-cfasync="false"><div class="b-folders g-ui-user-select-none thm-folders" data-bind="css: {'focused': folderListFocused, 'single-root-inbox': foldersListWithSingleInboxRootFolder, 'inbox-is-starred': isInboxStarred}"><div class="b-toolbar btn-toolbar hide-on-mobile"><a class="btn buttonCompose pull-left" data-tooltip-join="top" data-bind="visible: allowComposer, click: composeClick, tooltip: 'FOLDER_LIST/BUTTON_NEW_MESSAGE', css: {'btn-warning': composeInEdit, 'btn-success': !composeInEdit()}"><i class="icon-paper-plane"></i><span class="btn-text-wrp buttonComposeText"><span class="i18n" data-i18n="FOLDER_LIST/BUTTON_NEW_MESSAGE"></span></span></a><a class="btn buttonContacts pull-left" data-tooltip-join="top" data-bind="visible: allowContacts, click: contactsClick, tooltip: 'FOLDER_LIST/BUTTON_CONTACTS'"><i class="icon-address-book"></i></a></div><div class="b-content opacity-on-panel-disabled" data-bind="visible: allowFolders, nano: true, scrollerShadows: true, css: {'inbox-is-starred': isInboxStarred}"><div class="content g-scrollbox" data-scroller-shadows-content><div class="content-wrapper"><div class="b-folders-system" data-bind="template: { name: 'MailFolderListSystemItem', foreach: folderListSystem }"></div><hr class="b-list-delimiter"/><div class="b-folders-user" data-bind="template: { name: 'MailFolderListItem', foreach: folderList }"></div><div class="move-action-content-wrapper" data-bind="visible: moveAction"></div></div></div></div><div class="b-content show-on-panel-disabled" data-bind="click: function () { leftPanelDisabled(false); }"></div><div class="b-footer btn-toolbar hide-on-mobile" data-bind="visible: allowFolders"><div class="btn-group"><a class="btn single buttonResize" data-bind="click: function () { leftPanelDisabled(!leftPanelDisabled()); }"><i data-bind="css: {'icon-resize-out': leftPanelDisabled(), 'icon-resize-in': !leftPanelDisabled()}"></i></a></div><div class="btn-group hide-on-panel-disabled"><a class="btn first" data-bind="click: createFolder"><i data-bind="css: {'icon-folder-add': !foldersChanging(), 'icon-spinner animated': foldersChanging()}"></i></a><a class="btn last" data-bind="click: configureFolders"><i class="icon-cog"></i></a></div></div></div></script><script id="SettingsThemes" type="text/html" data-cfasync="false"><div class="b-settings-themes g-ui-user-select-none"><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_THEMES/LEGEND_THEMES"></span> <div data-bind="component: { name: 'SaveTrigger', params: { value: themeTrigger } }"></div></div></div><div class="b-themes-list" data-bind="foreach: themesObjects"><div class="e-item" data-bind="click: function () { $root.theme(name); }, css: { 'selected': selected }"><div class="e-name" data-bind="text: nameDisplay"></div><img class="e-image" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC" data-bind="attr: { 'src': themePreviewSrc }"/></div></div><br /><br /><div class="form-horizontal" data-bind="visible: capaUserBackground"><div class="legend"><span class="i18n" data-i18n="SETTINGS_THEMES/LEGEND_THEMES_CUSTOM"></span></div><div class="control-group g-ui-user-select-none"><div class="row" data-bind="visible: '' !== background.error()" style="margin-left: 0; margin-bottom: 10px;"><div class="alert alert-error span6" data-bind="text: background.error" style="margin-left: 0"></div></div><div class="row" data-bind="visible: '' !== background.name()" style="margin-left: 0"><a class="btn" data-bind="visible: '' !== background.name(), click: clearBackground"><i class="icon-remove"></i></a> <b data-bind="text: background.name"></b></div><div class="row" data-bind="visible: '' === background.name()" style="margin-left: 0"><a class="btn" data-bind="initDom: background.uploaderButton"><i data-bind="css: {'icon-image': !background.loading(), 'icon-spinner animated': background.loading()}"></i> <span class="i18n" data-i18n="SETTINGS_THEMES/BUTTON_UPLOAD_BACKGROUND_IMAGE"></span></a></div></div></div></div></script><script id="SettingsCustom" type="text/html" data-cfasync="false"><div class="settingsCustom"> CUSTOM </div></script><script id="SettingsGeneral" type="text/html" data-cfasync="false"><div class="b-settings-general g-ui-user-select-none"><div class="form-horizontal"><div class="legend"><span class="i18n i18n-animation" data-i18n="SETTINGS_GENERAL/LEGEND_GENERAL"></span></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_GENERAL/LABEL_IDENTITY"></span></label><div class="controls"><div style="display: inline-block; margin-top: 5px"><b data-bind="click: editMainIdentity, text: identityMainDesc" style="border-bottom: 1px dashed #555; cursor: pointer; padding: 2px 0px;"></b></div></div></div><div class="control-group" data-bind="visible: allowLanguagesOnSettings"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_GENERAL/LABEL_LANGUAGE"></span></label><div class="controls"><div class="flag-selector"><span class="flag-wrapper"><span data-bind="css: 'flag flag-' + language().toLowerCase()" style=""></span></span><span class="flag-name" tabindex="0" data-bind="text: languageFullName, click: selectLanguage, onSpace: selectLanguage, onEnter: selectLanguage"></span> <div data-bind="component: { name: 'SaveTrigger', params: { value: languageTrigger } }"></div></div></div></div><div class="control-group hide-on-mobile"><label class="control-label"> <span class="i18n" data-i18n="SETTINGS_GENERAL/LABEL_LAYOUT"></span></label><div class="controls"><div data-bind="component: { name: 'Select', params: { options: layoutTypes, value: layout, trigger: layoutTrigger, optionsText: 'name', optionsValue: 'id' } }"></div></div></div><div class="control-group"><label class="control-label"> <span class="i18n" data-i18n="SETTINGS_GENERAL/LABEL_EDITOR"></span></label><div class="controls"><div data-bind="component: { name: 'Select', params: { options: editorDefaultTypes, value: editorDefaultType, trigger: editorDefaultTypeTrigger, optionsText: 'name', optionsValue: 'id' } }"></div></div></div><div class="control-group"><label class="control-label"> <span class="i18n" data-i18n="SETTINGS_GENERAL/LABEL_MESSAGE_PER_PAGE"></span></label><div class="controls"><div data-bind="component: { name: 'Select', params: { options: messagesPerPageArray, value: messagesPerPage, trigger: mppTrigger, size: 2, width: 80 } }"></div></div></div><div class="control-group"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_GENERAL/LABEL_SHOW_IMAGES', value: showImages } }"></div><div class="hide-on-mobile" data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_GENERAL/LABEL_USE_CHECKBOXES_IN_LIST', value: useCheckboxesInList } }"></div><br /><div data-bind="visible: threadsAllowed, component: { name: 'Checkbox', params: { label: 'SETTINGS_GENERAL/LABEL_USE_THREADS', value: useThreads } }"></div><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_GENERAL/LABEL_REPLY_SAME_FOLDER', value: replySameFolder } }"></div></div></div></div><div class="form-horizontal hide-on-mobile" data-bind="visible: isDesktopNotificationSupported() || soundNotificationIsSupported()"><div class="legend"><span class="i18n i18n-animation" data-i18n="SETTINGS_GENERAL/LABEL_NOTIFICATIONS"></span></div><div class="control-group"><div class="controls"><div data-bind="visible: isDesktopNotificationSupported"><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC', value: enableDesktopNotification, disable: isDesktopNotificationDenied, inline: true } }"></div> <span data-bind="visible: isDesktopNotificationDenied"><span class="i18n" style="color: #999" data-i18n="SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC_DENIED"></span></span></div><div data-bind="visible: soundNotificationIsSupported"><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_GENERAL/LABEL_SOUND_NOTIFICATION', value: enableSoundNotification, inline: true } }"></div> <span data-bind="click: testSoundNotification" style="color:green;cursor:pointer"><i class="icon-right-dir iconsize20"></i></span></div></div></div></div></div></script><script id="SettingsFiltersActionVacation" type="text/html" data-cfasync="false"><div class="control-group" style="margin-bottom: 0"><div class="controls"><div data-bind="component: { name: 'Select', params: { options: [1, 2, 3, 7, 30], label: 'POPUPS_FILTER/REPLY_INTERVAL_LABEL', value: actionValueThird, size: 1 } }"></div></div></div><div class="control-group" data-bind="css: {'error': actionValueFourth.error}" style="margin-bottom: 0"><div class="controls"><input type="text" class="span5 i18n" data-bind="value: actionValueFourth" data-i18n="[placeholder]POPUPS_FILTER/VACATION_RECIPIENTS_LABEL"/><button class="btn setRecipientsBtn" data-bind="click: setRecipients"><i class="icon-plus"></i></button></div></div><div class="control-group" style="margin-bottom: 0"><div class="controls"><input type="text" class="span5 i18n" data-bind="value: actionValueSecond" data-i18n="[placeholder]POPUPS_FILTER/VACATION_SUBJECT_LABEL"/></div></div><div class="control-group" data-bind="css: {'error': actionValue.error}" style="margin-bottom: 0"><div class="controls"><textarea class="span5 i18n" data-bind="value: actionValue" style="height: 100px;" data-i18n="[placeholder]POPUPS_FILTER/VACATION_MESSAGE_LABEL"></textarea></div></div><div class="control-group"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'POPUPS_FILTER/STOP_LABEL', value: actionNoStop } }"></div></div></div></script><script id="SettingsSecurity" type="text/html" data-cfasync="false"><div class="b-settings-security"><div class="form-horizontal" data-bind="visible: capaAutoLogout"><div class="legend"><span class="i18n" data-i18n="SETTINGS_SECURITY/LEGEND_SECURITY"></span></div><div class="control-group"><label class="control-label"> <span class="i18n" data-i18n="SETTINGS_SECURITY/LABEL_AUTOLOGOUT"></span></label><div class="controls"><div data-bind="component: { name: 'Select', params: { inline: true, options: autoLogoutOptions, value: autoLogout, trigger: autoLogout.trigger, optionsText: 'name', optionsValue: 'id' } }"></div></div></div><br /><div class="control-group" data-bind="visible: capaTwoFactor"><label class="control-label"></label><div class="controls"><i class="icon-lock"></i> <span class="i18n g-ui-link" tabindex="0" data-i18n="SETTINGS_SECURITY/LABEL_CONFIGURE_TWO_FACTOR" data-bind="click: configureTwoFactor, onSpace: configureTwoFactor, onEnter: configureTwoFactor"></span></div></div></div></div></script><script id="PopupsAccount" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-account-add-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span data-bind="visible: isNew" class="i18n" data-i18n="POPUPS_ADD_ACCOUNT/TITLE_ADD_ACCOUNT"></span><span data-bind="visible: !isNew()" class="i18n" data-i18n="POPUPS_ADD_ACCOUNT/TITLE_UPDATE_ACCOUNT"></span></h3></div><div class="modal-body"><div class="form-horizontal"><div class="alert" data-bind="visible: '' !== submitError()"><button type="button" class="close-custom" data-bind="click: function () { submitError('') }">×</button><span data-bind="text: submitError"></span><div data-bind="visible: submitErrorAdditional"><br /><span data-bind="text: submitErrorAdditional"></span></div></div><br /><div class="control-group" data-bind="css: {'error': emailError}"><label class="i18n control-label" data-i18n="LOGIN/LABEL_EMAIL"></label><div class="controls"><label style="margin-top: 5px;" data-bind="visible: !isNew()"><strong data-bind="text: email"></strong></label><input type="email" class="inputEmail input-xlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="visible: isNew, textInput: email, onEnter: addAccountCommand, hasfocus: emailFocus"/></div></div><div class="control-group" data-bind="css: {'error': passwordError}"><label class="i18n control-label" data-i18n="LOGIN/LABEL_PASSWORD"></label><div class="controls"><input type="password" class="inputPassword input-xlarge" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: password, onEnter: addAccountCommand"/></div></div></div></div><div class="modal-footer"><a class="btn buttonAddAccount" data-bind="command: addAccountCommand"><i data-bind="visible: isNew, css: {'icon-user-add': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i><i data-bind="visible: !isNew(), css: {'icon-ok': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i> <span data-bind="visible: isNew" class="i18n" data-i18n="POPUPS_ADD_ACCOUNT/BUTTON_ADD_ACCOUNT"></span><span data-bind="visible: !isNew()" class="i18n" data-i18n="POPUPS_ADD_ACCOUNT/BUTTON_UPDATE_ACCOUNT"></span></a></div></div></div></div></script><script id="PopupsViewOpenPgpKey" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-open-pgp-key-view-content" data-bind="modal: modalVisibility"><div><div class="modal-header g-ui-user-select-none"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_VIEW_OPEN_PGP_KEY/TITLE_VIEW_OPEN_PGP_KEY"></span></h3></div><div class="modal-body"><div class="form-horizontal"><div class="control-group"><pre class="key-viewer" data-bind="initDom: keyDom, text: key"></pre></div></div></div><div class="modal-footer"><a class="btn buttonClose" data-bind="command: cancelCommand"><i class="icon-remove"></i> <span class="i18n" data-i18n="POPUPS_VIEW_OPEN_PGP_KEY/BUTTON_CLOSE"></span></a><a class="btn buttonClose" data-bind="click: selectKey"><i class="icon-key"></i> <span class="i18n" data-i18n="POPUPS_VIEW_OPEN_PGP_KEY/BUTTON_SELECT"></span></a></div></div></div></div></script><script id="PopupsFolderClear" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-folder-clear-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_CLEAR_FOLDER/TITLE_CLEAR_FOLDER" data-bind="visible: !clearingProcess()"></span><span class="i18n" data-i18n="POPUPS_CLEAR_FOLDER/TITLE_CLEARING_PROCESS" data-bind="visible: clearingProcess"></span></h3></div><div class="modal-body"><div><i class="icon-warning" style="color:red"></i> <strong><span class="i18n" data-i18n="[html]POPUPS_CLEAR_FOLDER/DANGER_DESC_WARNING"></span></strong><br /><br /><span data-bind="html: dangerDescHtml"></span><br /><span class="i18n" data-i18n="[html]POPUPS_CLEAR_FOLDER/DANGER_DESC_HTML_2"></span></div></div><div class="modal-footer"><a class="btn btn-danger buttonClear" data-bind="command: clearCommand"><i class="icon-fire" data-bind="css: {'icon-fire': !clearingProcess(), 'icon-spinner animated white': clearingProcess()}" ></i> <span class="i18n" data-i18n="POPUPS_CLEAR_FOLDER/BUTTON_CLEAR"></span></a></div></div></div></div></script><script id="MailMessageList" type="text/html" data-cfasync="false"><div id="rl-sub-left"><div class="messageList g-ui-user-select-none" data-bind="css: {'message-selected': isMessageSelected, 'message-focused': !messageListFocused(), 'loading': messageListCompleteLoadingThrottle, 'hideMessageListCheckbox': !useCheckboxesInList() }"><div class="toolbar"><div class="btn-toolbar"><!-- ko if: allowFolders && mobile --><div class="btn-group" data-bind="visible: leftPanelDisabled()"><a class="btn btn-thin-2 single" data-bind="click: showLeft"><i class="icon-right-middle"></i></a></div><div class="btn-group" data-bind="visible: !leftPanelDisabled()"><a class="btn btn-thin-2 single" data-bind="click: hideLeft"><i class="icon-left-middle"></i></a></div><div class="btn-group"> </div><!-- /ko --><div class="btn-group" data-bind="visible: mobile && allowComposer && mobileCheckedStateHide()"><a class="btn single buttonCompose" data-tooltip-join="top" data-bind="click: composeClick, tooltip: 'FOLDER_LIST/BUTTON_NEW_MESSAGE', css: {'btn-warning': composeInEdit, 'btn-success': !composeInEdit()}"><i class="icon-paper-plane"></i></a></div><div class="btn-group" data-bind="visible: mobileCheckedStateHide()"> </div><div class="btn-group" data-bind="visible: allowReload && mobileCheckedStateHide()"><a class="btn single btn-dark-disabled-border buttonReload" data-tooltip-join="top" data-bind="command: reloadCommand, tooltip: 'MESSAGE_LIST/BUTTON_RELOAD'"><i class="icon-spinner" data-bind="css: {'animated': messageListCompleteLoadingThrottleForAnimation}"></i></a></div><div class="btn-group" data-bind="visible: allowReload && mobileCheckedStateHide()"> </div><!-- ko if: !newMoveToFolder() --><div class="btn-group dropdown colored-toggle hide-on-mobile" data-bind="visible: allowMessageListActions, registrateBootstrapDropdown: true, openDropdownTrigger: moveDropdownTrigger"><a id="move-dropdown-id" href="#" tabindex="-1" class="btn single btn-dark-disabled-border dropdown-toggle buttonMove" data-toggle="dropdown" data-tooltip-join="top" data-bind="command: moveCommand, tooltip: 'MESSAGE_LIST/BUTTON_MOVE_TO'"><i class="icon-copy visible-on-ctrl-btn"></i><i class="icon-folder hidden-on-ctrl-btn"></i> <span class="caret"></span></a><ul class="dropdown-menu g-ui-menu" role="menu" aria-labelledby="move-dropdown-id" role="menu" data-bind="foreach: folderMenuForMove"><!-- ko if: seporator --><li class="divider" role="presentation" data-bind="visible: seporator"></li><!-- /ko --><!-- ko if: !seporator --><li class="e-item" role="presentation" data-bind="css: { 'disabled': disabled }, click: function (mdata, oEvent) { if (!disabled) $root.moveSelectedMessagesToFolder(id, oEvent && !!oEvent.ctrlKey); }"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="text: name"></a></li><!-- /ko --></ul></div><!-- /ko --><!-- ko if: newMoveToFolder() --><div class="btn-group" data-bind="visible: allowMessageListActions && mobileCheckedStateShow()"><a id="move-dropdown-id" href="#" tabindex="-1" class="btn single btn-dark-disabled-border buttonMove" data-tooltip-join="top" data-bind="command: moveNewCommand, tooltip: 'MESSAGE_LIST/BUTTON_MOVE_TO'"><i class="icon-copy visible-on-ctrl-btn"></i><i class="icon-folder hidden-on-ctrl-btn"></i></a></div><!-- /ko --><div class="btn-group" data-bind="visible: allowMessageListActions && mobileCheckedStateHide()"> </div><div class="btn-group" data-bind="visible: allowMessageListActions && mobileCheckedStateShow()"><a class="btn first btn-dark-disabled-border button-archive" data-tooltip-join="top" data-bind="visible: isArchiveVisible, command: archiveCommand, tooltip: 'MESSAGE_LIST/BUTTON_ARCHIVE'"><i class="icon-archive"></i></a><a class="btn btn-dark-disabled-border button-spam" data-tooltip-join="top" data-bind="visible: isSpamVisible, command: spamCommand, tooltip: 'MESSAGE_LIST/BUTTON_SPAM', css: {'first': !isArchiveVisible()}"><i class="icon-warning"></i></a><a class="btn btn-dark-disabled-border button-not-spam" data-tooltip-join="top" data-bind="visible: isUnSpamVisible, command: notSpamCommand, tooltip: 'MESSAGE_LIST/BUTTON_NOT_SPAM', css: {'first': !isArchiveVisible()}"><i class="icon-check-mark-circle-two"></i></a><a class="btn last btn-dark-disabled-border button-delete" data-tooltip-join="top" data-bind="command: deleteCommand, tooltip: 'MESSAGE_LIST/BUTTON_DELETE', css: {'first': !isArchiveVisible() && !isSpamVisible() && !isUnSpamVisible()}"><i class="icon-trash"></i><!--<span data-bind="text: printableMessageCountForDeletion()"></span>--></a></div><div class="btn-group hide-on-mobile" data-bind="visible: allowMessageListActions"> </div><div class="btn-group dropdown colored-toggle hide-on-mobile" data-bind="visible: allowComposer || allowMessageListActions || allowDangerousActions, registrateBootstrapDropdown: true, openDropdownTrigger: moreDropdownTrigger"><a id="more-list-dropdown-id" class="btn single btn-dark-disabled-border dropdown-toggle buttonMore" href="#" tabindex="-1" data-toggle="dropdown" data-tooltip-join="top" data-bind="tooltip: 'MESSAGE_LIST/BUTTON_MORE'"><i class="icon-list animate-this-icon-on-open"></i></a><ul class="dropdown-menu pull-right g-ui-menu" role="menu" aria-labelledby="more-list-dropdown-id"><div data-bind="visible: allowMessageListActions"><li class="e-item" role="presentation" data-bind="click: listUnsetSeen, css: {'disabled': !hasCheckedOrSelectedLines()}"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-none"></i> <span class="i18n" data-i18n="MESSAGE_LIST/MENU_UNSET_SEEN"></span></a></li><li class="e-item" role="presentation" data-bind="click: listSetSeen, css: {'disabled': !hasCheckedOrSelectedLines()}"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-none"></i> <span class="i18n" data-i18n="MESSAGE_LIST/MENU_SET_SEEN"></span></a></li><li class="e-item" role="presentation" data-bind="click: listSetFlags, css: {'disabled': !hasCheckedOrSelectedLines()}"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-none"></i> <span class="i18n" data-i18n="MESSAGE_LIST/MENU_SET_FLAG"></span></a></li><li class="e-item" role="presentation" data-bind="click: listUnsetFlags, css: {'disabled': !hasCheckedOrSelectedLines()}"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-none"></i> <span class="i18n" data-i18n="MESSAGE_LIST/MENU_UNSET_FLAG"></span></a></li><li class="e-item" role="presentation" data-bind="click: listSetAllSeen, css: {'disabled': !hasMessages()}"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-none"></i> <span class="i18n" data-i18n="MESSAGE_LIST/MENU_SET_ALL_SEEN"></span></a></li></div><li class="divider" role="presentation" data-bind="visible: allowComposer && allowMessageListActions"></li><li class="e-item" role="presentation" data-bind="visible: allowComposer, command: multyForwardCommand"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-reply-all"></i> <span class="i18n" data-i18n="MESSAGE_LIST/BUTTON_MULTY_FORWARD"></span></a></li><li class="divider" role="presentation" data-bind="visible: allowDangerousActions"></li><li class="e-item" role="presentation" data-bind="visible: allowDangerousActions, command: deleteWithoutMoveCommand"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-trash"></i> <span class="i18n" data-i18n="MESSAGE_LIST/BUTTON_DELETE_WITHOUT_MOVE"></span></a></li><li class="e-item" role="presentation" data-bind="visible: allowDangerousActions, command: clearCommand"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-fire"></i> <span class="i18n" data-i18n="MESSAGE_LIST/BUTTON_EMPTY_FOLDER"></span></a></li></ul></div></div></div><div class="b-message-list-wrapper"><div class="second-toolbar thm-message-list-top-toolbar"><div class="form-inline"><div class="input-append pull-right" data-bind="visible: allowSearch"><div class="close-input-wrp"><a class="close" data-bind="click: cancelSearch, visible: '' !== messageListSearchDesc()">×</a><input type="text" class="i18n span4 inputSearch" tabindex="-1" placeholder="Search" autocorrect="off" autocapitalize="off" data-i18n="[placeholder]SEARCH/MAIN_INPUT_PLACEHOLDER" data-bind="value: inputProxyMessageListSearch, onEnter: searchEnterAction, hasfocus: inputMessageListSearchFocus"/></div><a class="btn buttonMoreSearch" data-bind="visible: allowSearchAdv, click: advancedSearchClick"><span class="caret"></span></a></div><i class="checkboxCkeckAll" data-bind="css: checkAll() ? (isIncompleteChecked() ? 'icon-checkbox-partial' : 'icon-checkbox-checked') : 'icon-checkbox-unchecked'"></i></div></div><div class="line-loading e-strip-animation" data-bind="visible: messageListCompleteLoadingThrottle"></div><div class="mainDelimiter toolbarDelimiter"></div><div class="b-content" data-bind="nano: true, scrollerShadows: true, initDom: dragOverBodyArea"><div class="content g-scrollbox" data-scroller-shadows-content><div class="content-wrapper"><div class="listThreadUidDesc" data-bind="visible: '' !== messageListEndThreadUid(), click: cancelThreadUid"><i class="icon-left" data-bind="click: cancelThreadUid"></i> <span class="i18n" data-i18n="MESSAGE_LIST/BACK_TO_MESSAGE_LIST"></span></div><div class="listSearchDesc" data-bind="visible: '' !== messageListSearchDesc()"><span data-bind="text: messageListSearchDesc"></span></div><div class="listDragOver" data-bind="css: {'viewAppendArea': dragOver() && '' === messageListError() && !popupVisibility(), 'dragOverEnter': dragOverEnter }, initDom: dragOverArea"><i class="icon-down e-icon"></i> <span class="i18n" data-i18n="MESSAGE_LIST/PUT_MESSAGE_HERE"></span></div><div class="listClear" data-bind="visible: clearListIsVisible()"><span class="g-ui-link i18n" data-i18n="MESSAGE_LIST/BUTTON_EMPTY_FOLDER" data-bind="command: clearCommand"></span></div><div class="listError" data-bind="visible: !dragOver() && '' !== messageListError()"><span class="error" data-bind="text: messageListError"></span></div><div class="listEmptyList" data-bind="visible: !dragOver() && 0 === messageList().length && !messageListCompleteLoadingThrottle() && '' === messageListError() && '' === messageListSearch()"><span class="i18n" data-i18n="MESSAGE_LIST/EMPTY_LIST"></span></div><div class="listEmptyListLoading" data-bind="visible: !dragOver() && 0 === messageList().length && messageListCompleteLoadingThrottle() && '' === messageListError()"><span class="i18n" data-i18n="MESSAGE_LIST/LIST_LOADING"></span><span class="textLoadingAnimationD1">.</span><span class="textLoadingAnimationD2">.</span><span class="textLoadingAnimationD3">.</span></div><div class="listEmptySearchList" data-bind="visible: !dragOver() && 0 === messageList().length && !messageListCompleteLoadingThrottle() && '' === messageListError() && '' !== messageListSearch()"><span class="i18n" data-i18n="MESSAGE_LIST/EMPTY_SEARCH_LIST"></span></div><div data-bind="draggable: dragAndDronHelper, droppableSelector: '.b-folders .content.g-scrollbox'"><div class="messageListPlace" data-bind="template: { name: messageListItemTemplate(), foreach: messageList }"></div></div></div></div></div><div class="mainDelimiter footerDelimiter"></div><div class="b-footer thm-message-list-bottom-toolbar"><span data-tooltip-i18n="off" data-tooltip-mobile="on" data-bind="visible: 0 < userUsageProc(), tooltip: quotaTooltip" class="e-quota"><span data-bind="text: userUsageProc"></span>% </span><div class="pull-right"><!-- ko template: { name: 'Pagenator', data: messageListPagenator } --><!-- /ko --></div></div></div></div></div></script><script id="SettingsFiltersActionDiscard" type="text/html" data-cfasync="false"></script><script id="About" type="text/html" data-cfasync="false"><div style="margin: 30px"><h1 style="display: inline; color: #fff; text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.5);">RainLoop Webmail</h1> <h3 style="display: inline; color: #fff; text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.5);">(<span data-bind="text: version"></span>)</h3><h3><a href="https://www.rainloop.net/" target="_blank">https://www.rainloop.net</a></h3></div></script><script id="SettingsFiltersConditionDefault" type="text/html" data-cfasync="false"><div class="control-group" data-bind="css: {'error': value.error}" style="margin-bottom: 0"><select class="span3" data-bind="options: $root.fieldOptions, value: field, optionsText: 'name', optionsValue: 'id'"></select> <select class="span2" data-bind="options: $root.typeOptions, value: type, optionsText: 'name', optionsValue: 'id'"></select> <input class="span3" type="text" data-bind="value: value"/> <span class="delete-action button-delete pull-right" style="margin-top: 5px;" data-bind="click: function (oCondition) { $root.removeCondition(oCondition); }"><i class="icon-trash"></i></span></div></script><script id="LoginWelcome" type="text/html" data-cfasync="false"><div class="b-login--welcome-content"><i class="icon-google iconsize50" style="cursor: pointer; padding-right: 20px" data-bind="command: googleGmailCommand, visible: googleGmailLoginEnabled"></i><i class="icon-mail iconsize50" style="cursor: pointer" data-bind="click: displayMainForm"></i><br /><br /></div></script><script id="PopupsAdvancedSearch" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-advanced-search-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="SEARCH/TITLE_ADV"></span></h3></div><div class="modal-body"><br /><form class="form-horizontal" action="#/" autocomplete="off" onsubmit="return false;" data-bind="command: searchCommand"><div class="row"><div class="span4"><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SEARCH/LABEL_ADV_FROM"></span></label><div class="controls"><input type="text" class="uiInput inputFrom" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: from, onEnter: searchCommand, hasfocus: fromFocus, onEsc: cancelCommand"/></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SEARCH/LABEL_ADV_TO"></span></label><div class="controls"><input type="text" class="uiInput inputFrom" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: to, onEnter: searchCommand, onEsc: cancelCommand"/></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SEARCH/LABEL_ADV_SUBJECT"></span></label><div class="controls"><input type="text" class="uiInput inputFrom" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: subject, onEnter: searchCommand, onEsc: cancelCommand"/></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SEARCH/LABEL_ADV_TEXT"></span></label><div class="controls"><input type="text" class="uiInput inputFrom" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: text, onEnter: searchCommand, onEsc: cancelCommand"/></div></div></div><div class="span4"><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SEARCH/LABEL_ADV_DATE"></span></label><div class="controls"><div data-bind="component: { name: 'Select', params: { options: selectedDates, value: selectedDateValue, optionsText: 'name', optionsValue: 'id' } }"></div></div></div><div class="control-group"><label class="control-label"></label><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'SEARCH/LABEL_ADV_UNSEEN', value: unseen } }"></div><div data-bind="component: { name: 'Checkbox', params: { label: 'SEARCH/LABEL_ADV_FLAGGED', value: starred } }"></div><div data-bind="component: { name: 'Checkbox', params: { label: 'SEARCH/LABEL_ADV_HAS_ATTACHMENT', value: hasAttachment } }"></div></div></div></div></div></form></div><div class="modal-footer"><button type="submit" class="btn buttonAdvSearch" data-bind="command: searchCommand"><i class="icon-search"></i> <span class="i18n" data-i18n="SEARCH/BUTTON_ADV_SEARCH"></span></a></div></div></div></script><script id="MailMessageView" type="text/html" data-cfasync="false"><div id="rl-sub-right"><div class="messageView" data-bind="css: {'message-selected': isMessageSelected, 'message-focused': messageFocused}"><div class="toolbar top-toolbar g-ui-user-select-none" data-bind="visible: !usePreviewPane()"><nobr><div class="messageButtons btn-toolbar"><div class="btn-group" data-tooltip-join="top" data-bind="tooltip: 'MESSAGE/BUTTON_CLOSE'"><a class="btn single btn-dark-disabled-border buttonClose" data-bind="command: closeMessageCommand"><i class="icon-remove"></i></a></div><div class="btn-group"> </div><div class="btn-group" data-tooltip-join="top" data-bind="visible: isDraftFolder(), tooltip: 'MESSAGE/BUTTON_EDIT'"><a class="btn single btn-success buttonEdit" data-bind="command: messageEditCommand"><i class="icon-pencil icon-white"></i></a></div><div class="btn-group" data-bind="visible: !usePreviewPane()"> </div><div class="btn-group" data-bind="visible: !usePreviewPane()"><a class="btn first btn-dark-disabled-border button-archive" data-tooltip-join="top" data-bind="visible: !isDraftFolder() && !isArchiveFolder() && !isArchiveDisabled(), command: archiveCommand, tooltip: 'MESSAGE/BUTTON_ARCHIVE'"><i class="icon-archive"></i></a><a class="btn btn-dark-disabled-border button-spam" data-tooltip-join="top" data-bind="visible: !isDraftFolder() && !isSentFolder() && !isSpamFolder() && !isSpamDisabled(), command: spamCommand, tooltip: 'MESSAGE/BUTTON_SPAM'"><i class="icon-warning"></i></a><a class="btn btn-dark-disabled-border button-not-spam" data-tooltip-join="top" data-bind="visible: !isDraftFolder() && !isSentFolder() && isSpamFolder() && !isSpamDisabled(), command: notSpamCommand, tooltip: 'MESSAGE/BUTTON_NOT_SPAM'"><i class="icon-check-mark-circle-two"></i></a><a class="btn last btn-dark-disabled-border button-delete" data-tooltip-join="top" data-bind="command: deleteCommand, tooltip: 'MESSAGE/BUTTON_DELETE'"><i class="icon-trash"></i></a></div><div class="btn-group"> </div><div class="btn-group hide-on-mobile" data-bind="visible: !usePreviewPane()"><a class="btn btn-thin first btn-dark-disabled-border buttonUp" data-bind="command: goUpCommand"><i class="icon-left-middle"></i></a><a class="btn btn-thin last btn-dark-disabled-border buttonDown" data-bind="command: goDownCommand"><i class="icon-right-middle"></i></a></div></div></nobr></div><div class="b-content b-message-view-wrapper thm-message-view-background-color"><div style="height: 100%"><div class="b-message-view-backdrop" data-bind="visible: moveAction"><div class="backdrop-message-wrp"><div class="backdrop-message"><i class="icon-folder" style="padding: 0 7px; font-size: 24px; width: 24px; line-height: 24px;"></i><span class="i18n" style="vertical-align: middle; padding: 0 7px" data-i18n="MESSAGE/MESSAGE_VIEW_MOVE_DESC"></span></div></div></div><div class="b-message-view-checked-helper" data-bind="visible: !message() && '' === messageError() && hasCheckedMessages()"><span data-bind="text: printableCheckedMessageCount()"></span><i class="icon-mail"></i></div><div class="b-message-view-desc error" data-bind="visible: !message() && '' !== messageError() && !hasCheckedMessages()"><span class="text" data-bind="text: messageError()"></span></div><div data-bind="visible: !message() && '' === messageError() && !hasCheckedMessages()" style="height: 100%"><div class="b-message-view-desc" data-bind="visible: !logoIframe"><span class="i18n" data-bind="visible: !logoImg" data-i18n="MESSAGE/MESSAGE_VIEW_DESC"></span><div class="logoPlace" data-bind="visible: logoImg, if: logoImg"><img style="height: 99%" data-bind="attr: { 'src': logoImg }"/></div></div><div class="b-message-view-iframe" data-bind="visible: logoIframe, if: logoIframe" style="position: relative; height: 100%"><iframe src="javascript:1;" tabindex="-1" frameborder="0" style="border: none; width: 100%; height: 100%; position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px;" data-bind="attr: {'src': logoIframe}"></iframe><div class="b-message-view-iframe-backdrop"></div></div></div><div class="message-fixed-button-toolbar clearfix" data-bind="visible: message"><nobr><div class="btn-group pull-right" style="margin-right: -11px;"><div class="btn-group pull-right" data-bind="registrateBootstrapDropdown: true, visible: allowComposer || allowMessageListActions || allowMessageActions"><a class="btn btn-thin-2 btn-transparent last btn-dark-disabled-border dropdown-toggle buttonMore" id="more-view-dropdown-id" href="#" tabindex="-1" data-toggle="dropdown" data-tooltip-join="bottom" style="margin-left: -4px; margin-right: 2px" data-bind="command: messageVisibilityCommand, css: {'first': !allowComposer}"><span data-bind="visible: !allowComposer" class="icon-ellipsis-alt"></span><span data-bind="visible: allowComposer" class="caret"></span></a><ul class="dropdown-menu g-ui-menu" role="menu" aria-labelledby="more-view-dropdown-id"><div data-bind="visible: allowComposer && !isDraftFolder()"><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: replyCommand"><i class="icon-reply"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_REPLY"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: replyAllCommand"><i class="icon-reply-all"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_REPLY_ALL"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: forwardCommand"><i class="icon-forward"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_FORWARD"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: editAsNewCommand"><i class="icon-pencil"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_EDIT_AS_NEW"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: forwardAsAttachmentCommand"><i class="icon-forward"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_FORWARD_AS_ATTACHMENT"></span></a></li></div><div data-bind="visible: allowMessageListActions && usePreviewPane()"><li class="divider" role="presentation" data-bind="visible: allowComposer && !isDraftFolder()"></li><li class="e-item" role="presentation" data-bind="visible: !isDraftFolder() && !isArchiveFolder() && !isArchiveDisabled()"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="command: archiveCommand"><i class="icon-archive"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_ARCHIVE"></span></a></li><li class="e-item" role="presentation" data-bind="visible: !isDraftFolder() && !isSentFolder() && !isSpamFolder() && !isSpamDisabled()"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="command: spamCommand"><i class="icon-warning"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_SPAM"></span></a></li><li class="e-item" role="presentation" data-bind="visible: !isDraftFolder() && !isSentFolder() && isSpamFolder() && !isSpamDisabled()"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="command: notSpamCommand"><i class="icon-check-mark-circle-two"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_NOT_SPAM"></span></a></li><li class="e-item" role="presentation"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="command: deleteCommand"><i class="icon-trash"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_DELETE"></span></a></li><li class="e-item" role="presentation" data-bind="visible: message() && message().hasUnsubsribeLinks()"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="link: viewUnsubscribeLink()"><i class="icon-remove"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_UNSUBSCRIBE"></span></a></li></div><div data-bind="visible: allowMessageActions"><li class="divider" role="presentation" data-bind="visible: (allowComposer && !isDraftFolder()) || (allowMessageListActions && usePreviewPane())"></li><li class="e-item" role="presentation"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="click: function () { if (message()) { message().printMessage(); }} "><i class="icon-print"></i> <span class="i18n" data-i18n="MESSAGE/MENU_PRINT"></span></a></li><li class="e-item" role="presentation"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="click: function () { if (message()) { message().viewPopupMessage(); }}"><i class="icon-popup"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_IN_NEW_WINDOW"></span></a></li><li class="divider" role="presentation"></li><li class="e-item" role="presentation"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="link: viewViewLink()"><i class="icon-file-code"></i> <span class="i18n" data-i18n="MESSAGE/MENU_VIEW_ORIGINAL"></span></a></li><li class="e-item" role="presentation"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="link: viewDownloadLink()"><i class="icon-download"></i> <span class="i18n" data-i18n="MESSAGE/MENU_DOWNLOAD_ORIGINAL"></span></a></li></div></ul></div><a class="btn btn-thin-2 btn-transparent first btn-dark-disabled-border buttonReply pull-right" data-tooltip-join="bottom" data-bind="visible: 'reply' === lastReplyAction() && allowComposer, command: replyCommand, tooltip: 'MESSAGE/BUTTON_REPLY'"><i class="icon-reply"></i></a><a class="btn btn-thin-2 btn-transparent first btn-dark-disabled-border buttonReplyAll pull-right" data-tooltip-join="bottom" data-bind="visible: 'replyall' === lastReplyAction() && allowComposer, command: replyAllCommand, tooltip: 'MESSAGE/BUTTON_REPLY_ALL'"><i class="icon-reply-all"></i></a><a class="btn btn-thin-2 btn-transparent first btn-dark-disabled-border buttonForward pull-right" data-tooltip-join="bottom" data-bind="visible: 'forward' === lastReplyAction() && allowComposer, command: forwardCommand, tooltip: 'MESSAGE/BUTTON_FORWARD'"><i class="icon-forward"></i></a></div><div class="btn-group pull-right hide-on-mobile" data-tooltip-join="right" data-bind="visible: isDraftFolder(), tooltip: 'MESSAGE/BUTTON_EDIT'" style="margin-right: 5px"><a class="btn single btn-success buttonEdit" data-bind="command: messageEditCommand"><i class="icon-pencil icon-white"></i></a></div></nobr></div><div data-bind="visible: message"><div class="messageItemHeader" data-bind="css: {'emptySubject': '' === viewSubject()}"><div class="subjectParent"><button class="close" data-bind="command: closeMessageCommand" style="margin-top: -2px;">×</button><span class="infoParent g-ui-user-select-none" data-bind="click: function() { showFullInfo(!showFullInfo()); }"><i class="icon-info" style="padding-top: 1px;"></i></span><span class="flagParent g-ui-user-select-none"><i class="icon-star-empty flagOff" data-bind="css: {'icon-star flagOn': viewIsFlagged, 'icon-star-empty flagOff': !viewIsFlagged()}" style="padding-top: 2px;"></i></span><b style="color: red; margin-right: 5px" data-bind="visible: viewIsImportant">!</b><span class="subject" data-bind="text: viewSubject, title: viewSubject, event: { 'dblclick': toggleFullScreen }"></span><span class="i18n emptySubjectText" data-i18n="MESSAGE/EMPTY_SUBJECT_TEXT" data-bind="event: { 'dblclick': toggleFullScreen }"></span></div><div><div><img class="fromPic" data-bind="visible: viewUserPicVisible, attr: {'src': viewUserPic() }"><div style="overflow: hidden;"><div class="informationShort" data-bind="event: { 'dblclick': toggleFullScreen }"><span><span class="from" data-bind="html: viewFromShort, title: viewFrom"></span><span data-bind="visible: viewFromDkimVisibility"> <i data-bind="css: viewFromDkimStatusIconClass, title: viewFromDkimStatusTitle"></i></span></span><span data-bind="visible: 0 < viewTimeStamp()"> (<span class="date" data-moment-format="FULL" data-bind="moment: viewTimeStamp"></span>) </span></div><div class="informationShortWrp"><div class="informationShort" data-bind="visible: viewTo, event: { 'dblclick': toggleFullScreen }"><span><span class="i18n uiLabel labelTo" data-i18n="MESSAGE/LABEL_TO" ></span>: <span class="to" data-bind="text: viewTo"></span></span></div><div class="informationShort" data-bind="visible: viewCc, event: { 'dblclick': toggleFullScreen }"><span><span class="i18n uiLabel labelTo" data-i18n="MESSAGE/LABEL_CC" ></span>: <span class="to" data-bind="text: viewCc"></span></span></div></div></div><div class="clearfix"></div></div><div class="informationFull" data-bind="visible: showFullInfo()"><table><tr data-bind="visible: '' !== viewFrom()"><td><span class="i18n uiLabel" data-i18n="MESSAGE/LABEL_FROM"></span></td><td><span class="pull-right size" data-bind="text: viewSize"></span><span class="from uiLabelValue" data-bind="text: viewFrom, title: viewFrom"></span></div></td></tr><tr data-bind="visible: '' !== viewTo()"><td><span class="i18n uiLabel" data-i18n="MESSAGE/LABEL_TO"></span></td><td><span class="to uiLabelValue" data-bind="text: viewTo, title: viewTo"></span></td></tr><tr data-bind="visible: '' !== viewCc()"><td><span class="i18n uiLabel" data-i18n="MESSAGE/LABEL_CC"></span></td><td><span class="cc uiLabelValue" data-bind="text: viewCc, title: viewCc"></span></td></tr><tr data-bind="visible: '' !== viewBcc()"><td><span class="i18n uiLabel" data-i18n="MESSAGE/LABEL_BCC"></span></td><td><span class="bcc uiLabelValue" data-bind="text: viewBcc, title: viewBcc"></span></td></tr><tr data-bind="visible: '' !== viewReplyTo()"><td><span class="i18n uiLabel" data-i18n="MESSAGE/LABEL_REPLY_TO"></span></td><td><span class="replyTo uiLabelValue" data-bind="text: viewReplyTo, title: viewReplyTo"></span></td></tr><tr data-bind="visible: 0 < viewTimeStamp()"><td><span class="i18n uiLabel" data-i18n="MESSAGE/LABEL_DATE"></span></td><td><span class="date uiLabelValue" data-moment-format="FULL" data-bind="moment: viewTimeStamp"></span> (<span class="date uiLabelValue" data-moment-format="FROMNOW" data-bind="moment: viewTimeStamp"></span>) </td></tr></table></div></div></div><div class="messageItem fixIndex" data-bind="css: viewLineAsCss(), nano: true, scrollerShadows: true, attr: {'style': 'top:' + viewBodyTopValue() + 'px' }"><div class="content g-scrollbox" tabindex="0" data-scroller-shadows-content data-bind="hasfocus: messageDomFocused, css: { 'focused': messageDomFocused }, style: {'background-color': messageLoadingThrottle() ? '' : bodyBackgroundColor()}"><div class="content-wrapper"><div><span class="buttonUp" data-bind="click: scrollMessageToTop"><i class="icon-up"></i></span><span class="buttonFull" data-bind="click: fullScreen"><i class="icon-arrows-out"></i></span><span class="buttonUnFull" data-bind="click: unFullScreen"><i class="icon-arrows-in"></i></span><div class="line-loading e-strip-animation" data-bind="visible: messageLoadingThrottle()"></div><div class="loading g-ui-min-height-300" data-bind="visible: messageLoadingThrottle()"><span class="i18n text" data-i18n="MESSAGE/MESSAGE_LOADING"></span><span class="textLoadingAnimationD1">.</span><span class="textLoadingAnimationD2">.</span><span class="textLoadingAnimationD3">.</span></div></div><div class="g-ui-min-height-300 content-content" data-bind="visible: !messageLoadingThrottle()"><div class="bodySubHeader"><div class="showImages" data-bind="visible: message() && message().hasImages(), click: function() { showImages(message()); }"><i class="icon-image"></i> <span class="i18n text" data-i18n="MESSAGE/BUTTON_SHOW_IMAGES"></span></div><div class="readReceipt" data-bind="visible: message() && !isDraftOrSentFolder() && '' !== message().readReceipt() && !message().isReadReceipt(), click: function() { readReceipt(message()); }"><i class="icon-mail"></i> <span class="i18n text" data-i18n="MESSAGE/BUTTON_NOTIFY_READ_RECEIPT"></span></div><div class="attachmentsPlace" data-bind="visible: message() && message().hasVisibleAttachments(), css: {'selection-mode' : showAttachmnetControls, 'unselectedAttachmentsError': highlightUnselectedAttachments}"><ul class="attachmentList" data-bind="foreach: message() ? message().attachments() : []"><li class="attachmentItem clearfix" draggable="true" data-tooltip-join="top" data-bind="visible: !isLinked, event: { 'dragstart': eventDragStart }, attr: { 'title': fileName }, css: {'checked': checked}"><div class="attachmentIconParent pull-left" data-bind="css: { 'hasPreview': hasPreview(), 'hasPreplay': hasPreplay(), 'isImage': isImage() }"><div class="hidePreview"><div class="iconMain"><i class="attachmentIcon attachmentMainIcon" data-bind="css: iconClass()"></i><i class="attachmentIconText attachmentMainIconText" data-bind="text: iconText()"></i></div></div><div class="showPreview"><a data-bind="click: $root.attachmentPreview, css: {'attachmentImagePreview': isImage(), 'visible': !isLinked}, attr: { 'title': fileName, 'href': linkPreviewMain() }" target="_blank"><div class="iconMain"><i class="attachmentIcon attachmentMainIcon" data-bind="css: iconClass()"></i><i class="attachmentIconText attachmentMainIconText" data-bind="text: iconText()"></i></div><div class="iconBG" data-bind="attr: { 'style': linkThumbnailPreviewStyle() }"></div><div class="iconPreview"><i class="attachmentIcon icon-eye show-hover"></i></div></a></div><div class="showPreplay"><div class="iconMain"><i class="attachmentIcon attachmentMainIcon" data-bind="css: iconClass()"></i></div><div class="iconPreview"><i class="attachmentIcon icon-play show-hover"></i></div></div></div><div class="attachmentNameParent"><div style="white-space: nowrap; text-overflow: ellipsis; overflow: hidden;"><span class="attachmentName" data-bind="text: fileName"></span> </div><div><span class="attachmentSize" data-bind="text: friendlySize"></span> </div></div><div class="checkedParent"><i class="checkboxAttachment icon-checkbox-unchecked" data-bind="css: checked() ? 'checkboxMessage icon-checkbox-checked' : 'checkboxMessage icon-checkbox-unchecked', click: function () { checked(!checked()); return false }"></i></div></li></ul><i class="icon-cog controls-handle" data-bind="visible: allowAttachmnetControls() && !showAttachmnetControls(), click: function () { showAttachmnetControls(true); showAttachmnetControlsState(true); }"></i></div><div class="attachmentsControls" data-bind="visible: showAttachmnetControls() && message() && message().hasVisibleAttachments()"><span data-bind="visible: downloadAsZipAllowed"><i class="icon-remove iconcolor-red" data-bind="visible: downloadAsZipError"></i><i class="icon-file-zip" data-bind="visible: !downloadAsZipError(), css: {'icon-file-zip': !downloadAsZipLoading(), 'icon-spinner animated': downloadAsZipLoading()}"></i> <span class="g-ui-link" data-bind="click: downloadAsZip"><span class="i18n" data-i18n="MESSAGE/LINK_DOWNLOAD_AS_ZIP"></span></span></span><span data-bind="visible: saveToOwnCloudAllowed"> <i class="icon-remove iconcolor-red" data-bind="visible: saveToOwnCloudError"></i><i class="icon-ok iconcolor-green" data-bind="visible: saveToOwnCloudSuccess"></i><i class="icon-cloud-up" data-bind="visible: !saveToOwnCloudSuccess() && !saveToOwnCloudError(), css: {'icon-cloud-up': !saveToOwnCloudLoading(), 'icon-spinner animated': saveToOwnCloudLoading()}"></i> <span class="g-ui-link" data-bind="click: saveToOwnCloud"><span class="i18n" data-i18n="MESSAGE/LINK_SAVE_TO_CLOUD"></span></span></span><span data-bind="visible: saveToDropboxAllowed"> <i class="icon-remove iconcolor-red" data-bind="visible: saveToDropboxError"></i><i class="icon-ok iconcolor-green" data-bind="visible: saveToDropboxSuccess"></i><i class="icon-dropbox" data-bind="visible: !saveToDropboxSuccess() && !saveToDropboxError(), css: {'icon-dropbox': !saveToDropboxLoading(), 'icon-spinner animated': saveToDropboxLoading()}"></i> <span class="g-ui-link" data-bind="click: saveToDropbox"><span class="i18n" data-i18n="MESSAGE/LINK_SAVE_TO_DROPBOX"></span></span></span><button type="button" class="close" style="margin-right: 5px;" data-bind="click: function () { showAttachmnetControls(false); showAttachmnetControlsState(false); }">×</button></div></div><div class="bodyText g-ui-min-height-300 rl-mv-root" data-bind="initDom: messagesBodiesDom"></div></div></div></div></div></div></div></div></div></div></script><script id="ComposeAttachment" type="text/html" data-cfasync="false"><li class="attachmentItem clearfix" data-bind="attr: { 'title': title }, css: { 'waiting': waiting, 'error': '' !== error() }"><div class="attachmentIconParent pull-left"><div class="iconMain"><i class="attachmentIcon attachmentMainIcon" data-bind="css: iconClass(), visible: !uploading() || 0 === progress()"></i><i class="attachmentIconText attachmentMainIconText" data-bind="text: iconText(), visible: !uploading() || 0 === progress()"></i></div><div class="iconProgress" data-bind="attr: { 'style': progressStyle }, visible: uploading"></div><div class="iconBG" data-bind="text: progressText, visible: uploading"></div></div><div class="attachmentNameParent"><button type="button" class="close pull-right" style="margin-top:-4px;" data-bind="click: cancel">×</button><div style="white-space: nowrap; text-overflow: ellipsis; overflow: hidden;"><span class="attachmentName" data-bind="text: fileName"></span> </div><div><span class="attachmentSize" data-bind="text: friendlySize"></span> </div></div></li></script><script id="SettingsFiltersActionMoveToFolder" type="text/html" data-cfasync="false"><div class="control-group" data-bind="css: {'error': actionValue.error}"><div class="controls"><select class="span3" data-bind="options: $root.folderSelectList, value: $root.selectedFolderValue, optionsText: 'name', optionsValue: 'id', optionsAfterRender: $root.defautOptionsAfterRender"></select></div></div><div class="control-group"><div class="controls"><div data-bind="visible: $root.allowMarkAsRead, component: { name: 'Checkbox', params: { label: 'POPUPS_FILTER/MARK_AS_READ_LABEL', value: actionMarkAsRead } }"></div></div></div></script><script id="Cmd" type="text/html" data-cfasync="false"><div class="rl-cmd" data-bind="css: {opened: opened}, click: function() { focused(true) }"><div class="rl-cmd-wrp"><div class="rl-cmd-history"><div class="rl-cmd-history-data"></div></div><div class="rl-cmd-input-wrp"><div class="rl-cmd-input-helper" data-bind="text: cmdHelper"></div><div class="rl-cmd-input-prefix">#</div><input type="text" class="rl-cmd-input" data-bind="textInput: cmd, hasFocus: focused, onEnter: onEnter, onKeyDown: onKeyDown, onEsc: onEsc, onTab: onTab"/></div></div></div></script><script id="PopupsLanguages" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-languages-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_LANGUAGES/TITLE_LANGUAGES"></span></h3></div><div class="modal-body" style="min-height: 150px;"><div data-bind="foreach: languages"><label class="lang-item" data-tooltip-i18n="off" data-tooltip-join="right" data-bind="click: function () { $root.changeLanguage(key); }, css: {'selected': selected, 'user': user}, tooltip: function () { return $root.languageTooltipName(key); }"><span class="flag-wrapper"><span data-bind="css: 'flag flag-' + key.toLowerCase()" style=""></span></span><span class="lang-name" data-bind="text: fullName"></span><i class="icon-ok pull-right" style="color: green; margin-top: 3px;" data-bind="visible: selected"></i></label></div></div></div></div></script><script id="PopupsWelcomePage" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-welcom-page-content g-ui-user-select-none" data-bind="modal: modalVisibility" style="width: 600px"><div class="modal-body" style="height: 450px; padding: 0"><div data-bind="if: welcomePageURL" style="height: 100%; width: 100%; margin: 0; padding: 0; position: relative"><iframe src="javascript:1;" tabindex="-1" frameborder="0" style="border: none; width: 100%; height: 100%; position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px;" data-bind="attr: {'src': welcomePageURL}"></iframe></div></div><div class="modal-footer"><button class="btn" data-bind="command: cancelCommand, hasFocus: closeFocused"><i class="icon-remove"></i> <span class="i18n" data-i18n="POPUPS_WELCOME_PAGE/BUTTON_CLOSE"></span></button></div></div></div></script><script id="PopupsAsk" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-ask-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-body"><br /><br /><span class="desc-place" data-bind="html: askDesc"></span><br /><br /><br /></div><div class="modal-footer"><button class="btn buttonYes" data-bind="click: yesClick, hasFocus: yesFocus"><i class="icon-ok"></i> <span data-bind="text: yesButton"></span></button><button class="btn buttonNo" data-bind="click: noClick, hasFocus: noFocus"><i class=" icon-remove"></i> <span data-bind="text: noButton"></span></button></div></div></div></div></script><script id="Pagenator" type="text/html" data-cfasync="false"><div class="e-pagenator g-ui-user-select-none" data-bind="foreach: $data"><a class="e-page" data-bind="css: { 'current': current, 'custom': custom }, title: title"><span class="e-page-number" data-bind="text: name"></span></a></div></script><script id="PopupsKeyboardShortcutsHelp" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-shortcuts-content" data-bind="modal: modalVisibility"><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3 class="i18n" data-i18n="SHORTCUTS_HELP/LEGEND_SHORTCUTS_HELP"></h3></div><div class="modal-body"><ul class="nav nav-tabs"><li class="active"><a class="i18n" data-i18n="SHORTCUTS_HELP/TAB_MAILBOX" href="#mailbox-shortcuts-id" data-toggle="tab"></a></li><li><a class="i18n" data-i18n="SHORTCUTS_HELP/TAB_MESSAGE_LIST" href="#message-list-shortcuts-id" data-toggle="tab"></a></li><li><a class="i18n" data-i18n="SHORTCUTS_HELP/TAB_MESSAGE_VIEW" href="#message-view-shortcuts-id" data-toggle="tab"></a></li><li><a class="i18n" data-i18n="SHORTCUTS_HELP/TAB_COMPOSE" href="#compose-shortcuts-id" data-toggle="tab"></a></li></ul><br /><div class="tab-content span8"><div class="tab-pane active" id="mailbox-shortcuts-id"><table class="table table-striped table-bordered"><tbody><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_OPEN_USER_DROPDOWN"></td><td>` (tilde)</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_REPLY"></td><td>R</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_REPLY_ALL"></td><td>A</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_FORWARD"></td><td>F</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_FORWARD_MULTIPLY"></td><td>Shift + F</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_HELP"></td><td>?, Shift + /</td></tr></tbody></table></div><div class="tab-pane" id="message-list-shortcuts-id"><table class="table table-striped table-bordered"><tbody><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_CHECK_ALL"></td><td>Ctrl + A, ⌘ + A</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_ARCHIVE"></td><td>Z</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_DELETE"></td><td>Delete, Shift + Delete, #</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_OPEN_THREAD"></td><td>T</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_MOVE"></td><td>M</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_READ"></td><td>Q</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_UNREAD"></td><td>U</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_IMPORTANT"></td><td>I</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_SEARCH"></td><td>/</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_FULLSCREEN_ENTER"></td><td>Enter</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_VIEW_MESSAGE_ENTER"></td><td>Enter</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_SWITCH_TO_MESSAGE"></td><td>→, Tab</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_SWITCH_TO_FOLDER_LIST"></td><td>←, Shift + Tab</td></tr></tbody></table></div><div class="tab-pane" id="message-view-shortcuts-id"><table class="table table-striped table-bordered"><tbody><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_FULLSCREEN_TOGGLE"></td><td>Enter</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_BLOCKQUOTES_TOGGLE"></td><td>B</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_PRINT"></td><td>Ctrl + P, ⌘ + P</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_EXIT_FULLSCREEN"></td><td>Esc</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_CLOSE_MESSAGE"></td><td>Esc</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_SWITCH_TO_LIST"></td><td>Tab, Shift + Tab, Esc</td></tr></tbody></table></div><div class="tab-pane" id="compose-shortcuts-id"><table class="table table-striped table-bordered"><tbody><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_OPEN_COMPOSE_POPUP"></td><td>W, C</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_OPEN_IDENTITIES_DROPDOWN"></td><td>` (tilde), Ctrl + `, ⌘ + `</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_SAVE_MESSAGE"></td><td>Ctrl + S, ⌘ + S</td></tr><!--<tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_SEND_MESSAGE"></td><td>Ctrl + Enter, ⌘ + Enter</td></tr>--><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_MINIMIZE_COMPOSE_POPUP"></td><td>Esc</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_CLOSE_COMPOSE"></td><td>Shift + Esc</td></tr></tbody></table></div></div></div></div></div></script><script type="text/javascript" data-cfasync="false" src="rainloop/v/1.17.0/static/js/min/boot.min.js?legacy"></script></body></html>
\ No newline at end of file
--- /dev/null
+{"FolderHash":"6dd9fe9fcbc02497721a7bad96b84377","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"0167548d16bea367d2f46175e2eb030e","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"92b40c0820d4b4ecb4125f2929f62c21","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"79411dfab1ae345605abbbebc52a28ff","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"f15a8889d515895b8e174472239f731d","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"5d4addc4a2d82c826f76ad373cbf359c","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"2b7f71a3d3b78b0fb7de7159bf64bb94","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"adc6249f2f551b15003af271b34b883c","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"95c8fb988b03a43b685dc868bb0e29a3","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"277222160b61002bec64b411b16424f6","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"ea1184690bf9ec822eb009bc8e4be252","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"d518afd5a5551d7c7319da6c7368beff","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"2269bc56c269534dd5eab6a9c20738c9","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"8f2721531c2b2812b0e023da977f3f04","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"447d4726b9d517c208803b18b8a3936a","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"31d6c113fea2aea5138724b2a3a935ae","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"1f04a4e7563e74e21200c6c3b314d259","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"774c884ecf0a600d3a6bf2589f340f66","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"44b9bb5da4c617a70384b8cab4888835","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"9ce53f48a33b9947d59124a614b78c0e","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"e40a415468e861aeb5241af80d3823cd","Uids":[39852,39836,39705,39693,39569,39380,39212,39252,39119,39238,39016,38941,38940,39302,38899,38691,38898,39069,38649,38639,39052,38584,38577,38579,38393,38588,38223,38222,38199,38066,38046,38038,38007,38006,37980,38039,37942,37845,38657,37983,38042,37714,37533,37526,37440,37333,37328,37286,37285,37284,37524,37262,38656,37261,37176,37118,37206,37027,38263,37046,36839,38261,38265,36600,38264,37762,37761,37760,37759,37758,36940,36430,36395,36939,36384,36335,36321,37755,36305,36288,37754,36215,36211,36185,36157,36138,36128,36115,38655,36172,36170,36169,36168,36043,36029,36030,37752,35924,35900,35883,35776,38660,35773,36088,35712,35680,39058,39057,39056,35583,38659,38658,35501,35475,35470,35437,36071,35369,35534,35281,35278,37751,35252,35249,35235,35234,35232,35201,35185,35166,35347,35170,35161,35146,36076,35144,35140,35134,35125,35114,35832,35128,35319,35069,35066,35041,35031,35020,34993,35127,34975,34972,34914,34901,35126,34875,34855,34845,34838,34810,34773,34730,34728,34702,34703,34673,35354,34648,35132,34652,34651,34636,34618,34605,34604,34561,34592,34532,34526,34508,34503,34490,37750,37749,34463,34441,34440,34424,34313,34312,34283,34249,34284,34242,34224,34176,34152,34140,34148,34134,34326,34123,34104,34108,34066,34037,34014,34012,33960,33943,33915,33912,33901,33898,33895,34061,33868,34325,33797,33776,33770,33754,33755,33752,34033,33744,33743,33729,33816,33696,33693,33694,33690,33689,33667,33659,33656,33646,33641,33815,33623,33599,33598,33592,33594,33590,33634,33584,33582,33814,33569,33563,33561,33557,33542,33522,33495,33474,33444,33436,33415,33813,33812,33400,33374,33361,33359,33360,33357,33353,33314,33313,33299,33671,33293,33281,33273,33241,33194,33182,33170,33156,33375,33149,33129,33121,33108,33095,33168,33079,33070,33050,33049,33048,33167,33166,33031,33245,33171,34226,32986,32976,32975,32971,32965,32951,33244,33243,32977,32900,32894,32880,33242,32867,32978,32979,32852,33001,32819,33000,32817,32806,32772,32762,32735,32720,33006,32656,32636,32624,32623,32619,32622,32612,32602,32600,32598,32597,32593,32589,32582,32591,32567,32559,32546,32541,32539,32517,32515,32510,32460,32448,32447,32443,32440,32445,32434,32558,32389,32263,32396,32238,32813,32371,32199,32194,32187,32180,32179,32169,32159,32148,32141,32140,32136,32369,32367,32041,32034,32561,32560,31967,31912,31907,31936,31892,31973,31885,31877,31881,31941,31940,31780,31779,31733,31720,32083,31781,32080,31677,31766,31654,31653,31772,31771,31770,31769,31631,31630,31629,31628,31598,31591,31582,31580,31778,31505,31487,31460,31447,31382,31371,31370,32357,30790,30776,30758,30853,30768,30684,30661,30662,30654,30859,30627,30685,30615,30979,30593,30978,30563,30552,30539,30531,30511,30485,30476,30474,30467,30380,30372,30349,30345,30326,30312,30308,30299,30304,30314,30280,30231,30528,30210,30203,30165,30161,30131,30108,30054,30037,30193,30021,30007,29997,29972,30386,29964,29958,29953,29938,29907,29891,29888,29889,30408,29868,30407,29865,30459,29860,30097,29844,29843,29819,29814,29812,30458,29805,29806,29795,30460,29769,29763,29767,29760,29759,29758,30099,29830,29688,29682,29681,29680,29664,29657,29669,29631,29630,29621,29612,29611,29603,32341,29600,29598,29587,29578,29583,29567,29557,29556,29555,29518,29507,29496,29481,29480,29482,29447,30421,29442,30495,29440,29433,29430,29432,29427,29421,29404,29395,29626,29344,30418,29375,30498,29208,29205,29199,30497,30423,30013,30428,30012,29161,29140,30425,30424,30011,29117,29118,29100,29081,29070,29068,29061,29054,29025,28974,28971,28969,28967,28958,28957,30430,28948,28920,30431,30433,30434,28945,28901,28820,28819,28818,28828,28777,28753,28728,28707,28678,28648,28646,28645,30443,28827,28607,28525,28529,28516,28500,28485,28447,28436,30441,32333,30438,30437,28385,30461,28381,28839,30436,28365,28355,28323,28317,28294,28266,28257,30447,28235,28234,28168,28129,28089,28066,28049,28040,28036,27980,28041,27975,27943,27926,28857,27927,27983,27893,27873,27868,28859,27988,28042,27989,27842,27823,27810,27766,27722,27707,27698,27697,27696,27715,27675,28865,27674,27638,27637,27845,27608,27586,27585,27652,27582,27847,27679,27570,27560,27473,27460,27429,27430,27677,27344,27329,27310,27309,27246,27244,27257,27258,27138,27134,27086,27072,27056,27055,27008,27676,26995,26994,26985,26981,26972,26960,27192,26955,26948,26713,26693,26689,26683,26668,26838,26615,26557,26556,26626,26359,26358,26357,26307,26204,32297,26092,27194,27193,25264,33859,33858,33857,25280,23990,34401,34400,34399,21463,20296,20295,20293,20292,20036,19377,19376,31188,31187,31186,34409,31185,34375,31184,31183,34404,34405,30455,14158,12476,14146,34415,34414,34413,11366,11324,11313,11223,30454,27499,27498,9108,30453,30452,6879,6995,6994,33853,33852,5784,27497,33848,33847,33846,33845,33844,33843]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"1735fd6b340eeb73e241ef29ab7ab29a","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"6e976b02547373105b185a43cc8cff46","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"3284d1bb4589806f463fefb9b18159ab","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"818ee069ccd77216e94f1b1d2b756add","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"4c656a5241bc628b57518ecc9b81fbd3","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"fb1deb30902c8c7e19324431b49fc8da","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"ad8ddf05934ba8195832b89a4331bcde","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"92406a9fd30eda3c99aba00361fb3cf0","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"302183a2c6f63a038b7c673586e8565d","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"29de49ab59000bd7c8ae7ebb5da6af01","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"3d6b5e6549d823b45375d5ca9e276384","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"f6a1b724cd20cf8f73aa35ee71efcea6","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"c6403586142ab102bc867070c9743306","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"32aa47cd71639298836a3843d3a5972b","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"8395a52acc57ac282482b2401550bbb1","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"16b1e927cea0294dc4d58a7a6c79f88a","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"238d109676eb98093c0b5c72efd8ece1","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"482ab09e6749d77f8693c7262932e8ef","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"ccf70bb3b8c3538f988c64828649278b","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"83ad3b3f93527c3e76d6319e70256f40","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"4e592faa97f3bc942dc30737019adba9","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"73c4d8da908e53f583b1fbef542867ab","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"20f0715200055ca44fc8d763ba716181","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"103c0de16a297a402794b22255cfe6cc","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"db2d112b4f4c45491a1b458d705bf3e2","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"6493788c56dabef5203368d9bb348058","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"59246a5b7fe69f4cd226d3b290b37b91","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"878a53836c3e60dac5f8261caa580674","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"7c5312b6f6deb5bcd04b55c0a29d9f2b","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"fbe1c7a8a4cdbda2982cbae9ca0530cc","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"6bd85ff6dd315f08dad9119466409859","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"b218700ad794ce595ba4038016280319","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"10e811b37b30a4788da9e0169400d6e4","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"e17e7fab5de99b5aa3c9d592d265da80","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"0c9b73d96fd285e3a8449df83d12cd8e","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"a9f6cf1dc07d07b198f6b6b51d84e723","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"fa2be9d98ff9f60609b77c874f107c04","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"8f04237b91b9e932c34d25ebc8b65827","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"7f6b1f5d849336ef6378a94724dcacfd","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"0ffe4fbe70328dcb1411d50e85e27c5b","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"10ae81da9ea547b190c64201f43b4030","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"7713f6fadb4d188cf338a3b43a9360e0","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"14efe97cd2bd4cb5fae291c306cb7325","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"66818479cea61834f0b46573e75be4bd","Uids":[463,462,461,460,459,458,457,456,455,454,453,452,451,450,449,448,447,446,445,444]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"1da25e5e668b1f266b9150d42e84e2e7","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"791e18055628646d0f4224028b1017fd","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"eecf79afcba3f1c37920fba37d04f36e","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"add96c23e78974abfa617c667fb3b59c","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"c0bf858ad1b450d1e6363a6e26648fbd","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"d3720b8051812fc5aad8a532bc0f7af9","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"9229e42e30ca8a69e0dab63cdf67a214","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"3b648955759b171de48a2769b4ed4542","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"60e0eb29f7941ae419af978757a1309d","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"fb71ee073c64287d3931183366b664dc","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"9e705455eb17ac11c619abaaaa3d459c","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"f3085ea5d76efd64f483f510c313cde7","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"24aba3f39a0cbcde32c544b8d791aae1","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"aa39a7db73cb560225fcd1f877ca7507","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"97c5636d5c113d441e15af36d01f0877","Uids":[1165]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"35c3483c5da6ed3f6aab7c3d545e1890","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"9d04f534d59074d02f80740d277a29b4","Uids":[41032,41021,40994,40992,40936,40905,40828,40724,40723,40661,40616,40563,40556,40409,40399,40321,40225,40224,40120,40012,39937,39861,39785,39713,39692,39575,39574,39573,39570,39509,39435,39091,39064,39054,38806,38385,38343,38280,38260,38249,37830,37516,37515,37511,37509,36996,36642,36608,36564,36556,35733,35569,35552,35544,35494,35476,35475,35474,35473,35447,35446,35445,35319,35259,34849,34550,34430,34389,34390,34198,34195,34041,33997,33980,33937,33812,33810,33808,33798,33757,33724,33697,33585,33506,33493,33185,33150,33084,33053,33051,32968,32920,32874,32855,32820,32809,32803,32780,32686,32644,32616,32558,32557,32554,32461,32460,32405,32365,32219,32218,32173,32146,32141,32102,32007,31969,31939,31912,31861,31844,31841,31832,31825,31820,31784,31781,31774,31765,31745,31720,31730,31719,31690,31686,31624,31528,31501,31323,31259,31227,31027,30948,30946,30891,30656,30322,30242,30241,30162,30055,29966,29903,29679,29628,29578,29497,29390,29265,29161,29158,29127,28833,28557,28375,28330,28326,28325,28284,28244,28105,28103,28073,28061,28052,28049,27966,27766,27765,27726,27664,27614,27249,27135,26970,26847,26800,26668,26665,26654,26630,26572,26543,26542,26489,26432,26430,26391,26385,26263,26026,25975,25934,25838,25832,25806,25786,25784,25779,25766,25753,25739,25633,25431,25323,25128,25129,24989,24988,24867,24671,24643,24599,24579,24578,24554,24552,24371,24345,24343,24340,24339,24338,24335,24337,24329,24323,24197,24174,24171,24164,24016,23987,23935,23932,23931,23898,23876,23828,23735,23732,23731,23730,23729,23662,23660,23657,23628,23620,23599,23534,23517,23494,23488,23482,23479,23464,23463,23462,23461,23458,23459,23456,23447,23444,23434,23431,23423,23417,23400,23359,23233,23185,23182,23183,23181,23172,23126,22976,22975,22974,22858,22854,22808,22789,22753,22751,22734,22723,22645,22522,22520,22467,22433,22374,22024,21957,21948,21841,21832,21809,21800,21777,21513,21269,21235,21218,21207,21199,21200,21092,21086,20935,20933,20907,20893,20864,20857,20847,20812,20690,20658,20637,20605,20604,20555,20551,20505,20492,20464,20444,20439,20436,20388,20380,20372,20368,20351,20348,20340,20335,20314,20105,20104,20101,20076,19990,19987,19984,19899,19768,19765,19755,19720,19713,19684,19681,19649,19638,19624,19613,19611,19596,19603,19579,19578,19572,19562,19553,19547,19493,19485,19351,19343,19322,19311,19305,19300,19217,19197,19164,19133,19056,18969,18921,18788,18767,18755,18753,18737,18677,18589,18584,18527,18519,18423,18422,18403,18402,18375,18310,18243,18180,18169,18064,18028,18026,18007,17989,17949,17925,17916,17890,17871,17855,17815,17714,17693,17681,17645,17621,17619,17534,17533,17525,17522,17520,17518,17516,17502,17498,17497,17427,17408,17374,17356,17351,17350,17296,17294,17293,17286,17235,17206,17207,17180,17153,17038,16965,16938,16936,16893,16775,16755,16754,16752,16749,16717,16700,16689,16670,16557,16551,16526,16494,16471,16465,16451,16440,16439,16427,16407,16366,16342,16335,16318,16316,16315,16308,16305,18610,16283,16236,16231,16217,16197,16168,16163,16141,16140,16135,16130,16128,16112,15999,15981,15964,15908,15907,15905,15892,15887,15859,15845,15842,15819,15798,15741,15740,15734,15728,15711,15705,15645,15634,15621,15506,15379,15360,15336,15335,15228,15227,15225,15222,15217,15123,15114,15098,15097,15079,15078,15077,15076,15074,15071,15066,15063,15041,15034,15031,15030,15025,15016,15014,15010,14941,14845,14844,14832,14827,14823,14759,14757,14737,14733,14732,14688,14666,14665,14652,14648,14647,14646,14614,14563,14548,14547,14527,14526,14506,14505,14466,14450,14443,14429,14362,14335,14310,14285,14258,14253,14248,14234,14185,14151,14137,14112,14107,14106,14097,14093,14076,14015,13990,13979,13947,13857,13848,13769,13623,13577,13560,13543,13539,13534,13530,13508,13497,13496,13495,13489,13460,13435,13431,13365,13363,13283,13274,13256,13255,13251,13220,13216,13211,13192,13169,13164,13146,13131,13130,13129,13127,13125,13092,13091,13082,13081,13072,13071,13047,12921,12765,12746,12742,12732,12730,12726,12713,12710,12607,12604,12602,12537,12536,12474,12423,12403,12398,12393,12392,12391,12388,12381,12375,12361,12358,12356,12354,12342,12334,12328,12319,12318,12303,12279,12278,12268,12266,12259,12255,12254,12243,12193,12191,12153,12136,12120,12114,12104,12098,12094,12085,12084,12069,12066,12064,12059,12057,12054,12053,12027,12002,11992,11991,11953,11949,11927,11923,11895,11894,11893,11892,11886,11881,11829,11827,11826,11809,11800,11795,11793,11791,11790,11715,11711,11686,11658,11653,11630,11627,11625,11614,11584,11583,11570,11566,11534,11491,11443,11432,11414,11391,11387,11363,11331,11328,11323,11284,11266,11262,11220,11215,11214,11210,11200,11187,11137,11136,11085,11012,10974,10874,10788,10787,18622,10780,10723,10718,10712,10679,10670,10607,10599,10598,10519,10403,10353,10283,10282,10273,10272,10268,10265,10249,10222,10199,10192,10190,10184,10183,10166,10165,10116,10114,10083,10021,9955,9950,9905,9872,9835,9828,9810,9809,9808,9790,9785,9775,9747,9720,9694,9688,9668,9660,9446,9444,9441,9440,9438,9435,9414,9412,9411,9378,9355,9316,9292,9277,9254,9245,9179,9086,8984,8972,8934,8890,8871,8859,8857,8764,8750,8741,8597,8546,8428,8293,8246,8112,8097,8093,8083,8051,8030,8015,8014,8013,8012,8011,7875,7788,7764,7762,7705,7677,7668,7651,7610,7547,7544,7534,7455,7449,7348,7218,7215,7188,7075,7074,7073,7072,7053,6965,6955,6930,6912,6909,6830,6814,6646,6645,6644,6635,6576,6574,6573,6563,6561,6548,6542,6524,6522,6520,6512,6466,6460,6451,6424,6304,6303,6259,6257,6238,6179,6173,6164,6133,6130,6128,6076,6074,6057,6043,6032,6020,6014,5995,5983,5978,5972,5970,5967,5962,5959,5952,5948,5922,5882,5881,5867,5858,5856,5855,5854,5852,5843,5829,5826,5825,5823,5822,5818,5812,5811,5785,5784,5783,5779,5763,5761,5760,5758,5752,5751,5750,5749,5748,5744,5743,5739,5731,5730,5725,5724,5723,5654,5634,5628,5621,5618,5600,5598,5594,5550,5542,5539,5506,5505,5501,5499,5498,5497,5494,5491,5492,5490,5489,5475,5460,5456,5454,5455,5411,5389,5376,5369,5364,5347,5333,5325,5321,5304,5296,5287,5269,5267,5250,5238,5213,5204,5202,5196,5186,5182,5174,5171,5155,5151,5148,5138,5126,5120,5117,5114,5102,5098,5073,5068,5028,5026,5018,5016,5015,5014,4994,4974,4972,4973,4971,4967,4960,4955,4954,4944,4930,4927,4915,4913,4909,4905,4898,4894,4880,4879,4853,4825,4824,4820,4817,4813,4811,4806,4805,4793,4784,4781,4768,4764,4757,4719,4714,4710,4704,4702,4697,4687,4667,4655,4653,4646,4644,4642,4640,4633,4620,4594,4591,4585,4581,4575,4569,4558,4546,4537,4534,4533,4518,4515,4501,4492,4484,4482,4464,4460,4431,4416,4407,4391,4353,4351,4347,4346,4341,4329,4325,4323,4316,4314,4315,4313,4312,4295,4294,4291,4268,4261,4253,4245,4240,4221,4218,4207,4206,4198,4197,4193,4179,4165,4139,4138,4129,4125,4124,4121,4113,4062,4055,4031,3999,3997,3960,3892,3869,3861,3833,3791,3774,3773,3603,3602,3579,3578,3478,3413,3404,3353,3346,3342,3327,3324,3309,3306,3295,3289,3288,3282,3281,3280,3277,3119,3098,3077,3076,3075,3074,3072,3067,3064,3061,3059,3058,3056,3052,3050,3045,3039,3037,3018,2819,2733,2724,2714,2713,2402,2386,2385,2384,2371,2370,2338,2323,2314,2306,2294,2293,2292,2291,2290,2289,2288,2287,2285,2284,2283,2282,2281,2280,2279,2278,2277,2276,2275,2274,2273,2272,2208,2207,2197,2143,1923,1922,1920,1865,1828,1797,1795,1761,1691,1612,1599,1585,1570,1527,1477,1471,1468,1441,1421,1417,1390,1350,1337,1331,1330,1328,1305,1304,1295,1294,1293,1283,1237,1234,1223,1222,1207,1185,1158,1157,1145,1144,1142,1138,1137,1136,1135,1133,1132,1131,1126,1125,1118,1029,1012,998,989,915,901,878,875,804,783,732,731,727,708,699,698,684,654,648,589,587,575,10,321,320,347,346,318,333,332,330,339,338,337,336,341,342,271,299,272,277,276,275,283,282,306,303,302,281,311,314,312,285,288,287,286,290,309,295,294,292,291,305,298,297,296,317,259,258,260,265,264,268,263,269,262,261,267,266,256,255,254,243,252,253,242,241,251,244,248,247,246,250,240,239,233,211,210,212,236,218,217,216,230,215,214,234,213,220,219,221,227,226,225,232,224,223,222,209,208,207,206,205,204,203,202,201,200,199,196,197,194,195,192,186,185,193,190,189,184,176,182,180,178,177,181,174,173,172,170,169,171,168,167,166,165,164,163,162,161,160,159,158,129,128,131,130,149,152,148,132,133,145,136,135,137,139,141,156,150,140,147,146,143,144,126,125,123,122,120,118,117,116,115,458,564,456,562,454,560,558,556,448,554,446,552,444,550,442,546,438,544,436,542,434,540,432,538,430,536,428,534,426,532,424,530,422,528,420,351,526,418,113,112,111,110,105,104,103,102,100,99,96,94,95,91,90,87,86,83,82,81,80,77,74,71,68,65,64,63,62,59,56,49,48,47]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"cd727cbfb1f85afcda9601fdcfbee1a1","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"6fb5f8547b1742f75b1a56f67f0e08a7","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"8b2369738fb2b758880e950314569c67","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"9ffed8da49980d9878e7d5fc6837b753","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"2ce55367ee340cea5ec8671751cd772e","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"a786e48709f4b048b0b84baf03aa759b","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"9ee092b55d877dea8d8f8cab2036c885","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"5953a4b418b80a3a9bf2372beff690ca","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"42ff695f7b72c6b0cf78adac546b489b","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"3c1fef5aa2fd9241fc032a4cdbc21ed8","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"26821c2a02573d325ee72499abd10a7c","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"fbe1c7a8a4cdbda2982cbae9ca0530cc","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"0b92c6a165ba8857575bb49a9079ce65","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"690a0137323f6cc60f67af00f837bbce","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"da8c15618718e3cf4358019e460a4242","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"a2b891b540fd895c4c1b8da6b2082680","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"437875a5785af5f73b16e27955b82eb0","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"34f7ea00a3139b36d0a75a5c1d7dbd3b","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"ed3f8b2115f50f7230fb65bc893ebce7","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"cbead36570ab68437d9660eebc90ee5c","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"cf007d601cc969e51a0cfdb9e470f8f1","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"815a9e73264dd6ca70409c3f113e3f33","Uids":[6316]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"f88f5c8c880d2bceeff2740610b18d5d","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"494810d7f34f2d3010af92b1bd2b32c8","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"fd99e2dba0577a3094d1821b25d6c8ee","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"d240566d9bf3eb226f62448d4ce16e56","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"ff1cfec4a9d83e3d45303876d93f0662","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"87a281f0fea9a279e0aeecd390cdf8cd","Uids":[37755,37754]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"2eef14b6a0e4c1ca5094483afd991948","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"fed8b4e4ed9056e39f796a7dc2e5530a","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"578007c7d36f40bcbeb4000235ccc56c","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"474dbf0e25d028562696c18a2f677699","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"29db53a0aa101b74119175ebae66a387","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"8fd38e1ec166fc5cce5f22f72cb52b5f","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"79bf858ba69e4233d55bfc48a4c37af7","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"1c2afe449227ed723a2609d4d09420e7","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"07950beee71faade26bd6bd01e687a12","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"61160daf59b9522bed055ce0a9a210f7","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"b38a0c4190afdf4f4f964fdb97aab4eb","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"6f943171c7bd71c7fa7dd7794cfebd9b","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"aeb70811dd66bd676542971489f0001b","Uids":[2241,2240,2239,2238,2237,2236,2235,2234,2233,2232,2231,2230,2229,2228,2227,2226,2225,2224,2223,2222,2221,2220,2219,2218,2217,2216,2215,2214,2213,2212,2211,2210,2209,2208,2207,2206,2205,2204,2203,2202,2201,2200,2199,2198,2197,2196,2195,2194,2193,2192,2191,2190,2189,2188,2187,2186,2185,2184,2183,2182,2181,2180,2179,2178,2177,2176,2175,2174,2173,2172,2171,2170,2169,2168,2167,2166,2165,2164,2163,2162,2161,2160,2159,2158,2157,2156,2155,2154,2153,2152,2151,2150,2149,2148,2147,2146,2145,2144,2143,2142,2141,2140,2139,2138,2137,2136,2135,2134,2133,2132,2131,2130,2129,2128,2126,2127,2125,2124,2123,2122,2121,2120,2119,2118,2117,2116,2115,2114,2113,2112,2111,2110,2109,2108,2107,2106,2105,2104,2103,2102,2101,2100,2099,2098,2097,2096,2095,2094,2093,2092,2091,2090,2089,2088,2087,2086,2085,2084,2083,2082,2081,2080,2079,2078,2077,2076,2075,2074,2073,2072,2071,2070,2069,2068,2067,2066,2065,2064,2063,2062,2061,2060,2059,2058,2056,2055,2054,2053,2052,2051,2050,2049,2048,2047,2045,2044,2043,2042,2041,2040,2039,2038,2037,2036,2035,2034,2033,2032,2031,2030,2029,2028,2027,2026,2025,2024,2023,2022,2021,2020,2019,2018,2017,2016,2015,2014,2013,2012,2011,2009,2008,2007,2006,2005,2004,2003,2002,2001,2000,1999,1998,1997,1996,1995,1994,1993,1992,1991,1990,1989,1988,1987,1971,1970,1969,1968,1961,1962,1958,1946,1945,1944,1943,1942,1941,1940,1939,1938,1937,1936,1935,1934,1933,1932,1931,1930,1929,1928,1927,1926,1924,1923,1922,1921,1920,1919,1918,1917,1916,1915,1914,1913,1912,1911,1910,1909,1908,1907,1906,1905,1904,1903,1902,1901,1900,1899,1898,1897,1896,1895,1894,1893,1892,1891,1890,1889,1888,1887,1886,1885,1884,1883,1882,1881,1880,1879,1878,1877,1876,1875,1874,1873,1872,1871,1870,1869,1868,1867,1866,1865,1864,1863,1862,1861,1860,1859,1858,1857,1856,1855,1854,1853,1852,1851,1850,1849,1848,1847,1846,1845,1844,1843,1842,1841,1840,1839,1838,1837,1836,1835,1834,1833,1832,1831,1830,1829,1828,1827,1826,1825,1824,1823,1822,1821,1820,1819,1818,1817,1816,1815,1814,1813,1812,1811,1810,1809,1808,1807,1806,1805,1804,1803,1802,1801,1800,1799,1798,1797,1796,1795,1794,1793,1792,1791,1790,1789,1788,1787,1786,1785,1784,1783,1782,1781,1780,1779,1778,1777,1776,1775,1774,1773,1772,1771,1770,1769,1768,1767,1766,1765,1764,1763,1762,1761,1760,1759,1757,1756,1755,1753,1754,1752,1751,1750,1749,1748,1747,1746,1745,1744,1743,1742,1741,1740,1739,1738,1737,1736,1735,1734,1733,1725,1724,1723,1722,1721,1720,1707,1706,1705,1704,1703,1702,1701,1700,1699,1698,1697,1696,1695,1694,1693,1692,1691,1690,1689,1688,1687,1686,1685,1684,1683,1682,1681,1680,1679,1678,1677,1676,1675,1674,1671,1670,1669,1667,1666,1665,1664,1663,1662,1661,1660,1659,1658,1657,1656,1655,1654,1653,1652,1651,1650,1649,1648,1647,1646,1645,1644,1643,1642,1641,1640,1639,1638,1637,1636,1635,1634,1633,1632,1631,1630,1629,1628,1627,1626,1625,1624,1623,1622,1621,1620,1619,1618,1617,1616,1615,1614,1613,1612,1611,1610,1609,1608,1607,1606,1605,1604,1603,1602,1601,1600,1599,1598,1597,1596,1595,1594,1593,1592,1591,1590,1589,1588,1587,1586,1585,1584,1583,1582,1581,1580,1579,1578,1577,1576,1575,1574,1573,1572,1571,1570,1569,1568,1567,1566,1565,1564,1563,1562,1561,1560,1559,1558,1557,1556,1555,1554,1553,1552,1551,1550,1549,1548,1547,1546,1545,1544,1543,1542,1541,1540,1539,1538,1537,1536,1535,1534,1533,1532,1531,1530,1529,1528,1527,1526,1525,1524,1523,1522,1521,1520,1519,1518,1517,1516,1515,1514,1513,1512,1511,1510,1509,1508,1507,1506,1505,1504,1503,1502,1501,1500,1499,1498,1497,1496,1495,1494,1492,1493,1491,1490,1489,1488,1487,1486,1485,1484,1483,1482,1481,1480,1479,1478,1477,1476,1475,1474,1473,1472,1471,1470,1469,1468,1467,1466,1465,1464,1463,1462,1461,1460,1459,1456,1455,1454,1453,1452,1451,1450,1449,1448,1445,1444,1443,1442,1441,1440,1439,1438,1437,1436,1435,1434,1433,1432,1431,1430,1429,1428,1427,1426,1425,1424,1423,1422,1421,1420,1419,1418,1417,1416,1410,1408,1407,1406,1405,1403,1402,1401,1400,1398,1397,1396,1395,1394,1393,1392,1391,1390,1389,1388,1387,1386,1385,1384,1383,1381,1380,1378,1377,1376,1375,1374,1373,1372,1371,1370,1369,1368,1367,1366,1365,1364,1363,1362,1361,1360,1359,1358,1357,1356,1355,1354,1353,1352,1351,1350,1349,1348,1347,1346,1345,1344,1343,1342,1341,1340,1339,1338,1337,1336,1335,1334,1333,1332,1331,1330,1329,1328,1327,1326,1325,1324,1323,1322,1321,1320,1319,1318,1317,1314,1313,1312,1311,1310,1309,1308,1307,1306,1305,1304,1303,1302,1301,1300,1297,1296,1295,1294,1293,1292,1291,1289,1288,1287,1286,1285,1284,1283,1282,1281,1280,1279,1278,1277,1276,1275,1274,1273,1272,1271,1269,1268,1267,1266,1265,1264,1263,1262,1261,1260,1256,1255,1254,1253,1252,1251,1250,1249,1248,1247,1246,1245,1244,1243,1242,1241,1240,1239,1237,1236,1235,1234,1233,1232,1231,1230,1229,1228,1227,1226,1225,1224,1223,1222,1221,1215,1214,1213,1212,1211,1210,1208,1207,1206,1205,1204,1202,1200,1199,1198,1197,1196,1195,1194,1193,1192,1191,1190,1189,1188,1187,1186,1185,1184,1183,1182,1181,1180,1179,1178,1177,1176,1175,1174,1173,1172,1171,1170,1169,1168,1167,1166,1165,1164,1163,1162,1161,1160,1159,1158,1157,1156,1155,1154,1153,1152,1151,1150,1149,1148,1147,1146,1145,1144,1143,1142,1141,1140,1139,1138,1137,1136,1135,1134,1133,1132,1131,1130,1129,1128,1127,1126,1125,1124,1123,1122,1121,1120,1119,1118,1117,1116,1115,1114,1113,1112,1111,1110,1109,1108,1107,1106,1105,1104,1103,1102,1101,1100,1099,1098,1097,1096,1095,1094,1093,1092,1091,1090,1089,1088,1087,1086,1085,1084,1083,1082,1081,1080,1079,1078,1077,1076,1075,1074,1073,1072,1071,1070,1069,1068,1067,1066,1064,1062,1061,1060,1059,1058,1057,1056,1055,1054,1053,1052,1051,1049,1048,1047,1046,1045,1044,1042,1041,1040,1039,1038,1037,1036,1035,1034,1033,1032,1031,1030,1029,1028,1027,1026,1025,1024,1023,1022,1021,1020,1019,1018,1017,1016,1015,1014,1013,1012,1011,1010,1009,1008,1007,1006,1005,1004,1003,1002,1001,1000,999,998,997,996,995,994,993,992,991,990,989,987,986,985,984,983,982,981,979,978,977,976,975,966,913,912,911,910,909,908,907,906,905,904,903,902,901,900,899,898,897,896,895,894,893,892,891,890,889,888,887,886,885,884,883,882,881,880,878,877,876,875,874,873,872,871,879,870,869,868,867,866,865,864,863,862,861,860,859,858,857,856,855,854,853,852,851,850,849,848,847,846,844,843,842,841,840,839,838,837,836,835,834,833,832,831,830,829,828,827,826,825,824,823,822,821,820,819,818,817,816,815,814,813,812,811,810,809,808,807,806,805,804,803,802,801,800,799,798,797,796,795,794,793,792,791,790,789,788,787,786,785,783,782,780,779,778,777,776,775,774,773,772,771,770,769,768,767,766,765,764,763,762,761,760,759,755,754,753,752,751,750,749,748,747,746,745,744,743,742,741,740,739,738,737,736,735,734,733,732,731,730,729,728,727,726,725,724,723,722,721,720,719,718,717,716,715,714,713,712,711,710,709,708,707,706,705,704,703,702,701,698,697,696,695,694,693,692,691,690,689,688,687,686,685,684,683,682,681,680,679,678,677,676,675,674,673,672,671,670,669,668,667,666,665,664,663,662,645,644,643,642,641,640,639,638,637,636,635,634,633,632,631,630,629,628,627,626,625,624,623,622,621,620,619,618,617,616,615,614,613,612,611,610,609,608,607,606,605,604,603,602,601,600,599,598,597,596,595,594,593,592,591,590,589,588,587,586,585,584,583,582,581,580,578,579,577,576,575,574,573,572,571,570,569,568,567,566,565,564,563,562,561,560,559,558,557,556,555,554,553,552,551,550,549,548,547,546,545,544,543,542,541,540,539,538,537,536,535,534,533,532,531,530,529,528,527,526,525,524,523,522,521,520,519,518,517,516,515,514,513,512,511,510,509,508,507,506,505,504,503,502,501,500,498,497,496,495,494,493,492,491,490,489,488,485,484,483,482,481,480,479,478,477,476,475,474,473,472,471,470,469,468,467,466,465,464,463,462,461,460,459,458,457,456,455,454,453,452,451,450,449,448,447,446,445,444,443,442,441,440,439,438,437,436,435,433,432,431,430,429,428,427,426,425,424,423,422,421,420,419,418,417,416,415,414,413,412,411,410,409,408,407,406,405,404,403,402,401,400,399,398,397,396,395,394,393,392,391,390,389,388,387,386,385,384,383,382,381,380,379,378,377,376,375,374,373,371,370,369,368,367,366,365,364,363,434,172,158,171,170,157,169,156,168,167,155,154,166,164,163,162,161,160,159,165,132,131,130,144,133,135,134,143,142,145,141,147,140,139,138,146,137,136,153,151,152,148,149,150,129,128,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,95,94,93,92,91,90,89,88,87,86,85,280,362,198,197,196,195,194,193,192,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,83,173,360,79,78,77,356,75,74,73,72,351,70,349,68,347,66,263,64,343,62,341,258,339,58,337,56,335,54,333,52,331,50,329,48,327,46,325,44,323,322,41,320,39,318,37,316,35,314,33,312,31,310,29,308,27,224,25,304,303,22,301,20,299,18,297,16,295,14,293,12,291,10,207,288,7,286,5,284,3,282,199]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"6642d16dbae8c10e9ae4d737d69b0dcf","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"e2e0635892c8f86b9c11a4d969d0b0ea","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"810199efe5c237cc62c472d6e524fb5e","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"489a23d8c1ac9d8f7ce072afc1097c9e","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"f58feab699043250ab0a56fb3c81af3d","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"539d66b119a9fae43dbf9d3847dc2816","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"7de62cf87b943e5a73641e59bc974ace","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"3e26b43a1faf4e80559bf6148488ca44","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"31ba7fb5f5e9920f9164c534e8c44ab3","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"4bea8e4f0f513905168eed515822e73b","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"26f57ec66045cf86b9834d5831f1d959","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"b6e7f9736a610f4d6dda0a1f080b0425","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"dbaa333f5c017f4bb1aaed862d621d53","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"03721a807465896594fb7c2b144f3bd4","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"1f769cbaaca463d5836c34901520c92b","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"752b8a3b17e9eacee7a54c7b734beae4","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"adc6249f2f551b15003af271b34b883c","Uids":[39303,39240,38148,38121,37501,37500,37499,37498,37497,37496,37495,37494,37490,37482,37481,37480,37477,37333,35925,35673,35250,35221,35201,35014,34851,34726,34577,34266,33922,33885,33599,33474,33105,33070,32585,32136,31741,31075,30705,30684,30571,30455,30314,30048,29961,29915,29430,29319,29221,29205,29178,28743,28714,28707,28518,27918,27823,27780,27276,26981,26716,26677,26486]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"02df058738800f038fefc64ed7e5ac1c","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"f6acecd6ad285288a0a873d5aac611b7","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"1be0d657035728149e64fd6c4ed2573a","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"26c1dd8b06fd4a5b57ded7357867e7f2","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"20816b3d424c304e12c9bf0b534fb442","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"f93a811e165976f0508ed37b0526b258","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"a35a622f7d4f5b1cc189a46bc624b7a8","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"4c62bc13bdc24fcf9425d679b0232c7e","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"c16c94470188d5794bac324d9cf39f89","Uids":[39705,34381,33816,33812,33744,33743,33640,33602,33590,33561,33525,33449,33441,33357,33341,33299,33281,33251,33241,33235,33213,33171,33112,33102,33100,33045,32986,32602,32601,32522,32517,32510,32448,32424,32377,32357,32333,32297,32279,32263,32194,32141,31978,31877,31867,31836,31723,31718,31456,31443,31401,31367,31294,31257,31108,31044,31024,31017,30871,30853,30848,30845,30833,30826,30790,30504,30447,30443,30442,30273,30227,30154,30097,30086,30037,29981,29972,29907,29895,29819,29603,29598,29587,29442,29440,29344,29258,29208,29070,29043,29025,28980,28935,28886,28661,28648,28645,28627,28620,28469,28436,28317,28249,28076,28037,27994,27975,27943,27932,27826,27766,27749,27698,27674,27601,27591,27535,27356,27194,27193,26713,26694,25948,11324,11313]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"35c3483c5da6ed3f6aab7c3d545e1890","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"55957abf03118ec75c0d92129c1cd407","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"93fbe18552fc4828a8b3b99f7ce20d44","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"8ef46b17f38682bb322e37c4baf10b90","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"7921257e800bf072c961749709fc59cc","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"6efdbe9f77d98ef80820b79e38edeea7","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"ad601650b5db15795b7592a1d39b5494","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"adc6249f2f551b15003af271b34b883c","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"14965ffe2c11660ac65293022564f017","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"b5dbf12d46fd16cf7f91b3355db5c3f1","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"53bb13a7f2b2cd13232f8a533dc911af","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"a276ccde35aba8d488e47135c3b667d5","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"98e04db5e89cb0ad33375f6c97f5133d","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"7bb9f87b71bd3de719e5a4cb17ed8410","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"d9a877c087b3b7fb5980fb7629db437a","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"2dc17bf12a168dd62ad9c8aa812a7de2","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"ccf70bb3b8c3538f988c64828649278b","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"f88c8e2d37c4cc90c440cca8e193a6aa","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"9b6746052d9285229ab5453fc83cfa31","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"08fa20d56de730be497ae345aca765a6","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"36b2d89ce949156e3c385b99b0a7f905","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"d8f033e7cb539d40be05f509960dfc3e","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"0443b96f1f64e973870c106f54d6e036","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"4840e0bd49a2449ae12c401496555b82","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"5d6d681a8d0872c0bd0c5ef4e96f868c","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"2c82eec6c3f530b66252ed992b8e3ae5","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"f393875cfd8300d91c6ca54e50b8aefa","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"8c9e490e5b863841f55c6ef3c4ee27d8","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"8adef513a997a348808e3fdbeae4b190","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"38dfa1ebef68820e1c87082281e96ef4","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"4c48204e42197cc9b7310963b42941d5","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"66c98a5ff79f20544c382ea04a53adc9","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"49c72f04c24a193ceb2a0092cbb773d8","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"78224dab3e734be638394f2cca779ff1","Uids":[]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"1a7c12dfb69b55a176d6db8b7d962e6e","Uids":[2567,2566,2565,2564,2563,2562,2561,2560,2559,2558,2557,2556,2555,2554,2553,2552,2551,2550,2549,2548,2547,2546,2545,2544,2543,2542,2541,2540,2539,2538,2537,2536,2535,2534,2533,2532,2530,2529,2528,2527,2526,2525,2524,2523,2522,2521,2520,2519,2518,2517,2516,2515,2531,2514,2513,2512,2511,2510,2509,2507,2508,2506,2505,2504,2503]}
\ No newline at end of file
--- /dev/null
+{"FolderHash":"5b01d9475f69cc5b630fd2316bcfef24","Uids":[131,130,129,128,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107]}
\ No newline at end of file
--- /dev/null
+; RainLoop Webmail configuration file\r
+; Please don't add custom parameters here, those will be overwritten
+
+[webmail]
+; Text displayed as page title
+title = "Laktatnebel Webmail"
+
+; Text displayed on startup
+loading_description = "Webmail"
+favicon_url = ""
+
+; Theme used by default
+theme = "SquaresDark"
+
+; Allow theme selection on settings screen
+allow_themes = On
+allow_user_background = On
+
+; Language used by default
+language = "de_DE"
+
+; Admin Panel interface language
+language_admin = "de_DE"
+
+; Allow language selection on settings screen
+allow_languages_on_settings = On
+allow_additional_accounts = On
+allow_additional_identities = On
+
+; Number of messages displayed on page by default
+messages_per_page = 20
+
+; File size limit (MB) for file upload on compose screen
+; 0 for unlimited.
+attachment_size_limit = 32
+
+[interface]
+show_attachment_thumbnail = On
+use_native_scrollbars = Off
+new_move_to_folder_button = On
+
+[branding]
+login_logo = ""
+login_background = ""
+login_desc = ""
+login_css = ""
+user_css = ""
+user_logo = ""
+user_logo_title = ""
+user_logo_message = ""
+user_iframe_message = ""
+welcome_page_url = ""
+welcome_page_display = "none"
+
+[contacts]
+; Enable contacts
+enable = On
+allow_sync = On
+sync_interval = 20
+type = "pgsql"
+pdo_dsn = "pgsql:host=127.0.0.1;port=5432;dbname=rainloop"
+pdo_user = "rainloop"
+pdo_password = "dS7CBpJEs8-9&E_e"
+suggestions_limit = 30
+
+[security]
+; Enable CSRF protection (http://en.wikipedia.org/wiki/Cross-site_request_forgery)
+csrf_protection = On
+custom_server_signature = "RainLoop"
+x_frame_options_header = ""
+x_xss_protection_header = "1; mode=block"
+openpgp = Off
+
+; Login and password for web admin panel
+admin_login = "webmailAdmin"
+admin_password = "$2y$10$jEphx3Qbqgh3hqr1oMOADey9onSGhWE05d9rgD9OEQNOx1npzs/ki"
+
+; Access settings
+allow_admin_panel = On
+allow_two_factor_auth = On
+force_two_factor_auth = Off
+hide_x_mailer_header = Off
+admin_panel_host = ""
+admin_panel_key = "admin"
+content_security_policy = ""
+core_install_access_domain = ""
+
+[ssl]
+; Require verification of SSL certificate used.
+verify_certificate = Off
+
+; Allow self-signed certificates. Requires verify_certificate.
+allow_self_signed = On
+
+; Location of Certificate Authority file on local filesystem (/etc/ssl/certs/ca-certificates.crt)
+cafile = ""
+
+; capath must be a correctly hashed certificate directory. (/etc/ssl/certs/)
+capath = ""
+
+; Location of client certificate file (pem format with private key) on local filesystem
+client_cert = ""
+
+[capa]
+folders = On
+composer = On
+contacts = On
+settings = On
+quota = On
+help = On
+reload = On
+search = On
+search_adv = On
+filters = On
+x-templates = Off
+dangerous_actions = On
+message_actions = On
+messagelist_actions = On
+attachments_actions = On
+
+[login]
+default_domain = ""
+
+; Allow language selection on webmail login screen
+allow_languages_on_login = On
+determine_user_language = On
+determine_user_domain = On
+welcome_page = Off
+hide_submit_button = Off
+forgot_password_link_url = ""
+registration_link_url = ""
+login_lowercase = On
+
+; This option allows webmail to remember the logged in user
+; once they closed the browser window.
+;
+; Values:
+; "DefaultOff" - can be used, disabled by default;
+; "DefaultOn" - can be used, enabled by default;
+; "Unused" - cannot be used
+sign_me_auto = "DefaultOff"
+
+[plugins]
+; Enable plugin support
+enable = Off
+
+; List of enabled plugins
+enabled_list = ""
+
+[defaults]
+; Editor mode used by default (Plain, Html, HtmlForced or PlainForced)
+view_editor_type = "Html"
+
+; layout: 0 - no preview, 1 - side preview, 2 - bottom preview
+view_layout = 1
+view_use_checkboxes = On
+autologout = 30
+show_images = Off
+contacts_autosave = On
+mail_use_threads = Off
+allow_draft_autosave = On
+mail_reply_same_folder = Off
+
+[logs]
+; Enable logging
+enable = Off
+
+; Logs entire request only if error occured (php requred)
+write_on_error_only = Off
+
+; Logs entire request only if php error occured
+write_on_php_error_only = Off
+
+; Logs entire request only if request timeout (in seconds) occured.
+write_on_timeout_only = 0
+
+; Required for development purposes only.
+; Disabling this option is not recommended.
+hide_passwords = On
+time_offset = "0"
+session_filter = ""
+sentry_dsn = ""
+
+; Log filename.
+; For security reasons, some characters are removed from filename.
+; Allows for pattern-based folder creation (see examples below).
+;
+; Patterns:
+; {date:Y-m-d} - Replaced by pattern-based date
+; Detailed info: http://www.php.net/manual/en/function.date.php
+; {user:email} - Replaced by user's email address
+; If user is not logged in, value is set to "unknown"
+; {user:login} - Replaced by user's login (the user part of an email)
+; If user is not logged in, value is set to "unknown"
+; {user:domain} - Replaced by user's domain name (the domain part of an email)
+; If user is not logged in, value is set to "unknown"
+; {user:uid} - Replaced by user's UID regardless of account currently used
+;
+; {user:ip}
+; {request:ip} - Replaced by user's IP address
+;
+; Others:
+; {imap:login} {imap:host} {imap:port}
+; {smtp:login} {smtp:host} {smtp:port}
+;
+; Examples:
+; filename = "log-{date:Y-m-d}.txt"
+; filename = "{date:Y-m-d}/{user:domain}/{user:email}_{user:uid}.log"
+; filename = "{user:email}-{date:Y-m-d}.txt"
+filename = "log-{date:Y-m-d}.txt"
+
+; Enable auth logging in a separate file (for fail2ban)
+auth_logging = Off
+auth_logging_filename = "fail2ban/auth-{date:Y-m-d}.txt"
+auth_logging_format = "[{date:Y-m-d H:i:s}] Auth failed: ip={request:ip} user={imap:login} host={imap:host} port={imap:port}"
+
+[debug]
+; Special option required for development purposes
+enable = Off
+
+[social]
+; Google
+google_enable = Off
+google_enable_auth = Off
+google_enable_auth_gmail = Off
+google_enable_drive = Off
+google_enable_preview = Off
+google_client_id = ""
+google_client_secret = ""
+google_api_key = ""
+
+; Facebook
+fb_enable = Off
+fb_app_id = ""
+fb_app_secret = ""
+
+; Twitter
+twitter_enable = Off
+twitter_consumer_key = ""
+twitter_consumer_secret = ""
+
+; Dropbox
+dropbox_enable = Off
+dropbox_api_key = ""
+
+[cache]
+; The section controls caching of the entire application.
+;
+; Enables caching in the system
+enable = On
+
+; Additional caching key. If changed, cache is purged
+index = "v1"
+
+; Can be: files, APC, memcache, redis (beta)
+fast_cache_driver = "files"
+
+; Additional caching key. If changed, fast cache is purged
+fast_cache_index = "v1"
+
+; Browser-level cache. If enabled, caching is maintainted without using files
+http = On
+
+; Browser-level cache time (seconds, Expires header)
+http_expires = 3600
+
+; Caching message UIDs when searching and sorting (threading)
+server_uids = On
+
+[labs]
+; Experimental settings. Handle with care.
+;
+allow_mobile_version = On
+ignore_folders_subscription = Off
+check_new_password_strength = On
+update_channel = "stable"
+allow_gravatar = On
+allow_prefetch = On
+allow_smart_html_links = On
+cache_system_data = On
+date_from_headers = On
+autocreate_system_folders = On
+allow_message_append = Off
+disable_iconv_if_mbstring_supported = Off
+login_fault_delay = 1
+log_ajax_response_write_limit = 300
+allow_html_editor_source_button = Off
+allow_html_editor_biti_buttons = Off
+allow_ctrl_enter_on_compose = On
+try_to_detect_hidden_images = Off
+hide_dangerous_actions = Off
+use_app_debug_js = Off
+use_mobile_version_for_tablets = Off
+use_app_debug_css = Off
+use_imap_sort = On
+use_imap_force_selection = Off
+use_imap_list_subscribe = On
+use_imap_thread = On
+use_imap_move = Off
+use_imap_expunge_all_on_delete = Off
+imap_forwarded_flag = "$Forwarded"
+imap_read_receipt_flag = "$ReadReceipt"
+imap_body_text_limit = 555000
+imap_message_list_fast_simple_search = On
+imap_message_list_count_limit_trigger = 0
+imap_message_list_date_filter = 0
+imap_message_list_permanent_filter = ""
+imap_message_all_headers = Off
+imap_large_thread_limit = 50
+imap_folder_list_limit = 200
+imap_show_login_alert = On
+imap_use_auth_plain = On
+imap_use_auth_cram_md5 = Off
+smtp_show_server_errors = Off
+smtp_use_auth_plain = On
+smtp_use_auth_cram_md5 = Off
+sieve_allow_raw_script = Off
+sieve_utf8_folder_name = On
+sieve_auth_plain_initial = On
+sieve_allow_fileinto_inbox = Off
+imap_timeout = 300
+smtp_timeout = 60
+sieve_timeout = 10
+domain_list_limit = 99
+mail_func_clear_headers = On
+mail_func_additional_parameters = Off
+favicon_status = On
+folders_spec_limit = 50
+owncloud_save_folder = "Attachments"
+owncloud_suggestions = On
+curl_proxy = ""
+curl_proxy_auth = ""
+in_iframe = Off
+force_https = Off
+custom_login_link = ""
+custom_logout_link = ""
+allow_external_login = Off
+allow_external_sso = Off
+external_sso_key = ""
+http_client_ip_check_proxy = Off
+fast_cache_memcache_host = "127.0.0.1"
+fast_cache_memcache_port = 11211
+fast_cache_redis_host = "127.0.0.1"
+fast_cache_redis_port = 6379
+use_local_proxy_for_external_images = Off
+detect_image_exif_orientation = On
+cookie_default_path = ""
+cookie_default_secure = Off
+check_new_messages = On
+replace_env_in_configuration = ""
+startup_url = ""
+strict_html_parser = Off
+allow_cmd = Off
+dev_email = ""
+dev_password = ""
+
+[version]
+current = "1.17.0"
+saved = "Thu, 08 Aug 2024 15:37:51 +0000"
\ No newline at end of file
--- /dev/null
+imap_host = "imap.anita-ole.de"
+imap_port = 993
+imap_secure = "SSL"
+imap_short_login = Off
+sieve_use = Off
+sieve_allow_raw = Off
+sieve_host = ""
+sieve_port = 4190
+sieve_secure = "None"
+smtp_host = "smtp.anita-ole.de"
+smtp_port = 465
+smtp_secure = "SSL"
+smtp_short_login = Off
+smtp_auth = On
+smtp_php_mail = Off
+white_list = ""
\ No newline at end of file
--- /dev/null
+imap_host = "imap.ina-rosentreter.de"
+imap_port = 993
+imap_secure = "SSL"
+imap_short_login = Off
+sieve_use = Off
+sieve_allow_raw = Off
+sieve_host = ""
+sieve_port = 4190
+sieve_secure = "None"
+smtp_host = "smtp.ina-rosentreter.de"
+smtp_port = 465
+smtp_secure = "SSL"
+smtp_short_login = Off
+smtp_auth = On
+smtp_php_mail = Off
+white_list = ""
\ No newline at end of file
--- /dev/null
+imap_host = "smtp.laktatnebel.de"
+imap_port = 993
+imap_secure = "SSL"
+imap_short_login = Off
+sieve_use = Off
+sieve_allow_raw = Off
+sieve_host = ""
+sieve_port = 4190
+sieve_secure = "None"
+smtp_host = "imap.laktatnebel.de"
+smtp_port = 465
+smtp_secure = "SSL"
+smtp_short_login = Off
+smtp_auth = On
+smtp_php_mail = Off
+white_list = ""
\ No newline at end of file
--- /dev/null
+imap_host = "imap.lasse-gehrmann.de"
+imap_port = 993
+imap_secure = "SSL"
+imap_short_login = Off
+sieve_use = Off
+sieve_allow_raw = Off
+sieve_host = ""
+sieve_port = 4190
+sieve_secure = "None"
+smtp_host = "smtp.lasse-gehrmann.de"
+smtp_port = 465
+smtp_secure = "SSL"
+smtp_short_login = Off
+smtp_auth = On
+smtp_php_mail = Off
+white_list = ""
\ No newline at end of file
--- /dev/null
+imap_host = "imap.matthies-gehrmann.de"
+imap_port = 993
+imap_secure = "SSL"
+imap_short_login = Off
+sieve_use = Off
+sieve_allow_raw = Off
+sieve_host = ""
+sieve_port = 4190
+sieve_secure = "None"
+smtp_host = "smtp.matthies-gehrmann.de"
+smtp_port = 465
+smtp_secure = "SSL"
+smtp_short_login = Off
+smtp_auth = On
+smtp_php_mail = Off
+white_list = ""
\ No newline at end of file
--- /dev/null
+imap_host = "imap.ole-b-rosentreter.de"
+imap_port = 993
+imap_secure = "SSL"
+imap_short_login = Off
+sieve_use = Off
+sieve_allow_raw = Off
+sieve_host = ""
+sieve_port = 4190
+sieve_secure = "None"
+smtp_host = "smtp.ole-b-rosentreter.de"
+smtp_port = 465
+smtp_secure = "SSL"
+smtp_short_login = Off
+smtp_auth = On
+smtp_php_mail = Off
+white_list = ""
\ No newline at end of file
--- /dev/null
+{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
--- /dev/null
+{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
--- /dev/null
+A2i5YbS_mKaT4ifcweMmcgm-9pcpd1OryBFzks17JsSpGqgqkiYnTSIb-XbduGVk2emHKSPslmCIfEWy8-09Js70_Q8MFDiVgmSRPHF_yG-JIESRATQ8DP5Wy9qTl_yedCDm9DI9fc-pSMJ8Kz-4X3WPAaqRLsgxyHPCi-5J1vNR6EGtFfjNV1E1cf1F0LzFDV_HI2QoZx_Q2SB7fMgwDw7lZ27ZJicP7cDjBBaYfrwz2MiKl2mduHuSjZfEmRG0iDX3Txv-km3IiKXmqijiSaqxBe0O_PSKIRndxDJCWutCXCaK3F0tJjgqYgt1FlOvaa6YIXtLg67V1QqMWXWFSBOOKfa5O5tDT6keWYXeI_GtURwrlbXXGqXWday3O4-3xPg0H7aNA-mFN5klGXUJ-G6gSpDJAy7aC6dDFng4jmw6Wt6bdEpnBtE3jrLljRzEe5iIOvZk0mZBN8HjFpr85_wMD4O7F_D_vspgUu1J4uNwt8B7Zxfx8YbmiJTkPoPyzvjO3H1osHL0DBPhxBaJsIm3i17a1GEN4e-6K5A7enubqdSw98gQlyjRZq7YZdehWs8dMOSihHVYVhncbAeQVr7-Gxta_DVP_Y1Wt6wTHRMa275fDwEzI160OZVaEqhvHOmpG48HrYsftD6PEDdi455MChOCIBO06Dd8cAjeybuq2Qr9rXevNlM9SgfC6podea6FVbGt7jA
\ No newline at end of file
--- /dev/null
+[]
\ No newline at end of file
--- /dev/null
+{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder","Theme":"Linen"}
\ No newline at end of file
--- /dev/null
+[{"Id":"","Email":"privat@ina-rosentreter.de","Name":"","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"b1m43pel6629gfyvq5gc7ccbht8iwzhm","Email":"freicha@web.de","Name":"","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"8q75sze3epk37ileb2hx9urw3txa1rcz","Email":"shopping@ina-rosentreter.de","Name":"Ina Rosentreter","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"3unt7pjp8klz4ghc80po7ud5ul9c1l25","Email":"holiday@ina-rosentreter.de","Name":"Ina Rosentreter","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"sqlnrph1dovgc2m888y37q9si8abpcbv","Email":"amazon@ina-rosentreter.de","Name":"Ina Rosentreter","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"veb7o7brwk3x5abvrol0dkj2aubpxuqr","Email":"banking@ina-rosentreter.de","Name":"Ina Rosentreter","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"l24j0rrl2sdy3sg4xj3r6oxwlglzph1b","Email":"sport@ina-rosentreter.de","Name":"Ina Rosentreter","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"92xwigevadaqn55j9rsr11d3w8jkw7cm","Email":"ina.rosentreter@gmail.com","Name":"Ina Rosentreter","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false}]
\ No newline at end of file
--- /dev/null
+{"DesktopNotifications":false,"MPP":100}
\ No newline at end of file
--- /dev/null
+{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
--- /dev/null
+7hNlXRAAe1dRHpbN8-k4-z6a1cp_38ZX_LbyKGRkTMIzhxkNeyIG-8hE-c0ws-qW_C4pOXvKc7cuevcPSvfYRcMAIs_XPRnOmZlryqkv4XppmGI03tMY6K-wJ03JTpt0iIXdwOuN9sFinu11JKQS_8raA6L1Oti3RjwsBsWIcqc
\ No newline at end of file
--- /dev/null
+{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
--- /dev/null
+sICjDF_169giFeC_QYssiK4kHRSR65UzHwwed8_xes9rX8x6EBZtJV_rgqt4JCTAvsDvWpKG0oifdS8QPtdReIDe7wX26bhLnMMzK82t-NC28vhiXHHmXw8BJY8wTbl7h61D6vKSUQ7YxRrQc5p8fN4uJCBJnppYmu7OMuW1txxG7TiHLCl0INAYeZNerCZXTkS7SuZe-EIONRGLmBacuV5PVd5OU6VwqqNT0IMJnAT5O6qQSIcpjNHFyq-OuoZc1JTUSpVSRyVgBhsUhwBMdbuZ_7o_EP6xTY-7KHTebRGOzxc0VtzDl5y0QD1dugVi1XYzKpEwgLNmRT0ik7QyiDA1vCn6QgtuQ80r3v3_W6bQGJwupQ41ZYQoDWtp36Midm7O5VgfKQw2YLrtHzMCXYgzHC9deZX0E8sfXRhFYc-Ja6jaRRl-45SL4DeMS5OzZim5jAksgNlg8A-Tegkyni5D4ucPE8FZONIBvJdqYFH3ZP1q4dTMjJl64cT6dsGtEal7rK6PqVGC4To3ZOyH_d0UBHcY-sdbUHaHUogBQC8wvSgXW5I2UZMJqTPAAQxMl43ztKL0xV0s3pvmUXzkMZEwHWzU1Uml7uEskxSBldXPvdGiKAu_GuSsZ4wnwBCYfQkzaayTv4TU9nB2WIKy94sn3ZgnIECDa3FPlkkI3Ak7Ds5qFAaHh2DXEs2nrZvbuKFmawC7wlRssXjr6fS_wOiSezE
\ No newline at end of file
--- /dev/null
+{"privat@ole-b-rosentreter.de":"OfiSWsg4BbsO_1b7GT68IyV30UyOHgB1neuQcLfJOi_lvRIysd5b21eX09GJSDBhRkObN1kG9E-E4J1jwI9GtAZsofgDxpyHW-29dTutEV93kpM90_ghkwakAehNDadIu4VM9tpG62zLAPx2qNEvpQo7jvbudm3jAwPJD4WRiCri_KxfLmmyfBQVykJO5yyyWJRXw9kCika3SIEKJGwA_WY9USOfU71Xl2Q4XmJAgS-TsHniyYVRHhigTRxNvkJ8iXkVaTGmmyKQ5PvUC7fNMYUUeMlQRHb_szrcs9k9TVVLvOUlUnBHiW33QnS6RWDPd6wXA-DbCp8rrrTWgTiye6Vc2p_68F3QsnRUxRKwOBtThoh8znri45rbLmJRjS9aXHcBzkSUBCfr8oti17tiEV9e2viV0HmuuNQfMcxNLO4","commerce@ole-b-rosentreter.de":"tJ0xG5NopY1zmJlFtjr269xXz5NuqxznJ40aZ2s0HA0SY7xIdls4VxC2CzPwui381sh8Xkq_hOmL8YBxV_H5LiqEktssaNsHUb7Yt9s6bgh5GfGiUW9faxpby5ev5wws_1qntmKpglLEAXBTuZ15lawjKn6LSfdUa1y3-7wy-Ulr1xz_IHbscUBvIw3jWj6U-8NP1aUULNDriy8rnjKHV-BVMc_Gl0OWxKyGkSu5wO0g5VXsPpfFW9fmKMf0oEdavz9GXeEAVM2so9Jk-ZZaUCmws6yBHYAhe8ifW5RNrRk8Zj42i8Ozp2wacBO30wu3H4Wbsff9EAjDPu8O9i_6LJkvox4UFc9wLmmVd_OPbbJnTOOrKNvH4agvR6gVGKfZFlE9iv_msYOGr64LF49gHpPtdxc","sport@ole-b-rosentreter.de":"lyIUZe-p7sxU2V7p3DaqAfBL5JZ6PIgzIijTAsxIMoag_BQuK1tnXI6Xo9wBBVtYk4Z5Q7nffRgpaQPz94r1u5DIJ1qvyVfNtdKzMF6f8fFx41HjcjuonoHfoZOr1hPvQTagOFIPvNmK2TsgIZ4ozef795KfDNdy_Ko__rxiOe4QvZUlm-UH_jgDs8E2QF0Gwgy7w11D2zk1RRcULTfoEaM8vN6DTs7Giqs7eD8RgXZ4fAlx8nKPj91Ry_OKBWJmFNKB7MrKp39X4lCR4WBv_26hCw_BJ0VtSMfcqtSKQjMpeJ835UYgSdLBilB6p604SvgMeqfaC9z4zx6BhHR4SjxWFnz-GTOpLhTwpWCap6T5dDrufn80QBJiitp8xRlY8a-iCZ9FtKrK-5tCEmfx0Q","job@ole-b-rosentreter.de":"21KlC0qJj8GKB3Gzgga_OfbvbIIR2PEI9yiCHxnns8fwzVpnWavUp1D7WluPPzmolXwPrRbhTGrWb8l6W38Or-xf1iPGd2iG5pFnmU0UG6Ge7sEGIBqOrDibZhqU-M7iWkAvWNfC22YxDpr_TxGw59I-IfXCSJMq12QL9gYMXfTrS6IgpPmKVSE0mBsFNwb-xT6O3DY2FllpumhzFK0NNR-wDa6B067ps6hFlJgqwz8AVbkFbOuGQ3FymfJ9y383a6MoHQvo2yLB7hgreWwdqIRFQqWlOs3m1XXu-byTAt8KPcoSvbo0qAFt6vd5kWTIpbx0i9ZsFw4gogJFn9QtWcvXXLfqjy1K86MjYOgcIizcQ158Quct2su8KM43P8mqHfnSaULikcwqtP37","finanzen@ole-b-rosentreter.de":"qfD-1gLcvHjt63jn-eiKu5I0xu1ZmP4lTwj-VN5g41ufij1SZBfszM5UWTCeqv5wCNYj8tHrLQD7pAFnCgaJGbeJMTJw1XVXN8NjjSqFlWZ03vuHRr9ZtKUgEW-cmSkeBqNmleHroD-4RR8XZj8kdEYNown8utmuJwQMqshcN3cx0ygpZY3mmCij3Hkl1KJp2KSXeNuKbuRu58trLicuqpIqarkovdMol6Nh1uQgp_A4K11eiJ_0gRUA_lp7blUsT7LX3tk5xbDYe4ZJ50Ikujv5EUc_s-w0h_UCucQMDuFQ8k2dys07U7wAexd7OlkYmQXkToAKyzSruDXyFR7oUxT5rpx2VbTe2rNJpEubOhAnMSr-9KbhpqOIatiMfCDsUNdb7OJqnPYjl69cBd9M_LMS-o4","freizeit@ole-b-rosentreter.de":"GC0IM62opg3x1plhsMEnRPBU7lyzabHUTVNpkAgaDoCHaTmV7PudLesu_AhnomVikvpKyrRoRt8-Lrokz7BBZkBbMG1LtZT4mC3GDeOoFYokuqKFQmrHVg2ut1ueCnKTWFGiSTJQMz2HhjKuok3rNKU80jan8q-ed375ARa7X06EvrdL55s_M5Z6R1KAl_JsISlxsm_Dh8C3H9-8ySewdNgVVM-XaaadLr6BCnFl9MbgbDwHOKiuSKAeecmUsIDmgDi4ghheAP6ea9HAd4Mexn0mCkPzp1r7hLEImJ4JmdOgOV5DTgYkFPSaHtm5fCeBZ8umH8aig9sdUOIaAlWJA_m7RsIXw-vH_8Dq4DSmOEmmgmmelowqhjaW3Tgv4PbEZXhfCAp7li7O-x2qKFK6IgBsUw8"}
\ No newline at end of file
--- /dev/null
+{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
--- /dev/null
+5T9P958wXzzvH9dkKziBo-ajjWWZu9wpQIqob1dSzStCKUYrsKkTKEVzJYvJHy5wfLzkV03qoNw13iBNG3BcMeW9v6jHvtjXD7bzxpAgMu55l48OKXjj48vWNxa1bllGZI9fpf_4CTJvqFsaBYzs33ZNPrnQaZj6Zd2GFkUN4tG8-D-_wfI_A-4fAmmmj5-M4FOoxg
\ No newline at end of file
--- /dev/null
+{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
--- /dev/null
+{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
--- /dev/null
+{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
--- /dev/null
+{"EditorDefaultType":"Plain","MPP":100,"ContactsAutosave":false,"DesktopNotifications":false}
\ No newline at end of file
--- /dev/null
+{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder","UseThreads":true,"Theme":"SquaresDark"}
\ No newline at end of file
--- /dev/null
+bOG1_hbQyxev3zmyO1CUW7LPa6Ve2Ua5fzwbkSTlF7b3aUxHM5vWlSDKU_w9-kYWtecsFoXWq4iKgjGzlCI46-ytQhoyd_XygWNMUx-DDX6U6khTDijZ6uABbJoqHmfyrCBjVsg8pvjDwNEYH5bG0lIrwAgJ1QAIlk-SfJuGakiH4AtpNSwY5psevls8LXS12x9lYx7_XJn7u2cunZ5OD68LaUsobL5FgT5WLshiZGFi8cF3ZpWynJcyrXHjkCqAynQA9IW5nDkjAe0B4wHyTZ-XejJ5yYWxToOwmtz6u9wGUS3NnKHloaGvC9lCbXQvKLwBrf6tJmPXgK6_e7rcb4VK3Rh00d1Nq6haHXwgcDJ-ZqOuzhg7fmPMbxjEoVLpeBeGU6os2Whre_apYPH1Io0YDVFO5z2zFH1bGKCcJZMkNoz87c4PukDy3ZtgianpSVr1vf2gxSN38P_tzt4A4IUaXJi5KAyrNwGR7RD2Dckue7OQjVjGXEfjx9fRRsTnW0Mvo5dD3M0Xc4i_LwOW_wLdV43JoELQZSY-i2wn-n6Rn8RXIK-y6H9O15ze5gP-UFSC2ybg_W070-DkbrLI0NNHm-4XtFli-2-PtItFsUhsXzKptnpoDKh_fmyCRCAA7gfxEcUuZfnbe6FPc8OuKcZZtALc0N0nkfyiNod1TcSsYLGzR9AqBdkEDXJ2WsiHHFYHnohbD1iU58vFDbVTmxmGD1c
\ No newline at end of file
--- /dev/null
+{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
--- /dev/null
+{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
--- /dev/null
+1725523723,1725555274,1725460489
\ No newline at end of file
--- /dev/null
+Forbidden
\ No newline at end of file
--- /dev/null
+Forbidden
\ No newline at end of file
--- /dev/null
+
+
+# RAINLOOP
+host rainloop rainloop 127.0.0.1/32 md5
+host rainloop rainloop ::1/128 md5
--- /dev/null
+CREATE ROLE rainloop;
+ALTER ROLE rainloop WITH NOSUPERUSER NOINHERIT NOCREATEROLE NOCREATEDB LOGIN NOREPLICATION NOBYPASSRLS PASSWORD 'md56b687e2fb7043085438d99aacf67296c' VALID UNTIL 'infinity';
+
+CREATE DATABASE rainloop WITH TEMPLATE = template0 OWNER = postgres;
+GRANT CONNECT ON DATABASE rainloop TO rainloop;
+
+\connect rainloop
+
+--
+-- PostgreSQL database dump
+--
+
+-- Dumped from database version 9.6.24
+-- Dumped by pg_dump version 9.6.24
+
+SET statement_timeout = 0;
+SET lock_timeout = 0;
+SET idle_in_transaction_session_timeout = 0;
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = on;
+SELECT pg_catalog.set_config('search_path', '', false);
+SET check_function_bodies = false;
+SET xmloption = content;
+SET client_min_messages = warning;
+SET row_security = off;
+
+--
+-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
+--
+
+CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
+
+
+--
+-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
+--
+
+COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
+
+
+--
+-- Name: id_user; Type: SEQUENCE; Schema: public; Owner: rainloop
+--
+
+CREATE SEQUENCE public.id_user
+ START WITH 1
+ INCREMENT BY 1
+ NO MINVALUE
+ NO MAXVALUE
+ CACHE 1;
+
+
+ALTER TABLE public.id_user OWNER TO rainloop;
+
+SET default_tablespace = '';
+
+SET default_with_oids = false;
+
+--
+-- Name: rainloop_ab_contacts; Type: TABLE; Schema: public; Owner: rainloop
+--
+
+CREATE TABLE public.rainloop_ab_contacts (
+ id_contact bigint NOT NULL,
+ id_contact_str character varying(128) DEFAULT ''::character varying NOT NULL,
+ id_user integer NOT NULL,
+ display character varying(255) DEFAULT ''::character varying NOT NULL,
+ changed integer DEFAULT 0 NOT NULL,
+ deleted integer DEFAULT 0 NOT NULL,
+ etag character varying(128) DEFAULT ''::character varying NOT NULL
+);
+
+
+ALTER TABLE public.rainloop_ab_contacts OWNER TO rainloop;
+
+--
+-- Name: rainloop_ab_contacts_id_contact_seq; Type: SEQUENCE; Schema: public; Owner: rainloop
+--
+
+CREATE SEQUENCE public.rainloop_ab_contacts_id_contact_seq
+ START WITH 1
+ INCREMENT BY 1
+ NO MINVALUE
+ NO MAXVALUE
+ CACHE 1;
+
+
+ALTER TABLE public.rainloop_ab_contacts_id_contact_seq OWNER TO rainloop;
+
+--
+-- Name: rainloop_ab_contacts_id_contact_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: rainloop
+--
+
+ALTER SEQUENCE public.rainloop_ab_contacts_id_contact_seq OWNED BY public.rainloop_ab_contacts.id_contact;
+
+
+--
+-- Name: rainloop_ab_properties; Type: TABLE; Schema: public; Owner: rainloop
+--
+
+CREATE TABLE public.rainloop_ab_properties (
+ id_prop bigint NOT NULL,
+ id_contact integer NOT NULL,
+ id_user integer NOT NULL,
+ prop_type integer NOT NULL,
+ prop_type_str character varying(255) DEFAULT ''::character varying NOT NULL,
+ prop_value text DEFAULT ''::text NOT NULL,
+ prop_value_custom text DEFAULT ''::text NOT NULL,
+ prop_frec integer DEFAULT 0 NOT NULL,
+ prop_value_lower text DEFAULT ''::text NOT NULL
+);
+
+
+ALTER TABLE public.rainloop_ab_properties OWNER TO rainloop;
+
+--
+-- Name: rainloop_ab_properties_id_prop_seq; Type: SEQUENCE; Schema: public; Owner: rainloop
+--
+
+CREATE SEQUENCE public.rainloop_ab_properties_id_prop_seq
+ START WITH 1
+ INCREMENT BY 1
+ NO MINVALUE
+ NO MAXVALUE
+ CACHE 1;
+
+
+ALTER TABLE public.rainloop_ab_properties_id_prop_seq OWNER TO rainloop;
+
+--
+-- Name: rainloop_ab_properties_id_prop_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: rainloop
+--
+
+ALTER SEQUENCE public.rainloop_ab_properties_id_prop_seq OWNED BY public.rainloop_ab_properties.id_prop;
+
+
+--
+-- Name: rainloop_system; Type: TABLE; Schema: public; Owner: rainloop
+--
+
+CREATE TABLE public.rainloop_system (
+ sys_name character varying(50) NOT NULL,
+ value_int integer DEFAULT 0 NOT NULL,
+ value_str character varying(128) DEFAULT ''::character varying NOT NULL
+);
+
+
+ALTER TABLE public.rainloop_system OWNER TO rainloop;
+
+--
+-- Name: rainloop_users; Type: TABLE; Schema: public; Owner: rainloop
+--
+
+CREATE TABLE public.rainloop_users (
+ id_user integer DEFAULT nextval(('id_user'::text)::regclass) NOT NULL,
+ rl_email character varying(128) DEFAULT ''::character varying NOT NULL
+);
+
+
+ALTER TABLE public.rainloop_users OWNER TO rainloop;
+
+--
+-- Name: rainloop_ab_contacts id_contact; Type: DEFAULT; Schema: public; Owner: rainloop
+--
+
+ALTER TABLE ONLY public.rainloop_ab_contacts ALTER COLUMN id_contact SET DEFAULT nextval('public.rainloop_ab_contacts_id_contact_seq'::regclass);
+
+
+--
+-- Name: rainloop_ab_properties id_prop; Type: DEFAULT; Schema: public; Owner: rainloop
+--
+
+ALTER TABLE ONLY public.rainloop_ab_properties ALTER COLUMN id_prop SET DEFAULT nextval('public.rainloop_ab_properties_id_prop_seq'::regclass);
+
+
+--
+-- Name: rainloop_ab_contacts rainloop_ab_contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: rainloop
+--
+
+ALTER TABLE ONLY public.rainloop_ab_contacts
+ ADD CONSTRAINT rainloop_ab_contacts_pkey PRIMARY KEY (id_contact);
+
+
+--
+-- Name: rainloop_ab_properties rainloop_ab_properties_pkey; Type: CONSTRAINT; Schema: public; Owner: rainloop
+--
+
+ALTER TABLE ONLY public.rainloop_ab_properties
+ ADD CONSTRAINT rainloop_ab_properties_pkey PRIMARY KEY (id_prop);
+
+
+--
+-- Name: rainloop_users rainloop_users_pkey; Type: CONSTRAINT; Schema: public; Owner: rainloop
+--
+
+ALTER TABLE ONLY public.rainloop_users
+ ADD CONSTRAINT rainloop_users_pkey PRIMARY KEY (id_user);
+
+
+--
+-- Name: id_user_id_contact_rainloop_ab_properties_index; Type: INDEX; Schema: public; Owner: rainloop
+--
+
+CREATE INDEX id_user_id_contact_rainloop_ab_properties_index ON public.rainloop_ab_properties USING btree (id_user, id_contact);
+
+
+--
+-- Name: id_user_rainloop_ab_contacts_index; Type: INDEX; Schema: public; Owner: rainloop
+--
+
+CREATE INDEX id_user_rainloop_ab_contacts_index ON public.rainloop_ab_contacts USING btree (id_user);
+
+
+--
+-- Name: id_user_rainloop_ab_properties_index; Type: INDEX; Schema: public; Owner: rainloop
+--
+
+CREATE INDEX id_user_rainloop_ab_properties_index ON public.rainloop_ab_properties USING btree (id_user);
+
+
+--
+-- Name: rl_email_rainloop_users_index; Type: INDEX; Schema: public; Owner: rainloop
+--
+
+CREATE INDEX rl_email_rainloop_users_index ON public.rainloop_users USING btree (rl_email);
+
+
+--
+-- Name: sys_name_rainloop_system_index; Type: INDEX; Schema: public; Owner: rainloop
+--
+
+CREATE INDEX sys_name_rainloop_system_index ON public.rainloop_system USING btree (sys_name);
+
+
+--
+-- Name: SCHEMA public; Type: ACL; Schema: -; Owner: postgres
+--
+
+GRANT USAGE ON SCHEMA public TO rainloop;
+
+
+--
+-- PostgreSQL database dump complete
+--
+
--- /dev/null
+ALTER TABLE cache_index OWNER TO roundcube;
+ALTER TABLE cache_shared OWNER TO roundcube;
+ALTER TABLE cache_thread OWNER TO roundcube;
+ALTER TABLE collected_addresses OWNER TO roundcube;
+ALTER TABLE contactgroupmembers OWNER TO roundcube;
+ALTER TABLE contactgroups OWNER TO roundcube;
+ALTER TABLE contacts OWNER TO roundcube;
+ALTER TABLE dictionary OWNER TO roundcube;
+ALTER TABLE filestore OWNER TO roundcube;
+ALTER TABLE identities OWNER TO roundcube;
+ALTER TABLE responses OWNER TO roundcube;
+ALTER TABLE searches OWNER TO roundcube;
+ALTER TABLE session OWNER TO roundcube;
+ALTER TABLE system OWNER TO roundcube;
+ALTER TABLE users OWNER TO roundcube;
+
+ALTER SEQUENCE collected_addresses_seq OWNER TO roundcube;
+ALTER SEQUENCE contactgroups_seq OWNER TO roundcube;
+ALTER SEQUENCE contacts_seq OWNER TO roundcube;
+ALTER SEQUENCE filestore_seq OWNER TO roundcube;
+ALTER SEQUENCE identities_seq OWNER TO roundcube;
+ALTER SEQUENCE responses_seq OWNER TO roundcube;
+ALTER SEQUENCE searches_seq OWNER TO roundcube;
+ALTER SEQUENCE users_seq OWNER TO roundcube;
--- /dev/null
+<?php
+
+// ---------------------------------------------------------------------
+// WARNING: Do not edit this file! Copy configuration to config.inc.php.
+// ---------------------------------------------------------------------
+
+/*
+ +-----------------------------------------------------------------------+
+ | Default settings for all configuration options |
+ | |
+ | This file is part of the Roundcube Webmail client |
+ | Copyright (C) The Roundcube Dev Team |
+ | |
+ | Licensed under the GNU General Public License version 3 or |
+ | any later version with exceptions for skins & plugins. |
+ | See the README file for a full license statement. |
+ +-----------------------------------------------------------------------+
+*/
+
+$config = [];
+
+// ----------------------------------
+// SQL DATABASE
+// ----------------------------------
+
+// Database connection string (DSN) for read+write operations
+// Format (compatible with PEAR MDB2): db_provider://user:password@host/database
+// Currently supported db_providers: mysql, pgsql, sqlite, mssql, sqlsrv, oracle
+// For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php
+// Note: for SQLite use absolute path (Linux): 'sqlite:////full/path/to/sqlite.db?mode=0646'
+// or (Windows): 'sqlite:///C:/full/path/to/sqlite.db'
+// Note: Various drivers support various additional arguments for connection,
+// for Mysql: key, cipher, cert, capath, ca, verify_server_cert,
+// for Postgres: application_name, sslmode, sslcert, sslkey, sslrootcert, sslcrl, sslcompression, service.
+// e.g. 'mysql://roundcube:@localhost/roundcubemail?verify_server_cert=false'
+$config['db_dsnw'] = 'pgsql://roundcube:__ROUNDCUBE_PASS__@localhost/roundcube';
+
+// Database DSN for read-only operations (if empty write database will be used)
+// useful for database replication
+$config['db_dsnr'] = '';
+
+// Disable the use of already established dsnw connections for subsequent reads
+$config['db_dsnw_noread'] = false;
+
+// use persistent db-connections
+// beware this will not "always" work as expected
+// see: http://www.php.net/manual/en/features.persistent-connections.php
+$config['db_persistent'] = false;
+
+// you can define specific table (and sequence) names prefix
+$config['db_prefix'] = '';
+
+// Mapping of table names and connections to use for ALL operations.
+// This can be used in a setup with replicated databases and a DB master
+// where read/write access to cache tables should not go to master.
+$config['db_table_dsn'] = [
+// 'cache' => 'r',
+// 'cache_index' => 'r',
+// 'cache_thread' => 'r',
+// 'cache_messages' => 'r',
+];
+
+// It is possible to specify database variable values e.g. some limits here.
+// Use them if your server is not MySQL or for better performance.
+// For example Roundcube uses max_allowed_packet value (in bytes)
+// which limits query size for database cache operations.
+$config['db_max_allowed_packet'] = null;
+
+
+// ----------------------------------
+// LOGGING/DEBUGGING
+// ----------------------------------
+
+// log driver: 'syslog', 'stdout' or 'file'.
+$config['log_driver'] = 'file';
+
+// date format for log entries
+// (read http://php.net/manual/en/function.date.php for all format characters)
+$config['log_date_format'] = 'd-M-Y H:i:s O';
+
+// length of the session ID to prepend each log line with
+// set to 0 to avoid session IDs being logged.
+$config['log_session_id'] = 8;
+
+// Default extension used for log file name
+$config['log_file_ext'] = '.log';
+
+// Syslog ident string to use, if using the 'syslog' log driver.
+$config['syslog_id'] = 'roundcube';
+
+// Syslog facility to use, if using the 'syslog' log driver.
+// For possible values see installer or http://php.net/manual/en/function.openlog.php
+$config['syslog_facility'] = LOG_USER;
+
+// Activate this option if logs should be written to per-user directories.
+// Data will only be logged if a directory <log_dir>/<username>/ exists and is writable.
+$config['per_user_logging'] = false;
+
+// Log sent messages to <log_dir>/sendmail.log or to syslog
+$config['smtp_log'] = false;
+
+// Log successful/failed logins to <log_dir>/userlogins.log or to syslog
+$config['log_logins'] = false;
+
+// Log session debug information/authentication errors to <log_dir>/session.log or to syslog
+$config['session_debug'] = false;
+
+// Log SQL queries to <log_dir>/sql.log or to syslog
+$config['sql_debug'] = false;
+
+// Log IMAP conversation to <log_dir>/imap.log or to syslog
+$config['imap_debug'] = false;
+
+// Log LDAP conversation to <log_dir>/ldap.log or to syslog
+$config['ldap_debug'] = false;
+
+// Log SMTP conversation to <log_dir>/smtp.log or to syslog
+$config['smtp_debug'] = false;
+
+// Log Memcache conversation to <log_dir>/memcache.log or to syslog
+$config['memcache_debug'] = false;
+
+// Log APC conversation to <log_dir>/apc.log or to syslog
+$config['apc_debug'] = false;
+
+// Log Redis conversation to <log_dir>/redis.log or to syslog
+$config['redis_debug'] = false;
+
+
+// ----------------------------------
+// IMAP
+// ----------------------------------
+
+// The IMAP host (and optionally port number) chosen to perform the log-in.
+// Leave blank to show a textbox at login, give a list of hosts
+// to display a pulldown menu or set one host as string.
+// Enter hostname with prefix ssl:// to use Implicit TLS, or use
+// prefix tls:// to use STARTTLS.
+// If port number is omitted it will be set to 993 (for ssl://) or 143 otherwise.
+// Supported replacement variables:
+// %n - hostname ($_SERVER['SERVER_NAME'])
+// %t - hostname without the first part
+// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
+// %s - domain name after the '@' from e-mail address provided at login screen
+// For example %n = mail.domain.tld, %t = domain.tld
+// WARNING: After hostname change update of mail_host column in users table is
+// required to match old user data records with the new host.
+$config['imap_host'] = 'localhost:143';
+
+// IMAP authentication method (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or null).
+// Use 'IMAP' to authenticate with IMAP LOGIN command.
+// By default the most secure method (from supported) will be selected.
+$config['imap_auth_type'] = null;
+
+// IMAP socket context options
+// See http://php.net/manual/en/context.ssl.php
+// The example below enables server certificate validation
+//$config['imap_conn_options'] = [
+// 'ssl' => [
+// 'verify_peer' => true,
+// 'verify_depth' => 3,
+// 'cafile' => '/etc/openssl/certs/ca.crt',
+// ],
+// ];
+// Note: These can be also specified as an array of options indexed by hostname
+$config['imap_conn_options'] = null;
+
+// IMAP connection timeout, in seconds. Default: 0 (use default_socket_timeout)
+$config['imap_timeout'] = 0;
+
+// Optional IMAP authentication identifier to be used as authorization proxy
+$config['imap_auth_cid'] = null;
+
+// Optional IMAP authentication password to be used for imap_auth_cid
+$config['imap_auth_pw'] = null;
+
+// If you know your imap's folder delimiter, you can specify it here.
+// Otherwise it will be determined automatically
+$config['imap_delimiter'] = null;
+
+// If you know your imap's folder vendor, you can specify it here.
+// Otherwise it will be determined automatically. Use lower-case
+// identifiers, e.g. 'dovecot', 'cyrus', 'gimap', 'hmail', 'uw-imap'.
+$config['imap_vendor'] = 'dovecot';
+
+// If IMAP server doesn't support NAMESPACE extension, but you're
+// using shared folders or personal root folder is non-empty, you'll need to
+// set these options. All can be strings or arrays of strings.
+// Note: Folders need to be ended with directory separator, e.g. "INBOX."
+// (special directory "~" is an exception to this rule)
+// Note: These can be used also to overwrite server's namespaces
+// Note: Set these to FALSE to disable access to specified namespace
+$config['imap_ns_personal'] = null;
+$config['imap_ns_other'] = null;
+$config['imap_ns_shared'] = null;
+
+// By default IMAP capabilities are read after connection to IMAP server
+// In some cases, e.g. when using IMAP proxy, there's a need to refresh the list
+// after login. Set to True if you've got this case.
+$config['imap_force_caps'] = false;
+
+// By default list of subscribed folders is determined using LIST-EXTENDED
+// extension if available. Some servers (dovecot 1.x) returns wrong results
+// for shared namespaces in this case. https://github.com/roundcube/roundcubemail/issues/2474
+// Enable this option to force LSUB command usage instead.
+// Deprecated: Use imap_disabled_caps = ['LIST-EXTENDED']
+$config['imap_force_lsub'] = false;
+
+// Some server configurations (e.g. Courier) doesn't list folders in all namespaces
+// Enable this option to force listing of folders in all namespaces
+$config['imap_force_ns'] = false;
+
+// Some servers return hidden folders (name starting with a dot)
+// from user home directory. IMAP RFC does not forbid that.
+// Enable this option to hide them and disable possibility to create such.
+$config['imap_skip_hidden_folders'] = false;
+
+// Some servers do not support folders with both folders and messages inside
+// If your server supports that use true, if it does not, use false.
+// By default it will be determined automatically (once per user session).
+$config['imap_dual_use_folders'] = null;
+
+// List of disabled imap extensions.
+// Use if your IMAP server has broken implementation of some feature
+// and you can't remove it from CAPABILITY string on server-side.
+// For example UW-IMAP server has broken ESEARCH.
+// Note: Because the list is cached, re-login is required after change.
+$config['imap_disabled_caps'] = [];
+
+// Log IMAP session identifiers after each IMAP login.
+// This is used to relate IMAP session with Roundcube user sessions
+$config['imap_log_session'] = false;
+
+// Type of IMAP indexes cache. Supported values: 'db', 'apc' and 'memcache' or 'memcached'.
+$config['imap_cache'] = null;
+
+// Enables messages cache. Only 'db' cache is supported.
+// This requires an IMAP server that supports QRESYNC and CONDSTORE
+// extensions (RFC7162). See synchronize() in program/lib/Roundcube/rcube_imap_cache.php
+// for further info, or if you experience syncing problems.
+$config['messages_cache'] = false;
+
+// Lifetime of IMAP indexes cache. Possible units: s, m, h, d, w
+$config['imap_cache_ttl'] = '10d';
+
+// Lifetime of messages cache. Possible units: s, m, h, d, w
+$config['messages_cache_ttl'] = '10d';
+
+// Maximum cached message size in kilobytes.
+// Note: On MySQL this should be less than (max_allowed_packet - 30%)
+$config['messages_cache_threshold'] = 50;
+
+
+// ----------------------------------
+// SMTP
+// ----------------------------------
+
+// SMTP server host (and optional port number) for sending mails.
+// Enter hostname with prefix ssl:// to use Implicit TLS, or use
+// prefix tls:// to use STARTTLS.
+// If port number is omitted it will be set to 465 (for ssl://) or 587 otherwise.
+// Supported replacement variables:
+// %h - user's IMAP hostname
+// %n - hostname ($_SERVER['SERVER_NAME'])
+// %t - hostname without the first part
+// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
+// %z - IMAP domain (IMAP hostname without the first part)
+// For example %n = mail.domain.tld, %t = domain.tld
+// To specify different SMTP servers for different IMAP hosts provide an array
+// of IMAP host (no prefix or port) and SMTP server e.g. ['imap.example.com' => 'smtp.example.net']
+$config['smtp_host'] = 'localhost:465';
+
+// SMTP username (if required)
+// Note: %u variable will be replaced with current user's username
+$config['smtp_user'] = '%u';
+
+// SMTP password (if required)
+// Note: When set to '%p' current user's password will be used
+$config['smtp_pass'] = '%p';
+
+// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
+// best server supported one)
+$config['smtp_auth_type'] = PLAIN;
+
+// Optional SMTP authentication identifier to be used as authorization proxy
+$config['smtp_auth_cid'] = null;
+
+// Optional SMTP authentication password to be used for smtp_auth_cid
+$config['smtp_auth_pw'] = null;
+
+// Pass the username (XCLIENT LOGIN) to the server
+$config['smtp_xclient_login'] = false;
+
+// Pass the remote IP (XCLIENT ADDR) to the server
+$config['smtp_xclient_addr'] = false;
+
+
+// SMTP HELO host
+// Hostname to give to the remote server for SMTP 'HELO' or 'EHLO' messages
+// Leave this blank and you will get the server variable 'server_name' or
+// localhost if that isn't defined.
+$config['smtp_helo_host'] = '';
+
+// SMTP connection timeout, in seconds. Default: 0 (use default_socket_timeout)
+// Note: There's a known issue where using ssl connection with
+// timeout > 0 causes connection errors (https://bugs.php.net/bug.php?id=54511)
+$config['smtp_timeout'] = 0;
+
+// SMTP socket context options
+// See http://php.net/manual/en/context.ssl.php
+// The example below enables server certificate validation, and
+// requires 'smtp_timeout' to be non zero.
+// $config['smtp_conn_options'] = [
+// 'ssl' => [
+// 'verify_peer' => true,
+// 'verify_depth' => 3,
+// 'cafile' => '/etc/openssl/certs/ca.crt',
+// ],
+// ];
+// Note: These can be also specified as an array of options indexed by hostname
+$config['smtp_conn_options'] = null;
+
+
+// ----------------------------------
+// OAuth
+// ----------------------------------
+
+// Enable OAuth2 by defining a provider. Use 'generic' here
+$config['oauth_provider'] = null;
+
+// Provider name to be displayed on the login button
+$config['oauth_provider_name'] = 'Google';
+
+// Mandatory: OAuth client ID for your Roundcube installation
+$config['oauth_client_id'] = null;
+
+// Mandatory: OAuth client secret
+$config['oauth_client_secret'] = null;
+
+// Mandatory: URI for OAuth user authentication (redirect)
+$config['oauth_auth_uri'] = null;
+
+// Mandatory: Endpoint for OAuth authentication requests (server-to-server)
+$config['oauth_token_uri'] = null;
+
+// Optional: Endpoint to query user identity if not provided in auth response
+$config['oauth_identity_uri'] = null;
+
+// Optional: disable SSL certificate check on HTTP requests to OAuth server
+// See http://docs.guzzlephp.org/en/stable/request-options.html#verify for possible values
+$config['oauth_verify_peer'] = true;
+
+// Mandatory: OAuth scopes to request (space-separated string)
+$config['oauth_scope'] = null;
+
+// Optional: additional query parameters to send with login request (hash array)
+$config['oauth_auth_parameters'] = [];
+
+// Optional: array of field names used to resolve the username within the identity information
+$config['oauth_identity_fields'] = null;
+
+// Boolean: automatically redirect to OAuth login when opening Roundcube without a valid session
+$config['oauth_login_redirect'] = false;
+
+///// Example config for Gmail
+
+// Register your service at https://console.developers.google.com/
+// - use https://<your-roundcube-url>/index.php/login/oauth as redirect URL
+
+// $config['imap_host'] = 'ssl://imap.gmail.com';
+// $config['oauth_provider'] = 'google';
+// $config['oauth_provider_name'] = 'Google';
+// $config['oauth_client_id'] = "<your-credentials-client-id>";
+// $config['oauth_client_secret'] = "<your-credentials-client-secret>";
+// $config['oauth_auth_uri'] = "https://accounts.google.com/o/oauth2/auth";
+// $config['oauth_token_uri'] = "https://oauth2.googleapis.com/token";
+// $config['oauth_identity_uri'] = 'https://www.googleapis.com/oauth2/v1/userinfo';
+// $config['oauth_scope'] = "email profile openid https://mail.google.com/";
+// $config['oauth_auth_parameters'] = ['access_type' => 'offline', 'prompt' => 'consent'];
+
+///// Example config for Outlook.com (Office 365)
+
+// Register your OAuth client at https://portal.azure.com
+// - use https://<your-roundcube-url>/index.php/login/oauth as redirect URL
+// - grant permissions to Microsoft Graph API "IMAP.AccessAsUser.All", "SMTP.Send", "User.Read" and "offline_access"
+
+// $config['imap_host'] = 'ssl://outlook.office365.com';
+// $config['smtp_host'] = 'ssl://smtp.office365.com';
+
+// $config['oauth_provider'] = 'outlook';
+// $config['oauth_provider_name'] = 'Outlook.com';
+// $config['oauth_client_id'] = "<your-credentials-client-id>";
+// $config['oauth_client_secret'] = "<your-credentials-client-secret>";
+// $config['oauth_auth_uri'] = "https://login.microsoftonline.com/common/oauth2/v2.0/authorize";
+// $config['oauth_token_uri'] = "https://login.microsoftonline.com/common/oauth2/v2.0/token";
+// $config['oauth_identity_uri'] = "https://graph.microsoft.com/v1.0/me";
+// $config['oauth_identity_fields'] = ['email', 'userPrincipalName'];
+// $config['oauth_scope'] = "https://outlook.office365.com/IMAP.AccessAsUser.All https://outlook.office365.com/SMTP.Send User.Read offline_access";
+// $config['oauth_auth_parameters'] = ['nonce' => mt_rand()];
+
+// ----------------------------------
+// LDAP
+// ----------------------------------
+
+// Type of LDAP cache. Supported values: 'db', 'apc' and 'memcache' or 'memcached'.
+$config['ldap_cache'] = 'db';
+
+// Lifetime of LDAP cache. Possible units: s, m, h, d, w
+$config['ldap_cache_ttl'] = '10m';
+
+
+// ----------------------------------
+// CACHE(S)
+// ----------------------------------
+
+// Use these hosts for accessing memcached
+// Define any number of hosts in the form of hostname:port or unix:///path/to/socket.file
+// Example: ['localhost:11211', '192.168.1.12:11211', 'unix:///var/tmp/memcached.sock'];
+$config['memcache_hosts'] = null;
+
+// Controls the use of a persistent connections to memcache servers
+// See http://php.net/manual/en/memcache.addserver.php
+$config['memcache_pconnect'] = true;
+
+// Value in seconds which will be used for connecting to the daemon
+// See http://php.net/manual/en/memcache.addserver.php
+$config['memcache_timeout'] = 1;
+
+// Controls how often a failed server will be retried (value in seconds).
+// Setting this parameter to -1 disables automatic retry.
+// See http://php.net/manual/en/memcache.addserver.php
+$config['memcache_retry_interval'] = 15;
+
+// Use these hosts for accessing Redis.
+// Currently only one host is supported. Cluster support may come in a future release.
+// You can pass 4 fields, host, port (optional), database (optional) and password (optional).
+// Unset fields will be set to the default values host=127.0.0.1, port=6379.
+// Examples:
+// ['localhost:6379'];
+// ['192.168.1.1:6379:1:secret'];
+// ['unix:///var/run/redis/redis-server.sock:1:secret'];
+$config['redis_hosts'] = null;
+
+// Maximum size of an object in memcache (in bytes). Default: 2MB
+$config['memcache_max_allowed_packet'] = '2M';
+
+// Maximum size of an object in APC cache (in bytes). Default: 2MB
+$config['apc_max_allowed_packet'] = '2M';
+
+// Maximum size of an object in Redis cache (in bytes). Default: 2MB
+$config['redis_max_allowed_packet'] = '2M';
+
+
+// ----------------------------------
+// SYSTEM
+// ----------------------------------
+
+// THIS OPTION WILL ALLOW THE INSTALLER TO RUN AND CAN EXPOSE SENSITIVE CONFIG DATA.
+// ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING!
+$config['enable_installer'] = false;
+
+// don't allow these settings to be overridden by the user
+$config['dont_override'] = [];
+
+// List of disabled UI elements/actions
+$config['disabled_actions'] = [];
+
+// define which settings should be listed under the 'advanced' block
+// which is hidden by default
+$config['advanced_prefs'] = [];
+
+// provide an URL where a user can get support for this Roundcube installation
+// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
+$config['support_url'] = '';
+
+// Location of the blank (watermark) frame page. By default it is the watermark.html
+// file from the currently selected skin. Prepend name/path with a slash to use
+// current skin folder. Remove the slash to point to a file in the Roundcube
+// root directory. It can be also a full URL.
+$config['blankpage_url'] = '/watermark.html';
+
+// Logo image replacement. Specifies location of the image as:
+// - URL relative to the document root of this Roundcube installation
+// - full URL with http:// or https:// prefix
+// - URL relative to the current skin folder (when starts with a '/')
+//
+// An array can be used to specify different logos for specific template files
+// The array key specifies the place(s) the logo should be applied to and
+// is made up of (up to) 3 parts:
+// - skin name prefix (always with colon, can be replaced with *)
+// - template name (or * for all templates)
+// - logo type - it is used for logos used on multiple templates and the available types include:
+// '[favicon]' for favicon
+// '[print]' for logo on all print templates (e.g. messageprint, contactprint)
+// '[small]' for small screen logo in supported skins
+// '[dark]' and '[small-dark]' for dark mode logo in supported skins
+// '[link]' for adding a URL link to the logo image
+//
+// Example config for skin_logo
+/*
+ [
+ // show the image /images/logo_login_small.png for the Login screen in the Elastic skin on small screens
+ "elastic:login[small]" => "/images/logo_login_small.png",
+ // show the image /images/logo_login.png for the Login screen in the Elastic skin
+ "elastic:login" => "/images/logo_login.png",
+ // add a link to the logo on the Login screen in the Elastic skin
+ "elastic:login[link]" => "https://www.example.com",
+ // add a link to the logo on all screens in the Elastic skin
+ "elastic:*[link]" => "https://www.example.com",
+ // add a link to the logo on all screens for all skins
+ "[link]" => "https://www.example.com",
+ // show the image /images/logo_small.png in the Elastic skin
+ "elastic:*[small]" => "/images/logo_small.png",
+ // show the image /images/larry.png in the Larry skin
+ "larry:*" => "/images/larry.png",
+ // show the image /images/logo_login.png on the login template in all skins
+ "login" => "/images/logo_login.png",
+ // show the image /images/logo_print.png for all print type logos in all skins
+ "[print]" => "/images/logo_print.png",
+ ];
+*/
+$config['skin_logo'] = null;
+
+// Automatically register user in Roundcube database on successful (IMAP) logon.
+// Set to false if only registered users should be allowed to the webmail.
+// Note: If disabled you have to create records in Roundcube users table by yourself.
+// Note: Roundcube does not manage/create users on a mail server.
+$config['auto_create_user'] = true;
+
+// Enables possibility to log in using email address from user identities
+$config['user_aliases'] = false;
+
+// use this folder to store log files
+// must be writeable for the user who runs PHP process (Apache user if mod_php is being used)
+// This is used by the 'file' log driver.
+//$config['log_dir'] = RCUBE_INSTALL_PATH . 'logs/';
+$config['log_dir'] = '/var/log/apache2/roundcube/';
+
+// Location of temporary saved files such as attachments and cache files
+// must be writeable for the user who runs PHP process (Apache user if mod_php is being used)
+$config['temp_dir'] = RCUBE_INSTALL_PATH . 'temp/';
+
+// expire files in temp_dir after 48 hours
+// possible units: s, m, h, d, w
+$config['temp_dir_ttl'] = '48h';
+
+// Enforce connections over https
+// With this option enabled, all non-secure connections will be redirected.
+// It can be also a port number, hostname or hostname:port if they are
+// different than default HTTP_HOST:443
+$config['force_https'] = false;
+
+// tell PHP that it should work as under secure connection
+// even if it doesn't recognize it as secure ($_SERVER['HTTPS'] is not set)
+// e.g. when you're running Roundcube behind a https proxy
+// this option is mutually exclusive to 'force_https' and only either one of them should be set to true.
+$config['use_https'] = false;
+
+// Allow browser-autocompletion on login form.
+// 0 - disabled, 1 - username and host only, 2 - username, host, password
+$config['login_autocomplete'] = 0;
+
+// Forces conversion of logins to lower case.
+// 0 - disabled, 1 - only domain part, 2 - domain and local part.
+// If users authentication is case-insensitive this must be enabled.
+// Note: After enabling it all user records need to be updated, e.g. with query:
+// UPDATE users SET username = LOWER(username);
+$config['login_lc'] = 2;
+
+// Maximum length (in bytes) of logon username and password.
+$config['login_username_maxlen'] = 1024;
+$config['login_password_maxlen'] = 1024;
+
+// Logon username filter. Regular expression for use with preg_match().
+// Use special value 'email' if you accept only full email addresses as user logins.
+// Example: '/^[a-z0-9_@.-]+$/'
+$config['login_username_filter'] = 'email';
+
+// Brute-force attacks prevention.
+// The value specifies maximum number of failed logon attempts per minute.
+$config['login_rate_limit'] = 3;
+
+// Includes should be interpreted as PHP files
+$config['skin_include_php'] = false;
+
+// display product name and software version on login screen
+// 0 - hide product name and version number, 1 - show product name only, 2 - show product name and version number
+$config['display_product_info'] = 1;
+
+// Session lifetime in minutes
+$config['session_lifetime'] = 10;
+
+// Session domain: .example.org
+$config['session_domain'] = '';
+
+// Session name. Default: 'roundcube_sessid'
+$config['session_name'] = null;
+
+// Session authentication cookie name. Default: 'roundcube_sessauth'
+$config['session_auth_name'] = null;
+
+// Session path. Defaults to PHP session.cookie_path setting.
+$config['session_path'] = null;
+
+// Session samesite. Defaults to PHP session.cookie_samesite setting.
+// Requires PHP >= 7.3.0, see https://wiki.php.net/rfc/same-site-cookie for more info
+// Possible values: null (default), 'Lax', or 'Strict'
+$config['session_samesite'] = null;
+
+// Backend to use for session storage. Can either be 'db' (default), 'redis', 'memcache', or 'php'
+//
+// If set to 'memcache' or 'memcached', a list of servers need to be specified in 'memcache_hosts'
+// Make sure the Memcache extension (https://pecl.php.net/package/memcache) version >= 2.0.0
+// or the Memcached extension (https://pecl.php.net/package/memcached) version >= 2.0.0 is installed.
+//
+// If set to 'redis', a server needs to be specified in 'redis_hosts'
+// Make sure the Redis extension (https://pecl.php.net/package/redis) version >= 2.0.0 is installed.
+//
+// Setting this value to 'php' will use the default session save handler configured in PHP
+$config['session_storage'] = 'db';
+
+// List of trusted proxies
+// X_FORWARDED_* and X_REAL_IP headers are only accepted from these IPs
+$config['proxy_whitelist'] = [];
+
+// List of trusted host names
+// Attackers can modify Host header of the HTTP request causing $_SERVER['SERVER_NAME']
+// or $_SERVER['HTTP_HOST'] variables pointing to a different host, that could be used
+// to collect user names and passwords. Some server configurations prevent that, but not all.
+// An empty list accepts any host name. The list can contain host names
+// or PCRE patterns (without // delimiters, that will be added automatically).
+$config['trusted_host_patterns'] = [];
+
+// check client IP in session authorization
+$config['ip_check'] = false;
+
+// X-Frame-Options HTTP header value sent to prevent from Clickjacking.
+// Possible values: sameorigin|deny|allow-from <uri>.
+// Set to false in order to disable sending the header.
+$config['x_frame_options'] = 'sameorigin';
+
+// This key is used for encrypting purposes, like storing of imap password
+// in the session. For historical reasons it's called DES_key, but it's used
+// with any configured cipher_method (see below).
+// For the default cipher_method a required key length is 24 characters.
+$config['des_key'] = 'rcmail-!24ByteDESkey*Str';
+
+// Encryption algorithm. You can use any method supported by OpenSSL.
+// Default is set for backward compatibility to DES-EDE3-CBC,
+// but you can choose e.g. AES-256-CBC which we consider a better choice.
+$config['cipher_method'] = 'DES-EDE3-CBC';
+
+// Automatically add this domain to user names for login
+// Only for IMAP servers that require full e-mail addresses for login
+// Specify an array with 'host' => 'domain' values to support multiple hosts
+// Supported replacement variables:
+// %h - user's IMAP hostname
+// %n - hostname ($_SERVER['SERVER_NAME'])
+// %t - hostname without the first part
+// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
+// %z - IMAP domain (IMAP hostname without the first part)
+// For example %n = mail.domain.tld, %t = domain.tld
+$config['username_domain'] = '';
+
+// Force domain configured in username_domain to be used for login.
+// Any domain in username will be replaced by username_domain.
+$config['username_domain_forced'] = false;
+
+// This domain will be used to form e-mail addresses of new users
+// Specify an array with 'host' => 'domain' values to support multiple hosts
+// Supported replacement variables:
+// %h - user's IMAP hostname
+// %n - http hostname ($_SERVER['SERVER_NAME'])
+// %d - domain (http hostname without the first part)
+// %z - IMAP domain (IMAP hostname without the first part)
+// For example %n = mail.domain.tld, %t = domain.tld
+$config['mail_domain'] = '';
+
+// Password character set, to change the password for user
+// authentication or for password change operations
+$config['password_charset'] = 'UTF-8';
+
+// How many seconds must pass between emails sent by a user
+$config['sendmail_delay'] = 0;
+
+// Message size limit. Note that SMTP server(s) may use a different value.
+// This limit is verified when user attaches files to a composed message.
+// Size in bytes (possible unit suffix: K, M, G)
+$config['max_message_size'] = '100M';
+
+// Maximum number of recipients per message (including To, Cc, Bcc).
+// Default: 0 (no limit)
+$config['max_recipients'] = 0;
+
+// Maximum number of recipients per message excluding Bcc header.
+// This is a soft limit, which means we only display a warning to the user.
+// Default: 5
+$config['max_disclosed_recipients'] = 5;
+
+// Maximum allowed number of members of an address group. Default: 0 (no limit)
+// If 'max_recipients' is set this value should be less or equal
+$config['max_group_members'] = 0;
+
+// Name your service. This is displayed on the login screen and in the window title
+$config['product_name'] = 'Roundcube Webmail /w laktatnebel.de';
+
+// Add this user-agent to message headers when sending. Default: not set.
+$config['useragent'] = null;
+
+// try to load host-specific configuration
+// see https://github.com/roundcube/roundcubemail/wiki/Configuration:-Multi-Domain-Setup
+// for more details
+$config['include_host_config'] =
+false;
+// END_DOMAINLIST
+
+// path to a text file which will be added to each sent message
+// paths are relative to the Roundcube root folder
+$config['generic_message_footer'] = '';
+
+// path to a text file which will be added to each sent HTML message
+// paths are relative to the Roundcube root folder
+$config['generic_message_footer_html'] = '';
+
+// add a received header to outgoing mails containing the creators IP and hostname
+$config['http_received_header'] = false;
+
+// Whether or not to encrypt the IP address and the host name
+// these could, in some circles, be considered as sensitive information;
+// however, for the administrator, these could be invaluable help
+// when tracking down issues.
+$config['http_received_header_encrypt'] = false;
+
+// number of chars allowed for line when wrapping text.
+// text wrapping is done when composing/sending messages
+$config['line_length'] = 72;
+
+// send plaintext messages as format=flowed
+$config['send_format_flowed'] = true;
+
+// According to RFC2298, return receipt envelope sender address must be empty.
+// If this option is true, Roundcube will use user's identity as envelope sender for MDN responses.
+$config['mdn_use_from'] = false;
+
+// Set identities access level:
+// 0 - many identities with possibility to edit all params
+// 1 - many identities with possibility to edit all params but not email address
+// 2 - one identity with possibility to edit all params
+// 3 - one identity with possibility to edit all params but not email address
+// 4 - one identity with possibility to edit only signature
+$config['identities_level'] = 0;
+
+// Maximum size of uploaded image (in kilobytes) for HTML identities.
+// Images (in html signatures) are stored in database as data URIs.
+$config['identity_image_size'] = 64;
+
+// Maximum size of uploaded image (in kilobytes) for HTML responses.
+// Images (in html responses) are stored in database as data URIs.
+$config['response_image_size'] = 64;
+
+// Mimetypes supported by the browser.
+// Attachments of these types will open in a preview window.
+// Either a comma-separated list or an array. Default list includes:
+// text/plain,text/html,
+// image/jpeg,image/gif,image/png,image/bmp,image/tiff,image/webp,
+// application/x-javascript,application/pdf,application/x-shockwave-flash
+$config['client_mimetypes'] = null;
+
+// Path to a local mime magic database file for PHPs finfo extension.
+// Set to null if the default path should be used.
+$config['mime_magic'] = null;
+
+// Absolute path to a local mime.types mapping table file.
+// This is used to derive mime-types from the filename extension or vice versa.
+// Such a file is usually part of the apache webserver. If you don't find a file named mime.types on your system,
+// download it from http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
+$config['mime_types'] = null;
+
+// path to imagemagick identify binary (if not set we'll use Imagick or GD extensions)
+$config['im_identify_path'] = null;
+
+// path to imagemagick convert binary (if not set we'll use Imagick or GD extensions)
+$config['im_convert_path'] = null;
+
+// Size of thumbnails from image attachments displayed below the message content.
+// Note: whether images are displayed at all depends on the 'inline_images' option.
+// Set to 0 to display images in full size.
+$config['image_thumbnail_size'] = 240;
+
+// maximum size of uploaded contact photos in pixel
+$config['contact_photo_size'] = 160;
+
+// Enable DNS checking for e-mail address validation
+$config['email_dns_check'] = false;
+
+// Disables saving sent messages in Sent folder (like gmail) (Default: false)
+// Note: useful when SMTP server stores sent mail in user mailbox
+$config['no_save_sent_messages'] = false;
+
+// Improve system security by using special URL with security token.
+// This can be set to a number defining token length. Default: 16.
+// Warning: This requires http server configuration. Sample:
+// RewriteRule ^/roundcubemail/[a-zA-Z0-9]{16}/(.*) /roundcubemail/$1 [PT]
+// Alias /roundcubemail /var/www/roundcubemail/
+// Warning: This feature does NOT work with request_path = 'SCRIPT_NAME'
+// Note: Use assets_path to not prevent the browser from caching assets
+$config['use_secure_urls'] = false;
+
+// Specifies the full path of the original HTTP request, either as a real path or
+// $_SERVER field name. This might be useful when Roundcube runs behind a reverse
+// proxy using a subpath. This is a path part of the URL, not the full URL!
+// The reverse proxy config can specify a custom header (e.g. X-Forwarded-Path) containing
+// the path under which Roundcube is exposed to the outside world (e.g. /rcube/).
+// This header value is then available in PHP with $_SERVER['HTTP_X_FORWARDED_PATH'].
+// By default the path comes from 'REDIRECT_SCRIPT_URL', 'SCRIPT_NAME' or 'REQUEST_URI',
+// whichever is set (in this order).
+$config['request_path'] = null;
+
+// Allows to define separate server/path for image/js/css files
+// Warning: If the domain is different cross-domain access to some
+// resources need to be allowed
+// Sample:
+// <FilesMatch ".(eot|ttf|woff)">
+// Header set Access-Control-Allow-Origin "*"
+// </FilesMatch>
+$config['assets_path'] = '';
+
+// While assets_path is for the browser, assets_dir informs
+// PHP code about the location of asset files in filesystem
+$config['assets_dir'] = '';
+
+// Options passed when creating Guzzle HTTP client, used to fetch remote content
+// For example:
+// [
+// 'timeout' => 10,
+// 'proxy' => 'tcp://localhost:8125',
+// ]
+$config['http_client'] = [];
+
+// List of supported subject prefixes for a message reply
+// This list is used to clean the subject when replying or sorting messages
+$config['subject_reply_prefixes'] = ['Re:'];
+
+// List of supported subject prefixes for a message forward
+// This list is used to clean the subject when forwarding or sorting messages
+$config['subject_forward_prefixes'] = ['Fwd:', 'Fw:'];
+
+// Prefix to use in subject when replying to a message
+$config['response_prefix'] = 'Re:';
+
+// Prefix to use in subject when forwarding a message
+$config['forward_prefix'] = 'Fwd:';
+
+// ----------------------------------
+// PLUGINS
+// ----------------------------------
+
+// List of active plugins (in plugins/ directory)
+$config['plugins'] = [];
+
+// ----------------------------------
+// USER INTERFACE
+// ----------------------------------
+
+// default messages sort column. Use empty value for default server's sorting,
+// or 'arrival', 'date', 'subject', 'from', 'to', 'fromto', 'size', 'cc'
+$config['message_sort_col'] = '';
+
+// default messages sort order
+$config['message_sort_order'] = 'DESC';
+
+// These cols are shown in the message list. Available cols are:
+// subject, from, to, fromto, cc, replyto, date, size, status, flag, attachment, priority
+$config['list_cols'] = ['subject', 'status', 'fromto', 'date', 'size', 'flag', 'attachment'];
+
+// the default locale setting (leave empty for auto-detection)
+// RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR
+$config['language'] = null;
+
+// use this format for date display (PHP DateTime format)
+$config['date_format'] = 'Y-m-d';
+
+// give this choice of date formats to the user to select from
+// Note: do not use ambiguous formats like m/d/Y
+$config['date_formats'] = ['Y-m-d', 'Y/m/d', 'Y.m.d', 'd-m-Y', 'd/m/Y', 'd.m.Y', 'j.n.Y'];
+
+// use this format for time display (PHP DateTime format)
+$config['time_format'] = 'H:i';
+
+// give this choice of time formats to the user to select from
+$config['time_formats'] = ['G:i', 'H:i', 'g:i a', 'h:i A'];
+
+// use this format for short date display (derived from date_format and time_format)
+$config['date_short'] = 'D H:i';
+
+// use this format for detailed date/time formatting (derived from date_format and time_format)
+$config['date_long'] = 'Y-m-d H:i';
+
+// store draft message is this mailbox
+// leave blank if draft messages should not be stored
+// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
+$config['drafts_mbox'] = 'Drafts';
+
+// store spam messages in this mailbox
+// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
+$config['junk_mbox'] = 'Junk';
+
+// store sent message is this mailbox
+// leave blank if sent messages should not be stored
+// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
+$config['sent_mbox'] = 'Sent';
+
+// move messages to this folder when deleting them
+// leave blank if they should be deleted directly
+// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
+$config['trash_mbox'] = 'Trash';
+
+// automatically create the above listed default folders on user login
+$config['create_default_folders'] = false;
+
+// protect the default folders from renames, deletes, and subscription changes
+$config['protect_default_folders'] = true;
+
+// Disable localization of the default folder names listed above
+$config['show_real_foldernames'] = false;
+
+// if in your system 0 quota means no limit set this option to true
+$config['quota_zero_as_unlimited'] = false;
+
+// Make use of the built-in spell checker.
+$config['enable_spellcheck'] = false;
+
+// Enables spellchecker exceptions dictionary.
+// Setting it to 'shared' will make the dictionary shared by all users.
+$config['spellcheck_dictionary'] = false;
+
+// Set the spell checking engine. Possible values:
+// - 'googie' - the default (also used for connecting to Nox Spell Server, see 'spellcheck_uri' setting)
+// - 'pspell' - requires the PHP Pspell module and aspell installed
+// - 'enchant' - requires the PHP Enchant module
+// - 'atd' - install your own After the Deadline server or check with the people at http://www.afterthedeadline.com before using their API
+// Since Google shut down their public spell checking service, the default settings
+// connect to http://spell.roundcube.net which is a hosted service provided by Roundcube.
+// You can connect to any other googie-compliant service by setting 'spellcheck_uri' accordingly.
+$config['spellcheck_engine'] = 'googie';
+
+// For locally installed Nox Spell Server or After the Deadline services,
+// please specify the URI to call it.
+// Get Nox Spell Server from http://orangoo.com/labs/?page_id=72 or
+// the After the Deadline package from http://www.afterthedeadline.com.
+// Leave empty to use the public API of service.afterthedeadline.com
+$config['spellcheck_uri'] = '';
+
+// These languages can be selected for spell checking.
+// Configure as a PHP style hash array: ['en'=>'English', 'de'=>'Deutsch'];
+// Leave empty for default set of available language.
+$config['spellcheck_languages'] = null;
+
+// Makes that words with all letters capitalized will be ignored (e.g. GOOGLE)
+$config['spellcheck_ignore_caps'] = false;
+
+// Makes that words with numbers will be ignored (e.g. g00gle)
+$config['spellcheck_ignore_nums'] = false;
+
+// Makes that words with symbols will be ignored (e.g. g@@gle)
+$config['spellcheck_ignore_syms'] = false;
+
+// Number of lines at the end of a message considered to contain the signature.
+// Increase this value if signatures are not properly detected and colored
+$config['sig_max_lines'] = 15;
+
+// don't let users set pagesize to more than this value if set
+$config['max_pagesize'] = 200;
+
+// Minimal value of user's 'refresh_interval' setting (in seconds)
+$config['min_refresh_interval'] = 60;
+
+// Specifies for how many seconds the Undo button will be available
+// after object delete action. Currently used with supporting address book sources.
+// Setting it to 0, disables the feature.
+$config['undo_timeout'] = 0;
+
+// A static list of canned responses which are immutable for the user
+$config['compose_responses_static'] = [
+// ['name' => 'Canned Response 1', 'text' => 'Static Response One'],
+// ['name' => 'Canned Response 2', 'text' => 'Static Response Two'],
+];
+
+// List of HKP key servers for PGP public key lookups in Enigma/Mailvelope
+// Note: Lookup is client-side, so the server must support Cross-Origin Resource Sharing
+$config['keyservers'] = ['keys.openpgp.org'];
+
+// Enables use of the Main Keyring in Mailvelope? If disabled, a per-site keyring
+// will be used. This is set to false for backwards compatibility.
+$config['mailvelope_main_keyring'] = false;
+
+// Mailvelope RSA bit size for newly generated keys, either 2048 or 4096.
+// It maybe desirable to use 2048 for sites with many mobile users.
+$config['mailvelope_keysize'] = 4096;
+
+// Html2Text link handling options:
+// 0 - links will be removed
+// 1 - a list of link URLs should be listed at the end of the text (default)
+// 2 - link should be displayed to the original point in the text they appeared
+$config['html2text_links'] = 1;
+
+// Html2Text text width. Maximum width of the formatted text, in columns. Default: 75.
+$config['html2text_width'] = 75;
+
+// ----------------------------------
+// ADDRESSBOOK SETTINGS
+// ----------------------------------
+
+// This indicates which type of address book to use. Possible choices:
+// 'sql' - built-in sql addressbook enabled (default),
+// '' - built-in sql addressbook disabled.
+// Still LDAP or plugin-added addressbooks will be available.
+// BC Note: The value can actually be anything except 'sql', it does not matter.
+$config['address_book_type'] = 'sql';
+
+// In order to enable public ldap search, configure an array like the Verisign
+// example further below. if you would like to test, simply uncomment the example.
+// Array key must contain only safe characters, ie. a-zA-Z0-9_
+$config['ldap_public'] = [];
+
+// If you are going to use LDAP for individual address books, you will need to
+// set 'user_specific' to true and use the variables to generate the appropriate DNs to access it.
+//
+// The recommended directory structure for LDAP is to store all the address book entries
+// under the users main entry, e.g.:
+//
+// o=root
+// ou=people
+// uid=user@domain
+// mail=contact@contactdomain
+//
+// So the base_dn would be uid=%fu,ou=people,o=root
+// The bind_dn would be the same as based_dn or some super user login.
+/*
+ * example config for Verisign directory
+ *
+$config['ldap_public']['Verisign'] = [
+ 'name' => 'Verisign.com',
+ // Replacement variables supported in host names:
+ // %h - user's IMAP hostname
+ // %n - hostname ($_SERVER['SERVER_NAME'])
+ // %t - hostname without the first part
+ // %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
+ // %z - IMAP domain (IMAP hostname without the first part)
+ // For example %n = mail.domain.tld, %t = domain.tld
+ // Note: Host can also be a full URI e.g. ldaps://hostname.local:636 (for SSL)
+ // Note: If port number is omitted, it will be set to 636 (for ldaps://) or 389 otherwise.
+ // Note: To enable TLS use tls:// prefix
+ 'hosts' => array('directory.verisign.com:389'),
+ 'ldap_version' => 3, // using LDAPv3
+ 'network_timeout' => 10, // The timeout (in seconds) for connect + bind attempts. This is only supported in PHP >= 5.3.0 with OpenLDAP 2.x
+ 'user_specific' => false, // If true the base_dn, bind_dn and bind_pass default to the user's IMAP login.
+ // When 'user_specific' is enabled following variables can be used in base_dn/bind_dn config:
+ // %fu - The full username provided, assumes the username is an email
+ // address, uses the username_domain value if not an email address.
+ // %u - The username prior to the '@'.
+ // %d - The domain name after the '@'.
+ // %dc - The domain name hierarchal string e.g. "dc=test,dc=domain,dc=com"
+ // %dn - DN found by ldap search when search_filter/search_base_dn are used
+ 'base_dn' => '',
+ 'bind_dn' => '',
+ 'bind_pass' => '',
+ // It's possible to bind for an individual address book
+ // The login name is used to search for the DN to bind with
+ 'search_base_dn' => '',
+ 'search_filter' => '', // e.g. '(&(objectClass=posixAccount)(uid=%u))'
+ // DN and password to bind as before searching for bind DN, if anonymous search is not allowed
+ 'search_bind_dn' => '',
+ 'search_bind_pw' => '',
+ // Base DN and filter used for resolving the user's domain root DN which feeds the %dc variables
+ // Leave empty to skip this lookup and derive the root DN from the username domain
+ 'domain_base_dn' => '',
+ 'domain_filter' => '',
+ // Optional map of replacement strings => attributes used when binding for an individual address book
+ 'search_bind_attrib' => [], // e.g. ['%udc' => 'ou']
+ // Default for %dn variable if search doesn't return DN value
+ 'search_dn_default' => '',
+ // Optional authentication identifier to be used as SASL authorization proxy
+ // bind_dn need to be empty
+ 'auth_cid' => '',
+ // SASL authentication method (for proxy auth), e.g. DIGEST-MD5
+ 'auth_method' => '',
+ // Indicates if the addressbook shall be hidden from the list.
+ // With this option enabled you can still search/view contacts.
+ 'hidden' => false,
+ // Indicates if the addressbook shall not list contacts but only allows searching.
+ 'searchonly' => false,
+ // Indicates if we can write to the LDAP directory or not.
+ // If writable is true then these fields need to be populated:
+ // LDAP_Object_Classes, required_fields, LDAP_rdn
+ 'writable' => false,
+ // To create a new contact these are the object classes to specify
+ // (or any other classes you wish to use).
+ 'LDAP_Object_Classes' => ['top', 'inetOrgPerson'],
+ // The RDN field that is used for new entries, this field needs
+ // to be one of the search_fields, the base of base_dn is appended
+ // to the RDN to insert into the LDAP directory.
+ 'LDAP_rdn' => 'cn',
+ // The required attributes needed to build a new contact as required by
+ // the object classes (can include additional fields not required by the object classes).
+ 'required_fields' => ['cn', 'sn', 'mail'],
+ // The attributes used when searching with "All fields" option
+ // If empty, attributes for name, surname, firstname and email fields will be used
+ 'search_fields' => ['mail', 'cn'],
+ // mapping of contact fields to directory attributes
+ // 1. for every attribute one can specify the number of values (limit) allowed.
+ // default is 1, a wildcard * means unlimited
+ // 2. another possible parameter is separator character for composite fields
+ // 3. it's possible to define field format for write operations, e.g. for date fields
+ // example: 'birthday:date[YmdHis\\Z]'
+ 'fieldmap' => [
+ // Roundcube => LDAP:limit
+ 'name' => 'cn',
+ 'surname' => 'sn',
+ 'firstname' => 'givenName',
+ 'jobtitle' => 'title',
+ 'email' => 'mail:*',
+ 'phone:home' => 'homePhone',
+ 'phone:work' => 'telephoneNumber',
+ 'phone:mobile' => 'mobile',
+ 'phone:pager' => 'pager',
+ 'phone:workfax' => 'facsimileTelephoneNumber',
+ 'street' => 'street',
+ 'zipcode' => 'postalCode',
+ 'region' => 'st',
+ 'locality' => 'l',
+ // if you country is a complex object, you need to configure 'sub_fields' below
+ 'country' => 'c',
+ 'organization' => 'o',
+ 'department' => 'ou',
+ 'jobtitle' => 'title',
+ 'notes' => 'description',
+ 'photo' => 'jpegPhoto',
+ // these currently don't work:
+ // 'manager' => 'manager',
+ // 'assistant' => 'secretary',
+ ],
+ // Map of contact sub-objects (attribute name => objectClass(es)), e.g. 'c' => 'country'
+ 'sub_fields' => [],
+ // Generate values for the following LDAP attributes automatically when creating a new record
+ 'autovalues' => [
+ // 'uid' => 'md5(microtime())', // You may specify PHP code snippets which are then eval'ed
+ // 'mail' => '{givenname}.{sn}@mydomain.com', // or composite strings with placeholders for existing attributes
+ ],
+ 'sort' => 'cn', // The field to sort the listing by.
+ 'scope' => 'sub', // search mode: sub|base|list
+ 'filter' => '(objectClass=inetOrgPerson)', // used for basic listing (if not empty) and will be &'d with search queries. example: status=act
+ 'fuzzy_search' => true, // server allows wildcard search
+ 'vlv' => false, // Enable Virtual List View to more efficiently fetch paginated data (if server supports it)
+ 'vlv_search' => false, // Use Virtual List View functions for autocompletion searches (if server supports it)
+ 'numsub_filter' => '(objectClass=organizationalUnit)', // with VLV, we also use numSubOrdinates to query the total number of records. Set this filter to get all numSubOrdinates attributes for counting
+ 'config_root_dn' => 'cn=config', // Root DN to search config entries (e.g. vlv indexes)
+ 'sizelimit' => '0', // Enables you to limit the count of entries fetched. Setting this to 0 means no limit.
+ 'timelimit' => '0', // Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit.
+ 'referrals' => false, // Sets the LDAP_OPT_REFERRALS option. Mostly used in multi-domain Active Directory setups
+ 'dereference' => 0, // Sets the LDAP_OPT_DEREF option. One of: LDAP_DEREF_NEVER, LDAP_DEREF_SEARCHING, LDAP_DEREF_FINDING, LDAP_DEREF_ALWAYS
+ // Used where addressbook contains aliases to objects elsewhere in the LDAP tree.
+
+ // definition for contact groups (uncomment if no groups are supported)
+ // for the groups base_dn, the user replacements %fu, %u, %d and %dc work as for base_dn (see above)
+ // if the groups base_dn is empty, the contact base_dn is used for the groups as well
+ // -> in this case, assure that groups and contacts are separated due to the concerning filters!
+ 'groups' => [
+ 'base_dn' => '',
+ 'scope' => 'sub', // Search mode: sub|base|list
+ 'filter' => '(objectClass=groupOfNames)',
+ 'object_classes' => ['top', 'groupOfNames'], // Object classes to be assigned to new groups
+ 'member_attr' => 'member', // Name of the default member attribute, e.g. uniqueMember
+ 'name_attr' => 'cn', // Attribute to be used as group name
+ 'email_attr' => 'mail', // Group email address attribute (e.g. for mailing lists)
+ 'member_filter' => '(objectclass=*)', // Optional filter to use when querying for group members
+ 'vlv' => false, // Use VLV controls to list groups
+ 'class_member_attr' => [ // Mapping of group object class to member attribute used in these objects
+ 'groupofnames' => 'member',
+ 'groupofuniquenames' => 'uniquemember'
+ ],
+ ],
+ // this configuration replaces the regular groups listing in the directory tree with
+ // a hard-coded list of groups, each listing entries with the configured base DN and filter.
+ // if the 'groups' option from above is set, it'll be shown as the first entry with the name 'Groups'
+ 'group_filters' => [
+ 'departments' => [
+ 'name' => 'Company Departments',
+ 'scope' => 'list',
+ 'base_dn' => 'ou=Groups,dc=mydomain,dc=com',
+ 'filter' => '(|(objectclass=groupofuniquenames)(objectclass=groupofurls))',
+ 'name_attr' => 'cn',
+ ],
+ 'customers' => [
+ 'name' => 'Customers',
+ 'scope' => 'sub',
+ 'base_dn' => 'ou=Customers,dc=mydomain,dc=com',
+ 'filter' => '(objectClass=inetOrgPerson)',
+ 'name_attr' => 'sn',
+ ],
+ ],
+];
+*/
+
+// An ordered array of the ids of the addressbooks that should be searched
+// when populating address autocomplete fields server-side. ex: ['sql','Verisign'];
+$config['autocomplete_addressbooks'] = ['sql'];
+
+// The minimum number of characters required to be typed in an autocomplete field
+// before address books will be searched. Most useful for LDAP directories that
+// may need to do lengthy results building given overly-broad searches
+$config['autocomplete_min_length'] = 1;
+
+// Number of parallel autocomplete requests.
+// If there's more than one address book, n parallel (async) requests will be created,
+// where each request will search in one address book. By default (0), all address
+// books are searched in one request.
+$config['autocomplete_threads'] = 0;
+
+// Max. number of entries in autocomplete popup. Default: 15.
+$config['autocomplete_max'] = 15;
+
+// show address fields in this order
+// available placeholders: {street}, {locality}, {zipcode}, {country}, {region}
+$config['address_template'] = '{street}<br/>{locality} {zipcode}<br/>{country} {region}';
+
+// Matching mode for addressbook search (including autocompletion)
+// 0 - partial (*abc*), default
+// 1 - strict (abc)
+// 2 - prefix (abc*)
+// Note: For LDAP sources fuzzy_search must be enabled to use 'partial' or 'prefix' mode
+$config['addressbook_search_mode'] = 0;
+
+// List of fields used on contacts list and for autocompletion searches
+// Warning: These are field names not LDAP attributes (see 'fieldmap' setting)!
+$config['contactlist_fields'] = ['name', 'firstname', 'surname', 'email'];
+
+// Template of contact entry on the autocompletion list.
+// You can use contact fields as: name, email, organization, department, etc.
+// See program/actions/contacts/index.php for a list
+$config['contact_search_name'] = '{name} <{email}>';
+
+// Contact mode. If your contacts are mostly business, switch it to 'business'.
+// This will prioritize form fields related to 'work' (instead of 'home').
+// Default: 'private'.
+$config['contact_form_mode'] = 'private';
+
+// The addressbook source to store automatically collected recipients in.
+// Default: true (the built-in "Collected recipients" addressbook, source id = '1')
+// Note: It can be set to any writeable addressbook, e.g. 'sql'
+$config['collected_recipients'] = true;
+
+// The addressbook source to store trusted senders in.
+// Default: true (the built-in "Trusted senders" addressbook, source id = '2')
+// Note: It can be set to any writeable addressbook, e.g. 'sql'
+$config['collected_senders'] = true;
+
+
+// ----------------------------------
+// USER PREFERENCES
+// ----------------------------------
+
+// Use this charset as fallback for message decoding
+$config['default_charset'] = 'ISO-8859-1';
+
+// Skin name: folder from skins/
+$config['skin'] = 'elastic';
+
+// Limit skins available for the user.
+// Note: When not empty, it should include the default skin set in 'skin' option.
+$config['skins_allowed'] = [];
+
+// Enables using standard browser windows (that can be handled as tabs)
+// instead of popup windows
+$config['standard_windows'] = false;
+
+// show up to X items in messages list view
+$config['mail_pagesize'] = 50;
+
+// show up to X items in contacts list view
+$config['addressbook_pagesize'] = 50;
+
+// sort contacts by this col (preferably either one of name, firstname, surname)
+$config['addressbook_sort_col'] = 'surname';
+
+// The way how contact names are displayed in the list.
+// 0: prefix firstname middlename surname suffix (only if display name is not set)
+// 1: firstname middlename surname
+// 2: surname firstname middlename
+// 3: surname, firstname middlename
+$config['addressbook_name_listing'] = 0;
+
+// use this timezone to display date/time
+// valid timezone identifiers are listed here: php.net/manual/en/timezones.php
+// 'auto' will use the browser's timezone settings
+$config['timezone'] = 'auto';
+
+// prefer displaying HTML messages
+$config['prefer_html'] = true;
+
+// Display remote resources (inline images, styles) in HTML messages. Default: 0.
+// 0 - Never, always ask
+// 1 - Allow from my contacts (all writeable addressbooks + collected senders and recipients)
+// 2 - Always allow
+// 3 - Allow from trusted senders only
+$config['show_images'] = 0;
+
+// open messages in new window
+$config['message_extwin'] = false;
+
+// open message compose form in new window
+$config['compose_extwin'] = false;
+
+// compose html formatted messages by default
+// 0 - never,
+// 1 - always,
+// 2 - on reply to HTML message,
+// 3 - on forward or reply to HTML message
+// 4 - always, except when replying to plain text message
+$config['htmleditor'] = 0;
+
+// save copies of compose messages in the browser's local storage
+// for recovery in case of browser crashes and session timeout.
+$config['compose_save_localstorage'] = true;
+
+// show pretty dates as standard
+$config['prettydate'] = true;
+
+// save compose message every 300 seconds (5min)
+$config['draft_autosave'] = 300;
+
+// Interface layout. Default: 'widescreen'.
+// 'widescreen' - three columns
+// 'desktop' - two columns, preview on bottom
+// 'list' - two columns, no preview
+$config['layout'] = 'widescreen';
+
+// Mark as read when viewing a message (delay in seconds)
+// Set to -1 if messages should not be marked as read
+$config['mail_read_time'] = 0;
+
+// Clear Trash on logout. Remove all messages or only older than N days.
+// Supported values: false, true, 30, 60, 90. Default: false.
+$config['logout_purge'] = false;
+
+// Compact INBOX on logout
+$config['logout_expunge'] = false;
+
+// Display attached images below the message body
+$config['inline_images'] = true;
+
+// Encoding of long/non-ascii attachment names:
+// 0 - Full RFC 2231 compatible
+// 1 - RFC 2047 for 'name' and RFC 2231 for 'filename' parameter (Thunderbird's default)
+// 2 - Full 2047 compatible
+$config['mime_param_folding'] = 1;
+
+// Set true if deleted messages should not be displayed
+// This will make the application run slower
+$config['skip_deleted'] = false;
+
+// Set true to Mark deleted messages as read as well as deleted
+// False means that a message's read status is not affected by marking it as deleted
+$config['read_when_deleted'] = true;
+
+// Set to true to never delete messages immediately
+// Use 'Purge' to remove messages marked as deleted
+$config['flag_for_deletion'] = false;
+
+// Default interval for auto-refresh requests (in seconds)
+// These are requests for system state updates e.g. checking for new messages, etc.
+// Setting it to 0 disables the feature.
+$config['refresh_interval'] = 60;
+
+// If true all folders will be checked for recent messages
+$config['check_all_folders'] = false;
+
+// If true, after message/contact delete/move, the next message/contact will be displayed
+$config['display_next'] = true;
+
+// Default messages listing mode. One of 'threads' or 'list'.
+$config['default_list_mode'] = 'list';
+
+// 0 - Do not expand threads
+// 1 - Expand all threads automatically
+// 2 - Expand only threads with unread messages
+$config['autoexpand_threads'] = 0;
+
+// When replying:
+// -1 - don't cite the original message
+// 0 - place cursor below the original message
+// 1 - place cursor above original message (top posting)
+// 2 - place cursor above original message (top posting), but do not indent the quote
+$config['reply_mode'] = 0;
+
+// When replying strip original signature from message
+$config['strip_existing_sig'] = true;
+
+// Show signature:
+// 0 - Never
+// 1 - Always
+// 2 - New messages only
+// 3 - Forwards and Replies only
+$config['show_sig'] = 1;
+
+// By default the signature is placed depending on cursor position (reply_mode).
+// Sometimes it might be convenient to start the reply on top but keep
+// the signature below the quoted text (sig_below = true).
+$config['sig_below'] = false;
+
+// Enables adding of standard separator to the signature
+$config['sig_separator'] = true;
+
+// Use MIME encoding (quoted-printable) for 8bit characters in message body
+$config['force_7bit'] = false;
+
+// Default fields configuration for mail search.
+// The array can contain a per-folder list of header fields which should be considered when searching
+// The entry with key '*' stands for all folders which do not have a specific list set.
+// Supported fields: subject, from, to, cc, bcc, replyto, followupto, body, text.
+// Please note that folder names should to be in sync with $config['*_mbox'] options
+$config['search_mods'] = null; // Example: ['*' => ['subject'=>1, 'from'=>1], 'Sent' => ['subject'=>1, 'to'=>1]];
+
+// Defaults of the addressbook search field configuration.
+$config['addressbook_search_mods'] = null; // Example: ['name'=>1, 'firstname'=>1, 'surname'=>1, 'email'=>1, '*'=>1];
+
+// Directly delete messages in Junk instead of moving to Trash
+$config['delete_junk'] = false;
+
+// Behavior if a received message requests a message delivery notification (read receipt)
+// 0 = ask the user,
+// 1 = send automatically,
+// 2 = ignore (never send or ask)
+// 3 = send automatically if sender is in my contacts, otherwise ask the user
+// 4 = send automatically if sender is in my contacts, otherwise ignore
+// 5 = send automatically if sender is a trusted sender, otherwise ask the user
+// 6 = send automatically if sender is a trusted sender, otherwise ignore
+$config['mdn_requests'] = 0;
+
+// Return receipt checkbox default state
+$config['mdn_default'] = 0;
+
+// Delivery Status Notification checkbox default state
+$config['dsn_default'] = 0;
+
+// Place replies in the folder of the message being replied to
+$config['reply_same_folder'] = false;
+
+// Sets default mode of Forward feature to "forward as attachment"
+$config['forward_attachment'] = false;
+
+// Defines address book (internal index) to which new contacts will be added
+// By default it is the first writeable addressbook.
+// Note: Use '0' for built-in address book.
+$config['default_addressbook'] = null;
+
+// Enables spell checking before sending a message.
+$config['spellcheck_before_send'] = false;
+
+// Skip alternative email addresses in autocompletion (show one address per contact)
+$config['autocomplete_single'] = false;
+
+// Default font for composed HTML message.
+// Supported values: Andale Mono, Arial, Arial Black, Book Antiqua, Courier New,
+// Georgia, Helvetica, Impact, Tahoma, Terminal, Times New Roman, Trebuchet MS, Verdana
+$config['default_font'] = 'Verdana';
+
+// Default font size for composed HTML message.
+// Supported sizes: 8pt, 10pt, 12pt, 14pt, 18pt, 24pt, 36pt
+$config['default_font_size'] = '10pt';
+
+// Enables display of email address with name instead of a name (and address in title)
+$config['message_show_email'] = false;
+
+// Default behavior of Reply-All button:
+// 0 - Reply-All always
+// 1 - Reply-List if mailing list is detected
+$config['reply_all_mode'] = 0;
--- /dev/null
+
+
+# ROUNDCUBE
+host roundcube roundcube 127.0.0.1/32 md5
+host roundcube roundcube ::1/128 md5
--- /dev/null
+#!/bin/bash
+#######################################
+# mvn clean install fuer alle Projekte
+# VORSICHT: Beruecksichtigt KEINE(!) Abhaengigkeiten, daher wird das lange wiederholt, bis alles passt
+#######################################
+
+# Basis Workingcopy
+BASE_DEV_DIR=$HOME/it/projekte/trunk/
+
+# Arten der Source-Verzeichnisse
+SRC_DIRS=( trunk branches tags )
+
+# Flag, um Eclipse-Projekte anzulegen
+NO_XTRA_MVN_CMD="_"
+XTRA_MVN_CMD="_"
+
+# Sammelvariable, die exit-codes von mvn addiert
+TOTAL_SUCCESS_FLAG=0
+
+# Aktuelles Arbeitsverzeichnis
+PWD=`pwd`
+
+# Ausfuehrungsmethode
+execute() {
+ PROJEKT=`echo $1`
+ printf "\n+------Projekt: -- "$PROJEKT" ----+\n"
+
+ # Für jedes Basis-Verzeichnis
+ #for DIR in "${SRC_DIRS[@]}" ; do
+
+ # In trunk eine Ebene tiefer suchen, in Tags und Branches kommt ja noch der Tag- bzw. Branchname dazu.
+ FINDDEPTH=2
+ if [ $DIR == trunk ] ; then
+ FINDDEPTH=1
+ fi
+
+ printf "find "$BASE_DEV_DIR"/"$PROJEKT"/"$DIR" -maxdepth "$FINDDEPTH" -name pom.xml\n"
+ ANZ_POM=`find $BASE_DEV_DIR/$PROJEKT/$DIR -maxdepth $FINDDEPTH -name pom.xml | wc -l`
+ printf $ANZ_POM" pom.xml gefunden.\n"
+
+ for POM in `find $BASE_DEV_DIR/$PROJEKT/$DIR -maxdepth $FINDDEPTH -name pom.xml` ; do
+
+ printf "=====>\t"$POM"\n"
+
+ PATH_TO_POM_LENGTH=`find $POM -maxdepth $FINDDEPTH -name pom.xml | head -1 | wc -m`
+ #echo $PATH_TO_POM_LENGTH
+ PATH_BUILD_DIR_LENGTH=`expr $PATH_TO_POM_LENGTH - 8`
+ #echo $PATH_BUILD_DIR_LENGTH
+
+ BUILD_DIR=`find $POM -maxdepth $FINDDEPTH -name pom.xml | head -1 | cut -c -$PATH_BUILD_DIR_LENGTH`
+ #echo $BUILD_DIR
+
+ cd $BUILD_DIR
+ pwd
+
+ printf "Maven clean install ....\n"
+ mvn clean install
+
+ TOTAL_SUCCESS_FLAG=`expr $? + $TOTAL_SUCCESS_FLAG`
+
+ if [ $XTRA_MVN_CMD != $NO_XTRA_MVN_CMD ] ; then
+ printf "Maven "$XTRA_MVN_CMD" ....\n"
+ mvn $XTRA_MVN_CMD
+
+ TOTAL_SUCCESS_FLAG=`expr $? + $TOTAL_SUCCESS_FLAG`
+ fi
+ done
+
+ printf "\n"
+ #done
+}
+
+
+echo $#
+
+# Pruefen, ob Übergabeparameter (=Projektname) vorhanden
+if [ $# -ge 3 ] ; then
+ while [ $# -ne 0 ] ; do
+ if [ $1 == -xtramvncmd ] ; then
+ XTRA_MVN_CMD=$2
+ shift
+ shift
+ else
+ XTRA_MVN_CMD=$NO_XTRA_MVN_CMD
+ fi
+
+ # Wenn ja, dann alle Parameter (=Projekte) nacheinander ausfuehren
+ execute $1
+
+ shift
+ done
+else
+ if [ $# -eq 2 ] ; then
+ if [ $1 == -xtramvncmd ] ; then
+ XTRA_MVN_CMD=$2
+ else
+ XTRA_MVN_CMD=$NO_XTRA_MVN_CMD
+ fi
+ fi
+
+ for PROJEKTE in `ls $BASE_DEV_DIR` ; do
+ # Wenn ja, dann alle vorhandenen Projekte ausfuehren
+ if [ $PROJEKTE != scjp ] ; then
+ execute $PROJEKTE
+ fi
+ done
+fi
+
+if [ $TOTAL_SUCCESS_FLAG -ge 1 ] ; then
+ printf $TOTAL_SUCCESS_FLAG" Builds waren NICHT erfolgreich!\n"
+else
+ printf "Alle Builds waren erfolgreich!\n"
+fi
+
+cd $PWD
+
+printf "\nEnde!\n"
+
--- /dev/null
+#!/bin/bash
+#######################################
+# Deployment von statischen/PHP-Webseiten
+#######################################
+
+SVN_BASE_URL=http://svn.obg-it.de/obgit/obgit_repo
+
+TMP_FILE=/tmp/sed.tmp.dat
+
+TOKEN_FILE=deploy.token
+TOKEN_UPLOAD_URL=ole-b-gehrmann.de:/home/oleb/deploy/
+
+PRODUCT_VERSION=$1
+BUGZILLA_TICKET_NR=$2
+BASEDIR=$3
+
+if [ $# -ne 3 -a $# -ne 2 ] ; then
+ printf "\nFehler!\nUsage: deployphp.sh PRODUCT_VERSION BUGZILLA_TICKET_NR [BASEDIR]\n\n"
+ exit 1;
+fi
+
+#######################################
+# Testen, ob das Verzeichnis trunk heißt
+ANZ_PWD=`pwd | wc -m`
+
+ANZ_TEST=`expr $ANZ_PWD - 5`
+NAME_PROJECT=`pwd | cut -c $ANZ_TEST-`
+if [ $NAME_PROJECT != trunk ] ; then
+ echo "Sie sind NICHT im TRUNK-Verzeichnis"
+ exit 1;
+fi
+
+#######################################
+# Projektname
+ANZ_TRUNK=`expr $ANZ_PWD - 7`
+NAME_PROJECT=`pwd | cut -c 24-$ANZ_TRUNK`
+printf "Projektname:\t\t\t$NAME_PROJECT\n"
+
+#######################################
+# Versionierungsinformationen schreiben
+# version
+# datum
+DATE=`date +%Y%m%d-%H%M%S`
+DATE_FUER_FILE=`date +%d.%m.%Y`
+VERSION_SUFFIX=`echo "_Rel_"$DATE`
+printf "Version:\t\t\t$DATE\n"
+
+TAG_NAME=`echo $NAME_PROJECT$VERSION_SUFFIX`
+printf "Tagname:\t\t\t$TAG_NAME\n"
+
+FILE_TYPES=( *.php *.css *.js *.txt *.pl )
+for p in "${FILE_TYPES[@]}" ; do
+ for f in `find $BASEDIR -maxdepth 1 -name "$p"` ; do
+ echo $f;
+
+ # Suche nach Datum
+ ANZ_TREFFER=`grep \*\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9] $f | wc -l`
+ if [ $ANZ_TREFFER -ge 1 ] ; then
+ sed s/\*\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9]/\*\ Datum\:\ $DATE_FUER_FILE/ $f > TMP_FILE
+ else
+ sed '1a\ \/\/ Datum\:\ '$DATE_FUER_FILE $f > TMP_FILE
+ fi
+ cat TMP_FILE > $f
+
+ # Suche nach Version
+ ANZ_TREFFER=`grep \*\ Version:\ [0-9].[0-9].[0-9] $f | wc -l`
+ if [ $ANZ_TREFFER -ge 1 ] ; then
+ sed s/\*\ Version\:\ [0-9].[0-9].[0-9]/\*\ Version\:\ $PRODUCT_VERSION/ $f > TMP_FILE
+ else
+ sed '1a\ \/\/ Version\:\ '$PRODUCT_VERSION $f > TMP_FILE
+ fi
+ cat TMP_FILE > $f
+
+ # Suche nach SCM
+ ANZ_TREFFER=`grep \*\ SCM:\ $f | wc -l`
+ if [ $ANZ_TREFFER -eq 0 ] ; then
+ SVN_URL=`svn info $f | head -2 | tail -1 | cut -c 6-`
+ sed '1a\ \/\/ SCM\:\ SVN\ -\ '$SVN_URL $f > TMP_FILE
+ fi
+ cat TMP_FILE > $f
+
+ done
+done
+
+FILE_TYPES=( *.sql )
+for p in "${FILE_TYPES[@]}" ; do
+ for f in `find $BASEDIR -maxdepth 1 -name "$p"` ; do
+ echo $f;
+
+ # Suche nach Datum
+ ANZ_TREFFER=`grep --\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9] $f | wc -l`
+ if [ $ANZ_TREFFER -ge 1 ] ; then
+ sed s/--\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9]/--\ Datum\:\ $DATE_FUER_FILE/ $f > TMP_FILE
+ else
+ sed '1a\-- Datum\:\ '$DATE_FUER_FILE $f > TMP_FILE
+ fi
+ cat TMP_FILE > $f
+
+ # Suche nach Version
+ ANZ_TREFFER=`grep --\ Version:\ [0-9].[0-9].[0-9] $f | wc -l`
+ if [ $ANZ_TREFFER -ge 1 ] ; then
+ sed s/--\ Version\:\ [0-9].[0-9].[0-9]/--\ Version\:\ $PRODUCT_VERSION/ $f > TMP_FILE
+ else
+ sed '1a\-- Version\:\ '$PRODUCT_VERSION $f > TMP_FILE
+ fi
+ cat TMP_FILE > $f
+
+ # Suche nach SCM
+ ANZ_TREFFER=`grep \*\ SCM:\ $f | wc -l`
+ if [ $ANZ_TREFFER -eq 0 ] ; then
+ SVN_URL=`svn info $f | head -2 | tail -1 | cut -c 6-`
+ sed '1a\-- SCM\:\ SVN\ -\ '$SVN_URL $f > TMP_FILE
+ fi
+ cat TMP_FILE > $f
+
+ done
+done
+
+FILE_TYPES=( *.html *.xml )
+for p in "${FILE_TYPES[@]}" ; do
+ for f in `find $BASEDIR -maxdepth 1 -name "$p"` ; do
+ echo $f;
+
+ # Suche nach Datum
+ ANZ_TREFFER=`grep \<\!--\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9] $f | wc -l`
+ if [ $ANZ_TREFFER -ge 1 ] ; then
+ sed s/\<\!--\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9]\ --\>/\<\!--\ Datum\:\ $DATE_FUER_FILE\ --\>/ $f > TMP_FILE
+ else
+ sed '1a\\<\!-- Datum\:\ '$DATE_FUER_FILE'\ --\>' $f > TMP_FILE
+ fi
+ cat TMP_FILE > $f
+
+ # Suche nach Version
+ ANZ_TREFFER=`grep \<\!--\ Version:\ [0-9].[0-9].[0-9] $f | wc -l`
+ if [ $ANZ_TREFFER -ge 1 ] ; then
+ sed s/\<\!--\ Version\:\ [0-9].[0-9].[0-9]\ --\>/\<\!--\ Version\:\ $PRODUCT_VERSION\ --\>/ $f > TMP_FILE
+ else
+ sed '1a\\<\!-- Version\:\ '$PRODUCT_VERSION'\ --\>' $f > TMP_FILE
+ fi
+ cat TMP_FILE > $f
+
+ # Suche nach SCM
+ ANZ_TREFFER=`grep \*\ SCM:\ $f | wc -l`
+ if [ $ANZ_TREFFER -eq 0 ] ; then
+ SVN_URL=`svn info $f | head -2 | tail -1 | cut -c 6-`
+ sed '1a\\<\!-- SCM\:\ SVN\ -\ '$SVN_URL'\ --\>' $f > TMP_FILE
+ fi
+ cat TMP_FILE > $f
+
+ done
+done
+
+FILE_TYPES=( *.sh )
+for p in "${FILE_TYPES[@]}" ; do
+ for f in `find $BASEDIR -maxdepth 1 -name "$p"` ; do
+ echo $f;
+
+ # Suche nach Datum
+ ANZ_TREFFER=`grep \#\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9] $f | wc -l`
+ if [ $ANZ_TREFFER -ge 1 ] ; then
+ sed s/\#\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9]/\#\ Datum\:\ $DATE_FUER_FILE/ $f > TMP_FILE
+ else
+ sed '1a\\# Datum\:\ '$DATE_FUER_FILE $f > TMP_FILE
+ fi
+ cat TMP_FILE > $f
+
+ # Suche nach Version
+ ANZ_TREFFER=`grep \#\ Version:\ [0-9].[0-9].[0-9] $f | wc -l`
+ if [ $ANZ_TREFFER -ge 1 ] ; then
+ sed s/\#\ Version\:\ [0-9].[0-9].[0-9]/\#\ Version\:\ $PRODUCT_VERSION/ $f > TMP_FILE
+ else
+ sed '1a\\# Version\:\ '$PRODUCT_VERSION $f > TMP_FILE
+ fi
+ cat TMP_FILE > $f
+
+ # Suche nach SCM
+ ANZ_TREFFER=`grep \*\ SCM:\ $f | wc -l`
+ if [ $ANZ_TREFFER -eq 0 ] ; then
+ SVN_URL=`svn info $f | head -2 | tail -1 | cut -c 6-`
+ sed '1a\\# SCM\:\ SVN\ -\ '$SVN_URL $f > TMP_FILE
+ fi
+ cat TMP_FILE > $f
+
+ done
+done
+
+#######################################
+# svn ci / tag / branch
+
+svn st
+
+# Geänderte Files (Versionsinformationen!) committen
+VERSION_COMMIT_SVN_MSG=`echo "Deployment von Projekt \"$NAME_PROJECT\" auf Produktivumgebung - http://ticket.obg-it.de/show_bug.cgi?id=$BUGZILLA_TICKET_NR"`
+printf "SVN-Log Commit:\t\t\t$VERSION_COMMIT_SVN_MSG\n"
+#svn ci . -m"$VERSION_COMMIT_SVN_MSG"
+
+# Trunk taggen
+VERSION_TAG_SVN_MSG=`echo "Tag vom trunk auf \"$TAG_NAME\" von Projekt \"$NAME_PROJECT\" - http://ticket.obg-it.de/show_bug.cgi?id=$BUGZILLA_TICKET_NR"`
+printf "SVN-Log Tag:\t\t\t$VERSION_TAG_SVN_MSG\n"
+#svn cp $SVN_BASE_URL/trunk/* $SVN_BASE_URL/tags/$TAG_NAME/ -m"$VERSION_TAG_SVN_MSG"
+
+# Tag auschecken
+printf "SVN Checkout neuer Tag:\t\t$SVN_BASE_URL/$TAG_NAME\n"
+#svn co $SVN_BASE_URL/$TAG_NAME ../tags/
+
+
+#######################################
+# token schreiben
+
+# Falls noch kein Token vorhanden ist
+if [ ! -e $TOKEN_FILE ] ; then
+ # Verzeichnis auf dem Ziel abfragen
+ echo "Verzeichnis (ab /) angeben, in das die Version kopiert werden soll."
+ read DEPLOY_TARGET_DIR
+else
+ DEPLOY_TARGET_DIR=`head -1 $TOKEN_FILE`
+fi
+
+echo $DEPLOY_TARGET_DIR > $TOKEN_FILE
+printf "Ziel in Produktivumgebung:\t$DEPLOY_TARGET_DIR\n"
+
+echo $SVN_BASE_URL"/tags/"$TAG_NAME >> $TOKEN_FILE
+
+printf "SCP Token:\t\t\t$TOKEN_FILE nach $TOKEN_UPLOAD_URL\n"
+# scp $TOKEN_FILE $TOKEN_UPLOAD_URL
+
+rm TMP_FILE
+
+printf "Deployment (clientseitig) fertig!\n"
--- /dev/null
+#!/bin/bash
+#######################################
+# SVN checkout bei nicht existierenden Projekten
+# SVN update bei existierenden Projekten
+#######################################
+
+# Repo
+SVN_BASE_URL=http://svn.obg-it.de/obgit/obgit_repo
+
+# Basis SVN-Workingcopy
+BASE_DEV_DIR=$HOME/it/projekte
+
+# Arten der Basis-Verzeichnisse im SVN
+SVN_TREES=(trunk branches tags doc)
+
+# Ausfuehrungsmethode
+execute() {
+ PROJEKT=`echo $1`
+ printf "\n+------Projekt: -- "$PROJEKT" ----+"
+
+ # Für jedes Basis-Verzeichnis
+ for DIR in "${SVN_TREES[@]}" ; do
+
+ # Projekt-Workingcopy
+ PROJEKT_DIR=$BASE_DEV_DIR/$PROJEKT/$DIR
+
+ # Projekt-URL im Repository
+ SVN_PROJEKT_URL=$SVN_BASE_URL/$DIR/$PROJEKT
+
+ # Existiert die Projekt-Workingcopy?
+ if [ ! -d $PROJEKT_DIR ] ; then
+ # Nein?
+
+ # Dann Verzeichnis herstellen
+ printf "\n\t- creating $PROJEKT_DIR"
+ mkdir -p $PROJEKT_DIR
+
+ # Dann SVN-Checkout
+ printf "\n\t- svn checkout $SVN_PROJEKT_URL"
+ svn co $SVN_PROJEKT_URL $PROJEKT_DIR
+ else
+ # Ja?
+
+ # Dann SVN-Update
+ printf "\n\t- svn up $SVN_PROJEKT_URL"
+ svn up $PROJEKT_DIR
+ fi
+ printf "\n"
+ done
+}
+
+
+echo $#
+
+# Pruefen, ob Übergabeparameter (=Projektname) vorhanden
+if [ $# -ge 1 ] ; then
+ while [ $# -ne 0 ] ; do
+ # Wenn ja, dann alle Parameter (=Projekte) nacheinander ausfuehren
+ execute $1
+
+ shift
+ done
+else
+ for PROJEKTE in `svn ls $SVN_BASE_URL/trunk` ; do
+ # Wenn ja, dann alle vorhandenen Projekte im SVN ausfuehren
+ execute $PROJEKTE
+ done
+fi
+
+printf "\nEnde!\n"
+
--- /dev/null
+#!/bin/bash
+
+ho=/home/oleb
+fb=fullbackup20110516/oleb
+dirs=(bin bilder Downloads finanzen firma geschaeftlich it kommunikation persoenlich privat sport wissen)
+
+for i in ${dirs[@]} ; do
+ echo $i
+ kdiff3 $ho/$i $ho/$fb/$i &
+done
+
+exit 0
+
--- /dev/null
+#!/bin/bash
+
+srcfile=$1
+line=$2
+insertstring=$3
+
+tmpfile=/tmp/in2file.sh.tmp
+
+filelen=`wc -l < $srcfile`
+
+kopf=`expr $line - 1`
+head -$kopf $srcfile > $tmpfile
+
+echo $insertstring >> $tmpfile
+
+fuss=`expr $filelen - $line + 1`
+tail -$fuss $srcfile >> $tmpfile
+
+cp $srcfile $srcfile.old
+mv $tmpfile $srcfile
+
+less $srcfile
+
+exit 0
--- /dev/null
+#!/bin/bash
+xrandr --newmode "1280x1024_60.00" 108.88 1280 1360 1496 1712 1024 1025 1028 1060 -HSync +Vsync
+xrandr --addmode VGA-0 "1280x1024_60.00"
+xrandr --output VGA-0 --mode "1280x1024_60.00"
+
--- /dev/null
+#!/bin/bash
+#######################################
+# Startskript
+# Aufgaben: Resolver korrigieren, Shares mounten
+#######################################
+
+sudo bash /root/bin/correctresolver.sh
+
+sudo bash /root/bin/mountall.sh
+
+#######################################
+
+default="false"
+donnervogel="false"
+
+while getopts dDiIogm opt
+do
+ case $opt in
+ m)
+ printf "\n(m)edia"
+ printf "\n\t- K3b" ; k3b 2>/dev/null &
+ printf "\n\t- VLC" ; vlc 2>/dev/null &
+ default="true"
+ ;;
+ g)
+ printf "\n(g)rafic"
+ printf "\n\t- Scribus" ; scribus 2>/dev/null &
+ printf "\n\t- Gimp" ; gimp 2>/dev/null &
+ printf "\n\t- Inkscape" ; inkscape 2>/dev/null &
+ default="true"
+ ;;
+ d)
+ printf "\n(d)evelopment"
+ printf "\n\t- Eclipse" ; /usr/share/eclipse/eclipse 2>/dev/null &
+ default="true"
+ ;;
+ D)
+ printf "\n(D)evelopment"
+ printf "\n\t- Eclipse" ; /usr/share/eclipse/eclipse 2>/dev/null &
+ printf "\n\t- Virtualbox" ; virtualbox 2>/dev/null &
+ printf "\n\t- Dia" ; dia 2>/dev/null &
+ printf "\n\t- MySQL Workbench" ; mysql-workbench 2>/dev/null &
+ printf "\n\t- PGAdmin" ; pgadmin3 2>/dev/null &
+ default="true"
+ ;;
+ o)
+ printf "\n(o)ffice"
+ printf "\n\t- Freemind" ; freemind 2>/dev/null &
+ printf "\n\t- Libreoffice" ; libreoffice 2>/dev/null &
+ donnervogel="true"
+ default="true"
+ ;;
+ I)
+ printf "\n(I)nternet"
+ printf "\n\t- Opera" ; opera 2>/dev/null &
+ printf "\n\t- Skype" ; skype 2>/dev/null &
+ donnervogel="true"
+ default="true"
+ ;;
+ i)
+ printf "\n(i)nternet"
+ donnervogel="true"
+ default="true"
+ ;;
+ esac
+done
+
+#echo $default
+
+if [ $donnervogel = "true" ] ; then
+ printf "\ndonnervogel"
+ printf "\n\t- Thunderbird" ; thunderbird 2>/dev/null &
+fi
+
+if [ $default = "true" ] ; then
+ printf "\ndefault"
+ printf "\n\t- Firefox" ; firefox 2>/dev/null &
+ printf "\n\t- Nemo" ; nemo 2>/dev/null &
+fi
+
+echo
+
+svn up ~/it/projekte/trunk/
+svn up ~/it/projekte/tags/
+svn up ~/it/projekte/branches/
+svn up ~/it/projekte/doc/
+
+
+echo
+
+exit 0;
--- /dev/null
+#!/bin/bash
+#######################################
+# Resolver.conf kopieren
+#######################################
+
+sudo cp /root/bin/resolv.conf /etc
+
+exit 0;
--- /dev/null
+#!/bin/bash
+#######################################
+# Mount von Shares, wenn Ping zu Host erfolgreich
+#######################################
+
+# SMB-Shares auf Host hermes
+shares=(movies music oleb software vm)
+shares_hebe=(gehrmann pictures transfer)
+
+# SMB-Mountoptions für Host hermes
+mountoptions_hermes=user=oleb,password=859im,uid=1000,gid=105,setuids,noperm
+mountoptions_hebe=user=oleb,password=859im,uid=1000,gid=1000,setuids,noperm
+
+#######################################
+# SMB
+printf "\nping hermes"
+
+# Ping hermes
+if ping -c 1 -w 1 hermes > /dev/null; then
+ cd /mnt/hermes/
+ # Jedes share mounten
+ for s in "${shares[@]}" ; do
+ printf "\n\t- mounting $s"
+ sudo mount -t cifs //hermes/$s /mnt/hermes/$s -o $mountoptions_hermes
+ done
+fi
+
+printf "\nping hebe"
+
+# Ping hebe
+if ping -c 1 -w 1 hebe > /dev/null; then
+ cd /mnt/hebe/
+ # Jedes share mounten
+ for s in "${shares_hebe[@]}" ; do
+ printf "\n\t- mounting $s"
+ sudo mount -t cifs //hebe/$s /mnt/hebe/$s -o $mountoptions_hebe
+ done
+fi
+
+#######################################
+# NFS
+#printf "\nping athene"
+
+# Ping athene
+#if ping -c 1 -w 1 athene > /dev/null; then
+# printf "\n\t- mounting athene"
+ # Jedes share
+# sudo mount -t nfs athene:/ /mnt/athene
+#fi
+
+echo ""
+
+exit 0;
+
+#######################################
+# SSHFS
+# printf "\nping strato"
+#sshfs ole-b-gehrmann.de:/home/oleb/upload /home/oleb/strato
+
--- /dev/null
+### /etc/resolv.conf file autogenerated by netconfig!
+#
+# Before you change this file manually, consider to define the
+# static DNS configuration using the following variables in the
+# /etc/sysconfig/network/config file:
+# NETCONFIG_DNS_STATIC_SEARCHLIST
+# NETCONFIG_DNS_STATIC_SERVERS
+# NETCONFIG_DNS_FORWARDER
+# or disable DNS configuration updates via netconfig by setting:
+# NETCONFIG_DNS_POLICY=''
+#
+# See also the netconfig(8) manual page and other documentation.
+#
+# Note: Manual change of this file disables netconfig too, but
+# may get lost when this file contains comments or empty lines
+# only, the netconfig settings are same with settings in this
+# file and in case of a "netconfig update -f" call.
+#
+### Please remove (at least) this line when you modify the file!
+search olymp
+nameserver 145.253.2.11
+nameserver 80.69.98.110
--- /dev/null
+ # Auth ##########
+ Require valid-user
+ AuthType Basic
+ AuthName "__REALM__"
+ AuthBasicProvider dbd
+ AuthDBDUserPWQuery "SELECT pass FROM web.web_view_webaccess WHERE url='__FULL__' AND username = %s"
+
--- /dev/null
+ # DB-Connection ##########
+ DBDriver pgsql
+ DBDParams "hostaddr=127.0.0.1 host=localhost port=5432 dbname=serveradmin user=mailserver_manage password=pUn6ZUzqctC2z3Lq"
+ DBDMin 1
+ DBDKeep 8
+ DBDMax 20
+ DBDExptime 300
+
--- /dev/null
+ <Directory /var/www/__DOMAIN__/__SUB__>
--- /dev/null
+
+ DocumentRoot /var/www/__DOMAIN__/__SUB__
--- /dev/null
+
+</VirtualHost>
\ No newline at end of file
--- /dev/null
+# sites-available/__FILE__
+# Modified by: Ole B. Rosentreter <webmaster@laktatnebel.de>
+# Last modified: __DATE__
+
+# __SUB__ ##########
+<VirtualHost *:__PORT__>
+
--- /dev/null
+ # Logging ##########
+ ErrorLog /var/log/apache2/__DOMAIN__/__SUB__.error.log
+ CustomLog /var/log/apache2/__DOMAIN__/__SUB__.access.log combined
--- /dev/null
+
+ RewriteEngine On
+ RewriteCond %{SERVER_PORT} !^443$
+ RewriteRule (.*) https://%{HTTP_HOST}$1 [R=301,L]
+
--- /dev/null
+ # SSL ##########
+ SetEnvIf User-Agent ".*MSIE.*"nokeepalive SSL-unclean-shutdown
+
+ SSLCertificateFile /etc/letsencrypt/live/__FULL__/fullchain.pem
+ SSLCertificateKeyFile /etc/letsencrypt/live/__FULL__/privkey.pem
+ Include /etc/letsencrypt/options-ssl-apache.conf
+
--- /dev/null
+
+
+# MAILSERVER
+host serveradmin mailserver_manage 127.0.0.1/32 md5
+host serveradmin mailserver_manage ::1/128 md5
--- /dev/null
+
+
+CREATE DATABASE serveradmin;
+
+\connect serveradmin
+
+SET statement_timeout = 0;
+SET lock_timeout = 0;
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = on;
+SELECT pg_catalog.set_config('search_path', '', false);
+SET check_function_bodies = false;
+SET client_min_messages = warning;
+
+CREATE SCHEMA domain;
+
+SET search_path = pg_catalog;
+
+SET default_tablespace = '';
+
+SET default_with_oids = false;
+
+-- #############################################################################################
+-- ##### PEOPLE
+-- ##### Datentabellen
+-- User, die Domaininhaber sind oder Leserechte an bestimmten Subdomains
+CREATE TABLE domain.people_dt_user (
+ id_user serial NOT NULL,
+ user_name varchar(64) NOT NULL,
+ pass_web varchar(256) NOT NULL default 'password',
+ email varchar(256) default NULL,
+ full_name varchar(256) NOT NULL,
+ domainowner boolean NOT NULL default false, -- false
+ active boolean NOT NULL default true, -- true
+ rights smallint NOT NULL default 0,
+ webaccess_expire_date timestamp NULL default '2034-12-31 23:59:59',
+ CONSTRAINT people_dt_user_pkey PRIMARY KEY (id_user),
+ CONSTRAINT people_dt_user_unique_key UNIQUE (user_name)
+);
+
+
+-- #############################################################################################
+-- ##### DOMAINS
+-- ##### Datentabellen
+-- Domains
+CREATE TABLE domain.domain_dt_domains (
+ id_domains serial NOT NULL,
+ domain_name varchar(256) NOT NULL,
+ CONSTRAINT domain_dt_domains_pkey PRIMARY KEY (id_domains),
+ CONSTRAINT domain_dt_domains_unique_key UNIQUE (domain_name)
+);
+
+-- Subdomians
+CREATE TABLE domain.domain_dt_subdomains (
+ id_subdomains serial NOT NULL,
+ subdomain_name varchar(32) NOT NULL default 'www',
+ CONSTRAINT domain_dt_subdomains_pkey PRIMARY KEY (id_subdomains),
+ CONSTRAINT domain_dt_subdomains_unique_key UNIQUE (subdomain_name)
+);
+
+-- Topleveldomains
+CREATE TABLE domain.domain_dt_topleveldomains (
+ id_topleveldomains serial NOT NULL,
+ tld_name varchar(8) NOT NULL default 'de',
+ CONSTRAINT domain_dt_topleveldomains_pkey PRIMARY KEY (id_topleveldomains),
+ CONSTRAINT domain_dt_topleveldomains_unique_key UNIQUE (tld_name)
+);
+
+-- ##### Kreuztabellen
+-- Kombination aus Domainnanmen und Topleveldomains - einedomain.tld
+-- Domaininhaberschaft, Konnektierung
+CREATE TABLE domain.domain_kt_domains_topleveldomains (
+ id_domains_topleveldomains serial NOT NULL,
+ fk_domain integer NOT NULL,
+ fk_topleveldomain integer NOT NULL,
+ fk_domain_owner integer NOT NULL default '1',
+ domain_connection_date date NOT NULL default now(),
+ dkim_key varchar(256) default NULL,
+ dkim_value text default NULL,
+ CONSTRAINT domain_kt_domains_topleveldomains_pkey PRIMARY KEY (id_domains_topleveldomains),
+ CONSTRAINT "fk_domain" FOREIGN KEY (fk_domain) REFERENCES domain.domain_dt_domains (id_domains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT "fk_topleveldomain" FOREIGN KEY (fk_topleveldomain) REFERENCES domain.domain_dt_topleveldomains (id_topleveldomains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT "fk_domain_owner" FOREIGN KEY (fk_domain_owner) REFERENCES domain.people_dt_user (id_user) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT domain_kt_domains_topleveldomain_unique_key UNIQUE (fk_domain, fk_topleveldomain)
+);
+
+-- Komplette Domain - subdom.einedomain.tld
+CREATE TABLE domain.domain_kt_fulldomains (
+ id_fulldomain serial NOT NULL,
+ fk_subdomain integer NOT NULL,
+ fk_domain integer NOT NULL,
+ CONSTRAINT domain_kt_fulldomains_pkey PRIMARY KEY (id_fulldomain),
+ CONSTRAINT "fk_domain" FOREIGN KEY (fk_domain) REFERENCES domain.domain_kt_domains_topleveldomains (id_domains_topleveldomains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT "fk_subdomain" FOREIGN KEY (fk_subdomain) REFERENCES domain.domain_dt_subdomains (id_subdomains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
+);
--- /dev/null
+
+\connect serveradmin
+
+-- #############################################################################################
+-- ##### PEOPLE
+-- ##### Views
+-- Alle Domaininhaber
+CREATE OR REPLACE VIEW
+ domain.people_view_people_domain_owner
+AS SELECT * FROM
+ domain.people_dt_user
+WHERE domainowner = true;
+
+-- Alle aktiven Benutzer
+CREATE OR REPLACE VIEW
+ domain.people_view_people_active
+AS SELECT * FROM
+ domain.people_dt_user
+WHERE active = true;
+
+-- Alle Benutzer, deren Zugriff nicht abgelaufen ist.
+CREATE OR REPLACE VIEW
+ domain.people_view_people_webaccess_nonexpired
+AS SELECT * FROM
+ domain.people_dt_user
+WHERE webaccess_expire_date > now();
+
+-- #############################################################################################
+-- ##### DOMAINS
+-- ##### Views
+-- Als Text: Kombination aus Domainnanmen und Topleveldomains und Domaininhaber und Konnektierungsdatum
+CREATE OR REPLACE VIEW
+ domain.domain_view_domains_topleveldomains
+AS SELECT
+ id_domains_topleveldomains AS id_kt_domains_topleveldomains,
+ concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS domain_name_as_registered,
+ people_dt_user.id_user,
+ people_dt_user.full_name AS domain_owner,
+ domain_connection_date AS connection_date
+FROM
+ domain.domain_kt_domains_topleveldomains
+JOIN
+ domain.domain_dt_domains
+ ON
+ domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
+JOIN
+ domain.domain_dt_topleveldomains
+ ON
+ domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain
+JOIN
+ domain.people_dt_user
+ ON
+ domain.people_dt_user.id_user = domain.domain_kt_domains_topleveldomains.fk_domain_owner;
+
+-- Volle Domain als Text
+CREATE OR REPLACE VIEW
+ domain.domain_view_fulldomain
+AS SELECT
+ id_fulldomain AS id_fulldomain,
+ concat(domain.domain_dt_subdomains.subdomain_name || '.' || domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS full_domain,
+ domain.domain_dt_subdomains.id_subdomains AS id_sub_domain,
+ domain.domain_dt_subdomains.subdomain_name AS sub_domain,
+ domain.domain_kt_fulldomains.fk_domain AS id_domain,
+ concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS domain
+FROM
+ domain.domain_kt_fulldomains
+JOIN
+ domain.domain_dt_subdomains
+ ON
+ domain.domain_dt_subdomains.id_subdomains = domain.domain_kt_fulldomains.fk_subdomain
+JOIN
+ domain.domain_kt_domains_topleveldomains
+ ON
+ domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains = domain.domain_kt_fulldomains.fk_domain
+JOIN
+ domain.domain_dt_domains
+ ON
+ domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
+JOIN
+ domain.domain_dt_topleveldomains
+ ON
+ domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain;
+
+
--- /dev/null
+
+\connect serveradmin
+
+CREATE ROLE mailserver_manage WITH PASSWORD 'pUn6ZUzqctC2z3Lq';
+
+ALTER ROLE mailserver_manage WITH LOGIN;
+
+GRANT USAGE ON SCHEMA domain TO mailserver_manage;
+
+GRANT USAGE ON SCHEMA mail TO mailserver_manage;
+
+GRANT SELECT ON TABLE mail.mail_view_adresses TO mailserver_manage;
+GRANT SELECT ON TABLE mail.mail_view_alias_domain TO mailserver_manage;
+GRANT SELECT ON TABLE mail.mail_view_forwardings TO mailserver_manage;
+GRANT SELECT ON TABLE mail.mail_view_users_maildir TO mailserver_manage;
+
+GRANT USAGE ON SCHEMA web TO mailserver_manage;
+
+GRANT SELECT ON TABLE web.web_view_webaccess TO mailserver_manage;
--- /dev/null
+
+\connect serveradmin
+
+SET statement_timeout = 0;
+SET lock_timeout = 0;
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = on;
+SELECT pg_catalog.set_config('search_path', '', false);
+SET check_function_bodies = false;
+SET client_min_messages = warning;
+
+CREATE SCHEMA mail;
+
+SET search_path = pg_catalog;
+
+SET default_tablespace = '';
+
+SET default_with_oids = false;
+
+
+-- #############################################################################################
+-- ##### ALIAS
+-- ##### Datentabellen
+-- vorkommende Aliase
+CREATE TABLE mail.mail_dt_aliases (
+ id_mail_aliases serial NOT NULL,
+ alias_name varchar(250) NOT NULL,
+ alias_purpose varchar(250) NOT NULL,
+ CONSTRAINT mail_dt_aliases_pkey PRIMARY KEY (id_mail_aliases),
+ CONSTRAINT mail_dt_aliases_unique_key UNIQUE (alias_name)
+);
+
+-- ##### Kreuztabellen
+-- Zuordnung Domain - Alias
+CREATE TABLE mail.mail_kt_alias_domain (
+ id_aliasdomain serial NOT NULL,
+ fk_alias integer NOT NULL,
+ fk_domain integer NOT NULL,
+ CONSTRAINT mail_kt_alias_domain_pkey PRIMARY KEY (id_aliasdomain),
+ CONSTRAINT mail_kt_alias_domain_unique_key UNIQUE (fk_alias,fk_domain),
+ CONSTRAINT "fk_alias" FOREIGN KEY (fk_alias) REFERENCES mail.mail_dt_aliases(id_mail_aliases) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT "fk_domain" FOREIGN KEY (fk_domain) REFERENCES domain.domain_kt_domains_topleveldomains(id_domains_topleveldomains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
+);
+
+-- Mail-Account
+CREATE TABLE mail.mail_dkt_account (
+ id_account serial NOT NULL,
+ fk_mailaddress integer NOT NULL,
+ pass_postbox varchar(256) NOT NULL,
+ CONSTRAINT mail_dkt_account_pkey PRIMARY KEY (id_account),
+ CONSTRAINT mail_dkt_account_unique_key UNIQUE (fk_mailaddress),
+ CONSTRAINT "fk_mailaddress" FOREIGN KEY (fk_mailaddress) REFERENCES mail.mail_kt_alias_domain(id_aliasdomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
+);
+
+-- Weiterleitungen nach extern
+CREATE TABLE mail.mail_dkt_forwarding_extern (
+ fk_source integer NOT NULL,
+ destination_extern varchar (128) NOT NULL,
+ CONSTRAINT mail_dkt_forwarding_extern_unique_key UNIQUE (fk_source, destination_extern),
+ CONSTRAINT "fk_source" FOREIGN KEY (fk_source) REFERENCES mail.mail_kt_alias_domain(id_aliasdomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
+);
+
+-- Weiterleitungen nach intern
+CREATE TABLE mail.mail_kt_forwarding_intern (
+ fk_source integer NOT NULL,
+ fk_destination integer NOT NULL,
+ CONSTRAINT mail_dkt_forwarding_intern_unique_key UNIQUE (fk_source,fk_destination),
+ CONSTRAINT "fk_source" FOREIGN KEY (fk_source) REFERENCES mail.mail_kt_alias_domain(id_aliasdomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT "fk_destination" FOREIGN KEY (fk_destination) REFERENCES mail.mail_kt_alias_domain(id_aliasdomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
+);
--- /dev/null
+
+\connect serveradmin
+
+-- #############################################################################################
+-- ##### ALIAS
+-- ##### Views
+-- Zuordnung Domain - Alias im Klartext - Besitzer der Domain
+CREATE OR REPLACE VIEW
+ mail.mail_view_alias_domain
+AS SELECT
+ id_mail_aliases,
+ alias_name,
+ concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS regdomain,
+ id_aliasdomain as id_full_mailadress,
+ concat(mail_dt_aliases.alias_name || '@' || domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS full_mailaddress,
+ --user_name AS username,
+ user_name AS address_owner,
+ pass_web AS pass
+FROM
+ mail.mail_kt_alias_domain
+JOIN
+ mail.mail_dt_aliases
+ ON
+ mail_dt_aliases.id_mail_aliases = mail_kt_alias_domain.fk_alias
+JOIN
+ domain.domain_kt_domains_topleveldomains
+ ON
+ domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains = mail_kt_alias_domain.fk_domain
+JOIN
+ domain.people_dt_user
+ ON
+ domain.people_dt_user.id_user = domain.domain_kt_domains_topleveldomains.fk_domain_owner
+JOIN
+ domain.domain_dt_domains
+ ON
+ domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
+JOIN
+ domain.domain_dt_topleveldomains
+ ON
+ domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain;
+
+-- Weiterleitungen nach intern
+CREATE OR REPLACE VIEW
+ mail.mail_view_aliases_forwarding_intern
+AS SELECT
+ src_alias_domain.id_aliasdomain AS id_source,
+ concat(src_aliases.alias_name || '@' || src_dom.domain_name || '.' || src_tld.tld_name) AS source,
+ concat(src_dom.domain_name || '.' || src_tld.tld_name) AS domain_source,
+ dest_alias_domain.id_aliasdomain AS id_destination,
+ concat(dest_aliases.alias_name || '@' || dest_dom.domain_name || '.' || dest_tld.tld_name) AS destination,
+ concat(dest_dom.domain_name || '.' || dest_tld.tld_name) AS domain_destination
+FROM
+ mail.mail_kt_forwarding_intern
+JOIN
+ mail.mail_kt_alias_domain src_alias_domain
+ ON
+ src_alias_domain.id_aliasdomain = mail_kt_forwarding_intern.fk_source
+JOIN
+ mail.mail_dt_aliases src_aliases
+ ON
+ src_aliases.id_mail_aliases = src_alias_domain.fk_alias
+JOIN
+ domain.domain_kt_domains_topleveldomains src_domtld
+ ON
+ src_domtld.id_domains_topleveldomains = src_alias_domain.fk_domain
+JOIN
+ domain.domain_dt_domains src_dom
+ ON
+ src_dom.id_domains = src_domtld.fk_domain
+JOIN
+ domain.domain_dt_topleveldomains src_tld
+ ON
+ src_tld.id_topleveldomains = src_domtld.fk_topleveldomain
+JOIN
+ mail.mail_kt_alias_domain dest_alias_domain
+ ON
+ dest_alias_domain.id_aliasdomain = mail_kt_forwarding_intern.fk_destination
+JOIN
+ mail.mail_dt_aliases dest_aliases
+ ON
+ dest_aliases.id_mail_aliases = dest_alias_domain.fk_alias
+JOIN
+ domain.domain_kt_domains_topleveldomains dest_domtld
+ ON
+ dest_domtld.id_domains_topleveldomains = dest_alias_domain.fk_domain
+JOIN
+ domain.domain_dt_domains dest_dom
+ ON
+ dest_dom.id_domains = dest_domtld.fk_domain
+JOIN
+ domain.domain_dt_topleveldomains dest_tld
+ ON
+ dest_tld.id_topleveldomains = dest_domtld.fk_topleveldomain;
+
+-- Weiterleitungen nach extern
+CREATE OR REPLACE VIEW
+ mail.mail_view_aliases_forwarding_extern
+AS SELECT
+ src_alias_domain.id_aliasdomain AS id_source,
+ concat(src_aliases.alias_name || '@' || src_dom.domain_name || '.' || src_tld.tld_name) AS source,
+ destination_extern AS destination
+FROM
+ mail.mail_dkt_forwarding_extern
+JOIN
+ mail.mail_kt_alias_domain src_alias_domain
+ ON
+ src_alias_domain.id_aliasdomain = mail_dkt_forwarding_extern.fk_source
+JOIN
+ mail.mail_dt_aliases src_aliases
+ ON
+ src_aliases.id_mail_aliases = src_alias_domain.fk_alias
+JOIN
+ domain.domain_kt_domains_topleveldomains src_domtld
+ ON
+ src_domtld.id_domains_topleveldomains = src_alias_domain.fk_domain
+JOIN
+ domain.domain_dt_domains src_dom
+ ON
+ src_dom.id_domains = src_domtld.fk_domain
+JOIN
+ domain.domain_dt_topleveldomains src_tld
+ ON
+ src_tld.id_topleveldomains = src_domtld.fk_topleveldomain;
+
+-- Alle Weiterleitungen
+CREATE OR REPLACE VIEW
+ mail.mail_view_forwardings
+AS
+SELECT id_source, source, destination FROM
+ mail.mail_view_aliases_forwarding_extern
+UNION
+SELECT id_source, source, destination FROM
+ mail.mail_view_aliases_forwarding_intern;
+
+-- User, Pass für Mailbox, Maildir
+CREATE OR REPLACE VIEW
+ mail.mail_view_users_maildir
+AS SELECT
+ pass_postbox AS pass,
+ concat(mail_dt_aliases.alias_name || '@' || domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS username,
+ concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS domain,
+ concat(mail_dt_aliases.alias_name::text) AS maildir_username,
+ concat(((((('/var/vmail/'::text || domain_dt_domains.domain_name::text) || '.'::text) || domain_dt_topleveldomains.tld_name::text) || '/'::text) || mail_dt_aliases.alias_name::text) || '/'::text) AS maildir_home
+FROM
+ mail.mail_dkt_account
+JOIN
+ mail.mail_kt_alias_domain
+ ON
+ mail_kt_alias_domain.id_aliasdomain = mail_dkt_account.fk_mailaddress
+JOIN
+ mail.mail_dt_aliases
+ ON
+ mail_dt_aliases.id_mail_aliases = mail_kt_alias_domain.fk_alias
+JOIN
+ domain.domain_kt_domains_topleveldomains
+ ON
+ domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains = mail_kt_alias_domain.fk_domain
+JOIN
+ domain.domain_dt_domains
+ ON
+ domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
+JOIN
+ domain.domain_dt_topleveldomains
+ ON
+ domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain;
+
+-- Mail, ID Alias, ID Domain, ID Mail, Maildir
+CREATE OR REPLACE VIEW
+ mail.mail_view_adresses
+AS SELECT
+ id_aliasdomain AS id_full_mailadress,
+ concat(alias_name || '@' || domain_name || '.' || tld_name) AS full_mailadress,
+ alias_purpose as mailadress_purpose,
+ id_mail_aliases,
+ fk_mailaddress AS fk_mailaddress_account
+FROM
+ mail.mail_dkt_account
+JOIN
+ mail.mail_kt_forwarding_intern fid
+ ON
+ fid.fk_destination = fk_mailaddress
+JOIN
+ mail.mail_kt_alias_domain ad
+ ON
+ ad.id_aliasdomain = fid.fk_source
+JOIN
+ mail.mail_dt_aliases al
+ ON
+ al.id_mail_aliases = ad.fk_alias
+JOIN
+ domain.domain_kt_domains_topleveldomains dtl
+ ON
+ dtl.id_domains_topleveldomains = ad.fk_domain
+JOIN
+ domain.domain_dt_domains dom
+ ON
+ dom.id_domains = dtl.fk_domain
+JOIN
+ domain.domain_dt_topleveldomains tld
+ ON
+ tld.id_topleveldomains = dtl.fk_topleveldomain;
+
+CREATE OR REPLACE VIEW
+ mail.mail_view_mailboxmanage
+AS
+SELECT * FROM
+ web.group_view_group_domain_mailboxmanage
+UNION
+SELECT * FROM
+ web.group_view_user_domain_mailboxmanage
+UNION
+SELECT address_owner, pass, regdomain FROM
+ mail.mail_view_alias_domain;
+
+
+
--- /dev/null
+
+\connect serveradmin
+
+SET statement_timeout = 0;
+SET lock_timeout = 0;
+SET client_encoding = 'UTF8';
+SET standard_conforming_strings = on;
+SELECT pg_catalog.set_config('search_path', '', false);
+SET check_function_bodies = false;
+
+CREATE SCHEMA web;
+
+SET search_path = pg_catalog;
+
+SET default_tablespace = '';
+
+SET default_with_oids = false;
+
+
+-- #############################################################################################
+-- ##### GRUPPEN
+-- ##### Datentabellen
+-- Benutzer, die nur einer Gruppe angehören
+CREATE TABLE web.group_dt_user (
+ id_group_user serial NOT NULL,
+ member_name varchar(64) NOT NULL,
+ email varchar(256) default NULL,
+ active boolean NOT NULL default true,
+ CONSTRAINT group_dt_user_pkey PRIMARY KEY (id_group_user),
+ CONSTRAINT group_dt_user_unique_key UNIQUE (member_name)
+);
+
+-- Gruppen
+CREATE TABLE web.group_dt_groups (
+ id_group_groups serial NOT NULL,
+ group_username varchar(32) NOT NULL,
+ pass_web varchar(256) NOT NULL default 'password',
+ full_name varchar(256) NOT NULL,
+ webaccess_expire_date timestamp NULL default '2034-12-31 23:59:59',
+ CONSTRAINT group_dt_groups_pkey PRIMARY KEY (id_group_groups),
+ CONSTRAINT group_dt_groups_unique_key UNIQUE (group_username)
+);
+
+-- ##### Kreuztabellen
+-- Zugehörigkeit von Gruppenbenutzern zu Gruppen
+CREATE TABLE web.group_kt_membership (
+ fk_groupuser integer NOT NULL,
+ fk_group integer NOT NULL,
+ CONSTRAINT "fk_groupuser" FOREIGN KEY (fk_groupuser) REFERENCES web.group_dt_user(id_group_user) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT "fk_group" FOREIGN KEY (fk_group) REFERENCES web.group_dt_groups(id_group_groups) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT group_kt_membership_unique_key UNIQUE (fk_groupuser, fk_group)
+);
+
+-- Zugehörigkeit von Gruppenbenutzern zu registrierten Domains
+CREATE TABLE web.group_kt_group_domain_mailboxmanage (
+ fk_group integer NOT NULL,
+ fk_regdomain integer NOT NULL,
+ CONSTRAINT "fk_group" FOREIGN KEY (fk_group) REFERENCES web.group_dt_groups(id_group_groups) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT "fk_regdomain" FOREIGN KEY (fk_regdomain) REFERENCES domain.domain_kt_domains_topleveldomains(id_domains_topleveldomains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT group_kt_group_domain_mailboxmanage_unique_key UNIQUE (fk_group,fk_regdomain)
+);
+
+-- Zugehörigkeit von Usern zu registrierten Domains
+CREATE TABLE web.group_kt_user_domain_mailboxmanage (
+ fk_user integer NOT NULL,
+ fk_regdomain integer NOT NULL,
+ CONSTRAINT "fk_user" FOREIGN KEY (fk_user) REFERENCES domain.people_dt_user(id_user) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT "fk_regdomain" FOREIGN KEY (fk_regdomain) REFERENCES domain.domain_kt_domains_topleveldomains(id_domains_topleveldomains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT group_kt_user_domain_mailboxmanage_unique_key UNIQUE (fk_user,fk_regdomain)
+);
+
+-- #############################################################################################
+-- ##### WEB
+-- ##### Kreuztabellen
+-- Gruppen mit Leserechten auf bestimmten Subdomains
+CREATE TABLE web.web_kt_group_domain (
+ fk_group integer NOT NULL,
+ fk_domain integer NOT NULL,
+ CONSTRAINT web_kt_group_domain_unique_key UNIQUE (fk_group,fk_domain),
+ CONSTRAINT "fk_group" FOREIGN KEY (fk_group) REFERENCES web.group_dt_groups(id_group_groups) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT "fk_domain" FOREIGN KEY (fk_domain) REFERENCES domain.domain_kt_fulldomains(id_fulldomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
+);
+
+-- User mit Leserechten auf bestimmten Subdomains
+CREATE TABLE web.web_kt_user_domain (
+ fk_user integer NOT NULL,
+ fk_domain integer NOT NULL,
+ CONSTRAINT web_kt_user_domain_unique_key UNIQUE (fk_user,fk_domain),
+ CONSTRAINT "fk_user" FOREIGN KEY (fk_user) REFERENCES domain.people_dt_user(id_user) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
+ CONSTRAINT "fk_domain" FOREIGN KEY (fk_domain) REFERENCES domain.domain_kt_fulldomains(id_fulldomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
+);
+
+-- Domains mit Konfiguration
+CREATE TABLE web.web_dkt_domain_config (
+ id_domain_config serial NOT NULL,
+ fk_fulldomain integer NOT NULL default '1',
+ description varchar(256) default NULL,
+ realm boolean,
+ serveralias varchar(256) default NULL,
+ virtualhost text default NULL,
+ directory text default NULL,
+ CONSTRAINT web_dkt_domain_config_pkey PRIMARY KEY (id_domain_config),
+ CONSTRAINT "fk_fulldomain" FOREIGN KEY (fk_fulldomain) REFERENCES domain.domain_kt_fulldomains(id_fulldomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
+);
--- /dev/null
+
+\connect serveradmin
+
+-- #############################################################################################
+-- ##### GRUPPEN
+-- ##### Views
+-- Nicht abgelaufene Gruppen
+CREATE OR REPLACE VIEW
+ web.group_view_group_webaccess_nonexpired
+AS SELECT * FROM
+ web.group_dt_groups
+WHERE webaccess_expire_date > now();
+
+-- Zugehörigkeit von Gruppenbenutzern zu Gruppen mit Namen
+CREATE OR REPLACE VIEW
+ web.group_view_membership
+AS SELECT
+ web.group_dt_groups.full_name AS group_name,
+ web.group_dt_user.member_name
+FROM
+ web.group_kt_membership
+JOIN
+ web.group_dt_user
+ ON
+ web.group_dt_user.id_group_user = web.group_kt_membership.fk_groupuser
+JOIN
+ web.group_dt_groups
+ ON
+ web.group_dt_groups.id_group_groups = web.group_kt_membership.fk_group;
+
+-- Zugehörigkeit von Gruppenbenutzern zu registrierten Domains mit Manage-Rechten
+CREATE OR REPLACE VIEW
+ web.group_view_group_domain_mailboxmanage
+AS SELECT
+ web.group_dt_groups.group_username AS username,
+ web.group_dt_groups.pass_web AS pass,
+ concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS regdomain
+FROM
+ web.group_kt_group_domain_mailboxmanage
+JOIN
+ web.group_dt_groups
+ ON
+ web.group_kt_group_domain_mailboxmanage.fk_group = web.group_dt_groups.id_group_groups
+JOIN
+ domain.domain_kt_domains_topleveldomains
+ ON
+ web.group_kt_group_domain_mailboxmanage.fk_regdomain = domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains
+JOIN
+ domain.domain_dt_domains
+ ON
+ domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
+JOIN
+ domain.domain_dt_topleveldomains
+ ON
+ domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain
+WHERE
+ web.group_dt_groups.webaccess_expire_date > now();
+
+-- Zugehörigkeit von Usern zu registrierten Domains mit Manage-Rechten
+CREATE OR REPLACE VIEW
+ web.group_view_user_domain_mailboxmanage
+AS SELECT
+ domain.people_dt_user.user_name AS username,
+ domain.people_dt_user.pass_web AS pass,
+ concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS regdomain
+FROM
+ web.group_kt_user_domain_mailboxmanage
+JOIN
+ domain.people_dt_user
+ ON
+ web.group_kt_user_domain_mailboxmanage.fk_user = domain.people_dt_user.id_user
+JOIN
+ domain.domain_kt_domains_topleveldomains
+ ON
+ web.group_kt_user_domain_mailboxmanage.fk_regdomain = domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains
+JOIN
+ domain.domain_dt_domains
+ ON
+ domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
+JOIN
+ domain.domain_dt_topleveldomains
+ ON
+ domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain
+WHERE
+ domain.people_dt_user.webaccess_expire_date > now()
+AND domain.people_dt_user.active = true;
+
+-- #############################################################################################
+-- ##### WEB
+-- ##### Views
+-- Group und Pass pro Subdomain
+CREATE OR REPLACE VIEW
+ web.web_view_group_webaccess
+AS SELECT
+ group_dt_user.member_name AS username,
+ group_dt_groups.pass_web AS pass,
+ concat(domain.domain_dt_subdomains.subdomain_name || '.' || domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS url,
+ domain.domain_kt_fulldomains.id_fulldomain AS url_id,
+ group_dt_groups.id_group_groups AS id
+FROM
+ web.web_kt_group_domain
+JOIN
+ web.group_dt_groups
+ ON
+ web.web_kt_group_domain.fk_group = web.group_dt_groups.id_group_groups
+JOIN
+ domain.domain_kt_fulldomains
+ ON
+ web.web_kt_group_domain.fk_domain = domain.domain_kt_fulldomains.id_fulldomain
+JOIN
+ domain.domain_dt_subdomains
+ ON
+ domain.domain_dt_subdomains.id_subdomains = domain.domain_kt_fulldomains.fk_subdomain
+JOIN
+ domain.domain_kt_domains_topleveldomains
+ ON
+ domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains = domain.domain_kt_fulldomains.fk_domain
+JOIN
+ domain.domain_dt_domains
+ ON
+ domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
+JOIN
+ domain.domain_dt_topleveldomains
+ ON
+ domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain
+JOIN
+ web.group_kt_membership
+ ON
+ web.group_dt_groups.id_group_groups = web.group_kt_membership.fk_group
+JOIN
+ web.group_dt_user
+ ON
+ web.group_dt_user.id_group_user = web.group_kt_membership.fk_groupuser
+WHERE
+ group_dt_groups.webaccess_expire_date > now();
+
+-- User und Pass pro Subdomain
+CREATE OR REPLACE VIEW
+ web.web_view_user_webaccess
+AS SELECT
+ domain.people_dt_user.id_user AS id,
+ domain.people_dt_user.user_name AS username,
+ domain.people_dt_user.pass_web AS pass,
+ domain.domain_kt_fulldomains.id_fulldomain AS url_id,
+ concat(domain.domain_dt_subdomains.subdomain_name || '.' || domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS url
+FROM
+ web.web_kt_user_domain
+JOIN
+ domain.people_dt_user
+ ON
+ web.web_kt_user_domain.fk_user = people_dt_user.id_user
+JOIN
+ domain.domain_kt_fulldomains
+ ON
+ web.web_kt_user_domain.fk_domain = domain.domain_kt_fulldomains.id_fulldomain
+JOIN
+ domain.domain_dt_subdomains
+ ON
+ domain.domain_dt_subdomains.id_subdomains = domain.domain_kt_fulldomains.fk_subdomain
+JOIN
+ domain.domain_kt_domains_topleveldomains
+ ON
+ domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains = domain.domain_kt_fulldomains.fk_domain
+JOIN
+ domain.domain_dt_domains
+ ON
+ domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
+JOIN
+ domain.domain_dt_topleveldomains
+ ON
+ domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain
+WHERE
+ domain.people_dt_user.webaccess_expire_date > now();
+
+-- User zusamen mit Groups und Pass pro Subdomain
+CREATE OR REPLACE VIEW
+ web.web_view_webaccess
+AS
+SELECT id, username, pass, url, url_id FROM
+ web.web_view_user_webaccess
+UNION
+SELECT id, username, pass, url, url_id FROM
+ web.web_view_group_webaccess;
+
+
+-- Volle Domain mit Config
+CREATE OR REPLACE VIEW
+ web.web_view_fulldomain_config
+AS SELECT
+ id_domain_config,
+ domain.domain_dt_subdomains.subdomain_name AS sub_domain,
+ concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS domain,
+ concat(domain.domain_dt_subdomains.subdomain_name || '.' || domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS full_domain,
+ serveralias,
+ realm,
+ directory,
+ virtualhost,
+ description
+FROM
+ web.web_dkt_domain_config
+JOIN
+ domain.domain_kt_fulldomains
+ ON
+ domain.domain_kt_fulldomains.id_fulldomain = web.web_dkt_domain_config.fk_fulldomain
+JOIN
+ domain.domain_dt_subdomains
+ ON
+ domain.domain_dt_subdomains.id_subdomains = domain.domain_kt_fulldomains.fk_subdomain
+JOIN
+ domain.domain_kt_domains_topleveldomains
+ ON
+ domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains = domain.domain_kt_fulldomains.fk_domain
+JOIN
+ domain.domain_dt_domains
+ ON
+ domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
+JOIN
+ domain.domain_dt_topleveldomains
+ ON
+ domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain;
--- /dev/null
+#
+# Sample Webalizer configuration file
+# Copyright 1997-2013 by Bradford L. Barrett
+#
+# Distributed under the GNU General Public License. See the
+# files "Copyright" and "COPYING" provided with the webalizer
+# distribution for additional information.
+#
+# This is a sample configuration file for the Webalizer (ver 2.23)
+# Lines starting with pound signs '#' are comment lines and are
+# ignored. Blank lines are skipped as well. Other lines are considered
+# as configuration lines, and have the form "ConfigOption Value" where
+# ConfigOption is a valid configuration keyword, and Value is the value
+# to assign that configuration option. Invalid keyword/values are
+# ignored, with appropriate warnings being displayed. There must be
+# at least one space or tab between the keyword and its value.
+#
+# As of version 0.98, The Webalizer will look for a 'default' configuration
+# file named "webalizer.conf" in the current directory, and if not found
+# there, will look for "/etc/webalizer.conf".
+
+
+# LogFile defines the web server log file to use. If not specified
+# here or on on the command line, input will default to STDIN. If
+# the log filename ends in '.gz' (a gzip compressed file), or '.bz2'
+# (bzip2 compressed file), it will be decompressed on the fly as it
+# is being read.
+
+LogFile /var/log/apache2/__DOMAIN__/www/access.log.1
+
+# LogType defines the log type being processed. Normally, the Webalizer
+# expects a CLF or Combined web server log as input. Using this option,
+# you can process ftp logs (xferlog as produced by wu-ftp and others),
+# Squid native logs or W3C extended format web logs. Values can be 'clf',
+# 'ftp', 'squid' or 'w3c'. The default is 'clf'.
+
+#LogType clf
+
+# OutputDir is where you want to put the output files. This should
+# should be a full path name, however relative ones might work as well.
+# If no output directory is specified, the current directory will be used.
+
+OutputDir /var/www/__DOMAIN__/webalizer
+
+# HistoryName allows you to specify the name of the history file produced
+# by the Webalizer. The history file keeps the data for previous months,
+# and is used for generating the main HTML page (index.html). The default
+# is a file named "webalizer.hist", stored in the output directory being
+# used. The name can include a path, which will be relative to the output
+# directory unless absolute (starts with a leading '/').
+
+#HistoryName webalizer.hist
+
+# Incremental processing allows multiple partial log files to be used
+# instead of one huge one. Useful for large sites that have to rotate
+# their log files more than once a month. The Webalizer will save its
+# internal state before exiting, and restore it the next time run, in
+# order to continue processing where it left off. This mode also causes
+# The Webalizer to scan for and ignore duplicate records (records already
+# processed by a previous run). See the README file for additional
+# information. The value may be 'yes' or 'no', with a default of 'no'.
+# The file 'webalizer.current' is used to store the current state data,
+# and is located in the output directory of the program (unless changed
+# with the IncrementalName option below). Please read at least the section
+# on Incremental processing in the README file before you enable this option.
+
+Incremental yes
+
+# IncrementalName allows you to specify the filename for saving the
+# incremental data in. It is similar to the HistoryName option where the
+# name is relative to the specified output directory, unless an absolute
+# filename is specified. The default is a file named "webalizer.current"
+# kept in the normal output directory. If you don't specify "Incremental"
+# as 'yes' then this option has no meaning.
+
+#IncrementalName webalizer.current
+
+# ReportTitle is the text to display as the title. The hostname
+# (unless blank) is appended to the end of this string (separated with
+# a space) to generate the final full title string.
+# Default is (for english) "Usage Statistics for".
+
+ReportTitle Usage Statistics for
+
+# HostName defines the hostname for the report. This is used in
+# the title, and is prepended to the URL table items. This allows
+# clicking on URLs in the report to go to the proper location in
+# the event you are running the report on a 'virtual' web server,
+# or for a server different than the one the report resides on.
+# If not specified here, or on the command line, webalizer will
+# try to get the hostname via a uname system call. If that fails,
+# it will default to "localhost".
+
+HostName www.__DOMAIN__
+
+# HTMLExtension allows you to specify the filename extension to use
+# for generated HTML pages. Normally, this defaults to "html", but
+# can be changed for sites who need it (like for PHP embeded pages).
+
+#HTMLExtension html
+
+# PageType lets you tell the Webalizer what types of URLs you
+# consider a 'page'. Most people consider html and cgi documents
+# as pages, while not images and audio files. If no types are
+# specified, defaults will be used ('htm*', 'cgi' and HTMLExtension
+# if different for web logs, 'txt' for ftp logs).
+
+PageType htm*
+PageType cgi
+#PageType phtml
+PageType php3
+#PageType pl
+PageType php
+
+# PagePrefix allows all requests with a specified prefix to be
+# considered as 'pages'. If you want everything under /documents
+# to be treated as pages no matter what their extension is. Also
+# useful if you have cgi-scripts with PATH_INFO.
+
+#PagePrefix /documents
+#PagePrefix /mycgi/parameters
+
+# OmitPage lets you tell the Webalizer that certain URLs do not
+# contain any pages. No URL matching an OmitPage value will be
+# counted as a page, even if it matches a PageType above or has
+# no extension (e.g., a directory). They will still be counted
+# as a hit.
+
+#OmitPage /render
+
+# UseHTTPS should be used if the analysis is being run on a
+# secure server, and links to urls should use 'https://' instead
+# of the default 'http://'. If you need this, set it to 'yes'.
+# Default is 'no'. This only changes the behaviour of the 'Top
+# URLs' table.
+
+UseHTTPS yes
+
+# HTAccess allows the generation of a default .htaccess file in the
+# output directory. If enabled, a default .htaccess file will be
+# created (with a single "DirectoryIndex" directive), unless one
+# already exists. Values may be 'yes' or 'no', with 'no'
+# being the default (don't write .htaccess files).
+
+#HTAccess no
+
+# StripCGI determines if URL CGI variables should be striped or not.
+# Historically, the Webalizer stripped all CGI variables from the end
+# of URLs to improve accuracy. Some sites may prefer to keep the CGI
+# variables in place, particularly those with highly dynamic pages.
+# Values may be 'yes' or 'no', with the default being 'yes'.
+
+#StripCGI yes
+
+# The TrimSquidURL option only has effect on squid type log files.
+# When analyzing a squid log, it is usually desirable to have less
+# granularity on the URLs. TrimSquidURL = n where n is a number > 0
+# causes all URLs to be truncated after the nth '/' after the http://
+# portion. Setting TrimSquidURL to one (1) will cause all URLs to be
+# summarized by domain only. The default is zero (0), which disables
+# any such truncation and preserve the URLs as they are in the log.
+
+# TrimSquidURL 0
+
+# DNSCache specifies the DNS cache filename to use for reverse DNS lookups.
+# This file must be specified if you wish to perform name lookups on any IP
+# addresses found in the log file. If an absolute path is not given as
+# part of the filename (ie: starts with a leading '/'), then the name is
+# relative to the default output directory. See the DNS.README file for
+# additional information.
+
+#DNSCache dns_cache.db
+
+# DNSChildren allows you to specify how many "children" processes are
+# run to perform DNS lookups to create or update the DNS cache file.
+# If a number is specified, the DNS cache file will be created/updated
+# each time the Webalizer is run, immediately prior to normal processing,
+# by running the specified number of "children" processes to perform
+# DNS lookups. If used, the DNS cache filename MUST be specified as
+# well. The default value is zero (0), which disables DNS cache file
+# creation/updates at run time. The number of children processes to
+# run may be anywhere from 1 to 100, however a large number may affect
+# normal system operations. Reasonable values should be between 5 and
+# 20. See the DNS.README file for additional information.
+
+#DNSChildren 0
+
+# CacheIPs allows unresolved IP addresses to be cached in the DNS
+# database. Normally, only resolved addresses are saved. At some
+# sites, particularly those with a large number of unresolvable IP
+# addresses visiting, it may be useful to enable this feature so
+# those addresses are not constantly looked up each time the program
+# is run. Values can be 'yes' or 'no', with 'no' being the default.
+
+#CacheIPs no
+
+# CacheTTL specifies the time to live (TTL) value for cached DNS
+# entries, in days. This value may be anywhere between 1 and 100
+# with the default being 7 days (1 week).
+
+#CacheTTL 7
+
+# The GeoDB option enables or disabled the use of the native
+# Webalizer GeoDB geolocation services. This is the preferred
+# geolocation option. Values may be 'yes' or 'no', with 'no'
+# being the default.
+
+GeoDB yes
+
+# GeoDBDatabase specifies an alternate database to use. The
+# default database is /usr/share/GeoDB/GeoDB.dat (however the
+# path may be changed at compile time; use the -vV command
+# line option to determine where). If a different database is
+# to be used, it may be specified here. The name is relative
+# to the output directory being used unless an absolute name
+# (ie: starts with a leading '/') is specified.
+
+#GeoDBDatabase /usr/share/GeoDB/GeoDB.dat
+
+# The GeoIP option enables or disables the use of geolocation
+# services provided by the GeoIP library (http://www.maxmind.com),
+# if available. Values may be 'yes' or 'no, with 'no' being the
+# default. Note: if GeoDB is enabled, then this option will have
+# no effect (GeoDB will be used regardless of this setting).
+
+#GeoIP no
+
+# GeoIPDatabase specifies an alternate database filename to use by the
+# GeoIP library. If an absolute path is not given as part of the name
+# (ie: starts with a leading '/'), then the name is relative to the
+# default output directory. This option should not normally be needed.
+
+#GeoIPDatabase /usr/share/GeoIP/GeoIP.dat
+
+# HTMLPre defines HTML code to insert at the very beginning of the
+# file. Default is the DOCTYPE line shown below. Max line length
+# is 80 characters, so use multiple HTMLPre lines if you need more.
+
+#HTMLPre <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+
+# HTMLHead defines HTML code to insert within the <HEAD></HEAD>
+# block, immediately after the <TITLE> line. Maximum line length
+# is 80 characters, so use multiple lines if needed.
+
+#HTMLHead <META NAME="author" CONTENT="The Webalizer">
+#HTMLHead <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
+
+# HTMLBody defined the HTML code to be inserted, starting with the
+# <BODY> tag. If not specified, the default is shown below. If
+# used, you MUST include your own <BODY> tag as the first line.
+# Maximum line length is 80 char, use multiple lines if needed.
+
+#HTMLBody <BODY BGCOLOR="#E8E8E8" TEXT="#000000" LINK="#0000FF" VLINK="#FF0000">
+
+# HTMLPost defines the HTML code to insert immediately before the
+# first <HR> on the document, which is just after the title and
+# "summary period"-"Generated on:" lines. If anything, this should
+# be used to clean up in case an image was inserted with HTMLBody.
+# As with HTMLHead, you can define as many of these as you want and
+# they will be inserted in the output stream in order of apperance.
+# Max string size is 80 characters. Use multiple lines if you need to.
+
+#HTMLPost <BR CLEAR="all">
+
+# HTMLTail defines the HTML code to insert at the bottom of each
+# HTML document, usually to include a link back to your home
+# page or insert a small graphic. It is inserted as a table
+# data element (ie: <TD> your code here </TD>) and is right
+# alligned with the page. Max string size is 80 characters.
+
+#HTMLTail <IMG SRC="msfree.png" ALT="100% Micro$oft free!">
+
+# HTMLEnd defines the HTML code to add at the very end of the
+# generated files. It defaults to what is shown below. If
+# used, you MUST specify the </BODY> and </HTML> closing tags
+# as the last lines. Max string length is 80 characters.
+
+#HTMLEnd </BODY></HTML>
+
+# The LinkReferrer option determines if entries in the referrer table
+# should be plain text or a HTML link to the referrer. Values can be
+# either 'yes' or 'no', with 'no' being the default.
+
+#LinkReferrer no
+
+# The Quiet option suppresses output messages... Useful when run
+# as a cron job to prevent bogus e-mails. Values can be either
+# "yes" or "no". Default is "no". Note: this does not suppress
+# warnings and errors (which are printed to stderr).
+
+#Quiet no
+
+# ReallyQuiet will supress all messages including errors and
+# warnings. Values can be 'yes' or 'no' with 'no' being the
+# default. If 'yes' is used here, it cannot be overriden from
+# the command line, so use with caution. A value of 'no' has
+# no effect.
+
+#ReallyQuiet no
+
+# TimeMe allows you to force the display of timing information
+# at the end of processing. A value of 'yes' will force the
+# timing information to be displayed. A value of 'no' has no
+# effect.
+
+#TimeMe no
+
+# GMTTime allows reports to show GMT (UTC) time instead of local
+# time. Default is to display the time the report was generated
+# in the timezone of the local machine, such as EDT or PST. This
+# keyword allows you to have times displayed in UTC instead. Use
+# only if you really have a good reason, since it will probably
+# screw up the reporting periods by however many hours your local
+# time zone is off of GMT.
+
+#GMTTime no
+
+# Debug prints additional information for error messages. This
+# will cause webalizer to dump bad records/fields instead of just
+# telling you it found a bad one. As usual, the value can be
+# either "yes" or "no". The default is "no". It shouldn't be
+# needed unless you start getting a lot of Warning or Error
+# messages and want to see why. (Note: warning and error messages
+# are printed to stderr, not stdout like normal messages).
+
+#Debug no
+
+# FoldSeqErr forces the Webalizer to ignore sequence errors.
+# This is useful for Netscape and other web servers that cache
+# the writing of log records and do not guarentee that they
+# will be in chronological order. The use of the FoldSeqErr
+# option will cause out of sequence log records to be treated
+# as if they had the same time stamp as the last valid record.
+# Default is to ignore out of sequence log records. The use
+# of this feature is strongly discouraged and rarely needed.
+# (the webalizer already compensates for up to 60 minutes of
+# difference between records).
+
+#FoldSeqErr no
+
+# VisitTimeout allows you to set the default timeout for a visit
+# (sometimes called a 'session'). The default is 30 minutes,
+# which should be fine for most sites.
+# Visits are determined by looking at the time of the current
+# request, and the time of the last request from the site. If
+# the time difference is greater than the VisitTimeout value, it
+# is considered a new visit, and visit totals are incremented.
+# Value is the number of seconds to timeout (default=1800=30min)
+
+#VisitTimeout 1800
+
+# IgnoreHist shouldn't be used in a config file, but it is here
+# just because it might be usefull in certain situations. If the
+# history file is ignored, the main "index.html" file will only
+# report on the current log files contents. Usefull only when you
+# want to reproduce the reports from scratch. USE WITH CAUTION!
+# Valid values are "yes" or "no". Default is "no".
+
+#IgnoreHist no
+
+# IgnoreState also shouldn't be used, but is here anyway. It is
+# similar to the IgnoreHist option, but for the incremental data
+# file. If this is set to 'yes', any existing incremental data
+# will be ignored and a new data file will be written at the end
+# of processing. USE WITH CAUTION. By ignoring an existing
+# incremental data file, all previous processing for the current
+# month will be lost, and those logs must be re-processed.
+# Valid values are "yes" or "no". Default is "no".
+
+#IgnoreState no
+
+# CountryGraph allows the usage by country graph to be disabled.
+# Values can be 'yes' or 'no', default is 'yes'.
+
+#CountryGraph yes
+
+# CountryFlags allows flags to be displayed in the top country
+# table in monthly reports. Values can be 'yes' or 'no', with
+# the default being 'no'.
+
+#CountryFlags no
+
+# FlagDir specifies the location of flag graphics which will be
+# used in the top country table. If not specified, the default
+# is to look in the 'flags' directory directly under the output
+# directory being used for the reports. If this option is used,
+# the display of flag graphics will be enabled by default.
+
+#FlagDir flags
+
+# DailyGraph and DailyStats allows the daily statistics graph
+# and statistics table to be disabled (not displayed). Values
+# may be "yes" or "no". Default is "yes".
+
+#DailyGraph yes
+#DailyStats yes
+
+# HourlyGraph and HourlyStats allows the hourly statistics graph
+# and statistics table to be disabled (not displayed). Values
+# may be "yes" or "no". Default is "yes".
+
+#HourlyGraph yes
+#HourlyStats yes
+
+# GraphLegend allows the color coded legends to be turned on or off
+# in the graphs. The default is for them to be displayed. This only
+# toggles the color coded legends, the other legends are not changed.
+# If you think they are hideous and ugly, say 'no' here :)
+
+#GraphLegend yes
+
+# GraphLines allows you to have index lines drawn behind the graphs.
+# I personally am not crazy about them, but a lot of people requested
+# them and they weren't a big deal to add. The number represents the
+# number of lines you want displayed. Default is 2, you can disable
+# the lines by using a value of zero ('0'). [max is 20]
+# Note, due to rounding errors, some values don't work quite right.
+# The lower the better, with 1,2,3,4,6 and 10 producing nice results.
+
+#GraphLines 2
+
+# IndexMonths defines the number of months to display in the main index
+# (yearly summary) table. Value can be between 12 and 120, with the
+# default being 12 months (1 year).
+
+#IndexMonths 12
+
+# YearHeaders enables/disables the display of year headers in the main
+# index (yearly summary) table. If enabled, year headers will be shown
+# when the table is displaying more than 16 months worth of data. Values
+# can be 'yes' or 'no', with 'yes' being the default.
+
+#YearHeaders yes
+
+# YearTotals enables/disables the display of yearly totals in the main
+# index (yearly summary) table. If enabled, year totals will be shown
+# when the table is displaying more than 16 months worth of data. Values
+# can be 'yes' or 'no', with 'yes' being the default.
+
+#YearTotals yes
+
+# GraphMonths defines the number of months to display in the main index
+# (yearly summary) graph. Value can be between 12 and 72 months, with
+# the default being 12 months.
+
+#GraphMonths 12
+
+# Enable Input Output data as reported by apache_logio module.
+# Note for this to work you need the following in your apache configuration
+# LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
+# CustomLog /var/log/apache2/access.log combinedio
+# webalizer can try to be smart and detect whether your log contains logio
+# information or not, to enable this use the 'auto' value.
+# Values can be 'yes','no' or 'auto', the later being the default.
+#
+
+#InOutkB auto
+
+# The "Top" options below define the number of entries for each table.
+# Defaults are Sites=30, URLs=30, Referrers=30 and Agents=15, and
+# Countries=30. TopKSites and TopKURLs (by KByte tables) both default
+# to 10, as do the top entry/exit tables (TopEntry/TopExit). The top
+# search strings and usernames default to 20. Tables may be disabled
+# by using zero (0) for the value.
+
+#TopSites 30
+#TopKSites 10
+#TopURLs 30
+#TopKURLs 10
+#TopReferrers 30
+#TopAgents 15
+#TopCountries 30
+#TopEntry 10
+#TopExit 10
+#TopSearch 20
+#TopUsers 20
+
+# The All* keywords allow the display of all URLs, Sites, Referrers
+# User Agents, Search Strings and Usernames. If enabled, a separate
+# HTML page will be created, and a link will be added to the bottom
+# of the appropriate "Top" table. There are a couple of conditions
+# for this to occur.. First, there must be more items than will fit
+# in the "Top" table (otherwise it would just be duplicating what is
+# already displayed). Second, the listing will only show those items
+# that are normally visable, which means it will not show any hidden
+# items. Grouped entries will be listed first, followed by individual
+# items. The value for these keywords can be either 'yes' or 'no',
+# with the default being 'no'. Please be aware that these pages can
+# be quite large in size, particularly the sites page, and separate
+# pages are generated for each month, which can consume quite a lot
+# of disk space depending on the traffic to your site.
+
+#AllSites no
+#AllURLs no
+#AllReferrers no
+#AllAgents no
+#AllSearchStr no
+#AllUsers no
+
+# The Webalizer normally strips the string 'index.' off the end of
+# URLs in order to consolidate URL totals. For example, the URL
+# /somedir/index.html is turned into /somedir/ which is really the
+# same URL. This option allows you to specify additional strings
+# to treat in the same way. You don't need to specify 'index.' as
+# it is always scanned for by The Webalizer, this option is just to
+# specify _additional_ strings if needed. If you don't need any,
+# don't specify any as each string will be scanned for in EVERY
+# log record... A bunch of them will degrade performance. Also,
+# the string is scanned for anywhere in the URL, so a string of
+# 'home' would turn the URL /somedir/homepages/brad/home.html into
+# just /somedir/ which is probably not what was intended.
+
+#IndexAlias home.htm
+#IndexAlias homepage.htm
+
+# The DefaultIndex option is used to enable/disable the use of
+# "index." as the default index name to be stripped off the end of
+# a URL (as described above). Most sites will not need to use this
+# option, but some may, such as those whose default index file name
+# is different, or those that use "index.php" or similar URLs in a
+# dynamic environment. Values can be 'yes' or 'no', with the default
+# being 'yes'. This option does not effect any names added using the
+# IndexAlias option, and those names will still function as described
+# regardless of this setting.
+
+#DefaultIndex yes
+
+# The Hide*, Group* and Ignore* and Include* keywords allow you to
+# change the way Sites, URLs, Referrers, User Agents and Usernames
+# are manipulated. The Ignore* keywords will cause The Webalizer to
+# completely ignore records as if they didn't exist (and thus not
+# counted in the main site totals). The Hide* keywords will prevent
+# things from being displayed in the 'Top' tables, but will still be
+# counted in the main totals. The Group* keywords allow grouping
+# similar objects as if they were one. Grouped records are displayed
+# in the 'Top' tables and can optionally be displayed in BOLD and/or
+# shaded. Groups cannot be hidden, and are not counted in the main
+# totals. The Group* options do not, by default, hide all the items
+# that it matches. If you want to hide the records that match (so just
+# the grouping record is displayed), follow with an identical Hide*
+# keyword with the same value. (see example below) In addition,
+# Group* keywords may have an optional label which will be displayed
+# instead of the keywords value. The label should be separated from
+# the value by at least one 'white-space' character, such as a space
+# or tab. If the match string contains whitespace (spaces or tabs),
+# the string should be quoted with either single or double quotes.
+#
+# The value can have either a leading or trailing '*' wildcard
+# character. If no wildcard is found, a match can occur anywhere
+# in the string. Given a string "www.yourmama.com", the values "your",
+# "*mama.com" and "www.your*" will all match.
+
+# Your own site should be hidden
+#HideSite *webalizer.org
+#HideSite localhost
+
+# Your own site gives most referrals
+#HideReferrer webalizer.org/
+
+# This one hides non-referrers ("-" Direct requests)
+#HideReferrer Direct Request
+
+# Usually you want to hide these
+HideURL *.gif
+HideURL *.GIF
+HideURL *.jpg
+HideURL *.JPG
+HideURL *.png
+HideURL *.PNG
+HideURL *.ra
+
+# Hiding agents is kind of futile
+#HideAgent RealPlayer
+
+# You can also hide based on authenticated username
+#HideUser root
+#HideUser admin
+
+# Grouping options
+#GroupURL /cgi-bin/* CGI Scripts
+#GroupURL /images/* Images
+
+#GroupSite *.aol.com
+#GroupSite *.compuserve.com
+
+#GroupReferrer yahoo.com/ Yahoo!
+#GroupReferrer excite.com/ Excite
+#GroupReferrer infoseek.com/ InfoSeek
+#GroupReferrer webcrawler.com/ WebCrawler
+
+#GroupUser root Admin users
+#GroupUser admin Admin users
+#GroupUser wheel Admin users
+
+# The following is a great way to get an overall total
+# for browsers, and not display all the detail records.
+# (You should use MangleAgent to refine further...)
+
+#GroupAgent Opera/ Opera
+#HideAgent Opera/
+#GroupAgent "MSIE 7" Microsoft Internet Exploder 7
+#HideAgent MSIE 7
+#GroupAgent "MSIE 6" Microsoft Internet Exploder 6
+#HideAgent MSIE 6
+#GroupAgent "MSIE " Older Microsoft Exploders
+#HideAgent MSIE
+#GroupAgent Firefox/2. Firefox 2
+#HideAgent Firefox/2.
+#GroupAgent Firefox/1. Firefox 1.x
+#HideAgent Firefox/1.
+#GroupAgent Konqueror Konqueror
+#HideAgent Konqueror
+#GroupAgent Safari Safari
+#HideAgent Safari
+#GroupAgent Lynx* Lynx
+#HideAgent Lynx*
+#GroupAgent Wget/ WGet
+#HideAgent Wget/
+#GroupAgent (compatible; Other Mozilla Compatibles
+#HideAgent (compatible;
+#GroupAgent Mozilla* Mozilla/Netscape
+#HideAgent Mozilla*
+
+# HideAllSites allows forcing individual sites to be hidden in the
+# report. This is particularly useful when used in conjunction
+# with the "GroupDomain" feature, but could be useful in other
+# situations as well, such as when you only want to display grouped
+# sites (with the GroupSite keywords...). The value for this
+# keyword can be either 'yes' or 'no', with 'no' the default,
+# allowing individual sites to be displayed.
+
+#HideAllSites no
+
+# The GroupDomains keyword allows you to group individual hostnames
+# into their respective domains. The value specifies the level of
+# grouping to perform, and can be thought of as 'the number of dots'
+# that will be displayed. For example, if a visiting host is named
+# cust1.tnt.mia.uu.net, a domain grouping of 1 will result in just
+# "uu.net" being displayed, while a 2 will result in "mia.uu.net".
+# The default value of zero disable this feature. Domains will only
+# be grouped if they do not match any existing "GroupSite" records,
+# which allows overriding this feature with your own if desired.
+
+#GroupDomains 0
+
+# The GroupShading allows grouped rows to be shaded in the report.
+# Useful if you have lots of groups and individual records that
+# intermingle in the report, and you want to diferentiate the group
+# records a little more. Value can be 'yes' or 'no', with 'yes'
+# being the default.
+
+#GroupShading yes
+
+# GroupHighlight allows the group record to be displayed in BOLD.
+# Can be either 'yes' or 'no' with the default 'yes'.
+
+#GroupHighlight yes
+
+# The Ignore* keywords allow you to completely ignore log records based
+# on hostname, URL, user agent, referrer or username. I hesitated in
+# adding these, since the Webalizer was designed to generate _accurate_
+# statistics about a web servers performance. By choosing to ignore
+# records, the accuracy of reports become skewed, negating why I wrote
+# this program in the first place. However, due to popular demand, here
+# they are. Use the same as the Hide* keywords, where the value can have
+# a leading or trailing wildcard '*'. Use at your own risk ;) Please
+# remember, the use of these will MAKE YOUR STATS INACCURATE and you
+# should consider using an equivalent 'Hide*' keyword instead.
+
+#IgnoreSite bad.site.net
+IgnoreSite localhost
+#IgnoreURL /test*
+#IgnoreReferrer file:/*
+IgnoreReferrer localhost
+#IgnoreAgent RealPlayer
+#IgnoreUser root
+
+# The Include* keywords allow you to force the inclusion of log records
+# based on hostname, URL, user agent, referrer or username. They take
+# precidence over the Ignore* keywords. Note: Using Ignore/Include
+# combinations to selectivly process parts of a web site is _extremely
+# inefficent_!!! Avoid doing so if possible (ie: grep the records to a
+# separate file if you really want that kind of report).
+
+# Example: Only show stats on Joe User's pages...
+#IgnoreURL *
+#IncludeURL ~joeuser*
+
+# Or based on an authenticated username
+#IgnoreUser *
+#IncludeUser someuser
+
+# The MangleAgents allows you to specify how much, if any, The Webalizer
+# should mangle user agent names. This allows several levels of detail
+# to be produced when reporting user agent statistics. There are six
+# levels that can be specified, which define different levels of detail
+# supression. Level 5 shows only the browser name (MSIE or Mozilla)
+# and the major version number. Level 4 adds the minor version number
+# (single decimal place). Level 3 displays the minor version to two
+# decimal places. Level 2 will add any sub-level designation (such
+# as Mozilla/3.01Gold or MSIE 3.0b). Level 1 will attempt to also add
+# the system type if it is specified. The default Level 0 displays the
+# full user agent field without modification and produces the greatest
+# amount of detail. User agent names that can't be mangled will be
+# left unmodified.
+
+#MangleAgents 0
+
+# The SearchEngine keywords allow specification of search engines and
+# their query strings on the URL. These are used to locate and report
+# what search strings are used to find your site. The first word is
+# a substring to match in the referrer field that identifies the search
+# engine, and the second is the URL variable used by that search engine
+# to define its search terms.
+
+SearchEngine .google. q=
+SearchEngine yahoo.com p=
+SearchEngine altavista.com q=
+SearchEngine aolsearch. query=
+SearchEngine ask.co q=
+SearchEngine eureka.com q=
+SearchEngine lycos.com query=
+SearchEngine hotbot.com MT=
+SearchEngine msn.com q=
+SearchEngine infoseek.com qt=
+SearchEngine excite search=
+SearchEngine netscape.com query=
+SearchEngine mamma.com query=
+SearchEngine alltheweb.com q=
+SearchEngine northernlight.com qr=
+SearchEngine sensis.com.au find=
+
+# Normally, search strings are converted to lower case in order to
+# increase accuracy. The SearchCaseI option allows them to maintain
+# case sensitivity, useful for some sites. The value can be 'yes'
+# or 'no', with 'yes' (case insensitive) being the default.
+
+#SearchCaseI yes
+
+# The Dump* keywords allow the dumping of Sites, URLs, Referrers
+# User Agents, Usernames and Search strings to separate tab delimited
+# text files, suitable for import into most database or spreadsheet
+# programs.
+
+# DumpPath specifies the path to dump the files. If not specified,
+# it will default to the current output directory. Do not use a
+# trailing slash ('/').
+
+#DumpPath /var/lib/httpd/logs
+
+# The DumpHeader keyword specifies if a header record should be
+# written to the file. A header record is the first record of the
+# file, and contains the labels for each field written. Normally,
+# files that are intended to be imported into a database system
+# will not need a header record, while spreadsheets usually do.
+# Value can be either 'yes' or 'no', with 'no' being the default.
+
+#DumpHeader no
+
+# DumpExtension allow you to specify the dump filename extension
+# to use. The default is "tab", but some programs are pickey about
+# the filenames they use, so you may change it here (for example,
+# some people may prefer to use "csv").
+
+#DumpExtension tab
+
+# These control the dumping of each individual table. The value
+# can be either 'yes' or 'no'.. the default is 'no'.
+
+#DumpSites no
+#DumpURLs no
+#DumpReferrers no
+#DumpAgents no
+#DumpUsers no
+#DumpSearchStr no
+
+# The custom graph colors are defined here. Declare them
+# in the standard hexadecimal way (as HTML, without the '#')
+# If none are given, you will get the standard default colors.
+
+#ColorHit 00805c
+#ColorFile 0040ff
+#ColorSite ff8000
+#ColorKbyte ff0000
+#ColorIKbyte 0080ff
+#ColorOKbyte 00e000
+#ColorPage 00e0ff
+#ColorVisit ffff00
+#ColorMisc 00e0ff
+
+#PieColor1 800080
+#PieColor2 80ffc0
+#PieColor3 ff00ff
+#PieColor4 ffc080
+
+# TrueTypeFont makes possible to replace GD built-in font by
+# specified TrueTypeFont.
+# The value can be '/path/to/your/true_type_font.file' or empty.
+# If value is empty(or commented out), GD built-in font will be used.
+# The default is empty.
+# (Supplement for Japanese:
+# Under EUC-JP locale, TTF file must be specified which has *Windows
+# Shift-JIS encoding*. This limitation is derived from libgd.
+# e.g. you can use "/usr/share/fonts/truetype/X-TT/wadalab-gothic.ttf"
+# provided by ttf-xtt-wadalab-gothic package)
+
+#TrueTypeFont
+
+# End of configuration file... Have a nice day!
--- /dev/null
+<?php
+# This file was automatically generated by the MediaWiki 1.42.1
+# installer. If you make manual changes, please keep track in case you
+# need to recreate them later.
+#
+# See includes/MainConfigSchema.php for all configurable settings
+# and their default values, but don't forget to make changes in _this_
+# file, not there.
+#
+# Further documentation for configuration settings may be found at:
+# https://www.mediawiki.org/wiki/Manual:Configuration_settings
+
+# Protect against web entry
+if ( !defined( 'MEDIAWIKI' ) ) {
+ exit;
+}
+
+
+
+
+## Uncomment this to disable output compression
+# $wgDisableOutputCompression = true;
+
+$wgSitename = 'LaktatWiki';
+
+## The URL base path to the directory containing the wiki;
+## defaults for all runtime URL paths are based off of this.
+## For more information on customizing the URLs
+## (like /w/index.php/Page_title to /wiki/Page_title) please see:
+## https://www.mediawiki.org/wiki/Manual:Short_URL
+$wgScriptPath = '';
+
+## The protocol and server name to use in fully-qualified URLs
+$wgServer = 'https://wiki.triathlon-coaching.com';
+
+## The URL path to static resources (images, scripts, etc.)
+$wgResourceBasePath = $wgScriptPath;
+
+## The URL paths to the logo. Make sure you change this from the default,
+## or else you'll overwrite your logo when you upgrade!
+$wgLogos = [
+ '1x' => "$wgResourceBasePath/resources/assets/change-your-logo.svg",
+ 'icon' => "$wgResourceBasePath/resources/assets/change-your-logo.svg",
+];
+
+## UPO means: this is also a user preference option
+
+$wgEnableEmail = true;
+$wgEnableUserEmail = true; # UPO
+
+$wgEmergencyContact = '';
+$wgPasswordSender = '';
+
+$wgEnotifUserTalk = false; # UPO
+$wgEnotifWatchlist = false; # UPO
+$wgEmailAuthentication = true;
+
+## Database settings
+$wgDBtype = 'postgres';
+$wgDBserver = 'localhost';
+$wgDBname = 'my_wiki';
+$wgDBuser = 'wikiuser';
+$wgDBpassword = 'TuKhScdLG\$9x3X\$F';
+
+# Postgres specific settings
+$wgDBport = "5432";
+$wgDBssl = false;
+$wgDBmwschema = "mediawiki";
+
+# Shared database table
+# This has no effect unless $wgSharedDB is also set.
+$wgSharedTables[] = "actor";
+
+## Shared memory settings
+$wgMainCacheType = CACHE_NONE;
+$wgMemCachedServers = [];
+
+## To enable image uploads, make sure the 'images' directory
+## is writable, then set this to true:
+$wgEnableUploads = true;
+#$wgUseImageMagick = true;
+#$wgImageMagickConvertCommand = '/usr/bin/convert';
+
+# InstantCommons allows wiki to use images from https://commons.wikimedia.org
+$wgUseInstantCommons = false;
+
+# Periodically send a pingback to https://www.mediawiki.org/ with basic data
+# about this MediaWiki instance. The Wikimedia Foundation shares this data
+# with MediaWiki developers to help guide future development efforts.
+$wgPingback = true;
+
+# Site language code, should be one of the list in ./includes/languages/data/Names.php
+$wgLanguageCode = 'de';
+
+# Time zone
+$wgLocaltimezone = 'UTC';
+
+## Set $wgCacheDirectory to a writable directory on the web server
+## to make your wiki go slightly faster. The directory should not
+## be publicly accessible from the web.
+#$wgCacheDirectory = "$IP/cache";
+
+$wgSecretKey = '4546fbfb723fdc1b3c7426562d56e57ab08250f158cf83d21a58047561bb16ec';
+
+# Changing this will log out all existing sessions.
+$wgAuthenticationTokenVersion = '1';
+
+# Site upgrade key. Must be set to a string (default provided) to turn on the
+# web installer while LocalSettings.php is in place
+$wgUpgradeKey = '6b32525d4a862838';
+
+## For attaching licensing metadata to pages, and displaying an
+## appropriate copyright notice / icon. GNU Free Documentation
+## License and Creative Commons licenses are supported so far.
+$wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
+$wgRightsUrl = '';
+$wgRightsText = '';
+$wgRightsIcon = "";
+
+# Path to the GNU diff3 utility. Used for conflict resolution.
+$wgDiff3 = '/usr/bin/diff3';
+
+# The following permissions were set based on your choice in the installer
+$wgGroupPermissions['*']['createaccount'] = false;
+$wgGroupPermissions['*']['edit'] = false;
+$wgGroupPermissions['*']['read'] = false;
+
+## Default skin: you can change the default skin. Use the internal symbolic
+## names, e.g. 'vector' or 'monobook':
+$wgDefaultSkin = 'minervaneue';
+
+# Enabled skins.
+# The following skins were automatically enabled:
+wfLoadSkin( 'MinervaNeue' );
+wfLoadSkin( 'MonoBook' );
+wfLoadSkin( 'Timeless' );
+wfLoadSkin( 'Vector' );
+
+
+# Enabled extensions. Most of the extensions are enabled by adding
+# wfLoadExtension( 'ExtensionName' );
+# to LocalSettings.php. Check specific extension documentation for more details.
+# The following extensions were automatically enabled:
+wfLoadExtension( 'CategoryTree' );
+wfLoadExtension( 'Cite' );
+wfLoadExtension( 'CiteThisPage' );
+wfLoadExtension( 'CodeEditor' );
+wfLoadExtension( 'Math' );
+wfLoadExtension( 'MultimediaViewer' );
+wfLoadExtension( 'PageImages' );
+wfLoadExtension( 'SyntaxHighlight_GeSHi' );
+wfLoadExtension( 'VisualEditor' );
+wfLoadExtension( 'WikiEditor' );
+
+
+# End of automatically generated settings.
+# Add more configuration options below.
+
+++ /dev/null
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>de.laktatnebel.product</groupId>
- <artifactId>dionysos</artifactId>
- <version>0.0.1-SNAPSHOT</version>
-
- <name>Administration-${artifactId}</name>
-
- <parent>
- <groupId>de.laktatnebel.admin</groupId>
- <artifactId>serversandclients</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
-
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
-
-</project>
\ No newline at end of file
+++ /dev/null
-<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
- <id>tar</id>
- <formats>
- <format>tar.gz</format>
- </formats>
- <includeBaseDirectory>false</includeBaseDirectory>
- <baseDirectory>${project.basedir}</baseDirectory>
- <fileSets>
- <fileSet>
- <directory>${project.basedir}</directory>
- <includes>
- <include>**/*</include>
- </includes>
- <useDefaultExcludes>true</useDefaultExcludes>
- <excludes>
- <exclude>${project.basedir}/target/**</exclude>
- <exclude>${project.basedir}/.project</exclude>
- <exclude>${project.basedir}/.classpath</exclude>
- <exclude>${project.basedir}/.settings/**</exclude>
- </excludes>
- </fileSet>
- </fileSets>
-</assembly>
-
+++ /dev/null
-[mysqld_safe]
-syslog
+++ /dev/null
-#!/bin/bash
-#
-# This script is executed by "/etc/init.d/mysql" on every (re)start.
-#
-# Changes to this file will be preserved when updating the Debian package.
-#
-
-source /usr/share/mysql/debian-start.inc.sh
-
-MYSQL="/usr/bin/mysql --defaults-file=/etc/mysql/debian.cnf"
-MYADMIN="/usr/bin/mysqladmin --defaults-file=/etc/mysql/debian.cnf"
-MYUPGRADE="/usr/bin/mysql_upgrade --defaults-extra-file=/etc/mysql/debian.cnf"
-MYCHECK="/usr/bin/mysqlcheck --defaults-file=/etc/mysql/debian.cnf"
-MYCHECK_SUBJECT="WARNING: mysqlcheck has found corrupt tables"
-MYCHECK_PARAMS="--all-databases --fast --silent"
-MYCHECK_RCPT="root"
-
-# The following commands should be run when the server is up but in background
-# where they do not block the server start and in one shell instance so that
-# they run sequentially. They are supposed not to echo anything to stdout.
-# If you want to disable the check for crashed tables comment
-# "check_for_crashed_tables" out.
-# (There may be no output to stdout inside the background process!)
-echo "Checking for tables which need an upgrade, are corrupt or were "
-echo "not closed cleanly."
-(
- upgrade_system_tables_if_necessary;
- check_root_accounts;
- check_for_crashed_tables;
-) >&2 &
-
-exit 0
+++ /dev/null
-# Automatically generated for Debian scripts. DO NOT TOUCH!
-[client]
-host = localhost
-user = debian-sys-maint
-password = yc9Mia1XvqHO7Bou
-socket = /var/run/mysqld/mysqld.sock
-[mysql_upgrade]
-host = localhost
-user = debian-sys-maint
-password = yc9Mia1XvqHO7Bou
-socket = /var/run/mysqld/mysqld.sock
-basedir = /usr
+++ /dev/null
-#
-# The MySQL database server configuration file.
-#
-# You can copy this to one of:
-# - "/etc/mysql/my.cnf" to set global options,
-# - "~/.my.cnf" to set user-specific options.
-#
-# One can use all long options that the program supports.
-# Run program with --help to get a list of available options and with
-# --print-defaults to see which it would actually understand and use.
-#
-# For explanations see
-# http://dev.mysql.com/doc/mysql/en/server-system-variables.html
-
-# This will be passed to all mysql clients
-# It has been reported that passwords should be enclosed with ticks/quotes
-# escpecially if they contain "#" chars...
-# Remember to edit /etc/mysql/debian.cnf when changing the socket location.
-[client]
-port = 3306
-socket = /var/run/mysqld/mysqld.sock
-
-# Here is entries for some specific programs
-# The following values assume you have at least 32M ram
-
-# This was formally known as [safe_mysqld]. Both versions are currently parsed.
-[mysqld_safe]
-socket = /var/run/mysqld/mysqld.sock
-nice = 0
-
-[mysqld]
-#
-# * Basic Settings
-#
-user = mysql
-pid-file = /var/run/mysqld/mysqld.pid
-socket = /var/run/mysqld/mysqld.sock
-port = 3306
-basedir = /usr
-datadir = /var/lib/mysql
-tmpdir = /tmp
-lc-messages-dir = /usr/share/mysql
-skip-external-locking
-#
-# Instead of skip-networking the default is now to listen only on
-# localhost which is more compatible and is not less secure.
-bind-address = 127.0.0.1
-#
-# * Fine Tuning
-#
-key_buffer = 64M
-max_allowed_packet = 16M
-thread_stack = 192K
-thread_cache_size = 8
-# This replaces the startup script and checks MyISAM tables if needed
-# the first time they are touched
-myisam-recover = BACKUP
-max_connections = 20
-#table_cache = 64
-#thread_concurrency = 10
-#
-# * Query Cache Configuration
-#
-query_cache_limit = 2M
-query_cache_size = 32M
-#
-# * Logging and Replication
-#
-# Both location gets rotated by the cronjob.
-# Be aware that this log type is a performance killer.
-# As of 5.1 you can enable the log at runtime!
-#general_log_file = /var/log/mysql/mysql.log
-#general_log = 1
-#
-# Error logging goes to syslog due to /etc/mysql/conf.d/mysqld_safe_syslog.cnf.
-#
-# Here you can see queries with especially long duration
-#log_slow_queries = /var/log/mysql/mysql-slow.log
-#long_query_time = 2
-#log-queries-not-using-indexes
-#
-# The following can be used as easy to replay backup logs or for replication.
-# note: if you are setting up a replication slave, see README.Debian about
-# other settings you may need to change.
-#server-id = 1
-#log_bin = /var/log/mysql/mysql-bin.log
-expire_logs_days = 10
-max_binlog_size = 100M
-#binlog_do_db = include_database_name
-#binlog_ignore_db = include_database_name
-#
-# * InnoDB
-#
-# InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
-# Read the manual for more InnoDB related options. There are many!
-#
-# * Security Features
-#
-# Read the manual, too, if you want chroot!
-# chroot = /var/lib/mysql/
-#
-# For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
-#
-# ssl-ca=/etc/mysql/cacert.pem
-# ssl-cert=/etc/mysql/server-cert.pem
-# ssl-key=/etc/mysql/server-key.pem
-
-
-
-[mysqldump]
-quick
-quote-names
-max_allowed_packet = 16M
-
-[mysql]
-#no-auto-rehash # faster start of mysql but no tab completition
-
-[isamchk]
-key_buffer = 16M
-
-#
-# * IMPORTANT: Additional settings that can override those from this file!
-# The files must end with '.cnf', otherwise they'll be ignored.
-#
-!includedir /etc/mysql/conf.d/
+++ /dev/null
-This is a dummy root certificate file for PostgreSQL. To enable client side
-authentication, add some certificates to it. Client certificates must be signed
-with any certificate in this file to be accepted.
-
-A reasonable choice is to just symlink this file to
-/etc/ssl/certs/ssl-cert-snakeoil.pem; in this case, client certificates need to
-be signed by the postgresql server certificate, which might be desirable in
-many cases. See
-
- file:///usr/share/doc/postgresql-doc-8.3/html/ssl-tcp.html
-
-for details (in package postgresql-doc-8.3).
+++ /dev/null
-# This file maps users against the database clusters to which they
-# will connect by default. Any user may create ~/.postgresqlrc which
-# will supersede the defaults stored here. If a database is
-# specified, that will be the one connected to by client tools if none
-# is specified on the command line. If the database specified here is
-# "*", this is interpreted as the database whose name is the same as
-# the user's login. (Setting the database to "*" will provide the
-# current default upstream behaviour for command line tools.)
-#
-# When pg_wrapper scans this file, the first matching line is used.
-# It is a good idea to provide a default explicitly, with a final line
-# where both user and group are set to "*". If there is no default,
-# the implicit default is to connect to the cluster whose postmaster
-# is listening on port 5432 and to the database matching the user's
-# login name.
-#
-# In the context of this file, user and group refer to the Unix login
-# or group, not to PostgreSQL users and groups.
-#
-# Please see user_clusters(5) and postgresqlrc(5) for more information.
-#
-# USER GROUP VERSION CLUSTER DATABASE
-
+++ /dev/null
-# environment variables for postmaster process
-# This file has the same syntax as postgresql.conf:
-# VARIABLE = simple_value
-# VARIABLE2 = 'any value!'
-# I. e. you need to enclose any value which does not only consist of letters,
-# numbers, and '-', '_', '.' in single quotes. Shell commands are not
-# evaluated.
+++ /dev/null
-# Automatic pg_ctl configuration
-# This configuration file contains cluster specific options to be passed to
-# pg_ctl(1).
-
-pg_ctl_options = ''
+++ /dev/null
-# PostgreSQL Client Authentication Configuration File
-# ===================================================
-#
-# Refer to the "Client Authentication" section in the PostgreSQL
-# documentation for a complete description of this file. A short
-# synopsis follows.
-#
-# This file controls: which hosts are allowed to connect, how clients
-# are authenticated, which PostgreSQL user names they can use, which
-# databases they can access. Records take one of these forms:
-#
-# local DATABASE USER METHOD [OPTIONS]
-# host DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostssl DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS]
-#
-# (The uppercase items must be replaced by actual values.)
-#
-# The first field is the connection type: "local" is a Unix-domain
-# socket, "host" is either a plain or SSL-encrypted TCP/IP socket,
-# "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a
-# plain TCP/IP socket.
-#
-# DATABASE can be "all", "sameuser", "samerole", "replication", a
-# database name, or a comma-separated list thereof. The "all"
-# keyword does not match "replication". Access to replication
-# must be enabled in a separate record (see example below).
-#
-# USER can be "all", a user name, a group name prefixed with "+", or a
-# comma-separated list thereof. In both the DATABASE and USER fields
-# you can also write a file name prefixed with "@" to include names
-# from a separate file.
-#
-# ADDRESS specifies the set of hosts the record matches. It can be a
-# host name, or it is made up of an IP address and a CIDR mask that is
-# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that
-# specifies the number of significant bits in the mask. A host name
-# that starts with a dot (.) matches a suffix of the actual host name.
-# Alternatively, you can write an IP address and netmask in separate
-# columns to specify the set of hosts. Instead of a CIDR-address, you
-# can write "samehost" to match any of the server's own IP addresses,
-# or "samenet" to match any address in any subnet that the server is
-# directly connected to.
-#
-# METHOD can be "trust", "reject", "md5", "password", "gss", "sspi",
-# "krb5", "ident", "peer", "pam", "ldap", "radius" or "cert". Note that
-# "password" sends passwords in clear text; "md5" is preferred since
-# it sends encrypted passwords.
-#
-# OPTIONS are a set of options for the authentication in the format
-# NAME=VALUE. The available options depend on the different
-# authentication methods -- refer to the "Client Authentication"
-# section in the documentation for a list of which options are
-# available for which authentication methods.
-#
-# Database and user names containing spaces, commas, quotes and other
-# special characters must be quoted. Quoting one of the keywords
-# "all", "sameuser", "samerole" or "replication" makes the name lose
-# its special character, and just match a database or username with
-# that name.
-#
-# This file is read on server startup and when the postmaster receives
-# a SIGHUP signal. If you edit the file on a running system, you have
-# to SIGHUP the postmaster for the changes to take effect. You can
-# use "pg_ctl reload" to do that.
-
-# Put your actual configuration here
-# ----------------------------------
-#
-# If you want to allow non-local connections, you need to add more
-# "host" records. In that case you will also need to make PostgreSQL
-# listen on a non-local interface via the listen_addresses
-# configuration parameter, or via the -i or -h command line switches.
-
-
-
-
-# DO NOT DISABLE!
-# If you change this first entry you will need to make sure that the
-# database superuser can access the database using some other method.
-# Noninteractive access to all databases is required during automatic
-# maintenance (custom daily cronjobs, replication, and similar tasks).
-#
-# Database administrative login by Unix domain socket
-local all postgres peer
-
-# TYPE DATABASE USER ADDRESS METHOD
-
-# "local" is for Unix domain socket connections only
-local all all peer
-
-# IPv4 local connections:
-host all all 127.0.0.1/32 md5
-
-# IPv6 local connections:
-host all all ::1/128 md5
-
-# Allow replication connections from localhost, by a user with the
-# replication privilege.
-#local replication postgres peer
-#host replication postgres 127.0.0.1/32 md5
-#host replication postgres ::1/128 md5
+++ /dev/null
-# PostgreSQL User Name Maps
-# =========================
-#
-# Refer to the PostgreSQL documentation, chapter "Client
-# Authentication" for a complete description. A short synopsis
-# follows.
-#
-# This file controls PostgreSQL user name mapping. It maps external
-# user names to their corresponding PostgreSQL user names. Records
-# are of the form:
-#
-# MAPNAME SYSTEM-USERNAME PG-USERNAME
-#
-# (The uppercase quantities must be replaced by actual values.)
-#
-# MAPNAME is the (otherwise freely chosen) map name that was used in
-# pg_hba.conf. SYSTEM-USERNAME is the detected user name of the
-# client. PG-USERNAME is the requested PostgreSQL user name. The
-# existence of a record specifies that SYSTEM-USERNAME may connect as
-# PG-USERNAME.
-#
-# If SYSTEM-USERNAME starts with a slash (/), it will be treated as a
-# regular expression. Optionally this can contain a capture (a
-# parenthesized subexpression). The substring matching the capture
-# will be substituted for \1 (backslash-one) if present in
-# PG-USERNAME.
-#
-# Multiple maps may be specified in this file and used by pg_hba.conf.
-#
-# No map names are defined in the default configuration. If all
-# system user names and PostgreSQL user names are the same, you don't
-# need anything in this file.
-#
-# This file is read on server startup and when the postmaster receives
-# a SIGHUP signal. If you edit the file on a running system, you have
-# to SIGHUP the postmaster for the changes to take effect. You can
-# use "pg_ctl reload" to do that.
-
-# Put your actual configuration here
-# ----------------------------------
-
-# MAPNAME SYSTEM-USERNAME PG-USERNAME
+++ /dev/null
-# -----------------------------
-# PostgreSQL configuration file
-# -----------------------------
-#
-# This file consists of lines of the form:
-#
-# name = value
-#
-# (The "=" is optional.) Whitespace may be used. Comments are introduced with
-# "#" anywhere on a line. The complete list of parameter names and allowed
-# values can be found in the PostgreSQL documentation.
-#
-# The commented-out settings shown in this file represent the default values.
-# Re-commenting a setting is NOT sufficient to revert it to the default value;
-# you need to reload the server.
-#
-# This file is read on server startup and when the server receives a SIGHUP
-# signal. If you edit the file on a running system, you have to SIGHUP the
-# server for the changes to take effect, or use "pg_ctl reload". Some
-# parameters, which are marked below, require a server shutdown and restart to
-# take effect.
-#
-# Any parameter can also be given as a command-line option to the server, e.g.,
-# "postgres -c log_connections=on". Some parameters can be changed at run time
-# with the "SET" SQL command.
-#
-# Memory units: kB = kilobytes Time units: ms = milliseconds
-# MB = megabytes s = seconds
-# GB = gigabytes min = minutes
-# h = hours
-# d = days
-
-
-#------------------------------------------------------------------------------
-# FILE LOCATIONS
-#------------------------------------------------------------------------------
-
-# The default values of these variables are driven from the -D command-line
-# option or PGDATA environment variable, represented here as ConfigDir.
-
-data_directory = '/var/lib/postgresql/9.3/main' # use data in another directory
- # (change requires restart)
-hba_file = '/etc/postgresql/9.3/main/pg_hba.conf' # host-based authentication file
- # (change requires restart)
-ident_file = '/etc/postgresql/9.3/main/pg_ident.conf' # ident configuration file
- # (change requires restart)
-
-# If external_pid_file is not explicitly set, no extra PID file is written.
-external_pid_file = '/var/run/postgresql/9.3-main.pid' # write an extra PID file
- # (change requires restart)
-
-
-#------------------------------------------------------------------------------
-# CONNECTIONS AND AUTHENTICATION
-#------------------------------------------------------------------------------
-
-# - Connection Settings -
-
-#listen_addresses = 'localhost' # what IP address(es) to listen on;
- # comma-separated list of addresses;
- # defaults to 'localhost'; use '*' for all
- # (change requires restart)
-port = 5432 # (change requires restart)
-max_connections = 100 # (change requires restart)
-# Note: Increasing max_connections costs ~400 bytes of shared memory per
-# connection slot, plus lock space (see max_locks_per_transaction).
-#superuser_reserved_connections = 3 # (change requires restart)
-unix_socket_directories = '/var/run/postgresql' # comma-separated list of directories
- # (change requires restart)
-#unix_socket_group = '' # (change requires restart)
-#unix_socket_permissions = 0777 # begin with 0 to use octal notation
- # (change requires restart)
-#bonjour = off # advertise server via Bonjour
- # (change requires restart)
-#bonjour_name = '' # defaults to the computer name
- # (change requires restart)
-
-# - Security and Authentication -
-
-#authentication_timeout = 1min # 1s-600s
-ssl = true # (change requires restart)
-#ssl_ciphers = 'DEFAULT:!LOW:!EXP:!MD5:@STRENGTH' # allowed SSL ciphers
- # (change requires restart)
-#ssl_renegotiation_limit = 512MB # amount of data between renegotiations
-ssl_cert_file = '/etc/ssl/certs/ssl-cert-snakeoil.pem' # (change requires restart)
-ssl_key_file = '/etc/ssl/private/ssl-cert-snakeoil.key' # (change requires restart)
-#ssl_ca_file = '' # (change requires restart)
-#ssl_crl_file = '' # (change requires restart)
-#password_encryption = on
-#db_user_namespace = off
-
-# Kerberos and GSSAPI
-#krb_server_keyfile = ''
-#krb_srvname = 'postgres' # (Kerberos only)
-#krb_caseins_users = off
-
-# - TCP Keepalives -
-# see "man 7 tcp" for details
-
-#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds;
- # 0 selects the system default
-#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds;
- # 0 selects the system default
-#tcp_keepalives_count = 0 # TCP_KEEPCNT;
- # 0 selects the system default
-
-
-#------------------------------------------------------------------------------
-# RESOURCE USAGE (except WAL)
-#------------------------------------------------------------------------------
-
-# - Memory -
-
-shared_buffers = 128MB # min 128kB
- # (change requires restart)
-#temp_buffers = 8MB # min 800kB
-#max_prepared_transactions = 0 # zero disables the feature
- # (change requires restart)
-# Note: Increasing max_prepared_transactions costs ~600 bytes of shared memory
-# per transaction slot, plus lock space (see max_locks_per_transaction).
-# It is not advisable to set max_prepared_transactions nonzero unless you
-# actively intend to use prepared transactions.
-#work_mem = 1MB # min 64kB
-#maintenance_work_mem = 16MB # min 1MB
-#max_stack_depth = 2MB # min 100kB
-
-# - Disk -
-
-#temp_file_limit = -1 # limits per-session temp file space
- # in kB, or -1 for no limit
-
-# - Kernel Resource Usage -
-
-#max_files_per_process = 1000 # min 25
- # (change requires restart)
-#shared_preload_libraries = '' # (change requires restart)
-
-# - Cost-Based Vacuum Delay -
-
-#vacuum_cost_delay = 0 # 0-100 milliseconds
-#vacuum_cost_page_hit = 1 # 0-10000 credits
-#vacuum_cost_page_miss = 10 # 0-10000 credits
-#vacuum_cost_page_dirty = 20 # 0-10000 credits
-#vacuum_cost_limit = 200 # 1-10000 credits
-
-# - Background Writer -
-
-#bgwriter_delay = 200ms # 10-10000ms between rounds
-#bgwriter_lru_maxpages = 100 # 0-1000 max buffers written/round
-#bgwriter_lru_multiplier = 2.0 # 0-10.0 multipler on buffers scanned/round
-
-# - Asynchronous Behavior -
-
-#effective_io_concurrency = 1 # 1-1000; 0 disables prefetching
-
-
-#------------------------------------------------------------------------------
-# WRITE AHEAD LOG
-#------------------------------------------------------------------------------
-
-# - Settings -
-
-#wal_level = minimal # minimal, archive, or hot_standby
- # (change requires restart)
-#fsync = on # turns forced synchronization on or off
-#synchronous_commit = on # synchronization level;
- # off, local, remote_write, or on
-#wal_sync_method = fsync # the default is the first option
- # supported by the operating system:
- # open_datasync
- # fdatasync (default on Linux)
- # fsync
- # fsync_writethrough
- # open_sync
-#full_page_writes = on # recover from partial page writes
-#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers
- # (change requires restart)
-#wal_writer_delay = 200ms # 1-10000 milliseconds
-
-#commit_delay = 0 # range 0-100000, in microseconds
-#commit_siblings = 5 # range 1-1000
-
-# - Checkpoints -
-
-#checkpoint_segments = 3 # in logfile segments, min 1, 16MB each
-#checkpoint_timeout = 5min # range 30s-1h
-#checkpoint_completion_target = 0.5 # checkpoint target duration, 0.0 - 1.0
-#checkpoint_warning = 30s # 0 disables
-
-# - Archiving -
-
-#archive_mode = off # allows archiving to be done
- # (change requires restart)
-#archive_command = '' # command to use to archive a logfile segment
- # placeholders: %p = path of file to archive
- # %f = file name only
- # e.g. 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f'
-#archive_timeout = 0 # force a logfile segment switch after this
- # number of seconds; 0 disables
-
-
-#------------------------------------------------------------------------------
-# REPLICATION
-#------------------------------------------------------------------------------
-
-# - Sending Server(s) -
-
-# Set these on the master and on any standby that will send replication data.
-
-#max_wal_senders = 0 # max number of walsender processes
- # (change requires restart)
-#wal_keep_segments = 0 # in logfile segments, 16MB each; 0 disables
-#wal_sender_timeout = 60s # in milliseconds; 0 disables
-
-# - Master Server -
-
-# These settings are ignored on a standby server.
-
-#synchronous_standby_names = '' # standby servers that provide sync rep
- # comma-separated list of application_name
- # from standby(s); '*' = all
-#vacuum_defer_cleanup_age = 0 # number of xacts by which cleanup is delayed
-
-# - Standby Servers -
-
-# These settings are ignored on a master server.
-
-#hot_standby = off # "on" allows queries during recovery
- # (change requires restart)
-#max_standby_archive_delay = 30s # max delay before canceling queries
- # when reading WAL from archive;
- # -1 allows indefinite delay
-#max_standby_streaming_delay = 30s # max delay before canceling queries
- # when reading streaming WAL;
- # -1 allows indefinite delay
-#wal_receiver_status_interval = 10s # send replies at least this often
- # 0 disables
-#hot_standby_feedback = off # send info from standby to prevent
- # query conflicts
-#wal_receiver_timeout = 60s # time that receiver waits for
- # communication from master
- # in milliseconds; 0 disables
-
-
-#------------------------------------------------------------------------------
-# QUERY TUNING
-#------------------------------------------------------------------------------
-
-# - Planner Method Configuration -
-
-#enable_bitmapscan = on
-#enable_hashagg = on
-#enable_hashjoin = on
-#enable_indexscan = on
-#enable_indexonlyscan = on
-#enable_material = on
-#enable_mergejoin = on
-#enable_nestloop = on
-#enable_seqscan = on
-#enable_sort = on
-#enable_tidscan = on
-
-# - Planner Cost Constants -
-
-#seq_page_cost = 1.0 # measured on an arbitrary scale
-#random_page_cost = 4.0 # same scale as above
-#cpu_tuple_cost = 0.01 # same scale as above
-#cpu_index_tuple_cost = 0.005 # same scale as above
-#cpu_operator_cost = 0.0025 # same scale as above
-#effective_cache_size = 128MB
-
-# - Genetic Query Optimizer -
-
-#geqo = on
-#geqo_threshold = 12
-#geqo_effort = 5 # range 1-10
-#geqo_pool_size = 0 # selects default based on effort
-#geqo_generations = 0 # selects default based on effort
-#geqo_selection_bias = 2.0 # range 1.5-2.0
-#geqo_seed = 0.0 # range 0.0-1.0
-
-# - Other Planner Options -
-
-#default_statistics_target = 100 # range 1-10000
-#constraint_exclusion = partition # on, off, or partition
-#cursor_tuple_fraction = 0.1 # range 0.0-1.0
-#from_collapse_limit = 8
-#join_collapse_limit = 8 # 1 disables collapsing of explicit
- # JOIN clauses
-
-
-#------------------------------------------------------------------------------
-# ERROR REPORTING AND LOGGING
-#------------------------------------------------------------------------------
-
-# - Where to Log -
-
-#log_destination = 'stderr' # Valid values are combinations of
- # stderr, csvlog, syslog, and eventlog,
- # depending on platform. csvlog
- # requires logging_collector to be on.
-
-# This is used when logging to stderr:
-#logging_collector = off # Enable capturing of stderr and csvlog
- # into log files. Required to be on for
- # csvlogs.
- # (change requires restart)
-
-# These are only used if logging_collector is on:
-#log_directory = 'pg_log' # directory where log files are written,
- # can be absolute or relative to PGDATA
-#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern,
- # can include strftime() escapes
-#log_file_mode = 0600 # creation mode for log files,
- # begin with 0 to use octal notation
-#log_truncate_on_rotation = off # If on, an existing log file with the
- # same name as the new log file will be
- # truncated rather than appended to.
- # But such truncation only occurs on
- # time-driven rotation, not on restarts
- # or size-driven rotation. Default is
- # off, meaning append to existing files
- # in all cases.
-#log_rotation_age = 1d # Automatic rotation of logfiles will
- # happen after that time. 0 disables.
-#log_rotation_size = 10MB # Automatic rotation of logfiles will
- # happen after that much log output.
- # 0 disables.
-
-# These are relevant when logging to syslog:
-#syslog_facility = 'LOCAL0'
-#syslog_ident = 'postgres'
-
-# This is only relevant when logging to eventlog (win32):
-#event_source = 'PostgreSQL'
-
-# - When to Log -
-
-#client_min_messages = notice # values in order of decreasing detail:
- # debug5
- # debug4
- # debug3
- # debug2
- # debug1
- # log
- # notice
- # warning
- # error
-
-#log_min_messages = warning # values in order of decreasing detail:
- # debug5
- # debug4
- # debug3
- # debug2
- # debug1
- # info
- # notice
- # warning
- # error
- # log
- # fatal
- # panic
-
-#log_min_error_statement = error # values in order of decreasing detail:
- # debug5
- # debug4
- # debug3
- # debug2
- # debug1
- # info
- # notice
- # warning
- # error
- # log
- # fatal
- # panic (effectively off)
-
-#log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements
- # and their durations, > 0 logs only
- # statements running at least this number
- # of milliseconds
-
-
-# - What to Log -
-
-#debug_print_parse = off
-#debug_print_rewritten = off
-#debug_print_plan = off
-#debug_pretty_print = on
-#log_checkpoints = off
-#log_connections = off
-#log_disconnections = off
-#log_duration = off
-#log_error_verbosity = default # terse, default, or verbose messages
-#log_hostname = off
-log_line_prefix = '%t ' # special values:
- # %a = application name
- # %u = user name
- # %d = database name
- # %r = remote host and port
- # %h = remote host
- # %p = process ID
- # %t = timestamp without milliseconds
- # %m = timestamp with milliseconds
- # %i = command tag
- # %e = SQL state
- # %c = session ID
- # %l = session line number
- # %s = session start timestamp
- # %v = virtual transaction ID
- # %x = transaction ID (0 if none)
- # %q = stop here in non-session
- # processes
- # %% = '%'
- # e.g. '<%u%%%d> '
-#log_lock_waits = off # log lock waits >= deadlock_timeout
-#log_statement = 'none' # none, ddl, mod, all
-#log_temp_files = -1 # log temporary files equal or larger
- # than the specified size in kilobytes;
- # -1 disables, 0 logs all temp files
-log_timezone = 'localtime'
-
-
-#------------------------------------------------------------------------------
-# RUNTIME STATISTICS
-#------------------------------------------------------------------------------
-
-# - Query/Index Statistics Collector -
-
-#track_activities = on
-#track_counts = on
-#track_io_timing = off
-#track_functions = none # none, pl, all
-#track_activity_query_size = 1024 # (change requires restart)
-#update_process_title = on
-#stats_temp_directory = 'pg_stat_tmp'
-
-
-# - Statistics Monitoring -
-
-#log_parser_stats = off
-#log_planner_stats = off
-#log_executor_stats = off
-#log_statement_stats = off
-
-
-#------------------------------------------------------------------------------
-# AUTOVACUUM PARAMETERS
-#------------------------------------------------------------------------------
-
-#autovacuum = on # Enable autovacuum subprocess? 'on'
- # requires track_counts to also be on.
-#log_autovacuum_min_duration = -1 # -1 disables, 0 logs all actions and
- # their durations, > 0 logs only
- # actions running at least this number
- # of milliseconds.
-#autovacuum_max_workers = 3 # max number of autovacuum subprocesses
- # (change requires restart)
-#autovacuum_naptime = 1min # time between autovacuum runs
-#autovacuum_vacuum_threshold = 50 # min number of row updates before
- # vacuum
-#autovacuum_analyze_threshold = 50 # min number of row updates before
- # analyze
-#autovacuum_vacuum_scale_factor = 0.2 # fraction of table size before vacuum
-#autovacuum_analyze_scale_factor = 0.1 # fraction of table size before analyze
-#autovacuum_freeze_max_age = 200000000 # maximum XID age before forced vacuum
- # (change requires restart)
-#autovacuum_vacuum_cost_delay = 20ms # default vacuum cost delay for
- # autovacuum, in milliseconds;
- # -1 means use vacuum_cost_delay
-#autovacuum_vacuum_cost_limit = -1 # default vacuum cost limit for
- # autovacuum, -1 means use
- # vacuum_cost_limit
-
-
-#------------------------------------------------------------------------------
-# CLIENT CONNECTION DEFAULTS
-#------------------------------------------------------------------------------
-
-# - Statement Behavior -
-
-#search_path = '"$user",public' # schema names
-#default_tablespace = '' # a tablespace name, '' uses the default
-#temp_tablespaces = '' # a list of tablespace names, '' uses
- # only default tablespace
-#check_function_bodies = on
-#default_transaction_isolation = 'read committed'
-#default_transaction_read_only = off
-#default_transaction_deferrable = off
-#session_replication_role = 'origin'
-#statement_timeout = 0 # in milliseconds, 0 is disabled
-#lock_timeout = 0 # in milliseconds, 0 is disabled
-#vacuum_freeze_min_age = 50000000
-#vacuum_freeze_table_age = 150000000
-#bytea_output = 'hex' # hex, escape
-#xmlbinary = 'base64'
-#xmloption = 'content'
-
-# - Locale and Formatting -
-
-datestyle = 'iso, dmy'
-#intervalstyle = 'postgres'
-timezone = 'localtime'
-#timezone_abbreviations = 'Default' # Select the set of available time zone
- # abbreviations. Currently, there are
- # Default
- # Australia
- # India
- # You can create your own file in
- # share/timezonesets/.
-#extra_float_digits = 0 # min -15, max 3
-#client_encoding = sql_ascii # actually, defaults to database
- # encoding
-
-# These settings are initialized by initdb, but they can be changed.
-lc_messages = 'de_DE.UTF-8' # locale for system error message
- # strings
-lc_monetary = 'de_DE.UTF-8' # locale for monetary formatting
-lc_numeric = 'de_DE.UTF-8' # locale for number formatting
-lc_time = 'de_DE.UTF-8' # locale for time formatting
-
-# default configuration for text search
-default_text_search_config = 'pg_catalog.german'
-
-# - Other Defaults -
-
-#dynamic_library_path = '$libdir'
-#local_preload_libraries = ''
-
-
-#------------------------------------------------------------------------------
-# LOCK MANAGEMENT
-#------------------------------------------------------------------------------
-
-#deadlock_timeout = 1s
-#max_locks_per_transaction = 64 # min 10
- # (change requires restart)
-# Note: Each lock table slot uses ~270 bytes of shared memory, and there are
-# max_locks_per_transaction * (max_connections + max_prepared_transactions)
-# lock table slots.
-#max_pred_locks_per_transaction = 64 # min 10
- # (change requires restart)
-
-
-#------------------------------------------------------------------------------
-# VERSION/PLATFORM COMPATIBILITY
-#------------------------------------------------------------------------------
-
-# - Previous PostgreSQL Versions -
-
-#array_nulls = on
-#backslash_quote = safe_encoding # on, off, or safe_encoding
-#default_with_oids = off
-#escape_string_warning = on
-#lo_compat_privileges = off
-#quote_all_identifiers = off
-#sql_inheritance = on
-#standard_conforming_strings = on
-#synchronize_seqscans = on
-
-# - Other Platforms and Clients -
-
-#transform_null_equals = off
-
-
-#------------------------------------------------------------------------------
-# ERROR HANDLING
-#------------------------------------------------------------------------------
-
-#exit_on_error = off # terminate session on any error?
-#restart_after_crash = on # reinitialize after backend crash?
-
-
-#------------------------------------------------------------------------------
-# CONFIG FILE INCLUDES
-#------------------------------------------------------------------------------
-
-# These options allow settings to be loaded from files other than the
-# default postgresql.conf.
-
-#include_dir = 'conf.d' # include files ending in '.conf' from
- # directory 'conf.d'
-#include_if_exists = 'exists.conf' # include file only if it exists
-#include = 'special.conf' # include file
-
-
-#------------------------------------------------------------------------------
-# CUSTOMIZED OPTIONS
-#------------------------------------------------------------------------------
-
-# Add settings for extensions here
+++ /dev/null
-# Automatic startup configuration
-# auto: automatically start/stop the cluster in the init script
-# manual: do not start/stop in init scripts, but allow manual startup with
-# pg_ctlcluster
-# disabled: do not allow manual startup with pg_ctlcluster (this can be easily
-# circumvented and is only meant to be a small protection for
-# accidents).
-
-auto
+++ /dev/null
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>de.laktatnebel.product</groupId>
- <artifactId>poseidon</artifactId>
- <version>0.0.1-SNAPSHOT</version>
-
- <name>Administration-${artifactId}</name>
-
- <parent>
- <groupId>de.laktatnebel.admin</groupId>
- <artifactId>serversandclients</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
-
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
-
-</project>
\ No newline at end of file
+++ /dev/null
-#!/bin/bash
-#######################################
-# mvn clean install fuer alle Projekte
-# VORSICHT: Beruecksichtigt KEINE(!) Abhaengigkeiten, daher wird das lange wiederholt, bis alles passt
-#######################################
-
-# Basis Workingcopy
-BASE_DEV_DIR=$HOME/it/projekte/trunk/
-
-# Arten der Source-Verzeichnisse
-SRC_DIRS=( trunk branches tags )
-
-# Flag, um Eclipse-Projekte anzulegen
-NO_XTRA_MVN_CMD="_"
-XTRA_MVN_CMD="_"
-
-# Sammelvariable, die exit-codes von mvn addiert
-TOTAL_SUCCESS_FLAG=0
-
-# Aktuelles Arbeitsverzeichnis
-PWD=`pwd`
-
-# Ausfuehrungsmethode
-execute() {
- PROJEKT=`echo $1`
- printf "\n+------Projekt: -- "$PROJEKT" ----+\n"
-
- # Für jedes Basis-Verzeichnis
- #for DIR in "${SRC_DIRS[@]}" ; do
-
- # In trunk eine Ebene tiefer suchen, in Tags und Branches kommt ja noch der Tag- bzw. Branchname dazu.
- FINDDEPTH=2
- if [ $DIR == trunk ] ; then
- FINDDEPTH=1
- fi
-
- printf "find "$BASE_DEV_DIR"/"$PROJEKT"/"$DIR" -maxdepth "$FINDDEPTH" -name pom.xml\n"
- ANZ_POM=`find $BASE_DEV_DIR/$PROJEKT/$DIR -maxdepth $FINDDEPTH -name pom.xml | wc -l`
- printf $ANZ_POM" pom.xml gefunden.\n"
-
- for POM in `find $BASE_DEV_DIR/$PROJEKT/$DIR -maxdepth $FINDDEPTH -name pom.xml` ; do
-
- printf "=====>\t"$POM"\n"
-
- PATH_TO_POM_LENGTH=`find $POM -maxdepth $FINDDEPTH -name pom.xml | head -1 | wc -m`
- #echo $PATH_TO_POM_LENGTH
- PATH_BUILD_DIR_LENGTH=`expr $PATH_TO_POM_LENGTH - 8`
- #echo $PATH_BUILD_DIR_LENGTH
-
- BUILD_DIR=`find $POM -maxdepth $FINDDEPTH -name pom.xml | head -1 | cut -c -$PATH_BUILD_DIR_LENGTH`
- #echo $BUILD_DIR
-
- cd $BUILD_DIR
- pwd
-
- printf "Maven clean install ....\n"
- mvn clean install
-
- TOTAL_SUCCESS_FLAG=`expr $? + $TOTAL_SUCCESS_FLAG`
-
- if [ $XTRA_MVN_CMD != $NO_XTRA_MVN_CMD ] ; then
- printf "Maven "$XTRA_MVN_CMD" ....\n"
- mvn $XTRA_MVN_CMD
-
- TOTAL_SUCCESS_FLAG=`expr $? + $TOTAL_SUCCESS_FLAG`
- fi
- done
-
- printf "\n"
- #done
-}
-
-
-echo $#
-
-# Pruefen, ob Übergabeparameter (=Projektname) vorhanden
-if [ $# -ge 3 ] ; then
- while [ $# -ne 0 ] ; do
- if [ $1 == -xtramvncmd ] ; then
- XTRA_MVN_CMD=$2
- shift
- shift
- else
- XTRA_MVN_CMD=$NO_XTRA_MVN_CMD
- fi
-
- # Wenn ja, dann alle Parameter (=Projekte) nacheinander ausfuehren
- execute $1
-
- shift
- done
-else
- if [ $# -eq 2 ] ; then
- if [ $1 == -xtramvncmd ] ; then
- XTRA_MVN_CMD=$2
- else
- XTRA_MVN_CMD=$NO_XTRA_MVN_CMD
- fi
- fi
-
- for PROJEKTE in `ls $BASE_DEV_DIR` ; do
- # Wenn ja, dann alle vorhandenen Projekte ausfuehren
- if [ $PROJEKTE != scjp ] ; then
- execute $PROJEKTE
- fi
- done
-fi
-
-if [ $TOTAL_SUCCESS_FLAG -ge 1 ] ; then
- printf $TOTAL_SUCCESS_FLAG" Builds waren NICHT erfolgreich!\n"
-else
- printf "Alle Builds waren erfolgreich!\n"
-fi
-
-cd $PWD
-
-printf "\nEnde!\n"
-
+++ /dev/null
-#!/bin/bash
-#######################################
-# Deployment von statischen/PHP-Webseiten
-#######################################
-
-SVN_BASE_URL=http://svn.obg-it.de/obgit/obgit_repo
-
-TMP_FILE=/tmp/sed.tmp.dat
-
-TOKEN_FILE=deploy.token
-TOKEN_UPLOAD_URL=ole-b-gehrmann.de:/home/oleb/deploy/
-
-PRODUCT_VERSION=$1
-BUGZILLA_TICKET_NR=$2
-BASEDIR=$3
-
-if [ $# -ne 3 -a $# -ne 2 ] ; then
- printf "\nFehler!\nUsage: deployphp.sh PRODUCT_VERSION BUGZILLA_TICKET_NR [BASEDIR]\n\n"
- exit 1;
-fi
-
-#######################################
-# Testen, ob das Verzeichnis trunk heißt
-ANZ_PWD=`pwd | wc -m`
-
-ANZ_TEST=`expr $ANZ_PWD - 5`
-NAME_PROJECT=`pwd | cut -c $ANZ_TEST-`
-if [ $NAME_PROJECT != trunk ] ; then
- echo "Sie sind NICHT im TRUNK-Verzeichnis"
- exit 1;
-fi
-
-#######################################
-# Projektname
-ANZ_TRUNK=`expr $ANZ_PWD - 7`
-NAME_PROJECT=`pwd | cut -c 24-$ANZ_TRUNK`
-printf "Projektname:\t\t\t$NAME_PROJECT\n"
-
-#######################################
-# Versionierungsinformationen schreiben
-# version
-# datum
-DATE=`date +%Y%m%d-%H%M%S`
-DATE_FUER_FILE=`date +%d.%m.%Y`
-VERSION_SUFFIX=`echo "_Rel_"$DATE`
-printf "Version:\t\t\t$DATE\n"
-
-TAG_NAME=`echo $NAME_PROJECT$VERSION_SUFFIX`
-printf "Tagname:\t\t\t$TAG_NAME\n"
-
-FILE_TYPES=( *.php *.css *.js *.txt *.pl )
-for p in "${FILE_TYPES[@]}" ; do
- for f in `find $BASEDIR -maxdepth 1 -name "$p"` ; do
- echo $f;
-
- # Suche nach Datum
- ANZ_TREFFER=`grep \*\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9] $f | wc -l`
- if [ $ANZ_TREFFER -ge 1 ] ; then
- sed s/\*\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9]/\*\ Datum\:\ $DATE_FUER_FILE/ $f > TMP_FILE
- else
- sed '1a\ \/\/ Datum\:\ '$DATE_FUER_FILE $f > TMP_FILE
- fi
- cat TMP_FILE > $f
-
- # Suche nach Version
- ANZ_TREFFER=`grep \*\ Version:\ [0-9].[0-9].[0-9] $f | wc -l`
- if [ $ANZ_TREFFER -ge 1 ] ; then
- sed s/\*\ Version\:\ [0-9].[0-9].[0-9]/\*\ Version\:\ $PRODUCT_VERSION/ $f > TMP_FILE
- else
- sed '1a\ \/\/ Version\:\ '$PRODUCT_VERSION $f > TMP_FILE
- fi
- cat TMP_FILE > $f
-
- # Suche nach SCM
- ANZ_TREFFER=`grep \*\ SCM:\ $f | wc -l`
- if [ $ANZ_TREFFER -eq 0 ] ; then
- SVN_URL=`svn info $f | head -2 | tail -1 | cut -c 6-`
- sed '1a\ \/\/ SCM\:\ SVN\ -\ '$SVN_URL $f > TMP_FILE
- fi
- cat TMP_FILE > $f
-
- done
-done
-
-FILE_TYPES=( *.sql )
-for p in "${FILE_TYPES[@]}" ; do
- for f in `find $BASEDIR -maxdepth 1 -name "$p"` ; do
- echo $f;
-
- # Suche nach Datum
- ANZ_TREFFER=`grep --\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9] $f | wc -l`
- if [ $ANZ_TREFFER -ge 1 ] ; then
- sed s/--\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9]/--\ Datum\:\ $DATE_FUER_FILE/ $f > TMP_FILE
- else
- sed '1a\-- Datum\:\ '$DATE_FUER_FILE $f > TMP_FILE
- fi
- cat TMP_FILE > $f
-
- # Suche nach Version
- ANZ_TREFFER=`grep --\ Version:\ [0-9].[0-9].[0-9] $f | wc -l`
- if [ $ANZ_TREFFER -ge 1 ] ; then
- sed s/--\ Version\:\ [0-9].[0-9].[0-9]/--\ Version\:\ $PRODUCT_VERSION/ $f > TMP_FILE
- else
- sed '1a\-- Version\:\ '$PRODUCT_VERSION $f > TMP_FILE
- fi
- cat TMP_FILE > $f
-
- # Suche nach SCM
- ANZ_TREFFER=`grep \*\ SCM:\ $f | wc -l`
- if [ $ANZ_TREFFER -eq 0 ] ; then
- SVN_URL=`svn info $f | head -2 | tail -1 | cut -c 6-`
- sed '1a\-- SCM\:\ SVN\ -\ '$SVN_URL $f > TMP_FILE
- fi
- cat TMP_FILE > $f
-
- done
-done
-
-FILE_TYPES=( *.html *.xml )
-for p in "${FILE_TYPES[@]}" ; do
- for f in `find $BASEDIR -maxdepth 1 -name "$p"` ; do
- echo $f;
-
- # Suche nach Datum
- ANZ_TREFFER=`grep \<\!--\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9] $f | wc -l`
- if [ $ANZ_TREFFER -ge 1 ] ; then
- sed s/\<\!--\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9]\ --\>/\<\!--\ Datum\:\ $DATE_FUER_FILE\ --\>/ $f > TMP_FILE
- else
- sed '1a\\<\!-- Datum\:\ '$DATE_FUER_FILE'\ --\>' $f > TMP_FILE
- fi
- cat TMP_FILE > $f
-
- # Suche nach Version
- ANZ_TREFFER=`grep \<\!--\ Version:\ [0-9].[0-9].[0-9] $f | wc -l`
- if [ $ANZ_TREFFER -ge 1 ] ; then
- sed s/\<\!--\ Version\:\ [0-9].[0-9].[0-9]\ --\>/\<\!--\ Version\:\ $PRODUCT_VERSION\ --\>/ $f > TMP_FILE
- else
- sed '1a\\<\!-- Version\:\ '$PRODUCT_VERSION'\ --\>' $f > TMP_FILE
- fi
- cat TMP_FILE > $f
-
- # Suche nach SCM
- ANZ_TREFFER=`grep \*\ SCM:\ $f | wc -l`
- if [ $ANZ_TREFFER -eq 0 ] ; then
- SVN_URL=`svn info $f | head -2 | tail -1 | cut -c 6-`
- sed '1a\\<\!-- SCM\:\ SVN\ -\ '$SVN_URL'\ --\>' $f > TMP_FILE
- fi
- cat TMP_FILE > $f
-
- done
-done
-
-FILE_TYPES=( *.sh )
-for p in "${FILE_TYPES[@]}" ; do
- for f in `find $BASEDIR -maxdepth 1 -name "$p"` ; do
- echo $f;
-
- # Suche nach Datum
- ANZ_TREFFER=`grep \#\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9] $f | wc -l`
- if [ $ANZ_TREFFER -ge 1 ] ; then
- sed s/\#\ Datum\:\ [0-9][0-9].[0-9][0-9].[0-9][0-9][0-9][0-9]/\#\ Datum\:\ $DATE_FUER_FILE/ $f > TMP_FILE
- else
- sed '1a\\# Datum\:\ '$DATE_FUER_FILE $f > TMP_FILE
- fi
- cat TMP_FILE > $f
-
- # Suche nach Version
- ANZ_TREFFER=`grep \#\ Version:\ [0-9].[0-9].[0-9] $f | wc -l`
- if [ $ANZ_TREFFER -ge 1 ] ; then
- sed s/\#\ Version\:\ [0-9].[0-9].[0-9]/\#\ Version\:\ $PRODUCT_VERSION/ $f > TMP_FILE
- else
- sed '1a\\# Version\:\ '$PRODUCT_VERSION $f > TMP_FILE
- fi
- cat TMP_FILE > $f
-
- # Suche nach SCM
- ANZ_TREFFER=`grep \*\ SCM:\ $f | wc -l`
- if [ $ANZ_TREFFER -eq 0 ] ; then
- SVN_URL=`svn info $f | head -2 | tail -1 | cut -c 6-`
- sed '1a\\# SCM\:\ SVN\ -\ '$SVN_URL $f > TMP_FILE
- fi
- cat TMP_FILE > $f
-
- done
-done
-
-#######################################
-# svn ci / tag / branch
-
-svn st
-
-# Geänderte Files (Versionsinformationen!) committen
-VERSION_COMMIT_SVN_MSG=`echo "Deployment von Projekt \"$NAME_PROJECT\" auf Produktivumgebung - http://ticket.obg-it.de/show_bug.cgi?id=$BUGZILLA_TICKET_NR"`
-printf "SVN-Log Commit:\t\t\t$VERSION_COMMIT_SVN_MSG\n"
-#svn ci . -m"$VERSION_COMMIT_SVN_MSG"
-
-# Trunk taggen
-VERSION_TAG_SVN_MSG=`echo "Tag vom trunk auf \"$TAG_NAME\" von Projekt \"$NAME_PROJECT\" - http://ticket.obg-it.de/show_bug.cgi?id=$BUGZILLA_TICKET_NR"`
-printf "SVN-Log Tag:\t\t\t$VERSION_TAG_SVN_MSG\n"
-#svn cp $SVN_BASE_URL/trunk/* $SVN_BASE_URL/tags/$TAG_NAME/ -m"$VERSION_TAG_SVN_MSG"
-
-# Tag auschecken
-printf "SVN Checkout neuer Tag:\t\t$SVN_BASE_URL/$TAG_NAME\n"
-#svn co $SVN_BASE_URL/$TAG_NAME ../tags/
-
-
-#######################################
-# token schreiben
-
-# Falls noch kein Token vorhanden ist
-if [ ! -e $TOKEN_FILE ] ; then
- # Verzeichnis auf dem Ziel abfragen
- echo "Verzeichnis (ab /) angeben, in das die Version kopiert werden soll."
- read DEPLOY_TARGET_DIR
-else
- DEPLOY_TARGET_DIR=`head -1 $TOKEN_FILE`
-fi
-
-echo $DEPLOY_TARGET_DIR > $TOKEN_FILE
-printf "Ziel in Produktivumgebung:\t$DEPLOY_TARGET_DIR\n"
-
-echo $SVN_BASE_URL"/tags/"$TAG_NAME >> $TOKEN_FILE
-
-printf "SCP Token:\t\t\t$TOKEN_FILE nach $TOKEN_UPLOAD_URL\n"
-# scp $TOKEN_FILE $TOKEN_UPLOAD_URL
-
-rm TMP_FILE
-
-printf "Deployment (clientseitig) fertig!\n"
+++ /dev/null
-#!/bin/bash
-#######################################
-# SVN checkout bei nicht existierenden Projekten
-# SVN update bei existierenden Projekten
-#######################################
-
-# Repo
-SVN_BASE_URL=http://svn.obg-it.de/obgit/obgit_repo
-
-# Basis SVN-Workingcopy
-BASE_DEV_DIR=$HOME/it/projekte
-
-# Arten der Basis-Verzeichnisse im SVN
-SVN_TREES=(trunk branches tags doc)
-
-# Ausfuehrungsmethode
-execute() {
- PROJEKT=`echo $1`
- printf "\n+------Projekt: -- "$PROJEKT" ----+"
-
- # Für jedes Basis-Verzeichnis
- for DIR in "${SVN_TREES[@]}" ; do
-
- # Projekt-Workingcopy
- PROJEKT_DIR=$BASE_DEV_DIR/$PROJEKT/$DIR
-
- # Projekt-URL im Repository
- SVN_PROJEKT_URL=$SVN_BASE_URL/$DIR/$PROJEKT
-
- # Existiert die Projekt-Workingcopy?
- if [ ! -d $PROJEKT_DIR ] ; then
- # Nein?
-
- # Dann Verzeichnis herstellen
- printf "\n\t- creating $PROJEKT_DIR"
- mkdir -p $PROJEKT_DIR
-
- # Dann SVN-Checkout
- printf "\n\t- svn checkout $SVN_PROJEKT_URL"
- svn co $SVN_PROJEKT_URL $PROJEKT_DIR
- else
- # Ja?
-
- # Dann SVN-Update
- printf "\n\t- svn up $SVN_PROJEKT_URL"
- svn up $PROJEKT_DIR
- fi
- printf "\n"
- done
-}
-
-
-echo $#
-
-# Pruefen, ob Übergabeparameter (=Projektname) vorhanden
-if [ $# -ge 1 ] ; then
- while [ $# -ne 0 ] ; do
- # Wenn ja, dann alle Parameter (=Projekte) nacheinander ausfuehren
- execute $1
-
- shift
- done
-else
- for PROJEKTE in `svn ls $SVN_BASE_URL/trunk` ; do
- # Wenn ja, dann alle vorhandenen Projekte im SVN ausfuehren
- execute $PROJEKTE
- done
-fi
-
-printf "\nEnde!\n"
-
+++ /dev/null
-#!/bin/bash
-
-ho=/home/oleb
-fb=fullbackup20110516/oleb
-dirs=(bin bilder Downloads finanzen firma geschaeftlich it kommunikation persoenlich privat sport wissen)
-
-for i in ${dirs[@]} ; do
- echo $i
- kdiff3 $ho/$i $ho/$fb/$i &
-done
-
-exit 0
-
+++ /dev/null
-#!/bin/bash
-
-srcfile=$1
-line=$2
-insertstring=$3
-
-tmpfile=/tmp/in2file.sh.tmp
-
-filelen=`wc -l < $srcfile`
-
-kopf=`expr $line - 1`
-head -$kopf $srcfile > $tmpfile
-
-echo $insertstring >> $tmpfile
-
-fuss=`expr $filelen - $line + 1`
-tail -$fuss $srcfile >> $tmpfile
-
-cp $srcfile $srcfile.old
-mv $tmpfile $srcfile
-
-less $srcfile
-
-exit 0
+++ /dev/null
-#!/bin/bash
-xrandr --newmode "1280x1024_60.00" 108.88 1280 1360 1496 1712 1024 1025 1028 1060 -HSync +Vsync
-xrandr --addmode VGA-0 "1280x1024_60.00"
-xrandr --output VGA-0 --mode "1280x1024_60.00"
-
+++ /dev/null
-#!/bin/bash
-#######################################
-# Startskript
-# Aufgaben: Resolver korrigieren, Shares mounten
-#######################################
-
-sudo bash /root/bin/correctresolver.sh
-
-sudo bash /root/bin/mountall.sh
-
-#######################################
-
-default="false"
-donnervogel="false"
-
-while getopts dDiIogm opt
-do
- case $opt in
- m)
- printf "\n(m)edia"
- printf "\n\t- K3b" ; k3b 2>/dev/null &
- printf "\n\t- VLC" ; vlc 2>/dev/null &
- default="true"
- ;;
- g)
- printf "\n(g)rafic"
- printf "\n\t- Scribus" ; scribus 2>/dev/null &
- printf "\n\t- Gimp" ; gimp 2>/dev/null &
- printf "\n\t- Inkscape" ; inkscape 2>/dev/null &
- default="true"
- ;;
- d)
- printf "\n(d)evelopment"
- printf "\n\t- Eclipse" ; /usr/share/eclipse/eclipse 2>/dev/null &
- default="true"
- ;;
- D)
- printf "\n(D)evelopment"
- printf "\n\t- Eclipse" ; /usr/share/eclipse/eclipse 2>/dev/null &
- printf "\n\t- Virtualbox" ; virtualbox 2>/dev/null &
- printf "\n\t- Dia" ; dia 2>/dev/null &
- printf "\n\t- MySQL Workbench" ; mysql-workbench 2>/dev/null &
- printf "\n\t- PGAdmin" ; pgadmin3 2>/dev/null &
- default="true"
- ;;
- o)
- printf "\n(o)ffice"
- printf "\n\t- Freemind" ; freemind 2>/dev/null &
- printf "\n\t- Libreoffice" ; libreoffice 2>/dev/null &
- donnervogel="true"
- default="true"
- ;;
- I)
- printf "\n(I)nternet"
- printf "\n\t- Opera" ; opera 2>/dev/null &
- printf "\n\t- Skype" ; skype 2>/dev/null &
- donnervogel="true"
- default="true"
- ;;
- i)
- printf "\n(i)nternet"
- donnervogel="true"
- default="true"
- ;;
- esac
-done
-
-#echo $default
-
-if [ $donnervogel = "true" ] ; then
- printf "\ndonnervogel"
- printf "\n\t- Thunderbird" ; thunderbird 2>/dev/null &
-fi
-
-if [ $default = "true" ] ; then
- printf "\ndefault"
- printf "\n\t- Firefox" ; firefox 2>/dev/null &
- printf "\n\t- Nemo" ; nemo 2>/dev/null &
-fi
-
-echo
-
-svn up ~/it/projekte/trunk/
-svn up ~/it/projekte/tags/
-svn up ~/it/projekte/branches/
-svn up ~/it/projekte/doc/
-
-
-echo
-
-exit 0;
+++ /dev/null
-#!/bin/bash
-#######################################
-# Resolver.conf kopieren
-#######################################
-
-sudo cp /root/bin/resolv.conf /etc
-
-exit 0;
+++ /dev/null
-#!/bin/bash
-#######################################
-# Mount von Shares, wenn Ping zu Host erfolgreich
-#######################################
-
-# SMB-Shares auf Host hermes
-shares=(movies music oleb software vm)
-shares_hebe=(gehrmann pictures transfer)
-
-# SMB-Mountoptions für Host hermes
-mountoptions_hermes=user=oleb,password=859im,uid=1000,gid=105,setuids,noperm
-mountoptions_hebe=user=oleb,password=859im,uid=1000,gid=1000,setuids,noperm
-
-#######################################
-# SMB
-printf "\nping hermes"
-
-# Ping hermes
-if ping -c 1 -w 1 hermes > /dev/null; then
- cd /mnt/hermes/
- # Jedes share mounten
- for s in "${shares[@]}" ; do
- printf "\n\t- mounting $s"
- sudo mount -t cifs //hermes/$s /mnt/hermes/$s -o $mountoptions_hermes
- done
-fi
-
-printf "\nping hebe"
-
-# Ping hebe
-if ping -c 1 -w 1 hebe > /dev/null; then
- cd /mnt/hebe/
- # Jedes share mounten
- for s in "${shares_hebe[@]}" ; do
- printf "\n\t- mounting $s"
- sudo mount -t cifs //hebe/$s /mnt/hebe/$s -o $mountoptions_hebe
- done
-fi
-
-#######################################
-# NFS
-#printf "\nping athene"
-
-# Ping athene
-#if ping -c 1 -w 1 athene > /dev/null; then
-# printf "\n\t- mounting athene"
- # Jedes share
-# sudo mount -t nfs athene:/ /mnt/athene
-#fi
-
-echo ""
-
-exit 0;
-
-#######################################
-# SSHFS
-# printf "\nping strato"
-#sshfs ole-b-gehrmann.de:/home/oleb/upload /home/oleb/strato
-
+++ /dev/null
-### /etc/resolv.conf file autogenerated by netconfig!
-#
-# Before you change this file manually, consider to define the
-# static DNS configuration using the following variables in the
-# /etc/sysconfig/network/config file:
-# NETCONFIG_DNS_STATIC_SEARCHLIST
-# NETCONFIG_DNS_STATIC_SERVERS
-# NETCONFIG_DNS_FORWARDER
-# or disable DNS configuration updates via netconfig by setting:
-# NETCONFIG_DNS_POLICY=''
-#
-# See also the netconfig(8) manual page and other documentation.
-#
-# Note: Manual change of this file disables netconfig too, but
-# may get lost when this file contains comments or empty lines
-# only, the netconfig settings are same with settings in this
-# file and in case of a "netconfig update -f" call.
-#
-### Please remove (at least) this line when you modify the file!
-search olymp
-nameserver 145.253.2.11
-nameserver 80.69.98.110
+++ /dev/null
-#
-# Based upon the NCSA server configuration files originally by Rob McCool.
-#
-# This is the main Apache server configuration file. It contains the
-# configuration directives that give the server its instructions.
-# See http://httpd.apache.org/docs/2.2/ for detailed information about
-# the directives.
-#
-# Do NOT simply read the instructions in here without understanding
-# what they do. They're here only as hints or reminders. If you are unsure
-# consult the online docs. You have been warned.
-#
-# The configuration directives are grouped into three basic sections:
-# 1. Directives that control the operation of the Apache server process as a
-# whole (the 'global environment').
-# 2. Directives that define the parameters of the 'main' or 'default' server,
-# which responds to requests that aren't handled by a virtual host.
-# These directives also provide default values for the settings
-# of all virtual hosts.
-# 3. Settings for virtual hosts, which allow Web requests to be sent to
-# different IP addresses or hostnames and have them handled by the
-# same Apache server process.
-#
-# Configuration and logfile names: If the filenames you specify for many
-# of the server's control files begin with "/" (or "drive:/" for Win32), the
-# server will use that explicit path. If the filenames do *not* begin
-# with "/", the value of ServerRoot is prepended -- so "foo.log"
-# with ServerRoot set to "/etc/apache2" will be interpreted by the
-# server as "/etc/apache2/foo.log".
-#
-
-### Section 1: Global Environment
-#
-# The directives in this section affect the overall operation of Apache,
-# such as the number of concurrent requests it can handle or where it
-# can find its configuration files.
-#
-
-#
-# ServerRoot: The top of the directory tree under which the server's
-# configuration, error, and log files are kept.
-#
-# NOTE! If you intend to place this on an NFS (or otherwise network)
-# mounted filesystem then please read the LockFile documentation (available
-# at <URL:http://httpd.apache.org/docs/2.2/mod/mpm_common.html#lockfile>);
-# you will save yourself a lot of trouble.
-#
-# Do NOT add a slash at the end of the directory path.
-#
-#ServerRoot "/etc/apache2"
-
-#
-# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
-#
-Mutex file:${APACHE_LOCK_DIR} default
-#LockFile ${APACHE_LOCK_DIR}/accept.lock
-
-#
-# PidFile: The file in which the server should record its process
-# identification number when it starts.
-# This needs to be set in /etc/apache2/envvars
-#
-PidFile ${APACHE_PID_FILE}
-
-#
-# Timeout: The number of seconds before receives and sends time out.
-#
-Timeout 300
-
-#
-# KeepAlive: Whether or not to allow persistent connections (more than
-# one request per connection). Set to "Off" to deactivate.
-#
-KeepAlive On
-
-#
-# MaxKeepAliveRequests: The maximum number of requests to allow
-# during a persistent connection. Set to 0 to allow an unlimited amount.
-# We recommend you leave this number high, for maximum performance.
-#
-MaxKeepAliveRequests 100
-
-#
-# KeepAliveTimeout: Number of seconds to wait for the next request from the
-# same client on the same connection.
-#
-KeepAliveTimeout 15
-
-##
-## Server-Pool Size Regulation (MPM specific)
-##
-
-# prefork MPM
-# StartServers: number of server processes to start
-# MinSpareServers: minimum number of server processes which are kept spare
-# MaxSpareServers: maximum number of server processes which are kept spare
-# MaxClients: maximum number of server processes allowed to start
-# MaxRequestsPerChild: maximum number of requests a server process serves
-<IfModule mpm_prefork_module>
- StartServers 5
- MinSpareServers 5
- MaxSpareServers 10
- MaxClients 150
- MaxRequestsPerChild 0
-</IfModule>
-
-# worker MPM
-# StartServers: initial number of server processes to start
-# MaxClients: maximum number of simultaneous client connections
-# MinSpareThreads: minimum number of worker threads which are kept spare
-# MaxSpareThreads: maximum number of worker threads which are kept spare
-# ThreadLimit: ThreadsPerChild can be changed to this maximum value during a
-# graceful restart. ThreadLimit can only be changed by stopping
-# and starting Apache.
-# ThreadsPerChild: constant number of worker threads in each server process
-# MaxRequestsPerChild: maximum number of requests a server process serves
-<IfModule mpm_worker_module>
- StartServers 2
- MinSpareThreads 25
- MaxSpareThreads 75
- ThreadLimit 64
- ThreadsPerChild 25
- MaxClients 150
- MaxRequestsPerChild 0
-</IfModule>
-
-# event MPM
-# StartServers: initial number of server processes to start
-# MaxClients: maximum number of simultaneous client connections
-# MinSpareThreads: minimum number of worker threads which are kept spare
-# MaxSpareThreads: maximum number of worker threads which are kept spare
-# ThreadsPerChild: constant number of worker threads in each server process
-# MaxRequestsPerChild: maximum number of requests a server process serves
-<IfModule mpm_event_module>
- StartServers 2
- MaxClients 150
- MinSpareThreads 25
- MaxSpareThreads 75
- ThreadLimit 64
- ThreadsPerChild 25
- MaxRequestsPerChild 0
-</IfModule>
-
-# These need to be set in /etc/apache2/envvars
-User ${APACHE_RUN_USER}
-Group ${APACHE_RUN_GROUP}
-
-#
-# AccessFileName: The name of the file to look for in each directory
-# for additional configuration directives. See also the AllowOverride
-# directive.
-#
-
-AccessFileName .htaccess
-
-#
-# The following lines prevent .htaccess and .htpasswd files from being
-# viewed by Web clients.
-#
-<Files ~ "^\.ht">
- Order allow,deny
- Deny from all
- Satisfy all
-</Files>
-
-#
-# HostnameLookups: Log the names of clients or just their IP addresses
-# e.g., www.apache.org (on) or 204.62.129.132 (off).
-# The default is off because it'd be overall better for the net if people
-# had to knowingly turn this feature on, since enabling it means that
-# each client request will result in AT LEAST one lookup request to the
-# nameserver.
-#
-HostnameLookups Off
-
-# ErrorLog: The location of the error log file.
-# If you do not specify an ErrorLog directive within a <VirtualHost>
-# container, error messages relating to that virtual host will be
-# logged here. If you *do* define an error logfile for a <VirtualHost>
-# container, that host's errors will be logged there and not here.
-#
-ErrorLog ${APACHE_LOG_DIR}/error.log
-
-#
-# LogLevel: Control the number of messages logged to the error_log.
-# Possible values include: debug, info, notice, warn, error, crit,
-# alert, emerg.
-#
-LogLevel warn
-
-# Include module configuration:
-Include mods-enabled/*.load
-Include mods-enabled/*.conf
-
-# Include all the user configurations:
-Include httpd.conf
-
-# Include ports listing
-Include ports.conf
-
-#
-# The following directives define some format nicknames for use with
-# a CustomLog directive (see below).
-# If you are behind a reverse proxy, you might want to change %h into %{X-Forwarded-For}i
-#
-LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
-LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
-LogFormat "%h %l %u %t \"%r\" %>s %O" common
-LogFormat "%{Referer}i -> %U" referer
-LogFormat "%{User-agent}i" agent
-
-CustomLog /var/log/apache2/other_vhosts_access.log vhost_combined
-
-
-# Include of directories ignores editors' and dpkg's backup files,
-# see README.Debian for details.
-
-# Include of directories ignores editors' and dpkg's backup files,
-# see README.Debian for details.
-
-# Include generic snippets of statements
-Include /etc/apache2/conf.d/
-
-# Include the virtual host configurations:
-Include /etc/apache2/sites-enabled/*.conf
-
-
+++ /dev/null
-# Read the documentation before enabling AddDefaultCharset.
-# In general, it is only a good idea if you know that all your files
-# have this encoding. It will override any encoding given in the files
-# in meta http-equiv or xml encoding tags.
-
-#AddDefaultCharset UTF-8
+++ /dev/null
-#
-# Customizable error responses come in three flavors:
-# 1) plain text 2) local redirects 3) external redirects
-#
-# Some examples:
-#ErrorDocument 500 "The server made a boo boo."
-#ErrorDocument 404 /missing.html
-#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
-#ErrorDocument 402 http://www.example.com/subscription_info.html
-#
-
-#
-# Putting this all together, we can internationalize error responses.
-#
-# We use Alias to redirect any /error/HTTP_<error>.html.var response to
-# our collection of by-error message multi-language collections. We use
-# includes to substitute the appropriate text.
-#
-# You can modify the messages' appearance without changing any of the
-# default HTTP_<error>.html.var files by adding the line:
-#
-# Alias /error/include/ "/your/include/path/"
-#
-# which allows you to create your own set of files by starting with the
-# /usr/share/apache2/error/include/ files and copying them to /your/include/path/,
-# even on a per-VirtualHost basis. If you include the Alias in the global server
-# context, is has to come _before_ the 'Alias /error/ ...' line.
-#
-# The default include files will display your Apache version number and your
-# ServerAdmin email address regardless of the setting of ServerSignature.
-#
-# WARNING: The configuration below will NOT work out of the box if you have a
-# SetHandler directive in a <Location /> context somewhere. Adding
-# the following three lines AFTER the <Location /> context should
-# make it work in most cases:
-# <Location /error/>
-# SetHandler none
-# </Location>
-#
-# The internationalized error documents require mod_alias, mod_include
-# and mod_negotiation. To activate them, uncomment the following 37 lines.
-
-#<IfModule mod_negotiation.c>
-# <IfModule mod_include.c>
-# <IfModule mod_alias.c>
-#
-# Alias /error/ "/usr/share/apache2/error/"
-#
-# <Directory "/usr/share/apache2/error">
-# AllowOverride None
-# Options IncludesNoExec
-# AddOutputFilter Includes html
-# AddHandler type-map var
-# Order allow,deny
-# Allow from all
-# LanguagePriority en cs de es fr it nl sv pt-br ro
-# ForceLanguagePriority Prefer Fallback
-# </Directory>
-#
-# ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
-# ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
-# ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
-# ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
-# ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
-# ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
-# ErrorDocument 410 /error/HTTP_GONE.html.var
-# ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
-# ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
-# ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
-# ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
-# ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
-# ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
-# ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
-# ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
-# ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
-# ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
-# </IfModule>
-# </IfModule>
-#</IfModule>
+++ /dev/null
-# Define an access log for VirtualHosts that don't define their own logfile
-CustomLog ${APACHE_LOG_DIR}/other_vhosts_access.log vhost_combined
+++ /dev/null
-#
-# Disable access to the entire file system except for the directories that
-# are explicitly allowed later.
-#
-# This currently breaks the configurations that come with some web application
-# Debian packages. It will be made the default for the release after lenny.
-#
-#<Directory />
-# AllowOverride None
-# Order Deny,Allow
-# Deny from all
-#</Directory>
-
-
-# Changing the following options will not really affect the security of the
-# server, but might make attacks slightly more difficult in some cases.
-
-#
-# ServerTokens
-# This directive configures what you return as the Server HTTP response
-# Header. The default is 'Full' which sends information about the OS-Type
-# and compiled in modules.
-# Set to one of: Full | OS | Minimal | Minor | Major | Prod
-# where Full conveys the most information, and Prod the least.
-#
-#ServerTokens Minimal
-ServerTokens OS
-#ServerTokens Full
-
-#
-# Optionally add a line containing the server version and virtual host
-# name to server-generated pages (internal error documents, FTP directory
-# listings, mod_status and mod_info output etc., but not CGI generated
-# documents or custom error documents).
-# Set to "EMail" to also include a mailto: link to the ServerAdmin.
-# Set to one of: On | Off | EMail
-#
-#ServerSignature Off
-ServerSignature On
-
-#
-# Allow TRACE method
-#
-# Set to "extended" to also reflect the request body (only for testing and
-# diagnostic purposes).
-#
-# Set to one of: On | Off | extended
-#
-TraceEnable Off
-#TraceEnable On
-
+++ /dev/null
-# envvars - default environment variables for apache2ctl
-
-# this won't be correct after changing uid
-unset HOME
-
-# for supporting multiple apache2 instances
-if [ "${APACHE_CONFDIR##/etc/apache2-}" != "${APACHE_CONFDIR}" ] ; then
- SUFFIX="-${APACHE_CONFDIR##/etc/apache2-}"
-else
- SUFFIX=
-fi
-
-# Since there is no sane way to get the parsed apache2 config in scripts, some
-# settings are defined via environment variables and then used in apache2ctl,
-# /etc/init.d/apache2, /etc/logrotate.d/apache2, etc.
-export APACHE_RUN_USER=www-data
-export APACHE_RUN_GROUP=www-data
-export APACHE_PID_FILE=/var/run/apache2$SUFFIX.pid
-export APACHE_RUN_DIR=/var/run/apache2$SUFFIX
-export APACHE_LOCK_DIR=/var/lock/apache2$SUFFIX
-# Only /var/log/apache2 is handled by /etc/logrotate.d/apache2.
-export APACHE_LOG_DIR=/var/log/apache2$SUFFIX
-
-## The locale used by some modules like mod_dav
-export LANG=C
-## Uncomment the following line to use the system default locale instead:
-#. /etc/default/locale
-
-export LANG
-
-## The command to get the status for 'apache2ctl status'.
-## Some packages providing 'www-browser' need '--dump' instead of '-dump'.
-#export APACHE_LYNX='www-browser -dump'
+++ /dev/null
-# Magic data for mod_mime_magic (originally for file(1) command)
-#
-# The format is 4-5 columns:
-# Column #1: byte number to begin checking from, ">" indicates continuation
-# Column #2: type of data to match
-# Column #3: contents of data to match
-# Column #4: MIME type of result
-# Column #5: MIME encoding of result (optional)
-
-#------------------------------------------------------------------------------
-# Localstuff: file(1) magic for locally observed files
-# Add any locally observed files here.
-
-# Real Audio (Magic .ra\0375)
-0 belong 0x2e7261fd audio/x-pn-realaudio
-0 string .RMF application/vnd.rn-realmedia
-
-#video/x-pn-realvideo
-#video/vnd.rn-realvideo
-#application/vnd.rn-realmedia
-# sigh, there are many mimes for that but the above are the most common.
-
-# Taken from magic, converted to magic.mime
-# mime types according to http://www.geocities.com/nevilo/mod.htm:
-# audio/it .it
-# audio/x-zipped-it .itz
-# audio/xm fasttracker modules
-# audio/x-s3m screamtracker modules
-# audio/s3m screamtracker modules
-# audio/x-zipped-mod mdz
-# audio/mod mod
-# audio/x-mod All modules (mod, s3m, 669, mtm, med, xm, it, mdz, stm, itz, xmz, s3z)
-
-# Taken from loader code from mikmod version 2.14
-# by Steve McIntyre (stevem@chiark.greenend.org.uk)
-# <doj@cubic.org> added title printing on 2003-06-24
-0 string MAS_UTrack_V00
->14 string >/0 audio/x-mod
-#audio/x-tracker-module
-
-#0 string UN05 MikMod UNI format module sound data
-
-0 string Extended\ Module: audio/x-mod
-#audio/x-tracker-module
-##>17 string >\0 Title: "%s"
-
-21 string/c \!SCREAM! audio/x-mod
-#audio/x-screamtracker-module
-21 string BMOD2STM audio/x-mod
-#audio/x-screamtracker-module
-1080 string M.K. audio/x-mod
-#audio/x-protracker-module
-#>0 string >\0 Title: "%s"
-1080 string M!K! audio/x-mod
-#audio/x-protracker-module
-#>0 string >\0 Title: "%s"
-1080 string FLT4 audio/x-mod
-#audio/x-startracker-module
-#>0 string >\0 Title: "%s"
-1080 string FLT8 audio/x-mod
-#audio/x-startracker-module
-#>0 string >\0 Title: "%s"
-1080 string 4CHN audio/x-mod
-#audio/x-fasttracker-module
-#>0 string >\0 Title: "%s"
-1080 string 6CHN audio/x-mod
-#audio/x-fasttracker-module
-#>0 string >\0 Title: "%s"
-1080 string 8CHN audio/x-mod
-#audio/x-fasttracker-module
-#>0 string >\0 Title: "%s"
-1080 string CD81 audio/x-mod
-#audio/x-oktalyzer-tracker-module
-#>0 string >\0 Title: "%s"
-1080 string OKTA audio/x-mod
-#audio/x-oktalyzer-tracker-module
-#>0 string >\0 Title: "%s"
-# Not good enough.
-#1082 string CH
-#>1080 string >/0 %.2s-channel Fasttracker "oktalyzer" module sound data
-1080 string 16CN audio/x-mod
-#audio/x-taketracker-module
-#>0 string >\0 Title: "%s"
-1080 string 32CN audio/x-mod
-#audio/x-taketracker-module
-#>0 string >\0 Title: "%s"
-
-# Impuse tracker module (it)
-0 string IMPM audio/x-mod
-#>4 string >\0 "%s"
-#>40 leshort !0 compatible w/ITv%x
-#>42 leshort !0 created w/ITv%x
-
-#------------------------------------------------------------------------------
-# end local stuff
-#------------------------------------------------------------------------------
-
-# xml based formats!
-
-# svg
-
-0 string \<?xml
-# text/xml
->38 string \<\!DOCTYPE\040svg image/svg+xml
-
-
-# xml
-0 string \<?xml text/xml
-
-
-#------------------------------------------------------------------------------
-# Java
-
-0 short 0xcafe
->2 short 0xbabe application/java
-
-#------------------------------------------------------------------------------
-# audio: file(1) magic for sound formats
-#
-# from Jan Nicolai Langfeldt <janl@ifi.uio.no>,
-#
-
-# Sun/NeXT audio data
-0 string .snd
->12 belong 1 audio/basic
->12 belong 2 audio/basic
->12 belong 3 audio/basic
->12 belong 4 audio/basic
->12 belong 5 audio/basic
->12 belong 6 audio/basic
->12 belong 7 audio/basic
-
->12 belong 23 audio/x-adpcm
-
-# DEC systems (e.g. DECstation 5000) use a variant of the Sun/NeXT format
-# that uses little-endian encoding and has a different magic number
-# (0x0064732E in little-endian encoding).
-0 lelong 0x0064732E
->12 lelong 1 audio/x-dec-basic
->12 lelong 2 audio/x-dec-basic
->12 lelong 3 audio/x-dec-basic
->12 lelong 4 audio/x-dec-basic
->12 lelong 5 audio/x-dec-basic
->12 lelong 6 audio/x-dec-basic
->12 lelong 7 audio/x-dec-basic
-# compressed (G.721 ADPCM)
->12 lelong 23 audio/x-dec-adpcm
-
-# Bytes 0-3 of AIFF, AIFF-C, & 8SVX audio files are "FORM"
-# AIFF audio data
-8 string AIFF audio/x-aiff
-# AIFF-C audio data
-8 string AIFC audio/x-aiff
-# IFF/8SVX audio data
-8 string 8SVX audio/x-aiff
-
-
-
-# Creative Labs AUDIO stuff
-# Standard MIDI data
-0 string MThd audio/unknown
-#>9 byte >0 (format %d)
-#>11 byte >1 using %d channels
-# Creative Music (CMF) data
-0 string CTMF audio/unknown
-# SoundBlaster instrument data
-0 string SBI audio/unknown
-# Creative Labs voice data
-0 string Creative\ Voice\ File audio/unknown
-## is this next line right? it came this way...
-#>19 byte 0x1A
-#>23 byte >0 - version %d
-#>22 byte >0 \b.%d
-
-# [GRR 950115: is this also Creative Labs? Guessing that first line
-# should be string instead of unknown-endian long...]
-#0 long 0x4e54524b MultiTrack sound data
-#0 string NTRK MultiTrack sound data
-#>4 long x - version %ld
-
-# Microsoft WAVE format (*.wav)
-# [GRR 950115: probably all of the shorts and longs should be leshort/lelong]
-# Microsoft RIFF
-0 string RIFF
-# - WAVE format
->8 string WAVE audio/x-wav
->8 string/B AVI video/x-msvideo
-#
->8 string CDRA image/x-coreldraw
-
-# AAC (aka MPEG-2 NBC)
-0 beshort&0xfff6 0xfff0 audio/X-HX-AAC-ADTS
-0 string ADIF audio/X-HX-AAC-ADIF
-0 beshort&0xffe0 0x56e0 audio/MP4A-LATM
-0 beshort 0x4De1 audio/MP4A-LATM
-
-# MPEG Layer 3 sound files
-0 beshort&0xfffe =0xfffa audio/mpeg
-#MP3 with ID3 tag
-0 string ID3 audio/mpeg
-# Ogg/Vorbis
-0 string OggS application/ogg
-
-#------------------------------------------------------------------------------
-# c-lang: file(1) magic for C programs or various scripts
-#
-
-# XPM icons (Greg Roelofs, newt@uchicago.edu)
-# ideally should go into "images", but entries below would tag XPM as C source
-0 string /*\ XPM image/x-xpmi 7bit
-
-# 3DS (3d Studio files)
-#16 beshort 0x3d3d image/x-3ds
-
-# this first will upset you if you're a PL/1 shop... (are there any left?)
-# in which case rm it; ascmagic will catch real C programs
-# C or REXX program text
-#0 string /* text/x-c
-# C++ program text
-#0 string // text/x-c++
-
-#------------------------------------------------------------------------------
-# commands: file(1) magic for various shells and interpreters
-#
-#0 string :\ shell archive or commands for antique kernel text
-0 string #!/bin/sh application/x-shellscript
-0 string #!\ /bin/sh application/x-shellscript
-0 string #!/bin/csh application/x-shellscript
-0 string #!\ /bin/csh application/x-shellscript
-# korn shell magic, sent by George Wu, gwu@clyde.att.com
-0 string #!/bin/ksh application/x-shellscript
-0 string #!\ /bin/ksh application/x-shellscript
-0 string #!/bin/tcsh application/x-shellscript
-0 string #!\ /bin/tcsh application/x-shellscript
-0 string #!/usr/local/tcsh application/x-shellscript
-0 string #!\ /usr/local/tcsh application/x-shellscript
-0 string #!/usr/local/bin/tcsh application/x-shellscript
-0 string #!\ /usr/local/bin/tcsh application/x-shellscript
-# bash shell magic, from Peter Tobias (tobias@server.et-inf.fho-emden.de)
-0 string #!/bin/bash application/x-shellscript
-0 string #!\ /bin/bash application/x-shellscript
-0 string #!/usr/local/bin/bash application/x-shellscript
-0 string #!\ /usr/local/bin/bash application/x-shellscript
-
-#
-# zsh/ash/ae/nawk/gawk magic from cameron@cs.unsw.oz.au (Cameron Simpson)
-0 string #!/bin/zsh application/x-shellscript
-0 string #!/usr/bin/zsh application/x-shellscript
-0 string #!/usr/local/bin/zsh application/x-shellscript
-0 string #!\ /usr/local/bin/zsh application/x-shellscript
-0 string #!/usr/local/bin/ash application/x-shellscript
-0 string #!\ /usr/local/bin/ash application/x-shellscript
-#0 string #!/usr/local/bin/ae Neil Brown's ae
-#0 string #!\ /usr/local/bin/ae Neil Brown's ae
-0 string #!/bin/nawk application/x-nawk
-0 string #!\ /bin/nawk application/x-nawk
-0 string #!/usr/bin/nawk application/x-nawk
-0 string #!\ /usr/bin/nawk application/x-nawk
-0 string #!/usr/local/bin/nawk application/x-nawk
-0 string #!\ /usr/local/bin/nawk application/x-nawk
-0 string #!/bin/gawk application/x-gawk
-0 string #!\ /bin/gawk application/x-gawk
-0 string #!/usr/bin/gawk application/x-gawk
-0 string #!\ /usr/bin/gawk application/x-gawk
-0 string #!/usr/local/bin/gawk application/x-gawk
-0 string #!\ /usr/local/bin/gawk application/x-gawk
-#
-0 string #!/bin/awk application/x-awk
-0 string #!\ /bin/awk application/x-awk
-0 string #!/usr/bin/awk application/x-awk
-0 string #!\ /usr/bin/awk application/x-awk
-# update to distinguish from *.vcf files by Joerg Jenderek: joerg dot jenderek at web dot de
-#0 regex BEGIN[[:space:]]*[{] application/x-awk
-
-# For Larry Wall's perl language. The ``eval'' line recognizes an
-# outrageously clever hack for USG systems.
-# Keith Waclena <keith@cerberus.uchicago.edu>
-0 string #!/bin/perl application/x-perl
-0 string #!\ /bin/perl application/x-perl
-0 string eval\ "exec\ /bin/perl application/x-perl
-0 string #!/usr/bin/perl application/x-perl
-0 string #!\ /usr/bin/perl application/x-perl
-0 string eval\ "exec\ /usr/bin/perl application/x-perl
-0 string #!/usr/local/bin/perl application/x-perl
-0 string #!\ /usr/local/bin/perl application/x-perl
-0 string eval\ "exec\ /usr/local/bin/perl application/x-perl
-
-#------------------------------------------------------------------------------
-# compress: file(1) magic for pure-compression formats (no archives)
-#
-# compress, gzip, pack, compact, huf, squeeze, crunch, freeze, yabba, whap, etc.
-#
-# Formats for various forms of compressed data
-# Formats for "compress" proper have been moved into "compress.c",
-# because it tries to uncompress it to figure out what's inside.
-
-# standard unix compress
-#0 string \037\235 application/x-compress
-
-# gzip (GNU zip, not to be confused with [Info-ZIP/PKWARE] zip archiver)
-#0 string \037\213 application/x-gzip
-
-0 string PK\003\004 application/x-zip
-
-# RAR archiver (Greg Roelofs, newt@uchicago.edu)
-0 string Rar! application/x-rar
-
-# According to gzip.h, this is the correct byte order for packed data.
-0 string \037\036 application/octet-stream
-#
-# This magic number is byte-order-independent.
-#
-0 short 017437 application/octet-stream
-
-# XXX - why *two* entries for "compacted data", one of which is
-# byte-order independent, and one of which is byte-order dependent?
-#
-# compacted data
-0 short 0x1fff application/octet-stream
-0 string \377\037 application/octet-stream
-# huf output
-0 short 0145405 application/octet-stream
-
-# Squeeze and Crunch...
-# These numbers were gleaned from the Unix versions of the programs to
-# handle these formats. Note that I can only uncrunch, not crunch, and
-# I didn't have a crunched file handy, so the crunch number is untested.
-# Keith Waclena <keith@cerberus.uchicago.edu>
-#0 leshort 0x76FF squeezed data (CP/M, DOS)
-#0 leshort 0x76FE crunched data (CP/M, DOS)
-
-# Freeze
-#0 string \037\237 Frozen file 2.1
-#0 string \037\236 Frozen file 1.0 (or gzip 0.5)
-
-# lzh?
-#0 string \037\240 LZH compressed data
-
-257 string ustar\0 application/x-tar posix
-257 string ustar\040\040\0 application/x-tar gnu
-
-0 short 070707 application/x-cpio
-0 short 0143561 application/x-cpio swapped
-
-0 string =<ar> application/x-archive
-0 string \!<arch> application/x-archive
->8 string debian application/x-debian-package
-
-#------------------------------------------------------------------------------
-#
-# RPM: file(1) magic for Red Hat Packages Erik Troan (ewt@redhat.com)
-#
-0 beshort 0xedab
->2 beshort 0xeedb application/x-rpm
-
-0 lelong&0x8080ffff 0x0000081a application/x-arc lzw
-0 lelong&0x8080ffff 0x0000091a application/x-arc squashed
-0 lelong&0x8080ffff 0x0000021a application/x-arc uncompressed
-0 lelong&0x8080ffff 0x0000031a application/x-arc packed
-0 lelong&0x8080ffff 0x0000041a application/x-arc squeezed
-0 lelong&0x8080ffff 0x0000061a application/x-arc crunched
-
-0 leshort 0xea60 application/x-arj
-
-# LHARC/LHA archiver (Greg Roelofs, newt@uchicago.edu)
-2 string -lh0- application/x-lharc lh0
-2 string -lh1- application/x-lharc lh1
-2 string -lz4- application/x-lharc lz4
-2 string -lz5- application/x-lharc lz5
-# [never seen any but the last; -lh4- reported in comp.compression:]
-2 string -lzs- application/x-lha lzs
-2 string -lh\ - application/x-lha lh
-2 string -lhd- application/x-lha lhd
-2 string -lh2- application/x-lha lh2
-2 string -lh3- application/x-lha lh3
-2 string -lh4- application/x-lha lh4
-2 string -lh5- application/x-lha lh5
-2 string -lh6- application/x-lha lh6
-2 string -lh7- application/x-lha lh7
-# Shell archives
-10 string #\ This\ is\ a\ shell\ archive application/octet-stream x-shell
-
-#------------------------------------------------------------------------------
-# frame: file(1) magic for FrameMaker files
-#
-# This stuff came on a FrameMaker demo tape, most of which is
-# copyright, but this file is "published" as witness the following:
-#
-0 string \<MakerFile application/x-frame
-0 string \<MIFFile application/x-frame
-0 string \<MakerDictionary application/x-frame
-0 string \<MakerScreenFon application/x-frame
-0 string \<MML application/x-frame
-0 string \<Book application/x-frame
-0 string \<Maker application/x-frame
-
-#------------------------------------------------------------------------------
-# html: file(1) magic for HTML (HyperText Markup Language) docs
-#
-# from Daniel Quinlan <quinlan@yggdrasil.com>
-#
-0 string/cB \<!DOCTYPE\ html text/html
-0 string/cb \<head text/html
-0 string/cb \<title text/html
-0 string/bc \<html text/html
-0 string \<!-- text/html
-0 string/c \<h1 text/html
-
-0 string \<?xml text/xml
-
-#------------------------------------------------------------------------------
-# images: file(1) magic for image formats (see also "c-lang" for XPM bitmaps)
-#
-# originally from jef@helios.ee.lbl.gov (Jef Poskanzer),
-# additions by janl@ifi.uio.no as well as others. Jan also suggested
-# merging several one- and two-line files into here.
-#
-# XXX - byte order for GIF and TIFF fields?
-# [GRR: TIFF allows both byte orders; GIF is probably little-endian]
-#
-
-# [GRR: what the hell is this doing in here?]
-#0 string xbtoa btoa'd file
-
-# PBMPLUS
-# PBM file
-0 string P1 image/x-portable-bitmap 7bit
-# PGM file
-0 string P2 image/x-portable-greymap 7bit
-# PPM file
-0 string P3 image/x-portable-pixmap 7bit
-# PBM "rawbits" file
-0 string P4 image/x-portable-bitmap
-# PGM "rawbits" file
-0 string P5 image/x-portable-greymap
-# PPM "rawbits" file
-0 string P6 image/x-portable-pixmap
-
-# NIFF (Navy Interchange File Format, a modification of TIFF)
-# [GRR: this *must* go before TIFF]
-0 string IIN1 image/x-niff
-
-# TIFF and friends
-# TIFF file, big-endian
-0 string MM image/tiff
-# TIFF file, little-endian
-0 string II image/tiff
-
-# possible GIF replacements; none yet released!
-# (Greg Roelofs, newt@uchicago.edu)
-#
-# GRR 950115: this was mine ("Zip GIF"):
-# ZIF image (GIF+deflate alpha)
-0 string GIF94z image/unknown
-#
-# GRR 950115: this is Jeremy Wohl's Free Graphics Format (better):
-# FGF image (GIF+deflate beta)
-0 string FGF95a image/unknown
-#
-# GRR 950115: this is Thomas Boutell's Portable Bitmap Format proposal
-# (best; not yet implemented):
-# PBF image (deflate compression)
-0 string PBF image/unknown
-
-# GIF
-0 string GIF image/gif
-
-# JPEG images
-0 beshort 0xffd8 image/jpeg
-
-# PC bitmaps (OS/2, Windoze BMP files) (Greg Roelofs, newt@uchicago.edu)
-0 string BM image/x-ms-bmp
-#>14 byte 12 (OS/2 1.x format)
-#>14 byte 64 (OS/2 2.x format)
-#>14 byte 40 (Windows 3.x format)
-#0 string IC icon
-#0 string PI pointer
-#0 string CI color icon
-#0 string CP color pointer
-#0 string BA bitmap array
-
-# CDROM Filesystems
-32769 string CD001 application/x-iso9660
-
-# Newer StuffIt archives (grant@netbsd.org)
-0 string StuffIt application/x-stuffit
-#>162 string >0 : %s
-
-# BinHex is the Macintosh ASCII-encoded file format (see also "apple")
-# Daniel Quinlan, quinlan@yggdrasil.com
-11 string must\ be\ converted\ with\ BinHex\ 4 application/mac-binhex40
-##>41 string x \b, version %.3s
-
-
-#------------------------------------------------------------------------------
-# lisp: file(1) magic for lisp programs
-#
-# various lisp types, from Daniel Quinlan (quinlan@yggdrasil.com)
-0 string ;; text/plain 8bit
-# Emacs 18 - this is always correct, but not very magical.
-0 string \012( application/x-elc
-# Emacs 19
-0 string ;ELC\023\000\000\000 application/x-elc
-
-#------------------------------------------------------------------------------
-# mail.news: file(1) magic for mail and news
-#
-# There are tests to ascmagic.c to cope with mail and news.
-0 string Relay-Version: message/rfc822 7bit
-0 string #!\ rnews message/rfc822 7bit
-0 string N#!\ rnews message/rfc822 7bit
-0 string Forward\ to message/rfc822 7bit
-0 string Pipe\ to message/rfc822 7bit
-0 string Return-Path: message/rfc822 7bit
-0 string Received: message/rfc822
-0 string Path: message/news 8bit
-0 string Xref: message/news 8bit
-0 string From: message/rfc822 7bit
-0 string Article message/news 8bit
-#------------------------------------------------------------------------------
-# msword: file(1) magic for MS Word files
-#
-# Contributor claims:
-# Reversed-engineered MS Word magic numbers
-#
-
-0 string \376\067\0\043 application/msword
-0 string \320\317\021\340\241\261 application/msword
-0 string \333\245-\0\0\0 application/msword
-
-
-
-#------------------------------------------------------------------------------
-# printer: file(1) magic for printer-formatted files
-#
-
-# PostScript
-0 string %! application/postscript
-0 string \004%! application/postscript
-
-# Acrobat
-# (due to clamen@cs.cmu.edu)
-0 string %PDF- application/pdf
-
-#------------------------------------------------------------------------------
-# sc: file(1) magic for "sc" spreadsheet
-#
-38 string Spreadsheet application/x-sc
-
-#------------------------------------------------------------------------------
-# tex: file(1) magic for TeX files
-#
-# XXX - needs byte-endian stuff (big-endian and little-endian DVI?)
-#
-# From <conklin@talisman.kaleida.com>
-
-# Although we may know the offset of certain text fields in TeX DVI
-# and font files, we can't use them reliably because they are not
-# zero terminated. [but we do anyway, christos]
-0 string \367\002 application/x-dvi
-#0 string \367\203 TeX generic font data
-#0 string \367\131 TeX packed font data
-#0 string \367\312 TeX virtual font data
-#0 string This\ is\ TeX, TeX transcript text
-#0 string This\ is\ METAFONT, METAFONT transcript text
-
-# There is no way to detect TeX Font Metric (*.tfm) files without
-# breaking them apart and reading the data. The following patterns
-# match most *.tfm files generated by METAFONT or afm2tfm.
-2 string \000\021 application/x-tex-tfm
-2 string \000\022 application/x-tex-tfm
-#>34 string >\0 (%s)
-
-# Texinfo and GNU Info, from Daniel Quinlan (quinlan@yggdrasil.com)
-0 string \\input\ texinfo text/x-texinfo
-0 string This\ is\ Info\ file text/x-info
-
-# correct TeX magic for Linux (and maybe more)
-# from Peter Tobias (tobias@server.et-inf.fho-emden.de)
-#
-0 leshort 0x02f7 application/x-dvi
-
-# RTF - Rich Text Format
-0 string {\\rtf text/rtf
-
-#------------------------------------------------------------------------------
-# animation: file(1) magic for animation/movie formats
-#
-# animation formats, originally from vax@ccwf.cc.utexas.edu (VaX#n8)
-# MPEG file
-# MPEG sequences
-0 belong 0x000001BA
->4 byte &0x40 video/mp2p
->4 byte ^0x40 video/mpeg
-0 belong 0x000001BB video/mpeg
-0 belong 0x000001B0 video/mp4v-es
-0 belong 0x000001B5 video/mp4v-es
-0 belong 0x000001B3 video/mpv
-0 belong&0xFF5FFF1F 0x47400010 video/mp2t
-0 belong 0x00000001
->4 byte&0x1F 0x07 video/h264
-
-# FLI animation format
-0 leshort 0xAF11 video/fli
-# FLC animation format
-0 leshort 0xAF12 video/flc
-#
-# SGI and Apple formats
-# Added ISO mimes
-0 string MOVI video/sgi
-4 string moov video/quicktime
-4 string mdat video/quicktime
-4 string wide video/quicktime
-4 string skip video/quicktime
-4 string free video/quicktime
-4 string idsc image/x-quicktime
-4 string idat image/x-quicktime
-4 string pckg application/x-quicktime
-4 string/B jP image/jp2
-4 string ftyp
->8 string isom video/mp4
->8 string mp41 video/mp4
->8 string mp42 video/mp4
->8 string/B jp2 image/jp2
->8 string 3gp video/3gpp
->8 string avc1 video/3gpp
->8 string mmp4 video/mp4
->8 string/B M4A audio/mp4
->8 string/B qt video/quicktime
-# The contributor claims:
-# I couldn't find a real magic number for these, however, this
-# -appears- to work. Note that it might catch other files, too,
-# so BE CAREFUL!
-#
-# Note that title and author appear in the two 20-byte chunks
-# at decimal offsets 2 and 22, respectively, but they are XOR'ed with
-# 255 (hex FF)! DL format SUCKS BIG ROCKS.
-#
-# DL file version 1 , medium format (160x100, 4 images/screen)
-0 byte 1 video/unknown
-0 byte 2 video/unknown
-#
-# Databases
-#
-# GDBM magic numbers
-# Will be maintained as part of the GDBM distribution in the future.
-# <downsj@teeny.org>
-0 belong 0x13579ace application/x-gdbm
-0 lelong 0x13579ace application/x-gdbm
-0 string GDBM application/x-gdbm
-#
-0 belong 0x061561 application/x-dbm
-#
-# Executables
-#
-0 string \177ELF
->16 leshort 0 application/octet-stream
->16 leshort 1 application/x-object
->16 leshort 2 application/x-executable
->16 leshort 3 application/x-sharedlib
->16 leshort 4 application/x-coredump
->16 beshort 0 application/octet-stream
->16 beshort 1 application/x-object
->16 beshort 2 application/x-executable
->16 beshort 3 application/x-sharedlib
->16 beshort 4 application/x-coredump
-#
-# DOS
-0 string MZ application/x-dosexec
-#
-# KDE
-0 string [KDE\ Desktop\ Entry] application/x-kdelnk
-0 string \#\ KDE\ Config\ File application/x-kdelnk
-# xmcd database file for kscd
-0 string \#\ xmcd text/xmcd
-
-#------------------------------------------------------------------------------
-# pkgadd: file(1) magic for SysV R4 PKG Datastreams
-#
-0 string #\ PaCkAgE\ DaTaStReAm application/x-svr4-package
-
-#PNG Image Format
-0 string \x89PNG image/png
-
-# MNG Video Format, <URL:http://www.libpng.org/pub/mng/spec/>
-0 string \x8aMNG video/x-mng
-0 string \x8aJNG video/x-jng
-
-#------------------------------------------------------------------------------
-# Hierarchical Data Format, used to facilitate scientific data exchange
-# specifications at http://hdf.ncsa.uiuc.edu/
-#Hierarchical Data Format (version 4) data
-0 belong 0x0e031301 application/x-hdf
-#Hierarchical Data Format (version 5) data
-0 string \211HDF\r\n\032 application/x-hdf
-
-# Adobe Photoshop
-0 string 8BPS image/x-photoshop
-
-# Felix von Leitner <felix-file@fefe.de>
-0 string d8:announce application/x-bittorrent
-
-
-# lotus 1-2-3 document
-0 belong 0x00001a00 application/x-123
-0 belong 0x00000200 application/x-123
-
-# MS Access database
-4 string Standard\ Jet\ DB application/msaccess
-
-## magic for XBase files
-#0 byte 0x02
-#>8 leshort >0
-#>>12 leshort 0 application/x-dbf
-#
-#0 byte 0x03
-#>8 leshort >0
-#>>12 leshort 0 application/x-dbf
-#
-#0 byte 0x04
-#>8 leshort >0
-#>>12 leshort 0 application/x-dbf
-#
-#0 byte 0x05
-#>8 leshort >0
-#>>12 leshort 0 application/x-dbf
-#
-#0 byte 0x30
-#>8 leshort >0
-#>>12 leshort 0 application/x-dbf
-#
-#0 byte 0x43
-#>8 leshort >0
-#>>12 leshort 0 application/x-dbf
-#
-#0 byte 0x7b
-#>8 leshort >0
-#>>12 leshort 0 application/x-dbf
-#
-#0 byte 0x83
-#>8 leshort >0
-#>>12 leshort 0 application/x-dbf
-#
-#0 byte 0x8b
-#>8 leshort >0
-#>>12 leshort 0 application/x-dbf
-#
-#0 byte 0x8e
-#>8 leshort >0
-#>>12 leshort 0 application/x-dbf
-#
-#0 byte 0xb3
-#>8 leshort >0
-#>>12 leshort 0 application/x-dbf
-#
-#0 byte 0xf5
-#>8 leshort >0
-#>>12 leshort 0 application/x-dbf
-#
-#0 leshort 0x0006 application/x-dbt
-
-# Debian has entries for the old PGP formats:
-# pgp: file(1) magic for Pretty Good Privacy
-# see http://lists.gnupg.org/pipermail/gnupg-devel/1999-September/016052.html
-#text/PGP key public ring
-0 beshort 0x9900 application/pgp
-#text/PGP key security ring
-0 beshort 0x9501 application/pgp
-#text/PGP key security ring
-0 beshort 0x9500 application/pgp
-#text/PGP encrypted data
-0 beshort 0xa600 application/pgp-encrypted
-#text/PGP armored data
-##public key block
-2 string ---BEGIN\ PGP\ PUBLIC\ KEY\ BLOCK- application/pgp-keys
-0 string -----BEGIN\040PGP\40MESSAGE- application/pgp
-0 string -----BEGIN\040PGP\40SIGNATURE- application/pgp-signature
-#
-# GnuPG Magic:
-#
-#
-#text/GnuPG key public ring
-0 beshort 0x9901 application/pgp
-#text/OpenPGP data
-0 beshort 0x8501 application/pgp-encrypted
-
-# flash: file(1) magic for Macromedia Flash file format
-#
-# See
-#
-# http://www.macromedia.com/software/flash/open/
-#
-0 string FWS
->3 byte x application/x-shockwave-flash
-
-# The following paramaters are created for Namazu.
-# <http://www.namazu.org/>
-#
-# 1999/08/13
-#0 string \<!--\ MHonArc text/html; x-type=mhonarc
-0 string BZh application/x-bzip2
-
-# 1999/09/09
-# VRML (suggested by Masao Takaku)
-0 string #VRML\ V1.0\ ascii model/vrml
-0 string #VRML\ V2.0\ utf8 model/vrml
-
-#------------------------------------------------------------------------------
-# ichitaro456: file(1) magic for Just System Word Processor Ichitaro
-#
-# Contributor kenzo-:
-# Reversed-engineered JS Ichitaro magic numbers
-#
-
-0 string DOC
->43 byte 0x14 application/ichitaro4
->144 string JDASH application/ichitaro4
-
-0 string DOC
->43 byte 0x15 application/ichitaro5
-
-0 string DOC
->43 byte 0x16 application/ichitaro6
-
-#------------------------------------------------------------------------------
-# office97: file(1) magic for MicroSoft Office files
-#
-# Contributor kenzo-:
-# Reversed-engineered MS Office magic numbers
-#
-
-#0 string \320\317\021\340\241\261\032\341
-#>48 byte 0x1B application/excel
-
-2080 string Microsoft\ Excel\ 5.0\ Worksheet application/excel
-2114 string Biff5 application/excel
-
-0 string \224\246\056 application/msword
-
-0 belong 0x31be0000 application/msword
-
-0 string PO^Q` application/msword
-
-0 string \320\317\021\340\241\261\032\341
->546 string bjbj application/msword
->546 string jbjb application/msword
-
-512 string R\0o\0o\0t\0\ \0E\0n\0t\0r\0y application/msword
-
-2080 string Microsoft\ Word\ 6.0\ Document application/msword
-2080 string Documento\ Microsoft\ Word\ 6 application/msword
-2112 string MSWordDoc application/msword
-
-#0 string \320\317\021\340\241\261\032\341 application/powerpoint
-0 string \320\317\021\340\241\261\032\341 application/msword
-
-0 string #\ PaCkAgE\ DaTaStReAm application/x-svr4-package
-
-
-# WinNT/WinCE PE files (Warner Losh, imp@village.org)
-#
-128 string PE\000\000 application/octet-stream
-0 string PE\000\000 application/octet-stream
-
-# miscellaneous formats
-0 string LZ application/octet-stream
-
-
-# .EXE formats (Greg Roelofs, newt@uchicago.edu)
-#
-0 string MZ
->24 string @ application/octet-stream
-
-0 string MZ
->30 string Copyright\ 1989-1990\ PKWARE\ Inc. application/x-zip
-
-0 string MZ
->30 string PKLITE\ Copr. application/x-zip
-
-0 string MZ
->36 string LHa's\ SFX application/x-lha
-
-0 string MZ application/octet-stream
-
-# LHA archiver
-2 string -lh
->6 string - application/x-lha
-
-
-# Zoo archiver
-20 lelong 0xfdc4a7dc application/x-zoo
-
-# ARC archiver
-0 lelong&0x8080ffff 0x0000081a application/x-arc
-0 lelong&0x8080ffff 0x0000091a application/x-arc
-0 lelong&0x8080ffff 0x0000021a application/x-arc
-0 lelong&0x8080ffff 0x0000031a application/x-arc
-0 lelong&0x8080ffff 0x0000041a application/x-arc
-0 lelong&0x8080ffff 0x0000061a application/x-arc
-
-# Microsoft Outlook's Transport Neutral Encapsulation Format (TNEF)
-0 lelong 0x223e9f78 application/ms-tnef
-
-# From: stephane.loeuillet@tiscali.f
-# http://www.djvuzone.org/
-0 string AT&TFORM image/x.djvu
-
-# Danny Milosavljevic <danny.milo@gmx.net>
-# this are adrift (adventure game standard) game files, extension .taf
-# depending on version magic continues with 0x93453E6139FA (V 4.0)
-# 0x9445376139FA (V 3.90)
-# 0x9445366139FA (V 3.80)
-# this is from source (http://www.adrift.org.uk/) and I have some taf
-# files, and checked them.
-#0 belong 0x3C423FC9
-#>4 belong 0x6A87C2CF application/x-adrift
-#0 string \000\000\001\000 image/x-ico
-
-# Quark Xpress 3 Files:
-# (made the mimetype up)
-0 string \0\0MMXPR3\0 application/x-quark-xpress-3
-
-# EET archive
-# From: Tilman Sauerbeck <tilman@code-monkey.de>
-0 belong 0x1ee7ff00 application/x-eet
-
-# From: Denis Knauf, via gentoo.
-0 string fLaC audio/x-flac
-0 string CWS application/x-shockwave-flash
-
-# Gnumeric spreadsheet
-# This entry is only semi-helpful, as Gnumeric compresses its files, so
-# they will ordinarily reported as "compressed", but at least -z helps
-39 string =<gmr:Workbook application/x-gnumeric
-
+++ /dev/null
-# a2enmod-note: needs-configuration
-
-#
-# Action lets you define media types that will execute a script whenever
-# a matching file is called. This eliminates the need for repeated URL
-# pathnames for oft-used CGI file processors.
-# Format: Action media/type /cgi-script/location
-# Format: Action handler-name /cgi-script/location
-#
-
+++ /dev/null
-LoadModule actions_module /usr/lib/apache2/modules/mod_actions.so
+++ /dev/null
-<IfModule alias_module>
-#
-# Aliases: Add here as many aliases as you need (with no limit). The format is
-# Alias fakename realname
-#
-# Note that if you include a trailing / on fakename then the server will
-# require it to be present in the URL. So "/icons" isn't aliased in this
-# example, only "/icons/". If the fakename is slash-terminated, then the
-# realname must also be slash terminated, and if the fakename omits the
-# trailing slash, the realname must also omit it.
-#
-# We include the /icons/ alias for FancyIndexed directory listings. If
-# you do not use FancyIndexing, you may comment this out.
-#
-Alias /icons/ "/usr/share/apache2/icons/"
-
-<Directory "/usr/share/apache2/icons">
- Options FollowSymlinks
- AllowOverride None
- Order allow,deny
- Allow from all
-</Directory>
-
-</IfModule>
+++ /dev/null
-LoadModule alias_module /usr/lib/apache2/modules/mod_alias.so
+++ /dev/null
-LoadModule asis_module /usr/lib/apache2/modules/mod_asis.so
+++ /dev/null
-LoadModule auth_basic_module /usr/lib/apache2/modules/mod_auth_basic.so
+++ /dev/null
-LoadModule auth_digest_module /usr/lib/apache2/modules/mod_auth_digest.so
+++ /dev/null
-LoadModule auth_mysql_module /usr/lib/apache2/modules/mod_auth_mysql.so
+++ /dev/null
-LoadModule authn_alias_module /usr/lib/apache2/modules/mod_authn_alias.so
+++ /dev/null
-LoadModule authn_anon_module /usr/lib/apache2/modules/mod_authn_anon.so
+++ /dev/null
-# Depends: dbd
-LoadModule authn_dbd_module /usr/lib/apache2/modules/mod_authn_dbd.so
+++ /dev/null
-LoadModule authn_dbm_module /usr/lib/apache2/modules/mod_authn_dbm.so
+++ /dev/null
-LoadModule authn_default_module /usr/lib/apache2/modules/mod_authn_default.so
+++ /dev/null
-LoadModule authn_file_module /usr/lib/apache2/modules/mod_authn_file.so
+++ /dev/null
-# Depends: ldap
-LoadModule authnz_ldap_module /usr/lib/apache2/modules/mod_authnz_ldap.so
+++ /dev/null
-LoadModule authz_dbm_module /usr/lib/apache2/modules/mod_authz_dbm.so
+++ /dev/null
-LoadModule authz_default_module /usr/lib/apache2/modules/mod_authz_default.so
+++ /dev/null
-LoadModule authz_groupfile_module /usr/lib/apache2/modules/mod_authz_groupfile.so
+++ /dev/null
-LoadModule authz_host_module /usr/lib/apache2/modules/mod_authz_host.so
+++ /dev/null
-LoadModule authz_owner_module /usr/lib/apache2/modules/mod_authz_owner.so
+++ /dev/null
-LoadModule authz_user_module /usr/lib/apache2/modules/mod_authz_user.so
+++ /dev/null
-<IfModule mod_autoindex.c>
-#
-# Directives controlling the display of server-generated directory listings.
-#
-
-#
-# IndexOptions: Controls the appearance of server-generated directory
-# listings.
-# Remove/replace the "Charset=UTF-8" if you don't use UTF-8 for your filenames.
-#
-IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=* DescriptionWidth=* Charset=UTF-8
-
-#
-# AddIcon* directives tell the server which icon to show for different
-# files or filename extensions. These are only displayed for
-# FancyIndexed directories.
-#
-AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip x-bzip2
-
-AddIconByType (TXT,/icons/text.gif) text/*
-AddIconByType (IMG,/icons/image2.gif) image/*
-AddIconByType (SND,/icons/sound2.gif) audio/*
-AddIconByType (VID,/icons/movie.gif) video/*
-
-AddIcon /icons/binary.gif .bin .exe
-AddIcon /icons/binhex.gif .hqx
-AddIcon /icons/tar.gif .tar
-AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
-AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
-AddIcon /icons/a.gif .ps .ai .eps
-AddIcon /icons/layout.gif .html .shtml .htm .pdf
-AddIcon /icons/text.gif .txt
-AddIcon /icons/c.gif .c
-AddIcon /icons/p.gif .pl .py
-AddIcon /icons/f.gif .for
-AddIcon /icons/dvi.gif .dvi
-AddIcon /icons/uuencoded.gif .uu
-AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
-AddIcon /icons/tex.gif .tex
-# It's a suffix rule, so simply matching "core" matches "score" as well !
-AddIcon /icons/bomb.gif /core
-AddIcon (SND,/icons/sound2.gif) .ogg
-AddIcon (VID,/icons/movie.gif) .ogm
-
-AddIcon /icons/back.gif ..
-AddIcon /icons/hand.right.gif README
-AddIcon /icons/folder.gif ^^DIRECTORY^^
-AddIcon /icons/blank.gif ^^BLANKICON^^
-
-# Default icons for OpenDocument format
-AddIcon /icons/odf6odt-20x22.png .odt
-AddIcon /icons/odf6ods-20x22.png .ods
-AddIcon /icons/odf6odp-20x22.png .odp
-AddIcon /icons/odf6odg-20x22.png .odg
-AddIcon /icons/odf6odc-20x22.png .odc
-AddIcon /icons/odf6odf-20x22.png .odf
-AddIcon /icons/odf6odb-20x22.png .odb
-AddIcon /icons/odf6odi-20x22.png .odi
-AddIcon /icons/odf6odm-20x22.png .odm
-
-AddIcon /icons/odf6ott-20x22.png .ott
-AddIcon /icons/odf6ots-20x22.png .ots
-AddIcon /icons/odf6otp-20x22.png .otp
-AddIcon /icons/odf6otg-20x22.png .otg
-AddIcon /icons/odf6otc-20x22.png .otc
-AddIcon /icons/odf6otf-20x22.png .otf
-AddIcon /icons/odf6oti-20x22.png .oti
-AddIcon /icons/odf6oth-20x22.png .oth
-
-#
-# DefaultIcon is which icon to show for files which do not have an icon
-# explicitly set.
-#
-DefaultIcon /icons/unknown.gif
-
-#
-# AddDescription allows you to place a short description after a file in
-# server-generated indexes. These are only displayed for FancyIndexed
-# directories.
-# Format: AddDescription "description" filename
-#
-#AddDescription "GZIP compressed document" .gz
-#AddDescription "tar archive" .tar
-#AddDescription "GZIP compressed tar archive" .tgz
-
-#
-# ReadmeName is the name of the README file the server will look for by
-# default, and append to directory listings.
-#
-# HeaderName is the name of a file which should be prepended to
-# directory indexes.
-ReadmeName README.html
-HeaderName HEADER.html
-
-#
-# IndexIgnore is a set of filenames which directory indexing should ignore
-# and not include in the listing. Shell-style wildcarding is permitted.
-#
-IndexIgnore .??* *~ *# RCS CVS *,v *,t
-
-</IfModule>
+++ /dev/null
-LoadModule autoindex_module /usr/lib/apache2/modules/mod_autoindex.so
+++ /dev/null
-LoadModule cache_module /usr/lib/apache2/modules/mod_cache.so
+++ /dev/null
-LoadModule cern_meta_module /usr/lib/apache2/modules/mod_cern_meta.so
+++ /dev/null
-LoadModule cgi_module /usr/lib/apache2/modules/mod_cgi.so
+++ /dev/null
-# Socket for cgid communication
-ScriptSock ${APACHE_RUN_DIR}/cgisock
+++ /dev/null
-LoadModule cgid_module /usr/lib/apache2/modules/mod_cgid.so
+++ /dev/null
-LoadModule charset_lite_module /usr/lib/apache2/modules/mod_charset_lite.so
+++ /dev/null
-LoadModule dav_module /usr/lib/apache2/modules/mod_dav.so
+++ /dev/null
-DAVLockDB ${APACHE_LOCK_DIR}/DAVLock
+++ /dev/null
-# Depends: dav
-LoadModule dav_fs_module /usr/lib/apache2/modules/mod_dav_fs.so
+++ /dev/null
-LoadModule dav_lock_module /usr/lib/apache2/modules/mod_dav_lock.so
+++ /dev/null
-LoadModule dbd_module /usr/lib/apache2/modules/mod_dbd.so
+++ /dev/null
-<IfModule mod_deflate.c>
- # these are known to be safe with MSIE 6
- AddOutputFilterByType DEFLATE text/html text/plain text/xml
-
- # everything else may cause problems with MSIE 6
- AddOutputFilterByType DEFLATE text/css
- AddOutputFilterByType DEFLATE application/x-javascript application/javascript application/ecmascript
- AddOutputFilterByType DEFLATE application/rss+xml
-</IfModule>
+++ /dev/null
-LoadModule deflate_module /usr/lib/apache2/modules/mod_deflate.so
+++ /dev/null
-<IfModule mod_dir.c>
-
- DirectoryIndex index.html index.php index.cgi index.pl index.xhtml index.htm
-
-</IfModule>
+++ /dev/null
-LoadModule dir_module /usr/lib/apache2/modules/mod_dir.so
+++ /dev/null
-<IfModule mod_disk_cache.c>
-# cache cleaning is done by htcacheclean, which can be configured in
-# /etc/default/apache2
-#
-# For further information, see the comments in that file,
-# /usr/share/doc/apache2.2-common/README.Debian, and the htcacheclean(8)
-# man page.
-
- # This path must be the same as the one in /etc/default/apache2
- CacheRoot /var/cache/apache2/mod_disk_cache
-
- # This will also cache local documents. It usually makes more sense to
- # put this into the configuration for just one virtual host.
-
- #CacheEnable disk /
-
- # The result of CacheDirLevels * CacheDirLength must not be higher than
- # 20. Moreover, pay attention on file system limits. Some file systems
- # do not support more than a certain number of subdirectories in a
- # single directory (e.g. 32000 for ext3)
- CacheDirLevels 2
- CacheDirLength 1
-</IfModule>
+++ /dev/null
-# Depends: cache
-LoadModule disk_cache_module /usr/lib/apache2/modules/mod_disk_cache.so
+++ /dev/null
-LoadModule dumpio_module /usr/lib/apache2/modules/mod_dumpio.so
+++ /dev/null
-LoadModule env_module /usr/lib/apache2/modules/mod_env.so
+++ /dev/null
-LoadModule expires_module /usr/lib/apache2/modules/mod_expires.so
+++ /dev/null
-LoadModule ext_filter_module /usr/lib/apache2/modules/mod_ext_filter.so
+++ /dev/null
-# Depends: cache
-LoadModule file_cache_module /usr/lib/apache2/modules/mod_file_cache.so
+++ /dev/null
-LoadModule filter_module /usr/lib/apache2/modules/mod_filter.so
+++ /dev/null
-LoadModule headers_module /usr/lib/apache2/modules/mod_headers.so
+++ /dev/null
-LoadModule ident_module /usr/lib/apache2/modules/mod_ident.so
+++ /dev/null
-LoadModule imagemap_module /usr/lib/apache2/modules/mod_imagemap.so
+++ /dev/null
-LoadModule include_module /usr/lib/apache2/modules/mod_include.so
+++ /dev/null
-<IfModule mod_info.c>
-#
-# Allow remote server configuration reports, with the URL of
-# http://servername/server-info (requires that mod_info.c be loaded).
-# Uncomment and change the "192.0.2.0/24" to allow access from other hosts.
-#
-<Location /server-info>
- SetHandler server-info
- Order deny,allow
- Deny from all
- Allow from 127.0.0.1 ::1
-# Allow from 192.0.2.0/24
-</Location>
-
-</IfModule>
-
+++ /dev/null
-LoadModule info_module /usr/lib/apache2/modules/mod_info.so
+++ /dev/null
-<Location /ldap-status>
- SetHandler ldap-status
- Order deny,allow
- Deny from all
- Allow from 127.0.0.1 ::1
-# Allow from 192.0.2.0/24
- Satisfy all
-</Location>
+++ /dev/null
-LoadModule ldap_module /usr/lib/apache2/modules/mod_ldap.so
+++ /dev/null
-LoadModule log_forensic_module /usr/lib/apache2/modules/mod_log_forensic.so
+++ /dev/null
-<IfModule mod_mem_cache.c>
- CacheEnable mem /
- MCacheSize 4096
- MCacheMaxObjectCount 100
- MCacheMinObjectSize 1
- MCacheMaxObjectSize 2048
-</IfModule>
+++ /dev/null
-# Depends: cache
-LoadModule mem_cache_module /usr/lib/apache2/modules/mod_mem_cache.so
+++ /dev/null
-<IfModule mod_mime.c>
-
-#
-# TypesConfig points to the file containing the list of mappings from
-# filename extension to MIME-type.
-#
-TypesConfig /etc/mime.types
-
-#
-# AddType allows you to add to or override the MIME configuration
-# file mime.types for specific file types.
-#
-#AddType application/x-gzip .tgz
-#
-# AddEncoding allows you to have certain browsers uncompress
-# information on the fly. Note: Not all browsers support this.
-# Despite the name similarity, the following Add* directives have
-# nothing to do with the FancyIndexing customization directives above.
-#
-#AddEncoding x-compress .Z
-#AddEncoding x-gzip .gz .tgz
-#AddEncoding x-bzip2 .bz2
-#
-# If the AddEncoding directives above are commented-out, then you
-# probably should define those extensions to indicate media types:
-#
-AddType application/x-compress .Z
-AddType application/x-gzip .gz .tgz
-AddType application/x-bzip2 .bz2
-
-#
-# DefaultLanguage and AddLanguage allows you to specify the language of
-# a document. You can then use content negotiation to give a browser a
-# file in a language the user can understand.
-#
-# Specify a default language. This means that all data
-# going out without a specific language tag (see below) will
-# be marked with this one. You probably do NOT want to set
-# this unless you are sure it is correct for all cases.
-#
-# * It is generally better to not mark a page as
-# * being a certain language than marking it with the wrong
-# * language!
-#
-# DefaultLanguage nl
-#
-# Note 1: The suffix does not have to be the same as the language
-# keyword --- those with documents in Polish (whose net-standard
-# language code is pl) may wish to use "AddLanguage pl .po" to
-# avoid the ambiguity with the common suffix for perl scripts.
-#
-# Note 2: The example entries below illustrate that in some cases
-# the two character 'Language' abbreviation is not identical to
-# the two character 'Country' code for its country,
-# E.g. 'Danmark/dk' versus 'Danish/da'.
-#
-# Note 3: In the case of 'ltz' we violate the RFC by using a three char
-# specifier. There is 'work in progress' to fix this and get
-# the reference data for rfc1766 cleaned up.
-#
-# Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
-# English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
-# Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
-# Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
-# Norwegian (no) - Polish (pl) - Portugese (pt)
-# Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
-# Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
-#
-AddLanguage am .amh
-AddLanguage ar .ara
-AddLanguage be .be
-AddLanguage bg .bg
-AddLanguage bn .bn
-AddLanguage br .br
-AddLanguage bs .bs
-AddLanguage ca .ca
-AddLanguage cs .cz .cs
-AddLanguage cy .cy
-AddLanguage da .dk
-AddLanguage de .de
-AddLanguage dz .dz
-AddLanguage el .el
-AddLanguage en .en
-AddLanguage eo .eo
-# es is ecmascript in /etc/mime.types
-RemoveType es
-AddLanguage es .es
-AddLanguage et .et
-AddLanguage eu .eu
-AddLanguage fa .fa
-AddLanguage fi .fi
-AddLanguage fr .fr
-AddLanguage ga .ga
-AddLanguage gl .glg
-AddLanguage gu .gu
-AddLanguage he .he
-AddLanguage hi .hi
-AddLanguage hr .hr
-AddLanguage hu .hu
-AddLanguage hy .hy
-AddLanguage id .id
-AddLanguage is .is
-AddLanguage it .it
-AddLanguage ja .ja
-AddLanguage ka .ka
-AddLanguage kk .kk
-AddLanguage km .km
-AddLanguage kn .kn
-AddLanguage ko .ko
-AddLanguage ku .ku
-AddLanguage lo .lo
-AddLanguage lt .lt
-AddLanguage ltz .ltz
-AddLanguage lv .lv
-AddLanguage mg .mg
-AddLanguage mk .mk
-AddLanguage ml .ml
-AddLanguage mr .mr
-AddLanguage ms .msa
-AddLanguage nb .nob
-AddLanguage ne .ne
-AddLanguage nl .nl
-AddLanguage nn .nn
-AddLanguage no .no
-AddLanguage pa .pa
-AddLanguage pl .po
-AddLanguage pt-BR .pt-br
-AddLanguage pt .pt
-AddLanguage ro .ro
-AddLanguage ru .ru
-AddLanguage sa .sa
-AddLanguage se .se
-AddLanguage si .si
-AddLanguage sk .sk
-AddLanguage sl .sl
-AddLanguage sq .sq
-AddLanguage sr .sr
-AddLanguage sv .sv
-AddLanguage ta .ta
-AddLanguage te .te
-AddLanguage th .th
-AddLanguage tl .tl
-RemoveType tr
-# tr is troff in /etc/mime.types
-AddLanguage tr .tr
-AddLanguage uk .uk
-AddLanguage ur .ur
-AddLanguage vi .vi
-AddLanguage wo .wo
-AddLanguage xh .xh
-AddLanguage zh-CN .zh-cn
-AddLanguage zh-TW .zh-tw
-
-#
-# Commonly used filename extensions to character sets. You probably
-# want to avoid clashes with the language extensions, unless you
-# are good at carefully testing your setup after each change.
-# See http://www.iana.org/assignments/character-sets for the
-# official list of charset names and their respective RFCs.
-#
-AddCharset us-ascii .ascii .us-ascii
-AddCharset ISO-8859-1 .iso8859-1 .latin1
-AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
-AddCharset ISO-8859-3 .iso8859-3 .latin3
-AddCharset ISO-8859-4 .iso8859-4 .latin4
-AddCharset ISO-8859-5 .iso8859-5 .cyr .iso-ru
-AddCharset ISO-8859-6 .iso8859-6 .arb .arabic
-AddCharset ISO-8859-7 .iso8859-7 .grk .greek
-AddCharset ISO-8859-8 .iso8859-8 .heb .hebrew
-AddCharset ISO-8859-9 .iso8859-9 .latin5 .trk
-AddCharset ISO-8859-10 .iso8859-10 .latin6
-AddCharset ISO-8859-13 .iso8859-13
-AddCharset ISO-8859-14 .iso8859-14 .latin8
-AddCharset ISO-8859-15 .iso8859-15 .latin9
-AddCharset ISO-8859-16 .iso8859-16 .latin10
-AddCharset ISO-2022-JP .iso2022-jp .jis
-AddCharset ISO-2022-KR .iso2022-kr .kis
-AddCharset ISO-2022-CN .iso2022-cn .cis
-AddCharset Big5 .Big5 .big5 .b5
-AddCharset cn-Big5 .cn-big5
-# For russian, more than one charset is used (depends on client, mostly):
-AddCharset WINDOWS-1251 .cp-1251 .win-1251
-AddCharset CP866 .cp866
-AddCharset KOI8 .koi8
-AddCharset KOI8-E .koi8-e
-AddCharset KOI8-r .koi8-r .koi8-ru
-AddCharset KOI8-U .koi8-u
-AddCharset KOI8-ru .koi8-uk .ua
-AddCharset ISO-10646-UCS-2 .ucs2
-AddCharset ISO-10646-UCS-4 .ucs4
-AddCharset UTF-7 .utf7
-AddCharset UTF-8 .utf8
-AddCharset UTF-16 .utf16
-AddCharset UTF-16BE .utf16be
-AddCharset UTF-16LE .utf16le
-AddCharset UTF-32 .utf32
-AddCharset UTF-32BE .utf32be
-AddCharset UTF-32LE .utf32le
-AddCharset euc-cn .euc-cn
-AddCharset euc-gb .euc-gb
-AddCharset euc-jp .euc-jp
-AddCharset euc-kr .euc-kr
-#Not sure how euc-tw got in - IANA doesn't list it???
-AddCharset EUC-TW .euc-tw
-AddCharset gb2312 .gb2312 .gb
-AddCharset iso-10646-ucs-2 .ucs-2 .iso-10646-ucs-2
-AddCharset iso-10646-ucs-4 .ucs-4 .iso-10646-ucs-4
-AddCharset shift_jis .shift_jis .sjis
-AddCharset BRF .brf
-
-#
-# AddHandler allows you to map certain file extensions to "handlers":
-# actions unrelated to filetype. These can be either built into the server
-# or added with the Action directive (see below)
-#
-# To use CGI scripts outside of ScriptAliased directories:
-# (You will also need to add "ExecCGI" to the "Options" directive.)
-#
-#AddHandler cgi-script .cgi
-
-#
-# For files that include their own HTTP headers:
-#
-#AddHandler send-as-is asis
-
-#
-# For server-parsed imagemap files:
-#
-#AddHandler imap-file map
-
-#
-# For type maps (negotiated resources):
-# (This is enabled by default to allow the Apache "It Worked" page
-# to be distributed in multiple languages.)
-#
-AddHandler type-map var
-
-#
-# Filters allow you to process content before it is sent to the client.
-#
-# To parse .shtml files for server-side includes (SSI):
-# (You will also need to add "Includes" to the "Options" directive.)
-#
-AddType text/html .shtml
-AddOutputFilter INCLUDES .shtml
-
-</IfModule>
+++ /dev/null
-LoadModule mime_module /usr/lib/apache2/modules/mod_mime.so
+++ /dev/null
-<IfModule mod_mime_magic.c>
- MIMEMagicFile /etc/apache2/magic
-</IfModule>
+++ /dev/null
-LoadModule mime_magic_module /usr/lib/apache2/modules/mod_mime_magic.so
+++ /dev/null
-<IfModule mod_negotiation.c>
-#
-# LanguagePriority allows you to give precedence to some languages
-# in case of a tie during content negotiation.
-#
-# Just list the languages in decreasing order of preference. We have
-# more or less alphabetized them here. You probably want to change this.
-#
-LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv tr zh-CN zh-TW
-
-#
-# ForceLanguagePriority allows you to serve a result page rather than
-# MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
-# [in case no accepted languages matched the available variants]
-#
-ForceLanguagePriority Prefer Fallback
-
-</IfModule>
+++ /dev/null
-LoadModule negotiation_module /usr/lib/apache2/modules/mod_negotiation.so
+++ /dev/null
-<FilesMatch ".+\.ph(p[345]?|t|tml)$">
- SetHandler application/x-httpd-php
-</FilesMatch>
-<FilesMatch ".+\.phps$">
- SetHandler application/x-httpd-php-source
- # Deny access to raw php sources by default
- # To re-enable it's recommended to enable access to the files
- # only in specific virtual host or directory
- Order Deny,Allow
- Deny from all
-</FilesMatch>
-# Deny access to files without filename (e.g. '.php')
-<FilesMatch "^\.ph(p[345]?|t|tml|ps)$">
- Order Deny,Allow
- Deny from all
-</FilesMatch>
-
-# Running PHP scripts in user directories is disabled by default
-#
-# To re-enable PHP in user directories comment the following lines
-# (from <IfModule ...> to </IfModule>.) Do NOT set it to On as it
-# prevents .htaccess files from disabling it.
-<IfModule mod_userdir.c>
- <Directory /home/*/public_html>
- php_admin_value engine Off
- </Directory>
-</IfModule>
+++ /dev/null
-LoadModule php5_module /usr/lib/apache2/modules/libphp5.so
+++ /dev/null
-<IfModule mod_proxy.c>
-
-# If you want to use apache2 as a forward proxy, uncomment the
-# 'ProxyRequests On' line and the <Proxy *> block below.
-# WARNING: Be careful to restrict access inside the <Proxy *> block.
-# Open proxy servers are dangerous both to your network and to the
-# Internet at large.
-#
-# If you only want to use apache2 as a reverse proxy/gateway in
-# front of some web application server, you DON'T need
-# 'ProxyRequests On'.
-
-#ProxyRequests On
-#<Proxy *>
-# AddDefaultCharset off
-# Order deny,allow
-# Deny from all
-# #Allow from .example.com
-#</Proxy>
-
-# Enable/disable the handling of HTTP/1.1 "Via:" headers.
-# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
-# Set to one of: Off | On | Full | Block
-#ProxyVia Off
-
-</IfModule>
+++ /dev/null
-LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
+++ /dev/null
-# Depends: proxy
-LoadModule proxy_ajp_module /usr/lib/apache2/modules/mod_proxy_ajp.so
+++ /dev/null
-<IfModule mod_proxy_balancer.c>
-
-# Balancer manager enables dynamic update of balancer members
-# (needs mod_status). Uncomment to enable.
-#
-#<IfModule mod_status.c>
-#<Location /balancer-manager>
-# SetHandler balancer-manager
-# Order deny,allow
-# Deny from all
-# Allow from 127.0.0.1 ::1
-# Satisfy all
-#</Location>
-#</IfModule>
-
-</IfModule>
+++ /dev/null
-# Depends: proxy
-LoadModule proxy_balancer_module /usr/lib/apache2/modules/mod_proxy_balancer.so
+++ /dev/null
-# Depends: proxy
-LoadModule proxy_connect_module /usr/lib/apache2/modules/mod_proxy_connect.so
+++ /dev/null
-<IfModule mod_proxy_ftp.c>
-
-# Define the character set for proxied FTP listings. Default is ISO-8859-1
-ProxyFtpDirCharset UTF-8
-
-</IfModule>
+++ /dev/null
-# Depends: proxy
-# LoadModule proxy_ftp_module /usr/lib/apache2/modules/mod_proxy_ftp.so
+++ /dev/null
-# Depends: proxy
-LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so
+++ /dev/null
-# Depends: proxy
-LoadModule proxy_scgi_module /usr/lib/apache2/modules/mod_proxy_scgi.so
+++ /dev/null
-<IfModule reqtimeout_module>
-
-# mod_reqtimeout limits the time waiting on the client to prevent an
-# attacker from causing a denial of service by opening many connections
-# but not sending requests. This file tries to give a sensible default
-# configuration, but it may be necessary to tune the timeout values to
-# the actual situation. Note that it is also possible to configure
-# mod_reqtimeout per virtual host.
-
-
-# Wait max 20 seconds for the first byte of the request line+headers
-# From then, require a minimum data rate of 500 bytes/s, but don't
-# wait longer than 40 seconds in total.
-# Note: Lower timeouts may make sense on non-ssl virtual hosts but can
-# cause problem with ssl enabled virtual hosts: This timeout includes
-# the time a browser may need to fetch the CRL for the certificate. If
-# the CRL server is not reachable, it may take more than 10 seconds
-# until the browser gives up.
-RequestReadTimeout header=20-40,minrate=500
-
-# Wait max 10 seconds for the first byte of the request body (if any)
-# From then, require a minimum data rate of 500 bytes/s
-RequestReadTimeout body=10,minrate=500
-
-</IfModule>
+++ /dev/null
-LoadModule reqtimeout_module /usr/lib/apache2/modules/mod_reqtimeout.so
+++ /dev/null
-LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so
+++ /dev/null
-<IfModule mod_setenvif.c>
-
-#
-# The following directives modify normal HTTP response behavior to
-# handle known problems with browser implementations.
-#
-BrowserMatch "Mozilla/2" nokeepalive
-BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
-BrowserMatch "RealPlayer 4\.0" force-response-1.0
-BrowserMatch "Java/1\.0" force-response-1.0
-BrowserMatch "JDK/1\.0" force-response-1.0
-
-#
-# The following directive disables redirects on non-GET requests for
-# a directory that does not include the trailing slash. This fixes a
-# problem with Microsoft WebFolders which does not appropriately handle
-# redirects for folders with DAV methods.
-# Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
-#
-BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
-BrowserMatch "MS FrontPage" redirect-carefully
-BrowserMatch "^WebDrive" redirect-carefully
-BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
-BrowserMatch "^gnome-vfs/1.0" redirect-carefully
-BrowserMatch "^gvfs/1" redirect-carefully
-BrowserMatch "^XML Spy" redirect-carefully
-BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully
-BrowserMatch " Konqueror/4" redirect-carefully
-
-</IfModule>
+++ /dev/null
-LoadModule setenvif_module /usr/lib/apache2/modules/mod_setenvif.so
+++ /dev/null
-LoadModule speling_module /usr/lib/apache2/modules/mod_speling.so
+++ /dev/null
-<IfModule mod_ssl.c>
-#
-# Pseudo Random Number Generator (PRNG):
-# Configure one or more sources to seed the PRNG of the SSL library.
-# The seed data should be of good random quality.
-# WARNING! On some platforms /dev/random blocks if not enough entropy
-# is available. This means you then cannot use the /dev/random device
-# because it would lead to very long connection times (as long as
-# it requires to make more entropy available). But usually those
-# platforms additionally provide a /dev/urandom device which doesn't
-# block. So, if available, use this one instead. Read the mod_ssl User
-# Manual for more details.
-#
-SSLRandomSeed startup builtin
-SSLRandomSeed startup file:/dev/urandom 512
-SSLRandomSeed connect builtin
-SSLRandomSeed connect file:/dev/urandom 512
-
-##
-## SSL Global Context
-##
-## All SSL configuration in this context applies both to
-## the main server and all SSL-enabled virtual hosts.
-##
-
-#
-# Some MIME-types for downloading Certificates and CRLs
-#
-AddType application/x-x509-ca-cert .crt
-AddType application/x-pkcs7-crl .crl
-
-# Pass Phrase Dialog:
-# Configure the pass phrase gathering process.
-# The filtering dialog program (`builtin' is a internal
-# terminal dialog) has to provide the pass phrase on stdout.
-SSLPassPhraseDialog builtin
-
-# Inter-Process Session Cache:
-# Configure the SSL Session Cache: First the mechanism
-# to use and second the expiring timeout (in seconds).
-# (The mechanism dbm has known memory leaks and should not be used).
-#SSLSessionCache dbm:${APACHE_RUN_DIR}/ssl_scache
-SSLSessionCache shmcb:${APACHE_RUN_DIR}/ssl_scache(512000)
-SSLSessionCacheTimeout 300
-
-# Semaphore:
-# Configure the path to the mutual exclusion semaphore the
-# SSL engine uses internally for inter-process synchronization.
-SSLMutex file:${APACHE_RUN_DIR}/ssl_mutex
-
-# SSL Cipher Suite:
-# List the ciphers that the client is permitted to negotiate. See the
-# ciphers(1) man page from the openssl package for list of all available
-# options.
-# Enable only secure ciphers:
-SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5
-
-# Speed-optimized SSL Cipher configuration:
-# If speed is your main concern (on busy HTTPS servers e.g.),
-# you might want to force clients to specific, performance
-# optimized ciphers. In this case, prepend those ciphers
-# to the SSLCipherSuite list, and enable SSLHonorCipherOrder.
-# Caveat: by giving precedence to RC4-SHA and AES128-SHA
-# (as in the example below), most connections will no longer
-# have perfect forward secrecy - if the server's key is
-# compromised, captures of past or future traffic must be
-# considered compromised, too.
-#SSLCipherSuite RC4-SHA:AES128-SHA:HIGH:MEDIUM:!aNULL:!MD5
-#SSLHonorCipherOrder on
-
-# enable only secure protocols: SSLv3 and TLSv1, but not SSLv2
-SSLProtocol all -SSLv2
-
-# Allow insecure renegotiation with clients which do not yet support the
-# secure renegotiation protocol. Default: Off
-#SSLInsecureRenegotiation on
-
-# Whether to forbid non-SNI clients to access name based virtual hosts.
-# Default: Off
-#SSLStrictSNIVHostCheck On
-
-</IfModule>
+++ /dev/null
-LoadModule ssl_module /usr/lib/apache2/modules/mod_ssl.so
+++ /dev/null
-<IfModule mod_status.c>
-#
-# Allow server status reports generated by mod_status,
-# with the URL of http://servername/server-status
-# Uncomment and change the "192.0.2.0/24" to allow access from other hosts.
-#
-<Location /server-status>
- SetHandler server-status
- Order deny,allow
- Deny from all
- Allow from 127.0.0.1 ::1
-# Allow from 192.0.2.0/24
-</Location>
-
-# Keep track of extended status information for each request
-ExtendedStatus On
-
-# Determine if mod_status displays the first 63 characters of a request or
-# the last 63, assuming the request itself is greater than 63 chars.
-# Default: Off
-#SeeRequestTail On
-
-
-<IfModule mod_proxy.c>
- # Show Proxy LoadBalancer status in mod_status
- ProxyStatus On
-</IfModule>
-
-
-</IfModule>
+++ /dev/null
-LoadModule status_module /usr/lib/apache2/modules/mod_status.so
+++ /dev/null
-LoadModule substitute_module /usr/lib/apache2/modules/mod_substitute.so
+++ /dev/null
-LoadModule suexec_module /usr/lib/apache2/modules/mod_suexec.so
+++ /dev/null
-LoadModule unique_id_module /usr/lib/apache2/modules/mod_unique_id.so
+++ /dev/null
-# <IfModule mod_userdir.c>
-# UserDir public_html
-# UserDir disabled root
-#
-# <Directory /home/*/public_html>
-# AllowOverride FileInfo AuthConfig Limit Indexes
-# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
-# <Limit GET POST OPTIONS>
-# Order allow,deny
-# Allow from all
-# </Limit>
-# <LimitExcept GET POST OPTIONS>
-# Order deny,allow
-# Deny from all
-# </LimitExcept>
-# </Directory>
-#</IfModule>
-
+++ /dev/null
-# LoadModule userdir_module /usr/lib/apache2/modules/mod_userdir.so
+++ /dev/null
-LoadModule usertrack_module /usr/lib/apache2/modules/mod_usertrack.so
+++ /dev/null
-LoadModule version_module /usr/lib/apache2/modules/mod_version.so
+++ /dev/null
-LoadModule vhost_alias_module /usr/lib/apache2/modules/mod_vhost_alias.so
+++ /dev/null
-# If you just change the port or add more ports here, you will likely also
-# have to change the VirtualHost statement in
-# /etc/apache2/sites-enabled/000-default
-# This is also true if you have upgraded from before 2.2.9-3 (i.e. from
-# Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and
-# README.Debian.gz
-
-NameVirtualHost *:80
-Listen 80
-
-<IfModule mod_ssl.c>
- # If you add NameVirtualHost *:443 here, you will also have to change
- # the VirtualHost statement in /etc/apache2/sites-available/default-ssl
- # to <VirtualHost *:443>
- # Server Name Indication for SSL named virtual hosts is currently not
- # supported by MSIE on Windows XP.
- Listen 443
-</IfModule>
-
-<IfModule mod_gnutls.c>
- Listen 443
-</IfModule>
-
+++ /dev/null
-<VirtualHost *:80 >
- ServerName davical.poseidon
-
- DocumentRoot /var/www/davical/htdocs
-
- DirectoryIndex index.php index.html
-
- Alias /images/ /var/www/davical/htdocs/images/
-
- <Directory /var/www/davical/htdocs/>
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
-
- AcceptPathInfo On
-
- php_value include_path /usr/share/awl/inc
- php_value magic_quotes_gpc 0
- php_value register_globals 0
- php_value error_reporting "E_ALL & ~E_NOTICE"
- php_value default_charset "utf-8"
-</VirtualHost>
+++ /dev/null
-<VirtualHost *:80>
- ServerAdmin webmaster@localhost
-
-# DocumentRoot /var/www
- DocumentRoot /home/oleb
-# <Directory />
-# Options FollowSymLinks
-# AllowOverride None
-# </Directory>
-# <Directory /var/www/>
- <Directory /home/oleb/>
- Options Indexes FollowSymLinks MultiViews
- AllowOverride None
- Order allow,deny
- allow from all
- </Directory>
-
- ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
- <Directory "/usr/lib/cgi-bin">
- AllowOverride None
- Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
- Order allow,deny
- Allow from all
- </Directory>
-
- ErrorLog ${APACHE_LOG_DIR}/error.log
-
- # Possible values include: debug, info, notice, warn, error, crit,
- # alert, emerg.
- LogLevel warn
-
- CustomLog ${APACHE_LOG_DIR}/access.log combined
-
- Alias /doc/ "/usr/share/doc/"
- <Directory "/usr/share/doc/">
- Options Indexes MultiViews FollowSymLinks
- AllowOverride None
- Order deny,allow
- Deny from all
- Allow from 127.0.0.0/255.0.0.0 ::1/128
- </Directory>
-
-</VirtualHost>
+++ /dev/null
-<VirtualHost *:80>
- ServerName poseidon
- ServerAdmin webmaster@localhost
-
- DocumentRoot /var/www/
- <Directory />
- Options Indexes FollowSymLinks MultiViews
- AllowOverride None
- Order allow,deny
- allow from all
- </Directory>
-
-
- ErrorLog /var/log/apache2/error.log
-
- # Possible values include: debug, info, notice, warn, error, crit,
- # alert, emerg.
- LogLevel warn
-
- CustomLog /var/log/apache2/access.log combined
-
-</VirtualHost>
+++ /dev/null
-<VirtualHost *:80 >
- ServerName phpmyadmin.poseidon
-
- <Directory /var/www/phpmyadmin/>
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
-</VirtualHost>
+++ /dev/null
-<VirtualHost *:80 >
- ServerName phppgadmin.poseidon
-
- <Directory /var/www/phppgadmin/>
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
-</VirtualHost>
+++ /dev/null
-[PHP]
-
-;;;;;;;;;;;;;;;;;;;
-; About php.ini ;
-;;;;;;;;;;;;;;;;;;;
-; PHP's initialization file, generally called php.ini, is responsible for
-; configuring many of the aspects of PHP's behavior.
-
-; PHP attempts to find and load this configuration from a number of locations.
-; The following is a summary of its search order:
-; 1. SAPI module specific location.
-; 2. The PHPRC environment variable. (As of PHP 5.2.0)
-; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
-; 4. Current working directory (except CLI)
-; 5. The web server's directory (for SAPI modules), or directory of PHP
-; (otherwise in Windows)
-; 6. The directory from the --with-config-file-path compile time option, or the
-; Windows directory (C:\windows or C:\winnt)
-; See the PHP docs for more specific information.
-; http://php.net/configuration.file
-
-; The syntax of the file is extremely simple. Whitespace and Lines
-; beginning with a semicolon are silently ignored (as you probably guessed).
-; Section headers (e.g. [Foo]) are also silently ignored, even though
-; they might mean something in the future.
-
-; Directives following the section heading [PATH=/www/mysite] only
-; apply to PHP files in the /www/mysite directory. Directives
-; following the section heading [HOST=www.example.com] only apply to
-; PHP files served from www.example.com. Directives set in these
-; special sections cannot be overridden by user-defined INI files or
-; at runtime. Currently, [PATH=] and [HOST=] sections only work under
-; CGI/FastCGI.
-; http://php.net/ini.sections
-
-; Directives are specified using the following syntax:
-; directive = value
-; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
-; Directives are variables used to configure PHP or PHP extensions.
-; There is no name validation. If PHP can't find an expected
-; directive because it is not set or is mistyped, a default value will be used.
-
-; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
-; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
-; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
-; previously set variable or directive (e.g. ${foo})
-
-; Expressions in the INI file are limited to bitwise operators and parentheses:
-; | bitwise OR
-; ^ bitwise XOR
-; & bitwise AND
-; ~ bitwise NOT
-; ! boolean NOT
-
-; Boolean flags can be turned on using the values 1, On, True or Yes.
-; They can be turned off using the values 0, Off, False or No.
-
-; An empty string can be denoted by simply not writing anything after the equal
-; sign, or by using the None keyword:
-
-; foo = ; sets foo to an empty string
-; foo = None ; sets foo to an empty string
-; foo = "None" ; sets foo to the string 'None'
-
-; If you use constants in your value, and these constants belong to a
-; dynamically loaded extension (either a PHP extension or a Zend extension),
-; you may only use these constants *after* the line that loads the extension.
-
-;;;;;;;;;;;;;;;;;;;
-; About this file ;
-;;;;;;;;;;;;;;;;;;;
-; PHP comes packaged with two INI files. One that is recommended to be used
-; in production environments and one that is recommended to be used in
-; development environments.
-
-; php.ini-production contains settings which hold security, performance and
-; best practices at its core. But please be aware, these settings may break
-; compatibility with older or less security conscience applications. We
-; recommending using the production ini in production and testing environments.
-
-; php.ini-development is very similar to its production variant, except it's
-; much more verbose when it comes to errors. We recommending using the
-; development version only in development environments as errors shown to
-; application users can inadvertently leak otherwise secure information.
-
-;;;;;;;;;;;;;;;;;;;
-; Quick Reference ;
-;;;;;;;;;;;;;;;;;;;
-; The following are all the settings which are different in either the production
-; or development versions of the INIs with respect to PHP's default behavior.
-; Please see the actual settings later in the document for more details as to why
-; we recommend these changes in PHP's behavior.
-
-; allow_call_time_pass_reference
-; Default Value: On
-; Development Value: Off
-; Production Value: Off
-
-; display_errors
-; Default Value: On
-; Development Value: On
-; Production Value: Off
-
-; display_startup_errors
-; Default Value: Off
-; Development Value: On
-; Production Value: Off
-
-; error_reporting
-; Default Value: E_ALL & ~E_NOTICE
-; Development Value: E_ALL | E_STRICT
-; Production Value: E_ALL & ~E_DEPRECATED
-
-; html_errors
-; Default Value: On
-; Development Value: On
-; Production value: Off
-
-; log_errors
-; Default Value: Off
-; Development Value: On
-; Production Value: On
-
-; magic_quotes_gpc
-; Default Value: On
-; Development Value: Off
-; Production Value: Off
-
-; max_input_time
-; Default Value: -1 (Unlimited)
-; Development Value: 60 (60 seconds)
-; Production Value: 60 (60 seconds)
-
-; output_buffering
-; Default Value: Off
-; Development Value: 4096
-; Production Value: 4096
-
-; register_argc_argv
-; Default Value: On
-; Development Value: Off
-; Production Value: Off
-
-; register_long_arrays
-; Default Value: On
-; Development Value: Off
-; Production Value: Off
-
-; request_order
-; Default Value: None
-; Development Value: "GP"
-; Production Value: "GP"
-
-; session.bug_compat_42
-; Default Value: On
-; Development Value: On
-; Production Value: Off
-
-; session.bug_compat_warn
-; Default Value: On
-; Development Value: On
-; Production Value: Off
-
-; session.gc_divisor
-; Default Value: 100
-; Development Value: 1000
-; Production Value: 1000
-
-; session.hash_bits_per_character
-; Default Value: 4
-; Development Value: 5
-; Production Value: 5
-
-; short_open_tag
-; Default Value: On
-; Development Value: Off
-; Production Value: Off
-
-; track_errors
-; Default Value: Off
-; Development Value: On
-; Production Value: Off
-
-; url_rewriter.tags
-; Default Value: "a=href,area=href,frame=src,form=,fieldset="
-; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
-; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
-
-; variables_order
-; Default Value: "EGPCS"
-; Development Value: "GPCS"
-; Production Value: "GPCS"
-
-;;;;;;;;;;;;;;;;;;;;
-; php.ini Options ;
-;;;;;;;;;;;;;;;;;;;;
-; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
-;user_ini.filename = ".user.ini"
-
-; To disable this feature set this option to empty value
-;user_ini.filename =
-
-; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
-;user_ini.cache_ttl = 300
-
-;;;;;;;;;;;;;;;;;;;;
-; Language Options ;
-;;;;;;;;;;;;;;;;;;;;
-
-; Enable the PHP scripting language engine under Apache.
-; http://php.net/engine
-engine = On
-
-; This directive determines whether or not PHP will recognize code between
-; <? and ?> tags as PHP source which should be processed as such. It's been
-; recommended for several years that you not use the short tag "short cut" and
-; instead to use the full <?php and ?> tag combination. With the wide spread use
-; of XML and use of these tags by other languages, the server can become easily
-; confused and end up parsing the wrong code in the wrong context. But because
-; this short cut has been a feature for such a long time, it's currently still
-; supported for backwards compatibility, but we recommend you don't use them.
-; Default Value: On
-; Development Value: Off
-; Production Value: Off
-; http://php.net/short-open-tag
-short_open_tag = On
-
-; Allow ASP-style <% %> tags.
-; http://php.net/asp-tags
-asp_tags = Off
-
-; The number of significant digits displayed in floating point numbers.
-; http://php.net/precision
-precision = 14
-
-; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
-; http://php.net/y2k-compliance
-y2k_compliance = On
-
-; Output buffering is a mechanism for controlling how much output data
-; (excluding headers and cookies) PHP should keep internally before pushing that
-; data to the client. If your application's output exceeds this setting, PHP
-; will send that data in chunks of roughly the size you specify.
-; Turning on this setting and managing its maximum buffer size can yield some
-; interesting side-effects depending on your application and web server.
-; You may be able to send headers and cookies after you've already sent output
-; through print or echo. You also may see performance benefits if your server is
-; emitting less packets due to buffered output versus PHP streaming the output
-; as it gets it. On production servers, 4096 bytes is a good setting for performance
-; reasons.
-; Note: Output buffering can also be controlled via Output Buffering Control
-; functions.
-; Possible Values:
-; On = Enabled and buffer is unlimited. (Use with caution)
-; Off = Disabled
-; Integer = Enables the buffer and sets its maximum size in bytes.
-; Note: This directive is hardcoded to Off for the CLI SAPI
-; Default Value: Off
-; Development Value: 4096
-; Production Value: 4096
-; http://php.net/output-buffering
-output_buffering = 4096
-
-; You can redirect all of the output of your scripts to a function. For
-; example, if you set output_handler to "mb_output_handler", character
-; encoding will be transparently converted to the specified encoding.
-; Setting any output handler automatically turns on output buffering.
-; Note: People who wrote portable scripts should not depend on this ini
-; directive. Instead, explicitly set the output handler using ob_start().
-; Using this ini directive may cause problems unless you know what script
-; is doing.
-; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
-; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
-; Note: output_handler must be empty if this is set 'On' !!!!
-; Instead you must use zlib.output_handler.
-; http://php.net/output-handler
-;output_handler =
-
-; Transparent output compression using the zlib library
-; Valid values for this option are 'off', 'on', or a specific buffer size
-; to be used for compression (default is 4KB)
-; Note: Resulting chunk size may vary due to nature of compression. PHP
-; outputs chunks that are few hundreds bytes each as a result of
-; compression. If you prefer a larger chunk size for better
-; performance, enable output_buffering in addition.
-; Note: You need to use zlib.output_handler instead of the standard
-; output_handler, or otherwise the output will be corrupted.
-; http://php.net/zlib.output-compression
-zlib.output_compression = Off
-
-; http://php.net/zlib.output-compression-level
-;zlib.output_compression_level = -1
-
-; You cannot specify additional output handlers if zlib.output_compression
-; is activated here. This setting does the same as output_handler but in
-; a different order.
-; http://php.net/zlib.output-handler
-;zlib.output_handler =
-
-; Implicit flush tells PHP to tell the output layer to flush itself
-; automatically after every output block. This is equivalent to calling the
-; PHP function flush() after each and every call to print() or echo() and each
-; and every HTML block. Turning this option on has serious performance
-; implications and is generally recommended for debugging purposes only.
-; http://php.net/implicit-flush
-; Note: This directive is hardcoded to On for the CLI SAPI
-implicit_flush = Off
-
-; The unserialize callback function will be called (with the undefined class'
-; name as parameter), if the unserializer finds an undefined class
-; which should be instantiated. A warning appears if the specified function is
-; not defined, or if the function doesn't include/implement the missing class.
-; So only set this entry, if you really want to implement such a
-; callback-function.
-unserialize_callback_func =
-
-; When floats & doubles are serialized store serialize_precision significant
-; digits after the floating point. The default value ensures that when floats
-; are decoded with unserialize, the data will remain the same.
-serialize_precision = 100
-
-; This directive allows you to enable and disable warnings which PHP will issue
-; if you pass a value by reference at function call time. Passing values by
-; reference at function call time is a deprecated feature which will be removed
-; from PHP at some point in the near future. The acceptable method for passing a
-; value by reference to a function is by declaring the reference in the functions
-; definition, not at call time. This directive does not disable this feature, it
-; only determines whether PHP will warn you about it or not. These warnings
-; should enabled in development environments only.
-; Default Value: On (Suppress warnings)
-; Development Value: Off (Issue warnings)
-; Production Value: Off (Issue warnings)
-; http://php.net/allow-call-time-pass-reference
-allow_call_time_pass_reference = Off
-
-; Safe Mode
-; http://php.net/safe-mode
-safe_mode = Off
-
-; By default, Safe Mode does a UID compare check when
-; opening files. If you want to relax this to a GID compare,
-; then turn on safe_mode_gid.
-; http://php.net/safe-mode-gid
-safe_mode_gid = Off
-
-; When safe_mode is on, UID/GID checks are bypassed when
-; including files from this directory and its subdirectories.
-; (directory must also be in include_path or full path must
-; be used when including)
-; http://php.net/safe-mode-include-dir
-safe_mode_include_dir =
-
-; When safe_mode is on, only executables located in the safe_mode_exec_dir
-; will be allowed to be executed via the exec family of functions.
-; http://php.net/safe-mode-exec-dir
-safe_mode_exec_dir =
-
-; Setting certain environment variables may be a potential security breach.
-; This directive contains a comma-delimited list of prefixes. In Safe Mode,
-; the user may only alter environment variables whose names begin with the
-; prefixes supplied here. By default, users will only be able to set
-; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
-; Note: If this directive is empty, PHP will let the user modify ANY
-; environment variable!
-; http://php.net/safe-mode-allowed-env-vars
-safe_mode_allowed_env_vars = PHP_
-
-; This directive contains a comma-delimited list of environment variables that
-; the end user won't be able to change using putenv(). These variables will be
-; protected even if safe_mode_allowed_env_vars is set to allow to change them.
-; http://php.net/safe-mode-protected-env-vars
-safe_mode_protected_env_vars = LD_LIBRARY_PATH
-
-; open_basedir, if set, limits all file operations to the defined directory
-; and below. This directive makes most sense if used in a per-directory
-; or per-virtualhost web server configuration file. This directive is
-; *NOT* affected by whether Safe Mode is turned On or Off.
-; http://php.net/open-basedir
-;open_basedir =
-
-; This directive allows you to disable certain functions for security reasons.
-; It receives a comma-delimited list of function names. This directive is
-; *NOT* affected by whether Safe Mode is turned On or Off.
-; http://php.net/disable-functions
-disable_functions =
-
-; This directive allows you to disable certain classes for security reasons.
-; It receives a comma-delimited list of class names. This directive is
-; *NOT* affected by whether Safe Mode is turned On or Off.
-; http://php.net/disable-classes
-disable_classes =
-
-; Colors for Syntax Highlighting mode. Anything that's acceptable in
-; <span style="color: ???????"> would work.
-; http://php.net/syntax-highlighting
-;highlight.string = #DD0000
-;highlight.comment = #FF9900
-;highlight.keyword = #007700
-;highlight.bg = #FFFFFF
-;highlight.default = #0000BB
-;highlight.html = #000000
-
-; If enabled, the request will be allowed to complete even if the user aborts
-; the request. Consider enabling it if executing long requests, which may end up
-; being interrupted by the user or a browser timing out. PHP's default behavior
-; is to disable this feature.
-; http://php.net/ignore-user-abort
-;ignore_user_abort = On
-
-; Determines the size of the realpath cache to be used by PHP. This value should
-; be increased on systems where PHP opens many files to reflect the quantity of
-; the file operations performed.
-; http://php.net/realpath-cache-size
-;realpath_cache_size = 16k
-
-; Duration of time, in seconds for which to cache realpath information for a given
-; file or directory. For systems with rarely changing files, consider increasing this
-; value.
-; http://php.net/realpath-cache-ttl
-;realpath_cache_ttl = 120
-
-;;;;;;;;;;;;;;;;;
-; Miscellaneous ;
-;;;;;;;;;;;;;;;;;
-
-; Decides whether PHP may expose the fact that it is installed on the server
-; (e.g. by adding its signature to the Web server header). It is no security
-; threat in any way, but it makes it possible to determine whether you use PHP
-; on your server or not.
-; http://php.net/expose-php
-expose_php = On
-
-;;;;;;;;;;;;;;;;;;;
-; Resource Limits ;
-;;;;;;;;;;;;;;;;;;;
-
-; Maximum execution time of each script, in seconds
-; http://php.net/max-execution-time
-; Note: This directive is hardcoded to 0 for the CLI SAPI
-max_execution_time = 30
-
-; Maximum amount of time each script may spend parsing request data. It's a good
-; idea to limit this time on productions servers in order to eliminate unexpectedly
-; long running scripts.
-; Note: This directive is hardcoded to -1 for the CLI SAPI
-; Default Value: -1 (Unlimited)
-; Development Value: 60 (60 seconds)
-; Production Value: 60 (60 seconds)
-; http://php.net/max-input-time
-max_input_time = 60
-
-; Maximum input variable nesting level
-; http://php.net/max-input-nesting-level
-;max_input_nesting_level = 64
-
-; Maximum amount of memory a script may consume (128MB)
-; http://php.net/memory-limit
-memory_limit = -1
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-; Error handling and logging ;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-; This directive informs PHP of which errors, warnings and notices you would like
-; it to take action for. The recommended way of setting values for this
-; directive is through the use of the error level constants and bitwise
-; operators. The error level constants are below here for convenience as well as
-; some common settings and their meanings.
-; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
-; those related to E_NOTICE and E_STRICT, which together cover best practices and
-; recommended coding standards in PHP. For performance reasons, this is the
-; recommend error reporting setting. Your production server shouldn't be wasting
-; resources complaining about best practices and coding standards. That's what
-; development servers and development settings are for.
-; Note: The php.ini-development file has this setting as E_ALL | E_STRICT. This
-; means it pretty much reports everything which is exactly what you want during
-; development and early testing.
-;
-; Error Level Constants:
-; E_ALL - All errors and warnings (includes E_STRICT as of PHP 6.0.0)
-; E_ERROR - fatal run-time errors
-; E_RECOVERABLE_ERROR - almost fatal run-time errors
-; E_WARNING - run-time warnings (non-fatal errors)
-; E_PARSE - compile-time parse errors
-; E_NOTICE - run-time notices (these are warnings which often result
-; from a bug in your code, but it's possible that it was
-; intentional (e.g., using an uninitialized variable and
-; relying on the fact it's automatically initialized to an
-; empty string)
-; E_STRICT - run-time notices, enable to have PHP suggest changes
-; to your code which will ensure the best interoperability
-; and forward compatibility of your code
-; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
-; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
-; initial startup
-; E_COMPILE_ERROR - fatal compile-time errors
-; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
-; E_USER_ERROR - user-generated error message
-; E_USER_WARNING - user-generated warning message
-; E_USER_NOTICE - user-generated notice message
-; E_DEPRECATED - warn about code that will not work in future versions
-; of PHP
-; E_USER_DEPRECATED - user-generated deprecation warnings
-;
-; Common Values:
-; E_ALL & ~E_NOTICE (Show all errors, except for notices and coding standards warnings.)
-; E_ALL & ~E_NOTICE | E_STRICT (Show all errors, except for notices)
-; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
-; E_ALL | E_STRICT (Show all errors, warnings and notices including coding standards.)
-; Default Value: E_ALL & ~E_NOTICE
-; Development Value: E_ALL | E_STRICT
-; Production Value: E_ALL & ~E_DEPRECATED
-; http://php.net/error-reporting
-error_reporting = E_ALL & ~E_DEPRECATED
-
-; This directive controls whether or not and where PHP will output errors,
-; notices and warnings too. Error output is very useful during development, but
-; it could be very dangerous in production environments. Depending on the code
-; which is triggering the error, sensitive information could potentially leak
-; out of your application such as database usernames and passwords or worse.
-; It's recommended that errors be logged on production servers rather than
-; having the errors sent to STDOUT.
-; Possible Values:
-; Off = Do not display any errors
-; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
-; On or stdout = Display errors to STDOUT
-; Default Value: On
-; Development Value: On
-; Production Value: Off
-; http://php.net/display-errors
-display_errors = Off
-
-; The display of errors which occur during PHP's startup sequence are handled
-; separately from display_errors. PHP's default behavior is to suppress those
-; errors from clients. Turning the display of startup errors on can be useful in
-; debugging configuration problems. But, it's strongly recommended that you
-; leave this setting off on production servers.
-; Default Value: Off
-; Development Value: On
-; Production Value: Off
-; http://php.net/display-startup-errors
-display_startup_errors = Off
-
-; Besides displaying errors, PHP can also log errors to locations such as a
-; server-specific log, STDERR, or a location specified by the error_log
-; directive found below. While errors should not be displayed on productions
-; servers they should still be monitored and logging is a great way to do that.
-; Default Value: Off
-; Development Value: On
-; Production Value: On
-; http://php.net/log-errors
-log_errors = On
-
-; Set maximum length of log_errors. In error_log information about the source is
-; added. The default is 1024 and 0 allows to not apply any maximum length at all.
-; http://php.net/log-errors-max-len
-log_errors_max_len = 1024
-
-; Do not log repeated messages. Repeated errors must occur in same file on same
-; line unless ignore_repeated_source is set true.
-; http://php.net/ignore-repeated-errors
-ignore_repeated_errors = Off
-
-; Ignore source of message when ignoring repeated messages. When this setting
-; is On you will not log errors with repeated messages from different files or
-; source lines.
-; http://php.net/ignore-repeated-source
-ignore_repeated_source = Off
-
-; If this parameter is set to Off, then memory leaks will not be shown (on
-; stdout or in the log). This has only effect in a debug compile, and if
-; error reporting includes E_WARNING in the allowed list
-; http://php.net/report-memleaks
-report_memleaks = On
-
-; This setting is on by default.
-;report_zend_debug = 0
-
-; Store the last error/warning message in $php_errormsg (boolean). Setting this value
-; to On can assist in debugging and is appropriate for development servers. It should
-; however be disabled on production servers.
-; Default Value: Off
-; Development Value: On
-; Production Value: Off
-; http://php.net/track-errors
-track_errors = Off
-
-; Turn off normal error reporting and emit XML-RPC error XML
-; http://php.net/xmlrpc-errors
-;xmlrpc_errors = 0
-
-; An XML-RPC faultCode
-;xmlrpc_error_number = 0
-
-; When PHP displays or logs an error, it has the capability of inserting html
-; links to documentation related to that error. This directive controls whether
-; those HTML links appear in error messages or not. For performance and security
-; reasons, it's recommended you disable this on production servers.
-; Note: This directive is hardcoded to Off for the CLI SAPI
-; Default Value: On
-; Development Value: On
-; Production value: Off
-; http://php.net/html-errors
-html_errors = Off
-
-; If html_errors is set On PHP produces clickable error messages that direct
-; to a page describing the error or function causing the error in detail.
-; You can download a copy of the PHP manual from http://php.net/docs
-; and change docref_root to the base URL of your local copy including the
-; leading '/'. You must also specify the file extension being used including
-; the dot. PHP's default behavior is to leave these settings empty.
-; Note: Never use this feature for production boxes.
-; http://php.net/docref-root
-; Examples
-;docref_root = "/phpmanual/"
-
-; http://php.net/docref-ext
-;docref_ext = .html
-
-; String to output before an error message. PHP's default behavior is to leave
-; this setting blank.
-; http://php.net/error-prepend-string
-; Example:
-;error_prepend_string = "<font color=#ff0000>"
-
-; String to output after an error message. PHP's default behavior is to leave
-; this setting blank.
-; http://php.net/error-append-string
-; Example:
-;error_append_string = "</font>"
-
-; Log errors to specified file. PHP's default behavior is to leave this value
-; empty.
-; http://php.net/error-log
-; Example:
-;error_log = php_errors.log
-; Log errors to syslog (Event Log on NT, not valid in Windows 95).
-;error_log = syslog
-
-;;;;;;;;;;;;;;;;;
-; Data Handling ;
-;;;;;;;;;;;;;;;;;
-
-; The separator used in PHP generated URLs to separate arguments.
-; PHP's default setting is "&".
-; http://php.net/arg-separator.output
-; Example:
-;arg_separator.output = "&"
-
-; List of separator(s) used by PHP to parse input URLs into variables.
-; PHP's default setting is "&".
-; NOTE: Every character in this directive is considered as separator!
-; http://php.net/arg-separator.input
-; Example:
-;arg_separator.input = ";&"
-
-; This directive determines which super global arrays are registered when PHP
-; starts up. If the register_globals directive is enabled, it also determines
-; what order variables are populated into the global space. G,P,C,E & S are
-; abbreviations for the following respective super globals: GET, POST, COOKIE,
-; ENV and SERVER. There is a performance penalty paid for the registration of
-; these arrays and because ENV is not as commonly used as the others, ENV is
-; is not recommended on productions servers. You can still get access to
-; the environment variables through getenv() should you need to.
-; Default Value: "EGPCS"
-; Development Value: "GPCS"
-; Production Value: "GPCS";
-; http://php.net/variables-order
-variables_order = "GPCS"
-
-; This directive determines which super global data (G,P,C,E & S) should
-; be registered into the super global array REQUEST. If so, it also determines
-; the order in which that data is registered. The values for this directive are
-; specified in the same manner as the variables_order directive, EXCEPT one.
-; Leaving this value empty will cause PHP to use the value set in the
-; variables_order directive. It does not mean it will leave the super globals
-; array REQUEST empty.
-; Default Value: None
-; Development Value: "GP"
-; Production Value: "GP"
-; http://php.net/request-order
-request_order = "GP"
-
-; Whether or not to register the EGPCS variables as global variables. You may
-; want to turn this off if you don't want to clutter your scripts' global scope
-; with user data.
-; You should do your best to write your scripts so that they do not require
-; register_globals to be on; Using form variables as globals can easily lead
-; to possible security problems, if the code is not very well thought of.
-; http://php.net/register-globals
-register_globals = Off
-
-; Determines whether the deprecated long $HTTP_*_VARS type predefined variables
-; are registered by PHP or not. As they are deprecated, we obviously don't
-; recommend you use them. They are on by default for compatibility reasons but
-; they are not recommended on production servers.
-; Default Value: On
-; Development Value: Off
-; Production Value: Off
-; http://php.net/register-long-arrays
-register_long_arrays = Off
-
-; This directive determines whether PHP registers $argv & $argc each time it
-; runs. $argv contains an array of all the arguments passed to PHP when a script
-; is invoked. $argc contains an integer representing the number of arguments
-; that were passed when the script was invoked. These arrays are extremely
-; useful when running scripts from the command line. When this directive is
-; enabled, registering these variables consumes CPU cycles and memory each time
-; a script is executed. For performance reasons, this feature should be disabled
-; on production servers.
-; Note: This directive is hardcoded to On for the CLI SAPI
-; Default Value: On
-; Development Value: Off
-; Production Value: Off
-; http://php.net/register-argc-argv
-register_argc_argv = Off
-
-; When enabled, the SERVER and ENV variables are created when they're first
-; used (Just In Time) instead of when the script starts. If these variables
-; are not used within a script, having this directive on will result in a
-; performance gain. The PHP directives register_globals, register_long_arrays,
-; and register_argc_argv must be disabled for this directive to have any affect.
-; http://php.net/auto-globals-jit
-auto_globals_jit = On
-
-; Maximum size of POST data that PHP will accept.
-; http://php.net/post-max-size
-post_max_size = 8M
-
-; Magic quotes are a preprocessing feature of PHP where PHP will attempt to
-; escape any character sequences in GET, POST, COOKIE and ENV data which might
-; otherwise corrupt data being placed in resources such as databases before
-; making that data available to you. Because of character encoding issues and
-; non-standard SQL implementations across many databases, it's not currently
-; possible for this feature to be 100% accurate. PHP's default behavior is to
-; enable the feature. We strongly recommend you use the escaping mechanisms
-; designed specifically for the database your using instead of relying on this
-; feature. Also note, this feature has been deprecated as of PHP 5.3.0 and is
-; scheduled for removal in PHP 6.
-; Default Value: On
-; Development Value: Off
-; Production Value: Off
-; http://php.net/magic-quotes-gpc
-magic_quotes_gpc = Off
-
-; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
-; http://php.net/magic-quotes-runtime
-magic_quotes_runtime = Off
-
-; Use Sybase-style magic quotes (escape ' with '' instead of \').
-; http://php.net/magic-quotes-sybase
-magic_quotes_sybase = Off
-
-; Automatically add files before PHP document.
-; http://php.net/auto-prepend-file
-auto_prepend_file =
-
-; Automatically add files after PHP document.
-; http://php.net/auto-append-file
-auto_append_file =
-
-; By default, PHP will output a character encoding using
-; the Content-type: header. To disable sending of the charset, simply
-; set it to be empty.
-;
-; PHP's built-in default is text/html
-; http://php.net/default-mimetype
-default_mimetype = "text/html"
-
-; PHP's default character set is set to empty.
-; http://php.net/default-charset
-;default_charset = "iso-8859-1"
-
-; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
-; to disable this feature.
-; http://php.net/always-populate-raw-post-data
-;always_populate_raw_post_data = On
-
-;;;;;;;;;;;;;;;;;;;;;;;;;
-; Paths and Directories ;
-;;;;;;;;;;;;;;;;;;;;;;;;;
-
-; UNIX: "/path1:/path2"
-;include_path = ".:/usr/share/php"
-;
-; Windows: "\path1;\path2"
-;include_path = ".;c:\php\includes"
-;
-; PHP's default setting for include_path is ".;/path/to/php/pear"
-; http://php.net/include-path
-
-; The root of the PHP pages, used only if nonempty.
-; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
-; if you are running php as a CGI under any web server (other than IIS)
-; see documentation for security issues. The alternate is to use the
-; cgi.force_redirect configuration below
-; http://php.net/doc-root
-doc_root =
-
-; The directory under which PHP opens the script using /~username used only
-; if nonempty.
-; http://php.net/user-dir
-user_dir =
-
-; Directory in which the loadable extensions (modules) reside.
-; http://php.net/extension-dir
-; extension_dir = "./"
-; On windows:
-; extension_dir = "ext"
-
-; Whether or not to enable the dl() function. The dl() function does NOT work
-; properly in multithreaded servers, such as IIS or Zeus, and is automatically
-; disabled on them.
-; http://php.net/enable-dl
-enable_dl = Off
-
-; cgi.force_redirect is necessary to provide security running PHP as a CGI under
-; most web servers. Left undefined, PHP turns this on by default. You can
-; turn it off here AT YOUR OWN RISK
-; **You CAN safely turn this off for IIS, in fact, you MUST.**
-; http://php.net/cgi.force-redirect
-;cgi.force_redirect = 1
-
-; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
-; every request. PHP's default behavior is to disable this feature.
-;cgi.nph = 1
-
-; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
-; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
-; will look for to know it is OK to continue execution. Setting this variable MAY
-; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
-; http://php.net/cgi.redirect-status-env
-;cgi.redirect_status_env = ;
-
-; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
-; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
-; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
-; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
-; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
-; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
-; http://php.net/cgi.fix-pathinfo
-;cgi.fix_pathinfo=1
-
-; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
-; security tokens of the calling client. This allows IIS to define the
-; security context that the request runs under. mod_fastcgi under Apache
-; does not currently support this feature (03/17/2002)
-; Set to 1 if running under IIS. Default is zero.
-; http://php.net/fastcgi.impersonate
-;fastcgi.impersonate = 1;
-
-; Disable logging through FastCGI connection. PHP's default behavior is to enable
-; this feature.
-;fastcgi.logging = 0
-
-; cgi.rfc2616_headers configuration option tells PHP what type of headers to
-; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
-; is supported by Apache. When this option is set to 1 PHP will send
-; RFC2616 compliant header.
-; Default is zero.
-; http://php.net/cgi.rfc2616-headers
-;cgi.rfc2616_headers = 0
-
-;;;;;;;;;;;;;;;;
-; File Uploads ;
-;;;;;;;;;;;;;;;;
-
-; Whether to allow HTTP file uploads.
-; http://php.net/file-uploads
-file_uploads = On
-
-; Temporary directory for HTTP uploaded files (will use system default if not
-; specified).
-; http://php.net/upload-tmp-dir
-;upload_tmp_dir =
-
-; Maximum allowed size for uploaded files.
-; http://php.net/upload-max-filesize
-upload_max_filesize = 2M
-
-; Maximum number of files that can be uploaded via a single request
-max_file_uploads = 20
-
-;;;;;;;;;;;;;;;;;;
-; Fopen wrappers ;
-;;;;;;;;;;;;;;;;;;
-
-; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
-; http://php.net/allow-url-fopen
-allow_url_fopen = On
-
-; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
-; http://php.net/allow-url-include
-allow_url_include = Off
-
-; Define the anonymous ftp password (your email address). PHP's default setting
-; for this is empty.
-; http://php.net/from
-;from="john@doe.com"
-
-; Define the User-Agent string. PHP's default setting for this is empty.
-; http://php.net/user-agent
-;user_agent="PHP"
-
-; Default timeout for socket based streams (seconds)
-; http://php.net/default-socket-timeout
-default_socket_timeout = 60
-
-; If your scripts have to deal with files from Macintosh systems,
-; or you are running on a Mac and need to deal with files from
-; unix or win32 systems, setting this flag will cause PHP to
-; automatically detect the EOL character in those files so that
-; fgets() and file() will work regardless of the source of the file.
-; http://php.net/auto-detect-line-endings
-;auto_detect_line_endings = Off
-
-;;;;;;;;;;;;;;;;;;;;;;
-; Dynamic Extensions ;
-;;;;;;;;;;;;;;;;;;;;;;
-
-; If you wish to have an extension loaded automatically, use the following
-; syntax:
-;
-; extension=modulename.extension
-;
-; For example, on Windows:
-;
-; extension=msql.dll
-;
-; ... or under UNIX:
-;
-; extension=msql.so
-;
-; ... or with a path:
-;
-; extension=/path/to/extension/msql.so
-;
-; If you only provide the name of the extension, PHP will look for it in its
-; default extension directory.
-;
-
-;;;;;;;;;;;;;;;;;;;
-; Module Settings ;
-;;;;;;;;;;;;;;;;;;;
-
-[Date]
-; Defines the default timezone used by the date functions
-; http://php.net/date.timezone
-;date.timezone =
-
-; http://php.net/date.default-latitude
-;date.default_latitude = 31.7667
-
-; http://php.net/date.default-longitude
-;date.default_longitude = 35.2333
-
-; http://php.net/date.sunrise-zenith
-;date.sunrise_zenith = 90.583333
-
-; http://php.net/date.sunset-zenith
-;date.sunset_zenith = 90.583333
-
-[filter]
-; http://php.net/filter.default
-;filter.default = unsafe_raw
-
-; http://php.net/filter.default-flags
-;filter.default_flags =
-
-[iconv]
-;iconv.input_encoding = ISO-8859-1
-;iconv.internal_encoding = ISO-8859-1
-;iconv.output_encoding = ISO-8859-1
-
-[intl]
-;intl.default_locale =
-; This directive allows you to produce PHP errors when some error
-; happens within intl functions. The value is the level of the error produced.
-; Default is 0, which does not produce any errors.
-;intl.error_level = E_WARNING
-
-[sqlite]
-; http://php.net/sqlite.assoc-case
-;sqlite.assoc_case = 0
-
-[sqlite3]
-;sqlite3.extension_dir =
-
-[Pcre]
-;PCRE library backtracking limit.
-; http://php.net/pcre.backtrack-limit
-;pcre.backtrack_limit=100000
-
-;PCRE library recursion limit.
-;Please note that if you set this value to a high number you may consume all
-;the available process stack and eventually crash PHP (due to reaching the
-;stack size limit imposed by the Operating System).
-; http://php.net/pcre.recursion-limit
-;pcre.recursion_limit=100000
-
-[Pdo]
-; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
-; http://php.net/pdo-odbc.connection-pooling
-;pdo_odbc.connection_pooling=strict
-
-;pdo_odbc.db2_instance_name
-
-[Pdo_mysql]
-; If mysqlnd is used: Number of cache slots for the internal result set cache
-; http://php.net/pdo_mysql.cache_size
-pdo_mysql.cache_size = 2000
-
-; Default socket name for local MySQL connects. If empty, uses the built-in
-; MySQL defaults.
-; http://php.net/pdo_mysql.default-socket
-pdo_mysql.default_socket=
-
-[Phar]
-; http://php.net/phar.readonly
-;phar.readonly = On
-
-; http://php.net/phar.require-hash
-;phar.require_hash = On
-
-;phar.cache_list =
-
-[Syslog]
-; Whether or not to define the various syslog variables (e.g. $LOG_PID,
-; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In
-; runtime, you can define these variables by calling define_syslog_variables().
-; http://php.net/define-syslog-variables
-define_syslog_variables = Off
-
-[mail function]
-; For Win32 only.
-; http://php.net/smtp
-SMTP = localhost
-; http://php.net/smtp-port
-smtp_port = 25
-
-; For Win32 only.
-; http://php.net/sendmail-from
-;sendmail_from = me@example.com
-
-; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
-; http://php.net/sendmail-path
-;sendmail_path =
-
-; Force the addition of the specified parameters to be passed as extra parameters
-; to the sendmail binary. These parameters will always replace the value of
-; the 5th parameter to mail(), even in safe mode.
-;mail.force_extra_parameters =
-
-; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
-mail.add_x_header = On
-
-; Log all mail() calls including the full path of the script, line #, to address and headers
-;mail.log =
-
-[SQL]
-; http://php.net/sql.safe-mode
-sql.safe_mode = Off
-
-[ODBC]
-; http://php.net/odbc.default-db
-;odbc.default_db = Not yet implemented
-
-; http://php.net/odbc.default-user
-;odbc.default_user = Not yet implemented
-
-; http://php.net/odbc.default-pw
-;odbc.default_pw = Not yet implemented
-
-; Controls the ODBC cursor model.
-; Default: SQL_CURSOR_STATIC (default).
-;odbc.default_cursortype
-
-; Allow or prevent persistent links.
-; http://php.net/odbc.allow-persistent
-odbc.allow_persistent = On
-
-; Check that a connection is still valid before reuse.
-; http://php.net/odbc.check-persistent
-odbc.check_persistent = On
-
-; Maximum number of persistent links. -1 means no limit.
-; http://php.net/odbc.max-persistent
-odbc.max_persistent = -1
-
-; Maximum number of links (persistent + non-persistent). -1 means no limit.
-; http://php.net/odbc.max-links
-odbc.max_links = -1
-
-; Handling of LONG fields. Returns number of bytes to variables. 0 means
-; passthru.
-; http://php.net/odbc.defaultlrl
-odbc.defaultlrl = 4096
-
-; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
-; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
-; of odbc.defaultlrl and odbc.defaultbinmode
-; http://php.net/odbc.defaultbinmode
-odbc.defaultbinmode = 1
-
-;birdstep.max_links = -1
-
-[Interbase]
-; Allow or prevent persistent links.
-ibase.allow_persistent = 1
-
-; Maximum number of persistent links. -1 means no limit.
-ibase.max_persistent = -1
-
-; Maximum number of links (persistent + non-persistent). -1 means no limit.
-ibase.max_links = -1
-
-; Default database name for ibase_connect().
-;ibase.default_db =
-
-; Default username for ibase_connect().
-;ibase.default_user =
-
-; Default password for ibase_connect().
-;ibase.default_password =
-
-; Default charset for ibase_connect().
-;ibase.default_charset =
-
-; Default timestamp format.
-ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
-
-; Default date format.
-ibase.dateformat = "%Y-%m-%d"
-
-; Default time format.
-ibase.timeformat = "%H:%M:%S"
-
-[MySQL]
-; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
-; http://php.net/mysql.allow_local_infile
-mysql.allow_local_infile = On
-
-; Allow or prevent persistent links.
-; http://php.net/mysql.allow-persistent
-mysql.allow_persistent = On
-
-; If mysqlnd is used: Number of cache slots for the internal result set cache
-; http://php.net/mysql.cache_size
-mysql.cache_size = 2000
-
-; Maximum number of persistent links. -1 means no limit.
-; http://php.net/mysql.max-persistent
-mysql.max_persistent = -1
-
-; Maximum number of links (persistent + non-persistent). -1 means no limit.
-; http://php.net/mysql.max-links
-mysql.max_links = -1
-
-; Default port number for mysql_connect(). If unset, mysql_connect() will use
-; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
-; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
-; at MYSQL_PORT.
-; http://php.net/mysql.default-port
-mysql.default_port =
-
-; Default socket name for local MySQL connects. If empty, uses the built-in
-; MySQL defaults.
-; http://php.net/mysql.default-socket
-mysql.default_socket =
-
-; Default host for mysql_connect() (doesn't apply in safe mode).
-; http://php.net/mysql.default-host
-mysql.default_host =
-
-; Default user for mysql_connect() (doesn't apply in safe mode).
-; http://php.net/mysql.default-user
-mysql.default_user =
-
-; Default password for mysql_connect() (doesn't apply in safe mode).
-; Note that this is generally a *bad* idea to store passwords in this file.
-; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
-; and reveal this password! And of course, any users with read access to this
-; file will be able to reveal the password as well.
-; http://php.net/mysql.default-password
-mysql.default_password =
-
-; Maximum time (in seconds) for connect timeout. -1 means no limit
-; http://php.net/mysql.connect-timeout
-mysql.connect_timeout = 60
-
-; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
-; SQL-Errors will be displayed.
-; http://php.net/mysql.trace-mode
-mysql.trace_mode = Off
-
-[MySQLi]
-
-; Maximum number of persistent links. -1 means no limit.
-; http://php.net/mysqli.max-persistent
-mysqli.max_persistent = -1
-
-; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
-; http://php.net/mysqli.allow_local_infile
-;mysqli.allow_local_infile = On
-
-; Allow or prevent persistent links.
-; http://php.net/mysqli.allow-persistent
-mysqli.allow_persistent = On
-
-; Maximum number of links. -1 means no limit.
-; http://php.net/mysqli.max-links
-mysqli.max_links = -1
-
-; If mysqlnd is used: Number of cache slots for the internal result set cache
-; http://php.net/mysqli.cache_size
-mysqli.cache_size = 2000
-
-; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
-; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
-; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
-; at MYSQL_PORT.
-; http://php.net/mysqli.default-port
-mysqli.default_port = 3306
-
-; Default socket name for local MySQL connects. If empty, uses the built-in
-; MySQL defaults.
-; http://php.net/mysqli.default-socket
-mysqli.default_socket =
-
-; Default host for mysql_connect() (doesn't apply in safe mode).
-; http://php.net/mysqli.default-host
-mysqli.default_host =
-
-; Default user for mysql_connect() (doesn't apply in safe mode).
-; http://php.net/mysqli.default-user
-mysqli.default_user =
-
-; Default password for mysqli_connect() (doesn't apply in safe mode).
-; Note that this is generally a *bad* idea to store passwords in this file.
-; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
-; and reveal this password! And of course, any users with read access to this
-; file will be able to reveal the password as well.
-; http://php.net/mysqli.default-pw
-mysqli.default_pw =
-
-; Allow or prevent reconnect
-mysqli.reconnect = Off
-
-[mysqlnd]
-; Enable / Disable collection of general statstics by mysqlnd which can be
-; used to tune and monitor MySQL operations.
-; http://php.net/mysqlnd.collect_statistics
-mysqlnd.collect_statistics = On
-
-; Enable / Disable collection of memory usage statstics by mysqlnd which can be
-; used to tune and monitor MySQL operations.
-; http://php.net/mysqlnd.collect_memory_statistics
-mysqlnd.collect_memory_statistics = Off
-
-; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
-; http://php.net/mysqlnd.net_cmd_buffer_size
-;mysqlnd.net_cmd_buffer_size = 2048
-
-; Size of a pre-allocated buffer used for reading data sent by the server in
-; bytes.
-; http://php.net/mysqlnd.net_read_buffer_size
-;mysqlnd.net_read_buffer_size = 32768
-
-[OCI8]
-
-; Connection: Enables privileged connections using external
-; credentials (OCI_SYSOPER, OCI_SYSDBA)
-; http://php.net/oci8.privileged-connect
-;oci8.privileged_connect = Off
-
-; Connection: The maximum number of persistent OCI8 connections per
-; process. Using -1 means no limit.
-; http://php.net/oci8.max-persistent
-;oci8.max_persistent = -1
-
-; Connection: The maximum number of seconds a process is allowed to
-; maintain an idle persistent connection. Using -1 means idle
-; persistent connections will be maintained forever.
-; http://php.net/oci8.persistent-timeout
-;oci8.persistent_timeout = -1
-
-; Connection: The number of seconds that must pass before issuing a
-; ping during oci_pconnect() to check the connection validity. When
-; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
-; pings completely.
-; http://php.net/oci8.ping-interval
-;oci8.ping_interval = 60
-
-; Connection: Set this to a user chosen connection class to be used
-; for all pooled server requests with Oracle 11g Database Resident
-; Connection Pooling (DRCP). To use DRCP, this value should be set to
-; the same string for all web servers running the same application,
-; the database pool must be configured, and the connection string must
-; specify to use a pooled server.
-;oci8.connection_class =
-
-; High Availability: Using On lets PHP receive Fast Application
-; Notification (FAN) events generated when a database node fails. The
-; database must also be configured to post FAN events.
-;oci8.events = Off
-
-; Tuning: This option enables statement caching, and specifies how
-; many statements to cache. Using 0 disables statement caching.
-; http://php.net/oci8.statement-cache-size
-;oci8.statement_cache_size = 20
-
-; Tuning: Enables statement prefetching and sets the default number of
-; rows that will be fetched automatically after statement execution.
-; http://php.net/oci8.default-prefetch
-;oci8.default_prefetch = 100
-
-; Compatibility. Using On means oci_close() will not close
-; oci_connect() and oci_new_connect() connections.
-; http://php.net/oci8.old-oci-close-semantics
-;oci8.old_oci_close_semantics = Off
-
-[PostgresSQL]
-; Allow or prevent persistent links.
-; http://php.net/pgsql.allow-persistent
-pgsql.allow_persistent = On
-
-; Detect broken persistent links always with pg_pconnect().
-; Auto reset feature requires a little overheads.
-; http://php.net/pgsql.auto-reset-persistent
-pgsql.auto_reset_persistent = Off
-
-; Maximum number of persistent links. -1 means no limit.
-; http://php.net/pgsql.max-persistent
-pgsql.max_persistent = -1
-
-; Maximum number of links (persistent+non persistent). -1 means no limit.
-; http://php.net/pgsql.max-links
-pgsql.max_links = -1
-
-; Ignore PostgreSQL backends Notice message or not.
-; Notice message logging require a little overheads.
-; http://php.net/pgsql.ignore-notice
-pgsql.ignore_notice = 0
-
-; Log PostgreSQL backends Notice message or not.
-; Unless pgsql.ignore_notice=0, module cannot log notice message.
-; http://php.net/pgsql.log-notice
-pgsql.log_notice = 0
-
-[Sybase-CT]
-; Allow or prevent persistent links.
-; http://php.net/sybct.allow-persistent
-sybct.allow_persistent = On
-
-; Maximum number of persistent links. -1 means no limit.
-; http://php.net/sybct.max-persistent
-sybct.max_persistent = -1
-
-; Maximum number of links (persistent + non-persistent). -1 means no limit.
-; http://php.net/sybct.max-links
-sybct.max_links = -1
-
-; Minimum server message severity to display.
-; http://php.net/sybct.min-server-severity
-sybct.min_server_severity = 10
-
-; Minimum client message severity to display.
-; http://php.net/sybct.min-client-severity
-sybct.min_client_severity = 10
-
-; Set per-context timeout
-; http://php.net/sybct.timeout
-;sybct.timeout=
-
-;sybct.packet_size
-
-; The maximum time in seconds to wait for a connection attempt to succeed before returning failure.
-; Default: one minute
-;sybct.login_timeout=
-
-; The name of the host you claim to be connecting from, for display by sp_who.
-; Default: none
-;sybct.hostname=
-
-; Allows you to define how often deadlocks are to be retried. -1 means "forever".
-; Default: 0
-;sybct.deadlock_retry_count=
-
-[bcmath]
-; Number of decimal digits for all bcmath functions.
-; http://php.net/bcmath.scale
-bcmath.scale = 0
-
-[browscap]
-; http://php.net/browscap
-;browscap = extra/browscap.ini
-
-[Session]
-; Handler used to store/retrieve data.
-; http://php.net/session.save-handler
-session.save_handler = files
-
-; Argument passed to save_handler. In the case of files, this is the path
-; where data files are stored. Note: Windows users have to change this
-; variable in order to use PHP's session functions.
-;
-; The path can be defined as:
-;
-; session.save_path = "N;/path"
-;
-; where N is an integer. Instead of storing all the session files in
-; /path, what this will do is use subdirectories N-levels deep, and
-; store the session data in those directories. This is useful if you
-; or your OS have problems with lots of files in one directory, and is
-; a more efficient layout for servers that handle lots of sessions.
-;
-; NOTE 1: PHP will not create this directory structure automatically.
-; You can use the script in the ext/session dir for that purpose.
-; NOTE 2: See the section on garbage collection below if you choose to
-; use subdirectories for session storage
-;
-; The file storage module creates files using mode 600 by default.
-; You can change that by using
-;
-; session.save_path = "N;MODE;/path"
-;
-; where MODE is the octal representation of the mode. Note that this
-; does not overwrite the process's umask.
-; http://php.net/session.save-path
-;session.save_path = "/tmp"
-
-; Whether to use cookies.
-; http://php.net/session.use-cookies
-session.use_cookies = 1
-
-; http://php.net/session.cookie-secure
-;session.cookie_secure =
-
-; This option forces PHP to fetch and use a cookie for storing and maintaining
-; the session id. We encourage this operation as it's very helpful in combatting
-; session hijacking when not specifying and managing your own session id. It is
-; not the end all be all of session hijacking defense, but it's a good start.
-; http://php.net/session.use-only-cookies
-session.use_only_cookies = 1
-
-; Name of the session (used as cookie name).
-; http://php.net/session.name
-session.name = PHPSESSID
-
-; Initialize session on request startup.
-; http://php.net/session.auto-start
-session.auto_start = 0
-
-; Lifetime in seconds of cookie or, if 0, until browser is restarted.
-; http://php.net/session.cookie-lifetime
-session.cookie_lifetime = 0
-
-; The path for which the cookie is valid.
-; http://php.net/session.cookie-path
-session.cookie_path = /
-
-; The domain for which the cookie is valid.
-; http://php.net/session.cookie-domain
-session.cookie_domain =
-
-; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
-; http://php.net/session.cookie-httponly
-session.cookie_httponly =
-
-; Handler used to serialize data. php is the standard serializer of PHP.
-; http://php.net/session.serialize-handler
-session.serialize_handler = php
-
-; Defines the probability that the 'garbage collection' process is started
-; on every session initialization. The probability is calculated by using
-; gc_probability/gc_divisor. Where session.gc_probability is the numerator
-; and gc_divisor is the denominator in the equation. Setting this value to 1
-; when the session.gc_divisor value is 100 will give you approximately a 1% chance
-; the gc will run on any give request.
-; Default Value: 1
-; Development Value: 1
-; Production Value: 1
-; http://php.net/session.gc-probability
-session.gc_probability = 1
-
-; Defines the probability that the 'garbage collection' process is started on every
-; session initialization. The probability is calculated by using the following equation:
-; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
-; session.gc_divisor is the denominator in the equation. Setting this value to 1
-; when the session.gc_divisor value is 100 will give you approximately a 1% chance
-; the gc will run on any give request. Increasing this value to 1000 will give you
-; a 0.1% chance the gc will run on any give request. For high volume production servers,
-; this is a more efficient approach.
-; Default Value: 100
-; Development Value: 1000
-; Production Value: 1000
-; http://php.net/session.gc-divisor
-session.gc_divisor = 1000
-
-; After this number of seconds, stored data will be seen as 'garbage' and
-; cleaned up by the garbage collection process.
-; http://php.net/session.gc-maxlifetime
-session.gc_maxlifetime = 1440
-
-; NOTE: If you are using the subdirectory option for storing session files
-; (see session.save_path above), then garbage collection does *not*
-; happen automatically. You will need to do your own garbage
-; collection through a shell script, cron entry, or some other method.
-; For example, the following script would is the equivalent of
-; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
-; cd /path/to/sessions; find -cmin +24 | xargs rm
-
-; PHP 4.2 and less have an undocumented feature/bug that allows you to
-; to initialize a session variable in the global scope, even when register_globals
-; is disabled. PHP 4.3 and later will warn you, if this feature is used.
-; You can disable the feature and the warning separately. At this time,
-; the warning is only displayed, if bug_compat_42 is enabled. This feature
-; introduces some serious security problems if not handled correctly. It's
-; recommended that you do not use this feature on production servers. But you
-; should enable this on development servers and enable the warning as well. If you
-; do not enable the feature on development servers, you won't be warned when it's
-; used and debugging errors caused by this can be difficult to track down.
-; Default Value: On
-; Development Value: On
-; Production Value: Off
-; http://php.net/session.bug-compat-42
-session.bug_compat_42 = Off
-
-; This setting controls whether or not you are warned by PHP when initializing a
-; session value into the global space. session.bug_compat_42 must be enabled before
-; these warnings can be issued by PHP. See the directive above for more information.
-; Default Value: On
-; Development Value: On
-; Production Value: Off
-; http://php.net/session.bug-compat-warn
-session.bug_compat_warn = Off
-
-; Check HTTP Referer to invalidate externally stored URLs containing ids.
-; HTTP_REFERER has to contain this substring for the session to be
-; considered as valid.
-; http://php.net/session.referer-check
-session.referer_check =
-
-; How many bytes to read from the file.
-; http://php.net/session.entropy-length
-session.entropy_length = 0
-
-; Specified here to create the session id.
-; http://php.net/session.entropy-file
-; On systems that don't have /dev/urandom /dev/arandom can be used
-; On windows, setting the entropy_length setting will activate the
-; Windows random source (using the CryptoAPI)
-;session.entropy_file = /dev/urandom
-
-; Set to {nocache,private,public,} to determine HTTP caching aspects
-; or leave this empty to avoid sending anti-caching headers.
-; http://php.net/session.cache-limiter
-session.cache_limiter = nocache
-
-; Document expires after n minutes.
-; http://php.net/session.cache-expire
-session.cache_expire = 180
-
-; trans sid support is disabled by default.
-; Use of trans sid may risk your users security.
-; Use this option with caution.
-; - User may send URL contains active session ID
-; to other person via. email/irc/etc.
-; - URL that contains active session ID may be stored
-; in publically accessible computer.
-; - User may access your site with the same session ID
-; always using URL stored in browser's history or bookmarks.
-; http://php.net/session.use-trans-sid
-session.use_trans_sid = 0
-
-; Select a hash function for use in generating session ids.
-; Possible Values
-; 0 (MD5 128 bits)
-; 1 (SHA-1 160 bits)
-; This option may also be set to the name of any hash function supported by
-; the hash extension. A list of available hashes is returned by the hash_algos()
-; function.
-; http://php.net/session.hash-function
-session.hash_function = 0
-
-; Define how many bits are stored in each character when converting
-; the binary hash data to something readable.
-; Possible values:
-; 4 (4 bits: 0-9, a-f)
-; 5 (5 bits: 0-9, a-v)
-; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
-; Default Value: 4
-; Development Value: 5
-; Production Value: 5
-; http://php.net/session.hash-bits-per-character
-session.hash_bits_per_character = 5
-
-; The URL rewriter will look for URLs in a defined set of HTML tags.
-; form/fieldset are special; if you include them here, the rewriter will
-; add a hidden <input> field with the info which is otherwise appended
-; to URLs. If you want XHTML conformity, remove the form entry.
-; Note that all valid entries require a "=", even if no value follows.
-; Default Value: "a=href,area=href,frame=src,form=,fieldset="
-; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
-; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
-; http://php.net/url-rewriter.tags
-url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
-
-[MSSQL]
-; Allow or prevent persistent links.
-mssql.allow_persistent = On
-
-; Maximum number of persistent links. -1 means no limit.
-mssql.max_persistent = -1
-
-; Maximum number of links (persistent+non persistent). -1 means no limit.
-mssql.max_links = -1
-
-; Minimum error severity to display.
-mssql.min_error_severity = 10
-
-; Minimum message severity to display.
-mssql.min_message_severity = 10
-
-; Compatibility mode with old versions of PHP 3.0.
-mssql.compatability_mode = Off
-
-; Connect timeout
-;mssql.connect_timeout = 5
-
-; Query timeout
-;mssql.timeout = 60
-
-; Valid range 0 - 2147483647. Default = 4096.
-;mssql.textlimit = 4096
-
-; Valid range 0 - 2147483647. Default = 4096.
-;mssql.textsize = 4096
-
-; Limits the number of records in each batch. 0 = all records in one batch.
-;mssql.batchsize = 0
-
-; Specify how datetime and datetim4 columns are returned
-; On => Returns data converted to SQL server settings
-; Off => Returns values as YYYY-MM-DD hh:mm:ss
-;mssql.datetimeconvert = On
-
-; Use NT authentication when connecting to the server
-mssql.secure_connection = Off
-
-; Specify max number of processes. -1 = library default
-; msdlib defaults to 25
-; FreeTDS defaults to 4096
-;mssql.max_procs = -1
-
-; Specify client character set.
-; If empty or not set the client charset from freetds.comf is used
-; This is only used when compiled with FreeTDS
-;mssql.charset = "ISO-8859-1"
-
-[Assertion]
-; Assert(expr); active by default.
-; http://php.net/assert.active
-;assert.active = On
-
-; Issue a PHP warning for each failed assertion.
-; http://php.net/assert.warning
-;assert.warning = On
-
-; Don't bail out by default.
-; http://php.net/assert.bail
-;assert.bail = Off
-
-; User-function to be called if an assertion fails.
-; http://php.net/assert.callback
-;assert.callback = 0
-
-; Eval the expression with current error_reporting(). Set to true if you want
-; error_reporting(0) around the eval().
-; http://php.net/assert.quiet-eval
-;assert.quiet_eval = 0
-
-[COM]
-; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
-; http://php.net/com.typelib-file
-;com.typelib_file =
-
-; allow Distributed-COM calls
-; http://php.net/com.allow-dcom
-;com.allow_dcom = true
-
-; autoregister constants of a components typlib on com_load()
-; http://php.net/com.autoregister-typelib
-;com.autoregister_typelib = true
-
-; register constants casesensitive
-; http://php.net/com.autoregister-casesensitive
-;com.autoregister_casesensitive = false
-
-; show warnings on duplicate constant registrations
-; http://php.net/com.autoregister-verbose
-;com.autoregister_verbose = true
-
-; The default character set code-page to use when passing strings to and from COM objects.
-; Default: system ANSI code page
-;com.code_page=
-
-[mbstring]
-; language for internal character representation.
-; http://php.net/mbstring.language
-;mbstring.language = Japanese
-
-; internal/script encoding.
-; Some encoding cannot work as internal encoding.
-; (e.g. SJIS, BIG5, ISO-2022-*)
-; http://php.net/mbstring.internal-encoding
-;mbstring.internal_encoding = EUC-JP
-
-; http input encoding.
-; http://php.net/mbstring.http-input
-;mbstring.http_input = auto
-
-; http output encoding. mb_output_handler must be
-; registered as output buffer to function
-; http://php.net/mbstring.http-output
-;mbstring.http_output = SJIS
-
-; enable automatic encoding translation according to
-; mbstring.internal_encoding setting. Input chars are
-; converted to internal encoding by setting this to On.
-; Note: Do _not_ use automatic encoding translation for
-; portable libs/applications.
-; http://php.net/mbstring.encoding-translation
-;mbstring.encoding_translation = Off
-
-; automatic encoding detection order.
-; auto means
-; http://php.net/mbstring.detect-order
-;mbstring.detect_order = auto
-
-; substitute_character used when character cannot be converted
-; one from another
-; http://php.net/mbstring.substitute-character
-;mbstring.substitute_character = none;
-
-; overload(replace) single byte functions by mbstring functions.
-; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
-; etc. Possible values are 0,1,2,4 or combination of them.
-; For example, 7 for overload everything.
-; 0: No overload
-; 1: Overload mail() function
-; 2: Overload str*() functions
-; 4: Overload ereg*() functions
-; http://php.net/mbstring.func-overload
-;mbstring.func_overload = 0
-
-; enable strict encoding detection.
-;mbstring.strict_detection = Off
-
-; This directive specifies the regex pattern of content types for which mb_output_handler()
-; is activated.
-; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
-;mbstring.http_output_conv_mimetype=
-
-; Allows to set script encoding. Only affects if PHP is compiled with --enable-zend-multibyte
-; Default: ""
-;mbstring.script_encoding=
-
-[gd]
-; Tell the jpeg decode to ignore warnings and try to create
-; a gd image. The warning will then be displayed as notices
-; disabled by default
-; http://php.net/gd.jpeg-ignore-warning
-;gd.jpeg_ignore_warning = 0
-
-[exif]
-; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
-; With mbstring support this will automatically be converted into the encoding
-; given by corresponding encode setting. When empty mbstring.internal_encoding
-; is used. For the decode settings you can distinguish between motorola and
-; intel byte order. A decode setting cannot be empty.
-; http://php.net/exif.encode-unicode
-;exif.encode_unicode = ISO-8859-15
-
-; http://php.net/exif.decode-unicode-motorola
-;exif.decode_unicode_motorola = UCS-2BE
-
-; http://php.net/exif.decode-unicode-intel
-;exif.decode_unicode_intel = UCS-2LE
-
-; http://php.net/exif.encode-jis
-;exif.encode_jis =
-
-; http://php.net/exif.decode-jis-motorola
-;exif.decode_jis_motorola = JIS
-
-; http://php.net/exif.decode-jis-intel
-;exif.decode_jis_intel = JIS
-
-[Tidy]
-; The path to a default tidy configuration file to use when using tidy
-; http://php.net/tidy.default-config
-;tidy.default_config = /usr/local/lib/php/default.tcfg
-
-; Should tidy clean and repair output automatically?
-; WARNING: Do not use this option if you are generating non-html content
-; such as dynamic images
-; http://php.net/tidy.clean-output
-tidy.clean_output = Off
-
-[soap]
-; Enables or disables WSDL caching feature.
-; http://php.net/soap.wsdl-cache-enabled
-soap.wsdl_cache_enabled=1
-
-; Sets the directory name where SOAP extension will put cache files.
-; http://php.net/soap.wsdl-cache-dir
-soap.wsdl_cache_dir="/tmp"
-
-; (time to live) Sets the number of second while cached file will be used
-; instead of original one.
-; http://php.net/soap.wsdl-cache-ttl
-soap.wsdl_cache_ttl=86400
-
-; Sets the size of the cache limit. (Max. number of WSDL files to cache)
-soap.wsdl_cache_limit = 5
-
-[sysvshm]
-; A default size of the shared memory segment
-;sysvshm.init_mem = 10000
-
-[ldap]
-; Sets the maximum number of open links or -1 for unlimited.
-ldap.max_links = -1
-
-[mcrypt]
-; For more information about mcrypt settings see http://php.net/mcrypt-module-open
-
-; Directory where to load mcrypt algorithms
-; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
-;mcrypt.algorithms_dir=
-
-; Directory where to load mcrypt modes
-; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
-;mcrypt.modes_dir=
-
-[dba]
-;dba.default_handler=
-
-; Local Variables:
-; tab-width: 4
-; End:
+++ /dev/null
-<?php
-/***************************************************************************
-* *
-* These apply everywhere and will need setting *
-* *
-***************************************************************************/
-
-/****************************
-********* Mandatory *********
-*****************************/
-
-/**
-* Database connection: DAViCal will attempt to connect to the database by
-* successively applying connection parameters from the array in
-* $c->pg_connect.
-*/
-//$c->pg_connect[] = "dbname=davical user=davical_app";
-$c->pg_connect[] = "dbname=davical user=davical_app port=5432 host=localhost password=v?5T4Ca85LvYKW&s";
-
-
-/****************************
-********* Desirable *********
-*****************************/
-
-/**
-* "system_name" is used to specify the authentication realm of the server, as
-* well as being used as a name to display in various places.
-*
-* Default: DAViCal CalDAV Server
-*/
-$c->system_name = "DAViCal CalDAV Server cal.laktatnebel.de";
-
-/**
-* The CalDAV specification does not define GET on a collection, but typically this is
-* used as a .ics download for the whole collection. This will also enable a download
-* link in the web interface for calendars with entries.
-*
-* Default: false
-*/
-// $c->get_includes_subcollections = true;
-
-/**
-* If "readonly_webdav_collections" is true, then calendars accessed via WebDAV
-* will be read-only. Any changes to them must be applied via CalDAV.
-*
-* You may want to set this to false during your initial setup to make it
-* easier for people to PUT whole calendars or addressbooks as part of migrating
-* their data. After this, it is recommended to turn it off so that clients
-* which have been misconfigured are readily identifiable.
-*
-* Default: true
-*/
-// $c->readonly_webdav_collections = false;
-
-/**
-* This will allow failure on import of collections to apply only to an
-* individual event that is faulty, rather than failing the whole collection.
-*
-* Default: false (fail whole collection)
-*/
-// $c->skip_bad_event_on_import = true;
-
-
-/***************************************************************************
-* *
-* ADMIN web Interface *
-* *
-***************************************************************************/
-
-/**
-* Address displayed on the login page to indicate who you should ask if you
-* have problems logging on. Also for the "From" header of the email sent when
-* a user has lost his password and clicks on the "Help! I've forgotten my
-* password" on the login page.
-*/
-$c->admin_email ='admin@laktatnebel.de';
-
-/**
-* Set this to 'true' in order to restrict the /setup.php page (which contains
-* the entire phpinfo() output) to 'Administrator' users.
-*
-* Default: false
-*/
-$c->restrict_setup_to_admin = true;
-
-/**
-* Restrict access to the administrative pages to only be available on a
-* particular domain name and port. The default is that any DAViCal instance
-* will have the administrative pages active. When any these settings is enabled,
-* requests for administrative URLs such as index.php, admin.php, setup.php etc
-* will be redirected to 'caldav.php', unless the restrictions are fulfilled.
-*/
-// $c->restrict_admin_domain = 'admin.davical.example.com';
-// $c->restrict_admin_port = '8443';
-
-/**
-* The "enable_row_linking" option controls whether javascript is used
-* to make the entire row clickable in browse lists in the administration
-* pages. Since this doesn't work in Konqueror you may want to set this
-* to false if you expect people to be using Konqueror with the DAViCal
-* administration pages.
-*
-* Default: true
-*/
-// $c->enable_row_linking = false;
-
-/**
-* These should be an array of style sheets with a path specified relative
-* to the root directory. Used for overriding display styles in the admin
-* interface.
-* e.g. : $c->local_styles = array('/css/my.css');
-*/
-// $c->local_styles = array();
-// $c->print_styles = array();
-
-
-/***************************************************************************
-* *
-* Debug Options *
-* *
-***************************************************************************/
-
-/**
-* Whenever you think you've found an issue with how DAViCal handles a situation,
-* generating some data on what it's actually doing and whether it can find a
-* certain event in the database etc. can be essential to allow others (or
-* yourself) to understand what's going wrong.
-*
-* There are many different types of debug messages (for more details see
-* debug-config.php), but this will log them all:
-*/
-// $c->dbg["ALL"] = 1;
-
-/**
-* While the above setting will quickly fill your PHP error log and should best
-* be restricted to one or two requests, logging just the client interaction
-* is almost as useful. This should be the minimum for any support request on
-* the mailing list or issue tracker.
-*/
-// $c->dbg["request"] = 1; // The request headers & content
-// $c->dbg['response'] = 1; // The response headers & content
-
-/**
-* Even on a moderately busy server, turning on debug logging for everyone can
-* produce a lot of output in a short time that makes it hard to find the
-* relevant lines. Debug filtering limits logging to certain IP addresses or
-* usernames. (config values are arrays)
-*/
-// $c->dbg_filter["remoteIP"][] = '192.168.1.20';
-// $c->dbg_filter["remoteIP"][] = '192.168.1.21';
-// $c->dbg_filter["authenticatedUser"][] = 'peter';
-// $c->dbg_filter["authenticatedUser"][] = 'john';
-
-
-/***************************************************************************
-* *
-* Caldav Server *
-* *
-***************************************************************************/
-
-/**
-* The "collections_always_exist" value defines whether a MKCALENDAR
-* command is needed to create a calendar collection before calendar
-* resources can be stored in it. You will want to leave this to the
-* default (true) if people will be using Evolution or Sunbird /
-* Lightning against this because that software does not support the
-* creation of calendar collections.
-*
-* Default: true
-*/
-// $c->collections_always_exist = false;
-
-/**
-* The name of a user's "home" calendar and addressbook. These will be created
-* for each new user.
-*
-* Defaults:
-* home_calendar_name: 'calendar'
-* home_addressbook_name: 'addresses'
-*/
-// $c->home_calendar_name = 'calendar';
-// $c->home_addressbook_name = 'addresses';
-
-/**
-* Sets a numeric value indicating the maximum size in octets (bytes) of a resource
-* that the server is willing to accept when an address object resource is stored
-* in an address book collection (e.g. contacts with image attachments).
-* Note that not all clients respect that property and that DAViCal won't deny creating
-* or updating a resource that is larger than the specified limit if the client willingly or
-* unwillingly ignores that property. Currently (late 2018) we only know of iOS devices to handle it properly.
-*
-* Default: 6550000
-*/
-// $c->carddav_max_resource_size = 6550000;
-
-/**
-* If the above options are not suitable for your new users, use this to create
-* a more complex default collection management.
-* Note: if you use this configuration option both $c->home_calendar_name and
-* $c->home_addressbook_name are ignored!
-* See https://wiki.davical.org/index.php/Configuration/settings/default_collections
-*/
-//$c->default_collections=array(
-// array('type'=>'addressbook', 'name'=>'addresses', 'displayname'=>'%fn addressbook', 'privileges'=>null),
-// array('type'=>'calendar', 'name'=>'calendar', 'displayname'=>'%fn calendar', 'privileges'=>null)
-//);
-
-/**
-* An array of groups / permissions which should be automatically added
-* for each new user created. This is a crude mechanism which we
-* will hopefully manage to work out some better approach for in the
-* future. For now, create an array that looks something like:
-* array( 9 => 'R', 4 => 'A' )
-* to create a 'read' relationship to user_no 9 and an 'all' relation
-* with user_no 4.
-*
-* Default: none
-*/
-// $c->default_relationships = array();
-
-/**
-* An array of the privileges which will be configured for a user by default
-* from the possible set of real privileges:
-* 'read', 'write-properties', 'write-content', 'unlock', 'read-acl', 'read-current-user-privilege-set',
-* 'bind', 'unbind', 'write-acl', 'read-free-busy',
-* 'schedule-deliver-invite', 'schedule-deliver-reply', 'schedule-query-freebusy',
-* 'schedule-send-invite', 'schedule-send-reply', 'schedule-send-freebusy'
-*
-* Or also from these aggregated privileges:
-* 'write', 'schedule-deliver', 'schedule-send', 'all'
-*/
-// $c->default_privileges = array('read-free-busy', 'schedule-query-freebusy');
-
-/**
-* An array of fields on the usr record which should be set to specific
-* values when the users are created.
-*
-* Default: none
-*/
-// $c->template_usr = array( 'active' => true,
-// 'locale' => 'it_IT',
-// 'date_format_type' => 'E',
-// 'email_ok' => date('Y-m-d')
-// );
-
-/**
-* If "hide_TODO" is true, then VTODO requested from someone other than the
-* admin or owner of a calendar will not get an answer. Often these todo are
-* only relevant to the owner, but in some shared calendar situations they
-* might not be in which case you should set this to false.
-*
-* Default: true
-*/
-// $c->hide_TODO = false;
-
-/**
-* If true, then VALARM from someone other than the admin or owner of a
-* calendar will not be included in the response. The default is false because
-* the preferred behaviour is to enable/disable the alarms in your CalDAV
-* client software.
-*/
-// $c->hide_alarm = true;
-
-/**
-* If you want to hide older events (in order to save resources, speed up
-* clients, etc.) define the desired time interval in number of days.
-*/
-// $c->hide_older_than = 90;
-
-/**
-* Hide bound collections from certain clients
-* If you want to use iOS (which does not support delegation) in combination
-* with other software which does supports degation, you can use this option
-* to tailor a working solution: bind all collections you want to see on iOS
-* (emulation of delegation) and then hide these collections from other clients
-* with real delegation support.
-*
-* Default: false/not set: always show bound collections
-*
-* If set to true: never show bound collections
-* If set to an array: hide if any header => regex tuple matches
-* Example: Hide bound collections from clients which send a User-Agent header
-* matching regex1 OR an X-Client header matching regex2
-*/
-// $c->hide_bound = array( 'User-Agent'=>'#regex1#', 'X-Client'=>'#regex2#');
-
-/**
-* External subscription (BIND) minimum refresh interval
-* Required if you want to enable remote binding ( webcal subscriptions )
-*
-* Default: none
-*/
-// $c->external_refresh = 60;
-
-/**
-* External subscription (BIND) user agent string
-* Required if your remote calendar only delivers to known user agents.
-*
-* Default: none
-*/
-// $c->external_ua_string = '';
-
-/**
-* If you want to force DAViCal to use HTTP Digest Authentication for CalDAV
-* access. Note that this requires all user passwords to be stored in plain text
-* in the database. It is probably better to configure the webserver to do
-* Digest auth against a separate user database (see below for Webserver Auth).
-*/
-// $c->http_auth_mode = "Digest";
-
-/**
-* Provide freebusy information to any (unauthenticated) user via the
-* freebusy.php URL. Only events marked as PRIVATE will be excluded from the
-* report.
-*
-* Default: false (authentication required)
-*/
-// $c->public_freebusy_url = true;
-
-/**
-* The "support_obsolete_free_busy_property" value controls whether,
-* during a PROPFIND, the obsolete Scheduling property "calendar-free-busy-set"
-* is returned. Set the value to true to support the property only if your
-* client requires it, however note that PROPFIND performance may be
-* adversely affected if you do so.
-* Introduced in DAViCal version 1.1.4 in support of Issue #31 Database
-* Performance Improvements.
-*
-* Default: false
-*/
-// $c->support_obsolete_free_busy_property = false;
-
-/**
-* The default locale will be "en_NZ";
-* If you are in a non-English locale, you can set the default_locale
-* configuration to one of the supported locales.
-*
-* Supported Locales (at present, see: "select * from supported_locales ;" for a full list)
-*
-* "de_DE", "en_NZ", "es_AR", "fr_FR", "nl_NL", "ru_RU"
-*
-* If you want locale support you probably know more about configuring it than me, but
-* at this stage it should be noted that all translations are UTF-8, and pages are
-* served as UTF-8, so you will need to ensure that the UTF-8 versions of these locales
-* are supported on your system.
-*
-* People interested in providing new translations are directed to the Wiki:
-* https://wiki.davical.org/w/Translating_DAViCal
-*/
-$c->default_locale = "de_DE";
-
-/**
-* This is used to construct URLs which are passed in the answers to the client. You may
-* want to force this to a specific domain in responses if your system is accessed by
-* multiple names, otherwise you probably won't need to change it.
-*
-* Default: $_SERVER['SERVER_NAME']
-*/
-$c->domain_name = "cal.triathlon-coaching.com";
-
-/**
-* If this option is set to true, then "@$c->domain_name" is appended to the
-* user login name if it does not contain the @ character. If email addresses
-* are used as user names in Davical, this fixes a problem with MacOS X 10.6
-* Addressbook that cannot login to CardDav account.
-*
-* Default: false
-*/
-// $c->login_append_domain_if_missing = true;
-
-/**
-* Many people want this, but it may be a security issue for you, so it is
-* disabled by default. If you enable it, then confidential / private events
-* will be visible to the 'organizer' or 'attendee' lists. The reason that
-* this becomes a security issue is that this identification needs to be based
-* on the user's e-mail address. The user's e-mail address is generally
-* something which they can set, so they could change it to be the address of
-* an attendee of a meeting and then would be able to read the meeting.
-*
-* Without this, the only person who can view/change PRIVATE or CONFIDENTIAL
-* events in a calendar is someone with full administrative rights to the calendar
-* usually the owner.
-*
-* If the only person that devious is your sysadmin then you probably already
-* enabled this option...
-*
-* Default: false
-*/
-// $c->allow_get_email_visibility = false;
-
-/**
-* Disable calendar-proxy-{read,write} on PROPFIND
-* This can be useful if clients are known to not use this information,
-* as it is very expensive to compute (especially on servers with lots of
-* users who share their collections) and most clients will never use it,
-* or ask for it explicitly using an expand-property REPORT, which is not
-* affected by this option.
-*
-* Default: false/unset
-*
-* If set to false (or unset): always show
-* If set to true: never show
-* If set to an array: hide if any header => regex tuple matches
-*/
-// $c->disable_caldav_proxy_propfind_collections = array( 'User-Agent'=>'#regex1#', 'X-Client'=>'#regex2#');
-
-/**
-* EXPERIMENTAL:
-* If true, names of groups (prefixed with "@") given as an event attendee
-* will get resolved to a list of members of that group. Note that CalDAV
-* clients might get confused by this server behavior until they get
-* synced again.
-*
-* Default: false.
-*/
-// $c->enable_attendee_group_resolution = true;
-
-
-/***************************************************************************
-* *
-* Scheduling *
-* *
-***************************************************************************/
-
-/**
-* If you want to turn off scheduling functions you can set this to 'false' and
-* DAViCal will not advertise the ability to schedule, leaving it to calendar
-* clients to send out and receive scheduling requests.
-*
-* Default: true
-*/
-// $c->enable_auto_schedule = false;
-
-/**
-* If true, then remote scheduling will be enabled. There is a possibility
-* of receiving spam events in calendars if enabled, you will at least know
-* what domain the spam came from as domain key signatures are required for
-* events to be accepted.
-*
-* You probably need to setup Domain Keys for your domain as well as the
-* appropiate DNS SRV records.
-*
-* for example, if DAViCal is installed on cal.example.com you should have
-* DNS SRV records like this:
-* _ischedules._tcp.example.com. IN SRV 0 1 443 cal.example.com
-* _ischedule._tcp.example.com. IN SRV 0 1 80 cal.example.com
-*
-* DNS TXT record for signing outbound requests
-* example:
-* cal._domainkey.example.com. 86400 IN TXT "k=rsa\; t=s\; p=PUBKEY"
-*
-* Default: false
-*/
-// $c->enable_scheduling = true;
-
-/**
-* Domain Key domain to use when signing outbound scheduling requests, this
-* is the domain with the public key in a TXT record as shown above.
-*
-* TODO: enable domain/signing by per user keys, patches welcome.
-*
-* Default: none
-*/
-// $c->scheduling_dkim_domain = '';
-
-/**
-* Domain Key selector to use when signing outbound scheduling requests.
-*
-* TODO: enable selectors/signing by per user keys, patches welcome.
-*
-* Default: 'cal'
-*/
-// $c->scheduling_dkim_selector = 'cal';
-
-/*
-* Domain Key private key
-* Required if you want to enable outbound remote server scheduling
-*
-* Default: none
-*/
-// $c->schedule_private_key = 'PRIVATE-KEY-BASE-64-DATA';
-
-
-/***************************************************************************
-* *
-* Operation behind a Reverse Proxy *
-* *
-***************************************************************************/
-
-/**
-* If you install DAViCal behind a reverse proxy (e.g. an SSL offloader or
-* application firewall, or in order to present services from different machines
-* on a single public IP / hostname), the client IP, protocol and port used may
-* be different from what the web server is reporting to DAViCal. Often, the
-* original values are written to the X-Real-IP and/or X-Forwarded-For,
-* X-Forwarded-Proto and X-Forwarded-Port headers. You can instruct DAViCal to
-* attempt to "do the right thing" and use the content of these headers instead,
-* when they are available.
-*
-* CAUTION: Malicious clients can spoof these headers. When you enable this, you
-* need to make sure your reverse proxy erases any pre-existing values of all
-* these headers, and that no untrusted requests can reach DAViCal without
-* passing the proxy server.
-*
-* Default: false
-*/
-// $c->trust_x_forwarded = true;
-
-/**
-* Instead or in addition to the above, you can compute, override or unset the
-* relevant variables. This is a catch-all for non-standard or advanced
-* environments.
-*/
-
-/* Unset X-Real-IP, as it's not controlled by the reverse proxy. */
-// unset( $_SERVER['HTTP_X_REAL_IP'] );
-// $c->trust_x_forwarded = true;
-
-/* Set all values manually. */
-// $_SERVER['HTTPS'] = 'on';
-// $_SERVER['SERVER_PORT'] = 443;
-// $_SERVER['REMOTE_ADDR'] = $_SERVER['Client-IP'];
-
-
-/***************************************************************************
-* *
-* External Authentication Sources *
-* *
-***************************************************************************/
-
-/**
-* Allow specifying another way to control access of the user by authenticating
-* him against other drivers such has LDAP (the default is the PgSQL DB)
-* $c->authenticate_hook['call'] should be set to the name of the plugin and must
-* be a valid function that will be call like this:
-* call_user_func( $c->authenticate_hook['call'], $username, $password )
-*
-* The login mechanism is used in 2 different places:
-* - for the web interface in: index.php that calls DAViCalSession.php that extends
-* Session.php (from AWL libraries)
-* - for the caldav client in: caldav.php that calls HTTPAuthSession.php
-* Both Session.php and HTTPAuthSession.php check against the
-* authenticate_hook['call'], although for HTTPAuthSession.php this will be for
-* each page. For Session.php this will only occur during login.
-*
-* $c->authenticate_hook['config'] should be set up with any configuration data
-* needed by the authenticate call - see below or in the Wiki for details.
-* If you want to develop your own authentication plugin, have a look at
-* awl/inc/AuthPlugins.php or any of the inc/drivers_*.php files.
-*
-* $c->authenticate_hook['optional'] = true; can be set to try default authentication
-* as well in case the configured hook should report a failure.
-*/
-// $c->authenticate_hook['optional'] = true;
-
-/********************************/
-/******* Other AWL hook *********/
-/********************************/
-// require_once('auth-functions.php');
-// $c->authenticate_hook = array(
-// 'call' => 'AuthExternalAwl',
-// 'config' => array(
-// // A PgSQL database connection string for the database containing user records
-// 'connection' => 'dbname=wrms host=otherhost port=5433 user=general',
-// // Which columns should be fetched from the database
-// 'columns' => "user_no, active, email_ok, joined, last_update AS updated, last_used, username, password, fullname, email",
-// // a WHERE clause to limit the records returned.
-// 'where' => "active AND org_code=7"
-// )
-// );
-
-
-/********************************/
-/*********** LDAP hook **********/
-/********************************/
-/*
-* For Active Directory go down to the next example.
-*/
-
-//$c->authenticate_hook['call'] = 'LDAP_check';
-//$c->authenticate_hook['config'] = array(
-// 'host' => 'www.tennaxia.net', //host name of your LDAP Server
-// 'port' => '389', //port
-
- /* For the initial bind to be anonymous leave bindDN and passDN
- commented out */
-// DN to bind to this server enabling to perform request
-// 'bindDN'=> 'cn=manager,cn=internal,dc=tennaxia,dc=net',
-// Password of the previous bindDN to bind to this server enabling to perform request
-// 'passDN'=> 'xxxxxxxx',
-
-// 'protocolVersion' => '3', //Version of LDAP protocol to use
-// 'optReferrals' => 0, //whether to automatically follow referrals returned by the LDAP server
-// 'networkTimeout' => 10, //timeout in seconds
-// 'baseDNUsers'=> 'dc=tennaxia,dc=net', //where to look at valid user
-// 'filterUsers' => 'objectClass=kolabInetOrgPerson', //filter which must validate a user according to RFC4515, i.e. surrounded by brackets
-// 'baseDNGroups' => 'ou=divisions,dc=tennaxia,dc=net', //where to look for groups
-// 'filterGroups' => 'objectClass=groupOfUniqueNames', //filter with same rules as filterUsers
- /** /!\ "username" should be set and "modified" must be set **/
-// 'mapping_field' => array("username" => "uid",
-// "modified" => "modifyTimestamp",
-// "fullname" => "cn" ,
-// "email" =>"mail"
-// ), //used to create the user based on his ldap properties
-// 'group_mapping_field' => array("username" => "cn",
-// "modified" => "modifyTimestamp",
-// "fullname" => "cn" ,
-// "members" =>"memberUid"
-// ), //used to create the group based on the ldap properties
-// 'group_member_dnfix' => true, // if your "members" field contains the full DN and needs to be truncated to just the uid
- /** used to set default value for all users, will be overcharged by ldap if defined also in mapping_field **/
-// 'default_value' => array("date_format_type" => "E","locale" => "fr_FR"),
- /** foreach key set start and length in the string provided by ldap
- example for openLDAP timestamp : 20070503162215Z **/
-// 'format_updated'=> array('Y' => array(0,4),'m' => array(4,2),'d'=> array(6,2),'H' => array(8,2),'M'=>array(10,2),'S' => array(12,2)),
-// 'startTLS' => 'yes', // Require that TLS is used for LDAP?
- // If ldap_start_tls is not working, it is probably
- // because php wants to validate the server's
- // certificate. Try adding "TLS_REQCERT never" to the
- // ldap configuration file that php uses (e.g. /etc/ldap.conf
- // or /etc/ldap/ldap.conf). Of course, this lessens security!
-// 'scope' => 'subtree', // Search scope to use, defaults to subtree.
-// // Allowed values: base, onelevel, subtree.
-//
-// );
-//
-// /* If there is some user/group you do not want to sync from LDAP, put their username in these lists */
-// $c->do_not_sync_from_ldap = array( 'admin' => true );
-// $c->do_not_sync_group_from_ldap = array( 'teamclient1' => true );
-//
-//include('drivers_ldap.php');
-
-/*
-* Use the following LDAP example if you are using Active Directory
-*
-* You will need to change host, passDN and DOMAIN in bindDN
-* and baseDNUsers.
-*/
-//$c->authenticate_hook['call'] = 'LDAP_check';
-//$c->authenticate_hook['config'] = array(
-// 'host' => 'ldap://ldap.example.net',
-// 'bindDN' => 'auth@DOMAIN',
-// 'passDN' => 'secret',
-// 'baseDNUsers' => 'dc=DOMAIN,dc=local',
-// 'protocolVersion' => 3,
-// 'optReferrals' => 0,
-// 'networkTimeout' => 10,
-// 'filterUsers' => '(&(objectcategory=person)(objectclass=user)(givenname=*))',
-// 'mapping_field' => array("username" => "uid",
-// "fullname" => "cn" ,
-// "email" => "mail"),
-// 'default_value' => array("date_format_type" => "E","locale" => "en_NZ"),
-// 'format_updated' => array('Y' => array(0,4),'m' => array(4,2),'d'=> array(6,2),'H' => array(8,2),'M'=>array(10,2),'S' => array(12,2))
-// );
-//
-// /* If there is some user/group you do not want to sync from LDAP, put their username in these lists */
-// $c->do_not_sync_from_ldap = array( 'admin' => true );
-// $c->do_not_sync_group_from_ldap = array( 'teamclient1' => true );
-//
-//include('drivers_ldap.php');
-
-
-/********************************/
-/****** PAM and IMAP hooks ******/
-/********************************/
-
-/**
-* Authentication against PAM using the Squid helper script.
-*/
-//$c->authenticate_hook = array(
-// 'call' => 'SQUID_PAM_check',
-// 'config' => array( 'script' => '/usr/bin/pam_auth', 'email_base' => 'example.com' )
-// );
-//include('drivers_squid_pam.php');
-
-/**
-* Authentication against PAM/system password database using pwauth.
-*/
-//$c->authenticate_hook = array('call' => 'PWAUTH_PAM_check',
-// 'config' => array('path' => '/usr/sbin/pwauth',
-// 'email_base' => 'example.com'));
-//include('drivers_pwauth_pam.php');
-
-/**
-* Authentication against IMAP using the imap_open function.
-*/
-//$c->authenticate_hook['call'] = 'IMAP_PAM_check';
-//$c->authenticate_hook['config'] = array(
-// 'imap_url' => '{localhost:993/imap/ssl/novalidate-cert}',
-// 'email_base' => 'example.com'
-//);
-//include('drivers_imap_pam.php');
-
-/********************************/
-/****** Webserver does Auth *****/
-/********************************/
-
-/**
-* It is quite common that the webserver can do the authentication for you,
-* and you just want DAViCal to trust the username that the webserver will pass
-* through (in the REMOTE_USER or REDIRECT_REMOTE_USER environment variable).
-* In that case, set server_auth_type (can be an array) to the value provided by
-* the webserver in the AUTH_TYPE environment variable, as well as the two
-* following options as needed.
-*
-* Note that this method does not pull account details from anywhere, so you
-* will first need to create an account in DAViCal for each username that will
-* authenticate in this way - it's just that the password on that account will
-* be ignored and authentication will happen through the authentication method
-* that the webserver is configured with.
-*/
-$c->authenticate_hook['server_auth_type'] = 'Basic';
-
-/**
-* Uncomment this to use Webserver Auth for CalDAV access in addition to the
-* Admin web pages.
-*/
-//include_once('AuthPlugins.php');
-
-/**
-* If your Webserver Auth method provides a logout URL (traditional Basic Auth
-* does not), you can enter it here so the Logout link in the Admin web pages
-* can point to it.
-*/
-//$c->authenticate_hook['logout'] = '/logout';
-
-
-/***************************************************************************
-* *
-* Push Notification Server *
-* *
-***************************************************************************/
-
-/*
-* This enable XMPP PubSub push notifications to clients that request them.
-* N.B. this will publish urls for ALL updates and does NOT restrict
-* subscription permissions on the jabber server! That means anyone with
-* read access to the pubsub tree of your jabber server can watch for updates,
-* they will only see URL's to the updated entries not the calendar data.
-*
-* Only tested with ejabberd 2.0.x
-*/
-
-// $c->notifications_server = array( 'host' => $_SERVER['SERVER_NAME'], // jabber server hostname
-// 'jid' => 'user@example.com', // user(JID) to login/ publish as
-// 'password' => '', // password for above account
-// // 'debug_jid' => 'otheruser@example.com' // send a copy of all publishes to this jid
-// );
-// include ( 'pubsub.php' );
-
-
-/***************************************************************************
-* *
-* Detailed Metrics *
-* *
-***************************************************************************/
-
-/*
-* This enables a /metrics.php URL containing detailed metrics about the
-* operation of DAViCal. Ideally you will be running memcache if you are
-* interested in keeping metrics, but there is a simple metrics collection
-* available to you without running memcache.
-*
-* Note that there is currently no way of enabling metrics via memcache
-* without memcache being enabled for all of DAViCal.
-*/
-// $c->metrics_style = 'counters'; // Just the simple counter-based metrics
-// $c->metrics_style = 'memcache'; // Only the metrics using memcache
-// $c->metrics_style = 'both'; // Both styles of metrics
-// $c->metrics_collectors = array('127.0.0.1'); // Restrict access to only this IP address
-// $c->metrics_require_user = 'metricsuser'; // Restrict access to only connections authenticating as this user
-
-/***************************************************************************
-* *
-* Audit Logging *
-* *
-***************************************************************************/
-/* To enable audit logging to syslog you can uncomment the following line.
-*
-* This file is suitable for basic auditing, if you want/need more comprehensive
-* logging then see:
-* http://wiki.davical.org/index.php/Configuration/hooks/log_caldav_action
-*/
-//include('log_caldav_action.php');
-
+++ /dev/null
-
-
-# DAVICAL
-# for local davical users
-local davical davical_app trust
-local davical davical_dba trust
-# for davical web-application
-host davical davical_app ::1/128 md5
+++ /dev/null
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * phpMyAdmin sample configuration, you can use it as base for
- * manual configuration. For easier setup you can use setup/
- *
- * All directives are explained in documentation in the doc/ folder
- * or at <https://docs.phpmyadmin.net/>.
- *
- * @package PhpMyAdmin
- */
-
-/**
- * This is needed for cookie based authentication to encrypt password in
- * cookie. Needs to be 32 chars long.
- */
-$cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
-
-/**
- * Servers configuration
- */
-$i = 0;
-
-/**
- * First server
- */
-$i++;
-/* Authentication type */
-$cfg['Servers'][$i]['auth_type'] = 'cookie';
-/* Server parameters */
-$cfg['Servers'][$i]['host'] = 'localhost';
-$cfg['Servers'][$i]['compress'] = false;
-$cfg['Servers'][$i]['AllowNoPassword'] = false;
-
-/**
- * phpMyAdmin configuration storage settings.
- */
-
-/* User used to manipulate with storage */
-// $cfg['Servers'][$i]['controlhost'] = '';
-// $cfg['Servers'][$i]['controlport'] = '';
-// $cfg['Servers'][$i]['controluser'] = 'pma';
-// $cfg['Servers'][$i]['controlpass'] = 'pmapass';
-
-/* Storage database and tables */
-// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
-// $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
-// $cfg['Servers'][$i]['relation'] = 'pma__relation';
-// $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
-// $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
-// $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
-// $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
-// $cfg['Servers'][$i]['history'] = 'pma__history';
-// $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
-// $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
-// $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
-// $cfg['Servers'][$i]['recent'] = 'pma__recent';
-// $cfg['Servers'][$i]['favorite'] = 'pma__favorite';
-// $cfg['Servers'][$i]['users'] = 'pma__users';
-// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
-// $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
-// $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
-// $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
-// $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
-// $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';
-
-/**
- * End of servers configuration
- */
-
-/**
- * Directories for saving/loading files from server
- */
-$cfg['UploadDir'] = '';
-$cfg['SaveDir'] = '';
-
-/**
- * Whether to display icons or text or both icons and text in table row
- * action segment. Value can be either of 'icons', 'text' or 'both'.
- * default = 'both'
- */
-//$cfg['RowActionType'] = 'icons';
-
-/**
- * Defines whether a user should be displayed a "show all (records)"
- * button in browse mode or not.
- * default = false
- */
-$cfg['ShowAll'] = true;
-
-/**
- * Number of rows displayed when browsing a result set. If the result
- * set contains more rows, "Previous" and "Next".
- * Possible values: 25, 50, 100, 250, 500
- * default = 25
- */
-$cfg['MaxRows'] = 500;
-
-/**
- * Disallow editing of binary fields
- * valid values are:
- * false allow editing
- * 'blob' allow editing except for BLOB fields
- * 'noblob' disallow editing except for BLOB fields
- * 'all' disallow editing
- * default = 'blob'
- */
-//$cfg['ProtectBinary'] = false;
-
-/**
- * Default language to use, if not browser-defined or user-defined
- * (you find all languages in the locale folder)
- * uncomment the desired line:
- * default = 'en'
- */
-//$cfg['DefaultLang'] = 'en';
-$cfg['DefaultLang'] = 'de';
-
-/**
- * How many columns should be used for table display of a database?
- * (a value larger than 1 results in some information being hidden)
- * default = 1
- */
-//$cfg['PropertiesNumColumns'] = 2;
-
-/**
- * Set to true if you want DB-based query history.If false, this utilizes
- * JS-routines to display query history (lost by window close)
- *
- * This requires configuration storage enabled, see above.
- * default = false
- */
-$cfg['QueryHistoryDB'] = true;
-
-/**
- * When using DB-based query history, how many entries should be kept?
- * default = 25
- */
-$cfg['QueryHistoryMax'] = 100;
-
-/**
- * Whether or not to query the user before sending the error report to
- * the phpMyAdmin team when a JavaScript error occurs
- *
- * Available options
- * ('ask' | 'always' | 'never')
- * default = 'ask'
- */
-//$cfg['SendErrorReports'] = 'always';
-
-/**
- * You can find more configuration options in the documentation
- * in the doc/ folder or at <https://docs.phpmyadmin.net/>.
- */
-
-
-
-
+++ /dev/null
-<?php
-
- /**
- * Central phpPgAdmin configuration. As a user you may modify the
- * settings here for your particular configuration.
- *
- * $Id: config.inc.php-dist,v 1.55 2008/02/18 21:10:31 xzilla Exp $
- */
-
- // An example server. Create as many of these as you wish,
- // indexed from zero upwards.
-
- // Display name for the server on the login screen
- $conf['servers'][0]['desc'] = 'PostgreSQL';
-
- // Hostname or IP address for server. Use '' for UNIX domain socket.
- // use 'localhost' for TCP/IP connection on this computer
- $conf['servers'][0]['host'] = '';
-
- // Database port on server (5432 is the PostgreSQL default)
- $conf['servers'][0]['port'] = 5432;
-
- // Database SSL mode
- // Possible options: disable, allow, prefer, require
- // To require SSL on older servers use option: legacy
- // To ignore the SSL mode, use option: unspecified
- $conf['servers'][0]['sslmode'] = 'allow';
-
- // Change the default database only if you cannot connect to template1.
- // For a PostgreSQL 8.1+ server, you can set this to 'postgres'.
- $conf['servers'][0]['defaultdb'] = 'template1';
-
- // Specify the path to the database dump utilities for this server.
- // You can set these to '' if no dumper is available.
- $conf['servers'][0]['pg_dump_path'] = '/usr/bin/pg_dump';
- $conf['servers'][0]['pg_dumpall_path'] = '/usr/bin/pg_dumpall';
-
- // Example for a second server (PostgreSQL for Windows)
- //$conf['servers'][1]['desc'] = 'Test Server';
- //$conf['servers'][1]['host'] = '127.0.0.1';
- //$conf['servers'][1]['port'] = 5432;
- //$conf['servers'][1]['sslmode'] = 'allow';
- //$conf['servers'][1]['defaultdb'] = 'template1';
- //$conf['servers'][1]['pg_dump_path'] = 'C:\\Program Files\\PostgreSQL\\8.0\\bin\\pg_dump.exe';
- //$conf['servers'][1]['pg_dumpall_path'] = 'C:\\Program Files\\PostgreSQL\\8.0\\bin\\pg_dumpall.exe';
-
-
- /* Groups definition */
- /* Groups allow administrators to logicaly group servers together under
- * group nodes in the left browser tree
- *
- * The group '0' description
- */
- //$conf['srv_groups'][0]['desc'] = 'group one';
-
- /* Add here servers indexes belonging to the group '0' separated by comma */
- //$conf['srv_groups'][0]['servers'] = '0,1,2';
-
- /* A server can belong to multi groups. Here server 1 is referenced in both
- * 'group one' and 'group two'*/
- //$conf['srv_groups'][1]['desc'] = 'group two';
- //$conf['srv_groups'][1]['servers'] = '3,1';
-
- /* A group can be nested in one or more existing groups using the 'parents'
- * parameter. Here the group 'group three' contains only one server and will
- * appear as a subgroup in both 'group one' and 'group two':
- */
- //$conf['srv_groups'][2]['desc'] = 'group three';
- //$conf['srv_groups'][2]['servers'] = '4';
- //$conf['srv_groups'][2]['parents'] = '0,1';
-
- /* Warning: Only groups with no parents appears at the root of the tree. */
-
- /* You can apply specific theme depending on servers, users and databases
- * The priority order is :
- * * the theme defined for a server
- * * the theme defined for a database apply over the server one
- * * the theme defined for a user apply over the database one
- */
- /* Example for servers */
- //$conf['servers'][0]['theme']['default'] = 'default';
- /* Example for users */
- //$conf['servers'][0]['theme']['user']['specific_user'] = 'default';
- /* Example for databases */
- //$conf['servers'][0]['theme']['db']['specific_db'] = 'default';
-
- // Default language. E.g.: 'english', 'polish', etc. See lang/ directory
- // for all possibilities. If you specify 'auto' (the default) it will use
- // your browser preference.
- $conf['default_lang'] = 'auto';
-
- // AutoComplete uses AJAX interaction to list foreign key values
- // on insert fields. It currently only works on single column
- // foreign keys. You can choose one of the following values:
- // 'default on' enables AutoComplete and turns it on by default.
- // 'default off' enables AutoComplete but turns it off by default.
- // 'disable' disables AutoComplete.
- $conf['autocomplete'] = 'default on';
-
- // If extra login security is true, then logins via phpPgAdmin with no
- // password or certain usernames (pgsql, postgres, root, administrator)
- // will be denied. Only set this false once you have read the FAQ and
- // understand how to change PostgreSQL's pg_hba.conf to enable
- // passworded local connections.
- $conf['extra_login_security'] = false ; //true;
-
- // Only show owned databases?
- // Note: This will simply hide other databases in the list - this does
- // not in any way prevent your users from seeing other database by
- // other means. (e.g. Run 'SELECT * FROM pg_database' in the SQL area.)
- $conf['owned_only'] = false;
-
- // Display comments on objects? Comments are a good way of documenting
- // a database, but they do take up space in the interface.
- $conf['show_comments'] = true;
-
- // Display "advanced" objects? Setting this to true will show
- // aggregates, types, operators, operator classes, conversions,
- // languages and casts in phpPgAdmin. These objects are rarely
- // administered and can clutter the interface.
- $conf['show_advanced'] = false;
-
- // Display "system" objects?
- $conf['show_system'] = false;
-
- // Minimum length users can set their password to.
- $conf['min_password_length'] = 1;
-
- // Width of the left frame in pixels (object browser)
- $conf['left_width'] = 500;
-
- // Which look & feel theme to use
- $conf['theme'] = 'default';
-
- // Show OIDs when browsing tables?
- // Only supported in versions <=11
- $conf['show_oids'] = false;
-
- // Max rows to show on a page when browsing record sets
- $conf['max_rows'] = 500;
-
- // Max chars of each field to display by default in browse mode
- $conf['max_chars'] = 1000;
-
- // Send XHTML strict headers?
- $conf['use_xhtml_strict'] = false;
-
- // Base URL for PostgreSQL documentation.
- // '%s', if present, will be replaced with the PostgreSQL version
- // (e.g. 8.4 )
- $conf['help_base'] = 'http://www.postgresql.org/docs/%s/interactive/';
-
- // Configuration for ajax scripts
- // Time in seconds. If set to 0, refreshing data using ajax will be disabled (locks and activity pages)
- $conf['ajax_refresh'] = 3;
-
- /** Plugins management
- * Add plugin names to the following array to activate them
- * Example:
- * $conf['plugins'] = array(
- * 'Example',
- * 'Slony'
- * );
- */
- $conf['plugins'] = array();
-
- /*****************************************
- * Don't modify anything below this line *
- *****************************************/
-
- $conf['version'] = 19;
-
-?>
+++ /dev/null
-\connect rainloop
---
--- PostgreSQL database dump
---
-
--- Dumped from database version 9.6.24
--- Dumped by pg_dump version 9.6.24
-
-SET statement_timeout = 0;
-SET lock_timeout = 0;
-SET idle_in_transaction_session_timeout = 0;
-SET client_encoding = 'UTF8';
-SET standard_conforming_strings = on;
-SELECT pg_catalog.set_config('search_path', '', false);
-SET check_function_bodies = false;
-SET xmloption = content;
-SET client_min_messages = warning;
-SET row_security = off;
-
---
--- Name: id_user; Type: SEQUENCE SET; Schema: public; Owner: rainloop
---
-
-SELECT pg_catalog.setval('public.id_user', 6, true);
-
-
---
--- Data for Name: rainloop_ab_contacts; Type: TABLE DATA; Schema: public; Owner: rainloop
---
-
-INSERT INTO public.rainloop_ab_contacts VALUES (1, '74e21cd4-4046-481c-9415-4230b77dfd76', 2, 'Namasto', 1559550213, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (2, '598928a4-dd05-492c-8bb4-487b8341fd74', 2, 'Namasto', 1559551290, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (3, '092c4283-0628-480d-90d1-425a8c436085', 2, 'Jan Fahning', 1559558125, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (4, '9b8cd1a7-0b87-4d43-9f79-d5392b1ccad1', 2, 'nicole.wilfinger@raabvitalfood.de', 1559643676, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (5, '8acd3333-4b0e-47a7-91fe-45908f8b334d', 2, 'KiWAMi', 1559647602, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (6, 'c3a41a5b-407c-4332-b4ec-b02e90aede53', 2, 'info@laufwerk-hamburg.de', 1559731030, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (7, '2365ec38-cedb-4134-9705-d3750742d0de', 1, 'Schlossallee Immobilien AG', 1560254789, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (8, 'b283aa63-f998-4fbe-b22c-d1df45a368eb', 1, 'ole.rosentreter@teambank.de', 1560413379, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (9, '7e11998a-1b5a-4620-a69a-4833251850fc', 1, 'patrick.stadler@owayo.com', 1560414281, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (10, '4acd383e-bb32-42b5-b458-a548702e8fab', 1, 'ole@wechselzonenluder.de', 1560415519, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (11, 'd5ddc54b-7570-480f-8931-e43bb514db28', 1, 'astrid@wechselzonenluder.de', 1560415519, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (12, 'fe2d4fab-5a83-4b4d-812d-67290b2737e4', 2, 'Dana.Porzberg@bkk-mobil-oil.de', 1560418710, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (13, '7a584287-8907-45da-952d-c2469227e458', 2, 'Birte Podeyn', 1560435711, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (14, 'f894aceb-87a7-4599-ad67-96d9eb6ab469', 2, 'Zone3-Store', 1560771008, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (15, '1c42c6ae-87a2-4951-bad4-fb95051bba32', 2, 'info@exxos.de', 1560771008, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (16, 'c2c80930-6252-4b8a-88f7-0c94e8a6cafa', 2, 'rookies@triabolos.de', 1560855526, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (17, 'd110c943-1685-4923-936d-664b991845ee', 1, 'Björn Röder', 1561363203, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (18, 'b4395e5a-cd57-4bda-a289-d4f1de96ae74', 2, 'info@spiraldynamik-bubos.de', 1561381501, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (19, 'd179951e-d5d4-4959-be4c-80d6138e9eb0', 2, 'triabolos.ironman.hh@gmail.com', 1561454733, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (20, 'f772729e-aabe-4ced-b014-29edf1104258', 1, 'Sonja Schwenk', 1561465853, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (21, '9a01de4a-97a3-4560-af40-7514ab6a71da', 1, 'Thomas Krell', 1561467974, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (22, 'a81971b7-617b-4078-9cf4-60d7c7ec8226', 2, 'Andrea Bubos', 1561469188, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (23, '052cec62-08a7-4e60-91bb-06954f61be90', 2, 'Hausverwaltg Friedrichs', 1561470920, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (24, 'ab0a1ba9-e56f-46bd-a1d6-ebf0296d8b47', 1, 'instagram@wechselzonenluder.de', 1561625427, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (25, '2a551476-aa47-467b-930b-febf2c184917', 1, 'instagram@triathlon-camp-andalusien.de', 1561625427, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (26, '562b9162-268b-4441-97fa-86cd6e58d4f2', 1, 'uirosentreter@t-online.de', 1561639969, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (27, '96c0cd65-6aeb-4c7b-b48e-c45c8f49c2f3', 2, 'Ole Benjamin Rosentreter', 1561979415, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (28, '2c315690-574d-4009-a04a-01fc7343b2fb', 2, 'privat@ina-rosentreter.de', 1561988535, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (29, '9c2eafda-27bf-4ba3-a1ba-c2261c35e814', 2, 'uirosentreter@t-online.de', 1562600237, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (30, '14a7edeb-de6c-4b4f-973e-d060fd0c1d87', 2, 'Maïlys Sangla', 1562775422, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (31, '32eccbf6-08bc-4bb2-b85f-7cc5518dbfd8', 2, 'Jiakina Annika Weidner', 1563990408, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (32, '51d8db32-d3e4-4b3d-8037-32b26bfe5a26', 2, 'Ole Benjamin Rosentreter', 1564053455, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (33, 'd6cf07c2-924b-404c-8c40-f202346af645', 2, 'Strandmuschel via Booking.com', 1564054909, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (34, '0348346c-4241-4a40-b811-2e3fee540306', 2, 'Josef Blumenfelder CHECK24', 1565174932, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (35, '7a2c0393-ddca-4410-a130-3568002c92f0', 2, 'jan.erdmann@finanzcheck.de', 1565186325, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (36, '4dd5316e-d49b-4b7d-a284-1ef89b10e0cb', 2, 'info@physio-mundsburg.de', 1565186619, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (37, 'a4a86373-f37c-49f9-9493-d06995db71b3', 2, 'Aboservice spomedis', 1565196316, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (38, '5f939362-1ab9-4781-a202-a4bda2080489', 2, 'Handelsblatt Fachmedien Shop', 1565197206, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (39, '4c3313b8-a333-45a2-b9a9-2af5d6c62010', 2, 'Sebastian Rosenkranz', 1566403510, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (40, 'eaaf9ecd-8055-4524-b0fe-303e594df2e1', 2, 'K. Schneider', 1566406220, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (41, '637ab0a3-75eb-469f-aec8-44d75b98bdbe', 2, 'Ole B. R.', 1566815362, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (42, '16480133-cf09-4bf9-9014-f4b3dc4ffffc', 2, 'Benjamin Trocha', 1566987868, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (43, '68eb663d-fcb2-4a44-94b7-d39a907006b1', 2, 'podologie elke kunte', 1567067264, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (44, '5a3a7c78-8082-46c1-bc59-ccdecb790f6f', 2, 'Christel Haaf', 1567081836, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (45, '952cd1fd-70f5-424d-b315-a95249cae8dc', 1, 'Geschäftsstelle BAYERN 07', 1567496266, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (46, '106dacee-f9ff-45ab-9e68-57aed29f7e82', 2, 'Urlaubshof Jacobsen', 1567697441, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (47, '62aafb8f-b33f-4702-8133-06ce9b39135b', 2, 'Leonie Güldenpfennig', 1568647267, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (48, '9e53e333-e123-4b53-87cf-5905f700e4b8', 2, 'waltersorgenfrei@t-online.de', 1568707773, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (49, '9b702780-fd29-4ca5-b8ba-2d724809053b', 2, 'Nina /BDF HAM', 1568713077, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (50, '3506c17e-924f-46fb-b591-ac06fa4c4dc5', 2, 'Nina /BDF HAM', 1568713220, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (51, '2e6fadab-697a-47ba-b251-08b96012c080', 2, 'Johannsen, Nina /BDF HAM', 1568713583, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (52, '3014c0b0-e3b5-4bb4-8911-4f117285deb1', 2, 'Johannsen, Nina /BDF HAM', 1568713729, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (53, '2362ead2-5050-4405-a62f-dcb2d16e3449', 2, 'Johannsen, Nina /BDF HAM', 1568713756, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (54, 'fe0f2ef5-1757-4d3e-8b73-5a5b57cde472', 2, 'Johannsen, Nina /BDF HAM', 1568714432, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (55, 'fd520946-0cf8-48f4-be8f-6e7d0aabfcfb', 2, 'Johannsen, Nina /BDF HAM', 1568714465, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (56, 'cde6539e-8645-4bd2-a202-378205eb8a21', 2, 'Johannsen, Nina /BDF HAM', 1568714528, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (57, '86db5479-fd39-4794-a204-a6d9c113018f', 2, 'Johannsen, Nina /BDF HAM', 1568714580, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (58, '910985db-1e40-4793-8379-ab2c9b838162', 2, 'Johannsen, Nina /BDF HAM', 1568714630, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (59, '31f1fe00-0c02-4c79-8bd0-6a1d031f2f7c', 2, 'Johannsen, Nina /BDF HAM', 1568716344, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (60, '9107f003-268c-4f48-b808-92df2dafc44e', 2, 'Johannsen, Nina /BDF HAM', 1568716736, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (61, 'c4f5a855-a747-44a2-8edb-cb91754055d9', 2, 'Johannsen, Nina /BDF HAM', 1568717002, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (62, 'd8040582-96e4-4e6b-9b3a-49748fbe3e47', 2, 'Johannsen, Nina /BDF HAM', 1568717017, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (63, '874cd927-27c8-4d1b-ab61-1799ea1210ef', 2, 'Johannsen, Nina /BDF HAM', 1568717074, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (64, '6a7c9936-4333-4d18-8ef9-132b6e57376b', 2, 'Johannsen, Nina /BDF HAM', 1568717166, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (65, '663aaeb4-779f-4c44-b55e-d93fd4fcda0b', 2, 'Johannsen, Nina /BDF HAM', 1568718102, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (66, 'b982108e-cd4c-4093-a39d-7af358a4c970', 2, 'Johannsen, Nina /BDF HAM', 1568718162, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (67, '1c6301ba-214a-46d8-8562-7c0102db4b0f', 2, 'Johannsen, Nina /BDF HAM', 1568718550, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (68, '5b6df09e-17da-4cf8-90b9-d877a2c51cfb', 2, 'Johannsen, Nina /BDF HAM', 1568718586, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (69, '973c4041-3c4d-46d8-8ff3-059e8ceda243', 2, 'Johannsen, Nina /BDF HAM', 1568724116, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (70, '0c08a8c5-aba2-40d9-825e-54e7f8a27fa1', 2, 'Johannsen, Nina /BDF HAM', 1568804241, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (71, 'a156784f-c9ff-480e-8905-5270dc5e62d0', 2, 'Leonie Güldenpfennig', 1568888794, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (72, '7f445c61-5408-4d3a-b07c-bf27f63b3742', 2, 'Susen Julia Laß', 1569243268, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (73, 'd5cc3ff5-2682-4dcc-b2ac-32cce861d308', 2, 'info@ski-outdoor-shop.de', 1569400826, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (74, '7c8edc3f-4ba6-4cd7-b9d8-dd7f638c7a27', 2, 'choose75@gmx.net', 1570006162, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (75, '15b1d9b0-0f67-43ce-886e-5c47a8b0362c', 2, 'Hardloop', 1570013690, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (76, 'b6747f7e-ebcc-44e6-94bb-4b3c8e9cdf6c', 2, 'HARDLOOP', 1571064126, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (77, '9340a7a8-b562-465e-bae3-39037ebcd0c4', 2, 'Bergzeit no-reply', 1571064421, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (78, '5eacb7fd-0ffc-44bd-9ec8-2d50cbc8a35b', 2, 'service@bergzeit.de', 1571064454, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (79, '907ce992-0544-4006-995e-b83b04be7dbf', 2, 'Leonie Güldenpfennig', 1571148722, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (80, 'e6566052-705f-4ccc-95b4-a3d8dda8b002', 2, 'Leonie Güldenpfennig', 1571212617, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (81, '7b0c9063-3ac4-4c9f-8024-0f344a558952', 2, 'info@bike-components.de', 1571307296, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (82, '397f86ac-45b3-44c8-9c0d-4753f18355b8', 2, 'Spreadshirt Service', 1572868215, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (83, 'e0a7dad2-cd47-4c99-8e50-ea31ab4695b0', 2, 'Leonie Güldenpfennig', 1572872825, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (84, '75792560-3bca-4f7d-a430-b9dddb4c883b', 2, 'Leonie Güldenpfennig', 1572890425, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (85, '9958fb54-a46c-4e89-b967-e7178ed8a4e0', 2, 'Leonie Güldenpfennig', 1572896810, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (86, 'd64851bd-a129-4555-b105-bd53b58c9788', 2, 'Anna Beek', 1573031073, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (87, '88695d42-073b-42be-b016-249bba2ffb63', 2, 'Gesa Birnkraut', 1573031224, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (88, '44a563a7-7d4c-45e4-9481-71f7e26ad5dd', 1, 'Roethlein Christina', 1573040766, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (89, '84375aef-d766-4429-8806-5ee194563a7a', 2, 'Leonie Güldenpfennig', 1573054179, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (90, 'c63b3df1-5004-4824-a8d7-81c86e25e11f', 2, 'Yvonne Ewen', 1573054698, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (91, '84df5313-45ed-4bfb-807c-048ed09c0f3c', 2, 'Yvonne Ewen', 1573059754, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (92, '89bfff3e-e4c6-4a97-906d-aef8ccb4aec9', 2, 'Yvonne Ewen', 1573068538, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (93, '073d2800-d589-43c7-ab91-80a124a0d977', 2, 'Yvonne Ewen', 1573122093, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (94, '0cfcc343-2639-46b9-aa5f-a7f62047ba38', 2, 'Leonie Güldenpfennig', 1573122206, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (95, 'e9cf9389-2946-4a3b-9af4-a20762988158', 2, 'gewinnen@tri-mag.de', 1574085144, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (96, '1dce1a0f-a962-4f14-bb5f-98dadec5b02b', 2, 'Service Internistenpraxis', 1574173813, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (97, '9ca9caae-a1e2-4baa-9ae5-af21858e37f2', 2, 'Hans-Peter Dannenberg', 1574183985, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (98, '05c3b420-8fdc-44aa-800b-44e67afd13be', 2, 'Leonie Güldenpfennig', 1574240387, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (99, '9aee44ad-eaa9-4853-99c0-11ec0389bedc', 2, 'werkstatt@trionik.de', 1574359002, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (100, 'cd879e70-9594-4f08-aa78-2a69325701bc', 2, 'Triabolos Radtrainingslager', 1574853193, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (101, '44b556ee-e0c7-41e1-aabc-f72a76dc6b51', 1, 'Frank Marschler', 1575291181, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (102, 'e3a6e865-086b-4d0e-8802-2d04de8d6b93', 2, 'ASICS Outlet', 1575298318, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (103, 'c8ac15a3-59e4-43b0-8c66-cf9688bee46a', 2, 'paypal.eu@asics.com', 1575298415, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (104, 'ac79ff89-1a42-40c4-ba53-05fae8830d79', 1, 'CHIPZEIT.DE Support', 1576067715, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (105, '9b991131-c554-45f6-8bde-5fe7543d8d41', 1, 'info@btv-info.de', 1576071865, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (106, '5839f0fb-d125-4164-bef3-d2046c48c9b3', 2, 'Manuel Ellmers', 1576504471, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (107, '53cbe9cb-50aa-4f73-9ad5-bd28fd32f363', 2, 'FLUGPHASE Boarding', 1578319360, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (108, 'aabbd2d4-8d0d-4bc7-bea7-46678dc70576', 2, 'Leonie Güldenpfennig', 1578336096, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (109, '21e5e7d2-363a-4663-a54c-649ffbe753f6', 2, 'Leonie Güldenpfennig', 1578336215, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (110, 'db50dfb9-c21f-4c00-8e2d-6ce00e651730', 1, 'info@bike24.net', 1578389152, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (111, 'dfd34f16-fd3b-41eb-8ebe-0001b2c825cf', 2, 'kundenservice@agu.com', 1578395982, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (112, '4e8c50c8-6ffb-45e5-bb53-1e06fad4ae5f', 2, 'fizik Shop Online', 1578416633, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (113, '73bf2f47-3464-4535-9632-b57eaabbeb4c', 2, 'Alice Ferrari', 1578478278, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (114, '083f7433-4ed4-4e95-aa82-9a78208e9752', 1, 'anita--meyer@t-online.de', 1578905249, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (115, 'be8f5099-ad45-40fd-abaf-985faee43333', 1, 'Roethlein Christina', 1578995813, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (116, '54ae3bc0-8f45-43fb-9dce-5b690368f755', 1, 'Roethlein Christina', 1579002272, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (117, '0f508960-5429-41b0-9359-6f0a9218c640', 1, 'Roethlein Christina', 1579002315, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (118, '4095dc1a-3d22-4e09-8c75-69795b07dd62', 2, 'Johannsen, Nina /BDF HAM', 1579006990, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (119, 'b0ab03d6-43c7-4e25-b014-4d7134e172e8', 2, 'Leonie Güldenpfennig', 1579007789, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (120, 'f292eaca-daf1-437a-95af-d8a9e3a3ec5f', 2, 'STAPS | Yannick Nodler', 1579007981, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (121, 'bef0046a-79a5-4357-84db-b8663663d563', 2, 'Leonie Güldenpfennig', 1579008609, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (122, 'b131950d-b315-4d34-9f76-5a3be4c5dc68', 2, 'Johannsen, Nina /BDF HAM', 1579010088, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (123, '4bf001ad-f211-4e5e-8f48-037c161dddac', 2, 'Leonie Güldenpfennig', 1579085326, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (124, 'bbd461b0-a6bb-4077-9252-c70ce6380178', 2, 'Leonie Güldenpfennig', 1579085611, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (125, '5a321ee5-073b-43da-9318-4e2aa8c123af', 2, 'lutz@triabolos.de', 1579101838, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (126, 'b9e4b433-4376-4ba0-b601-034abeea6ed2', 1, 'Christine Schatz | owayo', 1579165650, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (127, '6bc4940d-878f-4e74-a5b2-ddb56d27bb79', 2, 'Leonie Güldenpfennig', 1579171882, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (128, '79e2606f-8e60-439c-b668-465283454ff8', 2, '100x100@swim.de', 1579180234, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (129, 'cb8d3ce2-5e2f-4d3e-baba-7fb50a34d0c9', 2, 'Josef Blumenfelder CHECK24', 1579188316, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (130, '86f3dcdf-f59d-4be8-b045-1c9d25d47d50', 2, 'Orthopädie Othmarschen', 1579188393, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (131, '490cba1d-e1a0-497b-a435-dc3341ece6ba', 2, 'Leonie Güldenpfennig', 1579528567, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (132, '6beb6c9f-c7f0-4157-ab3d-3d2dd9bd5781', 2, 'esbeautyhh@hotmail.com', 1580209256, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (133, 'a9aa55be-07ac-4748-a883-2f17c7352f13', 2, 'service@zeitakademie.de', 1580297920, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (134, 'cc21edc7-d92e-4024-a46e-a3fc2b234e35', 2, 'Alexander Rodloff', 1580903767, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (135, '504449bf-3b79-4757-96b1-17b2a70b4226', 2, 'spickzettel@flugphase.ch', 1580914964, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (136, '45ea9161-40c2-4ae7-ba43-ae659277e819', 1, 'ds@laufmagazin-spiridon.de', 1582111879, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (137, 'c9785e0a-bea2-4163-943d-c7fadd661971', 1, 'spiridon@gmx.com', 1582111879, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (138, '33332b01-4bb3-4d20-aae5-b1bfbd9ba8ab', 2, 'FUN FACTORY', 1582122049, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (139, '7e045897-565c-438a-91d9-cf98333267b5', 2, 'Powermetershop', 1582203410, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (140, '43e07896-bdff-4049-8abf-0d63d38f67da', 2, 'lkahh50@polizei.hamburg.de', 1582549679, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (141, 'e8c66b3a-7855-4328-a963-048c04971983', 2, 'Johannsen, Nina /BDF HAM', 1582621895, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (142, 'd77763ac-4e04-40f3-b0fa-0fe8512a1479', 2, 'Johannsen, Nina /BDF HAM', 1582623322, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (143, 'e4911599-2b1f-40b9-892d-88704825090a', 2, 'julia.hackeloeer@hackeloeers.de', 1582623614, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (144, '9420d082-5721-4be1-b6c8-8c444581ff71', 1, 'RenéRosa Trikotmanufaktur // Tina Buchholz-Weissinger', 1582635283, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (145, '3d359017-9532-48fc-b709-0e4d392bad7e', 2, 'Oliver Scholz', 1582645676, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (146, 'c043a3e4-60a1-4ee3-bff3-4a47e747adbb', 2, 'mail@frauenarztpraxis-fontenay.de', 1582803723, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (147, '93b64014-82bb-4806-ad1c-dfefc726db16', 2, 'info@mcdart.de', 1584696744, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (148, 'ff0b5bac-cd75-47fd-af68-a116f779ffc9', 2, 'ina.rosentreter@hsba.de', 1585147751, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (149, '281ebf37-477b-4c6a-88e4-1b19c622dd76', 2, 'lastminute.de', 1585741599, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (150, '1af218b2-bfe3-449c-bd58-2a7f87547b12', 2, 'kundendienst@lastminute.com', 1585741599, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (151, '7c3617d0-e637-45dd-a7b1-0f4a435b3271', 2, 'customercare@lastminute.de', 1585741599, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (152, 'aea80478-4fca-4c44-825e-e90d84874594', 2, 'kundendienst@lastminute.de', 1585743578, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (153, 'd58b4b4a-d5b2-4298-be7d-c949aca1d3a4', 2, 'lastminute.de', 1585743903, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (154, '354827d8-37c0-459d-ada5-9233933bcc43', 2, 'running green', 1586882237, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (155, '7a1ed4a4-25fb-406a-b0e7-156141e82098', 2, 'info@running-green.de', 1588585538, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (156, '3e506294-dfff-4a6c-bb37-0ad3afc7c125', 2, 'AuflagenNachMass@gmail.com', 1589965946, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (157, 'fc54f082-36ff-451d-8f9f-2a7c095743b9', 2, 'Melanie Schneider', 1590396611, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (158, 'db4828cc-18ce-44ee-806f-d9745ba4ac83', 2, 'info@baederland.de', 1591175275, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (159, '1eb86a3b-756e-44e1-a264-c524a787270c', 2, 'tri-mag.de', 1591612949, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (160, '6c5e2080-a448-4a7f-8faf-f3fb0b61bf48', 2, 'anmeldestornierung@sportspasshamburg.de', 1591695977, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (161, '128deaeb-fe1c-463e-86e5-12644ae959a4', 2, 'Leonie Güldenpfennig', 1591882634, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (162, '69dd65c0-a0cf-43b8-8702-815ee15419a4', 2, 'abo@tri-mag.de', 1592379042, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (163, '76309eae-6aec-4137-ba80-cf217ce78095', 2, 'f9ecfdabb7ca585d92b8a6b08fecdbad@ds-guest.com', 1592502239, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (164, 'c530af6a-0264-4518-9db2-1203a938c0f8', 2, 'buchungsservice@im-web.de', 1592502368, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (165, '7fb1d5fd-c01f-4959-9a4d-0d70c59a958d', 2, 'Vierlanden-Triathlon Newsletter', 1593428872, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (166, '21665240-bfc5-46d9-babe-f974c0fc398b', 2, 'kaehler.klink@freenet.de', 1593604663, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (167, 'c12c3b9d-be05-408b-a17b-2798434ae06c', 2, 'martin@tschepe.de', 1594208373, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (168, '3aae2d85-fa19-4db5-8880-f9362401ea30', 2, 'tschepe@web.de', 1594216163, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (169, 'd80900d0-ce55-4088-8f68-1aa622c9b52f', 2, 'triathlon@ht16.de', 1595244622, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (170, '61c53d8f-0994-41fc-80f9-88201e98cc68', 2, 'HT16 Jennifer Rasch', 1595331640, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (171, '30fbd144-5ad9-45cb-a73d-e978814572ad', 2, 'Larissa Kleinmann - FLUGPHASE', 1596713330, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (172, 'e61e19b5-e0f8-4b7b-aede-2dc4263e1d50', 2, 'info@pvz.de', 1597148290, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (173, '83d8da4e-bb47-4615-bfff-98e365ff1e0e', 2, 'infomaster@europcar.com', 1598267046, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (174, '24a4282b-16f8-4a12-8c4f-cfadcb62d61d', 2, 'nachfrage@europcar.com', 1598267104, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (175, '7c30bc4c-f9d6-4973-9160-c0d58c466fbd', 2, 'reservierung@autoeurope.de', 1598886540, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (176, 'b6321f92-4775-42e5-a2ba-03e89d8e46da', 2, 'CHECK24 Mietwagen', 1598948327, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (177, 'a3d0a5a3-0f6b-4d9e-8922-0fe0bb18f07e', 2, 'mietwagen@check24.de', 1598948327, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (178, '5b2bf2e0-3d19-4338-99ff-148ebd00c508', 2, 'burgerme', 1598957745, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (179, '71309643-b41f-4250-a807-bd47fd9e3797', 2, 'CHECK24 Mietwagen', 1600243771, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (180, '495838bc-3836-4f6a-9baa-9e94db75999e', 2, 'CHECK24 Mietwagen Kundenservice', 1601277387, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (181, '8f0dd895-dcee-477f-ba34-a710bfe2e1b6', 2, 'Leonie Güldenpfennig', 1601282889, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (182, 'dbf5513e-e25a-429e-bed7-d6642ca42171', 2, 'info@eaton-place.de', 1601460094, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (183, '1fe287f1-638e-491e-950b-ac7373a53a0b', 2, 'kundenservice@handelsblattgroup.com', 1602663993, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (185, 'd1fae6da-b3da-48f7-b1a9-160f0795f73e', 2, 'Bike-Discount', 1603092550, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (186, 'e7483a4f-d696-4006-92a1-a3777f3ad861', 2, 'Bike-Discount', 1603381132, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (187, '578418e1-4f00-4098-882a-e26c51dd5a5e', 2, 'support@zwift.com', 1603885162, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (188, '17867825-3b16-4c45-ae30-996e4d721c4b', 2, 'dianalukasnuelle@gmail.com', 1606382032, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (189, '67fa92a4-63a0-45e4-a078-cdca8b2e7b1f', 2, 'treuebouldern@ht16.de', 1606738350, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (190, 'aac2a3c3-a51e-4342-9d39-dd0de315b5a5', 2, 'Anne Piatt', 1608726339, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (191, '0908d553-1d55-4918-a4eb-6c68d4712da1', 2, 'alena.beutler@posteo.de', 1608727804, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (192, '185061d6-e003-4da4-9e98-12bb1e30bc61', 2, 'annabelelaine@web.de', 1608728128, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (193, '5f0beec0-1f30-48db-a016-625e4184f8f0', 2, 'cindy_kubsch@hotmail.de', 1608728566, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (194, 'b0f572f9-4e8c-481c-8cad-cfbae3962254', 2, 'jule.hackeloeer@hackeloeers.de', 1608729268, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (195, 'deceab1a-4304-4940-bd02-56502f0a250c', 2, 'elbrose@hotmail.com', 1608729711, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (196, '56629bbf-982c-4be8-bde0-36525f18ae8d', 2, 'nina_johannsen@hotmail.com', 1608730289, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (197, '72cacef7-cc83-4dc7-a89a-dd0c2b33b7bc', 2, 'info@buenavida-andalucia.com', 1608730514, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (198, '5457a277-9acb-4f0c-b724-503938a0d792', 2, 'sebastianacke@gmx.de', 1608730963, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (199, '955e6100-d7a9-4d2d-82c9-3e8a6d1a8eda', 2, 'Dietrich Zahn', 1608731599, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (200, 'f2d6bc2e-299f-4d7d-8713-58eb0103f893', 2, 'bewerbung@uni-flensburg.de', 1609358509, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (201, 'b156999e-e515-485c-8874-57ba9a098c10', 2, 'Gesa Birnkraut', 1609847691, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (202, '0f16ca87-a211-4639-99a0-76e6cad88590', 4, 'Ole Benjamin Rosentreter', 1610279358, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (203, '36718ae2-d16a-4d5e-afd3-9ab908b4314f', 4, 'frauke', 1610279873, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (204, '5f6c4e1c-df78-42c0-90bb-27af97384f87', 4, 'lasse', 1610291221, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (207, '69e1af0b-aced-46d9-a498-3a937a5dce2f', 2, 'Janos Mester', 1610993928, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (206, '9f572b02-da9f-4d10-9db1-0bf7526a2a31', 3, 'papa', 1610292248, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (205, '3ce4b59c-452a-4eb8-9743-0f235dde81d3', 3, 'Matthies', 1610292249, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (208, 'b02a6ae1-ce94-4fbf-82cc-83d44c38c311', 3, 'Matthies 2', 1611039821, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (209, '81727a70-667c-4db2-b247-378dda3f3714', 3, 'Matthies 3', 1611039876, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (210, '1c98fa23-c1fa-4b08-b2af-bb38f610b64d', 3, 'Matthies 4', 1611039923, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (211, '1e328d86-0f38-438b-aa2d-8f9099724cc3', 3, 'Matthies 5', 1611039965, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (212, '18d87cfc-4334-440e-b020-a87f9b427cc8', 3, 'Matthies 6', 1611040023, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (213, 'ba33784b-639c-4667-8dc1-ea14f057ac39', 3, 'Matthies 7', 1611040114, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (215, 'e5035f8c-1dc0-494a-923d-939555681308', 3, 'Matthies 8', 1611040246, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (216, '4a9e3348-b1dd-4778-8b66-372c51500df2', 3, 'Matthies 9', 1611040277, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (214, 'cc90bcfa-89eb-47a4-b041-0ebcbe580837', 3, 'Matthies 10', 1611040314, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (217, '2c8e8950-3de2-4511-849d-94e3ce19d100', 3, 'Matthies 11', 1611040403, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (218, '4c728bdc-056b-4c7a-9547-786283860545', 3, 'Matthies 12', 1611040628, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (219, '762f5419-538f-4cbe-9f87-fe34ec7eb31f', 3, 'Matthies 13', 1611040809, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (220, '4debe69e-be86-4773-8b8f-0813f04422a0', 3, 'Matthies 14', 1611040847, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (221, '85687aeb-d513-41eb-966a-9b4b256ee75b', 3, 'Matthies 15', 1611041202, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (222, 'a03b7d83-67a2-4c51-b8f8-8756469a3866', 3, 'Matthies 16', 1611041228, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (223, 'e619b0e7-bd26-4d43-9a3b-afe5395b494d', 3, 'Matthies 17', 1611041278, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (224, '9f33fb07-899c-425e-b803-c44697580b18', 2, 'Yvonne Ewen', 1611171223, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (225, 'f4019d95-8503-4fa6-8c06-1a56d31a561a', 2, 'Yvonne Ewen', 1611171733, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (226, '0ab37a2c-1f51-4509-a8bd-c0452d14eb5d', 2, 'Schneider, Melanie', 1611218561, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (227, '5a997169-1c89-4568-b646-1b73cd324d62', 2, 'Alsen, Inken', 1611222566, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (228, '00374488-bf01-4083-9064-c4223475cd3a', 2, 'mitgliederbetreuung@fasi-amb.com', 1611670529, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (229, '33ea78a9-f63d-4856-8e4d-acd33ee2c53f', 2, 'fasi.mitgliederbetreuung@web.de', 1611670530, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (230, 'aa0bf421-b1f8-4a0e-a859-2b4a62881754', 2, 'service@dlz-limburg.de', 1611670892, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (231, '1a083b73-0751-4f3c-9ce1-a68393ec0f28', 2, 'mike.fischer@mikefischer.de', 1611765582, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (232, 'a64c4ff3-cefc-4aeb-9f48-5686bfedae69', 2, 'hello@nicole-baumgarten.com', 1611772878, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (233, 'cd3abf8f-3281-4dc8-b5fb-080052972900', 2, 'Nicole B. | Andalusien PRIVAT', 1611841764, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (234, '0e4f034a-408d-48e0-b8fa-64d21a04e46d', 2, 'info@die-kuendigungsschutzkanzlei.de', 1611929962, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (235, 'd0f4bfc8-cb34-40c2-b2d1-66a4799de71e', 2, 'Red Elephant GmbH', 1612088013, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (236, '716ca470-e44f-4e3f-997b-ec7f8808525a', 2, 'henkelmann@die-kuendigungsschutzkanzlei.de', 1612170966, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (237, '932dc0c8-4ec3-4223-9f1d-fac2bd1fcde6', 2, 'CHECK24 Mietwagen Kundenservice', 1612255928, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (238, '97009701-19cf-4c40-a0eb-44abcb3f6dfe', 2, 'Coaching-jaiser@web.de', 1612281858, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (239, 'ba2dd9b1-29bc-4188-b88c-6f264fa9adf7', 2, 'Coaching-jaiser@web.de', 1612445250, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (240, '1fdf5cf4-9d84-42ff-a2ca-020c3863f65c', 4, 'kontakt@laktatnebel.de', 1612700430, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (241, 'f7f9650c-a44f-4df7-b8ce-109a926bb0ba', 2, 'cora.schuelen@gmx.net', 1612891534, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (242, 'a13d058a-f48b-450b-b1e8-50dfa12d75cc', 2, 'sabine.mauermann@t-online.de', 1612945574, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (243, '5089e8bf-7fd4-4a7a-9789-fc24917724a2', 2, 'Prof. Gyula Szabó', 1612951480, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (244, '0c8d3d57-9d36-41c9-a7e7-a518d99cfddd', 2, 'kenner@bwt.uni-stuttgart.de', 1613034443, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (245, '0e5ff807-4f36-4c6b-8a8d-118dd1217d0b', 2, 'Manuela Bäuerlein', 1613050176, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (246, '25a78857-7b66-41e3-b68d-08cac23a14ff', 4, 'Anita Meyer', 1613227709, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (247, '7d85df60-c34f-4e89-b909-34e50269d881', 4, 'Ina Rosentreter', 1613227744, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (248, '0d8d55e3-f2a5-49f9-8fbd-8660e4b271d8', 4, 'Udo und Irmtraud Rosentreter', 1613227813, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (249, '67653246-5ea5-4c76-bebd-9b695514e48f', 2, 'linda.auert@iass-potsdam.de', 1613245043, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (250, 'e62710b0-6154-4d5f-a685-9e8144669e8f', 2, 'bewerbung-stabsstelle-civis@zv.uni-tuebingen.de', 1613340104, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (251, '9dc9dd88-f198-41d7-8350-5912f3146f70', 2, 'cora.schuelen@gmx.de', 1613378704, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (252, 'bd9ead75-c962-4fd6-b1ed-3bf192d09e3e', 2, 'bewerbung@leuphana.de', 1613573687, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (253, '40916534-6b96-496a-bc19-e43dec0ead39', 2, 'Auert, Linda', 1613931631, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (254, '327ebaad-a3e0-478e-afd0-ddaa0f263019', 2, 'Christina Scholz', 1614276356, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (255, 'c0648367-a654-4665-b5b0-df9fec332494', 2, 'jakob.meyer@iass-potsdam.de', 1614592126, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (256, '6e1d8881-7d6a-48fa-901a-d892d1011560', 2, 'Auert, Linda', 1614674642, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (257, '9290ef97-6871-465a-9402-0526231073ff', 4, 'privat@matthies-gehrmann.de', 1614791253, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (258, 'dc698d97-372f-4ad3-b3d0-b1cbd291a582', 2, 'bewerbungen@uni-hamburg.de', 1614791380, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (259, '0c3fa945-076e-45b8-9e28-4f6616c58e30', 2, 'Matthias Becker', 1614876798, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (260, '37e3061f-5cb6-4e68-aa48-06de504f7fec', 2, 'yvonne.ewen@gmx.net', 1614878092, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (261, '2cd31e2e-f01d-4c5a-bb6d-0ace350b7e3d', 2, 'Yvonne Ewen', 1614878216, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (263, 'b1496803-63f8-4cbf-9cec-ce5e51a80264', 2, 'Yvonne Ewen', 1615215433, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (264, '8b86ae7d-69ee-4a1e-89d8-36955290b7af', 2, 'Büro', 1615220870, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (265, 'f865ff09-b993-4305-a284-b7bb84b831d9', 2, 'hamburg.015-OS@arbeitsagentur.de', 1615801331, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (266, 'a23f2822-6d3e-47e0-80f6-c45e5331ec8a', 2, 'Mentor Verlag Berlin', 1615801443, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (267, '0ee4553b-a6d6-4710-826a-39f31993f475', 2, 'service@buecherhallen.de', 1615974169, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (268, '4ce67637-b450-4ac5-9147-f9f608638986', 2, 'info@sportspass.de', 1615981333, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (269, 'fb2c5695-11bf-43a8-b0d1-db6a466276fb', 2, 'info@ht16.de', 1615981775, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (270, '7d846da0-88ff-4d8c-a407-3e544a47293c', 2, 'Nicole Baumgarten', 1616054441, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (271, '85d8927d-836d-4325-9b4b-2a4ece4cb5d6', 2, 'raa70@yandex.ru', 1616230884, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (272, '3bc6896e-4a2b-4e34-bba0-397c3840adaf', 2, 'bestellung@platinumeurope.biz', 1616497403, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (273, 'fcb289cb-6d17-443e-94c0-e523aa0f469a', 2, 'info@hammer-kirche.de', 1616497958, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (274, '19abe08f-c662-4176-9232-7a5b6881cc37', 2, 'jana.kaehler@ht16.de', 1616499073, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (275, '655be882-1ba9-41fb-a701-5d1fe87252ca', 2, 'Alexandra Jünemann', 1616665811, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (276, 'fa5eacaa-c9c6-421c-9e1a-6cc23dfe1d7f', 2, 'Killing, Sabine', 1617008710, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (277, 'd116265b-076d-4c0f-98d8-b93443d2a5d8', 2, 'Termin_Alternative', 1617089567, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (278, '0fe4a567-90b7-43e0-af51-463b3c1cc21f', 2, 'Karola Weise', 1617106972, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (279, '7b15ad92-7463-4277-aefe-991b2aab196d', 2, 'scheffczyk@skaj.de', 1617178141, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (280, '4624e1b3-7b57-4785-9d7d-ad1f8efcada6', 2, 'sam.sabzian@orange-immobilien.de', 1617282114, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (281, 'be782a0a-d8cc-4501-a381-0f82d50df4c0', 2, 'Haymo Grossmann', 1617282250, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (282, '37703ba0-739e-4823-9584-a7b16479cdbc', 4, 'gehrmann.lasse@gmail.com', 1617300091, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (283, '08320857-06ac-4a69-b761-95ae251a200a', 2, 'Kresse, Lars', 1617701445, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (284, '1b7fc576-52f0-48ed-a753-50b5cc6d7735', 2, 'Kresse, Lars', 1617701581, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (285, 'efd0a07b-d07a-452d-b07f-82e5f489ae3a', 2, 'Kresse, Lars', 1617701647, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (286, 'a6815593-960a-4ed6-bcd5-54984a73c0fd', 2, 'Kresse, Lars', 1617701766, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (287, 'bc2f0075-5805-4ba6-8189-99d30a672941', 2, 'Kresse, Lars', 1617701859, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (288, 'fa122829-e507-4e0e-8b19-d1a352136f5c', 2, 'Immobilien Scheunhornweg', 1617715188, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (289, 'ae78264c-641b-48fa-8288-da7720f78332', 2, 'MILA Hausverwaltung GmbH', 1617716141, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (184, 'cfe7fe56-c04b-473e-9d97-c87559a73cd9', 2, 'Ellmers, Manuel', 1618129196, 1, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (291, '515e81c0-b867-4a33-ae50-5b302651859e', 2, 'Killing, Sabine', 1618220737, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (292, '1284f143-d026-4e9f-aff2-e3c1d8b4bcb4', 2, 'Killing, Sabine', 1618239563, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (293, 'c10f2f06-0cb5-41d0-ac8a-f491ec22f713', 2, 'Erwin Nowotny', 1618240206, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (294, '06f54b4d-3c06-4e02-91b1-ff9300e6137a', 2, 'Auert, Linda', 1618240464, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (295, 'ad62f970-2bad-4e20-a868-44824cb34e11', 2, 'Auert, Linda', 1618303693, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (296, 'd384ad58-5a53-487c-8f33-7bd5eadfcbd1', 2, 'Liane Seedorf', 1618303867, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (297, '74bfbaf7-1427-4962-a4d1-fbbdc853aed5', 4, 'lasse', 1618492497, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (298, '30e4682a-1470-45c6-9ba3-94ba3266cda6', 2, 'Zalando Team', 1618817442, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (299, '24bebbb4-16ce-4778-b0f4-1df1821d766c', 2, 'Michael Höbig', 1619177043, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (300, '4c0fdcb4-0fac-4b35-b9d8-6620d5e97286', 2, 'Frank Franke', 1619177360, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (301, '12b84dd9-47f1-45e6-b10f-61c1025e46b4', 2, 'Mariette Kühnelt', 1619177873, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (302, 'c3cfacab-714f-49f2-99c5-e679551713bc', 4, 'altunmuhammed150@gmail.com', 1619798064, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (303, 'e435efd1-c159-4a94-8797-1fe70b4dfb06', 4, 'd.natalie@gmx.net', 1619798115, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (308, '3bba00fd-45f8-4006-b82b-eb91609981bb', 2, 'Joanna Kanzenbach', 1620726576, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (309, '59676988-dc7e-497f-bb10-e3e7c111283b', 2, 'depot52@hes.de', 1621242000, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (310, '9d9f1835-ad69-4c76-b793-6066f4906886', 2, 'ina.rosentreter@iass-potsdam.de', 1621602907, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (306, '52b91914-7010-4e86-9f50-988c77f456af', 4, 'agagasch80@gmx.de', 1622117397, 1, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (307, 'df56e32f-af0c-47f4-a8f8-6524f247b2a5', 4, 'agagasch@gmx.de', 1622117414, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (311, '10accd48-fcac-4907-88ff-5452425baee0', 2, 'techem@operativa-berlin.de', 1622618309, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (312, '11169b73-8804-476b-86b6-32aea77c9dc1', 2, 'auftragsbearbeitung@1und1.de', 1622730629, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (313, '7f7e33e4-419c-4447-89f8-891ceb544347', 2, 'tanja.wullenweber@sparda-bank-hamburg.de', 1623750465, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (314, 'ee32c687-f0fe-4496-a3f9-17befc86fece', 2, 'buergerservice@rathaus.potsdam.de', 1623760389, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (315, '7a474f95-f855-4455-a5f5-e42318d1d3dc', 2, 'Leonie Güldenpfennig', 1624287974, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (316, 'cca58fa6-846d-4b72-b057-bbf7d463fefb', 2, 'Leonie Güldenpfennig', 1624288186, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (317, '512c9135-2628-40a9-98cf-74473fd904ec', 2, 'Coaching-jaiser@web.de', 1624289237, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (318, '301abe64-0dec-433f-a637-fd0044141a57', 2, 'Yvonne Ewen', 1624291105, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (319, 'afc6e6f7-aca0-44dc-9a11-b3803146765e', 2, 'kundenservice@pyur.com', 1624446794, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (320, 'a43e6197-9970-4f8c-af0d-05e814904c89', 2, 'BertieWalkleyDH631@yahoo.com', 1625036378, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (321, 'a27eb43d-2355-4aab-a028-6a93d1d3dcfc', 2, 'info@orthopädie-dogan.de', 1625141506, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (322, '40664292-56ff-407b-9685-c9b2cb29feff', 2, 'mare-me.de', 1625227075, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (323, '59d88972-d303-4b5f-b768-a03aaa0a7d1e', 2, 'SKLUM', 1626087994, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (324, '1b8bd1a9-6853-424f-8108-f91d9959de72', 2, 'Meilenweit Heilpraxis', 1626095317, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (325, 'b8b5f594-cb1c-41ab-b913-33e4b46688fb', 2, 'LAUFMAUS®', 1626197855, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (326, 'b79cb87d-baf8-4954-8c9e-81978976ae81', 2, 'Darian Schmidt', 1626253689, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (327, 'f7143065-e478-46c9-8993-f8cb0d1d1876', 2, 'rgpd@sklum.com', 1626254406, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (328, 'f4b8027b-8146-4ff3-a4b2-e509eef10c18', 2, 'FAHamburgHansa@finanzamt.hamburg.de', 1626254669, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (329, '4553e527-5d86-4f34-8f4a-fac0230f915f', 2, 'startpass@triathlondeutschland.de', 1626255239, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (330, '35f2acfb-90fe-4add-94b1-071e9f7def53', 2, 'CHECK24 - Hausratversicherung', 1626274043, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (331, '222ad3bc-b922-4bc3-9522-010efecda181', 2, 'Klatt, Juliane', 1626351447, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (332, '9e574750-74ff-41aa-8db7-4095fd4a2220', 2, 'gewinnspiel@propotsdam.de', 1626361192, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (333, '4f587edc-de90-4734-933b-06b378b1436e', 2, 'Meine Wunschleuchte', 1626439023, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (334, '1ea4cd10-483d-4f9e-a0d7-86b61dcda703', 2, 'mail@home-garden24.de', 1626962480, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (335, 'a64591ba-5dbe-44a5-b1cc-d4c142ef2373', 2, 'mp-lastschriftservice-ape@amazon.de', 1627038903, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (336, '98e41be5-59bc-4c33-94fa-4d7cec374ab4', 2, '2RadStätte Potsdam', 1627367796, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (337, 'b66db1a3-e593-47d7-938e-6e53480a331b', 2, 'Sue.Meylahn@propotsdam.de', 1627378841, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (338, 'c43c0864-d1ab-45d5-b75f-2b461b2577ce', 2, 'OTTO - Kundenservice', 1628086494, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (339, '546fb9bb-4536-4edd-83a7-5c823f8f6e88', 2, 'service@paypal.de', 1628154279, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (340, '7fcea2db-df09-417f-ab3f-362b6b22fcd6', 2, 'info@1und1.de', 1628604169, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (341, '3e9ac595-2378-4986-813b-bd0b31f9ad24', 2, 'kunden-service@1und1.de', 1628604169, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (342, '8eb40e2d-045a-405b-b293-6cb36e0b4f9a', 2, 'Westwing', 1628670936, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (343, '6400f1be-ef59-488a-87a5-6d95ba47be98', 2, 'DE - Kundendienst - Sklum', 1628759660, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (344, '26f3fe1a-88d8-438c-b44c-b0b89ffd8859', 2, 'Westwing | Kundenservice', 1628852542, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (345, 'b3c327bb-88df-4542-9a57-f9f606d188d0', 2, 'post@zeppelin-team.de', 1629800216, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (346, '61154828-580f-4842-ba9c-56d69f8101b8', 2, 'Andrea Krah', 1629879351, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (290, '4f9425e6-ae60-41af-bccd-a5ce5c69708a', 2, 'Silke Grundmann', 1666973024, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (347, '089719f8-e016-4878-b916-65269098d76b', 2, 'hochschulsport@uni-potsdam.de', 1629991912, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (348, 'b90ad17c-2aa0-41fe-a75a-7a6c0dcf8553', 2, 'Kundenservice', 1630052081, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (349, '535948d5-c816-4bb7-9881-197c110d5887', 2, 'Mike.Fischer@mikefischer.de', 1630584044, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (350, '91703b18-8422-44ea-b19a-4e4d737a9a3e', 2, 'info@huk24.de', 1630655890, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (351, 'f4301210-e45c-4e71-b613-4b81656fdd09', 2, 'service_@news.fitnessfirst.de', 1630656083, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (352, 'ea06800f-3d76-40eb-9420-9c909772b2c7', 2, 'serviceteam@sparda-bank-hamburg.de', 1630924763, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (353, 'a9e67ef2-7a51-4ffa-8b58-c76958c98572', 2, 'REAL Solution Inkasso', 1631869873, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (354, '81f23173-1908-4fd2-8f0d-5fe4600ce9b2', 2, 'Felix Remek', 1632475312, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (355, '836f4a6e-b7b5-48b0-a884-be303db726b6', 2, 'Leo', 1632846872, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (356, 'f8662bd9-ae2c-4947-b7c8-34641ca547e3', 2, 'info@news.fitnessfirst.de', 1632930001, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (357, '35183a8c-a77c-4532-a4d5-95caeb65ced3', 2, 'HUK-COBURG', 1632931618, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (358, '78561e18-36a6-481e-8cbc-57b319044ee0', 2, 'Leonie Güldenpfennig', 1632936135, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (359, '44af535d-1796-444f-8dec-3d7000b6a0f1', 2, 'verlaengerung@bibliothek.potsdam.de', 1634299696, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (360, '95a6a470-5c8e-4f1b-89e2-855c94d5986c', 2, 'Yvonne Ewen', 1635169094, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (361, '982dc924-631f-4845-b821-f72a266a8b4e', 2, 'Johannsen, Nina /BDF HAM', 1635169553, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (362, '1a810731-be93-4d9f-942e-bee9d32ddbee', 2, 'Coaching-jaiser@web.de', 1635169920, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (363, 'c3678f4b-d3b3-49ed-b20a-907b334d0697', 2, 'Lale', 1635171092, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (364, '08c5d6a4-b6d2-4e96-8354-856881023c62', 2, 's.a.dathe@web.de', 1635171974, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (365, '11444fab-5df1-4555-af8f-de33b69395bd', 2, 's.a.dathe@gmx.de', 1635176282, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (366, '124c6806-a85b-4c9b-aa8c-06af05ecb4d9', 2, 'rebecca.korbach@iass-potsdam.de', 1635176483, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (367, 'b5507ff7-b7f1-4576-9fe3-63cc9a654c2b', 1, 'Ana Serrano', 1635511349, 0, '1d4dbc11dc373a7b09b9ac322e408d7d');
-INSERT INTO public.rainloop_ab_contacts VALUES (368, 'f0b7c6ad-82b5-4d53-b927-a34b3a97a028', 1, 'Heike Bollmann', 1635511349, 0, '4a2ca6d6cde259dd71644d99190ff8ae');
-INSERT INTO public.rainloop_ab_contacts VALUES (369, '062e5206-9bf9-409a-be76-303f5cebdc37', 1, 'Irmtraud Rosentreter', 1635511349, 0, 'da94b316c101ef4fd2229d751a6bfe3b');
-INSERT INTO public.rainloop_ab_contacts VALUES (370, 'b5375824-5455-45e5-9683-52bcef90774d', 1, 'Werner Goller', 1635511350, 0, '9a9fd0e41c36b47641f8c91435de6c17');
-INSERT INTO public.rainloop_ab_contacts VALUES (371, '3cbd93a7-ca28-483a-89c2-bc798b5469b2', 1, 'Andy B07 Vereinsgaststätte', 1635511350, 0, '4d66560105504aa99cff4de9ac47ac02');
-INSERT INTO public.rainloop_ab_contacts VALUES (372, '25019507-3ed9-41f4-a064-3b152061a2e5', 1, 'Ana Serrano', 1635511350, 0, 'f66c2294897f2f44a99a2673aaa9e1e5');
-INSERT INTO public.rainloop_ab_contacts VALUES (373, '11c58650-3508-48b1-94bb-1f3cd7a9df3a', 1, 'Heike Bollmann', 1635511350, 0, '0e45394da2f9e046c2d42ed881c82ae4');
-INSERT INTO public.rainloop_ab_contacts VALUES (374, '8539a6f6-6ce3-4deb-8dc6-ee9b8e9ff62a', 1, 'Irmtraud Rosentreter', 1635511351, 0, '2aa006bc287aff09a44674888ffba1d6');
-INSERT INTO public.rainloop_ab_contacts VALUES (375, 'c110cbf1-fc78-4c70-b570-81c25bab466e', 1, 'Andi Liebrich', 1635511351, 0, '697da1460c93a5486ecf0f6f7b41d238');
-INSERT INTO public.rainloop_ab_contacts VALUES (376, '0ca2bda3-8924-47b4-9c96-6ff15087fcc6', 1, 'Heike Bollmann', 1635511351, 0, 'f17a187fbf76a6d6b16a886e69e6cb1c');
-INSERT INTO public.rainloop_ab_contacts VALUES (377, '574265ff-f66b-417b-90da-b59336a20001', 1, 'Irmtraud Rosentreter', 1635511351, 0, 'ab308fd46d0af2a46287a2289c0eb921');
-INSERT INTO public.rainloop_ab_contacts VALUES (378, '08bbd7b7-116f-46fc-9756-3a4b42ec7e51', 1, 'Andi Liebrich', 1635511352, 0, '63abfab7ea587408e821862bcf356049');
-INSERT INTO public.rainloop_ab_contacts VALUES (379, 'd7334958-84b3-4c21-a874-29bb1eba726f', 1, 'Heike Bollmann', 1635511352, 0, 'ef055c09df26902167c5b8474a696514');
-INSERT INTO public.rainloop_ab_contacts VALUES (380, 'd52b945b-84e0-43fe-b965-3c1c69169e9a', 1, 'Irmtraud Rosentreter', 1635511352, 0, '7014ffdd4283b42a6cf4929e6dc99e67');
-INSERT INTO public.rainloop_ab_contacts VALUES (381, 'f17fd497-fac7-493c-a76b-be35517ce4e9', 1, 'Andi Liebrich', 1635511352, 0, '7479a96afb0338cb78866c619532bc68');
-INSERT INTO public.rainloop_ab_contacts VALUES (382, '3f6a7ca6-d35e-4bf5-8e07-d9a7ec2c5634', 1, 'Heike Bollmann', 1635511352, 0, 'de487a28670294837c47e0385c7087c0');
-INSERT INTO public.rainloop_ab_contacts VALUES (383, '2a632ff1-b8cb-4965-b41f-4667366b1ec6', 1, 'Irmtraud Rosentreter', 1635511353, 0, '109c8c212495ae58f0787189ed7664ae');
-INSERT INTO public.rainloop_ab_contacts VALUES (384, '85ccd759-20c1-4f92-88f7-04fcd0a383ea', 1, 'Andi Liebrich', 1635511353, 0, '6a85a76c3ae26dd5be4dc303d08b95c3');
-INSERT INTO public.rainloop_ab_contacts VALUES (385, '41e7b08d-aba4-4b4b-a6f8-25b2b9d6730d', 1, 'Heike Bollmann', 1635511353, 0, 'd260e85a19745fa1d3fc34cde67e5f4e');
-INSERT INTO public.rainloop_ab_contacts VALUES (386, 'b5e6828d-f83b-4312-9eca-bf7fe52e4170', 1, 'Irmtraud Rosentreter', 1635511353, 0, '69e13c912161084e46c6aa41b6501a04');
-INSERT INTO public.rainloop_ab_contacts VALUES (387, '324d3465-0997-4e5c-8202-f61ee686eb5e', 1, 'Andi Liebrich', 1635511354, 0, '9233030c5ede38d1cb3b03ca68374a56');
-INSERT INTO public.rainloop_ab_contacts VALUES (388, '78ac0c33-9c23-4bf1-99f8-188a8d0cd968', 1, 'Heike Bollmann', 1635511354, 0, 'e31a39dfa5c51d540f0bd4a98e180dc8');
-INSERT INTO public.rainloop_ab_contacts VALUES (389, '104064f2-2b60-4405-a025-f50765e702b7', 1, 'Andi Liebrich', 1635511354, 0, '1002f42523776fc9d7201f397feaefe6');
-INSERT INTO public.rainloop_ab_contacts VALUES (390, 'b2fc974b-73bb-4e59-b5bd-0bfdd2f6741e', 1, 'Heike Bollmann', 1635511354, 0, '96b5c25f22579a37bd23d7571b299aa5');
-INSERT INTO public.rainloop_ab_contacts VALUES (391, '8ce728db-2de7-45e2-8bf9-0f3c59ad2e8f', 1, 'Irmtraud Rosentreter', 1635511354, 0, '977abe62493081f0558ed74bedde69e8');
-INSERT INTO public.rainloop_ab_contacts VALUES (392, '0efa39c8-dc37-4e8c-98ff-7bc0fc53f433', 1, 'Heike Bollmann', 1635511355, 0, '58ca641344672a05ac34779e477d5fa9');
-INSERT INTO public.rainloop_ab_contacts VALUES (393, '40db5fd5-e6b5-43bf-a7ec-0997b521d1b8', 1, 'Andi Liebrich', 1635511355, 0, '39a8e20849234c75a598494a4a9a9162');
-INSERT INTO public.rainloop_ab_contacts VALUES (394, '607d6322-6a13-41f6-afac-4f81351c9bd1', 1, 'Heike Bollmann', 1635511355, 0, '64ea6666348af50357ccdf6d3c53d737');
-INSERT INTO public.rainloop_ab_contacts VALUES (395, 'b934e044-02e4-49f8-a712-6cca86d67741', 1, 'Irmtraud Rosentreter', 1635511355, 0, '62bf70ab9dc439f529d768f687ef0be0');
-INSERT INTO public.rainloop_ab_contacts VALUES (396, '44e01fde-36e4-47e2-b046-6ce97a2b8610', 1, 'Heike Bollmann', 1635511356, 0, '2607e4331b33c25ab1a416311999e4d4');
-INSERT INTO public.rainloop_ab_contacts VALUES (397, '5ca8b4f6-cbaf-4470-9df6-3018491cb291', 1, 'Andi Liebrich', 1635511356, 0, '48a0c9d768d6cb8fa14245d3c0034e38');
-INSERT INTO public.rainloop_ab_contacts VALUES (398, '9ef3cc03-c49a-40f9-9be3-eb7dbb7372fc', 1, 'Heike Bollmann', 1635511356, 0, '9c7ea51c2d29675a63b69b87abe7428b');
-INSERT INTO public.rainloop_ab_contacts VALUES (399, '5390a421-e00e-4109-8cb8-cd1f991f1d4a', 1, 'Irmtraud Rosentreter', 1635511356, 0, '47d4e469972e3f66a2b68073e193ceef');
-INSERT INTO public.rainloop_ab_contacts VALUES (400, '8555d4a5-fbdc-4e74-922f-3e89a7d7289b', 1, 'Heike Bollmann', 1635511356, 0, 'cfc8644690e811286d1fc31408b7236a');
-INSERT INTO public.rainloop_ab_contacts VALUES (401, 'ae8221d6-4e96-4ac1-b2e1-10246c0ec9f5', 1, 'Andi Liebrich', 1635511357, 0, 'a0dc1ccdceb2727a77cd069101589e35');
-INSERT INTO public.rainloop_ab_contacts VALUES (402, '9ceee350-8755-4828-8fcc-67c5e5de9672', 1, 'Irmtraud Rosentreter', 1635511357, 0, '1f7b35f96adf717f1747c0065194cd4c');
-INSERT INTO public.rainloop_ab_contacts VALUES (403, 'c549a759-9ab1-420d-9820-70738600a492', 1, 'Heike Bollmann', 1635511357, 0, '683517bd456cd2f09980b093c75a1ff4');
-INSERT INTO public.rainloop_ab_contacts VALUES (404, '7e5be267-cfa8-4370-bf7f-5dc310c20a4a', 1, 'Andi Liebrich', 1635511357, 0, '7542165107c3734c426a7e73359d24c6');
-INSERT INTO public.rainloop_ab_contacts VALUES (405, 'bc9b4d0f-afaf-4ffc-9a29-7f49344d0d2b', 1, 'Irmtraud Rosentreter', 1635511358, 0, 'bf9eacc6ab18fe66a4100547a46af6be');
-INSERT INTO public.rainloop_ab_contacts VALUES (406, '79c80b4d-17af-4a57-9969-7b4e14ab2a3d', 1, 'Andi Liebrich', 1635511358, 0, '321b3284f650ed7fa378156a1ff8a24d');
-INSERT INTO public.rainloop_ab_contacts VALUES (696, 'd5d37a7c-92a6-418e-a882-430d3585a67b', 2, 'HANNUN', 1655395452, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (407, '9393fee7-8ffa-40ae-afcc-5a5ca28f63c2', 1, 'Heike Bollmann', 1635511358, 0, '895799b5b8e96f24a8e9b9079becbc81');
-INSERT INTO public.rainloop_ab_contacts VALUES (408, '163f7fd5-2916-4537-976c-fb3b18152a5d', 1, 'Irmtraud Rosentreter', 1635511358, 0, '3c74f5c95b9e2b4ca0efc37fb874fdab');
-INSERT INTO public.rainloop_ab_contacts VALUES (409, '5404415b-42b4-4ceb-a355-fee654349177', 1, 'Andi Liebrich', 1635511359, 0, '5f43c677c698e28ca835e68036ad8ef3');
-INSERT INTO public.rainloop_ab_contacts VALUES (410, '90b3bdf3-6fd2-4f5a-a3e9-042e18627729', 1, 'Heike Bollmann', 1635511359, 0, '51a819f339e92d0eaf2b3341f2c96906');
-INSERT INTO public.rainloop_ab_contacts VALUES (411, 'ad6d88f2-5fdc-49dd-928f-21acf6271037', 1, 'Irmtraud Rosentreter', 1635511359, 0, '7e989e89f4c125764e93bba85b5c76dc');
-INSERT INTO public.rainloop_ab_contacts VALUES (412, 'c815b272-329e-4322-9e8d-132c5c6efd71', 1, 'Andrea Freyberg', 1635511359, 0, 'f0e6b540b308a586d23f52e450555634');
-INSERT INTO public.rainloop_ab_contacts VALUES (414, '977057eb-4032-4e7e-9fc4-04fbb60fe8e2', 1, 'Heike Bollmann', 1635511359, 0, '73be507bb167ed408eb5c4e1e9bf60ef');
-INSERT INTO public.rainloop_ab_contacts VALUES (415, 'f6dd07a8-73e4-4659-904b-4d7e1fc254f2', 1, 'Irmtraud Rosentreter', 1635511360, 0, '62720ea5e7294ce3693f701b9b58443c');
-INSERT INTO public.rainloop_ab_contacts VALUES (416, 'e9b71990-16c5-4387-a49a-35fc7394bde2', 1, 'Deborah Michel', 1635511360, 0, '7772929272e41b2e1a1da6def6ed82a2');
-INSERT INTO public.rainloop_ab_contacts VALUES (418, 'a84bd6c6-8a3e-40f0-819f-8288d6ba3132', 1, 'Andrea Freyberg', 1635511361, 0, '6c2d9bf50d0e10934bf2610102de8d73');
-INSERT INTO public.rainloop_ab_contacts VALUES (419, '61c82a65-5f25-48ed-be7a-0fcee4056e1b', 1, 'Helmut & Janet Hagen', 1635511361, 0, '4b4e354716c9cfd71631edf2ecdb38c2');
-INSERT INTO public.rainloop_ab_contacts VALUES (420, 'e36391f4-eba0-4f41-add5-053653ca89d5', 1, 'Irmtraud Rosentreter', 1635511361, 0, 'ec17e5517d6b5f5fb094e42ab46c294f');
-INSERT INTO public.rainloop_ab_contacts VALUES (422, '6319228d-eac8-4adb-8db4-586f4be468e8', 1, 'Andrea Freyberg', 1635511361, 0, 'd11f844a4295136b96492538f2de3868');
-INSERT INTO public.rainloop_ab_contacts VALUES (423, '4772862e-2447-4187-8cd2-1d86f9e488ff', 1, 'Helmut & Janet Hagen', 1635511362, 0, '9a0d4bc75ff1b68b5f29fa8133e60d4f');
-INSERT INTO public.rainloop_ab_contacts VALUES (424, '9361b06b-ec8d-4611-9306-2f0de04537c2', 1, 'Irmtraud Rosentreter', 1635511362, 0, '18d45e71e03385b5e4155b3db8d68af2');
-INSERT INTO public.rainloop_ab_contacts VALUES (425, '1e8744e9-2aef-4c40-a0aa-e57a6e2b6829', 1, 'Andrea Freyberg', 1635511362, 0, '1d4f4195bab0137ec316fa5f6bc46c0a');
-INSERT INTO public.rainloop_ab_contacts VALUES (426, 'd84d04cc-4f17-4d9d-af12-7fed8547b068', 1, 'Helmut & Janet Hagen', 1635511362, 0, '307a7f349d6a868f25b4006eb98a9587');
-INSERT INTO public.rainloop_ab_contacts VALUES (427, '7440ecb3-74cd-4934-9df1-84a10e7e32e6', 1, 'Irmtraud Rosentreter', 1635511362, 0, '5b427ea900e8306b84c29af8c8b69507');
-INSERT INTO public.rainloop_ab_contacts VALUES (428, 'd576a986-de20-48cb-81d7-dfc697da96c9', 1, 'Andrea Freyberg', 1635511363, 0, '5a221a235f019afe37e53ec5dd034133');
-INSERT INTO public.rainloop_ab_contacts VALUES (429, '6209b313-e235-4edb-a820-42cb20f36b89', 1, 'Helmut & Janet Hagen', 1635511363, 0, 'cf3d2f6120a65bbe0111f4d335d114c7');
-INSERT INTO public.rainloop_ab_contacts VALUES (430, '8c98c108-4fb7-4b1a-946d-377b1994dc98', 1, 'Irmtraud Rosentreter', 1635511363, 0, '95704847a36ad7f8c9bda8864d145b6c');
-INSERT INTO public.rainloop_ab_contacts VALUES (431, '0d38f893-f44f-44e3-a918-7566f2b6a065', 1, 'Andrea Freyberg', 1635511363, 0, '2deff556d76de5891e92c623083c6e9f');
-INSERT INTO public.rainloop_ab_contacts VALUES (432, 'dc2059b7-ad55-479c-8955-e8c80ae94c8e', 1, 'Helmut & Janet Hagen', 1635511364, 0, '8c5a24ef727c8c06cba68d52a432f7c4');
-INSERT INTO public.rainloop_ab_contacts VALUES (433, '3c61b966-1d45-4504-8da6-652549df9eab', 1, 'Irmtraud Rosentreter', 1635511364, 0, 'b8ea794b8961424f98bb26fa2753ba7f');
-INSERT INTO public.rainloop_ab_contacts VALUES (434, '97a80e06-654b-4503-8f93-49f434702b19', 1, 'Andrea Freyberg', 1635511364, 0, '8a273671c6ff5d7ebe45e6b6c2865486');
-INSERT INTO public.rainloop_ab_contacts VALUES (435, 'a2509e97-502e-4608-a332-7daa6b69cd9c', 1, 'Helmut & Janet Hagen', 1635511364, 0, 'd63cd919d4d8cbd936a233fb79e1bb3a');
-INSERT INTO public.rainloop_ab_contacts VALUES (436, '3dbfcf13-af54-4031-bf1e-e7a3bb65efc5', 1, 'Irmtraud Rosentreter', 1635511364, 0, '81e2ea3bad5bd81121d470c41a962d7d');
-INSERT INTO public.rainloop_ab_contacts VALUES (437, 'f748bc56-75e2-4f78-92cb-50914d231dcc', 1, 'Andrea Freyberg', 1635511365, 0, 'd04eb02670ce6d4b3b9b11bdcb5b7c25');
-INSERT INTO public.rainloop_ab_contacts VALUES (438, 'ea51fa0b-1bde-46eb-8cba-517ec00a9496', 1, 'Helmut & Janet Hagen', 1635511365, 0, 'f1ced6755ef471c17ce6e4e3b3c6f928');
-INSERT INTO public.rainloop_ab_contacts VALUES (439, '1ef98abd-e135-4f47-a77b-41f024463a0c', 1, 'Irmtraud Rosentreter', 1635511365, 0, 'f0bfe849a649848bb5d75488e70a7d60');
-INSERT INTO public.rainloop_ab_contacts VALUES (440, '1b97f6d4-9b0d-4d80-b2ed-aa5eac8bfa46', 1, 'Andrea Freyberg', 1635511365, 0, 'e73fc4e2671da8f921c08cc9804731c4');
-INSERT INTO public.rainloop_ab_contacts VALUES (441, '25cdc528-7c92-495e-9e24-ef80806d7fcb', 1, 'Helmut & Janet Hagen', 1635511365, 0, '3444c5c68d0fb18e5cd30f98d83435cf');
-INSERT INTO public.rainloop_ab_contacts VALUES (442, 'a1c98026-8b1a-4911-9e33-da0fd9f98a97', 1, 'Irmtraud Rosentreter', 1635511366, 0, '066f4e17f1db0e60219ca64b7a038742');
-INSERT INTO public.rainloop_ab_contacts VALUES (443, 'cf750188-a8ec-4816-af2e-b98ae16a8013', 1, 'Andrea Freyberg', 1635511366, 0, 'a82bc2166e11a97810c55765c6ce09a8');
-INSERT INTO public.rainloop_ab_contacts VALUES (444, '0056b7b2-0267-4305-8307-7d7a603f1d05', 1, 'Helmut & Janet Hagen', 1635511366, 0, '2622ea2a156821b66ede1c969253635b');
-INSERT INTO public.rainloop_ab_contacts VALUES (445, '848f9115-d163-4adc-b1ee-c0f6380a64db', 1, 'Irmtraud Rosentreter', 1635511366, 0, '79fe6df72248f22d8ff17b5b301a492c');
-INSERT INTO public.rainloop_ab_contacts VALUES (446, 'c4977b5e-e737-4930-96fe-de4c4489bbdb', 1, 'Andrea Freyberg', 1635511366, 0, '810b18d67f36cbbd7cc9e14a754ee1b3');
-INSERT INTO public.rainloop_ab_contacts VALUES (447, '4ec6857a-0b79-4a6e-8869-650d2a39984e', 1, 'Helmut & Janet Hagen', 1635511367, 0, '7d1db452908d1b235aee684b84c167d6');
-INSERT INTO public.rainloop_ab_contacts VALUES (448, '9a1fd305-e8d3-467f-8088-b88292f72d7a', 1, 'Irmtraud Rosentreter', 1635511367, 0, '5b5a26447daeaa9f8b49488daff43bb1');
-INSERT INTO public.rainloop_ab_contacts VALUES (449, '7f6d5197-e5f3-4ef0-bfaf-d959f438c943', 1, 'Andrea Freyberg', 1635511367, 0, 'c26af718153f6bba0d600584a7df42a6');
-INSERT INTO public.rainloop_ab_contacts VALUES (450, '6aaed340-5ca2-4222-b1dd-40a779de2592', 1, 'Helmut & Janet Hagen', 1635511367, 0, '4c922c69b0f10714f2a6179f9c2b1107');
-INSERT INTO public.rainloop_ab_contacts VALUES (451, '55bc6a18-664c-4aa2-aa55-e4bb85140ae0', 1, 'Jana Lange', 1635511368, 0, '13256b199b80f0f93cf4cdf45df14c18');
-INSERT INTO public.rainloop_ab_contacts VALUES (452, '0e1994aa-61f3-430f-8a85-6b8b26555853', 1, 'Andrea Freyberg', 1635511368, 0, '8e77e0371ebed97dca037dba4aa6c70f');
-INSERT INTO public.rainloop_ab_contacts VALUES (453, '2dd86699-05d9-4cb9-a5d2-cc1f50ced72f', 1, 'Helmut & Janet Hagen', 1635511368, 0, 'c68c573cfea6e6c9cf71b380104608a6');
-INSERT INTO public.rainloop_ab_contacts VALUES (454, 'c75d4089-6744-4b5d-9152-b42c1662dee4', 1, 'Joachim Benedict', 1635511368, 0, '1b02f4650aea8f1ada1adbd3897c8913');
-INSERT INTO public.rainloop_ab_contacts VALUES (455, 'bdae932f-22db-4418-8a99-b768e513febb', 1, 'Andrea Freyberg', 1635511369, 0, '5e40634a329f4755819c9709ac5efa45');
-INSERT INTO public.rainloop_ab_contacts VALUES (456, '247c2f82-4a94-4e36-91ad-87d4f425faaf', 1, 'Helmut & Janet Hagen', 1635511369, 0, '43ab11a52ae371450513844b67dd6d67');
-INSERT INTO public.rainloop_ab_contacts VALUES (457, 'da078ba1-1798-4d92-b246-3e8add973856', 1, 'Jochen Guera', 1635511369, 0, '8b59013b300962b4deb750807b4caa56');
-INSERT INTO public.rainloop_ab_contacts VALUES (458, 'aeef4643-e1e8-4c84-8162-5932511ac19d', 1, 'Andrea Freyberg', 1635511369, 0, 'aeb80187f7e3fc3057fb8032372d0b08');
-INSERT INTO public.rainloop_ab_contacts VALUES (459, '397be40f-2b85-4d02-a767-b99bc85e2ac3', 1, 'Helmut & Janet Hagen', 1635511369, 0, '5c380e2f0f995f1a7837e42799d49a38');
-INSERT INTO public.rainloop_ab_contacts VALUES (460, '1861d273-febd-40d1-a42f-d5b173b75224', 1, 'Andrea Freyberg', 1635511370, 0, '6e709b410c840fb96b9b51ec5dcc1b5e');
-INSERT INTO public.rainloop_ab_contacts VALUES (461, '76206e79-4a9c-41b0-80eb-2a7bfe7846f3', 1, 'Henning Schmiedehausen', 1635511370, 0, '87921ecba58cbdba3ddfded7ca16325c');
-INSERT INTO public.rainloop_ab_contacts VALUES (462, 'f162a1a0-ed0b-415e-a753-fea27a916733', 1, 'Philipp Müller', 1635511370, 0, 'e06038d05b00e9209f5007ec5f15c1e3');
-INSERT INTO public.rainloop_ab_contacts VALUES (697, 'd7d5165c-9dbb-4509-8ceb-cb1ecc3fa922', 2, 'HANNUN', 1655458319, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (463, '6640cbc5-4732-49ef-b912-96cc7ad9a827', 1, 'Andrea Freyberg', 1635511370, 0, '6c2d2e1f4316420b3e2dad9890df3f6f');
-INSERT INTO public.rainloop_ab_contacts VALUES (464, '27b5430b-b84a-4c2a-b3ca-5af8a56ecdc8', 1, 'Hofmann', 1635511370, 0, 'c7df99f3b1241827e703aa5f47009477');
-INSERT INTO public.rainloop_ab_contacts VALUES (465, '72ac8c52-198e-43b8-9a8e-ace490f8e9f4', 1, 'Alex Gallitz', 1635511371, 0, '7c4c05a979c068f9f42823b6bfabef1c');
-INSERT INTO public.rainloop_ab_contacts VALUES (466, '61da9e6b-2f52-446e-928b-f49015a8d9b3', 1, 'Andrea Freyberg', 1635511371, 0, '43c3f181f654fc42ef358218a6069d7d');
-INSERT INTO public.rainloop_ab_contacts VALUES (467, 'e7079021-fee2-4be8-82d9-f295e8b69cc6', 1, 'Hürol Türen', 1635511371, 0, 'ef1d47b160d162c5c6438dcad45364f0');
-INSERT INTO public.rainloop_ab_contacts VALUES (468, 'd6f7cd26-0f38-4dff-9ac2-40074367495c', 1, 'Carl Herrmann', 1635511371, 0, 'b280351c5083325e107d9fe94b9ca2a4');
-INSERT INTO public.rainloop_ab_contacts VALUES (469, '646c118e-45c2-4bec-b10c-eb9a88797340', 1, 'Alex Gallitz', 1635511371, 0, 'd45fc24b339e6e4181f5934d0e8c928f');
-INSERT INTO public.rainloop_ab_contacts VALUES (470, '78abbd37-7629-4523-9dc5-34cd9fe228f6', 1, 'Andrea Freyberg', 1635511372, 0, 'eab8cb03113d5c513c204b9541aa4c24');
-INSERT INTO public.rainloop_ab_contacts VALUES (471, 'b02edfd0-74f4-4b94-99f0-562b3f528699', 1, 'Hürol Türen', 1635511372, 0, '3a2cad8110e79ca28a593f898fe559bf');
-INSERT INTO public.rainloop_ab_contacts VALUES (472, '3d314e9b-4fd9-43b7-8359-1e25837389b4', 1, 'Alex Gallitz', 1635511372, 0, '64dc2393b6265d2a9714363c3c351c54');
-INSERT INTO public.rainloop_ab_contacts VALUES (473, '80b12237-ac0a-42e3-8173-e58fffb48dc4', 1, 'Andrea Freyberg', 1635511372, 0, '07fe6dd6f105009a1655488f16c429db');
-INSERT INTO public.rainloop_ab_contacts VALUES (474, '71be9df7-7c8b-4a65-81a7-e02b5f44f00f', 1, 'Hürol Türen', 1635511372, 0, '104097ce198cce17a2f7256ee3dab669');
-INSERT INTO public.rainloop_ab_contacts VALUES (475, 'dd5cbee9-1582-42c7-a5f1-3a7be04c3366', 1, 'Alex Gallitz', 1635511373, 0, '0cd81de2997020808beb2b8ba66a70b6');
-INSERT INTO public.rainloop_ab_contacts VALUES (476, '828d2a49-faf5-4551-bc86-6fc97dd631ad', 1, 'Andrea Freyberg', 1635511373, 0, '51c607b37c33952f4e7040fa1d34c74b');
-INSERT INTO public.rainloop_ab_contacts VALUES (477, '8bed7c14-d07f-4e06-aec2-84f0bb26a1ae', 1, 'Hürol Türen', 1635511373, 0, '0017b12b1f3b1278c998b53a7073e6d3');
-INSERT INTO public.rainloop_ab_contacts VALUES (478, 'e4f17706-b9e9-487f-ace4-af2145340177', 1, 'Alex Gallitz', 1635511373, 0, '77c77b54473db8769fb6549b3ed50824');
-INSERT INTO public.rainloop_ab_contacts VALUES (479, '5a09c321-1fb1-4468-ae8c-adc081a79499', 1, 'Andrea Freyberg', 1635511374, 0, '95bb22b7053c9cd4a7569ede3ba5a2f3');
-INSERT INTO public.rainloop_ab_contacts VALUES (480, 'dd39b111-6c7c-4bf9-9f09-716f18e01541', 1, 'Hürol Türen', 1635511374, 0, 'a192b855d621bbcfef220c4d4f6f1a55');
-INSERT INTO public.rainloop_ab_contacts VALUES (481, '0d42b88a-a864-48c3-adfe-a4095d1d7ed9', 1, 'Andrea Weber', 1635511374, 0, '033b1a756efb94a82195ffaac6f54bdf');
-INSERT INTO public.rainloop_ab_contacts VALUES (482, '7697f075-4383-46ac-9ded-7dbae3f342e0', 1, 'Hürol Türen', 1635511374, 0, '12f0e7b874f0f5301989f16c496e670a');
-INSERT INTO public.rainloop_ab_contacts VALUES (483, '1d88fb35-0a79-423a-8432-af830d64f2e6', 1, 'Alex Gallitz', 1635511374, 0, '5ea177c19811fe1f61f2f5d85e5d5864');
-INSERT INTO public.rainloop_ab_contacts VALUES (484, '92cae255-a377-4373-9b58-72a3e002d876', 1, 'Andreas Menz', 1635511375, 0, 'ea689b46ae37d85623460036339909d0');
-INSERT INTO public.rainloop_ab_contacts VALUES (485, '59c77fb6-9a89-48d2-bf10-38587724ed4e', 1, 'Hürol Türen', 1635511375, 0, '84d0b5db53843731843ddec31668cfe0');
-INSERT INTO public.rainloop_ab_contacts VALUES (486, 'd4832727-7eb3-469c-8bca-e6da790ace98', 1, 'Alex Gallitz', 1635511375, 0, '8065ae08eebe1dcc2cf9c03533be50dd');
-INSERT INTO public.rainloop_ab_contacts VALUES (487, '177e8af4-f37e-412e-9be6-6953768adf90', 1, 'Andreas Menz', 1635511375, 0, '8cfe7abe7ddf101e3fe045c8965bd1f0');
-INSERT INTO public.rainloop_ab_contacts VALUES (488, '68f96693-a8c0-4c0a-be9e-81d6f999cc8d', 1, 'Hürol Türen', 1635511376, 0, '98151120b42a3373574c55c027df0f8d');
-INSERT INTO public.rainloop_ab_contacts VALUES (489, '6bc78f72-e61c-41de-9256-a8bc46c6b76d', 1, 'Andreas Schalm', 1635511376, 0, '05d4f5b768270c3ee13cdf9eead37078');
-INSERT INTO public.rainloop_ab_contacts VALUES (490, '22299528-1e5e-40c8-bb06-3d7080201fc7', 1, 'Hürol Türen', 1635511376, 0, '96d52e8e65b69e1200c8d28e7e2da245');
-INSERT INTO public.rainloop_ab_contacts VALUES (491, 'a7ca94a7-d19c-44f4-8e41-deb172ff5a6a', 1, 'Alex Gallitz', 1635511376, 0, 'b1ada7b12184cbbf956c90e06a600f4c');
-INSERT INTO public.rainloop_ab_contacts VALUES (492, '7b6b1b86-5d18-492f-81ee-a27cf8df5f6f', 1, 'Andreas Schamberger', 1635511376, 0, 'b7103a6593007fe5248a91f0d0118a88');
-INSERT INTO public.rainloop_ab_contacts VALUES (493, 'e63631ff-07d1-4973-9e21-b6031b5a9b5d', 1, 'Hürol Türen', 1635511377, 0, '34bc2d75bbf392e5cb34a9e7c4993c3c');
-INSERT INTO public.rainloop_ab_contacts VALUES (494, '12449b0a-c447-45a4-bbb4-8923946c1981', 1, 'Alex Gallitz', 1635511377, 0, 'd275f068b86c7cd9709fbdf62a28ee64');
-INSERT INTO public.rainloop_ab_contacts VALUES (495, '731139c1-dc9e-431a-82bc-64d9c08c58ff', 1, 'Angela Klausen', 1635511377, 0, '63a2c8289cbb5f9b9fc5c663720998bc');
-INSERT INTO public.rainloop_ab_contacts VALUES (496, '760bd537-8f76-44a7-90d1-1b378856757b', 1, 'ju_schulze@online.de', 1635511378, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (497, '61068018-b298-48d8-b054-99a43f9d8913', 1, 'Hürol Türen', 1635511378, 0, '4886302ba9b810647d72fb4557397bd9');
-INSERT INTO public.rainloop_ab_contacts VALUES (498, 'c2039003-60dd-4ce4-be18-eb0c21e23c95', 1, 'Alex Gallitz', 1635511378, 0, 'b40c516562e0190e21df12b99916e34d');
-INSERT INTO public.rainloop_ab_contacts VALUES (499, '1a7ceac5-e516-4171-a1c3-35181459066e', 1, 'Hürol Türen', 1635511378, 0, '34668c120997f23d6a08dc1bb3705a27');
-INSERT INTO public.rainloop_ab_contacts VALUES (500, 'ef02f92f-a8b3-4d6b-93ec-2a7e7031f17b', 1, 'Anita Meyer', 1635511378, 0, '1b241e6062112ef7e086a79d17a0ffdf');
-INSERT INTO public.rainloop_ab_contacts VALUES (501, '7e61691f-cf3a-408a-aea5-a39ce5f51aa2', 1, 'Alex Gallitz', 1635511378, 0, '4dc9947cf188018d05add24f69da8023');
-INSERT INTO public.rainloop_ab_contacts VALUES (502, '72f722a3-1c46-4e76-b7ff-29aba86785f7', 1, 'Anja Assenbaum', 1635511379, 0, '271fe646587ae52c85a4dad2492929e1');
-INSERT INTO public.rainloop_ab_contacts VALUES (503, '4cee6a7f-7c35-4f05-9e5f-908a4276f51d', 1, 'Hürol Türen', 1635511379, 0, 'fc7f448e7d936ecd34f1f8590936e7d2');
-INSERT INTO public.rainloop_ab_contacts VALUES (504, '48db21df-3065-446f-a149-56eae4fa768a', 1, 'Alex Gallitz', 1635511379, 0, 'a67ff88970d8178a758969ca52e14bda');
-INSERT INTO public.rainloop_ab_contacts VALUES (505, '9affcc0b-004f-463b-9d9e-1079dcba212a', 1, 'Hürol Türen', 1635511379, 0, '8b6c2b4bdab60f1b0b9d471692e6372e');
-INSERT INTO public.rainloop_ab_contacts VALUES (506, '8b538cd2-1fe8-4dcb-927d-07a1c3aef637', 1, 'Anke Friedl', 1635511379, 0, 'a5c44082c92afb8955c383bfe670a9d9');
-INSERT INTO public.rainloop_ab_contacts VALUES (507, 'b87969bb-b41f-4dfc-99a0-75e7978322e1', 1, 'Annett Pflanz', 1635511380, 0, '2caed1388705f4a414a7242b72ce0ca1');
-INSERT INTO public.rainloop_ab_contacts VALUES (508, '6689abfc-a39b-4d53-be32-b96a446080f2', 1, 'Hürol Türen', 1635511380, 0, '509e3a8c6203c6e9827bf472210143a4');
-INSERT INTO public.rainloop_ab_contacts VALUES (510, '0ce53c64-db67-4508-9f67-0a98f0bed066', 1, 'Annette Kappestein', 1635511380, 0, '93e09963c722ea43e3025a6b03f1d61c');
-INSERT INTO public.rainloop_ab_contacts VALUES (511, '120edc2d-8871-4c65-805e-a09f8d150841', 1, 'Hürol Türen', 1635511381, 0, '239a3b7b62390a98132eb4113d59f8eb');
-INSERT INTO public.rainloop_ab_contacts VALUES (513, '36703824-240d-4629-aac4-fdd2e137cc0f', 1, 'Astrid Hirschmann', 1635511381, 0, '39fc3809bf21555572a7d81da33476b6');
-INSERT INTO public.rainloop_ab_contacts VALUES (514, '16de8f26-92be-4c70-a27c-b2d44064e47d', 1, 'Hürol Türen', 1635511381, 0, 'cb95bfd00e8b772e4eab1d1929deda79');
-INSERT INTO public.rainloop_ab_contacts VALUES (516, 'd948ea0d-7b7e-4cfd-824d-3b928fdb49eb', 1, 'Astrid Schuh', 1635511382, 0, '6cfe0f61f08ed145905e2ce7556ebb58');
-INSERT INTO public.rainloop_ab_contacts VALUES (517, '82ae38ae-de15-4b52-9f4a-4d1347c49e99', 1, 'Hürol Türen', 1635511382, 0, 'cebe91f96d66cf5692d5fa8cbed5ca98');
-INSERT INTO public.rainloop_ab_contacts VALUES (519, '9d975557-0c1a-4ca5-a72c-b01fa7a7529e', 1, 'Benjamin Skoda', 1635511382, 0, 'ca472e243f5bd0169bc23a8adf730e76');
-INSERT INTO public.rainloop_ab_contacts VALUES (520, 'fa970e4c-d734-40b0-8ee1-52120dda7dbb', 1, 'Hürol Türen', 1635511382, 0, '4c63701658c5d69ab91179686bb74520');
-INSERT INTO public.rainloop_ab_contacts VALUES (522, 'e6d508af-c842-44a3-9f6b-6dde8bf9e95a', 1, 'Carolin Frank', 1635511383, 0, '01e56456cbde51a2a65c1653d3b15d26');
-INSERT INTO public.rainloop_ab_contacts VALUES (523, '1d3e2b61-0f8a-427d-a53d-5b0c7b4f78da', 1, 'Hürol Türen', 1635511383, 0, '70afefe3a5d875af071e40468ded517d');
-INSERT INTO public.rainloop_ab_contacts VALUES (524, '8634d159-922c-4eb0-a762-ed51b3b81e36', 1, 'Tom Czernicky', 1635511383, 0, 'd6a1cab70cf55d92f37f8eee1849f3e4');
-INSERT INTO public.rainloop_ab_contacts VALUES (526, '33d025cd-6097-42b6-8b23-049497c05468', 1, 'Carolin Hoose', 1635511384, 0, '508000dd50c888172f3f2702133fffe4');
-INSERT INTO public.rainloop_ab_contacts VALUES (527, 'c74ffccb-c895-415a-88fa-645f3fe364ca', 1, 'Ina Rosentreter', 1635511384, 0, '76c0ffd40308abe5c47f026c1335ad18');
-INSERT INTO public.rainloop_ab_contacts VALUES (529, 'e3d998ef-8727-47fd-930b-9b976d8395c8', 1, 'Christian Schmidt', 1635511384, 0, '18372ee92ed591d04abb089a90b3387f');
-INSERT INTO public.rainloop_ab_contacts VALUES (530, '96beac16-e777-4c33-ae7c-1948afb3714e', 1, 'Ina Rosentreter', 1635511385, 0, '433a58e40257f83246ba9230980f6d49');
-INSERT INTO public.rainloop_ab_contacts VALUES (532, '4654ca49-db69-4821-b993-073a864ee8dd', 1, 'Christine Dr. Conrad', 1635511385, 0, '57231acd6a1c5aa52c30f925ee3cdb38');
-INSERT INTO public.rainloop_ab_contacts VALUES (533, '22f437f1-1107-4f9e-8b97-23fc1a4ea28a', 1, 'Ina Rosentreter', 1635511385, 0, '5da7ae052b719fdc7abc8b659c741acd');
-INSERT INTO public.rainloop_ab_contacts VALUES (535, 'a7e34547-4797-48f9-9ff5-58019d8a2d59', 1, 'Ina Rosentreter', 1635511386, 0, 'bc1374fd141c02e0479e137b2277755a');
-INSERT INTO public.rainloop_ab_contacts VALUES (536, 'db047734-1852-456e-9849-22ba7ee08b2d', 1, 'Christine Göcke', 1635511386, 0, 'dfac4fcb582ff12012723d167339c787');
-INSERT INTO public.rainloop_ab_contacts VALUES (537, 'f561f013-042e-4f06-b4e4-0b54468e9da7', 1, 'Alexandra Dech', 1635511386, 0, '830171d0991dd1696c8bb335a81f39ea');
-INSERT INTO public.rainloop_ab_contacts VALUES (538, '65f86be7-c66b-47fc-b91d-82e6ed5c6b27', 1, 'Ina Rosentreter', 1635511386, 0, '45c498153e94af743846ec8a6b3d2d59');
-INSERT INTO public.rainloop_ab_contacts VALUES (539, '23a406b2-d66c-4d30-8401-c95c35044167', 1, 'Christine Meergans', 1635511387, 0, '97e09a8007b5f11b7c5dc7339198576d');
-INSERT INTO public.rainloop_ab_contacts VALUES (540, '42846261-0ccf-434c-847f-fb6e7de65120', 1, 'Alexandra Dech', 1635511387, 0, '49ea5ebd71cbd0c6706094490de60830');
-INSERT INTO public.rainloop_ab_contacts VALUES (541, 'dadfe823-6a71-47d6-b7a8-504093349467', 1, 'Ina Rosentreter', 1635511387, 0, 'e245117d765a1da417d9967f4682adc6');
-INSERT INTO public.rainloop_ab_contacts VALUES (542, '3b6c0fab-12a1-492e-8ab6-cf2e6ae81789', 1, 'Clarissa Kreßmann', 1635511387, 0, 'f5d616d5127925629045240ec2762841');
-INSERT INTO public.rainloop_ab_contacts VALUES (543, '55eac476-405a-4d36-bacd-beded3b1acc6', 1, 'Alexandra Dech', 1635511388, 0, '880f396844b7e1a583f1e72a78bb6e9d');
-INSERT INTO public.rainloop_ab_contacts VALUES (544, 'f662ac97-6730-4060-a1de-e90e64fbcae1', 1, 'Corinna Voos', 1635511388, 0, '5ccc0b37bbfac950fe0204a82e084b46');
-INSERT INTO public.rainloop_ab_contacts VALUES (545, '183e2227-fe35-4908-bd91-da125b5962b2', 1, 'Ina Rosentreter', 1635511388, 0, '211c0bfa02d7b5415569e7adb2ad7a3a');
-INSERT INTO public.rainloop_ab_contacts VALUES (546, '2c2db25a-7373-4e30-b742-7198b3a65f28', 1, 'Alexandra Dech', 1635511388, 0, '1914ee61d2c8a3b31a152227a78a76fc');
-INSERT INTO public.rainloop_ab_contacts VALUES (547, '1209f632-db71-4f4a-9d1c-c90f30407df8', 1, 'Ina Rosentreter', 1635511389, 0, '212d73e714ebac588cc53624f4bb011a');
-INSERT INTO public.rainloop_ab_contacts VALUES (548, 'f59877ea-b4af-4a41-bc8e-0a280ed935fd', 1, 'Cornelia Böttcher', 1635511389, 0, '005b94b037ecccbd16641dc86b27d180');
-INSERT INTO public.rainloop_ab_contacts VALUES (549, '6db5b5b6-dd9d-4b74-97a0-207dbf023f06', 1, 'Alexandra Dech', 1635511389, 0, 'dad1e0e8c05aea02de027b994d480cfb');
-INSERT INTO public.rainloop_ab_contacts VALUES (550, '709f4886-e04d-465d-b684-63c4d115d2ad', 1, 'Dagmar van der Horst', 1635511389, 0, '3b5bb67abb22d6b18bb3af5e7fb7704c');
-INSERT INTO public.rainloop_ab_contacts VALUES (551, 'a5214f99-feef-44df-893d-7f2b2d42add5', 1, 'Ina Rosentreter', 1635511390, 0, '70c73ab00ef8778273e2c8ae52e94d2c');
-INSERT INTO public.rainloop_ab_contacts VALUES (552, '5c072167-2c7c-4b25-94f5-4b38e5d08859', 1, 'Ina Rosentreter', 1635511390, 0, 'e40ef0710bb5e077a2992985e58dcc07');
-INSERT INTO public.rainloop_ab_contacts VALUES (553, '3360803a-e3b9-43ca-ba6d-5a64449a7816', 1, 'Alexandra Dech', 1635511390, 0, '42bb0c7b018613064a672e0b3fd45094');
-INSERT INTO public.rainloop_ab_contacts VALUES (554, 'c3706885-26eb-4679-9bd2-071101f4996e', 1, 'Dominik Jaroch', 1635511390, 0, '44ba81e4921cb9156eee02e0d4ce55b7');
-INSERT INTO public.rainloop_ab_contacts VALUES (555, '4f5b1ac9-6f11-4540-a3c3-054f078c4628', 1, 'Alexandra Dech', 1635511390, 0, 'b469250df69fd546987758d0618b0a12');
-INSERT INTO public.rainloop_ab_contacts VALUES (556, '11bc1d04-270a-474e-bf1d-f5a9e388bca1', 1, 'Dr. Alexandra Krenmayer', 1635511391, 0, '1952adc50e33b1eadcdd769961c7dda0');
-INSERT INTO public.rainloop_ab_contacts VALUES (557, '4a753df7-64a0-4b96-9de5-92c3764e8183', 1, 'Ina Rosentreter', 1635511391, 0, 'fd702bfde80a2c836fd3befb18e1e300');
-INSERT INTO public.rainloop_ab_contacts VALUES (558, '310035fa-6fff-4365-bad2-e81e363cb353', 1, 'Alexandra Dech', 1635511391, 0, '2763f96b18b479cde444424a3a2c681d');
-INSERT INTO public.rainloop_ab_contacts VALUES (559, '78427eab-9210-45a6-a023-480dff2348d5', 1, 'Dr. Jungkunz', 1635511391, 0, '81e18597075f2bf0c1fb231a27107823');
-INSERT INTO public.rainloop_ab_contacts VALUES (560, '9b55a0c6-1195-47e4-907b-9e8a2aa7438f', 1, 'Ina Rosentreter', 1635511391, 0, '1cc60454132f735391af861481a0a59d');
-INSERT INTO public.rainloop_ab_contacts VALUES (561, '0558cf08-d678-4d7a-8473-3e7cd12fbf76', 1, 'Alexandra Dech', 1635511392, 0, '7765a484ed927e1c2867e358e66008be');
-INSERT INTO public.rainloop_ab_contacts VALUES (562, '720bb611-9a15-44ef-9050-8490ed2f857e', 1, 'Dr. Rometsch', 1635511392, 0, 'f087d3b05c765488efbc7ef6e2212b5e');
-INSERT INTO public.rainloop_ab_contacts VALUES (563, '019702f2-eb2a-41b1-bf95-bcbe57a10cba', 1, 'Ina Rosentreter', 1635511392, 0, '1afebd2d8ca87d4e8e1fc57c3932fae4');
-INSERT INTO public.rainloop_ab_contacts VALUES (564, 'd5a0eba6-fa60-4f3c-a69e-8e01e10d4183', 1, 'Alexandra Dech', 1635511392, 0, '1b701643c3570c98ae86959e957d9b81');
-INSERT INTO public.rainloop_ab_contacts VALUES (565, '06f9f0c0-7b6e-4831-8464-2d4f5455d4af', 1, 'Esther Sanchez del Pozo', 1635511393, 0, 'f06b19054ce6d0946425ab7d300e9ba3');
-INSERT INTO public.rainloop_ab_contacts VALUES (566, '6b6ee042-79f1-48c4-8316-bff2cfc4f154', 1, 'Ines Daun', 1635511393, 0, '3ade77bed8513eeb752885c4c695cd42');
-INSERT INTO public.rainloop_ab_contacts VALUES (567, '402b08e6-f967-4a2a-ae92-82ffc68c3efa', 1, 'Alexandra Denise da Silva', 1635511393, 0, 'fc4bc0e648d2f78a94296c3e27ff94b2');
-INSERT INTO public.rainloop_ab_contacts VALUES (568, 'c760918a-9be0-4896-bb77-1fa5bd4c69f6', 1, 'Eva Rundholz', 1635511393, 0, '592dd78e8da5772051fddcd18953610a');
-INSERT INTO public.rainloop_ab_contacts VALUES (569, '13c5698c-dbe9-4c40-bab7-4444c2dbc94c', 1, 'Ines Daun', 1635511393, 0, 'cae9dd5e44b6b45f37a54c084cba3e25');
-INSERT INTO public.rainloop_ab_contacts VALUES (570, '245d3cd8-b0c7-4d99-986c-9b33880379fa', 1, 'Alexandra Denise da Silva', 1635511394, 0, '4ba0be722afd61be0c7d55695a00aec3');
-INSERT INTO public.rainloop_ab_contacts VALUES (571, '0cf66565-ca0a-43e9-8eee-5df1e2f97acc', 1, 'Fabian Schiller', 1635511394, 0, 'c77f1692036c39141d8ef1c2b2019151');
-INSERT INTO public.rainloop_ab_contacts VALUES (572, '09ef0ae2-f1bd-424e-b0be-0a43145f3c65', 1, 'Ines Daun', 1635511394, 0, '09b4d5a1236cb09e8a3c9bd0d0647719');
-INSERT INTO public.rainloop_ab_contacts VALUES (573, '477409a5-8c29-47fa-b16a-4511a85f1d00', 1, 'Alexandra Denise da Silva', 1635511394, 0, 'd36a237e99ca90217873feea0dd187d4');
-INSERT INTO public.rainloop_ab_contacts VALUES (574, 'fcbc7696-a9c2-4878-958e-3180e7fed97b', 1, 'Frank Kraeker', 1635511395, 0, '5a2a6a58a0ed83047e7dcdd6233f87ef');
-INSERT INTO public.rainloop_ab_contacts VALUES (575, '93e1617f-78a4-4274-839e-1061073883b9', 1, 'Ines Daun', 1635511395, 0, '5af4638ab9d171f7bece59d9d7bb7b31');
-INSERT INTO public.rainloop_ab_contacts VALUES (576, '387703d1-593e-4548-9f93-be5115d56e94', 1, 'Sarah Matthe', 1635511395, 0, 'f6c14356dbc9d975b62215891c4049d2');
-INSERT INTO public.rainloop_ab_contacts VALUES (577, '2da875ad-9dfc-4423-a411-cbc46f723d11', 1, 'Alexandra Denise da Silva', 1635511395, 0, 'd7f05875c782a4a7258df32438ba007c');
-INSERT INTO public.rainloop_ab_contacts VALUES (578, '8acdd4f2-afef-43e4-890b-2fda7dffb264', 1, 'Franziska Rabensteiner', 1635511395, 0, 'a18a815ff77c0a1d8ab811e37fe8657c');
-INSERT INTO public.rainloop_ab_contacts VALUES (579, '07d56b3d-aab8-4733-94ab-10e958a74d3a', 1, 'Ines Daun', 1635511396, 0, '355710e55e74545f413d03509fa26be5');
-INSERT INTO public.rainloop_ab_contacts VALUES (580, '76aebc13-15c0-4ffc-b9c0-ffc279a7c811', 1, 'Alexandra Denise da Silva', 1635511396, 0, '469298627588fe935eab0f2ec89ca000');
-INSERT INTO public.rainloop_ab_contacts VALUES (581, 'bc310c4a-65c2-40af-aa52-f9c7b7bdbff3', 1, 'Franziska Steinmetz', 1635511396, 0, 'b28348f74f38ba9d1bfda5a66d5f2c34');
-INSERT INTO public.rainloop_ab_contacts VALUES (582, 'a4a43fe7-8d65-4f87-8d28-4d9e872658e7', 1, 'Ines Daun', 1635511396, 0, '3e4c0d0ae9a04ba362dd952972976355');
-INSERT INTO public.rainloop_ab_contacts VALUES (583, '577e24b0-fe04-4ae4-ac96-d32f29050a7f', 1, 'Alexandra Denise da Silva', 1635511397, 0, '401bbdaf0930bbfc001332badbae1598');
-INSERT INTO public.rainloop_ab_contacts VALUES (584, 'beb8cc3d-42a1-4984-9798-48d68a3dd73c', 1, 'Frauke Gehrmann', 1635511397, 0, '0670fb7943835980e3de4514adc34f6d');
-INSERT INTO public.rainloop_ab_contacts VALUES (585, '8b34e75c-7c57-4dd5-bb2a-122f623ba051', 1, 'Ines Daun', 1635511397, 0, '7d09fdc717391e978643020e611190c6');
-INSERT INTO public.rainloop_ab_contacts VALUES (586, 'e0f02ebc-5d9e-4bec-91bb-c924b6c10033', 1, 'Alexandra Denise da Silva', 1635511397, 0, '44c7be99101b6c31a8a8b9e224cafd7a');
-INSERT INTO public.rainloop_ab_contacts VALUES (587, '0e77b610-a930-4cef-87f2-74f7b0ba9576', 1, 'Frauke Gehrmann', 1635511397, 0, 'd21510224e97b5ae7f2ff405b264ed87');
-INSERT INTO public.rainloop_ab_contacts VALUES (588, '61b63715-366d-4524-a140-26a9524bc50e', 1, 'Ines Daun', 1635511398, 0, '209217269d518174309b0f41461f3202');
-INSERT INTO public.rainloop_ab_contacts VALUES (589, 'f92094f2-b963-40ef-93b1-b0d86d57d043', 1, 'Alexandra Denise da Silva', 1635511398, 0, 'ba31d168029acaeedb71f4074c5d3c5b');
-INSERT INTO public.rainloop_ab_contacts VALUES (590, 'a6169b55-7aed-4dde-ad1c-4b9ddd9a41f9', 1, 'Frauke Gehrmann', 1635511398, 0, '10a05fd687883e3c140e8697190b0695');
-INSERT INTO public.rainloop_ab_contacts VALUES (591, '2d95ba50-3964-4a12-9b9d-80961f77895b', 1, 'Ines Daun', 1635511398, 0, '350de9ab21bb3f29414b8fc047eb12e7');
-INSERT INTO public.rainloop_ab_contacts VALUES (592, '4103dcb4-a380-4893-8c8a-f44c79bd777c', 1, 'Michael Ultsch', 1635511399, 0, 'bb44a2630ea6b15fdbb1057ea9577766');
-INSERT INTO public.rainloop_ab_contacts VALUES (593, '53d0c574-f403-469a-ab9c-5915ed5d5f6b', 1, 'Alexandra Denise da Silva', 1635511399, 0, '85fcbf9cde07e0f09870e6a210617619');
-INSERT INTO public.rainloop_ab_contacts VALUES (594, '3388d59b-b09c-490d-adbe-191abadb2e58', 1, 'Frauke Gehrmann', 1635511399, 0, 'f276d3f4fb5e266acfbb33fba8b20ca9');
-INSERT INTO public.rainloop_ab_contacts VALUES (595, 'b5910653-7fe4-4ad8-8188-62525341143a', 1, 'Ines Daun', 1635511399, 0, '15d34f3e3cf3471cb2f43e1c2590ec3a');
-INSERT INTO public.rainloop_ab_contacts VALUES (596, 'ae58f12d-3d6c-4486-aad7-e8fda9cafd4d', 1, 'Alexandra Denise da Silva', 1635511399, 0, 'be077311ddc4db7221263c41e991716b');
-INSERT INTO public.rainloop_ab_contacts VALUES (597, '46683fc8-3a36-4cae-bf1a-20b67e0f4ca8', 1, 'Frauke Gehrmann', 1635511400, 0, '5f1aef240d2ce7cfd8914e1d2839dbd4');
-INSERT INTO public.rainloop_ab_contacts VALUES (598, 'ece73488-a18c-4af3-bd14-e112faea2fe7', 1, 'Ines Daun', 1635511400, 0, '7cc2bdea6b52b959a85d05d4a4c6c5dd');
-INSERT INTO public.rainloop_ab_contacts VALUES (599, '17370cc9-b19e-42cc-afb6-117d65c872bb', 1, 'Alexandra Denise da Silva', 1635511400, 0, '8166a79c674016857193ee01bbae2790');
-INSERT INTO public.rainloop_ab_contacts VALUES (600, '2050ab5e-5f1b-4e5b-a7fe-0b46f8304393', 1, 'Frauke Gehrmann', 1635511400, 0, '6f88b7b57594436047627df6664e5f56');
-INSERT INTO public.rainloop_ab_contacts VALUES (601, 'cd67efea-7e75-47bf-ade2-f682f18b973b', 1, 'Ines Daun', 1635511401, 0, '33414a9807ab91c716e5c98161349147');
-INSERT INTO public.rainloop_ab_contacts VALUES (602, 'f9e0bef7-8378-4b86-91c8-ff8654d22ec4', 1, 'Alexandra Denise da Silva', 1635511401, 0, 'b58df198cbd5ef22c123c87828e95b3a');
-INSERT INTO public.rainloop_ab_contacts VALUES (603, '747c0f24-6c94-473e-bcab-e4664aff4c7e', 1, 'Frauke Gehrmann', 1635511401, 0, '5513b2a46c5533f1afca4fe2fb40e4de');
-INSERT INTO public.rainloop_ab_contacts VALUES (604, 'cdc50ed8-79ad-4671-97c9-24e70cc24bd1', 1, 'Ines Daun', 1635511402, 0, 'e8adc7502190252a9ba3243e61b2cd2b');
-INSERT INTO public.rainloop_ab_contacts VALUES (605, 'b1927a12-d108-46a2-9db0-112769b24bee', 1, 'Alexandra Krenmayer', 1635511402, 0, '295c5efb3caeeb83c28979167ee88b24');
-INSERT INTO public.rainloop_ab_contacts VALUES (606, '4028df15-e859-4096-80a9-8137bb465bf4', 1, 'Frauke Gehrmann', 1635511402, 0, 'a86ee4b56f558029fdb4cb7e461c4ce1');
-INSERT INTO public.rainloop_ab_contacts VALUES (607, 'd1562e7b-f3f6-46e7-91e4-1934266d9256', 1, 'Ingrid Samoray', 1635511402, 0, 'eb534caff2aabf45e131659c1cf03b10');
-INSERT INTO public.rainloop_ab_contacts VALUES (608, 'cdd24394-92c3-4a1d-b30b-a33208275093', 1, 'Alexandra Krenmayer', 1635511402, 0, 'ef2f6d15f70aee5e366f80fa6001582e');
-INSERT INTO public.rainloop_ab_contacts VALUES (609, '8aed045c-9122-43e3-9598-a001be4f1d2c', 1, 'Frauke Gehrmann', 1635511403, 0, '2cf6d844ef7e1fcc339932262f763a7c');
-INSERT INTO public.rainloop_ab_contacts VALUES (610, '02138387-7ef1-47a5-b1bb-1c04ef2732dc', 1, 'Ingrid Samoray', 1635511403, 0, 'fa2293cec5c852b866019bd6ec97a8a3');
-INSERT INTO public.rainloop_ab_contacts VALUES (611, '8d3abb7d-140d-4d70-a7e4-4dfe4e4699a6', 1, 'Alexandra Krenmayer', 1635511403, 0, '196eb6c98956fc349a9ffd7bfd3cf50d');
-INSERT INTO public.rainloop_ab_contacts VALUES (612, '7ce047d8-be7d-470c-85dc-2cecf7b2530a', 1, 'Frauke Gehrmann', 1635511404, 0, 'e27ce199cf2762279e8276303e2d3deb');
-INSERT INTO public.rainloop_ab_contacts VALUES (613, 'b6fdb2d6-c09d-4428-97cd-caf7b9380bdb', 1, 'Ingrid Samoray', 1635511404, 0, 'f8dc172100e001f888a97ff96dcc106d');
-INSERT INTO public.rainloop_ab_contacts VALUES (614, 'd67d7203-e943-4130-9dd6-f5e38200191a', 1, 'Alexandra Krenmayer', 1635511404, 0, 'be5133008b91204a13e280d156268ad5');
-INSERT INTO public.rainloop_ab_contacts VALUES (615, '72a3da18-8606-453c-8b45-d406b1f0f6b2', 1, 'Frauke Gehrmann', 1635511404, 0, 'f219b8b5d882ee7800e1c894a2a13a77');
-INSERT INTO public.rainloop_ab_contacts VALUES (616, 'c16d2625-d8d9-48d5-ad62-21e25afaee64', 1, 'Ingrid Samoray', 1635511404, 0, '4638c6a81ac9fb093aa2a688b72f7f71');
-INSERT INTO public.rainloop_ab_contacts VALUES (617, 'fcec4c13-4259-4736-a9e6-02fa4994069d', 1, 'Alexandra Krenmayer', 1635511405, 0, '3ec95d1c4e0ec93c33d0ddf3b4ebc1e8');
-INSERT INTO public.rainloop_ab_contacts VALUES (618, '2b7e8bc6-a290-48d8-82d3-a1d8b7f27242', 1, 'Frauke Gehrmann', 1635511405, 0, 'e8f0f29a44b8c6d8778e4a731412dc63');
-INSERT INTO public.rainloop_ab_contacts VALUES (619, 'd4f9341c-6561-4d8a-a336-26a65503ccf9', 1, 'Ingrid Samoray', 1635511405, 0, '843bbd62986153768b88798f3fe52035');
-INSERT INTO public.rainloop_ab_contacts VALUES (620, '8536472a-c7cb-4c68-ba40-386c9f8bad66', 1, 'Alexandra Krenmayer', 1635511405, 0, '35613c8f3f3e73552b96fb52e128bb49');
-INSERT INTO public.rainloop_ab_contacts VALUES (621, '65cfdd48-10d0-40eb-9ecc-7d2c2c07d668', 1, 'Frauke Gehrmann', 1635511406, 0, 'd5a6f9342d479e4c124be213e5d1a947');
-INSERT INTO public.rainloop_ab_contacts VALUES (622, '282d6cb8-24eb-49b1-9827-ed884f4baf26', 1, 'Ingrid Samoray', 1635511406, 0, 'f8dae0f4ab98b4d35169015ba932a969');
-INSERT INTO public.rainloop_ab_contacts VALUES (623, 'b0c533c6-e32d-4e25-925f-67d9f3896031', 1, 'Alexandra Krenmayer', 1635511406, 0, '1074395380f082b16d75a501a36b24a4');
-INSERT INTO public.rainloop_ab_contacts VALUES (624, '0c607440-8c08-4c5c-86c4-45c6c0318c22', 1, 'Frauke Gehrmann', 1635511407, 0, 'c5e837b3df90519a7d773ba14786afff');
-INSERT INTO public.rainloop_ab_contacts VALUES (625, 'f885e5e8-87fc-41ac-a4d8-c924be0df8f0', 1, 'Ingrid Samoray', 1635511407, 0, '50efe7c6d14290ad9735730cc42de6e1');
-INSERT INTO public.rainloop_ab_contacts VALUES (626, '5112753e-9046-4de7-ad21-ff5aa5ab35f0', 1, 'Alexandra Krenmayer', 1635511407, 0, 'de0d7f327e20525e9b2f2a051659a0b1');
-INSERT INTO public.rainloop_ab_contacts VALUES (627, 'e0ce60ce-cddd-447e-adcf-a2c95b57012e', 1, 'Frauke Gehrmann', 1635511407, 0, 'f8fff8d6b1f8edd2da407fa9e389502d');
-INSERT INTO public.rainloop_ab_contacts VALUES (628, 'f3c4e872-23c7-4404-9be3-adf98bcd50ac', 1, 'Ingrid Samoray', 1635511407, 0, '29c53bd688d6539ee6f9e7f2ab61839d');
-INSERT INTO public.rainloop_ab_contacts VALUES (629, 'e5b7a582-c74d-4f84-9cc3-cf5b5c26d467', 1, 'Alexandra Krenmayer', 1635511408, 0, '3f68def36a572d2f0540b51f08d050ec');
-INSERT INTO public.rainloop_ab_contacts VALUES (630, '1620647b-f948-4c32-be0b-1d24c1e2e7a8', 1, 'Frauke Gehrmann', 1635511408, 0, 'd819114276fd61b493fcc8965a3a8074');
-INSERT INTO public.rainloop_ab_contacts VALUES (631, '1affb518-e38d-405e-8971-49c4f8dbf5ed', 1, 'Ingrid Samoray', 1635511408, 0, '27d6587804bc7c731b9b3e5afb4d1e5f');
-INSERT INTO public.rainloop_ab_contacts VALUES (632, '684d1cb7-2a99-494f-a3c3-e8fb0bab9e0f', 1, 'Alexandra Krenmayer', 1635511409, 0, 'e77af643649e00fb4328bfebf6f160f2');
-INSERT INTO public.rainloop_ab_contacts VALUES (633, '4dd15a56-f168-44b0-827c-e759c917a977', 1, 'Frauke Gehrmann', 1635511409, 0, 'bf6ffd6d1b11c42154cca38cf1339ae5');
-INSERT INTO public.rainloop_ab_contacts VALUES (634, 'a219612f-a92a-4e11-b5a0-38e86b39bbf0', 1, 'Ingrid Samoray', 1635511409, 0, '0d249746419f57f8f7e29d06d2a3e0a2');
-INSERT INTO public.rainloop_ab_contacts VALUES (635, 'b8a9d02b-20e5-4489-a99f-945a4ebf232d', 1, 'Alexandra Krenmayer', 1635511409, 0, 'c682e6de635f534daa65d2f37132b536');
-INSERT INTO public.rainloop_ab_contacts VALUES (636, '44125a62-e460-4712-90c0-098c8ab899cf', 1, 'Frauke Gehrmann', 1635511409, 0, '8b713cf470eefcf44b2c1cb684823c81');
-INSERT INTO public.rainloop_ab_contacts VALUES (637, '301878dd-cf54-4afd-b712-5d7512fd12dd', 1, 'Ingrid Samoray', 1635511410, 0, '8e3c75986c9b1fca05d8edda795d9004');
-INSERT INTO public.rainloop_ab_contacts VALUES (638, 'b511740b-fdf0-481b-82fb-e4002a191763', 1, 'Gudrun Veitinger', 1635511410, 0, '2d93e83eccc7aa16f744341a8db82041');
-INSERT INTO public.rainloop_ab_contacts VALUES (639, '42681c89-8557-46c0-9d1e-e3a4d2c5a349', 1, 'Alfred Honermann', 1635511410, 0, '5a0af133c8bd5608464b8db6f6d6e4c2');
-INSERT INTO public.rainloop_ab_contacts VALUES (640, '943e2f8c-576b-43c7-ab5e-9469628691e2', 1, 'Frauke Gehrmann', 1635511410, 0, '956855851579851397f6daa64768ab3d');
-INSERT INTO public.rainloop_ab_contacts VALUES (641, 'ee157970-2dd7-4f59-bd28-d9645e70b469', 1, 'Ingrid Samoray', 1635511410, 0, 'e0f0884264412d0e39fdeefb63f3fa38');
-INSERT INTO public.rainloop_ab_contacts VALUES (642, 'e3529b33-c0dc-476c-8e0f-82814824929e', 1, 'Roland Steinmetz', 1635511411, 0, '5f0a480e69fe11409064a7e79ccaa55e');
-INSERT INTO public.rainloop_ab_contacts VALUES (643, '03e1fb6b-6526-4a59-bf7c-688b7686d44f', 1, 'Alfred Honermann', 1635511411, 0, '55e85ace66bc673211d1d96cf644f288');
-INSERT INTO public.rainloop_ab_contacts VALUES (644, '9a7e0235-532a-4b37-baad-0a3c634552db', 1, 'Frauke Gehrmann', 1635511411, 0, 'da991391d3732e13697365e97956ca45');
-INSERT INTO public.rainloop_ab_contacts VALUES (645, '8633b437-ab3e-40ff-8966-f5ded3665013', 1, 'Ingrid Samoray', 1635511411, 0, '7dc55aac958bd8c8866765e843da48e5');
-INSERT INTO public.rainloop_ab_contacts VALUES (646, '5ba6369e-9e53-4895-86f4-d57f53b1156c', 1, 'Alica Jacobi', 1635511412, 0, '5cfd19092a6b1f006015f8b77b3c0060');
-INSERT INTO public.rainloop_ab_contacts VALUES (647, '7900ec9f-b08f-45c7-8ec8-de8538ab69ee', 1, 'frauke.gehrmann@proge.de', 1635511412, 0, '7f744f304cdfbb1871b30fa58232d459');
-INSERT INTO public.rainloop_ab_contacts VALUES (648, 'd885b006-28dc-4575-b798-d876cbdd7856', 1, 'Ingrid Samoray', 1635511412, 0, '216258e46922da5d393f83b6675a2d12');
-INSERT INTO public.rainloop_ab_contacts VALUES (649, 'be11f4c9-765e-432b-86c6-d51fcbb64747', 1, 'Alica Jacobi', 1635511412, 0, '9eb95a6273f1574bb6d1ae5a4e290099');
-INSERT INTO public.rainloop_ab_contacts VALUES (650, 'ea309059-6df4-46b1-ad8c-356b25973998', 1, 'Heike Bollmann', 1635511412, 0, 'eada919c86bd728d88db4c3d6a80867f');
-INSERT INTO public.rainloop_ab_contacts VALUES (651, 'ebe0ffa1-7db4-4d7f-aff7-6975bd51083f', 1, 'Irmtraud Rosentreter', 1635511413, 0, '2dc24e817960fbfd8176771ba41c922b');
-INSERT INTO public.rainloop_ab_contacts VALUES (652, '6085cf68-0b35-4c65-91d7-cb7d561d0aab', 1, 'Alica Jacobi', 1635511413, 0, 'a88e37a3057bb41280e61572fd87e990');
-INSERT INTO public.rainloop_ab_contacts VALUES (653, 'ba600c87-2d37-4c79-9504-5792571a071c', 1, 'Heike Bollmann', 1635511413, 0, '1128c2bbfe1cf550b3574ef348418aa3');
-INSERT INTO public.rainloop_ab_contacts VALUES (654, '0102e7a6-e8fa-4494-98ba-d9d62119cd16', 1, 'Irmtraud Rosentreter', 1635511414, 0, '691240114bbf8f5bf1071e808c4d21a8');
-INSERT INTO public.rainloop_ab_contacts VALUES (655, 'a46c27dd-dbdb-4067-9562-afc813725794', 2, 'support@zentempel.zendesk.com', 1635519963, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (656, '25bec0da-c57b-4eb3-bd77-d989d2b0d6e9', 2, 'retoure@ladybikewear.de', 1635762446, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (657, '2c0656ce-d1ef-478e-ab8c-f35bb3e3353f', 2, 'Zen Tempel', 1636111689, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (658, '4013cdd0-52ec-4bfd-bed1-a575c523c141', 2, 'info@platinumeurope.biz', 1636368821, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (659, '8e574b05-19eb-41d8-8a01-ac19a5750fb7', 2, 'bimsertec@gmail.com', 1636550621, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (660, '4cc2a914-3f79-43b6-b7d3-774e94cfd1f1', 2, 'freicha@web.de', 1636707022, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (661, '1ddfb86c-6178-4fa8-ac2e-fe76b7441904', 2, 'alma-jaiser@t-online.de', 1636899957, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (662, '26e01ce9-4625-4803-a236-87994d775891', 2, 'praxis.dr.wernicke@gmail.com', 1637050053, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (663, 'a50280dd-562e-4247-932d-b8b61189bde8', 2, 'Judith Rauxloh', 1638285273, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (664, '94476479-5c83-4974-9c8b-11a8f3425e22', 2, 'Leonie Güldenpfennig', 1639170306, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (665, '8e3200d5-a7f9-4c49-84c1-ba7428455add', 2, 'Leonie Güldenpfennig', 1639389317, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (666, 'b5e18572-dd3a-4a06-a708-a20918a1a020', 2, 'Beatsox', 1640177268, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (667, '6ba5be33-806b-4045-806e-c11c2549bd77', 2, 'Leonie Güldenpfennig', 1640713512, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (668, 'ef0fae4d-7fdb-4322-8977-f5c88f4df200', 2, 'Triabolos Hamburg e.V.', 1642491562, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (669, '336f48c9-741b-4611-ac8d-906905bbd684', 2, 'Ole B. Rosentreter', 1642599546, 1, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (670, 'a5c6b88e-0ec3-400e-aeaf-3c49cb02e6b1', 2, 'digitalabo@zeit.de', 1642683717, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (671, '294e8449-b940-4762-a0d8-73d7ca3efea4', 2, 'stephan.schepe@triathlon.de', 1643129540, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (672, 'df80d38d-f101-4537-ad68-b3787fdb610a', 2, 'fahrrad.de | Service', 1643629628, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (673, 'ea8e9840-aa10-4723-80bc-e5cfc3b08ac2', 2, 'Mika Keiling', 1644846658, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (674, 'a7e24019-18a3-4cfa-be52-db7bf99d766b', 2, 'help@photobox', 1645789556, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (675, 'fa8cf719-6ed4-47b5-ab58-7917db6bc974', 2, 'INCYLENCE', 1646050830, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (262, '8ebf701f-8ccc-4d21-aa9b-e7eb14f1cc19', 4, 'issamebanayaden@gmail.com', 1646148873, 1, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (304, '133a9202-3217-4066-8f18-e1204fc0ed55', 4, 'rinsdorf.klump@gmx.de', 1646148873, 1, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (305, '33173502-be5e-4d12-a101-a3d9999bb736', 4, 'axel_siebel@yahoo.de', 1646148873, 1, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (676, 'f289d10b-b173-4029-89d5-a3fc0d0bbb69', 2, 'Leo', 1646157565, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (677, '22813838-7a4a-45dc-8b81-2acec3d354e0', 2, 'Yvonne Ewen', 1646159483, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (678, '540c3a7f-d5cb-4155-9f52-ce8a23b3dc63', 2, 'Yvonne Ewen', 1646315188, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (679, 'af21a28c-2bcd-4712-9f3f-f2f8ca2a2f63', 2, 'Yvonne Ewen', 1646571831, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (680, 'e68e9a15-b6b5-4566-8329-137a82c08e09', 2, 'Leonie Güldenpfennig', 1646765106, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (681, '078bfa14-3ecd-4df2-b1b2-f3c55f4156de', 2, 'Leonie Güldenpfennig', 1646818707, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (682, 'bc8c3607-c228-4631-b3cc-c4a5d2fbfb59', 2, 'zeit@dpv.de', 1646831275, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (683, 'c4e8bc95-df73-465e-8b49-122e2c47a551', 2, 'pinkmilk', 1649146687, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (684, '9556769c-30e3-4953-90ed-eddba83e303e', 2, 'service@pinkmilk.d', 1649147093, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (685, '747f8bae-82cf-49f4-b23d-0a4fcbcabba6', 2, 'info@wilkens-wohnstudio.de', 1649148635, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (686, '9f604227-eafd-4e7a-a2f5-28ad22b2650e', 2, 'car-Möbel * Torben Stolten', 1649258191, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (687, 'd4d1e3f1-6bfc-49f2-9596-96ebf11cf623', 2, 'support@bodyfx.com', 1650570327, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (688, '06a0b04c-ded1-4ab4-ae35-a34527d01c70', 2, 'monika.letzel@vlh.de', 1651076389, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (689, 'e5ef89cb-8333-49da-889c-ccc8e688763a', 2, 'kuendigung@1und1.de', 1651142633, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (690, '838f5b51-bb09-4ad4-b913-68939be2911d', 2, 'kundenservice@peterhahn.de', 1651161790, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (691, 'e3005af9-bbce-47a3-84d7-114bdb268e44', 2, 'stechling@on-potsdam.de', 1652175309, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (692, '791ca754-6e89-4faf-8020-6e7150058a84', 2, 'Volkan Sabaz CHECK24', 1654771313, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (693, '409cf174-9f5e-4255-83d9-6417ff718e21', 2, 'zentraleauszahlung@creditplus.de', 1654780595, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (694, '940abde8-154c-44f1-8646-610f0a740d9a', 2, 'Volkan Sabaz CHECK24', 1655285758, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (695, '88a75b0c-6dbc-4660-b5fc-a13dc23e6fe7', 2, 'martin.bergmann@smava.de', 1655390348, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (698, 'e23c5a17-4a3b-44f8-bc76-0e0e1d765351', 2, 'servicecenter@hamburgwasser.de', 1656330145, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (699, '0471da29-32c6-48f5-943c-55270931becd', 2, 'Julia Müller', 1657190946, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (700, 'b1f01a95-a647-4bea-a5a5-031681e402e7', 2, 'Justin Rose', 1658131131, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (701, '1347b8b0-d1e9-4c8e-9b74-7ea397f2e9f0', 2, 'Erik Bittmann', 1658406766, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (702, '231383d4-8629-497e-af5a-8660278d4930', 2, 'a.halloch@knappworst.de', 1661508076, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (703, '08af0083-b682-44c9-8a8c-090b13853318', 2, 'volkspark@osteopathie-praxis-potsdam.de', 1663575082, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (704, 'b0593c06-c8a9-4cf2-958a-1015873b1688', 2, 'Osteopathie Zentrum Potsdam', 1663578108, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (705, 'a109e138-5de0-4d64-8977-88d2e641230e', 2, 'info@ravensberger-hof.com', 1664103921, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (706, '9f74125a-caf2-4fdb-a739-492d2515d3c2', 2, 'Jörg Birkel', 1664118930, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (707, 'afc24f47-072d-460a-b6cd-32c06b4cae13', 2, 'Holiday Hotline', 1664179484, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (708, '3afc8ad6-65cf-4ee0-ae0e-b5b94f4be7dd', 2, 'DERTOUR', 1664725640, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (709, '1487f8b4-a45a-45c9-91ed-e2bc015a22d9', 2, 'kontakt@gesundheitspraxen-osteopathie.de', 1665387482, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (710, 'eadd4ba3-2cf8-4f52-8e50-fd35c786ff24', 2, 'Andreas Husmann', 1665396777, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (711, 'f35dee9c-72b5-4da5-82df-c90319e0c511', 2, 'Christoph Becker', 1666019605, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (712, '283607b3-41f4-418e-83e9-648cfedc38ed', 2, 'Christoph Becker', 1666019605, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (713, '2fc95a56-5069-44bc-8e3d-ac6184e14bf7', 2, 'Manja Seemann', 1666091135, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (714, '0e8af1c4-f202-40c3-87ec-2e37167395c0', 2, 'Grit Kowsky', 1666167837, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (715, '88c8a51e-cd3f-43c5-b062-b3fb2ac3dc0b', 2, 'Leonie Güldenpfennig', 1666719572, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (716, 'e8254603-d70a-4cb2-ac65-f7a721b830f4', 2, 'Petra Blossey', 1666883876, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (717, 'af1eb2c4-6b8f-4dbc-9a84-784f8a614c3d', 1, 'Tobias Barzen', 1667082113, 0, '99d2b08a01bf1f718b75846cc71be2e8');
-INSERT INTO public.rainloop_ab_contacts VALUES (718, '8a758cfd-63f5-4244-8ba1-97c4312a9ad1', 1, 'HHT', 1667082113, 0, '4ba2f797682efdca1cecf588f5e688e0');
-INSERT INTO public.rainloop_ab_contacts VALUES (719, 'd4b48da0-58d5-423c-bc1a-1fb38e332521', 1, 'Super SoSoX', 1667082113, 0, '6150be10d1a69d0fee1ad6e048382ce7');
-INSERT INTO public.rainloop_ab_contacts VALUES (720, 'ab98dd57-13de-4989-80b0-2f988981c301', 1, 'kerstin storch', 1667082114, 0, '89c48cd3dd2c809f6cea352412dba96b');
-INSERT INTO public.rainloop_ab_contacts VALUES (721, 'f5e72ab4-c469-4c38-85a4-2d2c97bc83e8', 1, 'Jan Eggert', 1667082114, 0, 'bdfb20347edba9b51fa65fad9aff5d21');
-INSERT INTO public.rainloop_ab_contacts VALUES (722, 'f1561e3a-c55b-4252-a389-4acb54a67ede', 1, 'Sfizianmi', 1667082114, 0, '9620296a202fa51a0946018d1ca6a4e4');
-INSERT INTO public.rainloop_ab_contacts VALUES (723, '78b16d49-38cf-4161-a305-c3cf8312c658', 1, 'Peter Meyerhofer', 1667082115, 0, 'd91429783c05ab458e0670c9dd65321d');
-INSERT INTO public.rainloop_ab_contacts VALUES (724, 'c60ab457-dfac-473c-9021-3ed5ada1bdf4', 1, 'Andreas Kimmerle', 1667082115, 0, '5381f88484ad2175cfc678be0c685d55');
-INSERT INTO public.rainloop_ab_contacts VALUES (725, '2bf79fe6-cfdf-4741-b8c5-26a1d4345c38', 1, 'Daniel', 1667082115, 0, 'b0d206fdab44d4c53a71745521087416');
-INSERT INTO public.rainloop_ab_contacts VALUES (726, '02169e89-ea18-45a0-ac3e-ea85505b009e', 1, 'Dustin', 1667082116, 0, '0f9ed5c656e2b2ef528712fb2ced2c3b');
-INSERT INTO public.rainloop_ab_contacts VALUES (727, '3d041060-f935-4fc7-8a52-4b62953c137a', 1, 'Lucas Jacobi', 1667082116, 0, '28659df88ef9a4367e8d50e88c0a6e57');
-INSERT INTO public.rainloop_ab_contacts VALUES (728, 'e15335e9-42dc-4a41-a5c8-7223fb07340c', 1, 'Christoph Schwerdt', 1667082116, 0, 'ac44ba70d3aa838c94180a45de32d232');
-INSERT INTO public.rainloop_ab_contacts VALUES (729, '1150f261-44a5-4172-a483-19d2d0aaebeb', 1, 'David Fuchs', 1667082116, 0, '5e40206371f6b6d1a672d044fb097db7');
-INSERT INTO public.rainloop_ab_contacts VALUES (730, 'cf07d6ce-963a-42f6-a409-6d1ece6cf5b3', 1, 'Jörg Müller-Ali', 1667082116, 0, '5bf220aca4708ede063d676138b582b8');
-INSERT INTO public.rainloop_ab_contacts VALUES (731, '2c872bc3-ab57-452f-8787-2c04884d9244', 1, 'Bernd Burkhardt', 1667082117, 0, '4a2a760b7b1e5015a2bfb2113d8cc481');
-INSERT INTO public.rainloop_ab_contacts VALUES (732, 'd9782c63-d171-4dd0-bfbc-3b63762d2ed3', 1, 'Ely', 1667082117, 0, '9f0cd3834588e7e4e3c93e00ac283493');
-INSERT INTO public.rainloop_ab_contacts VALUES (733, '9a3130ae-64c9-4420-8a5b-59c96f9ddd64', 1, 'Flo Gilly', 1667082117, 0, '75066ce954d45eb425b875ff43a1e74d');
-INSERT INTO public.rainloop_ab_contacts VALUES (734, 'da022dae-b457-4357-a2b2-c96f971f1e3b', 1, 'Alexandra Haderlein', 1667082117, 0, '52499bed3f35100fd9f14b480548a914');
-INSERT INTO public.rainloop_ab_contacts VALUES (735, 'e78c6c86-eaf9-4733-bc51-31ad12d537dc', 1, 'Katja Neousypin', 1667082118, 0, '726b224875ececaba8ded88ed6d11748');
-INSERT INTO public.rainloop_ab_contacts VALUES (413, '76419d33-a518-4973-b7cb-a643004e83c4', 1, '', 1667159410, 1, '8ac221998929a7242104f1499c305a9b');
-INSERT INTO public.rainloop_ab_contacts VALUES (417, '2702dd75-0376-43b7-af5d-30ab826e6818', 1, '', 1667159410, 1, 'af09fdeba44e09867087919e001574f7');
-INSERT INTO public.rainloop_ab_contacts VALUES (421, 'ea4319b0-c749-45fc-9712-0d64f55d3f76', 1, '', 1667159410, 1, '89f5036d4d43cd4dbf4c210416f34394');
-INSERT INTO public.rainloop_ab_contacts VALUES (509, '2f5fd8e5-0514-4406-9894-72a342efe482', 1, 'Alexandra', 1667159410, 1, 'c980ef29d7486403c78be2d1eb199435');
-INSERT INTO public.rainloop_ab_contacts VALUES (512, '5e4a8121-9fe6-4865-addf-53e3065f5247', 1, 'Alexandra', 1667159410, 1, 'a8240e8acc275349d2a37b432ec9825d');
-INSERT INTO public.rainloop_ab_contacts VALUES (515, 'e4fefdcd-9192-475d-a9eb-b78e0a573953', 1, 'Alexandra', 1667159410, 1, '97feecf6975afcf8c0acee0b8e9a1739');
-INSERT INTO public.rainloop_ab_contacts VALUES (518, '80e7915c-5de4-4f3c-9f66-f9699d91cc89', 1, 'Alexandra', 1667159410, 1, '72be8e7def7e5a0a76752e23cd280132');
-INSERT INTO public.rainloop_ab_contacts VALUES (521, '30fa1ff5-a117-408d-a400-c27a14e0be32', 1, 'Alexandra', 1667159410, 1, '065256e5372ed3e33ff319ff9c887251');
-INSERT INTO public.rainloop_ab_contacts VALUES (525, '16a3dd3b-4ad7-4aa0-b5f7-27c4d4f2c2ce', 1, 'Alexandra', 1667159410, 1, 'cfa5b8febdbed5dcd1711dab98bdf0c9');
-INSERT INTO public.rainloop_ab_contacts VALUES (528, '9664c60f-d682-4bba-b309-6b92c11a4b93', 1, 'Alexandra', 1667159410, 1, '512a502a40ddd93e5da07788e04e1bd9');
-INSERT INTO public.rainloop_ab_contacts VALUES (531, '946161f3-b2b1-4e67-84be-52ed742bf022', 1, 'Alexandra', 1667159410, 1, 'bed51df5824cb077508fdfd210fe05da');
-INSERT INTO public.rainloop_ab_contacts VALUES (534, '62f03494-91aa-4210-a15d-a9602a7177f9', 1, 'Alexandra', 1667159410, 1, '35e964d6ec2a85747e5647641a99f4eb');
-INSERT INTO public.rainloop_ab_contacts VALUES (736, 'cd713ebf-8ae0-48f4-b706-be0ba7094c7d', 2, 'LOBERON Kundenservice', 1667480334, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (737, '87e755c1-0785-41b6-a866-1b5cc3ca696c', 2, 'verein@urania-potsdam.de', 1667735888, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (738, '9ae8fac1-9912-4bc1-a2fc-45f30a3f0aa4', 2, 'Märkische Kiste', 1668166514, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (739, '7af944d0-6892-400b-97a6-c48ceaafb2c8', 2, 'abo@zeitakademie.de', 1669392874, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (740, '108335bb-2e9f-44da-ba4e-f9dd1e593f42', 2, 'praxis-petersen@gmx.de', 1669731444, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (741, '8a5d1fdd-ceed-4f66-87e6-3553a568075a', 2, 'info@antik-living.de', 1670774979, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (742, '56b07cce-138f-4336-a5fa-aa9c1622b00a', 2, 'Yvonne Ewen', 1670833866, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (743, '3d2507b5-446c-4f0c-b076-8aa3cad3ea10', 2, 'Yvonne Ewen', 1670843888, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (744, '3a007957-d352-41d1-ac99-48d77a55112a', 2, 'Yvonne Ewen', 1670845348, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (745, '1a9f6773-eb37-4069-91f5-e365c5cf35a6', 2, 'Yvonne Ewen', 1670845612, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (746, '87907f18-70d7-4388-b16b-d9ddfad1b684', 2, 'Leonie Güldenpfennig', 1671815338, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (747, 'acf10f54-c4db-4e78-b5ad-46f0cfec129e', 2, 'pgreve@gmail.com', 1671815846, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (748, '92538466-3eb4-48ba-a6f7-9b4969eeccc3', 2, 'Yvonne Ewen', 1671817091, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (749, 'df0d457a-da25-4675-9b6b-117dce5e2d95', 2, 'anja@jcs-home.de', 1671817272, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (750, '174f329f-f76a-4142-9ad4-a9331d1507da', 2, 'hejahagen@t-online.de', 1671817771, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (751, 'e69cd071-26a0-4445-bef7-f7b055fd8e28', 2, 'ju_schulze@t-online.de', 1671817905, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (752, 'e84afe90-6ba7-4988-91c7-6641709adbb4', 2, 'Leonie Güldenpfennig', 1671910858, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (753, 'd6659a34-0f3e-4e0f-b746-07a74bcfcfa6', 2, 'm.lukoschewski@web.de', 1673010649, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (754, '48b7af9b-e5d7-4b01-912c-659d775544c0', 2, 'bahnbonus-service@bahn.de', 1673252545, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (755, '34196cb1-35bd-46fe-b02a-f721dca4d99a', 2, 'Uwe Czesnat', 1674141643, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (756, '32804e54-c70c-40e0-9718-444f684f78f8', 2, 'Herr Geller', 1674199674, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (757, 'c8002e87-2f6a-496c-95ab-4d4238439ba1', 2, 'anita--meyer@t-online.de', 1674776399, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (758, '0fdcaf85-705d-4a28-9ec7-79e9545ebcdb', 2, 'Info@Fit4Bike.de', 1674842764, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (759, 'aca173af-aef0-4fac-8671-3534fb10517e', 2, 'Coaching-jaiser@web.de', 1675001782, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (760, '3b92ca57-1149-4978-9caf-89b04418f21a', 2, 'Thorsten Kuechler', 1675009686, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (761, 'c286ccb5-10aa-49aa-b767-007dd4fe97bf', 2, 'Uwe Czesnat - Zeppelin Team', 1675009922, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (762, '8a983aea-38f6-44cb-88dd-ae2ee5a96e59', 2, 'esn.com', 1675441384, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (763, '8eddd2fe-e321-4b32-b954-d6775f621313', 2, 'info@fitmart.de', 1675441384, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (764, 'd7b59b9f-9352-421c-82b4-74c0a6bae412', 2, 'Christian Nagel', 1675716363, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (765, 'c9a46b45-a663-42b4-8a7d-5de89dc6dd8a', 2, 'Lars Lundin', 1676021279, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (766, '615b7d61-1e09-4ad7-aa66-569d31d6db5b', 2, 'Heinz Hillmer', 1676120770, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (767, '3f302aee-1d1a-430b-b1a5-40b20fe49c2f', 2, 'Klaus Locker - Märkische Immobilien Potsdam', 1676568648, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (768, '797de745-d155-4290-a1ad-7763a668e376', 4, 'voker.voss@gywi.de', 1678454936, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (769, 'd413606c-c2dd-4f06-846f-c4ef0ce498d1', 4, 'volker.voss@gywi.de', 1678455522, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (770, '13c4d804-2835-45c8-8209-36fb927c6e95', 4, 'Volker Voß', 1678455583, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (771, '05bbd8a0-638e-43a5-884e-c238661e1dfe', 2, 'Anne Aegerter', 1678970699, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (772, '2c2daf60-dba9-4dfd-a494-9836f90836c1', 2, 'alexandrowka-potsdam@web.de', 1681299811, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (773, 'df4fd1ef-1b37-40e4-92a5-04d5bd778a63', 2, 'kundenbetreuung@dertouristik.com', 1681369880, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (774, '9c94a295-9332-4c68-bd0d-84c4f2a2c4a2', 2, 'Ingo', 1682485322, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (775, '09ec440f-8a4e-4575-a086-22b0727701dd', 2, 'christine.maertner@polizei.brandenburg.de', 1682504039, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (776, 'ac75a53c-9423-4605-81b5-5457039e6091', 2, 'Bloominghome GmbH & Co. KG', 1683133504, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (777, '468696e7-9021-4698-ac25-200e5079dc4b', 2, 'retoure@bloominghome.de', 1683133556, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (778, 'a51add3f-2a48-46de-adc3-b2b725d64808', 2, 'Hagen Schanze', 1685631867, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (779, '3b965a99-b6a5-4264-98cf-55f58441d19e', 2, 'choose75@gmx.de', 1688124296, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (780, 'f2e3ebf2-4d16-44e2-9f74-e02950e9990a', 2, 'CHoose75@gmx.de', 1688378099, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (781, '4c48917b-fe34-4b9e-9604-2c007ac6b904', 6, 'ip8jkt@libero.it', 1688562366, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (782, 'e6c6f19d-fe30-4472-88a3-29824ec4dded', 2, 'Irmtraud Rosentreter', 1688652337, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (783, 'b5334f50-1d23-4684-8928-44ac0a42b17f', 2, 'M_Schneider@gmx.net', 1688745453, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (784, 'c54f3ba8-ce84-40d2-8604-38ffbaea62d8', 2, 'Leonie Güldenpfennig', 1689176566, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (785, '30d62feb-646f-4f8e-824f-852769b4f5fe', 2, 'M_Schneider@gmx.net', 1689333209, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (786, '8e991043-1c8d-4a7d-a2bf-3ffd5b3ee93a', 2, 'M_Schneider@gmx.net', 1689796178, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (787, 'c5b28459-b510-4094-8148-9966d933c2ba', 2, 'ronald@runningwolf.de', 1690382243, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (788, '869c5b3d-902a-4faf-8666-55f56aa78014', 2, 'ina.rosentreter@rifs-potsdam.de', 1691065567, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (789, '779a0b1b-aad0-47f5-b13d-888547acca26', 2, 'allgemeiner-spam@internet-beschwerdestelle.de', 1692873719, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (790, 'e4110a0e-19a2-4e61-9408-dca5d6d10bc2', 2, 'Engel & Völkers Potsdam', 1692873888, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (791, '6d5bc9ad-4453-45cf-8971-87758b22b29d', 2, 'Leonie Güldenpfennig', 1692974765, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (792, '95704613-08b4-4cb2-8281-eb518793e34f', 2, 'M_Schneider@gmx.net', 1692975512, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (793, '83c38c41-ff12-440c-b070-7429c089a6a8', 2, 'Zahn Dietrich', 1692975748, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (794, '3bcd1278-4a7b-4465-9b1d-1cb80ccb7420', 2, 'Steffen Ulbrich', 1693556363, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (795, 'ae733029-1108-490d-b17e-b8a8ae289017', 2, 'bahncard-service@bahn.de', 1693826092, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (796, 'd794a071-c53c-4cad-bce2-562e5a32ef82', 2, 'reisen@rucksack-reisen.de', 1695475013, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (797, '289d1c54-c238-41ce-872a-c325ffa33849', 2, 'Jil Szabo', 1695632220, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (798, '3501521b-fb86-43b1-8d88-41b5cf17df8d', 2, 'Melanie Schneider', 1695658836, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (799, '7bb2bc49-6012-4221-bcf3-bb7cb2404713', 2, 'M_Schneider@gmx.net', 1695826772, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (800, '0c57920d-af08-4274-a9a2-2d99c0f34b2b', 2, 'amazon-student-verifizierung@amazon.de', 1695828877, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (801, 'ae8a5f5e-79f0-4081-ba8f-447bee42ebe4', 4, 'frank-etgeton@osnanet.de', 1697372340, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (802, 'e5c9fbcc-670d-447e-9621-8cbef84c5a30', 2, 'sch@radiologische-allianz.de', 1697469758, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (803, '53a3d857-0504-471c-bb81-7442cc1a56ba', 2, 'mammo_screening_brb_west@t-online.de', 1697470407, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (804, '033fe5dc-ae3a-4264-a553-9efa7248ecc8', 2, 'praxis-belzer@web.de', 1697730102, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (805, '0e56abce-f219-4077-bc4b-a2aeda86dd59', 2, 'Vätternrundan', 1698076914, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (806, '3574cb62-3e31-472b-9850-746f3b08522b', 2, 'kurfuersten@roentgenpraxis-potsdam.de', 1701090132, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (807, 'e6fe4599-2020-4960-96f7-67124dc9d2eb', 2, 'support@saal-digital.de', 1702889002, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (808, '9716b035-47b0-4ba4-a88b-744e52d4b3da', 2, 'info@potsdamer-laufclub.de', 1702988937, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (809, '8ba10ce1-f4d4-457f-8823-1abbe54f5243', 2, 'event@wannseeterrassen.berlin', 1705078985, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (810, '1d2b0dbd-ba33-4243-ab8e-2b7109bd93c4', 2, 'booking@spidsbergseter.no', 1706104063, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (811, '01d7be2e-29a5-4df3-8bd5-f90a2109868f', 2, 'Resepsjonen Spidsbergseter', 1706268638, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (812, '8fbcec8b-3140-41da-b400-59b31df4d643', 2, 'Resepsjonen Spidsbergseter', 1706269253, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (813, '411d7447-be20-4b8b-b19c-5c3dc9a56d55', 2, 'Termin_Zusage', 1706896315, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (814, '1b7bb4d0-2382-4629-b678-c80c75f461d2', 2, 'Resepsjonen Spidsbergseter', 1707661971, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (815, 'dd01d826-6211-424f-b7fb-2117b8d8107d', 2, 'ordre@taxi03650.no', 1708082970, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (816, 'b8ee8947-0f3d-41ac-8441-90bb5aaa6796', 2, 'Ringebu-Fåvang taxisentral', 1708097720, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (817, '16740151-76ae-4d73-af45-dc12485a53ee', 2, 'Sportschrank.de', 1708365248, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (818, 'fb82bcdf-5028-4e68-99b0-202079abd42f', 2, 'nicht-antworten@gebuhrenfrei.com', 1708423543, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (819, '6b90bd93-c049-4311-b3e0-1f7f807f00aa', 2, 'service@gebuhrenfrei.com', 1708423937, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (820, '4e614a3f-3cac-4d79-941e-d2d5038136cd', 2, 'joana.ludwig@hotmail.de', 1710183119, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (821, 'd526486d-a626-4a2f-9883-227199c915c9', 2, 'vermietung@vermietungsbuero-mueller.de', 1712327797, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (822, 'de69d24c-6a0e-4b45-9070-6683a1f8ec9b', 4, 'Roblox Support', 1713355464, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (823, '3f7692ce-4ac8-47ad-9384-7bfc904790d8', 2, 'kontakt@restaurantzanotto.de', 1713952047, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (824, '8ec0a022-4b92-45a9-9b8b-462c33099d8a', 2, 'Jens-Martin Schröder', 1714071850, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (825, '262e3275-4f9a-40f5-afc0-bb0027677da3', 2, 'Saletovic, Elvis', 1714375862, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (826, '800d241a-26da-462d-9502-dd8d023afec2', 2, 'Saletovic, Elvis', 1714420394, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (827, '2fb5d367-f939-46bd-8b67-682c4b2968df', 2, 'Termin_Zusage', 1714471617, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (828, '6a92114c-a571-4a5b-a4aa-9c27846369ba', 2, 'Weber, Niko', 1714490938, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (829, '833773e3-0511-4a87-a5c1-1a623bf6a29f', 2, 'lydia.p97@gmail.com', 1714982878, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (830, '4973625e-4502-499b-8aef-bd084ebeffe9', 2, 'kontakt@maerkischekiste.de', 1714983039, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (831, '4918a901-7d90-4980-ad4b-ef7ca0e19440', 2, 'Weber, Niko', 1714983691, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (832, 'cf5b8045-d5c2-4761-b52e-333d83288ff8', 2, 'Saletovic, Elvis', 1715001010, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (833, 'd8cf6e7c-ce5d-4bf5-b774-a6146ebe01b7', 2, 'Weber, Niko', 1715012083, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (834, '2963759b-d572-49cb-a52b-77af73383984', 2, 'Pospiech, Mandy', 1715108045, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (835, '3f35ed24-0b06-46a1-bf3a-abed70e616f8', 2, 'Lieferando.de', 1715537458, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (836, '56a29cf3-87cc-46e5-8582-3fa626c81316', 2, 'Belegungsrechte@vonovia.de', 1715674743, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (837, '8b358e1a-f7c3-49aa-aaf5-b0aa81f0ec16', 2, 'xxx Kardiologische Gemeinschaftspraxis am Park Sanssouci', 1716450470, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (838, '51b8a122-6077-463b-b958-16d5c495ca65', 2, 'Antje Evers', 1718970159, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (839, 'df0fb125-194a-42f6-b020-84b3fd715340', 2, 'Isabell Kruse', 1719923779, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (840, '86776305-c76a-4c4e-9df2-f7227eff207c', 2, 'Mieterverein Potsdam', 1720605284, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (841, '88dc8686-0d64-442f-99fd-edfff0a1089d', 2, 'Servicecenter Diagnostikum Berlin', 1720617059, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (842, '44a0fde0-02e3-4d0f-81fd-c86732a27ed5', 2, 'ina.rosentreter@gmail.com', 1721233324, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (843, 'df95018e-54c7-441c-aedd-0727676355cc', 2, 'Pospiech, Mandy', 1721812571, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (844, 'd4445123-15c9-421f-ab57-154be602fd28', 2, 'Pospiech, Mandy', 1721814176, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (845, '623e7ec8-ed31-447c-b1a5-c7d258afaa58', 2, 'rezeption@hotel-chorin.de', 1721814959, 0, '');
-INSERT INTO public.rainloop_ab_contacts VALUES (846, '5d5d1c15-de2f-492b-bdeb-aa42b62e4c13', 2, 'Miriam Lewin', 1722764418, 0, '');
-
-
---
--- Name: rainloop_ab_contacts_id_contact_seq; Type: SEQUENCE SET; Schema: public; Owner: rainloop
---
-
-SELECT pg_catalog.setval('public.rainloop_ab_contacts_id_contact_seq', 846, true);
-
-
---
--- Data for Name: rainloop_ab_properties; Type: TABLE DATA; Schema: public; Owner: rainloop
---
-
-INSERT INTO public.rainloop_ab_properties VALUES (2, 1, 2, 15, '', 'Namasto', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3, 1, 2, 10, '', 'Namasto', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1, 1, 2, 30, '', 'noreply@namasto.com', '', 1, '');
-INSERT INTO public.rainloop_ab_properties VALUES (5, 2, 2, 15, '', 'Namasto', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (6, 2, 2, 10, '', 'Namasto', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4, 2, 2, 30, '', 'sales@namasto.com', '', 1, '');
-INSERT INTO public.rainloop_ab_properties VALUES (8, 3, 2, 15, '', 'Jan', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (9, 3, 2, 16, '', 'Fahning', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (10, 3, 2, 10, '', 'Jan Fahning', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (12, 4, 2, 10, '', 'nicole.wilfinger@raabvitalfood.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (11, 4, 2, 30, '', 'nicole.wilfinger@raabvitalfood.de', '', 1, '');
-INSERT INTO public.rainloop_ab_properties VALUES (14, 5, 2, 15, '', 'KiWAMi', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (15, 5, 2, 10, '', 'KiWAMi', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (13, 5, 2, 30, '', 'contact@kiwamitriathlon.com', '', 2, '');
-INSERT INTO public.rainloop_ab_properties VALUES (17, 6, 2, 10, '', 'info@laufwerk-hamburg.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (16, 6, 2, 30, '', 'info@laufwerk-hamburg.de', '', 1, '');
-INSERT INTO public.rainloop_ab_properties VALUES (19, 7, 1, 15, '', 'Schlossallee', '', 0, 'schlossallee');
-INSERT INTO public.rainloop_ab_properties VALUES (20, 7, 1, 16, '', 'Immobilien AG', '', 0, 'immobilien ag');
-INSERT INTO public.rainloop_ab_properties VALUES (21, 7, 1, 10, '', 'Schlossallee Immobilien AG', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (59, 22, 2, 30, '', 'spiraldynamik.bubos@gmail.com', '', 2, 'spiraldynamik.bubos@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (23, 8, 1, 10, '', 'ole.rosentreter@teambank.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (41, 16, 2, 30, '', 'rookies@triabolos.de', '', 2, 'rookies@triabolos.de');
-INSERT INTO public.rainloop_ab_properties VALUES (25, 9, 1, 10, '', 'patrick.stadler@owayo.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (27, 10, 1, 10, '', 'ole@wechselzonenluder.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (29, 11, 1, 10, '', 'astrid@wechselzonenluder.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (26, 10, 1, 30, '', 'ole@wechselzonenluder.de', '', 1, 'ole@wechselzonenluder.de');
-INSERT INTO public.rainloop_ab_properties VALUES (28, 11, 1, 30, '', 'astrid@wechselzonenluder.de', '', 1, 'astrid@wechselzonenluder.de');
-INSERT INTO public.rainloop_ab_properties VALUES (24, 9, 1, 30, '', 'patrick.stadler@owayo.com', '', 2, 'patrick.stadler@owayo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (31, 12, 2, 10, '', 'Dana.Porzberg@bkk-mobil-oil.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (30, 12, 2, 30, '', 'Dana.Porzberg@bkk-mobil-oil.de', '', 1, 'dana.porzberg@bkk-mobil-oil.de');
-INSERT INTO public.rainloop_ab_properties VALUES (33, 13, 2, 15, '', 'Birte', '', 0, 'birte');
-INSERT INTO public.rainloop_ab_properties VALUES (34, 13, 2, 16, '', 'Podeyn', '', 0, 'podeyn');
-INSERT INTO public.rainloop_ab_properties VALUES (35, 13, 2, 10, '', 'Birte Podeyn', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (32, 13, 2, 30, '', 'bpodeyn@aol.com', '', 1, 'bpodeyn@aol.com');
-INSERT INTO public.rainloop_ab_properties VALUES (37, 14, 2, 15, '', 'Zone3-Store', '', 0, 'zone3-store');
-INSERT INTO public.rainloop_ab_properties VALUES (38, 14, 2, 10, '', 'Zone3-Store', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (40, 15, 2, 10, '', 'info@exxos.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (36, 14, 2, 30, '', 'info@zone3-store.de', '', 1, 'info@zone3-store.de');
-INSERT INTO public.rainloop_ab_properties VALUES (39, 15, 2, 30, '', 'info@exxos.de', '', 1, 'info@exxos.de');
-INSERT INTO public.rainloop_ab_properties VALUES (42, 16, 2, 10, '', 'rookies@triabolos.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (73, 27, 2, 30, '', 'kontakt@laktatnebel.de', '', 3, 'kontakt@laktatnebel.de');
-INSERT INTO public.rainloop_ab_properties VALUES (44, 17, 1, 15, '', 'Björn', '', 0, 'björn');
-INSERT INTO public.rainloop_ab_properties VALUES (45, 17, 1, 16, '', 'Röder', '', 0, 'röder');
-INSERT INTO public.rainloop_ab_properties VALUES (46, 17, 1, 10, '', 'Björn Röder', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (64, 23, 2, 15, '', 'Hausverwaltg', '', 0, 'hausverwaltg');
-INSERT INTO public.rainloop_ab_properties VALUES (48, 18, 2, 10, '', 'info@spiraldynamik-bubos.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (47, 18, 2, 30, '', 'info@spiraldynamik-bubos.de', '', 1, 'info@spiraldynamik-bubos.de');
-INSERT INTO public.rainloop_ab_properties VALUES (65, 23, 2, 16, '', 'Friedrichs', '', 0, 'friedrichs');
-INSERT INTO public.rainloop_ab_properties VALUES (50, 19, 2, 10, '', 'triabolos.ironman.hh@gmail.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (52, 20, 1, 15, '', 'Sonja', '', 0, 'sonja');
-INSERT INTO public.rainloop_ab_properties VALUES (53, 20, 1, 16, '', 'Schwenk', '', 0, 'schwenk');
-INSERT INTO public.rainloop_ab_properties VALUES (54, 20, 1, 10, '', 'Sonja Schwenk', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (51, 20, 1, 30, '', 'sonja.schwenk@gmx.de', '', 1, 'sonja.schwenk@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (56, 21, 1, 15, '', 'Thomas', '', 0, 'thomas');
-INSERT INTO public.rainloop_ab_properties VALUES (57, 21, 1, 16, '', 'Krell', '', 0, 'krell');
-INSERT INTO public.rainloop_ab_properties VALUES (58, 21, 1, 10, '', 'Thomas Krell', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (63, 23, 2, 30, '', 'info@friedrichsgmbh.de', '', 24, 'info@friedrichsgmbh.de');
-INSERT INTO public.rainloop_ab_properties VALUES (60, 22, 2, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (61, 22, 2, 16, '', 'Bubos', '', 0, 'bubos');
-INSERT INTO public.rainloop_ab_properties VALUES (62, 22, 2, 10, '', 'Andrea Bubos', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (49, 19, 2, 30, '', 'triabolos.ironman.hh@gmail.com', '', 3, 'triabolos.ironman.hh@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (66, 23, 2, 10, '', 'Hausverwaltg Friedrichs', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (78, 28, 2, 10, '', 'privat@ina-rosentreter.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1337, 387, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (68, 24, 1, 10, '', 'instagram@wechselzonenluder.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (70, 25, 1, 10, '', 'instagram@triathlon-camp-andalusien.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (67, 24, 1, 30, '', 'instagram@wechselzonenluder.de', '', 1, 'instagram@wechselzonenluder.de');
-INSERT INTO public.rainloop_ab_properties VALUES (69, 25, 1, 30, '', 'instagram@triathlon-camp-andalusien.de', '', 1, 'instagram@triathlon-camp-andalusien.de');
-INSERT INTO public.rainloop_ab_properties VALUES (43, 17, 1, 30, '', 'bjoern.roeder@pillenstein.de', '', 6, 'bjoern.roeder@pillenstein.de');
-INSERT INTO public.rainloop_ab_properties VALUES (72, 26, 1, 10, '', 'uirosentreter@t-online.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (22, 8, 1, 30, '', 'ole.rosentreter@teambank.de', '', 5, 'ole.rosentreter@teambank.de');
-INSERT INTO public.rainloop_ab_properties VALUES (77, 28, 2, 30, '', 'privat@ina-rosentreter.de', '', 17, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (74, 27, 2, 15, '', 'Ole', '', 0, 'ole');
-INSERT INTO public.rainloop_ab_properties VALUES (75, 27, 2, 16, '', 'Benjamin Rosentreter', '', 0, 'benjamin rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (76, 27, 2, 10, '', 'Ole Benjamin Rosentreter', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (85, 31, 2, 30, '', 'annika.weidner@jiakina.com', '', 5, 'annika.weidner@jiakina.com');
-INSERT INTO public.rainloop_ab_properties VALUES (80, 29, 2, 10, '', 'uirosentreter@t-online.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (18, 7, 1, 30, '', 'as@schlossallee.ag', '', 4, 'as@schlossallee.ag');
-INSERT INTO public.rainloop_ab_properties VALUES (82, 30, 2, 15, '', 'Maïlys', '', 0, 'maïlys');
-INSERT INTO public.rainloop_ab_properties VALUES (83, 30, 2, 16, '', 'Sangla', '', 0, 'sangla');
-INSERT INTO public.rainloop_ab_properties VALUES (84, 30, 2, 10, '', 'Maïlys Sangla', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (81, 30, 2, 30, '', 'mailys.sangla@gmail.com', '', 3, 'mailys.sangla@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (7, 3, 2, 30, '', 'jan@fahning.com', '', 5, '');
-INSERT INTO public.rainloop_ab_properties VALUES (86, 31, 2, 15, '', 'Jiakina', '', 0, 'jiakina');
-INSERT INTO public.rainloop_ab_properties VALUES (87, 31, 2, 16, '', 'Annika Weidner', '', 0, 'annika weidner');
-INSERT INTO public.rainloop_ab_properties VALUES (88, 31, 2, 10, '', 'Jiakina Annika Weidner', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (71, 26, 1, 30, '', 'uirosentreter@t-online.de', '', 4, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (90, 32, 2, 15, '', 'Ole', '', 0, 'ole');
-INSERT INTO public.rainloop_ab_properties VALUES (55, 21, 1, 30, '', 'thomas@thomas-krell.com', '', 2, 'thomas@thomas-krell.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1338, 387, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2293, 498, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (91, 32, 2, 16, '', 'Benjamin Rosentreter', '', 0, 'benjamin rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (92, 32, 2, 10, '', 'Ole Benjamin Rosentreter', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (141, 46, 2, 30, '', 'ferien@urlaubshof-jacobsen.de', '', 3, 'ferien@urlaubshof-jacobsen.de');
-INSERT INTO public.rainloop_ab_properties VALUES (94, 33, 2, 15, '', 'Strandmuschel', '', 0, 'strandmuschel');
-INSERT INTO public.rainloop_ab_properties VALUES (95, 33, 2, 16, '', 'via Booking.com', '', 0, 'via booking.com');
-INSERT INTO public.rainloop_ab_properties VALUES (96, 33, 2, 10, '', 'Strandmuschel via Booking.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (93, 33, 2, 30, '', '2793352127-zrew.pbth.wmhc.tz5n@property.booking.com', '', 1, '2793352127-zrew.pbth.wmhc.tz5n@property.booking.com');
-INSERT INTO public.rainloop_ab_properties VALUES (146, 47, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (147, 47, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (98, 34, 2, 15, '', 'Josef', '', 0, 'josef');
-INSERT INTO public.rainloop_ab_properties VALUES (99, 34, 2, 16, '', 'Blumenfelder CHECK24', '', 0, 'blumenfelder check24');
-INSERT INTO public.rainloop_ab_properties VALUES (100, 34, 2, 10, '', 'Josef Blumenfelder CHECK24', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (148, 47, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (97, 34, 2, 30, '', 'kredit-67636525@kredit.check24.de', '', 2, 'kredit-67636525@kredit.check24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (102, 35, 2, 10, '', 'jan.erdmann@finanzcheck.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (101, 35, 2, 30, '', 'jan.erdmann@finanzcheck.de', '', 1, 'jan.erdmann@finanzcheck.de');
-INSERT INTO public.rainloop_ab_properties VALUES (104, 36, 2, 10, '', 'info@physio-mundsburg.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (103, 36, 2, 30, '', 'info@physio-mundsburg.de', '', 1, 'info@physio-mundsburg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (106, 37, 2, 15, '', 'Aboservice', '', 0, 'aboservice');
-INSERT INTO public.rainloop_ab_properties VALUES (107, 37, 2, 16, '', 'spomedis', '', 0, 'spomedis');
-INSERT INTO public.rainloop_ab_properties VALUES (108, 37, 2, 10, '', 'Aboservice spomedis', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (145, 47, 2, 30, '', 'Leonie.gueldenpfennig@gmx.de', '', 6, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (110, 38, 2, 15, '', 'Handelsblatt', '', 0, 'handelsblatt');
-INSERT INTO public.rainloop_ab_properties VALUES (111, 38, 2, 16, '', 'Fachmedien Shop', '', 0, 'fachmedien shop');
-INSERT INTO public.rainloop_ab_properties VALUES (112, 38, 2, 10, '', 'Handelsblatt Fachmedien Shop', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (109, 38, 2, 30, '', 'shop@fachmedien.de', '', 1, 'shop@fachmedien.de');
-INSERT INTO public.rainloop_ab_properties VALUES (114, 39, 2, 15, '', 'Sebastian', '', 0, 'sebastian');
-INSERT INTO public.rainloop_ab_properties VALUES (115, 39, 2, 16, '', 'Rosenkranz', '', 0, 'rosenkranz');
-INSERT INTO public.rainloop_ab_properties VALUES (116, 39, 2, 10, '', 'Sebastian Rosenkranz', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (113, 39, 2, 30, '', 's.rosenkranz@bewegungsschmiede.de', '', 1, 's.rosenkranz@bewegungsschmiede.de');
-INSERT INTO public.rainloop_ab_properties VALUES (118, 40, 2, 15, '', 'K.', '', 0, 'k.');
-INSERT INTO public.rainloop_ab_properties VALUES (119, 40, 2, 16, '', 'Schneider', '', 0, 'schneider');
-INSERT INTO public.rainloop_ab_properties VALUES (120, 40, 2, 10, '', 'K. Schneider', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (117, 40, 2, 30, '', 'tapferes-Schneiderlein@freenet.de', '', 1, 'tapferes-schneiderlein@freenet.de');
-INSERT INTO public.rainloop_ab_properties VALUES (122, 41, 2, 15, '', 'Ole', '', 0, 'ole');
-INSERT INTO public.rainloop_ab_properties VALUES (123, 41, 2, 16, '', 'B. R.', '', 0, 'b. r.');
-INSERT INTO public.rainloop_ab_properties VALUES (124, 41, 2, 10, '', 'Ole B. R.', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (121, 41, 2, 30, '', 'eisenmann226@googlemail.com', '', 1, 'eisenmann226@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (171, 54, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 22, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (126, 42, 2, 15, '', 'Benjamin', '', 0, 'benjamin');
-INSERT INTO public.rainloop_ab_properties VALUES (127, 42, 2, 16, '', 'Trocha', '', 0, 'trocha');
-INSERT INTO public.rainloop_ab_properties VALUES (128, 42, 2, 10, '', 'Benjamin Trocha', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (125, 42, 2, 30, '', 'benny@triabolos.de', '', 1, 'benny@triabolos.de');
-INSERT INTO public.rainloop_ab_properties VALUES (130, 43, 2, 15, '', 'podologie', '', 0, 'podologie');
-INSERT INTO public.rainloop_ab_properties VALUES (131, 43, 2, 16, '', 'elke kunte', '', 0, 'elke kunte');
-INSERT INTO public.rainloop_ab_properties VALUES (132, 43, 2, 10, '', 'podologie elke kunte', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (129, 43, 2, 30, '', 'info@podologie-elke-kunte.de', '', 1, 'info@podologie-elke-kunte.de');
-INSERT INTO public.rainloop_ab_properties VALUES (134, 44, 2, 15, '', 'Christel', '', 0, 'christel');
-INSERT INTO public.rainloop_ab_properties VALUES (135, 44, 2, 16, '', 'Haaf', '', 0, 'haaf');
-INSERT INTO public.rainloop_ab_properties VALUES (136, 44, 2, 10, '', 'Christel Haaf', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (89, 32, 2, 30, '', 'privat@ole-b-rosentreter.de', '', 38, 'privat@ole-b-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (138, 45, 1, 15, '', 'Geschäftsstelle', '', 0, 'geschäftsstelle');
-INSERT INTO public.rainloop_ab_properties VALUES (139, 45, 1, 16, '', 'BAYERN 07', '', 0, 'bayern 07');
-INSERT INTO public.rainloop_ab_properties VALUES (140, 45, 1, 10, '', 'Geschäftsstelle BAYERN 07', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (137, 45, 1, 30, '', 'info@bayern07.de', '', 1, 'info@bayern07.de');
-INSERT INTO public.rainloop_ab_properties VALUES (142, 46, 2, 15, '', 'Urlaubshof', '', 0, 'urlaubshof');
-INSERT INTO public.rainloop_ab_properties VALUES (143, 46, 2, 16, '', 'Jacobsen', '', 0, 'jacobsen');
-INSERT INTO public.rainloop_ab_properties VALUES (144, 46, 2, 10, '', 'Urlaubshof Jacobsen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (150, 48, 2, 10, '', 'waltersorgenfrei@t-online.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (149, 48, 2, 30, '', 'waltersorgenfrei@t-online.de', '', 1, 'waltersorgenfrei@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (152, 49, 2, 15, '', 'Nina', '', 0, 'nina');
-INSERT INTO public.rainloop_ab_properties VALUES (153, 49, 2, 16, '', '/BDF HAM', '', 0, '/bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (154, 49, 2, 10, '', 'Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (156, 50, 2, 15, '', 'Nina', '', 0, 'nina');
-INSERT INTO public.rainloop_ab_properties VALUES (157, 50, 2, 16, '', '/BDF HAM', '', 0, '/bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (158, 50, 2, 10, '', 'Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (172, 54, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (160, 51, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (161, 51, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (162, 51, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (168, 53, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (169, 53, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (164, 52, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (165, 52, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (166, 52, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (173, 54, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (174, 54, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (170, 53, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (105, 37, 2, 30, '', 'spomedis@verlegerdienst.de', '', 3, 'spomedis@verlegerdienst.de');
-INSERT INTO public.rainloop_ab_properties VALUES (167, 53, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 23, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (151, 49, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 27, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (133, 44, 2, 30, '', 'christelhaaf@web.de', '', 7, 'christelhaaf@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (176, 55, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (177, 55, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (178, 55, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (212, 64, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (213, 64, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (214, 64, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (180, 56, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (181, 56, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (182, 56, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (220, 66, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (221, 66, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (222, 66, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (184, 57, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (185, 57, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (186, 57, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (204, 62, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (205, 62, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (206, 62, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (188, 58, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (189, 58, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (190, 58, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (192, 59, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (193, 59, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (194, 59, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (216, 65, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (217, 65, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (218, 65, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (208, 63, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (209, 63, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (210, 63, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (196, 60, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (197, 60, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (198, 60, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (219, 66, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 10, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (211, 64, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 12, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (155, 50, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 26, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (159, 51, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 25, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (163, 52, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 24, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (175, 55, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 21, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (179, 56, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 20, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (183, 57, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 19, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (187, 58, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 18, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (200, 61, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (201, 61, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (202, 61, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (191, 59, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 17, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1538, 409, 1, 15, '', 'Andi', '', 0, 'andi');
-INSERT INTO public.rainloop_ab_properties VALUES (1539, 409, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1540, 409, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1541, 409, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (224, 67, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (225, 67, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (226, 67, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1542, 409, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1543, 409, 1, 9, '', 'ea1ff1ea-69c1-4bd9-bc2e-7ca7424a751c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1544, 410, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1545, 410, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1546, 410, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1547, 410, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1548, 410, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1549, 410, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1550, 410, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1551, 410, 1, 9, '', 'f052d289-ea9e-439e-a8ae-7c733c0ab042', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1552, 411, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1553, 411, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1554, 411, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (228, 68, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (229, 68, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (230, 68, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (261, 78, 2, 30, '', 'service@bergzeit.de', '', 1, 'service@bergzeit.de');
-INSERT INTO public.rainloop_ab_properties VALUES (254, 76, 2, 30, '', 'serviceclient@hardloop.fr', '', 2, 'serviceclient@hardloop.fr');
-INSERT INTO public.rainloop_ab_properties VALUES (264, 79, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (265, 79, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (266, 79, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (232, 69, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (233, 69, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (234, 69, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (282, 84, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (268, 80, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (269, 80, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (270, 80, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (283, 84, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (284, 84, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (273, 82, 2, 30, '', 'service@spreadshirt.net', '', 2, 'service@spreadshirt.net');
-INSERT INTO public.rainloop_ab_properties VALUES (236, 70, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (237, 70, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (238, 70, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (263, 79, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 28, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (249, 74, 2, 30, '', 'choose75@gmx.net', '', 3, 'choose75@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (293, 87, 2, 30, '', 'gesa.birnkraut@on-line.de', '', 5, 'gesa.birnkraut@on-line.de');
-INSERT INTO public.rainloop_ab_properties VALUES (289, 86, 2, 30, '', 'anna.beek@web.de', '', 5, 'anna.beek@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (195, 60, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 16, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (199, 61, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 15, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (281, 84, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 25, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (240, 71, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (241, 71, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (242, 71, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (244, 72, 2, 15, '', 'Susen', '', 0, 'susen');
-INSERT INTO public.rainloop_ab_properties VALUES (245, 72, 2, 16, '', 'Julia Laß', '', 0, 'julia laß');
-INSERT INTO public.rainloop_ab_properties VALUES (246, 72, 2, 10, '', 'Susen Julia Laß', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (267, 80, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 27, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (248, 73, 2, 10, '', 'info@ski-outdoor-shop.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (250, 74, 2, 10, '', 'choose75@gmx.net', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (252, 75, 2, 15, '', 'Hardloop', '', 0, 'hardloop');
-INSERT INTO public.rainloop_ab_properties VALUES (253, 75, 2, 10, '', 'Hardloop', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (251, 75, 2, 30, '', 'hello@hardloop.fr', '', 1, 'hello@hardloop.fr');
-INSERT INTO public.rainloop_ab_properties VALUES (255, 76, 2, 15, '', 'HARDLOOP', '', 0, 'hardloop');
-INSERT INTO public.rainloop_ab_properties VALUES (256, 76, 2, 10, '', 'HARDLOOP', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (290, 86, 2, 15, '', 'Anna', '', 0, 'anna');
-INSERT INTO public.rainloop_ab_properties VALUES (247, 73, 2, 30, '', 'info@ski-outdoor-shop.de', '', 2, 'info@ski-outdoor-shop.de');
-INSERT INTO public.rainloop_ab_properties VALUES (258, 77, 2, 15, '', 'Bergzeit', '', 0, 'bergzeit');
-INSERT INTO public.rainloop_ab_properties VALUES (259, 77, 2, 16, '', 'no-reply', '', 0, 'no-reply');
-INSERT INTO public.rainloop_ab_properties VALUES (260, 77, 2, 10, '', 'Bergzeit no-reply', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (257, 77, 2, 30, '', 'no-reply@bergzeit.de', '', 1, 'no-reply@bergzeit.de');
-INSERT INTO public.rainloop_ab_properties VALUES (262, 78, 2, 10, '', 'service@bergzeit.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (272, 81, 2, 10, '', 'info@bike-components.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (291, 86, 2, 16, '', 'Beek', '', 0, 'beek');
-INSERT INTO public.rainloop_ab_properties VALUES (292, 86, 2, 10, '', 'Anna Beek', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (271, 81, 2, 30, '', 'info@bike-components.de', '', 4, 'info@bike-components.de');
-INSERT INTO public.rainloop_ab_properties VALUES (274, 82, 2, 15, '', 'Spreadshirt', '', 0, 'spreadshirt');
-INSERT INTO public.rainloop_ab_properties VALUES (275, 82, 2, 16, '', 'Service', '', 0, 'service');
-INSERT INTO public.rainloop_ab_properties VALUES (276, 82, 2, 10, '', 'Spreadshirt Service', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (239, 71, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 29, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (278, 83, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (279, 83, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (280, 83, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (294, 87, 2, 15, '', 'Gesa', '', 0, 'gesa');
-INSERT INTO public.rainloop_ab_properties VALUES (295, 87, 2, 16, '', 'Birnkraut', '', 0, 'birnkraut');
-INSERT INTO public.rainloop_ab_properties VALUES (286, 85, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (287, 85, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (288, 85, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (243, 72, 2, 30, '', 'susen.lass@web.de', '', 2, 'susen.lass@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (297, 88, 1, 30, '', 'Christina.Roethlein@aiv.hfoed.de', '', 4, 'christina.roethlein@aiv.hfoed.de');
-INSERT INTO public.rainloop_ab_properties VALUES (296, 87, 2, 10, '', 'Gesa Birnkraut', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (203, 62, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 14, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (298, 88, 1, 15, '', 'Roethlein', '', 0, 'roethlein');
-INSERT INTO public.rainloop_ab_properties VALUES (299, 88, 1, 16, '', 'Christina', '', 0, 'christina');
-INSERT INTO public.rainloop_ab_properties VALUES (300, 88, 1, 10, '', 'Roethlein Christina', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (302, 89, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (303, 89, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (304, 89, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (207, 63, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 13, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (215, 65, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 11, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (223, 67, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 9, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (227, 68, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 8, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (306, 90, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (307, 90, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (308, 90, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (310, 91, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (311, 91, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (312, 91, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (354, 103, 2, 10, '', 'paypal.eu@asics.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (353, 103, 2, 30, '', 'paypal.eu@asics.com', '', 1, 'paypal.eu@asics.com');
-INSERT INTO public.rainloop_ab_properties VALUES (314, 92, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (315, 92, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (316, 92, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (356, 104, 1, 15, '', 'CHIPZEIT.DE', '', 0, 'chipzeit.de');
-INSERT INTO public.rainloop_ab_properties VALUES (357, 104, 1, 16, '', 'Support', '', 0, 'support');
-INSERT INTO public.rainloop_ab_properties VALUES (318, 93, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (319, 93, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (320, 93, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (361, 106, 2, 30, '', 'manuel.ellmers@gmx.de', '', 85, 'manuel.ellmers@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (305, 90, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 12, 'jams_o_donnell@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (373, 109, 2, 30, '', 'Leonie.gueldenpfennig@gmx.de', '', 5, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (309, 91, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 11, 'jams_o_donnell@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (322, 94, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (323, 94, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (324, 94, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (358, 104, 1, 10, '', 'CHIPZEIT.DE Support', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (355, 104, 1, 30, '', 'support@chipzeit.de', '', 1, 'support@chipzeit.de');
-INSERT INTO public.rainloop_ab_properties VALUES (360, 105, 1, 10, '', 'info@btv-info.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (326, 95, 2, 10, '', 'gewinnen@tri-mag.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (325, 95, 2, 30, '', 'gewinnen@tri-mag.de', '', 1, 'gewinnen@tri-mag.de');
-INSERT INTO public.rainloop_ab_properties VALUES (328, 96, 2, 15, '', 'Service', '', 0, 'service');
-INSERT INTO public.rainloop_ab_properties VALUES (329, 96, 2, 16, '', 'Internistenpraxis', '', 0, 'internistenpraxis');
-INSERT INTO public.rainloop_ab_properties VALUES (330, 96, 2, 10, '', 'Service Internistenpraxis', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (327, 96, 2, 30, '', 'service@internisten-moenckebergstr.de', '', 1, 'service@internisten-moenckebergstr.de');
-INSERT INTO public.rainloop_ab_properties VALUES (332, 97, 2, 15, '', 'Hans-Peter', '', 0, 'hans-peter');
-INSERT INTO public.rainloop_ab_properties VALUES (333, 97, 2, 16, '', 'Dannenberg', '', 0, 'dannenberg');
-INSERT INTO public.rainloop_ab_properties VALUES (334, 97, 2, 10, '', 'Hans-Peter Dannenberg', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (331, 97, 2, 30, '', 'info@dannenberg.training', '', 1, 'info@dannenberg.training');
-INSERT INTO public.rainloop_ab_properties VALUES (336, 98, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (337, 98, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (338, 98, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (374, 109, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (375, 109, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (376, 109, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (277, 83, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 26, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (340, 99, 2, 10, '', 'werkstatt@trionik.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (339, 99, 2, 30, '', 'werkstatt@trionik.de', '', 1, 'werkstatt@trionik.de');
-INSERT INTO public.rainloop_ab_properties VALUES (342, 100, 2, 15, '', 'Triabolos', '', 0, 'triabolos');
-INSERT INTO public.rainloop_ab_properties VALUES (343, 100, 2, 16, '', 'Radtrainingslager', '', 0, 'radtrainingslager');
-INSERT INTO public.rainloop_ab_properties VALUES (344, 100, 2, 10, '', 'Triabolos Radtrainingslager', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (341, 100, 2, 30, '', 'radtrainingslager@googlemail.com', '', 1, 'radtrainingslager@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (346, 101, 1, 15, '', 'Frank', '', 0, 'frank');
-INSERT INTO public.rainloop_ab_properties VALUES (347, 101, 1, 16, '', 'Marschler', '', 0, 'marschler');
-INSERT INTO public.rainloop_ab_properties VALUES (348, 101, 1, 10, '', 'Frank Marschler', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (345, 101, 1, 30, '', 'fmars@gmx.de', '', 1, 'fmars@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (350, 102, 2, 15, '', 'ASICS', '', 0, 'asics');
-INSERT INTO public.rainloop_ab_properties VALUES (351, 102, 2, 16, '', 'Outlet', '', 0, 'outlet');
-INSERT INTO public.rainloop_ab_properties VALUES (352, 102, 2, 10, '', 'ASICS Outlet', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (349, 102, 2, 30, '', 'verbraucher-de@asics.com', '', 1, 'verbraucher-de@asics.com');
-INSERT INTO public.rainloop_ab_properties VALUES (359, 105, 1, 30, '', 'info@btv-info.de', '', 1, 'info@btv-info.de');
-INSERT INTO public.rainloop_ab_properties VALUES (362, 106, 2, 15, '', 'Manuel', '', 0, 'manuel');
-INSERT INTO public.rainloop_ab_properties VALUES (363, 106, 2, 16, '', 'Ellmers', '', 0, 'ellmers');
-INSERT INTO public.rainloop_ab_properties VALUES (364, 106, 2, 10, '', 'Manuel Ellmers', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (365, 107, 2, 30, '', 'boarding@flugphase.ch', '', 2, 'boarding@flugphase.ch');
-INSERT INTO public.rainloop_ab_properties VALUES (366, 107, 2, 15, '', 'FLUGPHASE', '', 0, 'flugphase');
-INSERT INTO public.rainloop_ab_properties VALUES (367, 107, 2, 16, '', 'Boarding', '', 0, 'boarding');
-INSERT INTO public.rainloop_ab_properties VALUES (368, 107, 2, 10, '', 'FLUGPHASE Boarding', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (313, 92, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 10, 'jams_o_donnell@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (370, 108, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (371, 108, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (372, 108, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (317, 93, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 9, 'jams_o_donnell@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (379, 111, 2, 30, '', 'kundenservice@agu.com', '', 5, 'kundenservice@agu.com');
-INSERT INTO public.rainloop_ab_properties VALUES (378, 110, 1, 10, '', 'info@bike24.net', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (380, 111, 2, 10, '', 'kundenservice@agu.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (382, 112, 2, 15, '', 'fizik', '', 0, 'fizik');
-INSERT INTO public.rainloop_ab_properties VALUES (383, 112, 2, 16, '', 'Shop Online', '', 0, 'shop online');
-INSERT INTO public.rainloop_ab_properties VALUES (384, 112, 2, 10, '', 'fizik Shop Online', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (381, 112, 2, 30, '', 'shop@fizik.com', '', 2, 'shop@fizik.com');
-INSERT INTO public.rainloop_ab_properties VALUES (386, 113, 2, 15, '', 'Alice', '', 0, 'alice');
-INSERT INTO public.rainloop_ab_properties VALUES (387, 113, 2, 16, '', 'Ferrari', '', 0, 'ferrari');
-INSERT INTO public.rainloop_ab_properties VALUES (388, 113, 2, 10, '', 'Alice Ferrari', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (385, 113, 2, 30, '', 'a.ferrari@selleroyalgroup.com', '', 1, 'a.ferrari@selleroyalgroup.com');
-INSERT INTO public.rainloop_ab_properties VALUES (390, 114, 1, 10, '', 'anita--meyer@t-online.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (389, 114, 1, 30, '', 'anita--meyer@t-online.de', '', 1, 'anita--meyer@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (392, 115, 1, 15, '', 'Roethlein', '', 0, 'roethlein');
-INSERT INTO public.rainloop_ab_properties VALUES (377, 110, 1, 30, '', 'info@bike24.net', '', 2, 'info@bike24.net');
-INSERT INTO public.rainloop_ab_properties VALUES (393, 115, 1, 16, '', 'Christina', '', 0, 'christina');
-INSERT INTO public.rainloop_ab_properties VALUES (394, 115, 1, 10, '', 'Roethlein Christina', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (396, 116, 1, 15, '', 'Roethlein', '', 0, 'roethlein');
-INSERT INTO public.rainloop_ab_properties VALUES (397, 116, 1, 16, '', 'Christina', '', 0, 'christina');
-INSERT INTO public.rainloop_ab_properties VALUES (398, 116, 1, 10, '', 'Roethlein Christina', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (442, 128, 2, 10, '', '100x100@swim.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (400, 117, 1, 15, '', 'Roethlein', '', 0, 'roethlein');
-INSERT INTO public.rainloop_ab_properties VALUES (401, 117, 1, 16, '', 'Christina', '', 0, 'christina');
-INSERT INTO public.rainloop_ab_properties VALUES (402, 117, 1, 10, '', 'Roethlein Christina', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (391, 115, 1, 30, '', 'Christina.Roethlein@aiv.hfoed.de', '', 3, 'christina.roethlein@aiv.hfoed.de');
-INSERT INTO public.rainloop_ab_properties VALUES (395, 116, 1, 30, '', 'Christina.Roethlein@aiv.hfoed.de', '', 2, 'christina.roethlein@aiv.hfoed.de');
-INSERT INTO public.rainloop_ab_properties VALUES (399, 117, 1, 30, '', 'Christina.Roethlein@aiv.hfoed.de', '', 1, 'christina.roethlein@aiv.hfoed.de');
-INSERT INTO public.rainloop_ab_properties VALUES (404, 118, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (405, 118, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (406, 118, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (441, 128, 2, 30, '', '100x100@swim.de', '', 1, '100x100@swim.de');
-INSERT INTO public.rainloop_ab_properties VALUES (408, 119, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (409, 119, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (410, 119, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (412, 120, 2, 15, '', 'STAPS', '', 0, 'staps');
-INSERT INTO public.rainloop_ab_properties VALUES (413, 120, 2, 16, '', '| Yannick Nodler', '', 0, '| yannick nodler');
-INSERT INTO public.rainloop_ab_properties VALUES (414, 120, 2, 10, '', 'STAPS | Yannick Nodler', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (431, 125, 2, 30, '', 'lutz@triabolos.de', '', 3, 'lutz@triabolos.de');
-INSERT INTO public.rainloop_ab_properties VALUES (416, 121, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (417, 121, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (418, 121, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (444, 129, 2, 15, '', 'Josef', '', 0, 'josef');
-INSERT INTO public.rainloop_ab_properties VALUES (445, 129, 2, 16, '', 'Blumenfelder CHECK24', '', 0, 'blumenfelder check24');
-INSERT INTO public.rainloop_ab_properties VALUES (446, 129, 2, 10, '', 'Josef Blumenfelder CHECK24', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (432, 125, 2, 10, '', 'lutz@triabolos.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (420, 122, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (421, 122, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (422, 122, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2294, 498, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2295, 498, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (447, 130, 2, 30, '', 'kontakt@orthopaedie-othmarschen.de', '', 7, 'kontakt@orthopaedie-othmarschen.de');
-INSERT INTO public.rainloop_ab_properties VALUES (411, 120, 2, 30, '', 'y.nodler@staps-online.com', '', 2, 'y.nodler@staps-online.com');
-INSERT INTO public.rainloop_ab_properties VALUES (424, 123, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (425, 123, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (426, 123, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (448, 130, 2, 15, '', 'Orthopädie', '', 0, 'orthopädie');
-INSERT INTO public.rainloop_ab_properties VALUES (449, 130, 2, 16, '', 'Othmarschen', '', 0, 'othmarschen');
-INSERT INTO public.rainloop_ab_properties VALUES (450, 130, 2, 10, '', 'Orthopädie Othmarschen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (459, 134, 2, 30, '', 'alexander.rodloff@gmx.de', '', 1, 'alexander.rodloff@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (452, 131, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (453, 131, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (428, 124, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (429, 124, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (430, 124, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (454, 131, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (285, 85, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 24, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (434, 126, 1, 15, '', 'Christine', '', 0, 'christine');
-INSERT INTO public.rainloop_ab_properties VALUES (435, 126, 1, 16, '', 'Schatz | owayo', '', 0, 'schatz | owayo');
-INSERT INTO public.rainloop_ab_properties VALUES (436, 126, 1, 10, '', 'Christine Schatz | owayo', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (456, 132, 2, 10, '', 'esbeautyhh@hotmail.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (438, 127, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (439, 127, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (440, 127, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (231, 69, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 7, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (235, 70, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 6, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1555, 411, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1556, 411, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1557, 411, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1558, 411, 1, 9, '', '31e17ab1-ed22-43e1-9270-299e94045a57', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1559, 412, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (443, 129, 2, 30, '', 'kredit-76792470@kredit.check24.de', '', 3, 'kredit-76792470@kredit.check24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (433, 126, 1, 30, '', 'christine.schatz@owayo.com', '', 5, 'christine.schatz@owayo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (455, 132, 2, 30, '', 'esbeautyhh@hotmail.com', '', 2, 'esbeautyhh@hotmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (458, 133, 2, 10, '', 'service@zeitakademie.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (457, 133, 2, 30, '', 'service@zeitakademie.de', '', 1, 'service@zeitakademie.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1560, 412, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (460, 134, 2, 15, '', 'Alexander', '', 0, 'alexander');
-INSERT INTO public.rainloop_ab_properties VALUES (461, 134, 2, 16, '', 'Rodloff', '', 0, 'rodloff');
-INSERT INTO public.rainloop_ab_properties VALUES (462, 134, 2, 10, '', 'Alexander Rodloff', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (464, 135, 2, 10, '', 'spickzettel@flugphase.ch', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (463, 135, 2, 30, '', 'spickzettel@flugphase.ch', '', 1, 'spickzettel@flugphase.ch');
-INSERT INTO public.rainloop_ab_properties VALUES (466, 136, 1, 10, '', 'ds@laufmagazin-spiridon.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (468, 137, 1, 10, '', 'spiridon@gmx.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (465, 136, 1, 30, '', 'ds@laufmagazin-spiridon.de', '', 1, 'ds@laufmagazin-spiridon.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1561, 412, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1562, 412, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1563, 412, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1564, 412, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1565, 412, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1566, 412, 1, 30, 'OTHER', 'anfreyb@gmx.de', '', 0, 'anfreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2296, 498, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2297, 498, 1, 9, '', '2a9bbe0b-259a-4469-8f9c-95461bcd6edb', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (467, 137, 1, 30, '', 'spiridon@gmx.com', '', 1, 'spiridon@gmx.com');
-INSERT INTO public.rainloop_ab_properties VALUES (470, 138, 2, 15, '', 'FUN', '', 0, 'fun');
-INSERT INTO public.rainloop_ab_properties VALUES (471, 138, 2, 16, '', 'FACTORY', '', 0, 'factory');
-INSERT INTO public.rainloop_ab_properties VALUES (472, 138, 2, 10, '', 'FUN FACTORY', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (469, 138, 2, 30, '', 'support+id47728@funfactory.zendesk.com', '', 1, 'support+id47728@funfactory.zendesk.com');
-INSERT INTO public.rainloop_ab_properties VALUES (474, 139, 2, 15, '', 'Powermetershop', '', 0, 'powermetershop');
-INSERT INTO public.rainloop_ab_properties VALUES (475, 139, 2, 10, '', 'Powermetershop', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (473, 139, 2, 30, '', 'info@powermetershop.de', '', 1, 'info@powermetershop.de');
-INSERT INTO public.rainloop_ab_properties VALUES (477, 140, 2, 10, '', 'lkahh50@polizei.hamburg.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (479, 141, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (480, 141, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (481, 141, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (514, 154, 2, 30, '', 'shop@running-green.de', '', 1, 'shop@running-green.de');
-INSERT INTO public.rainloop_ab_properties VALUES (483, 142, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (484, 142, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (485, 142, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2083, 475, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2084, 475, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2085, 475, 1, 9, '', 'cf0e3d58-328a-4058-8931-ceba761c4cd9', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2086, 476, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (487, 143, 2, 10, '', 'julia.hackeloeer@hackeloeers.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (522, 157, 2, 30, '', 'm_schneider@gmx.net', '', 14, 'm_schneider@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (489, 144, 1, 15, '', 'RenéRosa', '', 0, 'renérosa');
-INSERT INTO public.rainloop_ab_properties VALUES (490, 144, 1, 16, '', 'Trikotmanufaktur // Tina Buchholz-Weissinger', '', 0, 'trikotmanufaktur // tina buchholz-weissinger');
-INSERT INTO public.rainloop_ab_properties VALUES (491, 144, 1, 10, '', 'RenéRosa Trikotmanufaktur // Tina Buchholz-Weissinger', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (488, 144, 1, 30, '', 'rosa@renerosa.de', '', 1, 'rosa@renerosa.de');
-INSERT INTO public.rainloop_ab_properties VALUES (493, 145, 2, 15, '', 'Oliver', '', 0, 'oliver');
-INSERT INTO public.rainloop_ab_properties VALUES (494, 145, 2, 16, '', 'Scholz', '', 0, 'scholz');
-INSERT INTO public.rainloop_ab_properties VALUES (495, 145, 2, 10, '', 'Oliver Scholz', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (492, 145, 2, 30, '', 'info@oliver-film.de', '', 1, 'info@oliver-film.de');
-INSERT INTO public.rainloop_ab_properties VALUES (497, 146, 2, 10, '', 'mail@frauenarztpraxis-fontenay.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (496, 146, 2, 30, '', 'mail@frauenarztpraxis-fontenay.de', '', 2, 'mail@frauenarztpraxis-fontenay.de');
-INSERT INTO public.rainloop_ab_properties VALUES (499, 147, 2, 10, '', 'info@mcdart.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (519, 155, 2, 10, '', 'info@running-green.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (498, 147, 2, 30, '', 'info@mcdart.de', '', 2, 'info@mcdart.de');
-INSERT INTO public.rainloop_ab_properties VALUES (501, 148, 2, 10, '', 'ina.rosentreter@hsba.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (500, 148, 2, 30, '', 'ina.rosentreter@hsba.de', '', 1, 'ina.rosentreter@hsba.de');
-INSERT INTO public.rainloop_ab_properties VALUES (503, 149, 2, 15, '', 'lastminute.de', '', 0, 'lastminute.de');
-INSERT INTO public.rainloop_ab_properties VALUES (504, 149, 2, 10, '', 'lastminute.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (506, 150, 2, 10, '', 'kundendienst@lastminute.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (508, 151, 2, 10, '', 'customercare@lastminute.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (534, 161, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (505, 150, 2, 30, '', 'kundendienst@lastminute.com', '', 1, 'kundendienst@lastminute.com');
-INSERT INTO public.rainloop_ab_properties VALUES (476, 140, 2, 30, '', 'lkahh50@polizei.hamburg.de', '', 2, 'lkahh50@polizei.hamburg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (510, 152, 2, 10, '', 'kundendienst@lastminute.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (507, 151, 2, 30, '', 'customercare@lastminute.de', '', 2, 'customercare@lastminute.de');
-INSERT INTO public.rainloop_ab_properties VALUES (509, 152, 2, 30, '', 'kundendienst@lastminute.de', '', 1, 'kundendienst@lastminute.de');
-INSERT INTO public.rainloop_ab_properties VALUES (512, 153, 2, 15, '', 'lastminute.de', '', 0, 'lastminute.de');
-INSERT INTO public.rainloop_ab_properties VALUES (513, 153, 2, 10, '', 'lastminute.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (502, 149, 2, 30, '', 'Buchungsbestaetigung@lastminute.de', '', 2, 'buchungsbestaetigung@lastminute.de');
-INSERT INTO public.rainloop_ab_properties VALUES (511, 153, 2, 30, '', 'Buchungsbestaetigung@lastminute.de', '', 1, 'buchungsbestaetigung@lastminute.de');
-INSERT INTO public.rainloop_ab_properties VALUES (515, 154, 2, 15, '', 'running', '', 0, 'running');
-INSERT INTO public.rainloop_ab_properties VALUES (516, 154, 2, 16, '', 'green', '', 0, 'green');
-INSERT INTO public.rainloop_ab_properties VALUES (517, 154, 2, 10, '', 'running green', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (518, 155, 2, 30, '', 'info@running-green.de', '', 2, 'info@running-green.de');
-INSERT INTO public.rainloop_ab_properties VALUES (521, 156, 2, 10, '', 'AuflagenNachMass@gmail.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (520, 156, 2, 30, '', 'AuflagenNachMass@gmail.com', '', 1, 'auflagennachmass@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (523, 157, 2, 15, '', 'Melanie', '', 0, 'melanie');
-INSERT INTO public.rainloop_ab_properties VALUES (524, 157, 2, 16, '', 'Schneider', '', 0, 'schneider');
-INSERT INTO public.rainloop_ab_properties VALUES (525, 157, 2, 10, '', 'Melanie Schneider', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (527, 158, 2, 10, '', 'info@baederland.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (403, 118, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 5, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (529, 159, 2, 15, '', 'tri-mag.de', '', 0, 'tri-mag.de');
-INSERT INTO public.rainloop_ab_properties VALUES (530, 159, 2, 10, '', 'tri-mag.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (528, 159, 2, 30, '', 'info@tri-mag.de', '', 1, 'info@tri-mag.de');
-INSERT INTO public.rainloop_ab_properties VALUES (532, 160, 2, 10, '', 'anmeldestornierung@sportspasshamburg.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (531, 160, 2, 30, '', 'anmeldestornierung@sportspasshamburg.de', '', 1, 'anmeldestornierung@sportspasshamburg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (535, 161, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (536, 161, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (537, 162, 2, 30, '', 'abo@tri-mag.de', '', 2, 'abo@tri-mag.de');
-INSERT INTO public.rainloop_ab_properties VALUES (538, 162, 2, 10, '', 'abo@tri-mag.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (526, 158, 2, 30, '', 'info@baederland.de', '', 2, 'info@baederland.de');
-INSERT INTO public.rainloop_ab_properties VALUES (540, 163, 2, 10, '', 'f9ecfdabb7ca585d92b8a6b08fecdbad@ds-guest.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (539, 163, 2, 30, '', 'f9ecfdabb7ca585d92b8a6b08fecdbad@ds-guest.com', '', 1, 'f9ecfdabb7ca585d92b8a6b08fecdbad@ds-guest.com');
-INSERT INTO public.rainloop_ab_properties VALUES (486, 143, 2, 30, '', 'julia.hackeloeer@hackeloeers.de', '', 2, 'julia.hackeloeer@hackeloeers.de');
-INSERT INTO public.rainloop_ab_properties VALUES (419, 122, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 4, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (478, 141, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 3, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (482, 142, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 2, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2087, 476, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (2088, 476, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (2089, 476, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2090, 476, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2091, 476, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2092, 476, 1, 9, '', '92b7eb3a-efa3-4c74-864f-b9d516d5ffc7', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (542, 164, 2, 10, '', 'buchungsservice@im-web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (541, 164, 2, 30, '', 'buchungsservice@im-web.de', '', 1, 'buchungsservice@im-web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (544, 165, 2, 15, '', 'Vierlanden-Triathlon', '', 0, 'vierlanden-triathlon');
-INSERT INTO public.rainloop_ab_properties VALUES (545, 165, 2, 16, '', 'Newsletter', '', 0, 'newsletter');
-INSERT INTO public.rainloop_ab_properties VALUES (546, 165, 2, 10, '', 'Vierlanden-Triathlon Newsletter', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (612, 190, 2, 30, '', 'akpiatt@gmail.com', '', 4, 'akpiatt@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (548, 166, 2, 10, '', 'kaehler.klink@freenet.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (547, 166, 2, 30, '', 'kaehler.klink@freenet.de', '', 1, 'kaehler.klink@freenet.de');
-INSERT INTO public.rainloop_ab_properties VALUES (550, 167, 2, 10, '', 'martin@tschepe.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (549, 167, 2, 30, '', 'martin@tschepe.de', '', 1, 'martin@tschepe.de');
-INSERT INTO public.rainloop_ab_properties VALUES (552, 168, 2, 10, '', 'tschepe@web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (551, 168, 2, 30, '', 'tschepe@web.de', '', 1, 'tschepe@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (554, 169, 2, 10, '', 'triathlon@ht16.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (556, 170, 2, 15, '', 'HT16', '', 0, 'ht16');
-INSERT INTO public.rainloop_ab_properties VALUES (557, 170, 2, 16, '', 'Jennifer Rasch', '', 0, 'jennifer rasch');
-INSERT INTO public.rainloop_ab_properties VALUES (558, 170, 2, 10, '', 'HT16 Jennifer Rasch', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (555, 170, 2, 30, '', 'wettkampfsport@ht16.de', '', 1, 'wettkampfsport@ht16.de');
-INSERT INTO public.rainloop_ab_properties VALUES (593, 182, 2, 10, '', 'info@eaton-place.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (600, 185, 2, 30, '', 'noreply@bike-discount.de', '', 1, 'noreply@bike-discount.de');
-INSERT INTO public.rainloop_ab_properties VALUES (560, 171, 2, 15, '', 'Larissa', '', 0, 'larissa');
-INSERT INTO public.rainloop_ab_properties VALUES (561, 171, 2, 16, '', 'Kleinmann - FLUGPHASE', '', 0, 'kleinmann - flugphase');
-INSERT INTO public.rainloop_ab_properties VALUES (562, 171, 2, 10, '', 'Larissa Kleinmann - FLUGPHASE', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (559, 171, 2, 30, '', 'larissa@flugphase.ch', '', 1, 'larissa@flugphase.ch');
-INSERT INTO public.rainloop_ab_properties VALUES (553, 169, 2, 30, '', 'triathlon@ht16.de', '', 5, 'triathlon@ht16.de');
-INSERT INTO public.rainloop_ab_properties VALUES (564, 172, 2, 10, '', 'info@pvz.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (563, 172, 2, 30, '', 'info@pvz.de', '', 1, 'info@pvz.de');
-INSERT INTO public.rainloop_ab_properties VALUES (566, 173, 2, 10, '', 'infomaster@europcar.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (565, 173, 2, 30, '', 'infomaster@europcar.com', '', 1, 'infomaster@europcar.com');
-INSERT INTO public.rainloop_ab_properties VALUES (568, 174, 2, 10, '', 'nachfrage@europcar.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (592, 182, 2, 30, '', 'info@eaton-place.de', '', 2, 'info@eaton-place.de');
-INSERT INTO public.rainloop_ab_properties VALUES (595, 183, 2, 10, '', 'kundenservice@handelsblattgroup.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (567, 174, 2, 30, '', 'nachfrage@europcar.com', '', 4, 'nachfrage@europcar.com');
-INSERT INTO public.rainloop_ab_properties VALUES (570, 175, 2, 10, '', 'reservierung@autoeurope.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (569, 175, 2, 30, '', 'reservierung@autoeurope.de', '', 1, 'reservierung@autoeurope.de');
-INSERT INTO public.rainloop_ab_properties VALUES (572, 176, 2, 15, '', 'CHECK24', '', 0, 'check24');
-INSERT INTO public.rainloop_ab_properties VALUES (573, 176, 2, 16, '', 'Mietwagen', '', 0, 'mietwagen');
-INSERT INTO public.rainloop_ab_properties VALUES (574, 176, 2, 10, '', 'CHECK24 Mietwagen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (576, 177, 2, 10, '', 'mietwagen@check24.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (571, 176, 2, 30, '', 'info-14334875@mietwagen.check24.de', '', 1, 'info-14334875@mietwagen.check24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (575, 177, 2, 30, '', 'mietwagen@check24.de', '', 1, 'mietwagen@check24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (578, 178, 2, 15, '', 'burgerme', '', 0, 'burgerme');
-INSERT INTO public.rainloop_ab_properties VALUES (579, 178, 2, 10, '', 'burgerme', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (577, 178, 2, 30, '', 'bestellbestaetigung@burgerme.de', '', 1, 'bestellbestaetigung@burgerme.de');
-INSERT INTO public.rainloop_ab_properties VALUES (581, 179, 2, 15, '', 'CHECK24', '', 0, 'check24');
-INSERT INTO public.rainloop_ab_properties VALUES (582, 179, 2, 16, '', 'Mietwagen', '', 0, 'mietwagen');
-INSERT INTO public.rainloop_ab_properties VALUES (583, 179, 2, 10, '', 'CHECK24 Mietwagen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (585, 180, 2, 15, '', 'CHECK24', '', 0, 'check24');
-INSERT INTO public.rainloop_ab_properties VALUES (586, 180, 2, 16, '', 'Mietwagen Kundenservice', '', 0, 'mietwagen kundenservice');
-INSERT INTO public.rainloop_ab_properties VALUES (587, 180, 2, 10, '', 'CHECK24 Mietwagen Kundenservice', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (589, 181, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (590, 181, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (591, 181, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (588, 181, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 13, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (607, 187, 2, 10, '', 'support@zwift.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (606, 187, 2, 30, '', 'support@zwift.com', '', 1, 'support@zwift.com');
-INSERT INTO public.rainloop_ab_properties VALUES (601, 185, 2, 15, '', 'Bike-Discount', '', 0, 'bike-discount');
-INSERT INTO public.rainloop_ab_properties VALUES (602, 185, 2, 10, '', 'Bike-Discount', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (609, 188, 2, 10, '', 'dianalukasnuelle@gmail.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (584, 180, 2, 30, '', 'kundenservice-14541390@mietwagen.check24.de', '', 3, 'kundenservice-14541390@mietwagen.check24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (603, 186, 2, 30, '', 'support@bike-discount.de', '', 3, 'support@bike-discount.de');
-INSERT INTO public.rainloop_ab_properties VALUES (604, 186, 2, 15, '', 'Bike-Discount', '', 0, 'bike-discount');
-INSERT INTO public.rainloop_ab_properties VALUES (605, 186, 2, 10, '', 'Bike-Discount', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (594, 183, 2, 30, '', 'kundenservice@handelsblattgroup.com', '', 6, 'kundenservice@handelsblattgroup.com');
-INSERT INTO public.rainloop_ab_properties VALUES (724, 221, 3, 10, '', 'Matthies 15', '', 0, 'matthies 15');
-INSERT INTO public.rainloop_ab_properties VALUES (611, 189, 2, 10, '', 'treuebouldern@ht16.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (610, 189, 2, 30, '', 'treuebouldern@ht16.de', '', 1, 'treuebouldern@ht16.de');
-INSERT INTO public.rainloop_ab_properties VALUES (580, 179, 2, 30, '', 'info-14541390@mietwagen.check24.de', '', 2, 'info-14541390@mietwagen.check24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (613, 190, 2, 15, '', 'Anne', '', 0, 'anne');
-INSERT INTO public.rainloop_ab_properties VALUES (614, 190, 2, 16, '', 'Piatt', '', 0, 'piatt');
-INSERT INTO public.rainloop_ab_properties VALUES (615, 190, 2, 10, '', 'Anne Piatt', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (616, 191, 2, 30, '', 'alena.beutler@posteo.de', '', 2, 'alena.beutler@posteo.de');
-INSERT INTO public.rainloop_ab_properties VALUES (617, 191, 2, 10, '', 'alena.beutler@posteo.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (543, 165, 2, 30, '', 'newsletter@vierlanden-triathlon.de', '', 2, 'newsletter@vierlanden-triathlon.de');
-INSERT INTO public.rainloop_ab_properties VALUES (619, 192, 2, 10, '', 'annabelelaine@web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (618, 192, 2, 30, '', 'annabelelaine@web.de', '', 1, 'annabelelaine@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (725, 222, 3, 15, '', 'Matthies 16', '', 0, 'matthies 16');
-INSERT INTO public.rainloop_ab_properties VALUES (407, 119, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 19, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (415, 121, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 18, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (621, 193, 2, 10, '', 'cindy_kubsch@hotmail.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (654, 203, 4, 30, 'Home', 'f.gehrmann@proge.de', '', 30, 'f.gehrmann@proge.de');
-INSERT INTO public.rainloop_ab_properties VALUES (623, 194, 2, 10, '', 'jule.hackeloeer@hackeloeers.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (622, 194, 2, 30, '', 'jule.hackeloeer@hackeloeers.de', '', 1, 'jule.hackeloeer@hackeloeers.de');
-INSERT INTO public.rainloop_ab_properties VALUES (625, 195, 2, 10, '', 'elbrose@hotmail.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (624, 195, 2, 30, '', 'elbrose@hotmail.com', '', 1, 'elbrose@hotmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (627, 196, 2, 10, '', 'nina_johannsen@hotmail.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (620, 193, 2, 30, '', 'cindy_kubsch@hotmail.de', '', 2, 'cindy_kubsch@hotmail.de');
-INSERT INTO public.rainloop_ab_properties VALUES (629, 197, 2, 10, '', 'info@buenavida-andalucia.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (628, 197, 2, 30, '', 'info@buenavida-andalucia.com', '', 1, 'info@buenavida-andalucia.com');
-INSERT INTO public.rainloop_ab_properties VALUES (631, 198, 2, 10, '', 'sebastianacke@gmx.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (633, 199, 2, 15, '', 'Dietrich', '', 0, 'dietrich');
-INSERT INTO public.rainloop_ab_properties VALUES (634, 199, 2, 16, '', 'Zahn', '', 0, 'zahn');
-INSERT INTO public.rainloop_ab_properties VALUES (635, 199, 2, 10, '', 'Dietrich Zahn', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (632, 199, 2, 30, '', 'd.zahn@t-online.de', '', 16, 'd.zahn@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (638, 201, 2, 30, '', 'gesa.birnkraut@hamburg.de', '', 6, 'gesa.birnkraut@hamburg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (637, 200, 2, 10, '', 'bewerbung@uni-flensburg.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (636, 200, 2, 30, '', 'bewerbung@uni-flensburg.de', '', 1, 'bewerbung@uni-flensburg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (639, 201, 2, 15, '', 'Gesa', '', 0, 'gesa');
-INSERT INTO public.rainloop_ab_properties VALUES (640, 201, 2, 16, '', 'Birnkraut', '', 0, 'birnkraut');
-INSERT INTO public.rainloop_ab_properties VALUES (641, 201, 2, 10, '', 'Gesa Birnkraut', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (626, 196, 2, 30, '', 'nina_johannsen@hotmail.com', '', 2, 'nina_johannsen@hotmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (674, 208, 3, 15, '', 'Matthies 2', '', 0, 'matthies 2');
-INSERT INTO public.rainloop_ab_properties VALUES (675, 208, 3, 30, 'Home', 'briefkasten@matthies-gehrmann.de', '', 0, 'briefkasten@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (646, 202, 4, 15, '', 'Ole', '', 0, 'ole');
-INSERT INTO public.rainloop_ab_properties VALUES (647, 202, 4, 16, '', 'Benjamin Rosentreter', '', 0, 'benjamin rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (649, 202, 4, 10, '', 'Ole Benjamin Rosentreter', '', 0, 'ole benjamin rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (676, 208, 3, 10, '', 'Matthies 2', '', 0, 'matthies 2');
-INSERT INTO public.rainloop_ab_properties VALUES (653, 203, 4, 15, '', 'frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (655, 203, 4, 10, '', 'frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (630, 198, 2, 30, '', 'sebastianacke@gmx.de', '', 5, 'sebastianacke@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (656, 204, 4, 15, '', 'lasse', '', 0, 'lasse');
-INSERT INTO public.rainloop_ab_properties VALUES (658, 204, 4, 10, '', 'lasse', '', 0, 'lasse');
-INSERT INTO public.rainloop_ab_properties VALUES (680, 209, 3, 15, '', 'Matthies 3', '', 0, 'matthies 3');
-INSERT INTO public.rainloop_ab_properties VALUES (681, 209, 3, 30, 'Home', 'e-mail@matthies-gehrmann.de', '', 0, 'e-mail@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (664, 206, 3, 15, '', 'papa', '', 0, 'papa');
-INSERT INTO public.rainloop_ab_properties VALUES (666, 206, 3, 10, '', 'papa', '', 0, 'papa');
-INSERT INTO public.rainloop_ab_properties VALUES (667, 205, 3, 15, '', 'Matthies', '', 0, 'matthies');
-INSERT INTO public.rainloop_ab_properties VALUES (669, 205, 3, 10, '', 'Matthies', '', 0, 'matthies');
-INSERT INTO public.rainloop_ab_properties VALUES (608, 188, 2, 30, '', 'dianalukasnuelle@gmail.com', '', 3, 'dianalukasnuelle@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (682, 209, 3, 10, '', 'Matthies 3', '', 0, 'matthies 3');
-INSERT INTO public.rainloop_ab_properties VALUES (668, 205, 3, 30, '', 'privat@matthies-gehrmann.de', '', 6, 'privat@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (683, 210, 3, 15, '', 'Matthies 4', '', 0, 'matthies 4');
-INSERT INTO public.rainloop_ab_properties VALUES (665, 206, 3, 30, 'Home', 'email@ole-b-rosentreter.de', '', 2, 'email@ole-b-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (671, 207, 2, 15, '', 'Janos', '', 0, 'janos');
-INSERT INTO public.rainloop_ab_properties VALUES (672, 207, 2, 16, '', 'Mester', '', 0, 'mester');
-INSERT INTO public.rainloop_ab_properties VALUES (673, 207, 2, 10, '', 'Janos Mester', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (684, 210, 3, 30, 'Home', 'email@matthies-gehrmann.de', '', 0, 'email@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (685, 210, 3, 10, '', 'Matthies 4', '', 0, 'matthies 4');
-INSERT INTO public.rainloop_ab_properties VALUES (686, 211, 3, 15, '', 'Matthies 5', '', 0, 'matthies 5');
-INSERT INTO public.rainloop_ab_properties VALUES (687, 211, 3, 30, 'Home', 'erik@matthies-gehrmann.de', '', 0, 'erik@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (688, 211, 3, 10, '', 'Matthies 5', '', 0, 'matthies 5');
-INSERT INTO public.rainloop_ab_properties VALUES (689, 212, 3, 15, '', 'Matthies 6', '', 0, 'matthies 6');
-INSERT INTO public.rainloop_ab_properties VALUES (690, 212, 3, 30, 'Home', 'finn@matthies-gehrmann.de', '', 0, 'finn@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (691, 212, 3, 10, '', 'Matthies 6', '', 0, 'matthies 6');
-INSERT INTO public.rainloop_ab_properties VALUES (695, 213, 3, 15, '', 'Matthies 7', '', 0, 'matthies 7');
-INSERT INTO public.rainloop_ab_properties VALUES (696, 213, 3, 30, 'Home', 'mail@matthies-gehrmann.de', '', 0, 'mail@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (697, 213, 3, 10, '', 'Matthies 7', '', 0, 'matthies 7');
-INSERT INTO public.rainloop_ab_properties VALUES (701, 215, 3, 15, '', 'Matthies 8', '', 0, 'matthies 8');
-INSERT INTO public.rainloop_ab_properties VALUES (702, 215, 3, 30, 'Home', 'matthies.finn.erik@matthies-gehrmann.de', '', 0, 'matthies.finn.erik@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (703, 215, 3, 10, '', 'Matthies 8', '', 0, 'matthies 8');
-INSERT INTO public.rainloop_ab_properties VALUES (704, 216, 3, 15, '', 'Matthies 9', '', 0, 'matthies 9');
-INSERT INTO public.rainloop_ab_properties VALUES (705, 216, 3, 30, 'Home', 'matthies.gehrmann@matthies-gehrmann.de', '', 0, 'matthies.gehrmann@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (706, 216, 3, 10, '', 'Matthies 9', '', 0, 'matthies 9');
-INSERT INTO public.rainloop_ab_properties VALUES (707, 214, 3, 15, '', 'Matthies 10', '', 0, 'matthies 10');
-INSERT INTO public.rainloop_ab_properties VALUES (708, 214, 3, 30, 'Home', 'matthies.finn.erik.gehrmann@matthies-gehrmann.de', '', 0, 'matthies.finn.erik.gehrmann@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (709, 214, 3, 10, '', 'Matthies 10', '', 0, 'matthies 10');
-INSERT INTO public.rainloop_ab_properties VALUES (710, 217, 3, 15, '', 'Matthies 11', '', 0, 'matthies 11');
-INSERT INTO public.rainloop_ab_properties VALUES (711, 217, 3, 30, 'Home', 'matthies@matthies-gehrmann.de', '', 0, 'matthies@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (712, 217, 3, 10, '', 'Matthies 11', '', 0, 'matthies 11');
-INSERT INTO public.rainloop_ab_properties VALUES (713, 218, 3, 15, '', 'Matthies 12', '', 0, 'matthies 12');
-INSERT INTO public.rainloop_ab_properties VALUES (714, 218, 3, 30, 'Home', 'mfe.gehrmann@matthies-gehrmann.de', '', 0, 'mfe.gehrmann@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (715, 218, 3, 10, '', 'Matthies 12', '', 0, 'matthies 12');
-INSERT INTO public.rainloop_ab_properties VALUES (716, 219, 3, 15, '', 'Matthies 13', '', 0, 'matthies 13');
-INSERT INTO public.rainloop_ab_properties VALUES (717, 219, 3, 30, 'Home', 'mfeg@matthies-gehrmann.de mfe@matthies-gehrmann.de', '', 0, 'mfeg@matthies-gehrmann.de mfe@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (718, 219, 3, 10, '', 'Matthies 13', '', 0, 'matthies 13');
-INSERT INTO public.rainloop_ab_properties VALUES (719, 220, 3, 15, '', 'Matthies 14', '', 0, 'matthies 14');
-INSERT INTO public.rainloop_ab_properties VALUES (720, 220, 3, 30, 'Home', 'mfe@matthies-gehrmann.de', '', 0, 'mfe@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (721, 220, 3, 10, '', 'Matthies 14', '', 0, 'matthies 14');
-INSERT INTO public.rainloop_ab_properties VALUES (722, 221, 3, 15, '', 'Matthies 15', '', 0, 'matthies 15');
-INSERT INTO public.rainloop_ab_properties VALUES (723, 221, 3, 30, 'Home', 'm.gehrmann@matthies-gehrmann.de', '', 0, 'm.gehrmann@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (657, 204, 4, 30, 'Home', 'e-mail@lasse-gehrmann.de', '', 19, 'e-mail@lasse-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (648, 202, 4, 30, 'Home', 'email@ole-b-rosentreter.de', '', 36, 'email@ole-b-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (726, 222, 3, 30, 'Home', 'm.g@matthies-gehrmann.de', '', 0, 'm.g@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (727, 222, 3, 10, '', 'Matthies 16', '', 0, 'matthies 16');
-INSERT INTO public.rainloop_ab_properties VALUES (728, 223, 3, 15, '', 'Matthies 17', '', 0, 'matthies 17');
-INSERT INTO public.rainloop_ab_properties VALUES (729, 223, 3, 30, 'Home', 'mg@matthies-gehrmann.de post@matthies-gehrmann.de', '', 0, 'mg@matthies-gehrmann.de post@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (730, 223, 3, 10, '', 'Matthies 17', '', 0, 'matthies 17');
-INSERT INTO public.rainloop_ab_properties VALUES (732, 224, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (733, 224, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (734, 224, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (779, 241, 2, 30, '', 'cora.schuelen@gmx.net', '', 3, 'cora.schuelen@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (736, 225, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (737, 225, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (738, 225, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (805, 248, 4, 30, 'Home', 'uirosentreter@t-online.de', '', 1, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (773, 238, 2, 30, '', 'Coaching-jaiser@web.de', '', 5, 'coaching-jaiser@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (740, 226, 2, 15, '', 'Schneider,', '', 0, 'schneider,');
-INSERT INTO public.rainloop_ab_properties VALUES (741, 226, 2, 16, '', 'Melanie', '', 0, 'melanie');
-INSERT INTO public.rainloop_ab_properties VALUES (742, 226, 2, 10, '', 'Schneider, Melanie', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (781, 242, 2, 30, '', 'sabine.mauermann@t-online.de', '', 14, 'sabine.mauermann@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (755, 232, 2, 30, '', 'hello@nicole-baumgarten.com', '', 21, 'hello@nicole-baumgarten.com');
-INSERT INTO public.rainloop_ab_properties VALUES (744, 227, 2, 15, '', 'Alsen,', '', 0, 'alsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (745, 227, 2, 16, '', 'Inken', '', 0, 'inken');
-INSERT INTO public.rainloop_ab_properties VALUES (746, 227, 2, 10, '', 'Alsen, Inken', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (743, 227, 2, 30, '', 'alsen@uni-flensburg.de', '', 1, 'alsen@uni-flensburg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (748, 228, 2, 10, '', 'mitgliederbetreuung@fasi-amb.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (750, 229, 2, 10, '', 'fasi.mitgliederbetreuung@web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (747, 228, 2, 30, '', 'mitgliederbetreuung@fasi-amb.com', '', 1, 'mitgliederbetreuung@fasi-amb.com');
-INSERT INTO public.rainloop_ab_properties VALUES (749, 229, 2, 30, '', 'fasi.mitgliederbetreuung@web.de', '', 1, 'fasi.mitgliederbetreuung@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (752, 230, 2, 10, '', 'service@dlz-limburg.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (751, 230, 2, 30, '', 'service@dlz-limburg.de', '', 1, 'service@dlz-limburg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (754, 231, 2, 10, '', 'mike.fischer@mikefischer.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (753, 231, 2, 30, '', 'mike.fischer@mikefischer.de', '', 1, 'mike.fischer@mikefischer.de');
-INSERT INTO public.rainloop_ab_properties VALUES (756, 232, 2, 10, '', 'hello@nicole-baumgarten.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (758, 233, 2, 15, '', 'Nicole', '', 0, 'nicole');
-INSERT INTO public.rainloop_ab_properties VALUES (759, 233, 2, 16, '', 'B. | Andalusien PRIVAT', '', 0, 'b. | andalusien privat');
-INSERT INTO public.rainloop_ab_properties VALUES (760, 233, 2, 10, '', 'Nicole B. | Andalusien PRIVAT', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (731, 224, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 8, 'jams_o_donnell@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (762, 234, 2, 10, '', 'info@die-kuendigungsschutzkanzlei.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (764, 235, 2, 15, '', 'Red', '', 0, 'red');
-INSERT INTO public.rainloop_ab_properties VALUES (765, 235, 2, 16, '', 'Elephant GmbH', '', 0, 'elephant gmbh');
-INSERT INTO public.rainloop_ab_properties VALUES (766, 235, 2, 10, '', 'Red Elephant GmbH', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (790, 245, 2, 15, '', 'Manuela', '', 0, 'manuela');
-INSERT INTO public.rainloop_ab_properties VALUES (768, 236, 2, 10, '', 'henkelmann@die-kuendigungsschutzkanzlei.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (778, 240, 4, 10, '', 'kontakt@laktatnebel.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (761, 234, 2, 30, '', 'info@die-kuendigungsschutzkanzlei.de', '', 3, 'info@die-kuendigungsschutzkanzlei.de');
-INSERT INTO public.rainloop_ab_properties VALUES (770, 237, 2, 15, '', 'CHECK24', '', 0, 'check24');
-INSERT INTO public.rainloop_ab_properties VALUES (771, 237, 2, 16, '', 'Mietwagen Kundenservice', '', 0, 'mietwagen kundenservice');
-INSERT INTO public.rainloop_ab_properties VALUES (772, 237, 2, 10, '', 'CHECK24 Mietwagen Kundenservice', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (769, 237, 2, 30, '', 'kundenservice-14998944@mietwagen.check24.de', '', 1, 'kundenservice-14998944@mietwagen.check24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (774, 238, 2, 10, '', 'Coaching-jaiser@web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (791, 245, 2, 16, '', 'Bäuerlein', '', 0, 'bäuerlein');
-INSERT INTO public.rainloop_ab_properties VALUES (776, 239, 2, 10, '', 'Coaching-jaiser@web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (777, 240, 4, 30, '', 'kontakt@laktatnebel.de', '', 1, 'kontakt@laktatnebel.de');
-INSERT INTO public.rainloop_ab_properties VALUES (670, 207, 2, 30, '', 'mester@uke.de', '', 4, 'mester@uke.de');
-INSERT INTO public.rainloop_ab_properties VALUES (763, 235, 2, 30, '', 'info@redelephant.de', '', 2, 'info@redelephant.de');
-INSERT INTO public.rainloop_ab_properties VALUES (780, 241, 2, 10, '', 'cora.schuelen@gmx.net', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (735, 225, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 7, 'jams_o_donnell@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (782, 242, 2, 10, '', 'sabine.mauermann@t-online.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (792, 245, 2, 10, '', 'Manuela Bäuerlein', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (784, 243, 2, 15, '', 'Prof.', '', 0, 'prof.');
-INSERT INTO public.rainloop_ab_properties VALUES (785, 243, 2, 16, '', 'Gyula Szabó', '', 0, 'gyula szabó');
-INSERT INTO public.rainloop_ab_properties VALUES (786, 243, 2, 10, '', 'Prof. Gyula Szabó', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (783, 243, 2, 30, '', 'gyula.szabo.prf@mcdaniel.hu', '', 1, 'gyula.szabo.prf@mcdaniel.hu');
-INSERT INTO public.rainloop_ab_properties VALUES (767, 236, 2, 30, '', 'henkelmann@die-kuendigungsschutzkanzlei.de', '', 7, 'henkelmann@die-kuendigungsschutzkanzlei.de');
-INSERT INTO public.rainloop_ab_properties VALUES (739, 226, 2, 30, '', 'melanie.schneider@dataport.de', '', 12, 'melanie.schneider@dataport.de');
-INSERT INTO public.rainloop_ab_properties VALUES (788, 244, 2, 10, '', 'kenner@bwt.uni-stuttgart.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (799, 247, 4, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (787, 244, 2, 30, '', 'kenner@bwt.uni-stuttgart.de', '', 2, 'kenner@bwt.uni-stuttgart.de');
-INSERT INTO public.rainloop_ab_properties VALUES (800, 247, 4, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (795, 246, 4, 15, '', 'Anita', '', 0, 'anita');
-INSERT INTO public.rainloop_ab_properties VALUES (796, 246, 4, 16, '', 'Meyer', '', 0, 'meyer');
-INSERT INTO public.rainloop_ab_properties VALUES (798, 246, 4, 10, '', 'Anita Meyer', '', 0, 'anita meyer');
-INSERT INTO public.rainloop_ab_properties VALUES (801, 247, 4, 30, 'Home', 'email@ina-rosentreter.de', '', 0, 'email@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (802, 247, 4, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (803, 248, 4, 15, '', 'Udo und Irmtraud', '', 0, 'udo und irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (804, 248, 4, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (806, 248, 4, 10, '', 'Udo und Irmtraud Rosentreter', '', 0, 'udo und irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (797, 246, 4, 30, '', 'anita--meyer@t-online.de', '', 2, 'anita--meyer@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (808, 249, 2, 10, '', 'linda.auert@iass-potsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (807, 249, 2, 30, '', 'linda.auert@iass-potsdam.de', '', 1, 'linda.auert@iass-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (757, 233, 2, 30, '', 'privat@nicole-baumgarten.com', '', 3, 'privat@nicole-baumgarten.com');
-INSERT INTO public.rainloop_ab_properties VALUES (775, 239, 2, 30, '', 'Coaching-jaiser@web.de', '', 4, 'coaching-jaiser@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (810, 250, 2, 10, '', 'bewerbung-stabsstelle-civis@zv.uni-tuebingen.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (812, 251, 2, 10, '', 'cora.schuelen@gmx.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (811, 251, 2, 30, '', 'cora.schuelen@gmx.de', '', 1, 'cora.schuelen@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (789, 245, 2, 30, '', 'manuela.baeuerlein+j5dmdf@karriere.service.th-nuernberg.de', '', 2, 'manuela.baeuerlein+j5dmdf@karriere.service.th-nuernberg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (814, 252, 2, 10, '', 'bewerbung@leuphana.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (854, 266, 2, 30, '', 'service@mentorverlag.de', '', 1, 'service@mentorverlag.de');
-INSERT INTO public.rainloop_ab_properties VALUES (816, 253, 2, 15, '', 'Auert,', '', 0, 'auert,');
-INSERT INTO public.rainloop_ab_properties VALUES (817, 253, 2, 16, '', 'Linda', '', 0, 'linda');
-INSERT INTO public.rainloop_ab_properties VALUES (818, 253, 2, 10, '', 'Auert, Linda', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (876, 275, 2, 30, '', 'ajuenemann@oxfam.de', '', 1, 'ajuenemann@oxfam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (809, 250, 2, 30, '', 'bewerbung-stabsstelle-civis@zv.uni-tuebingen.de', '', 2, 'bewerbung-stabsstelle-civis@zv.uni-tuebingen.de');
-INSERT INTO public.rainloop_ab_properties VALUES (813, 252, 2, 30, '', 'bewerbung@leuphana.de', '', 2, 'bewerbung@leuphana.de');
-INSERT INTO public.rainloop_ab_properties VALUES (820, 254, 2, 15, '', 'Christina', '', 0, 'christina');
-INSERT INTO public.rainloop_ab_properties VALUES (821, 254, 2, 16, '', 'Scholz', '', 0, 'scholz');
-INSERT INTO public.rainloop_ab_properties VALUES (822, 254, 2, 10, '', 'Christina Scholz', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (819, 254, 2, 30, '', 'christina.scholz+8qw0r1@karriere.service.th-nuernberg.de', '', 1, 'christina.scholz+8qw0r1@karriere.service.th-nuernberg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (824, 255, 2, 10, '', 'jakob.meyer@iass-potsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (849, 264, 2, 30, '', 'buero@die-kuendigungsschutzkanzlei.de', '', 5, 'buero@die-kuendigungsschutzkanzlei.de');
-INSERT INTO public.rainloop_ab_properties VALUES (826, 256, 2, 15, '', 'Auert,', '', 0, 'auert,');
-INSERT INTO public.rainloop_ab_properties VALUES (827, 256, 2, 16, '', 'Linda', '', 0, 'linda');
-INSERT INTO public.rainloop_ab_properties VALUES (828, 256, 2, 10, '', 'Auert, Linda', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (815, 253, 2, 30, '', 'Linda.Auert@iass-potsdam.de', '', 4, 'linda.auert@iass-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (829, 257, 4, 30, '', 'privat@matthies-gehrmann.de', '', 3, 'privat@matthies-gehrmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (830, 257, 4, 10, '', 'privat@matthies-gehrmann.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (832, 258, 2, 10, '', 'bewerbungen@uni-hamburg.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (859, 267, 2, 10, '', 'service@buecherhallen.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1234, 376, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (834, 259, 2, 15, '', 'Matthias', '', 0, 'matthias');
-INSERT INTO public.rainloop_ab_properties VALUES (835, 259, 2, 16, '', 'Becker', '', 0, 'becker');
-INSERT INTO public.rainloop_ab_properties VALUES (836, 259, 2, 10, '', 'Matthias Becker', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (858, 267, 2, 30, '', 'service@buecherhallen.de', '', 1, 'service@buecherhallen.de');
-INSERT INTO public.rainloop_ab_properties VALUES (838, 260, 2, 10, '', 'yvonne.ewen@gmx.net', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (837, 260, 2, 30, '', 'yvonne.ewen@gmx.net', '', 1, 'yvonne.ewen@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (840, 261, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (841, 261, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (842, 261, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (823, 255, 2, 30, '', 'jakob.meyer@iass-potsdam.de', '', 2, 'jakob.meyer@iass-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (846, 263, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (847, 263, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (848, 263, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (864, 270, 2, 30, '', 'hello@bodymindsoulfood.info', '', 5, 'hello@bodymindsoulfood.info');
-INSERT INTO public.rainloop_ab_properties VALUES (839, 261, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 6, 'jams_o_donnell@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (850, 264, 2, 15, '', 'Büro', '', 0, 'büro');
-INSERT INTO public.rainloop_ab_properties VALUES (851, 264, 2, 10, '', 'Büro', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (861, 268, 2, 10, '', 'info@sportspass.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (860, 268, 2, 30, '', 'info@sportspass.de', '', 1, 'info@sportspass.de');
-INSERT INTO public.rainloop_ab_properties VALUES (833, 259, 2, 30, '', 'matthias.becker@leuphana.de', '', 4, 'matthias.becker@leuphana.de');
-INSERT INTO public.rainloop_ab_properties VALUES (831, 258, 2, 30, '', 'bewerbungen@uni-hamburg.de', '', 2, 'bewerbungen@uni-hamburg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (853, 265, 2, 10, '', 'hamburg.015-OS@arbeitsagentur.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (852, 265, 2, 30, '', 'hamburg.015-OS@arbeitsagentur.de', '', 1, 'hamburg.015-os@arbeitsagentur.de');
-INSERT INTO public.rainloop_ab_properties VALUES (855, 266, 2, 15, '', 'Mentor', '', 0, 'mentor');
-INSERT INTO public.rainloop_ab_properties VALUES (856, 266, 2, 16, '', 'Verlag Berlin', '', 0, 'verlag berlin');
-INSERT INTO public.rainloop_ab_properties VALUES (857, 266, 2, 10, '', 'Mentor Verlag Berlin', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (863, 269, 2, 10, '', 'info@ht16.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (862, 269, 2, 30, '', 'info@ht16.de', '', 1, 'info@ht16.de');
-INSERT INTO public.rainloop_ab_properties VALUES (865, 270, 2, 15, '', 'Nicole', '', 0, 'nicole');
-INSERT INTO public.rainloop_ab_properties VALUES (866, 270, 2, 16, '', 'Baumgarten', '', 0, 'baumgarten');
-INSERT INTO public.rainloop_ab_properties VALUES (867, 270, 2, 10, '', 'Nicole Baumgarten', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (875, 274, 2, 10, '', 'jana.kaehler@ht16.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (869, 271, 2, 10, '', 'raa70@yandex.ru', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (868, 271, 2, 30, '', 'raa70@yandex.ru', '', 1, 'raa70@yandex.ru');
-INSERT INTO public.rainloop_ab_properties VALUES (871, 272, 2, 10, '', 'bestellung@platinumeurope.biz', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (881, 276, 2, 15, '', 'Killing,', '', 0, 'killing,');
-INSERT INTO public.rainloop_ab_properties VALUES (882, 276, 2, 16, '', 'Sabine', '', 0, 'sabine');
-INSERT INTO public.rainloop_ab_properties VALUES (873, 273, 2, 10, '', 'info@hammer-kirche.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (872, 273, 2, 30, '', 'info@hammer-kirche.de', '', 2, 'info@hammer-kirche.de');
-INSERT INTO public.rainloop_ab_properties VALUES (874, 274, 2, 30, '', 'jana.kaehler@ht16.de', '', 2, 'jana.kaehler@ht16.de');
-INSERT INTO public.rainloop_ab_properties VALUES (870, 272, 2, 30, '', 'bestellung@platinumeurope.biz', '', 4, 'bestellung@platinumeurope.biz');
-INSERT INTO public.rainloop_ab_properties VALUES (845, 263, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 5, 'jams_o_donnell@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (877, 275, 2, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (878, 275, 2, 16, '', 'Jünemann', '', 0, 'jünemann');
-INSERT INTO public.rainloop_ab_properties VALUES (879, 275, 2, 10, '', 'Alexandra Jünemann', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (883, 276, 2, 10, '', 'Killing, Sabine', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (880, 276, 2, 30, '', 'Sabine.Killing@iass-potsdam.de', '', 3, 'sabine.killing@iass-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (885, 277, 2, 15, '', 'Termin_Alternative', '', 0, 'termin_alternative');
-INSERT INTO public.rainloop_ab_properties VALUES (886, 277, 2, 10, '', 'Termin_Alternative', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (884, 277, 2, 30, '', 'immobilienanbieter.exp.d04a9c6cab2841b5b33adf5f66e9a3ff@nachrichten.immobilienscout24.de', '', 1, 'immobilienanbieter.exp.d04a9c6cab2841b5b33adf5f66e9a3ff@nachrichten.immobilienscout24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (888, 278, 2, 15, '', 'Karola', '', 0, 'karola');
-INSERT INTO public.rainloop_ab_properties VALUES (889, 278, 2, 16, '', 'Weise', '', 0, 'weise');
-INSERT INTO public.rainloop_ab_properties VALUES (890, 278, 2, 10, '', 'Karola Weise', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (887, 278, 2, 30, '', 'karola.weise01@gmail.com', '', 2, 'karola.weise01@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (892, 279, 2, 10, '', 'scheffczyk@skaj.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1235, 376, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1236, 376, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (894, 280, 2, 10, '', 'sam.sabzian@orange-immobilien.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (896, 281, 2, 15, '', 'Haymo', '', 0, 'haymo');
-INSERT INTO public.rainloop_ab_properties VALUES (897, 281, 2, 16, '', 'Grossmann', '', 0, 'grossmann');
-INSERT INTO public.rainloop_ab_properties VALUES (898, 281, 2, 10, '', 'Haymo Grossmann', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (931, 291, 2, 30, '', 'Sabine.Killing@iass-potsdam.de', '', 2, 'sabine.killing@iass-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (900, 282, 4, 10, '', 'gehrmann.lasse@gmail.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (935, 292, 2, 30, '', 'Sabine.Killing@iass-potsdam.de', '', 1, 'sabine.killing@iass-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (951, 296, 2, 30, '', 'ls@sandburg-projekt.de', '', 2, 'ls@sandburg-projekt.de');
-INSERT INTO public.rainloop_ab_properties VALUES (902, 283, 2, 15, '', 'Kresse,', '', 0, 'kresse,');
-INSERT INTO public.rainloop_ab_properties VALUES (903, 283, 2, 16, '', 'Lars', '', 0, 'lars');
-INSERT INTO public.rainloop_ab_properties VALUES (904, 283, 2, 10, '', 'Kresse, Lars', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (906, 284, 2, 15, '', 'Kresse,', '', 0, 'kresse,');
-INSERT INTO public.rainloop_ab_properties VALUES (907, 284, 2, 16, '', 'Lars', '', 0, 'lars');
-INSERT INTO public.rainloop_ab_properties VALUES (908, 284, 2, 10, '', 'Kresse, Lars', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (940, 293, 2, 15, '', 'Erwin', '', 0, 'erwin');
-INSERT INTO public.rainloop_ab_properties VALUES (941, 293, 2, 16, '', 'Nowotny', '', 0, 'nowotny');
-INSERT INTO public.rainloop_ab_properties VALUES (910, 285, 2, 15, '', 'Kresse,', '', 0, 'kresse,');
-INSERT INTO public.rainloop_ab_properties VALUES (911, 285, 2, 16, '', 'Lars', '', 0, 'lars');
-INSERT INTO public.rainloop_ab_properties VALUES (912, 285, 2, 10, '', 'Kresse, Lars', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (942, 293, 2, 10, '', 'Erwin Nowotny', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (939, 293, 2, 30, '', 'erwin.nowotny@gmx.de', '', 1, 'erwin.nowotny@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (914, 286, 2, 15, '', 'Kresse,', '', 0, 'kresse,');
-INSERT INTO public.rainloop_ab_properties VALUES (915, 286, 2, 16, '', 'Lars', '', 0, 'lars');
-INSERT INTO public.rainloop_ab_properties VALUES (916, 286, 2, 10, '', 'Kresse, Lars', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (944, 294, 2, 15, '', 'Auert,', '', 0, 'auert,');
-INSERT INTO public.rainloop_ab_properties VALUES (945, 294, 2, 16, '', 'Linda', '', 0, 'linda');
-INSERT INTO public.rainloop_ab_properties VALUES (946, 294, 2, 10, '', 'Auert, Linda', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (918, 287, 2, 15, '', 'Kresse,', '', 0, 'kresse,');
-INSERT INTO public.rainloop_ab_properties VALUES (919, 287, 2, 16, '', 'Lars', '', 0, 'lars');
-INSERT INTO public.rainloop_ab_properties VALUES (920, 287, 2, 10, '', 'Kresse, Lars', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (901, 283, 2, 30, '', 'Lars.Kresse@capera-immobilien.de', '', 5, 'lars.kresse@capera-immobilien.de');
-INSERT INTO public.rainloop_ab_properties VALUES (905, 284, 2, 30, '', 'Lars.Kresse@capera-immobilien.de', '', 4, 'lars.kresse@capera-immobilien.de');
-INSERT INTO public.rainloop_ab_properties VALUES (909, 285, 2, 30, '', 'Lars.Kresse@capera-immobilien.de', '', 3, 'lars.kresse@capera-immobilien.de');
-INSERT INTO public.rainloop_ab_properties VALUES (913, 286, 2, 30, '', 'Lars.Kresse@capera-immobilien.de', '', 2, 'lars.kresse@capera-immobilien.de');
-INSERT INTO public.rainloop_ab_properties VALUES (917, 287, 2, 30, '', 'Lars.Kresse@capera-immobilien.de', '', 1, 'lars.kresse@capera-immobilien.de');
-INSERT INTO public.rainloop_ab_properties VALUES (891, 279, 2, 30, '', 'scheffczyk@skaj.de', '', 2, 'scheffczyk@skaj.de');
-INSERT INTO public.rainloop_ab_properties VALUES (895, 281, 2, 30, '', 'haymo.grossmann@wunderflats.com', '', 2, 'haymo.grossmann@wunderflats.com');
-INSERT INTO public.rainloop_ab_properties VALUES (922, 288, 2, 15, '', 'Immobilien', '', 0, 'immobilien');
-INSERT INTO public.rainloop_ab_properties VALUES (923, 288, 2, 16, '', 'Scheunhornweg', '', 0, 'scheunhornweg');
-INSERT INTO public.rainloop_ab_properties VALUES (924, 288, 2, 10, '', 'Immobilien Scheunhornweg', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (926, 289, 2, 15, '', 'MILA', '', 0, 'mila');
-INSERT INTO public.rainloop_ab_properties VALUES (927, 289, 2, 16, '', 'Hausverwaltung GmbH', '', 0, 'hausverwaltung gmbh');
-INSERT INTO public.rainloop_ab_properties VALUES (928, 289, 2, 10, '', 'MILA Hausverwaltung GmbH', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (925, 289, 2, 30, '', 'immobilienanbieter.exp.0e1eba785f71470c8814ec7699906f16@nachrichten.immobilienscout24.de', '', 1, 'immobilienanbieter.exp.0e1eba785f71470c8814ec7699906f16@nachrichten.immobilienscout24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (932, 291, 2, 15, '', 'Killing,', '', 0, 'killing,');
-INSERT INTO public.rainloop_ab_properties VALUES (933, 291, 2, 16, '', 'Sabine', '', 0, 'sabine');
-INSERT INTO public.rainloop_ab_properties VALUES (934, 291, 2, 10, '', 'Killing, Sabine', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (962, 299, 2, 15, '', 'Michael', '', 0, 'michael');
-INSERT INTO public.rainloop_ab_properties VALUES (921, 288, 2, 30, '', 'immo@scheunhornweg.de', '', 2, 'immo@scheunhornweg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (936, 292, 2, 15, '', 'Killing,', '', 0, 'killing,');
-INSERT INTO public.rainloop_ab_properties VALUES (937, 292, 2, 16, '', 'Sabine', '', 0, 'sabine');
-INSERT INTO public.rainloop_ab_properties VALUES (938, 292, 2, 10, '', 'Killing, Sabine', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (948, 295, 2, 15, '', 'Auert,', '', 0, 'auert,');
-INSERT INTO public.rainloop_ab_properties VALUES (949, 295, 2, 16, '', 'Linda', '', 0, 'linda');
-INSERT INTO public.rainloop_ab_properties VALUES (950, 295, 2, 10, '', 'Auert, Linda', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (825, 256, 2, 30, '', 'Linda.Auert@iass-potsdam.de', '', 3, 'linda.auert@iass-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (943, 294, 2, 30, '', 'Linda.Auert@iass-potsdam.de', '', 2, 'linda.auert@iass-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (947, 295, 2, 30, '', 'Linda.Auert@iass-potsdam.de', '', 1, 'linda.auert@iass-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (952, 296, 2, 15, '', 'Liane', '', 0, 'liane');
-INSERT INTO public.rainloop_ab_properties VALUES (953, 296, 2, 16, '', 'Seedorf', '', 0, 'seedorf');
-INSERT INTO public.rainloop_ab_properties VALUES (954, 296, 2, 10, '', 'Liane Seedorf', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (969, 301, 2, 30, '', 'mariette.kuehnelt@hsba.de', '', 1, 'mariette.kuehnelt@hsba.de');
-INSERT INTO public.rainloop_ab_properties VALUES (893, 280, 2, 30, '', 'sam.sabzian@orange-immobilien.de', '', 2, 'sam.sabzian@orange-immobilien.de');
-INSERT INTO public.rainloop_ab_properties VALUES (955, 297, 4, 15, '', 'lasse', '', 0, 'lasse');
-INSERT INTO public.rainloop_ab_properties VALUES (956, 297, 4, 10, '', 'lasse', '', 0, 'lasse');
-INSERT INTO public.rainloop_ab_properties VALUES (958, 298, 2, 15, '', 'Zalando', '', 0, 'zalando');
-INSERT INTO public.rainloop_ab_properties VALUES (959, 298, 2, 16, '', 'Team', '', 0, 'team');
-INSERT INTO public.rainloop_ab_properties VALUES (960, 298, 2, 10, '', 'Zalando Team', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (957, 298, 2, 30, '', 'nachricht@zalando.de', '', 1, 'nachricht@zalando.de');
-INSERT INTO public.rainloop_ab_properties VALUES (963, 299, 2, 16, '', 'Höbig', '', 0, 'höbig');
-INSERT INTO public.rainloop_ab_properties VALUES (964, 299, 2, 10, '', 'Michael Höbig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (961, 299, 2, 30, '', 'Michael.Hoebig@hsba.de', '', 1, 'michael.hoebig@hsba.de');
-INSERT INTO public.rainloop_ab_properties VALUES (966, 300, 2, 15, '', 'Frank', '', 0, 'frank');
-INSERT INTO public.rainloop_ab_properties VALUES (967, 300, 2, 16, '', 'Franke', '', 0, 'franke');
-INSERT INTO public.rainloop_ab_properties VALUES (968, 300, 2, 10, '', 'Frank Franke', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (965, 300, 2, 30, '', 'ff@t4mg.com', '', 1, 'ff@t4mg.com');
-INSERT INTO public.rainloop_ab_properties VALUES (970, 301, 2, 15, '', 'Mariette', '', 0, 'mariette');
-INSERT INTO public.rainloop_ab_properties VALUES (971, 301, 2, 16, '', 'Kühnelt', '', 0, 'kühnelt');
-INSERT INTO public.rainloop_ab_properties VALUES (972, 301, 2, 10, '', 'Mariette Kühnelt', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (974, 302, 4, 10, '', 'altunmuhammed150@gmail.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (973, 302, 4, 30, '', 'altunmuhammed150@gmail.com', '', 5, 'altunmuhammed150@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (976, 303, 4, 10, '', 'd.natalie@gmx.net', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (899, 282, 4, 30, '', 'gehrmann.lasse@gmail.com', '', 10, 'gehrmann.lasse@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1014, 318, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (1015, 318, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (1016, 318, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (985, 308, 2, 30, '', 'joanna.kanzenbach@hsba.de', '', 8, 'joanna.kanzenbach@hsba.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1018, 319, 2, 10, '', 'kundenservice@pyur.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1013, 318, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 4, 'jams_o_donnell@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (986, 308, 2, 15, '', 'Joanna', '', 0, 'joanna');
-INSERT INTO public.rainloop_ab_properties VALUES (987, 308, 2, 16, '', 'Kanzenbach', '', 0, 'kanzenbach');
-INSERT INTO public.rainloop_ab_properties VALUES (988, 308, 2, 10, '', 'Joanna Kanzenbach', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1020, 320, 2, 10, '', 'BertieWalkleyDH631@yahoo.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1019, 320, 2, 30, '', 'BertieWalkleyDH631@yahoo.com', '', 1, 'bertiewalkleydh631@yahoo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1022, 321, 2, 10, '', 'info@orthopädie-dogan.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (990, 309, 2, 10, '', 'depot52@hes.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1042, 328, 2, 30, '', 'FAHamburgHansa@finanzamt.hamburg.de', '', 1, 'fahamburghansa@finanzamt.hamburg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (992, 310, 2, 10, '', 'ina.rosentreter@iass-potsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (991, 310, 2, 30, '', 'ina.rosentreter@iass-potsdam.de', '', 1, 'ina.rosentreter@iass-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (994, 307, 4, 10, '', 'agagasch@gmx.de', '', 0, 'agagasch@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (993, 307, 4, 30, '', 'agagasch@gmx.de', '', 4, 'agagasch@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (975, 303, 4, 30, '', 'd.natalie@gmx.net', '', 5, 'd.natalie@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (1044, 329, 2, 30, '', 'startpass@triathlondeutschland.de', '', 2, 'startpass@triathlondeutschland.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1011, 317, 2, 30, '', 'Coaching-jaiser@web.de', '', 3, 'coaching-jaiser@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (996, 311, 2, 10, '', 'techem@operativa-berlin.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (995, 311, 2, 30, '', 'techem@operativa-berlin.de', '', 1, 'techem@operativa-berlin.de');
-INSERT INTO public.rainloop_ab_properties VALUES (998, 312, 2, 10, '', 'auftragsbearbeitung@1und1.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (997, 312, 2, 30, '', 'auftragsbearbeitung@1und1.de', '', 1, 'auftragsbearbeitung@1und1.de');
-INSERT INTO public.rainloop_ab_properties VALUES (989, 309, 2, 30, '', 'depot52@hes.de', '', 2, 'depot52@hes.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1000, 313, 2, 10, '', 'tanja.wullenweber@sparda-bank-hamburg.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1029, 324, 2, 30, '', 'heilpraxis@meilenweit-potsdam.de', '', 2, 'heilpraxis@meilenweit-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1002, 314, 2, 10, '', 'buergerservice@rathaus.potsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1001, 314, 2, 30, '', 'buergerservice@rathaus.potsdam.de', '', 1, 'buergerservice@rathaus.potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1004, 315, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (1005, 315, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (1006, 315, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1021, 321, 2, 30, '', 'info@orthopädie-dogan.de', '', 2, 'info@orthopädie-dogan.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1008, 316, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (1009, 316, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (1010, 316, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (423, 123, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 17, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (427, 124, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 16, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1012, 317, 2, 10, '', 'Coaching-jaiser@web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1024, 322, 2, 15, '', 'mare-me.de', '', 0, 'mare-me.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1025, 322, 2, 10, '', 'mare-me.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1023, 322, 2, 30, '', 'info@mare-me.de', '', 1, 'info@mare-me.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1027, 323, 2, 15, '', 'SKLUM', '', 0, 'sklum');
-INSERT INTO public.rainloop_ab_properties VALUES (1028, 323, 2, 10, '', 'SKLUM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1030, 324, 2, 15, '', 'Meilenweit', '', 0, 'meilenweit');
-INSERT INTO public.rainloop_ab_properties VALUES (1031, 324, 2, 16, '', 'Heilpraxis', '', 0, 'heilpraxis');
-INSERT INTO public.rainloop_ab_properties VALUES (1032, 324, 2, 10, '', 'Meilenweit Heilpraxis', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1017, 319, 2, 30, '', 'kundenservice@pyur.com', '', 4, 'kundenservice@pyur.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1034, 325, 2, 15, '', 'LAUFMAUS®', '', 0, 'laufmaus®');
-INSERT INTO public.rainloop_ab_properties VALUES (1035, 325, 2, 10, '', 'LAUFMAUS®', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1033, 325, 2, 30, '', 'info@laufmaus.run', '', 1, 'info@laufmaus.run');
-INSERT INTO public.rainloop_ab_properties VALUES (1037, 326, 2, 15, '', 'Darian', '', 0, 'darian');
-INSERT INTO public.rainloop_ab_properties VALUES (1038, 326, 2, 16, '', 'Schmidt', '', 0, 'schmidt');
-INSERT INTO public.rainloop_ab_properties VALUES (1039, 326, 2, 10, '', 'Darian Schmidt', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1036, 326, 2, 30, '', 'ds@laufmaus.run', '', 1, 'ds@laufmaus.run');
-INSERT INTO public.rainloop_ab_properties VALUES (1041, 327, 2, 10, '', 'rgpd@sklum.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1061, 334, 2, 10, '', 'mail@home-garden24.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1043, 328, 2, 10, '', 'FAHamburgHansa@finanzamt.hamburg.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1045, 329, 2, 10, '', 'startpass@triathlondeutschland.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1047, 330, 2, 15, '', 'CHECK24', '', 0, 'check24');
-INSERT INTO public.rainloop_ab_properties VALUES (1048, 330, 2, 16, '', '- Hausratversicherung', '', 0, '- hausratversicherung');
-INSERT INTO public.rainloop_ab_properties VALUES (1049, 330, 2, 10, '', 'CHECK24 - Hausratversicherung', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1046, 330, 2, 30, '', 'hrv@check24.de', '', 1, 'hrv@check24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1051, 331, 2, 15, '', 'Klatt,', '', 0, 'klatt,');
-INSERT INTO public.rainloop_ab_properties VALUES (1052, 331, 2, 16, '', 'Juliane', '', 0, 'juliane');
-INSERT INTO public.rainloop_ab_properties VALUES (1053, 331, 2, 10, '', 'Klatt, Juliane', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1050, 331, 2, 30, '', 'Juliane.Klatt@rathaus.potsdam.de', '', 1, 'juliane.klatt@rathaus.potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1055, 332, 2, 10, '', 'gewinnspiel@propotsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1054, 332, 2, 30, '', 'gewinnspiel@propotsdam.de', '', 1, 'gewinnspiel@propotsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1057, 333, 2, 15, '', 'Meine', '', 0, 'meine');
-INSERT INTO public.rainloop_ab_properties VALUES (1058, 333, 2, 16, '', 'Wunschleuchte', '', 0, 'wunschleuchte');
-INSERT INTO public.rainloop_ab_properties VALUES (1059, 333, 2, 10, '', 'Meine Wunschleuchte', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1056, 333, 2, 30, '', 'info@meine-wunschleuchte.de', '', 3, 'info@meine-wunschleuchte.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1026, 323, 2, 30, '', 'bestellung@sklum.com', '', 2, 'bestellung@sklum.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1040, 327, 2, 30, '', 'rgpd@sklum.com', '', 2, 'rgpd@sklum.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1060, 334, 2, 30, '', 'mail@home-garden24.de', '', 1, 'mail@home-garden24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1063, 335, 2, 10, '', 'mp-lastschriftservice-ape@amazon.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1062, 335, 2, 30, '', 'mp-lastschriftservice-ape@amazon.de', '', 2, 'mp-lastschriftservice-ape@amazon.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1065, 336, 2, 15, '', '2RadStätte', '', 0, '2radstätte');
-INSERT INTO public.rainloop_ab_properties VALUES (1066, 336, 2, 16, '', 'Potsdam', '', 0, 'potsdam');
-INSERT INTO public.rainloop_ab_properties VALUES (1067, 336, 2, 10, '', '2RadStätte Potsdam', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1064, 336, 2, 30, '', 'info@2radstaette.de', '', 1, 'info@2radstaette.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1069, 337, 2, 10, '', 'Sue.Meylahn@propotsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1068, 337, 2, 30, '', 'Sue.Meylahn@propotsdam.de', '', 1, 'sue.meylahn@propotsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1071, 338, 2, 15, '', 'OTTO', '', 0, 'otto');
-INSERT INTO public.rainloop_ab_properties VALUES (1072, 338, 2, 16, '', '- Kundenservice', '', 0, '- kundenservice');
-INSERT INTO public.rainloop_ab_properties VALUES (1073, 338, 2, 10, '', 'OTTO - Kundenservice', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1105, 350, 2, 30, '', 'info@huk24.de', '', 2, 'info@huk24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1124, 357, 2, 30, '', 'info@huk-coburg.de', '', 1, 'info@huk-coburg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1075, 339, 2, 10, '', 'service@paypal.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1074, 339, 2, 30, '', 'service@paypal.de', '', 1, 'service@paypal.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1099, 348, 2, 30, '', 'noreply@pyur.com', '', 2, 'noreply@pyur.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1077, 340, 2, 10, '', 'info@1und1.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1079, 341, 2, 10, '', 'kunden-service@1und1.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1127, 358, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 9, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1078, 341, 2, 30, '', 'kunden-service@1und1.de', '', 1, 'kunden-service@1und1.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1081, 342, 2, 15, '', 'Westwing', '', 0, 'westwing');
-INSERT INTO public.rainloop_ab_properties VALUES (1082, 342, 2, 10, '', 'Westwing', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1080, 342, 2, 30, '', 'service2-reply@n.westwing.de', '', 1, 'service2-reply@n.westwing.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1084, 343, 2, 15, '', 'DE', '', 0, 'de');
-INSERT INTO public.rainloop_ab_properties VALUES (1085, 343, 2, 16, '', '- Kundendienst - Sklum', '', 0, '- kundendienst - sklum');
-INSERT INTO public.rainloop_ab_properties VALUES (1086, 343, 2, 10, '', 'DE - Kundendienst - Sklum', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1131, 359, 2, 30, '', 'verlaengerung@bibliothek.potsdam.de', '', 1, 'verlaengerung@bibliothek.potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1088, 344, 2, 15, '', 'Westwing', '', 0, 'westwing');
-INSERT INTO public.rainloop_ab_properties VALUES (1089, 344, 2, 16, '', '| Kundenservice', '', 0, '| kundenservice');
-INSERT INTO public.rainloop_ab_properties VALUES (1090, 344, 2, 10, '', 'Westwing | Kundenservice', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1087, 344, 2, 30, '', 'service@westwing.de', '', 1, 'service@westwing.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1092, 345, 2, 10, '', 'post@zeppelin-team.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1091, 345, 2, 30, '', 'post@zeppelin-team.de', '', 1, 'post@zeppelin-team.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1094, 346, 2, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1095, 346, 2, 16, '', 'Krah', '', 0, 'krah');
-INSERT INTO public.rainloop_ab_properties VALUES (1096, 346, 2, 10, '', 'Andrea Krah', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1083, 343, 2, 30, '', 'kundendienst@sklum.com', '', 2, 'kundendienst@sklum.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1098, 347, 2, 10, '', 'hochschulsport@uni-potsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1097, 347, 2, 30, '', 'hochschulsport@uni-potsdam.de', '', 1, 'hochschulsport@uni-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1093, 346, 2, 30, '', 'andrea.krah@zeppelin-team.de', '', 2, 'andrea.krah@zeppelin-team.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1100, 348, 2, 15, '', 'Kundenservice', '', 0, 'kundenservice');
-INSERT INTO public.rainloop_ab_properties VALUES (1101, 348, 2, 10, '', 'Kundenservice', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1107, 351, 2, 30, '', 'service_@news.fitnessfirst.de', '', 3, 'service_@news.fitnessfirst.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1103, 349, 2, 15, '', 'Mike.Fischer@mikefischer.de', '', 0, 'mike.fischer@mikefischer.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1104, 349, 2, 10, '', 'Mike.Fischer@mikefischer.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1102, 349, 2, 30, '', 'Mike.Fischer@mikefischer.de', '', 1, 'mike.fischer@mikefischer.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1106, 350, 2, 10, '', 'info@huk24.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1108, 351, 2, 10, '', 'service_@news.fitnessfirst.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1110, 352, 2, 10, '', 'serviceteam@sparda-bank-hamburg.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1109, 352, 2, 30, '', 'serviceteam@sparda-bank-hamburg.de', '', 1, 'serviceteam@sparda-bank-hamburg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1112, 353, 2, 15, '', 'REAL', '', 0, 'real');
-INSERT INTO public.rainloop_ab_properties VALUES (1113, 353, 2, 16, '', 'Solution Inkasso', '', 0, 'solution inkasso');
-INSERT INTO public.rainloop_ab_properties VALUES (1114, 353, 2, 10, '', 'REAL Solution Inkasso', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1128, 358, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (1116, 354, 2, 15, '', 'Felix', '', 0, 'felix');
-INSERT INTO public.rainloop_ab_properties VALUES (1117, 354, 2, 16, '', 'Remek', '', 0, 'remek');
-INSERT INTO public.rainloop_ab_properties VALUES (1118, 354, 2, 10, '', 'Felix Remek', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1070, 338, 2, 30, '', 'service@otto.de', '', 4, 'service@otto.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1120, 355, 2, 15, '', 'Leo', '', 0, 'leo');
-INSERT INTO public.rainloop_ab_properties VALUES (1121, 355, 2, 10, '', 'Leo', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1115, 354, 2, 30, '', 'felix.remek@zeppelin-team.de', '', 4, 'felix.remek@zeppelin-team.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1123, 356, 2, 10, '', 'info@news.fitnessfirst.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1122, 356, 2, 30, '', 'info@news.fitnessfirst.de', '', 1, 'info@news.fitnessfirst.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1125, 357, 2, 15, '', 'HUK-COBURG', '', 0, 'huk-coburg');
-INSERT INTO public.rainloop_ab_properties VALUES (1126, 357, 2, 10, '', 'HUK-COBURG', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1129, 358, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (1130, 358, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1076, 340, 2, 30, '', 'info@1und1.de', '', 2, 'info@1und1.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1133, 360, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 3, 'jams_o_donnell@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (1111, 353, 2, 30, '', 'inkasso@real-solution.de', '', 3, 'inkasso@real-solution.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1132, 359, 2, 10, '', 'verlaengerung@bibliothek.potsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1134, 360, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (1135, 360, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (1136, 360, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1138, 361, 2, 15, '', 'Johannsen,', '', 0, 'johannsen,');
-INSERT INTO public.rainloop_ab_properties VALUES (1139, 361, 2, 16, '', 'Nina /BDF HAM', '', 0, 'nina /bdf ham');
-INSERT INTO public.rainloop_ab_properties VALUES (1140, 361, 2, 10, '', 'Johannsen, Nina /BDF HAM', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1137, 361, 2, 30, '', 'Nina.Johannsen@beiersdorf.com', '', 1, 'nina.johannsen@beiersdorf.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1142, 362, 2, 10, '', 'Coaching-jaiser@web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (999, 313, 2, 30, '', 'tanja.wullenweber@sparda-bank-hamburg.de', '', 15, 'tanja.wullenweber@sparda-bank-hamburg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1144, 363, 2, 15, '', 'Lale', '', 0, 'lale');
-INSERT INTO public.rainloop_ab_properties VALUES (1145, 363, 2, 10, '', 'Lale', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1143, 363, 2, 30, '', 'Lale.Eckardt@iass-potsdam.de', '', 1, 'lale.eckardt@iass-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1147, 364, 2, 10, '', 's.a.dathe@web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1146, 364, 2, 30, '', 's.a.dathe@web.de', '', 1, 's.a.dathe@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1149, 365, 2, 10, '', 's.a.dathe@gmx.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1141, 362, 2, 30, '', 'Coaching-jaiser@web.de', '', 2, 'coaching-jaiser@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1151, 366, 2, 10, '', 'rebecca.korbach@iass-potsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1150, 366, 2, 30, '', 'rebecca.korbach@iass-potsdam.de', '', 1, 'rebecca.korbach@iass-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1152, 367, 1, 10, '', 'Ana Serrano', '', 0, 'ana serrano');
-INSERT INTO public.rainloop_ab_properties VALUES (1153, 367, 1, 16, '', 'Serrano', '', 0, 'serrano');
-INSERT INTO public.rainloop_ab_properties VALUES (1154, 367, 1, 15, '', 'Ana', '', 0, 'ana');
-INSERT INTO public.rainloop_ab_properties VALUES (1155, 367, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1156, 367, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1157, 367, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1158, 367, 1, 30, 'OTHER', 'mice2@fuerte-group.com', '', 0, 'mice2@fuerte-group.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1159, 367, 1, 9, '', '013c2191-019a-457f-b19a-324afe267dc7', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1160, 368, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1161, 368, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1162, 368, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1163, 368, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1164, 368, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1165, 368, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1166, 368, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1167, 368, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1168, 368, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1169, 368, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1170, 368, 1, 9, '', '00f0a0e9-f451-41f3-8e44-6373124400ae', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1171, 369, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1172, 369, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1173, 369, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1174, 369, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1175, 369, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1176, 369, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1177, 369, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1178, 369, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1179, 369, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1180, 369, 1, 9, '', '3610453e-cefe-4fdb-91df-360a86763818', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1181, 370, 1, 10, '', 'Werner Goller', '', 0, 'werner goller');
-INSERT INTO public.rainloop_ab_properties VALUES (1182, 370, 1, 16, '', 'Goller', '', 0, 'goller');
-INSERT INTO public.rainloop_ab_properties VALUES (1183, 370, 1, 15, '', 'Werner', '', 0, 'werner');
-INSERT INTO public.rainloop_ab_properties VALUES (1184, 370, 1, 31, 'cell', '0172 8524424', '01728524424', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1185, 370, 1, 9, '', 'b5375824-5455-45e5-9683-52bcef90774d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1186, 371, 1, 10, '', 'Andy B07 Vereinsgaststätte', '', 0, 'andy b07 vereinsgaststätte');
-INSERT INTO public.rainloop_ab_properties VALUES (1187, 371, 1, 16, '', 'Vereinsgaststätte', '', 0, 'vereinsgaststätte');
-INSERT INTO public.rainloop_ab_properties VALUES (1188, 371, 1, 15, '', 'Andy', '', 0, 'andy');
-INSERT INTO public.rainloop_ab_properties VALUES (1189, 371, 1, 17, '', 'B07', '', 0, 'b07');
-INSERT INTO public.rainloop_ab_properties VALUES (1190, 371, 1, 31, 'x-mobil', '+49 170 2311188', '491702311188', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1191, 371, 1, 9, '', '3cbd93a7-ca28-483a-89c2-bc798b5469b2', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1192, 372, 1, 10, '', 'Ana Serrano', '', 0, 'ana serrano');
-INSERT INTO public.rainloop_ab_properties VALUES (1193, 372, 1, 16, '', 'Serrano', '', 0, 'serrano');
-INSERT INTO public.rainloop_ab_properties VALUES (1194, 372, 1, 15, '', 'Ana', '', 0, 'ana');
-INSERT INTO public.rainloop_ab_properties VALUES (1195, 372, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1196, 372, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1197, 372, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1198, 372, 1, 30, 'OTHER', 'mice2@fuerte-group.com', '', 0, 'mice2@fuerte-group.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1199, 372, 1, 9, '', 'a5862cf0-7fe0-429f-8f3a-7d6d5573a31f', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1200, 373, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1201, 373, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1202, 373, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1203, 373, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1204, 373, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1205, 373, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1206, 373, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1207, 373, 1, 32, 'HOME', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
-INSERT INTO public.rainloop_ab_properties VALUES (1208, 373, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1209, 373, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1210, 373, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1211, 373, 1, 9, '', '3a5e188c-a3c6-401c-8747-06ee4e19958a', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1212, 374, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1213, 374, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1214, 374, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1215, 374, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1216, 374, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1217, 374, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1218, 374, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1219, 374, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1220, 374, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1221, 374, 1, 9, '', 'd69bb7b7-ffd2-480a-b094-35199ca378e2', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1222, 375, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1223, 375, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1224, 375, 1, 15, '', 'Andi', '', 0, 'andi');
-INSERT INTO public.rainloop_ab_properties VALUES (1225, 375, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1226, 375, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1227, 375, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1228, 375, 1, 31, 'CELL', '+49 179 1255149', '491791255149', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1229, 375, 1, 9, '', '51d08038-b4a0-49d4-b560-b4e9ad717412', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1230, 376, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1231, 376, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1232, 376, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1233, 376, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1148, 365, 2, 30, '', 's.a.dathe@gmx.de', '', 2, 's.a.dathe@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1237, 376, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1238, 376, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1239, 376, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1240, 376, 1, 9, '', '0ba38344-e5f8-4c60-bdad-ce823ff524fe', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1241, 377, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1242, 377, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1243, 377, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1244, 377, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1245, 377, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1246, 377, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1247, 377, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1248, 377, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1249, 377, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1250, 377, 1, 9, '', '82882df2-7da8-462e-840b-a06561931314', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1251, 378, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1252, 378, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1253, 378, 1, 15, '', 'Andi', '', 0, 'andi');
-INSERT INTO public.rainloop_ab_properties VALUES (1254, 378, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1255, 378, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1256, 378, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1257, 378, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1258, 378, 1, 9, '', '927b1576-1b70-4d9e-af4a-e26257fa56ce', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1259, 379, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1260, 379, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1261, 379, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1262, 379, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1263, 379, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1264, 379, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1265, 379, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1266, 379, 1, 9, '', '468052fe-2a45-456b-8a78-32c8c1ad9b8e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1267, 380, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1268, 380, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1269, 380, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1270, 380, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1271, 380, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1272, 380, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1273, 380, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1274, 380, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1275, 380, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1276, 380, 1, 9, '', '97649b47-3d1b-4d3d-9930-f3485e815a55', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1277, 381, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1278, 381, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1279, 381, 1, 15, '', 'Andi', '', 0, 'andi');
-INSERT INTO public.rainloop_ab_properties VALUES (1280, 381, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1281, 381, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1282, 381, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1283, 381, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1284, 381, 1, 9, '', '2f6c6a7d-f182-419d-91b4-efe1019a9eb5', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1285, 382, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1286, 382, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1287, 382, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1288, 382, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1289, 382, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1290, 382, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1291, 382, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1292, 382, 1, 32, 'HOME', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
-INSERT INTO public.rainloop_ab_properties VALUES (1293, 382, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1294, 382, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1295, 382, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1296, 382, 1, 9, '', '59d7dd05-bf61-4cc4-9e15-e93c77de3c0f', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1297, 383, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1298, 383, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1299, 383, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1300, 383, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1301, 383, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1302, 383, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1303, 383, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1304, 383, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1305, 383, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1306, 383, 1, 9, '', '7c7d9433-2e96-471e-94cd-c500adcf4b3c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1307, 384, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1308, 384, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1309, 384, 1, 15, '', 'Andi', '', 0, 'andi');
-INSERT INTO public.rainloop_ab_properties VALUES (1310, 384, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1311, 384, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1312, 384, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1313, 384, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1314, 384, 1, 9, '', '89eb89c6-1ab8-4032-8755-87d7b299e7eb', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1315, 385, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1316, 385, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1317, 385, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1318, 385, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1319, 385, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1320, 385, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1321, 385, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1322, 385, 1, 9, '', 'e5151e86-247f-4471-8020-3b01c5f0b16c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1323, 386, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1324, 386, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1325, 386, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1326, 386, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1327, 386, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1328, 386, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1329, 386, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1330, 386, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1331, 386, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1332, 386, 1, 9, '', '59ff2320-4b65-4bce-95cc-f17449dde506', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1333, 387, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1334, 387, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1335, 387, 1, 15, '', 'Andi', '', 0, 'andi');
-INSERT INTO public.rainloop_ab_properties VALUES (1336, 387, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1339, 387, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1340, 387, 1, 9, '', 'f27bf9b7-e55c-4a17-bb75-6ceaf9f97626', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1341, 388, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1342, 388, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1343, 388, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1344, 388, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1345, 388, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1346, 388, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1347, 388, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1348, 388, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1349, 388, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1350, 388, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1351, 388, 1, 9, '', '8a8ec107-5aab-4237-86ee-1c18a7c6c47a', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1352, 389, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1353, 389, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1354, 389, 1, 15, '', 'Andi', '', 0, 'andi');
-INSERT INTO public.rainloop_ab_properties VALUES (1355, 389, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1356, 389, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1357, 389, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1358, 389, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1359, 389, 1, 9, '', 'a5f9cd10-0d17-4c00-afed-6ce62191feb4', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1360, 390, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1361, 390, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1362, 390, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1363, 390, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1364, 390, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1365, 390, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1366, 390, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1367, 390, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1368, 390, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1369, 390, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1370, 390, 1, 9, '', 'dc2d5b29-5ed5-4c8a-83d5-0831db5017fc', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1371, 391, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1372, 391, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1373, 391, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1374, 391, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1375, 391, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1376, 391, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1377, 391, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1378, 391, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1379, 391, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1380, 391, 1, 9, '', '4e7a2035-a944-4997-8f46-113d417f9d05', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1381, 392, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1382, 392, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1383, 392, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1384, 392, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1385, 392, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1386, 392, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1387, 392, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1388, 392, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1389, 392, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1390, 392, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1391, 392, 1, 9, '', 'efb20f7a-0886-4c68-8935-474f2e154394', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1392, 393, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1393, 393, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1394, 393, 1, 15, '', 'Andi', '', 0, 'andi');
-INSERT INTO public.rainloop_ab_properties VALUES (1395, 393, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1396, 393, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1397, 393, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1398, 393, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1399, 393, 1, 9, '', '2bf86012-a8ed-4f0b-a1be-777a34888955', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1400, 394, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1401, 394, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1402, 394, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1403, 394, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1404, 394, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1405, 394, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1406, 394, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1407, 394, 1, 9, '', 'a34982a8-25ff-4fe0-8a1d-d9ad031fcae7', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1408, 395, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1409, 395, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1410, 395, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1411, 395, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1412, 395, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1413, 395, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1414, 395, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1415, 395, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1416, 395, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1417, 395, 1, 9, '', '35909518-6339-447b-9648-890f4ab542d4', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1418, 396, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1419, 396, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1420, 396, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1421, 396, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1422, 396, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1423, 396, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1424, 396, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1425, 396, 1, 32, 'HOME', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
-INSERT INTO public.rainloop_ab_properties VALUES (1426, 396, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1427, 396, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1428, 396, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1429, 396, 1, 9, '', '245155db-e681-4989-b322-fb2c27657cc0', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1430, 397, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1431, 397, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1432, 397, 1, 15, '', 'Andi', '', 0, 'andi');
-INSERT INTO public.rainloop_ab_properties VALUES (1433, 397, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1434, 397, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1435, 397, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1436, 397, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1437, 397, 1, 9, '', '6324d9ab-69a5-4b18-a791-193bdacce3a0', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1438, 398, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1439, 398, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1440, 398, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1441, 398, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1442, 398, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1443, 398, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1444, 398, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1445, 398, 1, 9, '', 'da5581cb-5daf-48c7-a9c1-4e0985fae091', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1446, 399, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1447, 399, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1448, 399, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1449, 399, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1450, 399, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1451, 399, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1452, 399, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1453, 399, 1, 31, 'CELL', '+49 162 7184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1454, 399, 1, 31, 'HOME', '+49 2104 40954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1455, 399, 1, 9, '', '5b4297bd-bb38-4219-ae77-9d5d2e74f7b3', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1456, 400, 1, 32, '', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
-INSERT INTO public.rainloop_ab_properties VALUES (1457, 400, 1, 30, '', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1458, 400, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1459, 400, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1460, 400, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1461, 400, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1462, 400, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1463, 400, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1464, 400, 1, 31, 'cell', '+4917621319499', '4917621319499', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1465, 400, 1, 31, 'work', '+491735698189', '491735698189', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1466, 400, 1, 31, 'home', '+4991189647031', '4991189647031', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1467, 400, 1, 9, '', 'e2f95fef-a66e-4be5-880f-95d31478d3da', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1468, 401, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1469, 401, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1470, 401, 1, 15, '', 'Andi', '', 0, 'andi');
-INSERT INTO public.rainloop_ab_properties VALUES (1471, 401, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1472, 401, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1473, 401, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1474, 401, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1475, 401, 1, 9, '', 'a705d636-4941-401c-869b-fb12e6e8e967', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1476, 402, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1477, 402, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1478, 402, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1479, 402, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1480, 402, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1481, 402, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1482, 402, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1483, 402, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1484, 402, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1485, 402, 1, 9, '', '944c3fa0-43c7-4b97-bc01-ff0025a6bcb5', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1486, 403, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1487, 403, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1488, 403, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1489, 403, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1490, 403, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1491, 403, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1492, 403, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1493, 403, 1, 9, '', '3a220db2-5570-46f6-ba88-8f07cf87b7a0', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1494, 404, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1495, 404, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1496, 404, 1, 15, '', 'Andi', '', 0, 'andi');
-INSERT INTO public.rainloop_ab_properties VALUES (1497, 404, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1498, 404, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1499, 404, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1500, 404, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1501, 404, 1, 9, '', '6e95941f-47a2-4cfa-a200-804e8ca66b95', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1502, 405, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1503, 405, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1504, 405, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1505, 405, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1506, 405, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1507, 405, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1508, 405, 1, 9, '', '4afb72dc-c71f-489d-be48-4bb0598b2822', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1509, 406, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1510, 406, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1511, 406, 1, 15, '', 'Andi', '', 0, 'andi');
-INSERT INTO public.rainloop_ab_properties VALUES (1512, 406, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1513, 406, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1514, 406, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1515, 406, 1, 31, 'CELL', '+491791255149', '491791255149', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1516, 406, 1, 9, '', '79a6cdd0-4db3-411a-9694-cfca4fe08dee', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1517, 407, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1518, 407, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1519, 407, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1520, 407, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1521, 407, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1522, 407, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1523, 407, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1524, 407, 1, 32, 'HOME', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
-INSERT INTO public.rainloop_ab_properties VALUES (1525, 407, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1526, 407, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1527, 407, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1528, 407, 1, 9, '', '069fcea7-ac76-4cd9-8a1f-dda764ad90d4', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1529, 408, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1530, 408, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1531, 408, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1532, 408, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1533, 408, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1534, 408, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1535, 408, 1, 9, '', 'd49e6521-0e80-45a3-a129-dde0999d7fa2', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1536, 409, 1, 10, '', 'Andi Liebrich', '', 0, 'andi liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1537, 409, 1, 16, '', 'Liebrich', '', 0, 'liebrich');
-INSERT INTO public.rainloop_ab_properties VALUES (1567, 412, 1, 9, '', 'fded437b-9e5b-4627-96e7-1b7e0d0d7f5c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1575, 414, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1576, 414, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1577, 414, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (1578, 414, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1579, 414, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1580, 414, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1581, 414, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (1582, 414, 1, 32, 'HOME', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
-INSERT INTO public.rainloop_ab_properties VALUES (1583, 414, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1584, 414, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1585, 414, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1586, 414, 1, 9, '', '09cae198-0a6f-409f-8a32-70356a00057d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1587, 415, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1588, 415, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1589, 415, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1590, 415, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1591, 415, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1592, 415, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1593, 415, 1, 9, '', 'e98caaee-9536-4e9b-ab4d-b84ab07bf06c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1594, 416, 1, 10, '', 'Deborah Michel', '', 0, 'deborah michel');
-INSERT INTO public.rainloop_ab_properties VALUES (1595, 416, 1, 16, '', 'Michel', '', 0, 'michel');
-INSERT INTO public.rainloop_ab_properties VALUES (1596, 416, 1, 15, '', 'Deborah', '', 0, 'deborah');
-INSERT INTO public.rainloop_ab_properties VALUES (1597, 416, 1, 31, 'x-mobil', '+49 176 38478615', '4917638478615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1598, 416, 1, 9, '', 'e9b71990-16c5-4387-a49a-35fc7394bde2', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1606, 418, 1, 30, '', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1607, 418, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1608, 418, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (1609, 418, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1610, 418, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1611, 418, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1612, 418, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1613, 418, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1614, 418, 1, 31, 'cell', '+491721573808', '491721573808', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1615, 418, 1, 9, '', 'b4d707bb-29cf-40c1-b350-3c3de9bebbb9', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1616, 419, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1617, 419, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1618, 419, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1619, 419, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1620, 419, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1621, 419, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1622, 419, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1623, 419, 1, 9, '', 'b4a4534b-f898-4a46-a0ad-2f61cb2e4e58', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1624, 420, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1625, 420, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1626, 420, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1627, 420, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1628, 420, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1629, 420, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1630, 420, 1, 9, '', '67e5502c-7b81-483e-a09a-b0bdb28d0413', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1638, 422, 1, 30, '', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1639, 422, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1640, 422, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (1641, 422, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1642, 422, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1643, 422, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1644, 422, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1645, 422, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1646, 422, 1, 31, 'cell', '+491721573808', '491721573808', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1647, 422, 1, 9, '', 'af72af11-829a-4651-90c2-b9b8fe8d7f0e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1648, 423, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1649, 423, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1650, 423, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1651, 423, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1652, 423, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1653, 423, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1654, 423, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1655, 423, 1, 9, '', '7e31646f-75f4-4f0d-81be-bd89ad8a14a3', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1656, 424, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1657, 424, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1658, 424, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1659, 424, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1660, 424, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1661, 424, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1662, 424, 1, 9, '', 'c01d1773-4d58-4664-a28d-dc8c7ee5f596', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1663, 425, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1664, 425, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (1665, 425, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1666, 425, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1667, 425, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1668, 425, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1669, 425, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1670, 425, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1671, 425, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1672, 425, 1, 9, '', '67fa5763-3647-4c85-ade5-67ac82f6e26d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1673, 426, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1674, 426, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1675, 426, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1676, 426, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1677, 426, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1678, 426, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1679, 426, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1680, 426, 1, 9, '', '16b1426a-4575-4e9d-a82e-939ff22cb81c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1681, 427, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1682, 427, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1683, 427, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1684, 427, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1685, 427, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1686, 427, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1687, 427, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1688, 427, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1689, 427, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1690, 427, 1, 9, '', '2ed79d04-f2a4-4c40-830d-9a81a7c0c3e6', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1691, 428, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1692, 428, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (1693, 428, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1694, 428, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1695, 428, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1696, 428, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1697, 428, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1698, 428, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1699, 428, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1700, 428, 1, 9, '', '5e8162e6-26d3-4b8d-8c9c-24c616cdf7f0', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1701, 429, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1702, 429, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1703, 429, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1704, 429, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1705, 429, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1706, 429, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1707, 429, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1708, 429, 1, 9, '', 'e374abc4-b7b4-4e9b-99c9-3a7d948fc128', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1709, 430, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1710, 430, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1711, 430, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1712, 430, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1713, 430, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1714, 430, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1715, 430, 1, 9, '', 'b667d403-e95d-480b-a47d-114094366353', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1716, 431, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1717, 431, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (1718, 431, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1719, 431, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1720, 431, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1721, 431, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1722, 431, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1723, 431, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1724, 431, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1725, 431, 1, 9, '', 'b5917685-fc9d-4475-8856-40a7535fa639', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1726, 432, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1727, 432, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1728, 432, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1729, 432, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1730, 432, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1731, 432, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1732, 432, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1733, 432, 1, 9, '', '970e6671-637a-47ae-acd5-2b78ab8d06a1', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1734, 433, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1735, 433, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1736, 433, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1737, 433, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1738, 433, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1739, 433, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1740, 433, 1, 9, '', '7e48f48c-1f38-46bd-b606-1159c48733d6', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1741, 434, 1, 30, '', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1742, 434, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1743, 434, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (1744, 434, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1745, 434, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1746, 434, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1747, 434, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1748, 434, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1749, 434, 1, 31, 'cell', '+491721573808', '491721573808', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1750, 434, 1, 9, '', '5d946c83-6811-4419-8691-7e5fc6fe44c3', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1751, 435, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1752, 435, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1753, 435, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1754, 435, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1755, 435, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1756, 435, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1757, 435, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1758, 435, 1, 9, '', '1daf205b-c139-49fc-b35b-db026c36246e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1759, 436, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1760, 436, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1761, 436, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1762, 436, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1763, 436, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1764, 436, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1765, 436, 1, 9, '', '06177c71-917f-4a0c-8638-dfff85211144', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1766, 437, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1767, 437, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (1768, 437, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1769, 437, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1770, 437, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1771, 437, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1772, 437, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1773, 437, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2193, 487, 1, 16, '', 'Menz', '', 0, 'menz');
-INSERT INTO public.rainloop_ab_properties VALUES (1774, 437, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1775, 437, 1, 9, '', 'c0455704-4311-47a6-9512-7ed7fd486a57', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1776, 438, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1777, 438, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1778, 438, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1779, 438, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1780, 438, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1781, 438, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1782, 438, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1783, 438, 1, 9, '', 'f25b7a5b-fee0-4554-a35f-d81a0056d233', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1784, 439, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1785, 439, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1786, 439, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1787, 439, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1788, 439, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1789, 439, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1790, 439, 1, 9, '', '84199851-dab9-4fd9-a7b4-a692ffe70f13', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1791, 440, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1792, 440, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (1793, 440, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1794, 440, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1795, 440, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1796, 440, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1797, 440, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1798, 440, 1, 30, 'OTHER', 'anfreyb@gmx.de', '', 0, 'anfreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1799, 440, 1, 9, '', 'ba1f56b0-8d47-43a0-b580-51d4aa888911', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1800, 441, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1801, 441, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1802, 441, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1803, 441, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1804, 441, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1805, 441, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1806, 441, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1807, 441, 1, 9, '', '62302c92-864b-4fef-86dc-bf8cdfa0d668', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1808, 442, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1809, 442, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1810, 442, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1811, 442, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1812, 442, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1813, 442, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1814, 442, 1, 9, '', 'e89bdc77-a5b9-4582-a2f8-2345fafecd14', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1815, 443, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1816, 443, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (1817, 443, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1818, 443, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1819, 443, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1820, 443, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1821, 443, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1822, 443, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1823, 443, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1824, 443, 1, 9, '', '98845985-80ea-4817-ac74-45e3533fd1af', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1825, 444, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1826, 444, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1827, 444, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1828, 444, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1829, 444, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1830, 444, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1831, 444, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1832, 444, 1, 9, '', 'e479c53a-6368-4d9d-b80f-3cc970988c67', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1833, 445, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1834, 445, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1835, 445, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1836, 445, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1837, 445, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1838, 445, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1839, 445, 1, 9, '', '68a57101-4c53-49ed-9051-7503c99c731d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1840, 446, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1841, 446, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (1842, 446, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1843, 446, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1844, 446, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1845, 446, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1846, 446, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1847, 446, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1848, 446, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1849, 446, 1, 9, '', '88e6af0f-e58c-46db-b118-62f644df61a7', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1850, 447, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1851, 447, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1852, 447, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1853, 447, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1854, 447, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1855, 447, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1856, 447, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1857, 447, 1, 9, '', '5a61bdd1-ce75-4639-8723-f5d176a811de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1858, 448, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1859, 448, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (1860, 448, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (1861, 448, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1862, 448, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1863, 448, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1864, 448, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1865, 448, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1866, 448, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1867, 448, 1, 9, '', '537dde9c-bb42-4f32-95cf-395a5cecaf65', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1868, 449, 1, 30, '', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1869, 449, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1870, 449, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (1871, 449, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1872, 449, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1873, 449, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1874, 449, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1875, 449, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2292, 498, 1, 15, '', 'Alex', '', 0, 'alex');
-INSERT INTO public.rainloop_ab_properties VALUES (1876, 449, 1, 31, 'cell', '+491721573808', '491721573808', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1877, 449, 1, 9, '', '8b4d025e-36da-446a-ba28-38dba3e9967e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1878, 450, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1879, 450, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1880, 450, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1881, 450, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1882, 450, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1883, 450, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1884, 450, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1885, 450, 1, 9, '', 'ca6d2044-0bfa-482a-98d0-91af7930d0e6', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1886, 451, 1, 10, '', 'Jana Lange', '', 0, 'jana lange');
-INSERT INTO public.rainloop_ab_properties VALUES (1887, 451, 1, 16, '', 'Lange', '', 0, 'lange');
-INSERT INTO public.rainloop_ab_properties VALUES (1888, 451, 1, 15, '', 'Jana', '', 0, 'jana');
-INSERT INTO public.rainloop_ab_properties VALUES (1889, 451, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1890, 451, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1891, 451, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1892, 451, 1, 31, 'cell', '+4915118301511', '4915118301511', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1893, 451, 1, 9, '', 'b9f91d4a-0d32-4001-b12e-7a935d6090c4', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1894, 452, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1895, 452, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1896, 452, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1897, 452, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1898, 452, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1899, 452, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1900, 452, 1, 9, '', '9460d82c-7b8d-431f-83a3-31df18ae0e19', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1901, 453, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1902, 453, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1903, 453, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1904, 453, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1905, 453, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1906, 453, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1907, 453, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1908, 453, 1, 9, '', '860e1fb0-ae05-4558-9f8f-d9fec15f8788', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1909, 454, 1, 10, '', 'Joachim Benedict', '', 0, 'joachim benedict');
-INSERT INTO public.rainloop_ab_properties VALUES (1910, 454, 1, 16, '', 'Benedict', '', 0, 'benedict');
-INSERT INTO public.rainloop_ab_properties VALUES (1911, 454, 1, 15, '', 'Joachim', '', 0, 'joachim');
-INSERT INTO public.rainloop_ab_properties VALUES (1912, 454, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1913, 454, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1914, 454, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1915, 454, 1, 31, 'WORK', '+49202451096', '49202451096', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1916, 454, 1, 9, '', 'ba9610be-15ac-4b62-b9d7-acd91a2fdcfa', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1917, 455, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1918, 455, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1919, 455, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1920, 455, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1921, 455, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1922, 455, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1923, 455, 1, 9, '', '83eabd18-620d-42bc-905a-fa535210dcbb', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1924, 456, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1925, 456, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1926, 456, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1927, 456, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1928, 456, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1929, 456, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1930, 456, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1931, 456, 1, 9, '', 'd1082c93-6b96-44a2-b8c8-4a471d3225fe', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1932, 457, 1, 10, '', 'Jochen Guera', '', 0, 'jochen guera');
-INSERT INTO public.rainloop_ab_properties VALUES (1933, 457, 1, 16, '', 'Guera', '', 0, 'guera');
-INSERT INTO public.rainloop_ab_properties VALUES (1934, 457, 1, 15, '', 'Jochen', '', 0, 'jochen');
-INSERT INTO public.rainloop_ab_properties VALUES (1935, 457, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1936, 457, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1937, 457, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1938, 457, 1, 30, 'OTHER', 'jochen.guera@teambank.de', '', 0, 'jochen.guera@teambank.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1939, 457, 1, 9, '', '2be2025e-9b59-4f05-bb93-5e402dc13c19', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1940, 458, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1941, 458, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1942, 458, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1943, 458, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1944, 458, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1945, 458, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1946, 458, 1, 9, '', '4cd7067b-9f10-4a4d-8b14-a76138b5fcac', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1947, 459, 1, 10, '', 'Helmut & Janet Hagen', '', 0, 'helmut & janet hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1948, 459, 1, 16, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (1949, 459, 1, 15, '', 'Helmut & Janet', '', 0, 'helmut & janet');
-INSERT INTO public.rainloop_ab_properties VALUES (1950, 459, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1951, 459, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1952, 459, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1953, 459, 1, 30, 'OTHER', 'hejahagen@t-online.de', '', 0, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1954, 459, 1, 9, '', '969e6bf0-3731-4fc5-a5e2-c0fd8666b5a5', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1955, 460, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1956, 460, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1957, 460, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1958, 460, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1959, 460, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1960, 460, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1961, 460, 1, 9, '', '547d1bea-cb78-4620-b6b4-55aa458c4ea2', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1962, 461, 1, 10, '', 'Henning Schmiedehausen', '', 0, 'henning schmiedehausen');
-INSERT INTO public.rainloop_ab_properties VALUES (1963, 461, 1, 16, '', 'Schmiedehausen', '', 0, 'schmiedehausen');
-INSERT INTO public.rainloop_ab_properties VALUES (1964, 461, 1, 15, '', 'Henning', '', 0, 'henning');
-INSERT INTO public.rainloop_ab_properties VALUES (1965, 461, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1966, 461, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1967, 461, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1968, 461, 1, 31, 'WORK', '+1-650-353-8513', '16503538513', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1969, 461, 1, 31, 'HOME', '+1-650-353-8513', '16503538513', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1970, 461, 1, 9, '', '874434a5-6094-4b8e-a452-9f20bf530895', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1971, 462, 1, 10, '', 'Philipp Müller', '', 0, 'philipp müller');
-INSERT INTO public.rainloop_ab_properties VALUES (1972, 462, 1, 16, '', 'Müller', '', 0, 'müller');
-INSERT INTO public.rainloop_ab_properties VALUES (1973, 462, 1, 15, '', 'Philipp', '', 0, 'philipp');
-INSERT INTO public.rainloop_ab_properties VALUES (1974, 462, 1, 31, 'cell', '+49 160 98905454', '4916098905454', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1975, 462, 1, 9, '', 'f162a1a0-ed0b-415e-a753-fea27a916733', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1976, 463, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1977, 463, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (1978, 463, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (1979, 463, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (1980, 463, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1981, 463, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1982, 463, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1983, 463, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1984, 463, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1985, 463, 1, 9, '', '1b2e39be-5e5a-478e-a127-b9b2d38e9e8e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1986, 464, 1, 10, '', 'Hofmann', '', 0, 'hofmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1987, 464, 1, 16, '', 'Hofmann', '', 0, 'hofmann');
-INSERT INTO public.rainloop_ab_properties VALUES (1988, 464, 1, 15, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1989, 464, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1990, 464, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1991, 464, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1992, 464, 1, 31, 'CELL', '+49 170 1831816', '491701831816', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1993, 464, 1, 9, '', 'c50a6e18-dffb-4894-92af-a5fa0fcb3123', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1994, 465, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (1995, 465, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (1996, 465, 1, 15, '', 'Alex', '', 0, 'alex');
-INSERT INTO public.rainloop_ab_properties VALUES (1997, 465, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1998, 465, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1999, 465, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2000, 465, 1, 31, 'CELL', '+49 177 3173183', '491773173183', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2001, 465, 1, 9, '', '4da2efbd-2c7a-4fbe-b346-9a39fd171a20', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2002, 466, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (2003, 466, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (2004, 466, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (2005, 466, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2006, 466, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2007, 466, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2008, 466, 1, 9, '', 'b9c85b2e-098c-433c-9e7f-aae1e18d3a27', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2009, 467, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2010, 467, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2011, 467, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2012, 467, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2013, 467, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2014, 467, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2015, 467, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2016, 467, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
-INSERT INTO public.rainloop_ab_properties VALUES (2017, 467, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2018, 467, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2019, 467, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2020, 467, 1, 9, '', '34a8b0cf-1e2c-42b0-aded-b873aa0d9364', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2021, 468, 1, 10, '', 'Carl Herrmann', '', 0, 'carl herrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (2022, 468, 1, 16, '', 'Herrmann', '', 0, 'herrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (2023, 468, 1, 15, '', 'Carl', '', 0, 'carl');
-INSERT INTO public.rainloop_ab_properties VALUES (2024, 468, 1, 31, 'cell', '+49 1511 7209165', '4915117209165', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2025, 468, 1, 9, '', 'd6f7cd26-0f38-4dff-9ac2-40074367495c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2026, 469, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2027, 469, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2028, 469, 1, 15, '', 'Alex', '', 0, 'alex');
-INSERT INTO public.rainloop_ab_properties VALUES (2029, 469, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2030, 469, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2031, 469, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2032, 469, 1, 31, 'CELL', '+49 177 3173183', '491773173183', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2033, 469, 1, 9, '', '87fd594a-6c4a-4c08-9e03-ca1d9fb01b66', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2034, 470, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (2035, 470, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (2036, 470, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (2037, 470, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2038, 470, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2039, 470, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2040, 470, 1, 9, '', '1502ac54-5e2f-453d-bcfb-e0365c1c78b4', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2041, 471, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2042, 471, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2043, 471, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2044, 471, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2045, 471, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2046, 471, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2047, 471, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2048, 471, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2049, 471, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2050, 471, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2051, 471, 1, 9, '', '64f53283-fbec-48ae-8330-a7d0a8573661', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2052, 472, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2053, 472, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2054, 472, 1, 15, '', 'Alex', '', 0, 'alex');
-INSERT INTO public.rainloop_ab_properties VALUES (2055, 472, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2056, 472, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2057, 472, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2058, 472, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2059, 472, 1, 9, '', 'e5176079-1c61-48de-b060-4a47f82c1153', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2060, 473, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (2061, 473, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (2062, 473, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (2063, 473, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2064, 473, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2065, 473, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2066, 473, 1, 9, '', '21ded49a-49c9-4a6b-b627-f67431577f25', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2067, 474, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2068, 474, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2069, 474, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2070, 474, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2071, 474, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2072, 474, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2073, 474, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2074, 474, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2075, 474, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2076, 474, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2077, 474, 1, 9, '', '0f21530b-fc74-4ff7-b53b-63a9481681b2', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2078, 475, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2079, 475, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2080, 475, 1, 15, '', 'Alex', '', 0, 'alex');
-INSERT INTO public.rainloop_ab_properties VALUES (2081, 475, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2082, 475, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2093, 477, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2094, 477, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2095, 477, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2096, 477, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2097, 477, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2098, 477, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2099, 477, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2100, 477, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
-INSERT INTO public.rainloop_ab_properties VALUES (2101, 477, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2102, 477, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2103, 477, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2104, 477, 1, 9, '', '03788924-7f7b-4d77-a26c-70ff34ab6019', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2105, 478, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2106, 478, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2107, 478, 1, 15, '', 'Alex', '', 0, 'alex');
-INSERT INTO public.rainloop_ab_properties VALUES (2108, 478, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2109, 478, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2110, 478, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2111, 478, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2112, 478, 1, 9, '', '02e1ec37-0f3b-43fd-baef-eae7acad0e8f', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2113, 479, 1, 10, '', 'Andrea Freyberg', '', 0, 'andrea freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (2114, 479, 1, 18, '', 'Philippa', '', 0, 'philippa');
-INSERT INTO public.rainloop_ab_properties VALUES (2115, 479, 1, 16, '', 'Freyberg', '', 0, 'freyberg');
-INSERT INTO public.rainloop_ab_properties VALUES (2116, 479, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (2117, 479, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2118, 479, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2119, 479, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2120, 479, 1, 30, 'OTHER', 'afreyb@gmx.de', '', 0, 'afreyb@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2121, 479, 1, 31, 'CELL', '+491721573808', '491721573808', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2122, 479, 1, 9, '', 'b1bf87b1-4898-4002-984e-8b3403df9931', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2123, 480, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2124, 480, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2125, 480, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2126, 480, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2127, 480, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2128, 480, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2129, 480, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2130, 480, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2131, 480, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2132, 480, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2133, 480, 1, 9, '', '00268bbb-d497-4859-901e-9b527bf9ec61', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2134, 481, 1, 10, '', 'Andrea Weber', '', 0, 'andrea weber');
-INSERT INTO public.rainloop_ab_properties VALUES (2135, 481, 1, 16, '', 'Weber', '', 0, 'weber');
-INSERT INTO public.rainloop_ab_properties VALUES (2136, 481, 1, 15, '', 'Andrea', '', 0, 'andrea');
-INSERT INTO public.rainloop_ab_properties VALUES (2137, 481, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2138, 481, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2139, 481, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2140, 481, 1, 31, 'CELL', '+49 1575 1601183', '4915751601183', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2141, 481, 1, 9, '', 'd6b440c5-4b4c-4526-9e0d-e70a337f19e6', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2142, 482, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2143, 482, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2144, 482, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2145, 482, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2146, 482, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2147, 482, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2148, 482, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2149, 482, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
-INSERT INTO public.rainloop_ab_properties VALUES (2150, 482, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2151, 482, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2152, 482, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2153, 482, 1, 9, '', '80b0e606-6602-4b0b-9d91-d92383dbcadd', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2154, 483, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2155, 483, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2156, 483, 1, 15, '', 'Alex', '', 0, 'alex');
-INSERT INTO public.rainloop_ab_properties VALUES (2157, 483, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2158, 483, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2159, 483, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2160, 483, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2161, 483, 1, 9, '', '3c968cc1-53c7-4c7b-be2e-edbe33ed9a02', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2162, 484, 1, 10, '', 'Andreas Menz', '', 0, 'andreas menz');
-INSERT INTO public.rainloop_ab_properties VALUES (2163, 484, 1, 18, '', 'Meister', '', 0, 'meister');
-INSERT INTO public.rainloop_ab_properties VALUES (2164, 484, 1, 16, '', 'Menz', '', 0, 'menz');
-INSERT INTO public.rainloop_ab_properties VALUES (2165, 484, 1, 15, '', 'Andreas', '', 0, 'andreas');
-INSERT INTO public.rainloop_ab_properties VALUES (2166, 484, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2167, 484, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2168, 484, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2169, 484, 1, 30, 'OTHER', 'Andreas.Menz@gmx.de', '', 0, 'andreas.menz@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2170, 484, 1, 9, '', '6b744b89-aa74-4bc3-9c3c-1a4048fb7896', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2171, 485, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2172, 485, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2173, 485, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2174, 485, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2175, 485, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2176, 485, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2177, 485, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2178, 485, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
-INSERT INTO public.rainloop_ab_properties VALUES (2179, 485, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2180, 485, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2181, 485, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2182, 485, 1, 9, '', '38c43d71-f221-47de-865e-c200ff6ba530', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2183, 486, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2184, 486, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2185, 486, 1, 15, '', 'Alex', '', 0, 'alex');
-INSERT INTO public.rainloop_ab_properties VALUES (2186, 486, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2187, 486, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2188, 486, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2189, 486, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2190, 486, 1, 9, '', 'b8d52fd8-6d47-499a-a7cb-628976cd7880', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2191, 487, 1, 10, '', 'Andreas Menz', '', 0, 'andreas menz');
-INSERT INTO public.rainloop_ab_properties VALUES (2192, 487, 1, 18, '', 'Meister', '', 0, 'meister');
-INSERT INTO public.rainloop_ab_properties VALUES (2194, 487, 1, 15, '', 'Andreas', '', 0, 'andreas');
-INSERT INTO public.rainloop_ab_properties VALUES (2195, 487, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2196, 487, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2197, 487, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2198, 487, 1, 30, 'OTHER', 'andreasmenzlive@web.de', '', 0, 'andreasmenzlive@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2199, 487, 1, 32, 'HOME', 'http://www.google.com/profiles/110556436863350299519', '', 0, 'http://www.google.com/profiles/110556436863350299519');
-INSERT INTO public.rainloop_ab_properties VALUES (2200, 487, 1, 31, 'CELL', '+491788028333', '491788028333', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2201, 487, 1, 9, '', '36125afb-1473-4aec-a6ae-a63752b32db9', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2202, 488, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2203, 488, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2204, 488, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2205, 488, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2206, 488, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2207, 488, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2208, 488, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2209, 488, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
-INSERT INTO public.rainloop_ab_properties VALUES (2210, 488, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2211, 488, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2212, 488, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2213, 488, 1, 9, '', '75fec67b-53ab-4422-8d35-8893ea683abf', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2214, 489, 1, 10, '', 'Andreas Schalm', '', 0, 'andreas schalm');
-INSERT INTO public.rainloop_ab_properties VALUES (2215, 489, 1, 110, '', '28.03.2012, 19:55 - XING - http://www.xing.com/profile/Andreas_Schalm', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2216, 489, 1, 16, '', 'Schalm', '', 0, 'schalm');
-INSERT INTO public.rainloop_ab_properties VALUES (2217, 489, 1, 15, '', 'Andreas', '', 0, 'andreas');
-INSERT INTO public.rainloop_ab_properties VALUES (2218, 489, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2219, 489, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2220, 489, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2221, 489, 1, 30, 'OTHER', 'AndreasSchalm@web.de', '', 0, 'andreasschalm@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2222, 489, 1, 31, 'CELL', '+41764200398', '41764200398', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2223, 489, 1, 31, 'WORK', '+41415454175', '41415454175', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2224, 489, 1, 9, '', '321f3118-c8f7-43ca-8e2d-08e0975acf87', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2225, 490, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2226, 490, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2227, 490, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2228, 490, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2229, 490, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2230, 490, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2231, 490, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2232, 490, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2233, 490, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2234, 490, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2235, 490, 1, 9, '', '8781df36-fd8e-493b-9edd-04d73a23399d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2236, 491, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2237, 491, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2238, 491, 1, 15, '', 'Alex', '', 0, 'alex');
-INSERT INTO public.rainloop_ab_properties VALUES (2239, 491, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2240, 491, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2241, 491, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2242, 491, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2243, 491, 1, 9, '', '75c1b4c1-99c9-4b15-895f-04dcb1359df2', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2244, 492, 1, 10, '', 'Andreas Schamberger', '', 0, 'andreas schamberger');
-INSERT INTO public.rainloop_ab_properties VALUES (2245, 492, 1, 16, '', 'Schamberger', '', 0, 'schamberger');
-INSERT INTO public.rainloop_ab_properties VALUES (2246, 492, 1, 15, '', 'Andreas', '', 0, 'andreas');
-INSERT INTO public.rainloop_ab_properties VALUES (2247, 492, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2248, 492, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2249, 492, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2250, 492, 1, 30, 'OTHER', 'as@schlossallee.ag', '', 0, 'as@schlossallee.ag');
-INSERT INTO public.rainloop_ab_properties VALUES (2251, 492, 1, 31, 'CELL', '+491632433488', '491632433488', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2252, 492, 1, 9, '', 'c0cf9ed5-b588-4d1f-869e-2e08b0ea346d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2253, 493, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2254, 493, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2255, 493, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2256, 493, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2257, 493, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2258, 493, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2259, 493, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2260, 493, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2261, 493, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2262, 493, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2263, 493, 1, 9, '', '234537e1-d984-4afe-9bf9-4221fde696ae', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2264, 494, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2265, 494, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2266, 494, 1, 15, '', 'Alex', '', 0, 'alex');
-INSERT INTO public.rainloop_ab_properties VALUES (2267, 494, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2268, 494, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2269, 494, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2270, 494, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2271, 494, 1, 9, '', '08f848a4-388e-4a86-bb67-bb4b17b62255', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2272, 495, 1, 10, '', 'Angela Klausen', '', 0, 'angela klausen');
-INSERT INTO public.rainloop_ab_properties VALUES (2273, 495, 1, 16, '', 'Klausen', '', 0, 'klausen');
-INSERT INTO public.rainloop_ab_properties VALUES (2274, 495, 1, 15, '', 'Angela', '', 0, 'angela');
-INSERT INTO public.rainloop_ab_properties VALUES (2275, 495, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2276, 495, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2277, 495, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2278, 495, 1, 31, 'cell', '+491728356018', '491728356018', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2279, 495, 1, 31, 'home', '+49 9503 503991', '499503503991', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2280, 495, 1, 9, '', '4b412ac3-b2b8-4027-a3f5-717516f9b9db', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2282, 497, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2283, 496, 1, 10, '', 'ju_schulze@online.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2284, 497, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2281, 496, 1, 30, '', 'ju_schulze@online.de', '', 1, 'ju_schulze@online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2285, 497, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2286, 497, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2287, 497, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2288, 497, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2289, 497, 1, 9, '', 'a63a8cf1-f8bb-45e0-9cf6-407918f6654c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2290, 498, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2291, 498, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2298, 499, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2299, 499, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2300, 499, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2301, 499, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2302, 499, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2303, 499, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2304, 499, 1, 9, '', '9d0da172-f0cb-4493-b942-6b21ef8e96be', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2305, 500, 1, 30, '', 'anita--meyer@t-online.de', '', 0, 'anita--meyer@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2306, 500, 1, 10, '', 'Anita Meyer', '', 0, 'anita meyer');
-INSERT INTO public.rainloop_ab_properties VALUES (2307, 500, 1, 18, '', 'Schneggi', '', 0, 'schneggi');
-INSERT INTO public.rainloop_ab_properties VALUES (2308, 500, 1, 16, '', 'Meyer', '', 0, 'meyer');
-INSERT INTO public.rainloop_ab_properties VALUES (2309, 500, 1, 15, '', 'Anita', '', 0, 'anita');
-INSERT INTO public.rainloop_ab_properties VALUES (2310, 500, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2311, 500, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2312, 500, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2313, 500, 1, 31, 'cell', '+49170 9552575', '491709552575', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2314, 500, 1, 31, 'home', '+49 911 94180804', '4991194180804', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2315, 500, 1, 9, '', 'c0d3505a-8ff4-4a22-a278-1333ede47154', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2316, 501, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2317, 501, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2318, 501, 1, 15, '', 'Alex', '', 0, 'alex');
-INSERT INTO public.rainloop_ab_properties VALUES (2319, 501, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2320, 501, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2321, 501, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2322, 501, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2323, 501, 1, 9, '', '89d44afa-882e-4161-bef7-8edd222c8461', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2324, 502, 1, 10, '', 'Anja Assenbaum', '', 0, 'anja assenbaum');
-INSERT INTO public.rainloop_ab_properties VALUES (2325, 502, 1, 16, '', 'Assenbaum', '', 0, 'assenbaum');
-INSERT INTO public.rainloop_ab_properties VALUES (2326, 502, 1, 15, '', 'Anja', '', 0, 'anja');
-INSERT INTO public.rainloop_ab_properties VALUES (2327, 502, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2328, 502, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2329, 502, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2330, 502, 1, 31, 'CELL', '+491729485815', '491729485815', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2331, 502, 1, 9, '', '4d0f5f74-e69f-4b6e-9b13-d3af73a14c6e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2332, 503, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2333, 503, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2334, 503, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2335, 503, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2336, 503, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2337, 503, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2338, 503, 1, 9, '', '372fc1ab-7a05-4d35-a1de-c4dc9f8d5d6f', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2339, 504, 1, 10, '', 'Alex Gallitz', '', 0, 'alex gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2340, 504, 1, 16, '', 'Gallitz', '', 0, 'gallitz');
-INSERT INTO public.rainloop_ab_properties VALUES (2341, 504, 1, 15, '', 'Alex', '', 0, 'alex');
-INSERT INTO public.rainloop_ab_properties VALUES (2342, 504, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2343, 504, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2344, 504, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2345, 504, 1, 31, 'CELL', '+491773173183', '491773173183', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2346, 504, 1, 9, '', 'de82f524-4359-49af-8312-dbdf7c0e8b89', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2347, 505, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2348, 505, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2349, 505, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2350, 505, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2351, 505, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2352, 505, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2353, 505, 1, 9, '', '70230e5c-7610-4431-907b-a47fdcdefa8d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2354, 506, 1, 30, '', 'anke-byherzi@web.de', '', 0, 'anke-byherzi@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2355, 506, 1, 10, '', 'Anke Friedl', '', 0, 'anke friedl');
-INSERT INTO public.rainloop_ab_properties VALUES (2356, 506, 1, 16, '', 'Friedl', '', 0, 'friedl');
-INSERT INTO public.rainloop_ab_properties VALUES (2357, 506, 1, 15, '', 'Anke', '', 0, 'anke');
-INSERT INTO public.rainloop_ab_properties VALUES (2358, 506, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2359, 506, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2360, 506, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2361, 506, 1, 31, 'cell', '+49 172 8210278', '491728210278', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2362, 506, 1, 9, '', '895d90ea-5dda-4e16-931b-b42cd265c218', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2363, 507, 1, 10, '', 'Annett Pflanz', '', 0, 'annett pflanz');
-INSERT INTO public.rainloop_ab_properties VALUES (2364, 507, 1, 16, '', 'Pflanz', '', 0, 'pflanz');
-INSERT INTO public.rainloop_ab_properties VALUES (2365, 507, 1, 15, '', 'Annett', '', 0, 'annett');
-INSERT INTO public.rainloop_ab_properties VALUES (2366, 507, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2367, 507, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2368, 507, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2369, 507, 1, 32, 'HOME', 'http://www.google.com/profiles/104746240300504566365', '', 0, 'http://www.google.com/profiles/104746240300504566365');
-INSERT INTO public.rainloop_ab_properties VALUES (2370, 507, 1, 31, 'CELL', '+4917654765566', '4917654765566', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2371, 507, 1, 9, '', '85dc885b-0a5a-4a85-ba17-9b7c38ae015b', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2372, 508, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2373, 508, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2374, 508, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2375, 508, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2376, 508, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2377, 508, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2378, 508, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2379, 508, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
-INSERT INTO public.rainloop_ab_properties VALUES (2380, 508, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2381, 508, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2382, 508, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2383, 508, 1, 9, '', '70eba4a1-a582-4356-b62a-a6510d86ec7e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2393, 510, 1, 10, '', 'Annette Kappestein', '', 0, 'annette kappestein');
-INSERT INTO public.rainloop_ab_properties VALUES (2394, 510, 1, 16, '', 'Kappestein', '', 0, 'kappestein');
-INSERT INTO public.rainloop_ab_properties VALUES (2395, 510, 1, 15, '', 'Annette', '', 0, 'annette');
-INSERT INTO public.rainloop_ab_properties VALUES (2396, 510, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2397, 510, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2398, 510, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2399, 510, 1, 31, 'CELL', '+4915222717364', '4915222717364', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2400, 510, 1, 31, 'WORK', '+4991153901073', '4991153901073', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2401, 510, 1, 9, '', 'd8949f12-948b-41b8-90f0-6a9be2510afc', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2402, 511, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2403, 511, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2404, 511, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2405, 511, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2406, 511, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2407, 511, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2408, 511, 1, 9, '', '67720ceb-6ded-449c-a5c5-aec046b4b256', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2418, 513, 1, 10, '', 'Astrid Hirschmann', '', 0, 'astrid hirschmann');
-INSERT INTO public.rainloop_ab_properties VALUES (2419, 513, 1, 16, '', 'Hirschmann', '', 0, 'hirschmann');
-INSERT INTO public.rainloop_ab_properties VALUES (2420, 513, 1, 15, '', 'Astrid', '', 0, 'astrid');
-INSERT INTO public.rainloop_ab_properties VALUES (2421, 513, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2422, 513, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2423, 513, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2424, 513, 1, 31, 'CELL', '+491726621557', '491726621557', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2425, 513, 1, 31, 'FAX', '+499187906330', '499187906330', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2426, 513, 1, 31, 'WORK', '+499187906488', '499187906488', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2427, 513, 1, 9, '', '12e42e19-9b3b-4fc5-8bbe-a106f3fd772c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2428, 514, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2429, 514, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2430, 514, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2431, 514, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2432, 514, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2433, 514, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2434, 514, 1, 9, '', '08bd83fb-a265-4495-bb13-a5a60b8cbd4b', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2444, 516, 1, 10, '', 'Astrid Schuh', '', 0, 'astrid schuh');
-INSERT INTO public.rainloop_ab_properties VALUES (2445, 516, 1, 16, '', 'Schuh', '', 0, 'schuh');
-INSERT INTO public.rainloop_ab_properties VALUES (2446, 516, 1, 15, '', 'Astrid', '', 0, 'astrid');
-INSERT INTO public.rainloop_ab_properties VALUES (2447, 516, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2448, 516, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2449, 516, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2450, 516, 1, 30, 'OTHER', 'schuh4you@outlook.com', '', 0, 'schuh4you@outlook.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2451, 516, 1, 31, 'CELL', '+491796992304', '491796992304', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2452, 516, 1, 31, 'HOME', '+4991189653433', '4991189653433', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2453, 516, 1, 9, '', '2b9e059c-f5ef-4eba-bbfd-afb9843fc5b1', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2454, 517, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2455, 517, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2456, 517, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2457, 517, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2458, 517, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2459, 517, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2460, 517, 1, 9, '', '28ec3ba1-a38b-4fdc-8e5d-c5685c6f6651', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2470, 519, 1, 10, '', 'Benjamin Skoda', '', 0, 'benjamin skoda');
-INSERT INTO public.rainloop_ab_properties VALUES (2471, 519, 1, 16, '', 'Skoda', '', 0, 'skoda');
-INSERT INTO public.rainloop_ab_properties VALUES (2472, 519, 1, 15, '', 'Benjamin', '', 0, 'benjamin');
-INSERT INTO public.rainloop_ab_properties VALUES (2473, 519, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2474, 519, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2475, 519, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2476, 519, 1, 31, 'CELL', '+4915159988772', '4915159988772', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2477, 519, 1, 9, '', '9de33854-bf89-4b1d-9b95-00a1016801aa', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2478, 520, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2479, 520, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2480, 520, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2481, 520, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2482, 520, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2483, 520, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2484, 520, 1, 9, '', '16f2fa2d-2f5b-44f4-988a-125c83c8618b', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2494, 522, 1, 10, '', 'Carolin Frank', '', 0, 'carolin frank');
-INSERT INTO public.rainloop_ab_properties VALUES (2495, 522, 1, 16, '', 'Frank', '', 0, 'frank');
-INSERT INTO public.rainloop_ab_properties VALUES (2496, 522, 1, 15, '', 'Carolin', '', 0, 'carolin');
-INSERT INTO public.rainloop_ab_properties VALUES (2497, 522, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2498, 522, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2499, 522, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2500, 522, 1, 30, 'OTHER', 'frankcarolin@web.de', '', 0, 'frankcarolin@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2501, 522, 1, 31, 'CELL', '+491792094809', '491792094809', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2502, 522, 1, 31, 'HOME', '+4991319249343', '4991319249343', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2503, 522, 1, 9, '', '88732c33-11b4-4139-9699-44929514a4b6', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2504, 523, 1, 10, '', 'Hürol Türen', '', 0, 'hürol türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2505, 523, 1, 16, '', 'Türen', '', 0, 'türen');
-INSERT INTO public.rainloop_ab_properties VALUES (2506, 523, 1, 15, '', 'Hürol', '', 0, 'hürol');
-INSERT INTO public.rainloop_ab_properties VALUES (2507, 523, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2508, 523, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2509, 523, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2510, 523, 1, 30, 'OTHER', 'hurolt@yahoo.com', '', 0, 'hurolt@yahoo.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2511, 523, 1, 32, 'HOME', 'http://www.google.com/profiles/116926842733159426583', '', 0, 'http://www.google.com/profiles/116926842733159426583');
-INSERT INTO public.rainloop_ab_properties VALUES (2512, 523, 1, 31, 'CELL', '+491728448941', '491728448941', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2513, 523, 1, 31, 'WORK', '+49911931880', '49911931880', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2514, 523, 1, 31, 'HOME', '+499119944026', '499119944026', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2515, 523, 1, 9, '', 'd981a48e-ddfe-405c-90f5-ab89a71ae65b', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2516, 524, 1, 10, '', 'Tom Czernicky', '', 0, 'tom czernicky');
-INSERT INTO public.rainloop_ab_properties VALUES (2517, 524, 1, 16, '', 'Czernicky', '', 0, 'czernicky');
-INSERT INTO public.rainloop_ab_properties VALUES (2518, 524, 1, 15, '', 'Tom', '', 0, 'tom');
-INSERT INTO public.rainloop_ab_properties VALUES (2519, 524, 1, 31, 'cell', '+49 1512 8754650', '4915128754650', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2520, 524, 1, 9, '', '8634d159-922c-4eb0-a762-ed51b3b81e36', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2530, 526, 1, 10, '', 'Carolin Hoose', '', 0, 'carolin hoose');
-INSERT INTO public.rainloop_ab_properties VALUES (2531, 526, 1, 16, '', 'Hoose', '', 0, 'hoose');
-INSERT INTO public.rainloop_ab_properties VALUES (2532, 526, 1, 15, '', 'Carolin', '', 0, 'carolin');
-INSERT INTO public.rainloop_ab_properties VALUES (2533, 526, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2534, 526, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2535, 526, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2536, 526, 1, 31, 'CELL', '+491737005766', '491737005766', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2537, 526, 1, 9, '', 'fb316956-b9fd-46be-b91c-6197e6fb2cde', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2538, 527, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2539, 527, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2540, 527, 1, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (2541, 527, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2542, 527, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2543, 527, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2544, 527, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2545, 527, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2546, 527, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2547, 527, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2548, 527, 1, 9, '', '994933fd-edcc-4ba5-87f8-4691ece6dab5', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2558, 529, 1, 10, '', 'Christian Schmidt', '', 0, 'christian schmidt');
-INSERT INTO public.rainloop_ab_properties VALUES (2559, 529, 1, 16, '', 'Schmidt', '', 0, 'schmidt');
-INSERT INTO public.rainloop_ab_properties VALUES (2560, 529, 1, 15, '', 'Christian', '', 0, 'christian');
-INSERT INTO public.rainloop_ab_properties VALUES (2561, 529, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2562, 529, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2563, 529, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2564, 529, 1, 31, 'CELL', '+4915167201301', '4915167201301', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2565, 529, 1, 9, '', '62560719-245e-4464-9238-5bbafc545703', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2566, 530, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2567, 530, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2568, 530, 1, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (2569, 530, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2570, 530, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2571, 530, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2572, 530, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2573, 530, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2574, 530, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2575, 530, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2576, 530, 1, 9, '', '6c725fe8-3b48-43ae-9ef6-f2e5607118fe', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2586, 532, 1, 10, '', 'Christine Dr. Conrad', '', 0, 'christine dr. conrad');
-INSERT INTO public.rainloop_ab_properties VALUES (2587, 532, 1, 16, '', 'Dr. Conrad', '', 0, 'dr. conrad');
-INSERT INTO public.rainloop_ab_properties VALUES (2588, 532, 1, 15, '', 'Christine', '', 0, 'christine');
-INSERT INTO public.rainloop_ab_properties VALUES (2589, 532, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2590, 532, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2591, 532, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2592, 532, 1, 30, 'OTHER', 'info@gesundzaubern.de', '', 0, 'info@gesundzaubern.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2593, 532, 1, 31, 'CELL', '+4915770691239', '4915770691239', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2594, 532, 1, 31, 'FAX', '+499115980001', '499115980001', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2595, 532, 1, 31, 'WORK', '+499115979049', '499115979049', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2596, 532, 1, 9, '', '10b45eee-f5e0-486c-acc3-07a94422943b', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2597, 533, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2598, 533, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2599, 533, 1, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (2600, 533, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2601, 533, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2602, 533, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2603, 533, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2604, 533, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2605, 533, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2606, 533, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2607, 533, 1, 9, '', '15892e4c-9d97-4636-ae87-f1a42b72ce47', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2617, 535, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2618, 535, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2619, 535, 1, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (2620, 535, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2621, 535, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2622, 535, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2623, 535, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2624, 535, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2625, 535, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2626, 535, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2627, 535, 1, 9, '', '6a3142f3-58c5-4884-a0b9-c22991e14ca9', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2628, 536, 1, 30, '', 'christine.goecke@gmx.net', '', 0, 'christine.goecke@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (2629, 536, 1, 10, '', 'Christine Göcke', '', 0, 'christine göcke');
-INSERT INTO public.rainloop_ab_properties VALUES (2630, 536, 1, 16, '', 'Göcke', '', 0, 'göcke');
-INSERT INTO public.rainloop_ab_properties VALUES (2631, 536, 1, 15, '', 'Christine', '', 0, 'christine');
-INSERT INTO public.rainloop_ab_properties VALUES (2632, 536, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2633, 536, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2634, 536, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2635, 536, 1, 31, 'cell', '+4917679323857', '4917679323857', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2636, 536, 1, 31, 'home', '+4977326010661', '4977326010661', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2637, 536, 1, 9, '', '881a01c5-6baa-4971-a474-8c23f440cb12', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2638, 537, 1, 30, '', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2639, 537, 1, 30, '', 'alex@designerei-dech.de', '', 0, 'alex@designerei-dech.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2640, 537, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2641, 537, 1, 16, '', 'Dech', '', 0, 'dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2642, 537, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (2643, 537, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2644, 537, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2645, 537, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2646, 537, 1, 31, 'cell', '+4917620903630', '4917620903630', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2647, 537, 1, 9, '', '8e74f066-1c5f-4a57-b37e-576c8f7c0e11', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2648, 538, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2649, 538, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2650, 538, 1, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (2651, 538, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2652, 538, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2653, 538, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2654, 538, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2655, 538, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2656, 538, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2657, 538, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2658, 538, 1, 9, '', 'b2319765-08f0-4869-9443-2464aa905428', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2660, 539, 1, 10, '', 'Christine Meergans', '', 0, 'christine meergans');
-INSERT INTO public.rainloop_ab_properties VALUES (2661, 539, 1, 18, '', 'Tini', '', 0, 'tini');
-INSERT INTO public.rainloop_ab_properties VALUES (2662, 539, 1, 16, '', 'Meergans', '', 0, 'meergans');
-INSERT INTO public.rainloop_ab_properties VALUES (2663, 539, 1, 15, '', 'Christine', '', 0, 'christine');
-INSERT INTO public.rainloop_ab_properties VALUES (2664, 539, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2665, 539, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2666, 539, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2667, 539, 1, 31, 'cell', '+49 175 8625890', '491758625890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2668, 539, 1, 31, 'home', '+49 89 843522', '4989843522', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2669, 539, 1, 9, '', '97573051-ff2a-4c74-a2dc-d8fb14ec2311', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2670, 540, 1, 30, '', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2671, 540, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2672, 540, 1, 16, '', 'Dech', '', 0, 'dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2673, 540, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (2674, 540, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2675, 540, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2676, 540, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2677, 540, 1, 31, 'cell', '+4917620903630', '4917620903630', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2678, 540, 1, 9, '', '06543eb9-f193-4ee7-aa87-33ecf76d156d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2679, 541, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2680, 541, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2681, 541, 1, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (2682, 541, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2683, 541, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2684, 541, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2685, 541, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2686, 541, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2687, 541, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2688, 541, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2689, 541, 1, 9, '', '52688c51-1b5a-42ea-851d-cfa1aeafed03', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2690, 542, 1, 30, '', 'clarissakressmann@gmx.de', '', 0, 'clarissakressmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2691, 542, 1, 10, '', 'Clarissa Kreßmann', '', 0, 'clarissa kreßmann');
-INSERT INTO public.rainloop_ab_properties VALUES (2692, 542, 1, 18, '', 'Reh', '', 0, 'reh');
-INSERT INTO public.rainloop_ab_properties VALUES (2693, 542, 1, 16, '', 'Kreßmann', '', 0, 'kreßmann');
-INSERT INTO public.rainloop_ab_properties VALUES (2694, 542, 1, 15, '', 'Clarissa', '', 0, 'clarissa');
-INSERT INTO public.rainloop_ab_properties VALUES (2695, 542, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2696, 542, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2697, 542, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2698, 542, 1, 31, 'cell', '+4915209893969', '4915209893969', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2699, 542, 1, 31, 'home', '+4991955073151', '4991955073151', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2700, 542, 1, 9, '', '9cff083a-ed33-4526-ba09-a88df892bfa7', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2701, 543, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2702, 543, 1, 16, '', 'Dech', '', 0, 'dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2703, 543, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (2704, 543, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2705, 543, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2706, 543, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2707, 543, 1, 30, 'OTHER', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2708, 543, 1, 31, 'CELL', '+4917620903630', '4917620903630', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2709, 543, 1, 9, '', '2a573cde-5b8b-4aea-8751-656192d62b6b', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2710, 544, 1, 10, '', 'Corinna Voos', '', 0, 'corinna voos');
-INSERT INTO public.rainloop_ab_properties VALUES (2711, 544, 1, 16, '', 'Voos', '', 0, 'voos');
-INSERT INTO public.rainloop_ab_properties VALUES (2659, 539, 1, 30, '', 'tinimayer@gmx.de', '', 1, 'tinimayer@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2712, 544, 1, 15, '', 'Corinna', '', 0, 'corinna');
-INSERT INTO public.rainloop_ab_properties VALUES (2713, 544, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2714, 544, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2715, 544, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2716, 544, 1, 31, 'CELL', '+491775115447', '491775115447', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2717, 544, 1, 31, 'WORK', '+492103899541', '492103899541', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2718, 544, 1, 9, '', '46853e17-27d9-47f6-bd7a-2eebde6ef82e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2719, 545, 1, 30, '', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2720, 545, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2721, 545, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2722, 545, 1, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (2723, 545, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2724, 545, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2725, 545, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2726, 545, 1, 31, 'cell', '+4917653869886', '4917653869886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2727, 545, 1, 31, 'work', '+494036138748', '494036138748', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2728, 545, 1, 31, 'home', '+494059371615', '494059371615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2729, 545, 1, 9, '', '2bbccab9-6abe-4fa4-8a88-52aef5ab528a', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2730, 546, 1, 30, '', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2731, 546, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2732, 546, 1, 16, '', 'Dech', '', 0, 'dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2733, 546, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (2734, 546, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2735, 546, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2736, 546, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2737, 546, 1, 31, 'cell', '+4917620903630', '4917620903630', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2738, 546, 1, 9, '', '7c9491af-d3fa-4a32-8311-e1944bddbc21', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2739, 547, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2740, 547, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2741, 547, 1, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (2742, 547, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2743, 547, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2744, 547, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2745, 547, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2746, 547, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2747, 547, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2748, 547, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2749, 547, 1, 9, '', '3452d920-faa0-4a8e-b189-545c3428f141', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2750, 548, 1, 10, '', 'Cornelia Böttcher', '', 0, 'cornelia böttcher');
-INSERT INTO public.rainloop_ab_properties VALUES (2751, 548, 1, 16, '', 'Böttcher', '', 0, 'böttcher');
-INSERT INTO public.rainloop_ab_properties VALUES (2752, 548, 1, 15, '', 'Cornelia', '', 0, 'cornelia');
-INSERT INTO public.rainloop_ab_properties VALUES (2753, 548, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2754, 548, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2755, 548, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2756, 548, 1, 31, 'cell', '+491778054227', '491778054227', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2757, 548, 1, 9, '', 'c0d0c65f-afab-40c4-91f4-30ae6665ca5d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2758, 549, 1, 30, '', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2759, 549, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2760, 549, 1, 16, '', 'Dech', '', 0, 'dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2761, 549, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (2762, 549, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2763, 549, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2764, 549, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2765, 549, 1, 31, 'cell', '+4917620903630', '4917620903630', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2766, 549, 1, 9, '', 'ada3e60b-2201-4afa-b3b8-7ad7e803896e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2767, 550, 1, 10, '', 'Dagmar van der Horst', '', 0, 'dagmar van der horst');
-INSERT INTO public.rainloop_ab_properties VALUES (2768, 550, 1, 16, '', 'van der Horst', '', 0, 'van der horst');
-INSERT INTO public.rainloop_ab_properties VALUES (2769, 550, 1, 15, '', 'Dagmar', '', 0, 'dagmar');
-INSERT INTO public.rainloop_ab_properties VALUES (2770, 550, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2771, 550, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2772, 550, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2773, 550, 1, 31, 'cell', '+49 173 3810216', '491733810216', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2774, 550, 1, 9, '', '909b73fc-083d-4a67-9232-39c73b7cb821', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2775, 551, 1, 30, '', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2776, 551, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2777, 551, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2778, 551, 1, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (2779, 551, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2780, 551, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2781, 551, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2782, 551, 1, 31, 'cell', '+4917653869886', '4917653869886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2783, 551, 1, 31, 'work', '+494036138748', '494036138748', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2784, 551, 1, 31, 'home', '+494059371615', '494059371615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2785, 551, 1, 9, '', '226eddc8-7aa7-44ee-8e2c-ae1cede3bfaf', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2786, 552, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2787, 552, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2788, 552, 1, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (2789, 552, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2790, 552, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2791, 552, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2792, 552, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2793, 552, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2794, 552, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2795, 552, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2796, 552, 1, 9, '', 'c4361436-59fd-4db5-b48f-1132abf3a8a1', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2797, 553, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2798, 553, 1, 16, '', 'Dech', '', 0, 'dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2799, 553, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (2800, 553, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2801, 553, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2802, 553, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2803, 553, 1, 9, '', 'fe339e8e-ab58-42d7-9e05-3d43ee549866', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2804, 554, 1, 10, '', 'Dominik Jaroch', '', 0, 'dominik jaroch');
-INSERT INTO public.rainloop_ab_properties VALUES (2805, 554, 1, 16, '', 'Jaroch', '', 0, 'jaroch');
-INSERT INTO public.rainloop_ab_properties VALUES (2806, 554, 1, 15, '', 'Dominik', '', 0, 'dominik');
-INSERT INTO public.rainloop_ab_properties VALUES (2807, 554, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2808, 554, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2809, 554, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2810, 554, 1, 30, 'OTHER', 'd.jaroch@gmx.de', '', 0, 'd.jaroch@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2811, 554, 1, 31, 'CELL', '+491636008468', '491636008468', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2812, 554, 1, 31, 'WORK', '+499118370202', '499118370202', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2813, 554, 1, 31, 'HOME', '+4991198808787', '4991198808787', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2814, 554, 1, 9, '', '02d09437-aaaf-4f21-b485-262e13f577f8', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2815, 555, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2816, 555, 1, 16, '', 'Dech', '', 0, 'dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2817, 555, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (2818, 555, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2819, 555, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2820, 555, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2821, 555, 1, 30, 'OTHER', 'alex@designerei-dech.de', '', 0, 'alex@designerei-dech.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2822, 555, 1, 30, 'OTHER', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2823, 555, 1, 31, 'CELL', '+4917620903630', '4917620903630', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2824, 555, 1, 9, '', 'e9622531-a381-4f6b-a3cc-b7e8fb8577ef', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2825, 556, 1, 10, '', 'Dr. Alexandra Krenmayer', '', 0, 'dr. alexandra krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (2826, 556, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (2827, 556, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (2828, 556, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2829, 556, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2830, 556, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2831, 556, 1, 31, 'CELL', '+49 172 2132888', '491722132888', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2832, 556, 1, 9, '', '856bf148-15d3-467e-b91f-21994de4d03c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2833, 557, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2834, 557, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2835, 557, 1, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (2836, 557, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2837, 557, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2838, 557, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2839, 557, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2840, 557, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2841, 557, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2842, 557, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2843, 557, 1, 9, '', '9b84cc94-e001-49a3-a756-772109149cdf', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2844, 558, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2845, 558, 1, 16, '', 'Dech', '', 0, 'dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2846, 558, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (2847, 558, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2848, 558, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2849, 558, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2850, 558, 1, 9, '', '85c3fc38-b2c9-42f7-a00c-ad464732ca3b', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2851, 559, 1, 10, '', 'Dr. Jungkunz', '', 0, 'dr. jungkunz');
-INSERT INTO public.rainloop_ab_properties VALUES (2852, 559, 1, 16, '', 'Jungkunz', '', 0, 'jungkunz');
-INSERT INTO public.rainloop_ab_properties VALUES (2853, 559, 1, 15, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2854, 559, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2855, 559, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2856, 559, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2857, 559, 1, 31, 'WORK', '+499119569944', '499119569944', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2858, 559, 1, 9, '', '423d1d73-14c0-4407-9fd4-03fcd0b6c41c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2859, 560, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2860, 560, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2861, 560, 1, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (2862, 560, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2863, 560, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2864, 560, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2865, 560, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2866, 560, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2867, 560, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2868, 560, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2869, 560, 1, 9, '', '6d01c11d-d40f-4ed3-8364-d377908c2d55', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2870, 561, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2871, 561, 1, 16, '', 'Dech', '', 0, 'dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2872, 561, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (2873, 561, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2874, 561, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2875, 561, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2876, 561, 1, 30, 'OTHER', 'alex@designerei-dech.de', '', 0, 'alex@designerei-dech.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2877, 561, 1, 30, 'OTHER', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2878, 561, 1, 31, 'CELL', '+4917620903630', '4917620903630', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2879, 561, 1, 9, '', 'ebeed563-8e20-49ac-9486-2545d045174f', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2880, 562, 1, 10, '', 'Dr. Rometsch', '', 0, 'dr. rometsch');
-INSERT INTO public.rainloop_ab_properties VALUES (2881, 562, 1, 16, '', 'Rometsch', '', 0, 'rometsch');
-INSERT INTO public.rainloop_ab_properties VALUES (2882, 562, 1, 15, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2883, 562, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2884, 562, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2885, 562, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2886, 562, 1, 30, 'OTHER', 'Glogauer Straße 15, 90473 Nürnberg', '', 0, 'glogauer straße 15, 90473 nürnberg');
-INSERT INTO public.rainloop_ab_properties VALUES (2887, 562, 1, 31, 'WORK', '+49911808366', '49911808366', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2888, 562, 1, 9, '', '0ff544b9-1ba0-4bba-876f-434cd71182a2', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2889, 563, 1, 10, '', 'Ina Rosentreter', '', 0, 'ina rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2890, 563, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (2891, 563, 1, 15, '', 'Ina', '', 0, 'ina');
-INSERT INTO public.rainloop_ab_properties VALUES (2892, 563, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2893, 563, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2894, 563, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2895, 563, 1, 30, 'OTHER', 'privat@ina-rosentreter.de', '', 0, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2896, 563, 1, 31, 'CELL', '+4917653869886', '4917653869886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2897, 563, 1, 31, 'WORK', '+494036138748', '494036138748', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2898, 563, 1, 31, 'HOME', '+494059371615', '494059371615', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2899, 563, 1, 9, '', '9fc01974-4803-4b2b-beaf-f2ed0cf19790', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2900, 564, 1, 30, '', 'alex@halberhai.de', '', 0, 'alex@halberhai.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2901, 564, 1, 30, '', 'alex@designerei-dech.de', '', 0, 'alex@designerei-dech.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2902, 564, 1, 10, '', 'Alexandra Dech', '', 0, 'alexandra dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2903, 564, 1, 16, '', 'Dech', '', 0, 'dech');
-INSERT INTO public.rainloop_ab_properties VALUES (2904, 564, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (2905, 564, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2906, 564, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2907, 564, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2908, 564, 1, 31, 'cell', '+4917620903630', '4917620903630', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2909, 564, 1, 9, '', '812d5cd9-496e-4e94-9664-3cc861843568', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2910, 565, 1, 10, '', 'Esther Sanchez del Pozo', '', 0, 'esther sanchez del pozo');
-INSERT INTO public.rainloop_ab_properties VALUES (2911, 565, 1, 16, '', 'Sanchez del Pozo', '', 0, 'sanchez del pozo');
-INSERT INTO public.rainloop_ab_properties VALUES (2912, 565, 1, 15, '', 'Esther', '', 0, 'esther');
-INSERT INTO public.rainloop_ab_properties VALUES (2913, 565, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2914, 565, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2915, 565, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2916, 565, 1, 30, 'OTHER', 'esther.sanchezdelpozo@gmail.com', '', 0, 'esther.sanchezdelpozo@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2917, 565, 1, 31, 'CELL', '+34637752528', '34637752528', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2918, 565, 1, 9, '', 'da62a8f3-852a-4c44-9bcc-58a92bb6c8bb', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2919, 566, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
-INSERT INTO public.rainloop_ab_properties VALUES (2920, 566, 1, 16, '', 'Daun', '', 0, 'daun');
-INSERT INTO public.rainloop_ab_properties VALUES (2921, 566, 1, 15, '', 'Ines', '', 0, 'ines');
-INSERT INTO public.rainloop_ab_properties VALUES (2922, 566, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2923, 566, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2924, 566, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2925, 566, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2926, 566, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2927, 566, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2928, 566, 1, 9, '', 'a76c606b-8cec-4fdb-930b-a24a1610c648', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2929, 567, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (2930, 567, 1, 16, '', 'da Silva', '', 0, 'da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (2931, 567, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
-INSERT INTO public.rainloop_ab_properties VALUES (2932, 567, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2933, 567, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2934, 567, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2935, 567, 1, 30, 'OTHER', 'alexandra.adv@outlook.com', '', 0, 'alexandra.adv@outlook.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2936, 567, 1, 31, 'CELL', '005-581-85749118', '00558185749118', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2937, 567, 1, 9, '', 'b3105ce1-529c-4bc5-9d61-369106f0e061', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2938, 568, 1, 10, '', 'Eva Rundholz', '', 0, 'eva rundholz');
-INSERT INTO public.rainloop_ab_properties VALUES (2939, 568, 1, 16, '', 'Rundholz', '', 0, 'rundholz');
-INSERT INTO public.rainloop_ab_properties VALUES (2940, 568, 1, 15, '', 'Eva', '', 0, 'eva');
-INSERT INTO public.rainloop_ab_properties VALUES (2941, 568, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2942, 568, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2943, 568, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2944, 568, 1, 31, 'CELL', '+4915123037973', '4915123037973', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2945, 568, 1, 9, '', 'f5df9943-585e-4ebc-a269-9b1b8aaefaa1', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2946, 569, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
-INSERT INTO public.rainloop_ab_properties VALUES (2947, 569, 1, 16, '', 'Daun', '', 0, 'daun');
-INSERT INTO public.rainloop_ab_properties VALUES (2948, 569, 1, 15, '', 'Ines', '', 0, 'ines');
-INSERT INTO public.rainloop_ab_properties VALUES (2949, 569, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2950, 569, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2951, 569, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2952, 569, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2953, 569, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2954, 569, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2955, 569, 1, 9, '', '929ea148-6e78-4f1f-bf74-930a45bd236d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2956, 570, 1, 30, '', 'alexandra.adv@outlook.com', '', 0, 'alexandra.adv@outlook.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2957, 570, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (2958, 570, 1, 16, '', 'da Silva', '', 0, 'da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (2959, 570, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
-INSERT INTO public.rainloop_ab_properties VALUES (2960, 570, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2961, 570, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2962, 570, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2963, 570, 1, 31, 'cell', '005-581-85749118', '00558185749118', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2964, 570, 1, 9, '', '7e7e4cd4-22ab-4563-9c41-769fee405140', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2965, 571, 1, 10, '', 'Fabian Schiller', '', 0, 'fabian schiller');
-INSERT INTO public.rainloop_ab_properties VALUES (2966, 571, 1, 16, '', 'Schiller', '', 0, 'schiller');
-INSERT INTO public.rainloop_ab_properties VALUES (2967, 571, 1, 15, '', 'Fabian', '', 0, 'fabian');
-INSERT INTO public.rainloop_ab_properties VALUES (2968, 571, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2969, 571, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2970, 571, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2971, 571, 1, 31, 'CELL', '+4915151917650', '4915151917650', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2972, 571, 1, 9, '', 'a8367713-2c53-4970-94f6-5ba3aa1939d5', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2973, 572, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
-INSERT INTO public.rainloop_ab_properties VALUES (2974, 572, 1, 16, '', 'Daun', '', 0, 'daun');
-INSERT INTO public.rainloop_ab_properties VALUES (2975, 572, 1, 15, '', 'Ines', '', 0, 'ines');
-INSERT INTO public.rainloop_ab_properties VALUES (2976, 572, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2977, 572, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2978, 572, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2979, 572, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
-INSERT INTO public.rainloop_ab_properties VALUES (2980, 572, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2981, 572, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2982, 572, 1, 9, '', '35fd6806-e691-456e-9350-efa20755d00c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2983, 573, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (2984, 573, 1, 16, '', 'da Silva', '', 0, 'da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (2985, 573, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
-INSERT INTO public.rainloop_ab_properties VALUES (2986, 573, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2987, 573, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2988, 573, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2989, 573, 1, 30, 'OTHER', 'alexandra.adv@outlook.com', '', 0, 'alexandra.adv@outlook.com');
-INSERT INTO public.rainloop_ab_properties VALUES (2990, 573, 1, 31, 'CELL', '+55 81 8461-4113', '558184614113', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2991, 573, 1, 9, '', 'c1e4e5cc-e2ab-43ad-9402-e7b215d78ef8', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2992, 574, 1, 10, '', 'Frank Kraeker', '', 0, 'frank kraeker');
-INSERT INTO public.rainloop_ab_properties VALUES (2993, 574, 1, 16, '', 'Kraeker', '', 0, 'kraeker');
-INSERT INTO public.rainloop_ab_properties VALUES (2994, 574, 1, 15, '', 'Frank', '', 0, 'frank');
-INSERT INTO public.rainloop_ab_properties VALUES (2995, 574, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2996, 574, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2997, 574, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2998, 574, 1, 31, 'WORK', '+4916098908710', '4916098908710', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (2999, 574, 1, 9, '', '5ceb9b96-d27a-4671-968b-d860a09e3c20', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3000, 575, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3001, 575, 1, 16, '', 'Daun', '', 0, 'daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3002, 575, 1, 15, '', 'Ines', '', 0, 'ines');
-INSERT INTO public.rainloop_ab_properties VALUES (3003, 575, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3004, 575, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3005, 575, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3006, 575, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3007, 575, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3008, 575, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3009, 575, 1, 9, '', 'd258f00b-3d64-4d41-bae3-c0ca603a7bdf', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3010, 576, 1, 10, '', 'Sarah Matthe', '', 0, 'sarah matthe');
-INSERT INTO public.rainloop_ab_properties VALUES (3011, 576, 1, 16, '', 'Matthe', '', 0, 'matthe');
-INSERT INTO public.rainloop_ab_properties VALUES (3012, 576, 1, 15, '', 'Sarah', '', 0, 'sarah');
-INSERT INTO public.rainloop_ab_properties VALUES (3013, 576, 1, 31, 'cell', '+49 160 2406578', '491602406578', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3014, 576, 1, 9, '', '387703d1-593e-4548-9f93-be5115d56e94', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3015, 577, 1, 30, '', 'alexandra.adv@outlook.com', '', 0, 'alexandra.adv@outlook.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3016, 577, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3017, 577, 1, 16, '', 'da Silva', '', 0, 'da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3018, 577, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
-INSERT INTO public.rainloop_ab_properties VALUES (3019, 577, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3020, 577, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3021, 577, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3022, 577, 1, 31, 'cell', '005-581-85749118', '00558185749118', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3023, 577, 1, 9, '', 'efebb251-bd41-4ee5-b1d2-000c9a8bab4b', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3024, 578, 1, 10, '', 'Franziska Rabensteiner', '', 0, 'franziska rabensteiner');
-INSERT INTO public.rainloop_ab_properties VALUES (3025, 578, 1, 16, '', 'Rabensteiner', '', 0, 'rabensteiner');
-INSERT INTO public.rainloop_ab_properties VALUES (3026, 578, 1, 15, '', 'Franziska', '', 0, 'franziska');
-INSERT INTO public.rainloop_ab_properties VALUES (3027, 578, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3028, 578, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3029, 578, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3030, 578, 1, 31, 'CELL', '+491736821075', '491736821075', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3031, 578, 1, 31, 'WORK', '+499119231529', '499119231529', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3032, 578, 1, 9, '', '61808fde-69c3-4929-a08e-18dcbfa33a5a', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3033, 579, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3034, 579, 1, 16, '', 'Daun', '', 0, 'daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3035, 579, 1, 15, '', 'Ines', '', 0, 'ines');
-INSERT INTO public.rainloop_ab_properties VALUES (3036, 579, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3037, 579, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3038, 579, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3039, 579, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3040, 579, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3041, 579, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3042, 579, 1, 9, '', '4a1885b8-a2bf-4ace-bad7-e3237c03f21a', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3043, 580, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3044, 580, 1, 16, '', 'da Silva', '', 0, 'da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3045, 580, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
-INSERT INTO public.rainloop_ab_properties VALUES (3046, 580, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3047, 580, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3048, 580, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3049, 580, 1, 9, '', '935aadb9-8a9d-4aff-b4d6-22a34711a558', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3050, 581, 1, 10, '', 'Franziska Steinmetz', '', 0, 'franziska steinmetz');
-INSERT INTO public.rainloop_ab_properties VALUES (3051, 581, 1, 16, '', 'Steinmetz', '', 0, 'steinmetz');
-INSERT INTO public.rainloop_ab_properties VALUES (3052, 581, 1, 15, '', 'Franziska', '', 0, 'franziska');
-INSERT INTO public.rainloop_ab_properties VALUES (3053, 581, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3054, 581, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3055, 581, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3056, 581, 1, 31, 'CELL', '+491755277412', '491755277412', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3057, 581, 1, 9, '', '830e2195-950a-4676-8042-a0a17b4f2d96', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3058, 582, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3059, 582, 1, 16, '', 'Daun', '', 0, 'daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3060, 582, 1, 15, '', 'Ines', '', 0, 'ines');
-INSERT INTO public.rainloop_ab_properties VALUES (3061, 582, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3062, 582, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3063, 582, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3064, 582, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3065, 582, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3066, 582, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3067, 582, 1, 9, '', '111db708-867d-4f2a-b2f1-dd8eea55a52b', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3068, 583, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3069, 583, 1, 16, '', 'da Silva', '', 0, 'da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3070, 583, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
-INSERT INTO public.rainloop_ab_properties VALUES (3071, 583, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3072, 583, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3073, 583, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3074, 583, 1, 9, '', '415d4ee1-74e1-4bbf-b874-f31654359169', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3075, 584, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3076, 584, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3077, 584, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3078, 584, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3079, 584, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3080, 584, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3081, 584, 1, 30, 'OTHER', 'f.gehrmann@proge.de', '', 0, 'f.gehrmann@proge.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3082, 584, 1, 9, '', 'db2c24f8-e090-4edd-b479-70c1465a1d59', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3083, 585, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3084, 585, 1, 16, '', 'Daun', '', 0, 'daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3085, 585, 1, 15, '', 'Ines', '', 0, 'ines');
-INSERT INTO public.rainloop_ab_properties VALUES (3086, 585, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3087, 585, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3088, 585, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3089, 585, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3090, 585, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3091, 585, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3092, 585, 1, 9, '', '1c034044-9959-464d-80f2-12504929d6e6', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3093, 586, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3094, 586, 1, 16, '', 'da Silva', '', 0, 'da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3095, 586, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
-INSERT INTO public.rainloop_ab_properties VALUES (3096, 586, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3097, 586, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3098, 586, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3099, 586, 1, 9, '', '32791414-655d-4428-849a-5a6bd11cae2d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3100, 587, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3101, 587, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3102, 587, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3103, 587, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3104, 587, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3105, 587, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3106, 587, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3107, 587, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3108, 587, 1, 9, '', 'fd4a7258-1cb6-4fc7-8637-adc61b9bd32e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3109, 588, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3110, 588, 1, 16, '', 'Daun', '', 0, 'daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3111, 588, 1, 15, '', 'Ines', '', 0, 'ines');
-INSERT INTO public.rainloop_ab_properties VALUES (3112, 588, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3113, 588, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3114, 588, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3115, 588, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3217, 601, 1, 16, '', 'Daun', '', 0, 'daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3116, 588, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3117, 588, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3118, 588, 1, 9, '', '4049656b-01af-4c35-819e-5c94622ad208', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3119, 589, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3120, 589, 1, 16, '', 'da Silva', '', 0, 'da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3121, 589, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
-INSERT INTO public.rainloop_ab_properties VALUES (3122, 589, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3123, 589, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3124, 589, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3125, 589, 1, 9, '', '1cc1a71b-be4f-47aa-a4fb-5dc0c7f665d1', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3126, 590, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3127, 590, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3128, 590, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3129, 590, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3130, 590, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3131, 590, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3132, 590, 1, 30, 'OTHER', 'f.gehrmann@proge.de', '', 0, 'f.gehrmann@proge.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3133, 590, 1, 9, '', '2ab6414b-6ad9-4052-8d38-d911fac0ab43', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3134, 591, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3135, 591, 1, 16, '', 'Daun', '', 0, 'daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3136, 591, 1, 15, '', 'Ines', '', 0, 'ines');
-INSERT INTO public.rainloop_ab_properties VALUES (3137, 591, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3138, 591, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3139, 591, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3140, 591, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3141, 591, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3142, 591, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3143, 591, 1, 9, '', 'c6cbbc83-a994-4c8c-ab0e-5e8ef421d7e5', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3144, 592, 1, 10, '', 'Michael Ultsch', '', 0, 'michael ultsch');
-INSERT INTO public.rainloop_ab_properties VALUES (3145, 592, 1, 16, '', 'Ultsch', '', 0, 'ultsch');
-INSERT INTO public.rainloop_ab_properties VALUES (3146, 592, 1, 15, '', 'Michael', '', 0, 'michael');
-INSERT INTO public.rainloop_ab_properties VALUES (3147, 592, 1, 31, 'cell', '+49 160 3680010', '491603680010', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3148, 592, 1, 9, '', '4103dcb4-a380-4893-8c8a-f44c79bd777c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3149, 593, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3150, 593, 1, 16, '', 'da Silva', '', 0, 'da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3151, 593, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
-INSERT INTO public.rainloop_ab_properties VALUES (3152, 593, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3153, 593, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3154, 593, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3155, 593, 1, 9, '', '7c6c3fc9-fa71-44ed-864e-2ac1ef7f8204', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3156, 594, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3157, 594, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3158, 594, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3159, 594, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3160, 594, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3161, 594, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3162, 594, 1, 30, 'OTHER', 'f.gehrmann@proge.de', '', 0, 'f.gehrmann@proge.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3163, 594, 1, 9, '', 'aaac55e0-1bc6-4fb3-a710-c2e7890ed000', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3164, 595, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3165, 595, 1, 16, '', 'Daun', '', 0, 'daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3166, 595, 1, 15, '', 'Ines', '', 0, 'ines');
-INSERT INTO public.rainloop_ab_properties VALUES (3167, 595, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3168, 595, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3169, 595, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3170, 595, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3171, 595, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3172, 595, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3173, 595, 1, 9, '', '7d779091-413c-46f8-9b24-16197b95a9e1', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3174, 596, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3175, 596, 1, 16, '', 'da Silva', '', 0, 'da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3176, 596, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
-INSERT INTO public.rainloop_ab_properties VALUES (3177, 596, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3178, 596, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3179, 596, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3180, 596, 1, 9, '', 'fda5d1a9-8586-40d1-a65b-59ab3e3f5f10', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3181, 597, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3182, 597, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3183, 597, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3184, 597, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3185, 597, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3186, 597, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3187, 597, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3188, 597, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3189, 597, 1, 9, '', '2d66b05d-90be-47af-8589-15a62fd3e8a0', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3190, 598, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3191, 598, 1, 16, '', 'Daun', '', 0, 'daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3192, 598, 1, 15, '', 'Ines', '', 0, 'ines');
-INSERT INTO public.rainloop_ab_properties VALUES (3193, 598, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3194, 598, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3195, 598, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3196, 598, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3197, 598, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3198, 598, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3199, 598, 1, 9, '', '1b5743f9-d911-45f0-a23f-14d2607c233a', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3200, 599, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3201, 599, 1, 16, '', 'da Silva', '', 0, 'da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3202, 599, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
-INSERT INTO public.rainloop_ab_properties VALUES (3203, 599, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3204, 599, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3205, 599, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3206, 599, 1, 9, '', '611f2bbb-92e2-479d-94b8-a97a4bcd8631', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3207, 600, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3208, 600, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3209, 600, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3210, 600, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3211, 600, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3212, 600, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3213, 600, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3214, 600, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3215, 600, 1, 9, '', '54bf619a-7bda-4293-8e7b-ed725ef073ad', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3216, 601, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3218, 601, 1, 15, '', 'Ines', '', 0, 'ines');
-INSERT INTO public.rainloop_ab_properties VALUES (3219, 601, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3220, 601, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3221, 601, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3222, 601, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3223, 601, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3224, 601, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3225, 601, 1, 9, '', '0cd421c3-f263-4d06-96d1-b05e3854286f', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3226, 602, 1, 10, '', 'Alexandra Denise da Silva', '', 0, 'alexandra denise da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3227, 602, 1, 16, '', 'da Silva', '', 0, 'da silva');
-INSERT INTO public.rainloop_ab_properties VALUES (3228, 602, 1, 15, '', 'Alexandra Denise', '', 0, 'alexandra denise');
-INSERT INTO public.rainloop_ab_properties VALUES (3229, 602, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3230, 602, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3231, 602, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3232, 602, 1, 9, '', '18a82fd8-e075-4f76-a03b-63bd76befdc4', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3233, 603, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3234, 603, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3235, 603, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3236, 603, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3237, 603, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3238, 603, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3239, 603, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3240, 603, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3241, 603, 1, 9, '', 'addd7cbb-504b-4c3b-9434-2d8c4940922a', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3242, 604, 1, 10, '', 'Ines Daun', '', 0, 'ines daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3243, 604, 1, 16, '', 'Daun', '', 0, 'daun');
-INSERT INTO public.rainloop_ab_properties VALUES (3244, 604, 1, 15, '', 'Ines', '', 0, 'ines');
-INSERT INTO public.rainloop_ab_properties VALUES (3245, 604, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3246, 604, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3247, 604, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3248, 604, 1, 30, 'OTHER', 'ines.daun@rechtsanwaeltin-daun.de', '', 0, 'ines.daun@rechtsanwaeltin-daun.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3249, 604, 1, 31, 'FAX', '+4991125508899', '4991125508899', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3250, 604, 1, 31, 'WORK', '+4991125508890', '4991125508890', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3251, 604, 1, 9, '', 'e33fba03-5df1-4585-aff2-331893ecb1c1', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3252, 605, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3253, 605, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3254, 605, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (3255, 605, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3256, 605, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3257, 605, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3258, 605, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3259, 605, 1, 9, '', '8c376ee1-f231-4267-83c0-388536d582b7', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3260, 606, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3261, 606, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3262, 606, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3263, 606, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3264, 606, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3265, 606, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3266, 606, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3267, 606, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3268, 606, 1, 9, '', '96e40e56-cdcf-4504-8b7b-3595feb1d077', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3269, 607, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3270, 607, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3271, 607, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3272, 607, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3273, 607, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3274, 607, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3275, 607, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3276, 607, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3277, 607, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3278, 607, 1, 9, '', '37aa60c7-b75c-47f6-ba03-9b4ab383deef', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3279, 608, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3280, 608, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3281, 608, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (3282, 608, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3283, 608, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3284, 608, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3285, 608, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3286, 608, 1, 9, '', '93d860cf-821b-43d3-a6ab-bc2fea1223c9', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3287, 609, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3288, 609, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3289, 609, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3290, 609, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3291, 609, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3292, 609, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3293, 609, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3294, 609, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3295, 609, 1, 9, '', 'e5a43ac2-7807-4fd4-8b0c-f0a5670e7a7a', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3296, 610, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3297, 610, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3298, 610, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3299, 610, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3300, 610, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3301, 610, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3302, 610, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3303, 610, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3304, 610, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3305, 610, 1, 9, '', '1d6d680f-96d3-4b3d-b499-20168ff48bfa', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3306, 611, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3307, 611, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3308, 611, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (3309, 611, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3310, 611, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3311, 611, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3312, 611, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3313, 611, 1, 9, '', '979f879c-6a13-46d3-8d4d-3ac467fc0bc8', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3314, 612, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3315, 612, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3316, 612, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3317, 612, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3318, 612, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3319, 612, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3320, 612, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3321, 612, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3322, 612, 1, 9, '', '97784153-44bf-4a2d-a23f-ea70751372fc', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3323, 613, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3324, 613, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3325, 613, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3326, 613, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3327, 613, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3328, 613, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3329, 613, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3330, 613, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3331, 613, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3332, 613, 1, 9, '', 'bd40a7bc-a629-421a-ac81-a1666fd153c6', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3333, 614, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3334, 614, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3335, 614, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (3336, 614, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3337, 614, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3338, 614, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3339, 614, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3340, 614, 1, 9, '', '6ffc569f-12e1-4116-b519-c0e5fec869c3', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3341, 615, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3342, 615, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3343, 615, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3344, 615, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3345, 615, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3346, 615, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3347, 615, 1, 9, '', '251d7441-ad83-4084-9cc7-36c57d09faee', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3348, 616, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3349, 616, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3350, 616, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3351, 616, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3352, 616, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3353, 616, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3354, 616, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3355, 616, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3356, 616, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3357, 616, 1, 9, '', 'f4bc455c-066f-406f-9b27-608a743c2f5d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3358, 617, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3359, 617, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3360, 617, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (3361, 617, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3362, 617, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3363, 617, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3364, 617, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3365, 617, 1, 9, '', '9cf24dae-1e53-4399-9443-5c7d0c0d6aa0', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3366, 618, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3367, 618, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3368, 618, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3369, 618, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3370, 618, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3371, 618, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3372, 618, 1, 9, '', 'b80d2705-bb0c-4184-a5b4-2900c6ad48a2', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3373, 619, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3374, 619, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3375, 619, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3376, 619, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3377, 619, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3378, 619, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3379, 619, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3380, 619, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3381, 619, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3382, 619, 1, 9, '', 'fa4ba2fd-99cc-43f0-9ec6-1070435e19a2', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3383, 620, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3384, 620, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3385, 620, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (3386, 620, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3387, 620, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3388, 620, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3389, 620, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3390, 620, 1, 9, '', '9c7ec803-c867-49e2-8854-65a509910a43', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3391, 621, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3392, 621, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3393, 621, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3394, 621, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3395, 621, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3396, 621, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3397, 621, 1, 9, '', '38e9d6ba-6050-4e69-86d4-22ac6eb327c2', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3398, 622, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3399, 622, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3400, 622, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3401, 622, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3402, 622, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3403, 622, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3404, 622, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3405, 622, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3406, 622, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3407, 622, 1, 9, '', '68faaa84-9a33-4571-b498-052da8ff9c89', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3408, 623, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3409, 623, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3410, 623, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (3411, 623, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3412, 623, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3413, 623, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3414, 623, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3415, 623, 1, 9, '', 'd3fe7e00-b91b-4a40-a477-d80ce3fe6e26', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3416, 624, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3417, 624, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3418, 624, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3419, 624, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3420, 624, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3421, 624, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3422, 624, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3423, 624, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3424, 624, 1, 9, '', '1a39dc66-d311-4200-bb7b-7933b065a524', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3425, 625, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3426, 625, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3427, 625, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3428, 625, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3429, 625, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3430, 625, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3431, 625, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3432, 625, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3433, 625, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3434, 625, 1, 9, '', '3c2f1f7a-beb4-4459-84dd-4e128fc37224', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3435, 626, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3436, 626, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3437, 626, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (3438, 626, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3439, 626, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3440, 626, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3441, 626, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3442, 626, 1, 9, '', '97465b64-9af4-4c0c-aea3-1174c0342a0e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3443, 627, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3444, 627, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3445, 627, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3446, 627, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3447, 627, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3448, 627, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3449, 627, 1, 30, 'OTHER', 'f.gehrmann@proge.de', '', 0, 'f.gehrmann@proge.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3450, 627, 1, 9, '', '9cb840f3-255e-4d26-887c-afb7c776e7ea', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3451, 628, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3452, 628, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3453, 628, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3454, 628, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3455, 628, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3456, 628, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3457, 628, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3458, 628, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3459, 628, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3460, 628, 1, 9, '', 'f0532d6c-bb66-4771-8ec9-0e12dfbd096c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3461, 629, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3462, 629, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3463, 629, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (3464, 629, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3465, 629, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3466, 629, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3467, 629, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3468, 629, 1, 9, '', 'cccb6ee9-0859-4474-b095-d902a4c976c1', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3469, 630, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3470, 630, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3471, 630, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3472, 630, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3473, 630, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3474, 630, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3475, 630, 1, 9, '', '11a6b6a2-e17d-4f5e-b946-58b5bd23a1d8', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3476, 631, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3477, 631, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3478, 631, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3479, 631, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3480, 631, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3481, 631, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3482, 631, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3483, 631, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3484, 631, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3485, 631, 1, 9, '', '93f18396-da54-4435-9ce2-a843df6697a3', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3486, 632, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3487, 632, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3488, 632, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (3489, 632, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3490, 632, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3491, 632, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3492, 632, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3493, 632, 1, 9, '', '389b94d1-4707-4695-bc8f-6e1e8901427a', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3494, 633, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3495, 633, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3496, 633, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3497, 633, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3498, 633, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3499, 633, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3500, 633, 1, 9, '', 'fb843566-363c-44d2-abce-1a3a1a28f92a', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3501, 634, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3502, 634, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3503, 634, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3504, 634, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3505, 634, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3506, 634, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3507, 634, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3508, 634, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3509, 634, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3510, 634, 1, 9, '', 'e7f36a0c-582c-4fb8-8f70-988610d21958', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3511, 635, 1, 10, '', 'Alexandra Krenmayer', '', 0, 'alexandra krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3512, 635, 1, 16, '', 'Krenmayer', '', 0, 'krenmayer');
-INSERT INTO public.rainloop_ab_properties VALUES (3513, 635, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (3514, 635, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3515, 635, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3516, 635, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3517, 635, 1, 31, 'CELL', '+491722132888', '491722132888', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3518, 635, 1, 9, '', '2e1cd761-0b8f-4d10-a973-606ff6bca014', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3519, 636, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3520, 636, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3521, 636, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3522, 636, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3523, 636, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3524, 636, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3525, 636, 1, 9, '', '3499ba98-e9e4-4f5b-a150-49755cf4a7b5', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3526, 637, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3527, 637, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3528, 637, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3529, 637, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3530, 637, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3531, 637, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3532, 637, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3533, 637, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3534, 637, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3535, 637, 1, 9, '', '91fb5eb6-5816-412f-ab4c-28a513d43864', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3536, 638, 1, 10, '', 'Gudrun Veitinger', '', 0, 'gudrun veitinger');
-INSERT INTO public.rainloop_ab_properties VALUES (3537, 638, 1, 16, '', 'Veitinger', '', 0, 'veitinger');
-INSERT INTO public.rainloop_ab_properties VALUES (3538, 638, 1, 15, '', 'Gudrun', '', 0, 'gudrun');
-INSERT INTO public.rainloop_ab_properties VALUES (3539, 638, 1, 31, 'x-privat', '+49 176 20046434', '4917620046434', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3540, 638, 1, 31, 'work', '+49 911 6104452', '499116104452', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3541, 638, 1, 9, '', 'b511740b-fdf0-481b-82fb-e4002a191763', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3542, 639, 1, 10, '', 'Alfred Honermann', '', 0, 'alfred honermann');
-INSERT INTO public.rainloop_ab_properties VALUES (3543, 639, 1, 16, '', 'Honermann', '', 0, 'honermann');
-INSERT INTO public.rainloop_ab_properties VALUES (3544, 639, 1, 15, '', 'Alfred', '', 0, 'alfred');
-INSERT INTO public.rainloop_ab_properties VALUES (3545, 639, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3546, 639, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3547, 639, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3548, 639, 1, 30, 'OTHER', 'ahonermann@t-online.de', '', 0, 'ahonermann@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3549, 639, 1, 9, '', '12aa7998-a598-4f55-99f8-5d77d7e94324', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3550, 640, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3551, 640, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3552, 640, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3553, 640, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3554, 640, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3555, 640, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3556, 640, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3557, 640, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3558, 640, 1, 9, '', 'ea37b388-b940-4878-bec8-1affa4a71f19', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3559, 641, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3560, 641, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3561, 641, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3562, 641, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3563, 641, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3564, 641, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3565, 641, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3566, 641, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3567, 641, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3568, 641, 1, 9, '', 'f068a680-c644-4892-b1f2-0050e009222c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3569, 642, 1, 10, '', 'Roland Steinmetz', '', 0, 'roland steinmetz');
-INSERT INTO public.rainloop_ab_properties VALUES (3570, 642, 1, 16, '', 'Steinmetz', '', 0, 'steinmetz');
-INSERT INTO public.rainloop_ab_properties VALUES (3571, 642, 1, 15, '', 'Roland', '', 0, 'roland');
-INSERT INTO public.rainloop_ab_properties VALUES (3572, 642, 1, 31, 'x-mobil', '+49 172 8139933', '491728139933', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3573, 642, 1, 9, '', 'e3529b33-c0dc-476c-8e0f-82814824929e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3574, 643, 1, 10, '', 'Alfred Honermann', '', 0, 'alfred honermann');
-INSERT INTO public.rainloop_ab_properties VALUES (3575, 643, 1, 16, '', 'Honermann', '', 0, 'honermann');
-INSERT INTO public.rainloop_ab_properties VALUES (3576, 643, 1, 15, '', 'Alfred', '', 0, 'alfred');
-INSERT INTO public.rainloop_ab_properties VALUES (3577, 643, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3578, 643, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3579, 643, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3580, 643, 1, 30, 'OTHER', 'ahonermann@t-online.de', '', 0, 'ahonermann@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3581, 643, 1, 9, '', 'a1191390-cc1b-40fd-8d0d-58d11bdae66e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3582, 644, 1, 10, '', 'Frauke Gehrmann', '', 0, 'frauke gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3583, 644, 1, 16, '', 'Gehrmann', '', 0, 'gehrmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3584, 644, 1, 15, '', 'Frauke', '', 0, 'frauke');
-INSERT INTO public.rainloop_ab_properties VALUES (3585, 644, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3586, 644, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3587, 644, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3588, 644, 1, 30, 'OTHER', 'frauke.gehrmann@gmx.de', '', 0, 'frauke.gehrmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3589, 644, 1, 31, 'CELL', '+4915159215966', '4915159215966', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3590, 644, 1, 9, '', '2d37bcc7-00aa-44e1-8c24-cf1709d63fa7', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3591, 645, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3592, 645, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3593, 645, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3594, 645, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3595, 645, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3596, 645, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3597, 645, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3598, 645, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3599, 645, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3600, 645, 1, 9, '', '41e033cb-f026-4a55-94d1-9c8ac0e34538', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3601, 646, 1, 10, '', 'Alica Jacobi', '', 0, 'alica jacobi');
-INSERT INTO public.rainloop_ab_properties VALUES (3602, 646, 1, 16, '', 'Jacobi', '', 0, 'jacobi');
-INSERT INTO public.rainloop_ab_properties VALUES (3603, 646, 1, 15, '', 'Alica', '', 0, 'alica');
-INSERT INTO public.rainloop_ab_properties VALUES (3604, 646, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3605, 646, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3606, 646, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3607, 646, 1, 31, 'CELL', '+49 160 1233708', '491601233708', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3608, 646, 1, 9, '', '08aeec18-2e1a-4c6e-b7f5-e7fe46e7ef10', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3609, 647, 1, 16, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3610, 647, 1, 15, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3611, 647, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3612, 647, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3613, 647, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3614, 647, 1, 30, 'OTHER', 'frauke.gehrmann@proge.de', '', 0, 'frauke.gehrmann@proge.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3615, 647, 1, 9, '', 'c4de0720-97dd-4ba2-b30b-9b8d186471b4', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3616, 647, 1, 10, '', 'frauke.gehrmann@proge.de', '', 0, 'frauke.gehrmann@proge.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3617, 648, 1, 10, '', 'Ingrid Samoray', '', 0, 'ingrid samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3618, 648, 1, 16, '', 'Samoray', '', 0, 'samoray');
-INSERT INTO public.rainloop_ab_properties VALUES (3619, 648, 1, 15, '', 'Ingrid', '', 0, 'ingrid');
-INSERT INTO public.rainloop_ab_properties VALUES (3620, 648, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3621, 648, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3622, 648, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3623, 648, 1, 30, 'OTHER', 'ingrid.samoray@gmx.de', '', 0, 'ingrid.samoray@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3624, 648, 1, 31, 'CELL', '+491716871329', '491716871329', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3625, 648, 1, 31, 'HOME', '+4998317514', '4998317514', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3626, 648, 1, 9, '', '2845d1c4-a615-4214-9320-1fe482d78ae4', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3627, 649, 1, 10, '', 'Alica Jacobi', '', 0, 'alica jacobi');
-INSERT INTO public.rainloop_ab_properties VALUES (3628, 649, 1, 16, '', 'Jacobi', '', 0, 'jacobi');
-INSERT INTO public.rainloop_ab_properties VALUES (3629, 649, 1, 15, '', 'Alica', '', 0, 'alica');
-INSERT INTO public.rainloop_ab_properties VALUES (3630, 649, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3631, 649, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3632, 649, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3633, 649, 1, 31, 'CELL', '+491601233708', '491601233708', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3634, 649, 1, 9, '', '60177934-6ffe-43eb-bbe5-7394b53c36ae', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3635, 650, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3636, 650, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3637, 650, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (3638, 650, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3639, 650, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3640, 650, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3641, 650, 1, 30, 'OTHER', 'heike.bollmann@gmx.de', '', 0, 'heike.bollmann@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3642, 650, 1, 9, '', '72456c82-f058-4c7a-934a-e11dd57777c1', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3643, 651, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (3644, 651, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (3645, 651, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (3646, 651, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3647, 651, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3648, 651, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3649, 651, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3650, 651, 1, 31, 'CELL', '+49 162 7184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3651, 651, 1, 31, 'HOME', '+49 2104 40954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3652, 651, 1, 9, '', '0044422f-f891-4e70-9055-f2409d9fa6c8', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3653, 652, 1, 10, '', 'Alica Jacobi', '', 0, 'alica jacobi');
-INSERT INTO public.rainloop_ab_properties VALUES (3654, 652, 1, 16, '', 'Jacobi', '', 0, 'jacobi');
-INSERT INTO public.rainloop_ab_properties VALUES (3655, 652, 1, 15, '', 'Alica', '', 0, 'alica');
-INSERT INTO public.rainloop_ab_properties VALUES (3656, 652, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3657, 652, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3658, 652, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3659, 652, 1, 31, 'CELL', '+491601233708', '491601233708', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3660, 652, 1, 9, '', '76be16e7-7cc0-465d-93fb-8763f0ad6e8b', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3661, 653, 1, 10, '', 'Heike Bollmann', '', 0, 'heike bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3662, 653, 1, 16, '', 'Bollmann', '', 0, 'bollmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3663, 653, 1, 15, '', 'Heike', '', 0, 'heike');
-INSERT INTO public.rainloop_ab_properties VALUES (3664, 653, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3665, 653, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3666, 653, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3667, 653, 1, 30, 'OTHER', 'heike.bollmann@googlemail.com', '', 0, 'heike.bollmann@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3668, 653, 1, 32, 'HOME', 'http://www.google.com/profiles/106859406771930065045', '', 0, 'http://www.google.com/profiles/106859406771930065045');
-INSERT INTO public.rainloop_ab_properties VALUES (3669, 653, 1, 31, 'CELL', '+4917621319499', '4917621319499', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3670, 653, 1, 31, 'WORK', '+491735698189', '491735698189', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3671, 653, 1, 31, 'HOME', '+4991189647031', '4991189647031', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3672, 653, 1, 9, '', 'f2426073-2de2-496a-b6c5-a1aa8883a1d1', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3673, 654, 1, 10, '', 'Irmtraud Rosentreter', '', 0, 'irmtraud rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (3674, 654, 1, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (3675, 654, 1, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (3676, 654, 1, 17, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3677, 654, 1, 20, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3678, 654, 1, 21, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3679, 654, 1, 30, 'OTHER', 'uirosentreter@t-online.de', '', 0, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3680, 654, 1, 31, 'CELL', '+491627184012', '491627184012', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3681, 654, 1, 31, 'HOME', '+49210440954', '49210440954', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3682, 654, 1, 9, '', 'b05aab9e-6282-47d0-a209-bc893f4d01f1', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3684, 655, 2, 10, '', 'support@zentempel.zendesk.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3683, 655, 2, 30, '', 'support@zentempel.zendesk.com', '', 1, 'support@zentempel.zendesk.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3686, 656, 2, 10, '', 'retoure@ladybikewear.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3685, 656, 2, 30, '', 'retoure@ladybikewear.de', '', 1, 'retoure@ladybikewear.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3688, 657, 2, 15, '', 'Zen', '', 0, 'zen');
-INSERT INTO public.rainloop_ab_properties VALUES (3689, 657, 2, 16, '', 'Tempel', '', 0, 'tempel');
-INSERT INTO public.rainloop_ab_properties VALUES (3690, 657, 2, 10, '', 'Zen Tempel', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3687, 657, 2, 30, '', 'support+id36185@zentempel.zendesk.com', '', 1, 'support+id36185@zentempel.zendesk.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3692, 658, 2, 10, '', 'info@platinumeurope.biz', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3697, 661, 2, 30, '', 'alma-jaiser@t-online.de', '', 7, 'alma-jaiser@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3694, 659, 2, 10, '', 'bimsertec@gmail.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3700, 662, 2, 10, '', 'praxis.dr.wernicke@gmail.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3696, 660, 2, 10, '', 'freicha@web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3695, 660, 2, 30, '', 'freicha@web.de', '', 16, 'freicha@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3693, 659, 2, 30, '', 'bimsertec@gmail.com', '', 4, 'bimsertec@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3699, 662, 2, 30, '', 'praxis.dr.wernicke@gmail.com', '', 4, 'praxis.dr.wernicke@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3705, 664, 2, 30, '', 'Leonie.gueldenpfennig@gmx.de', '', 3, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3698, 661, 2, 10, '', 'alma-jaiser@t-online.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3959, 732, 1, 15, '', 'Ely', '', 0, 'ely');
-INSERT INTO public.rainloop_ab_properties VALUES (3702, 663, 2, 15, '', 'Judith', '', 0, 'judith');
-INSERT INTO public.rainloop_ab_properties VALUES (3703, 663, 2, 16, '', 'Rauxloh', '', 0, 'rauxloh');
-INSERT INTO public.rainloop_ab_properties VALUES (3704, 663, 2, 10, '', 'Judith Rauxloh', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3701, 663, 2, 30, '', 'Judith.Rauxloh@gmx.de', '', 1, 'judith.rauxloh@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3706, 664, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (3707, 664, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (3708, 664, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3710, 665, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (3711, 665, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (3712, 665, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3691, 658, 2, 30, '', 'info@platinumeurope.biz', '', 7, 'info@platinumeurope.biz');
-INSERT INTO public.rainloop_ab_properties VALUES (301, 89, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 23, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3960, 732, 1, 31, 'cell', '+34 607 77 42 31', '34607774231', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3961, 732, 1, 9, '', 'd9782c63-d171-4dd0-bfbc-3b63762d2ed3', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3962, 733, 1, 10, '', 'Flo Gilly', '', 0, 'flo gilly');
-INSERT INTO public.rainloop_ab_properties VALUES (3963, 733, 1, 16, '', 'Gilly', '', 0, 'gilly');
-INSERT INTO public.rainloop_ab_properties VALUES (3964, 733, 1, 15, '', 'Flo', '', 0, 'flo');
-INSERT INTO public.rainloop_ab_properties VALUES (3714, 666, 2, 15, '', 'Beatsox', '', 0, 'beatsox');
-INSERT INTO public.rainloop_ab_properties VALUES (3715, 666, 2, 10, '', 'Beatsox', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3750, 677, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (3717, 667, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (3718, 667, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (3719, 667, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3751, 677, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (3752, 677, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4052, 761, 2, 30, '', 'uwe.czesnat@zeppelin-team.de', '', 1, 'uwe.czesnat@zeppelin-team.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3754, 678, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (3755, 678, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (3756, 678, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3753, 678, 2, 30, '', 'yvonne_Ewen@gmx.net', '', 1, 'yvonne_ewen@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (3713, 666, 2, 30, '', 'info@beatsox.de', '', 4, 'info@beatsox.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3721, 668, 2, 15, '', 'Triabolos', '', 0, 'triabolos');
-INSERT INTO public.rainloop_ab_properties VALUES (3722, 668, 2, 16, '', 'Hamburg e.V.', '', 0, 'hamburg e.v.');
-INSERT INTO public.rainloop_ab_properties VALUES (3723, 668, 2, 10, '', 'Triabolos Hamburg e.V.', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3720, 668, 2, 30, '', 'newsletter@triabolos.de', '', 1, 'newsletter@triabolos.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3728, 670, 2, 30, '', 'digitalabo@zeit.de', '', 2, 'digitalabo@zeit.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3729, 670, 2, 10, '', 'digitalabo@zeit.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3731, 671, 2, 10, '', 'stephan.schepe@triathlon.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3733, 672, 2, 15, '', 'fahrrad.de', '', 0, 'fahrrad.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3734, 672, 2, 16, '', '| Service', '', 0, '| service');
-INSERT INTO public.rainloop_ab_properties VALUES (3735, 672, 2, 10, '', 'fahrrad.de | Service', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3732, 672, 2, 30, '', 'service@fahrrad.de', '', 1, 'service@fahrrad.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3758, 679, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (3737, 673, 2, 15, '', 'Mika', '', 0, 'mika');
-INSERT INTO public.rainloop_ab_properties VALUES (3738, 673, 2, 16, '', 'Keiling', '', 0, 'keiling');
-INSERT INTO public.rainloop_ab_properties VALUES (3739, 673, 2, 10, '', 'Mika Keiling', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3736, 673, 2, 30, '', 'mika.keiling@triathlon.de', '', 1, 'mika.keiling@triathlon.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3741, 674, 2, 15, '', 'help@photobox', '', 0, 'help@photobox');
-INSERT INTO public.rainloop_ab_properties VALUES (3742, 674, 2, 10, '', 'help@photobox', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3759, 679, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (3760, 679, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3740, 674, 2, 30, '', 'help@photobox.co.uk', '', 3, 'help@photobox.co.uk');
-INSERT INTO public.rainloop_ab_properties VALUES (3744, 675, 2, 15, '', 'INCYLENCE', '', 0, 'incylence');
-INSERT INTO public.rainloop_ab_properties VALUES (3745, 675, 2, 10, '', 'INCYLENCE', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3743, 675, 2, 30, '', 'hello@incylence.com', '', 1, 'hello@incylence.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3747, 676, 2, 15, '', 'Leo', '', 0, 'leo');
-INSERT INTO public.rainloop_ab_properties VALUES (3748, 676, 2, 10, '', 'Leo', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3730, 671, 2, 30, '', 'stephan.schepe@triathlon.de', '', 5, 'stephan.schepe@triathlon.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3749, 677, 2, 30, '', 'Yvonne_Ewen@gmx.net', '', 5, 'yvonne_ewen@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (3757, 679, 2, 30, '', 'Yvonne_Ewen@gmx.net', '', 4, 'yvonne_ewen@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (4053, 761, 2, 15, '', 'Uwe', '', 0, 'uwe');
-INSERT INTO public.rainloop_ab_properties VALUES (4054, 761, 2, 16, '', 'Czesnat - Zeppelin Team', '', 0, 'czesnat - zeppelin team');
-INSERT INTO public.rainloop_ab_properties VALUES (4055, 761, 2, 10, '', 'Uwe Czesnat - Zeppelin Team', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (1119, 355, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 10, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3762, 680, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (3763, 680, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (3764, 680, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3769, 682, 2, 30, '', 'zeit@dpv.de', '', 2, 'zeit@dpv.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3772, 683, 2, 15, '', 'pinkmilk', '', 0, 'pinkmilk');
-INSERT INTO public.rainloop_ab_properties VALUES (3773, 683, 2, 10, '', 'pinkmilk', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3776, 685, 2, 30, '', 'info@wilkens-wohnstudio.de', '', 2, 'info@wilkens-wohnstudio.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3775, 684, 2, 10, '', 'service@pinkmilk.d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3774, 684, 2, 30, '', 'service@pinkmilk.d', '', 1, 'service@pinkmilk.d');
-INSERT INTO public.rainloop_ab_properties VALUES (3771, 683, 2, 30, '', 'service@pinkmilk.de', '', 2, 'service@pinkmilk.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3777, 685, 2, 10, '', 'info@wilkens-wohnstudio.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3784, 688, 2, 30, '', 'monika.letzel@vlh.de', '', 1, 'monika.letzel@vlh.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3766, 681, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (3767, 681, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (3768, 681, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3770, 682, 2, 10, '', 'zeit@dpv.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3779, 686, 2, 15, '', 'car-Möbel', '', 0, 'car-möbel');
-INSERT INTO public.rainloop_ab_properties VALUES (3780, 686, 2, 16, '', '* Torben Stolten', '', 0, '* torben stolten');
-INSERT INTO public.rainloop_ab_properties VALUES (3781, 686, 2, 10, '', 'car-Möbel * Torben Stolten', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3778, 686, 2, 30, '', 'torben.stolten@car-moebel.de', '', 1, 'torben.stolten@car-moebel.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3783, 687, 2, 10, '', 'support@bodyfx.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3785, 688, 2, 10, '', 'monika.letzel@vlh.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3787, 689, 2, 10, '', 'kuendigung@1und1.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3782, 687, 2, 30, '', 'support@bodyfx.com', '', 5, 'support@bodyfx.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3789, 690, 2, 10, '', 'kundenservice@peterhahn.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3788, 690, 2, 30, '', 'kundenservice@peterhahn.de', '', 3, 'kundenservice@peterhahn.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3791, 691, 2, 10, '', 'stechling@on-potsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3790, 691, 2, 30, '', 'stechling@on-potsdam.de', '', 2, 'stechling@on-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3793, 692, 2, 15, '', 'Volkan', '', 0, 'volkan');
-INSERT INTO public.rainloop_ab_properties VALUES (3794, 692, 2, 16, '', 'Sabaz CHECK24', '', 0, 'sabaz check24');
-INSERT INTO public.rainloop_ab_properties VALUES (3786, 689, 2, 30, '', 'kuendigung@1und1.de', '', 3, 'kuendigung@1und1.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3795, 692, 2, 10, '', 'Volkan Sabaz CHECK24', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3792, 692, 2, 30, '', 'kredit-158192030@kredit.check24.de', '', 1, 'kredit-158192030@kredit.check24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3797, 693, 2, 10, '', 'zentraleauszahlung@creditplus.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3796, 693, 2, 30, '', 'zentraleauszahlung@creditplus.de', '', 1, 'zentraleauszahlung@creditplus.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3799, 694, 2, 15, '', 'Volkan', '', 0, 'volkan');
-INSERT INTO public.rainloop_ab_properties VALUES (3800, 694, 2, 16, '', 'Sabaz CHECK24', '', 0, 'sabaz check24');
-INSERT INTO public.rainloop_ab_properties VALUES (3801, 694, 2, 10, '', 'Volkan Sabaz CHECK24', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3798, 694, 2, 30, '', 'kredit-158192345@kredit.check24.de', '', 1, 'kredit-158192345@kredit.check24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3803, 695, 2, 10, '', 'martin.bergmann@smava.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3832, 705, 2, 30, '', 'info@ravensberger-hof.com', '', 4, 'info@ravensberger-hof.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3805, 696, 2, 15, '', 'HANNUN', '', 0, 'hannun');
-INSERT INTO public.rainloop_ab_properties VALUES (3806, 696, 2, 10, '', 'HANNUN', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3804, 696, 2, 30, '', 'tienda@hannun.com', '', 1, 'tienda@hannun.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3868, 715, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (3808, 697, 2, 15, '', 'HANNUN', '', 0, 'hannun');
-INSERT INTO public.rainloop_ab_properties VALUES (3809, 697, 2, 10, '', 'HANNUN', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3869, 715, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (3870, 715, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3851, 711, 2, 30, '', 'c_be@gmx.de', '', 3, 'c_be@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3807, 697, 2, 30, '', 'support+id89047@hannun.zendesk.com', '', 4, 'support+id89047@hannun.zendesk.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3828, 704, 2, 30, '', 'info@osteopathie-praxis-potsdam.de', '', 3, 'info@osteopathie-praxis-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3802, 695, 2, 30, '', 'martin.bergmann@smava.de', '', 5, 'martin.bergmann@smava.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3811, 698, 2, 10, '', 'servicecenter@hamburgwasser.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3810, 698, 2, 30, '', 'servicecenter@hamburgwasser.de', '', 1, 'servicecenter@hamburgwasser.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3813, 699, 2, 15, '', 'Julia', '', 0, 'julia');
-INSERT INTO public.rainloop_ab_properties VALUES (3814, 699, 2, 16, '', 'Müller', '', 0, 'müller');
-INSERT INTO public.rainloop_ab_properties VALUES (3815, 699, 2, 10, '', 'Julia Müller', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3812, 699, 2, 30, '', 'julia.mueller@ratenkredit.verivox.com', '', 1, 'julia.mueller@ratenkredit.verivox.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3817, 700, 2, 15, '', 'Justin', '', 0, 'justin');
-INSERT INTO public.rainloop_ab_properties VALUES (3818, 700, 2, 16, '', 'Rose', '', 0, 'rose');
-INSERT INTO public.rainloop_ab_properties VALUES (3819, 700, 2, 10, '', 'Justin Rose', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3816, 700, 2, 30, '', 'justin.rose@ratenkredit.verivox.com', '', 1, 'justin.rose@ratenkredit.verivox.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3821, 701, 2, 15, '', 'Erik', '', 0, 'erik');
-INSERT INTO public.rainloop_ab_properties VALUES (3822, 701, 2, 16, '', 'Bittmann', '', 0, 'bittmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3823, 701, 2, 10, '', 'Erik Bittmann', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3820, 701, 2, 30, '', 'info@erikbittmann.de', '', 2, 'info@erikbittmann.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3825, 702, 2, 10, '', 'a.halloch@knappworst.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3824, 702, 2, 30, '', 'a.halloch@knappworst.de', '', 1, 'a.halloch@knappworst.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3827, 703, 2, 10, '', 'volkspark@osteopathie-praxis-potsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3826, 703, 2, 30, '', 'volkspark@osteopathie-praxis-potsdam.de', '', 1, 'volkspark@osteopathie-praxis-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3829, 704, 2, 15, '', 'Osteopathie', '', 0, 'osteopathie');
-INSERT INTO public.rainloop_ab_properties VALUES (3830, 704, 2, 16, '', 'Zentrum Potsdam', '', 0, 'zentrum potsdam');
-INSERT INTO public.rainloop_ab_properties VALUES (3831, 704, 2, 10, '', 'Osteopathie Zentrum Potsdam', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3843, 708, 2, 15, '', 'DERTOUR', '', 0, 'dertour');
-INSERT INTO public.rainloop_ab_properties VALUES (3852, 712, 2, 30, '', 'c_be@gmx.de', '', 3, 'c_be@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3833, 705, 2, 10, '', 'info@ravensberger-hof.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3844, 708, 2, 10, '', 'DERTOUR', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3835, 706, 2, 15, '', 'Jörg', '', 0, 'jörg');
-INSERT INTO public.rainloop_ab_properties VALUES (3836, 706, 2, 16, '', 'Birkel', '', 0, 'birkel');
-INSERT INTO public.rainloop_ab_properties VALUES (3837, 706, 2, 10, '', 'Jörg Birkel', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3838, 707, 2, 30, '', 'info@holidayhotline.de', '', 22, 'info@holidayhotline.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3839, 707, 2, 15, '', 'Holiday', '', 0, 'holiday');
-INSERT INTO public.rainloop_ab_properties VALUES (3840, 707, 2, 16, '', 'Hotline', '', 0, 'hotline');
-INSERT INTO public.rainloop_ab_properties VALUES (3841, 707, 2, 10, '', 'Holiday Hotline', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3860, 713, 2, 15, '', 'Manja', '', 0, 'manja');
-INSERT INTO public.rainloop_ab_properties VALUES (3842, 708, 2, 30, '', 'no-reply@dertouristik.com', '', 1, 'no-reply@dertouristik.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3861, 713, 2, 16, '', 'Seemann', '', 0, 'seemann');
-INSERT INTO public.rainloop_ab_properties VALUES (3862, 713, 2, 10, '', 'Manja Seemann', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3846, 709, 2, 10, '', 'kontakt@gesundheitspraxen-osteopathie.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3845, 709, 2, 30, '', 'kontakt@gesundheitspraxen-osteopathie.de', '', 5, 'kontakt@gesundheitspraxen-osteopathie.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3848, 710, 2, 15, '', 'Andreas', '', 0, 'andreas');
-INSERT INTO public.rainloop_ab_properties VALUES (3849, 710, 2, 16, '', 'Husmann', '', 0, 'husmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3850, 710, 2, 10, '', 'Andreas Husmann', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3847, 710, 2, 30, '', 'post@die-hauselben.de', '', 37, 'post@die-hauselben.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3834, 706, 2, 30, '', 'jorge@jorge-sports.com', '', 2, 'jorge@jorge-sports.com');
-INSERT INTO public.rainloop_ab_properties VALUES (3853, 711, 2, 15, '', 'Christoph', '', 0, 'christoph');
-INSERT INTO public.rainloop_ab_properties VALUES (3854, 712, 2, 15, '', 'Christoph', '', 0, 'christoph');
-INSERT INTO public.rainloop_ab_properties VALUES (3855, 711, 2, 16, '', 'Becker', '', 0, 'becker');
-INSERT INTO public.rainloop_ab_properties VALUES (3856, 712, 2, 16, '', 'Becker', '', 0, 'becker');
-INSERT INTO public.rainloop_ab_properties VALUES (3857, 711, 2, 10, '', 'Christoph Becker', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3858, 712, 2, 10, '', 'Christoph Becker', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3864, 714, 2, 15, '', 'Grit', '', 0, 'grit');
-INSERT INTO public.rainloop_ab_properties VALUES (3865, 714, 2, 16, '', 'Kowsky', '', 0, 'kowsky');
-INSERT INTO public.rainloop_ab_properties VALUES (3866, 714, 2, 10, '', 'Grit Kowsky', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3859, 713, 2, 30, '', 'manja@fit4bike.de', '', 22, 'manja@fit4bike.de');
-INSERT INTO public.rainloop_ab_properties VALUES (437, 127, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 15, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3863, 714, 2, 30, '', 'grit.kowsky@gmx.de', '', 6, 'grit.kowsky@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3872, 716, 2, 15, '', 'Petra', '', 0, 'petra');
-INSERT INTO public.rainloop_ab_properties VALUES (3873, 716, 2, 16, '', 'Blossey', '', 0, 'blossey');
-INSERT INTO public.rainloop_ab_properties VALUES (3874, 716, 2, 10, '', 'Petra Blossey', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3871, 716, 2, 30, '', 'sanssouci-privat@gmx.de', '', 5, 'sanssouci-privat@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3877, 290, 2, 15, '', 'Silke', '', 0, 'silke');
-INSERT INTO public.rainloop_ab_properties VALUES (3878, 290, 2, 16, '', 'Grundmann', '', 0, 'grundmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3880, 290, 2, 10, '', 'Silke Grundmann', '', 0, 'silke grundmann');
-INSERT INTO public.rainloop_ab_properties VALUES (3879, 290, 2, 30, '', 'blossy84@t-online.de', '', 13, 'blossy84@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3881, 717, 1, 10, '', 'Tobias Barzen', '', 0, 'tobias barzen');
-INSERT INTO public.rainloop_ab_properties VALUES (3882, 717, 1, 16, '', 'Barzen', '', 0, 'barzen');
-INSERT INTO public.rainloop_ab_properties VALUES (3883, 717, 1, 15, '', 'Tobias', '', 0, 'tobias');
-INSERT INTO public.rainloop_ab_properties VALUES (3884, 717, 1, 31, 'cell', '+49 1514 3888930', '4915143888930', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3885, 717, 1, 9, '', 'af1eb2c4-6b8f-4dbc-9a84-784f8a614c3d', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3886, 718, 1, 10, '', 'HHT', '', 0, 'hht');
-INSERT INTO public.rainloop_ab_properties VALUES (3887, 718, 1, 16, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3888, 718, 1, 15, '', 'HHT', '', 0, 'hht');
-INSERT INTO public.rainloop_ab_properties VALUES (3889, 718, 1, 31, 'cell', '+49 8323 9589155', '4983239589155', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3890, 718, 1, 9, '', '8a758cfd-63f5-4244-8ba1-97c4312a9ad1', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3891, 719, 1, 10, '', 'Super SoSoX', '', 0, 'super sosox');
-INSERT INTO public.rainloop_ab_properties VALUES (3892, 719, 1, 16, '', 'SoSoX', '', 0, 'sosox');
-INSERT INTO public.rainloop_ab_properties VALUES (3893, 719, 1, 15, '', 'Super', '', 0, 'super');
-INSERT INTO public.rainloop_ab_properties VALUES (3894, 719, 1, 31, 'cell', '+49 1525 2628642', '4915252628642', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3895, 719, 1, 9, '', 'd4b48da0-58d5-423c-bc1a-1fb38e332521', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3896, 720, 1, 10, '', 'kerstin storch', '', 0, 'kerstin storch');
-INSERT INTO public.rainloop_ab_properties VALUES (3897, 720, 1, 16, '', 'storch', '', 0, 'storch');
-INSERT INTO public.rainloop_ab_properties VALUES (3898, 720, 1, 15, '', 'kerstin', '', 0, 'kerstin');
-INSERT INTO public.rainloop_ab_properties VALUES (3899, 720, 1, 30, 'x-internet', 'kerstin.storch@erdbeer-deluxe.de', '', 0, 'kerstin.storch@erdbeer-deluxe.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3900, 720, 1, 31, 'x-mobil', '+49 160 7236182', '491607236182', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3901, 720, 1, 9, '', 'ab98dd57-13de-4989-80b0-2f988981c301', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3902, 721, 1, 10, '', 'Jan Eggert', '', 0, 'jan eggert');
-INSERT INTO public.rainloop_ab_properties VALUES (3903, 721, 1, 16, '', 'Eggert', '', 0, 'eggert');
-INSERT INTO public.rainloop_ab_properties VALUES (3904, 721, 1, 15, '', 'Jan', '', 0, 'jan');
-INSERT INTO public.rainloop_ab_properties VALUES (3905, 721, 1, 31, 'cell', '+49 163 4051068', '491634051068', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3906, 721, 1, 9, '', 'f5e72ab4-c469-4c38-85a4-2d2c97bc83e8', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3907, 722, 1, 10, '', 'Sfizianmi', '', 0, 'sfizianmi');
-INSERT INTO public.rainloop_ab_properties VALUES (3908, 722, 1, 16, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3909, 722, 1, 15, '', 'Sfizianmi', '', 0, 'sfizianmi');
-INSERT INTO public.rainloop_ab_properties VALUES (3910, 722, 1, 31, 'cell', '+39 334 944 9054', '393349449054', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3911, 722, 1, 9, '', 'f1561e3a-c55b-4252-a389-4acb54a67ede', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3912, 723, 1, 10, '', 'Peter Meyerhofer', '', 0, 'peter meyerhofer');
-INSERT INTO public.rainloop_ab_properties VALUES (3913, 723, 1, 16, '', 'Meyerhofer', '', 0, 'meyerhofer');
-INSERT INTO public.rainloop_ab_properties VALUES (3914, 723, 1, 15, '', 'Peter', '', 0, 'peter');
-INSERT INTO public.rainloop_ab_properties VALUES (3915, 723, 1, 31, 'cell', '+49 1511 9442886', '4915119442886', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3916, 723, 1, 9, '', '78b16d49-38cf-4161-a305-c3cf8312c658', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3917, 724, 1, 10, '', 'Andreas Kimmerle', '', 0, 'andreas kimmerle');
-INSERT INTO public.rainloop_ab_properties VALUES (3918, 724, 1, 16, '', 'Kimmerle', '', 0, 'kimmerle');
-INSERT INTO public.rainloop_ab_properties VALUES (3919, 724, 1, 15, '', 'Andreas', '', 0, 'andreas');
-INSERT INTO public.rainloop_ab_properties VALUES (3920, 724, 1, 31, 'cell', '+49 1512 3073502', '4915123073502', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3921, 724, 1, 9, '', 'c60ab457-dfac-473c-9021-3ed5ada1bdf4', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3922, 725, 1, 10, '', 'Daniel', '', 0, 'daniel');
-INSERT INTO public.rainloop_ab_properties VALUES (3923, 725, 1, 16, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3924, 725, 1, 15, '', 'Daniel', '', 0, 'daniel');
-INSERT INTO public.rainloop_ab_properties VALUES (3925, 725, 1, 31, 'cell', '+49 1523 1038765', '4915231038765', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3926, 725, 1, 9, '', '2bf79fe6-cfdf-4741-b8c5-26a1d4345c38', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3927, 726, 1, 10, '', 'Dustin', '', 0, 'dustin');
-INSERT INTO public.rainloop_ab_properties VALUES (3928, 726, 1, 16, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3929, 726, 1, 15, '', 'Dustin', '', 0, 'dustin');
-INSERT INTO public.rainloop_ab_properties VALUES (3930, 726, 1, 31, 'cell', '+49 172 8742600', '491728742600', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3931, 726, 1, 9, '', '02169e89-ea18-45a0-ac3e-ea85505b009e', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3932, 727, 1, 10, '', 'Lucas Jacobi', '', 0, 'lucas jacobi');
-INSERT INTO public.rainloop_ab_properties VALUES (3933, 727, 1, 16, '', 'Jacobi', '', 0, 'jacobi');
-INSERT INTO public.rainloop_ab_properties VALUES (3934, 727, 1, 15, '', 'Lucas', '', 0, 'lucas');
-INSERT INTO public.rainloop_ab_properties VALUES (3935, 727, 1, 31, 'x-mobil', '+49 174 9279392', '491749279392', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3936, 727, 1, 9, '', '3d041060-f935-4fc7-8a52-4b62953c137a', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3937, 728, 1, 10, '', 'Christoph Schwerdt', '', 0, 'christoph schwerdt');
-INSERT INTO public.rainloop_ab_properties VALUES (3938, 728, 1, 16, '', 'Schwerdt', '', 0, 'schwerdt');
-INSERT INTO public.rainloop_ab_properties VALUES (3939, 728, 1, 15, '', 'Christoph', '', 0, 'christoph');
-INSERT INTO public.rainloop_ab_properties VALUES (3940, 728, 1, 31, 'cell', '01514 2600744', '015142600744', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3941, 728, 1, 9, '', 'e15335e9-42dc-4a41-a5c8-7223fb07340c', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3942, 729, 1, 10, '', 'David Fuchs', '', 0, 'david fuchs');
-INSERT INTO public.rainloop_ab_properties VALUES (3943, 729, 1, 16, '', 'Fuchs', '', 0, 'fuchs');
-INSERT INTO public.rainloop_ab_properties VALUES (3944, 729, 1, 15, '', 'David', '', 0, 'david');
-INSERT INTO public.rainloop_ab_properties VALUES (3945, 729, 1, 31, 'cell', '+49 160 5336217', '491605336217', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3946, 729, 1, 9, '', '1150f261-44a5-4172-a483-19d2d0aaebeb', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3947, 730, 1, 10, '', 'Jörg Müller-Ali', '', 0, 'jörg müller-ali');
-INSERT INTO public.rainloop_ab_properties VALUES (3948, 730, 1, 16, '', 'Müller-Ali', '', 0, 'müller-ali');
-INSERT INTO public.rainloop_ab_properties VALUES (3949, 730, 1, 15, '', 'Jörg', '', 0, 'jörg');
-INSERT INTO public.rainloop_ab_properties VALUES (3950, 730, 1, 31, 'x-mobil', '+49 173 3856263', '491733856263', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3951, 730, 1, 9, '', 'cf07d6ce-963a-42f6-a409-6d1ece6cf5b3', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3952, 731, 1, 10, '', 'Bernd Burkhardt', '', 0, 'bernd burkhardt');
-INSERT INTO public.rainloop_ab_properties VALUES (3953, 731, 1, 16, '', 'Burkhardt', '', 0, 'burkhardt');
-INSERT INTO public.rainloop_ab_properties VALUES (3954, 731, 1, 15, '', 'Bernd', '', 0, 'bernd');
-INSERT INTO public.rainloop_ab_properties VALUES (3955, 731, 1, 31, 'cell', '+49 170 1897930', '491701897930', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3956, 731, 1, 9, '', '2c872bc3-ab57-452f-8787-2c04884d9244', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3957, 732, 1, 10, '', 'Ely', '', 0, 'ely');
-INSERT INTO public.rainloop_ab_properties VALUES (3958, 732, 1, 16, '', '', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3761, 680, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 5, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3765, 681, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 4, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3867, 715, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 3, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3965, 733, 1, 31, 'cell', '+43 660 5013341', '436605013341', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3966, 733, 1, 9, '', '9a3130ae-64c9-4420-8a5b-59c96f9ddd64', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3967, 734, 1, 10, '', 'Alexandra Haderlein', '', 0, 'alexandra haderlein');
-INSERT INTO public.rainloop_ab_properties VALUES (3968, 734, 1, 16, '', 'Haderlein', '', 0, 'haderlein');
-INSERT INTO public.rainloop_ab_properties VALUES (3969, 734, 1, 15, '', 'Alexandra', '', 0, 'alexandra');
-INSERT INTO public.rainloop_ab_properties VALUES (3970, 734, 1, 31, 'cell', '+49 176 82094079', '4917682094079', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3971, 734, 1, 9, '', 'da022dae-b457-4357-a2b2-c96f971f1e3b', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3972, 735, 1, 10, '', 'Katja Neousypin', '', 0, 'katja neousypin');
-INSERT INTO public.rainloop_ab_properties VALUES (3973, 735, 1, 16, '', 'Neousypin', '', 0, 'neousypin');
-INSERT INTO public.rainloop_ab_properties VALUES (3974, 735, 1, 15, '', 'Katja', '', 0, 'katja');
-INSERT INTO public.rainloop_ab_properties VALUES (3975, 735, 1, 31, 'x-mobil', '+49 1590 5816098', '4915905816098', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3976, 735, 1, 9, '', 'e78c6c86-eaf9-4733-bc51-31ad12d537dc', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3978, 736, 2, 15, '', 'LOBERON', '', 0, 'loberon');
-INSERT INTO public.rainloop_ab_properties VALUES (3979, 736, 2, 16, '', 'Kundenservice', '', 0, 'kundenservice');
-INSERT INTO public.rainloop_ab_properties VALUES (3980, 736, 2, 10, '', 'LOBERON Kundenservice', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3993, 742, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 2, 'jams_o_donnell@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (3982, 737, 2, 10, '', 'verein@urania-potsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4015, 748, 2, 30, '', 'Jams_O_Donnell@gmx.net', '', 1, 'jams_o_donnell@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (3981, 737, 2, 30, '', 'verein@urania-potsdam.de', '', 2, 'verein@urania-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3984, 738, 2, 15, '', 'Märkische', '', 0, 'märkische');
-INSERT INTO public.rainloop_ab_properties VALUES (3985, 738, 2, 16, '', 'Kiste', '', 0, 'kiste');
-INSERT INTO public.rainloop_ab_properties VALUES (3986, 738, 2, 10, '', 'Märkische Kiste', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4020, 749, 2, 10, '', 'anja@jcs-home.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3988, 739, 2, 10, '', 'abo@zeitakademie.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3987, 739, 2, 30, '', 'abo@zeitakademie.de', '', 1, 'abo@zeitakademie.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3990, 740, 2, 10, '', 'praxis-petersen@gmx.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3983, 738, 2, 30, '', 'bestellung@maerkischekiste.de', '', 7, 'bestellung@maerkischekiste.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4019, 749, 2, 30, '', 'anja@jcs-home.de', '', 1, 'anja@jcs-home.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4029, 753, 2, 30, '', 'm.lukoschewski@web.de', '', 1, 'm.lukoschewski@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3992, 741, 2, 10, '', 'info@antik-living.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3994, 742, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (3995, 742, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (3996, 742, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3998, 743, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (3999, 743, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (4000, 743, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4022, 750, 2, 10, '', 'hejahagen@t-online.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4043, 758, 2, 30, '', 'info@fit4bike.de', '', 5, 'info@fit4bike.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4002, 744, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (4003, 744, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (4004, 744, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4024, 751, 2, 10, '', 'ju_schulze@t-online.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4006, 745, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (4007, 745, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (4008, 745, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3997, 743, 2, 30, '', 'Yvonne_Ewen@gmx.net', '', 3, 'yvonne_ewen@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (4001, 744, 2, 30, '', 'Yvonne_Ewen@gmx.net', '', 2, 'yvonne_ewen@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (4005, 745, 2, 30, '', 'Yvonne_Ewen@gmx.net', '', 1, 'yvonne_ewen@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (4023, 751, 2, 30, '', 'ju_schulze@t-online.de', '', 1, 'ju_schulze@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4032, 754, 2, 10, '', 'bahnbonus-service@bahn.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3977, 736, 2, 30, '', 'service@loberon.de', '', 3, 'service@loberon.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3991, 741, 2, 30, '', 'info@antik-living.de', '', 5, 'info@antik-living.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4010, 746, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (4011, 746, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (4012, 746, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4031, 754, 2, 30, '', 'bahnbonus-service@bahn.de', '', 1, 'bahnbonus-service@bahn.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4014, 747, 2, 10, '', 'pgreve@gmail.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4021, 750, 2, 30, '', 'hejahagen@t-online.de', '', 5, 'hejahagen@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4016, 748, 2, 15, '', 'Yvonne', '', 0, 'yvonne');
-INSERT INTO public.rainloop_ab_properties VALUES (4017, 748, 2, 16, '', 'Ewen', '', 0, 'ewen');
-INSERT INTO public.rainloop_ab_properties VALUES (4018, 748, 2, 10, '', 'Yvonne Ewen', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4026, 752, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (4027, 752, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (4028, 752, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4009, 746, 2, 30, '', 'Leonie.gueldenpfennig@gmx.de', '', 2, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (451, 131, 2, 30, '', 'Leonie.gueldenpfennig@gmx.de', '', 4, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4025, 752, 2, 30, '', 'Leonie.gueldenpfennig@gmx.de', '', 1, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4034, 755, 2, 15, '', 'Uwe', '', 0, 'uwe');
-INSERT INTO public.rainloop_ab_properties VALUES (4037, 756, 2, 30, '', 'anbieter.b9c6bb3a4ba04d31ab5c55c51c301dff@nachrichten.immobilienscout24.de', '', 1, 'anbieter.b9c6bb3a4ba04d31ab5c55c51c301dff@nachrichten.immobilienscout24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4030, 753, 2, 10, '', 'm.lukoschewski@web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4035, 755, 2, 16, '', 'Czesnat', '', 0, 'czesnat');
-INSERT INTO public.rainloop_ab_properties VALUES (4036, 755, 2, 10, '', 'Uwe Czesnat', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4033, 755, 2, 30, '', 'u.czesnat@web.de', '', 1, 'u.czesnat@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4038, 756, 2, 15, '', 'Herr', '', 0, 'herr');
-INSERT INTO public.rainloop_ab_properties VALUES (4039, 756, 2, 16, '', 'Geller', '', 0, 'geller');
-INSERT INTO public.rainloop_ab_properties VALUES (4040, 756, 2, 10, '', 'Herr Geller', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4042, 757, 2, 10, '', 'anita--meyer@t-online.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4041, 757, 2, 30, '', 'anita--meyer@t-online.de', '', 1, 'anita--meyer@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4044, 758, 2, 15, '', 'Info@Fit4Bike.de', '', 0, 'info@fit4bike.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4045, 758, 2, 10, '', 'Info@Fit4Bike.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4013, 747, 2, 30, '', 'pgreve@gmail.com', '', 2, 'pgreve@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4047, 759, 2, 10, '', 'Coaching-jaiser@web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4046, 759, 2, 30, '', 'Coaching-jaiser@web.de', '', 1, 'coaching-jaiser@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4049, 760, 2, 15, '', 'Thorsten', '', 0, 'thorsten');
-INSERT INTO public.rainloop_ab_properties VALUES (4050, 760, 2, 16, '', 'Kuechler', '', 0, 'kuechler');
-INSERT INTO public.rainloop_ab_properties VALUES (4051, 760, 2, 10, '', 'Thorsten Kuechler', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (3989, 740, 2, 30, '', 'praxis-petersen@gmx.de', '', 2, 'praxis-petersen@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4048, 760, 2, 30, '', 'thorsten.kuechler@gmx.net', '', 2, 'thorsten.kuechler@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (79, 29, 2, 30, '', 'uirosentreter@t-online.de', '', 98, 'uirosentreter@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4057, 762, 2, 15, '', 'esn.com', '', 0, 'esn.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4058, 762, 2, 10, '', 'esn.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4060, 763, 2, 10, '', 'info@fitmart.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4098, 776, 2, 30, '', 'info@bloominghome.de', '', 1, 'info@bloominghome.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4062, 764, 2, 15, '', 'Christian', '', 0, 'christian');
-INSERT INTO public.rainloop_ab_properties VALUES (4063, 764, 2, 16, '', 'Nagel', '', 0, 'nagel');
-INSERT INTO public.rainloop_ab_properties VALUES (4064, 764, 2, 10, '', 'Christian Nagel', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4066, 765, 2, 15, '', 'Lars', '', 0, 'lars');
-INSERT INTO public.rainloop_ab_properties VALUES (4067, 765, 2, 16, '', 'Lundin', '', 0, 'lundin');
-INSERT INTO public.rainloop_ab_properties VALUES (4068, 765, 2, 10, '', 'Lars Lundin', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4103, 777, 2, 10, '', 'retoure@bloominghome.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4065, 765, 2, 30, '', 'contact@lundin-wind-solar.com', '', 2, 'contact@lundin-wind-solar.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4102, 777, 2, 30, '', 'retoure@bloominghome.de', '', 1, 'retoure@bloominghome.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4070, 766, 2, 15, '', 'Heinz', '', 0, 'heinz');
-INSERT INTO public.rainloop_ab_properties VALUES (4071, 766, 2, 16, '', 'Hillmer', '', 0, 'hillmer');
-INSERT INTO public.rainloop_ab_properties VALUES (4072, 766, 2, 10, '', 'Heinz Hillmer', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4069, 766, 2, 30, '', 'heinz.hillmer@verimag.de', '', 1, 'heinz.hillmer@verimag.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4061, 764, 2, 30, '', 'nagel.anita@t-online.de', '', 3, 'nagel.anita@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4059, 763, 2, 30, '', 'info@fitmart.de', '', 2, 'info@fitmart.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4056, 762, 2, 30, '', 'help@esn.com', '', 2, 'help@esn.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4074, 767, 2, 15, '', 'Klaus', '', 0, 'klaus');
-INSERT INTO public.rainloop_ab_properties VALUES (4075, 767, 2, 16, '', 'Locker - Märkische Immobilien Potsdam', '', 0, 'locker - märkische immobilien potsdam');
-INSERT INTO public.rainloop_ab_properties VALUES (4076, 767, 2, 10, '', 'Klaus Locker - Märkische Immobilien Potsdam', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4073, 767, 2, 30, '', 'locker@mipotsdam.de', '', 1, 'locker@mipotsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4078, 768, 4, 10, '', 'voker.voss@gywi.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4080, 769, 4, 10, '', 'volker.voss@gywi.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4091, 773, 2, 30, '', 'kundenbetreuung@dertouristik.com', '', 2, 'kundenbetreuung@dertouristik.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4081, 770, 4, 15, '', 'Volker', '', 0, 'volker');
-INSERT INTO public.rainloop_ab_properties VALUES (4082, 770, 4, 16, '', 'Voß', '', 0, 'voß');
-INSERT INTO public.rainloop_ab_properties VALUES (4084, 770, 4, 10, '', 'Volker Voß', '', 0, 'volker voß');
-INSERT INTO public.rainloop_ab_properties VALUES (4121, 784, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (4105, 778, 2, 15, '', 'Hagen', '', 0, 'hagen');
-INSERT INTO public.rainloop_ab_properties VALUES (4106, 778, 2, 16, '', 'Schanze', '', 0, 'schanze');
-INSERT INTO public.rainloop_ab_properties VALUES (4107, 778, 2, 10, '', 'Hagen Schanze', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4126, 786, 2, 30, '', 'M_Schneider@gmx.net', '', 3, 'm_schneider@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (4122, 784, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (4123, 784, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4079, 769, 4, 30, '', 'volker.voss@gywi.de', '', 6, 'volker.voss@gywi.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4083, 770, 4, 30, 'Home', 'volker.voss@gywi.de', '', 5, 'volker.voss@gywi.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4077, 768, 4, 30, '', 'voker.voss@gywi.de', '', 4, 'voker.voss@gywi.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4086, 771, 2, 15, '', 'Anne', '', 0, 'anne');
-INSERT INTO public.rainloop_ab_properties VALUES (4087, 771, 2, 16, '', 'Aegerter', '', 0, 'aegerter');
-INSERT INTO public.rainloop_ab_properties VALUES (4088, 771, 2, 10, '', 'Anne Aegerter', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4085, 771, 2, 30, '', 'hey@anne-aegerter.de', '', 1, 'hey@anne-aegerter.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4090, 772, 2, 10, '', 'alexandrowka-potsdam@web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4092, 773, 2, 10, '', 'kundenbetreuung@dertouristik.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4089, 772, 2, 30, '', 'alexandrowka-potsdam@web.de', '', 2, 'alexandrowka-potsdam@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4094, 774, 2, 15, '', 'Ingo', '', 0, 'ingo');
-INSERT INTO public.rainloop_ab_properties VALUES (4095, 774, 2, 10, '', 'Ingo', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4097, 775, 2, 10, '', 'christine.maertner@polizei.brandenburg.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4096, 775, 2, 30, '', 'christine.maertner@polizei.brandenburg.de', '', 1, 'christine.maertner@polizei.brandenburg.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4099, 776, 2, 15, '', 'Bloominghome', '', 0, 'bloominghome');
-INSERT INTO public.rainloop_ab_properties VALUES (4100, 776, 2, 16, '', 'GmbH & Co. KG', '', 0, 'gmbh & co. kg');
-INSERT INTO public.rainloop_ab_properties VALUES (4101, 776, 2, 10, '', 'Bloominghome GmbH & Co. KG', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4109, 779, 2, 10, '', 'choose75@gmx.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4108, 779, 2, 30, '', 'choose75@gmx.de', '', 1, 'choose75@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4111, 780, 2, 10, '', 'CHoose75@gmx.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4110, 780, 2, 30, '', 'CHoose75@gmx.de', '', 1, 'choose75@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4113, 781, 6, 10, '', 'ip8jkt@libero.it', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4112, 781, 6, 30, '', 'ip8jkt@libero.it', '', 1, 'ip8jkt@libero.it');
-INSERT INTO public.rainloop_ab_properties VALUES (4115, 782, 2, 15, '', 'Irmtraud', '', 0, 'irmtraud');
-INSERT INTO public.rainloop_ab_properties VALUES (4116, 782, 2, 16, '', 'Rosentreter', '', 0, 'rosentreter');
-INSERT INTO public.rainloop_ab_properties VALUES (4117, 782, 2, 10, '', 'Irmtraud Rosentreter', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4118, 783, 2, 30, '', 'M_Schneider@gmx.net', '', 5, 'm_schneider@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (4119, 783, 2, 10, '', 'M_Schneider@gmx.net', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4125, 785, 2, 10, '', 'M_Schneider@gmx.net', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4129, 787, 2, 10, '', 'ronald@runningwolf.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4127, 786, 2, 10, '', 'M_Schneider@gmx.net', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4124, 785, 2, 30, '', 'M_Schneider@gmx.net', '', 4, 'm_schneider@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (4114, 782, 2, 30, '', 'uirosentreter@gmail.com', '', 5, 'uirosentreter@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4093, 774, 2, 30, '', 'isch35@web.de', '', 55, 'isch35@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4131, 788, 2, 10, '', 'ina.rosentreter@rifs-potsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4130, 788, 2, 30, '', 'ina.rosentreter@rifs-potsdam.de', '', 1, 'ina.rosentreter@rifs-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4128, 787, 2, 30, '', 'ronald@runningwolf.de', '', 3, 'ronald@runningwolf.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4133, 789, 2, 10, '', 'allgemeiner-spam@internet-beschwerdestelle.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4120, 784, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 2, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4104, 778, 2, 30, '', 'hagen@fit4bike.de', '', 2, 'hagen@fit4bike.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4132, 789, 2, 30, '', 'allgemeiner-spam@internet-beschwerdestelle.de', '', 1, 'allgemeiner-spam@internet-beschwerdestelle.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4135, 790, 2, 15, '', 'Engel', '', 0, 'engel');
-INSERT INTO public.rainloop_ab_properties VALUES (4136, 790, 2, 16, '', '& Völkers Potsdam', '', 0, '& völkers potsdam');
-INSERT INTO public.rainloop_ab_properties VALUES (4137, 790, 2, 10, '', 'Engel & Völkers Potsdam', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4134, 790, 2, 30, '', 'potsdam@news.engelvoelkers.com', '', 1, 'potsdam@news.engelvoelkers.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4139, 791, 2, 15, '', 'Leonie', '', 0, 'leonie');
-INSERT INTO public.rainloop_ab_properties VALUES (4140, 791, 2, 16, '', 'Güldenpfennig', '', 0, 'güldenpfennig');
-INSERT INTO public.rainloop_ab_properties VALUES (4141, 791, 2, 10, '', 'Leonie Güldenpfennig', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (533, 161, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 14, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1003, 315, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 12, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (1007, 316, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 11, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3709, 665, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 8, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3716, 667, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 7, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (321, 94, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 22, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (335, 98, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 21, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (369, 108, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 20, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (3746, 676, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 6, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4138, 791, 2, 30, '', 'Leonie.Gueldenpfennig@gmx.de', '', 1, 'leonie.gueldenpfennig@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4143, 792, 2, 10, '', 'M_Schneider@gmx.net', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4179, 806, 2, 30, '', 'kurfuersten@roentgenpraxis-potsdam.de', '', 1, 'kurfuersten@roentgenpraxis-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4145, 793, 2, 15, '', 'Zahn', '', 0, 'zahn');
-INSERT INTO public.rainloop_ab_properties VALUES (4146, 793, 2, 16, '', 'Dietrich', '', 0, 'dietrich');
-INSERT INTO public.rainloop_ab_properties VALUES (4147, 793, 2, 10, '', 'Zahn Dietrich', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4144, 793, 2, 30, '', 'dietrich.zahn@googlemail.com', '', 1, 'dietrich.zahn@googlemail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4149, 794, 2, 15, '', 'Steffen', '', 0, 'steffen');
-INSERT INTO public.rainloop_ab_properties VALUES (4150, 794, 2, 16, '', 'Ulbrich', '', 0, 'ulbrich');
-INSERT INTO public.rainloop_ab_properties VALUES (4151, 794, 2, 10, '', 'Steffen Ulbrich', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4148, 794, 2, 30, '', 'steffen@fit4bike.de', '', 1, 'steffen@fit4bike.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4153, 795, 2, 10, '', 'bahncard-service@bahn.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4152, 795, 2, 30, '', 'bahncard-service@bahn.de', '', 1, 'bahncard-service@bahn.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4155, 796, 2, 10, '', 'reisen@rucksack-reisen.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4154, 796, 2, 30, '', 'reisen@rucksack-reisen.de', '', 1, 'reisen@rucksack-reisen.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4157, 797, 2, 15, '', 'Jil', '', 0, 'jil');
-INSERT INTO public.rainloop_ab_properties VALUES (4158, 797, 2, 16, '', 'Szabo', '', 0, 'szabo');
-INSERT INTO public.rainloop_ab_properties VALUES (4159, 797, 2, 10, '', 'Jil Szabo', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4156, 797, 2, 30, '', 'jil.szabo@horl-1993.de', '', 1, 'jil.szabo@horl-1993.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4161, 798, 2, 15, '', 'Melanie', '', 0, 'melanie');
-INSERT INTO public.rainloop_ab_properties VALUES (4162, 798, 2, 16, '', 'Schneider', '', 0, 'schneider');
-INSERT INTO public.rainloop_ab_properties VALUES (4163, 798, 2, 10, '', 'Melanie Schneider', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4165, 799, 2, 10, '', 'M_Schneider@gmx.net', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4142, 792, 2, 30, '', 'M_Schneider@gmx.net', '', 2, 'm_schneider@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (4164, 799, 2, 30, '', 'M_Schneider@gmx.net', '', 1, 'm_schneider@gmx.net');
-INSERT INTO public.rainloop_ab_properties VALUES (4167, 800, 2, 10, '', 'amazon-student-verifizierung@amazon.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4166, 800, 2, 30, '', 'amazon-student-verifizierung@amazon.de', '', 1, 'amazon-student-verifizierung@amazon.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4160, 798, 2, 30, '', 'wp.melanieschneider@gmail.com', '', 2, 'wp.melanieschneider@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4169, 801, 4, 10, '', 'frank-etgeton@osnanet.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4168, 801, 4, 30, '', 'frank-etgeton@osnanet.de', '', 1, 'frank-etgeton@osnanet.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4171, 802, 2, 10, '', 'sch@radiologische-allianz.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4170, 802, 2, 30, '', 'sch@radiologische-allianz.de', '', 1, 'sch@radiologische-allianz.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4173, 803, 2, 10, '', 'mammo_screening_brb_west@t-online.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4172, 803, 2, 30, '', 'mammo_screening_brb_west@t-online.de', '', 1, 'mammo_screening_brb_west@t-online.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4175, 804, 2, 10, '', 'praxis-belzer@web.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4174, 804, 2, 30, '', 'praxis-belzer@web.de', '', 1, 'praxis-belzer@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4177, 805, 2, 15, '', 'Vätternrundan', '', 0, 'vätternrundan');
-INSERT INTO public.rainloop_ab_properties VALUES (4178, 805, 2, 10, '', 'Vätternrundan', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4176, 805, 2, 30, '', 'info@vatternrundan.se', '', 1, 'info@vatternrundan.se');
-INSERT INTO public.rainloop_ab_properties VALUES (4180, 806, 2, 10, '', 'kurfuersten@roentgenpraxis-potsdam.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4182, 807, 2, 10, '', 'support@saal-digital.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4184, 808, 2, 10, '', 'info@potsdamer-laufclub.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4183, 808, 2, 30, '', 'info@potsdamer-laufclub.de', '', 1, 'info@potsdamer-laufclub.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4181, 807, 2, 30, '', 'support@saal-digital.de', '', 2, 'support@saal-digital.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4186, 809, 2, 10, '', 'event@wannseeterrassen.berlin', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4185, 809, 2, 30, '', 'event@wannseeterrassen.berlin', '', 1, 'event@wannseeterrassen.berlin');
-INSERT INTO public.rainloop_ab_properties VALUES (4188, 810, 2, 10, '', 'booking@spidsbergseter.no', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4190, 811, 2, 15, '', 'Resepsjonen', '', 0, 'resepsjonen');
-INSERT INTO public.rainloop_ab_properties VALUES (4191, 811, 2, 16, '', 'Spidsbergseter', '', 0, 'spidsbergseter');
-INSERT INTO public.rainloop_ab_properties VALUES (4192, 811, 2, 10, '', 'Resepsjonen Spidsbergseter', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4194, 812, 2, 15, '', 'Resepsjonen', '', 0, 'resepsjonen');
-INSERT INTO public.rainloop_ab_properties VALUES (4195, 812, 2, 16, '', 'Spidsbergseter', '', 0, 'spidsbergseter');
-INSERT INTO public.rainloop_ab_properties VALUES (4196, 812, 2, 10, '', 'Resepsjonen Spidsbergseter', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4289, 841, 2, 16, '', 'Diagnostikum Berlin', '', 0, 'diagnostikum berlin');
-INSERT INTO public.rainloop_ab_properties VALUES (4290, 841, 2, 10, '', 'Servicecenter Diagnostikum Berlin', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4198, 813, 2, 15, '', 'Termin_Zusage', '', 0, 'termin_zusage');
-INSERT INTO public.rainloop_ab_properties VALUES (4199, 813, 2, 10, '', 'Termin_Zusage', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4197, 813, 2, 30, '', 'anbieter.39bb36e780024b11a18010f39c8a7bc6@nachrichten.immobilienscout24.de', '', 1, 'anbieter.39bb36e780024b11a18010f39c8a7bc6@nachrichten.immobilienscout24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4187, 810, 2, 30, '', 'booking@spidsbergseter.no', '', 2, 'booking@spidsbergseter.no');
-INSERT INTO public.rainloop_ab_properties VALUES (4201, 814, 2, 15, '', 'Resepsjonen', '', 0, 'resepsjonen');
-INSERT INTO public.rainloop_ab_properties VALUES (4202, 814, 2, 16, '', 'Spidsbergseter', '', 0, 'spidsbergseter');
-INSERT INTO public.rainloop_ab_properties VALUES (4203, 814, 2, 10, '', 'Resepsjonen Spidsbergseter', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4200, 814, 2, 30, '', 'Booking@spidsbergseter.no', '', 1, 'booking@spidsbergseter.no');
-INSERT INTO public.rainloop_ab_properties VALUES (4287, 841, 2, 30, '', 'sc@diagnostikum-berlin.de', '', 1, 'sc@diagnostikum-berlin.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4292, 842, 2, 10, '', 'ina.rosentreter@gmail.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4189, 811, 2, 30, '', 'Booking@spidsbergseter.no', '', 3, 'booking@spidsbergseter.no');
-INSERT INTO public.rainloop_ab_properties VALUES (4193, 812, 2, 30, '', 'Booking@spidsbergseter.no', '', 2, 'booking@spidsbergseter.no');
-INSERT INTO public.rainloop_ab_properties VALUES (4205, 815, 2, 10, '', 'ordre@taxi03650.no', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4204, 815, 2, 30, '', 'ordre@taxi03650.no', '', 1, 'ordre@taxi03650.no');
-INSERT INTO public.rainloop_ab_properties VALUES (4207, 816, 2, 15, '', 'Ringebu-Fåvang', '', 0, 'ringebu-fåvang');
-INSERT INTO public.rainloop_ab_properties VALUES (4208, 816, 2, 16, '', 'taxisentral', '', 0, 'taxisentral');
-INSERT INTO public.rainloop_ab_properties VALUES (4209, 816, 2, 10, '', 'Ringebu-Fåvang taxisentral', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4206, 816, 2, 30, '', 'ringebutaxi@hotmail.com', '', 1, 'ringebutaxi@hotmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4211, 817, 2, 15, '', 'Sportschrank.de', '', 0, 'sportschrank.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4212, 817, 2, 10, '', 'Sportschrank.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4210, 817, 2, 30, '', 'info@sportschrank.de', '', 1, 'info@sportschrank.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4214, 818, 2, 10, '', 'nicht-antworten@gebuhrenfrei.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4213, 818, 2, 30, '', 'nicht-antworten@gebuhrenfrei.com', '', 1, 'nicht-antworten@gebuhrenfrei.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4216, 819, 2, 10, '', 'service@gebuhrenfrei.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4215, 819, 2, 30, '', 'service@gebuhrenfrei.com', '', 1, 'service@gebuhrenfrei.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4218, 820, 2, 10, '', 'joana.ludwig@hotmail.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4217, 820, 2, 30, '', 'joana.ludwig@hotmail.de', '', 1, 'joana.ludwig@hotmail.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4220, 821, 2, 10, '', 'vermietung@vermietungsbuero-mueller.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4222, 822, 4, 15, '', 'Roblox', '', 0, 'roblox');
-INSERT INTO public.rainloop_ab_properties VALUES (4223, 822, 4, 16, '', 'Support', '', 0, 'support');
-INSERT INTO public.rainloop_ab_properties VALUES (4224, 822, 4, 10, '', 'Roblox Support', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4255, 832, 2, 15, '', 'Saletovic,', '', 0, 'saletovic,');
-INSERT INTO public.rainloop_ab_properties VALUES (4256, 832, 2, 16, '', 'Elvis', '', 0, 'elvis');
-INSERT INTO public.rainloop_ab_properties VALUES (4221, 822, 4, 30, '', 'support-en@roblox.com', '', 3, 'support-en@roblox.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4226, 823, 2, 10, '', 'kontakt@restaurantzanotto.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4225, 823, 2, 30, '', 'kontakt@restaurantzanotto.de', '', 1, 'kontakt@restaurantzanotto.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4257, 832, 2, 10, '', 'Saletovic, Elvis', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4228, 824, 2, 15, '', 'Jens-Martin', '', 0, 'jens-martin');
-INSERT INTO public.rainloop_ab_properties VALUES (4229, 824, 2, 16, '', 'Schröder', '', 0, 'schröder');
-INSERT INTO public.rainloop_ab_properties VALUES (4230, 824, 2, 10, '', 'Jens-Martin Schröder', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4227, 824, 2, 30, '', 'jensmartinschroeder@gmx.de', '', 1, 'jensmartinschroeder@gmx.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4279, 839, 2, 30, '', 'isabell.kruse@engelvoelkers.com', '', 3, 'isabell.kruse@engelvoelkers.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4232, 825, 2, 15, '', 'Saletovic,', '', 0, 'saletovic,');
-INSERT INTO public.rainloop_ab_properties VALUES (4233, 825, 2, 16, '', 'Elvis', '', 0, 'elvis');
-INSERT INTO public.rainloop_ab_properties VALUES (4234, 825, 2, 10, '', 'Saletovic, Elvis', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4254, 832, 2, 30, '', 'Saletovic_E@dibag.de', '', 1, 'saletovic_e@dibag.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4236, 826, 2, 15, '', 'Saletovic,', '', 0, 'saletovic,');
-INSERT INTO public.rainloop_ab_properties VALUES (4237, 826, 2, 16, '', 'Elvis', '', 0, 'elvis');
-INSERT INTO public.rainloop_ab_properties VALUES (4238, 826, 2, 10, '', 'Saletovic, Elvis', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4272, 837, 2, 15, '', 'xxx', '', 0, 'xxx');
-INSERT INTO public.rainloop_ab_properties VALUES (4240, 827, 2, 15, '', 'Termin_Zusage', '', 0, 'termin_zusage');
-INSERT INTO public.rainloop_ab_properties VALUES (4241, 827, 2, 10, '', 'Termin_Zusage', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4239, 827, 2, 30, '', 'anbieter.d5fd145928f24a30bef57f70bfccdd69@nachrichten.immobilienscout24.de', '', 1, 'anbieter.d5fd145928f24a30bef57f70bfccdd69@nachrichten.immobilienscout24.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4243, 828, 2, 15, '', 'Weber,', '', 0, 'weber,');
-INSERT INTO public.rainloop_ab_properties VALUES (4244, 828, 2, 16, '', 'Niko', '', 0, 'niko');
-INSERT INTO public.rainloop_ab_properties VALUES (4245, 828, 2, 10, '', 'Weber, Niko', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4231, 825, 2, 30, '', 'Saletovic_E@dibag.de', '', 3, 'saletovic_e@dibag.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4247, 829, 2, 10, '', 'lydia.p97@gmail.com', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4246, 829, 2, 30, '', 'lydia.p97@gmail.com', '', 1, 'lydia.p97@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4249, 830, 2, 10, '', 'kontakt@maerkischekiste.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4248, 830, 2, 30, '', 'kontakt@maerkischekiste.de', '', 1, 'kontakt@maerkischekiste.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4251, 831, 2, 15, '', 'Weber,', '', 0, 'weber,');
-INSERT INTO public.rainloop_ab_properties VALUES (4252, 831, 2, 16, '', 'Niko', '', 0, 'niko');
-INSERT INTO public.rainloop_ab_properties VALUES (4253, 831, 2, 10, '', 'Weber, Niko', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4273, 837, 2, 16, '', 'Kardiologische Gemeinschaftspraxis am Park Sanssouci', '', 0, 'kardiologische gemeinschaftspraxis am park sanssouci');
-INSERT INTO public.rainloop_ab_properties VALUES (4274, 837, 2, 10, '', 'xxx Kardiologische Gemeinschaftspraxis am Park Sanssouci', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4235, 826, 2, 30, '', 'Saletovic_E@dibag.de', '', 2, 'saletovic_e@dibag.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4259, 833, 2, 15, '', 'Weber,', '', 0, 'weber,');
-INSERT INTO public.rainloop_ab_properties VALUES (4260, 833, 2, 16, '', 'Niko', '', 0, 'niko');
-INSERT INTO public.rainloop_ab_properties VALUES (4261, 833, 2, 10, '', 'Weber, Niko', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4242, 828, 2, 30, '', 'Niko.Weber@kud-hausbau.de', '', 3, 'niko.weber@kud-hausbau.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4250, 831, 2, 30, '', 'Niko.Weber@kud-hausbau.de', '', 2, 'niko.weber@kud-hausbau.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4258, 833, 2, 30, '', 'Niko.Weber@kud-hausbau.de', '', 1, 'niko.weber@kud-hausbau.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4263, 834, 2, 15, '', 'Pospiech,', '', 0, 'pospiech,');
-INSERT INTO public.rainloop_ab_properties VALUES (4264, 834, 2, 16, '', 'Mandy', '', 0, 'mandy');
-INSERT INTO public.rainloop_ab_properties VALUES (4265, 834, 2, 10, '', 'Pospiech, Mandy', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4262, 834, 2, 30, '', 'Mandy.Pospiech@bundesimmobilien.de', '', 3, 'mandy.pospiech@bundesimmobilien.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4267, 835, 2, 15, '', 'Lieferando.de', '', 0, 'lieferando.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4268, 835, 2, 10, '', 'Lieferando.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4266, 835, 2, 30, '', 'info@lieferando.de', '', 1, 'info@lieferando.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4270, 836, 2, 10, '', 'Belegungsrechte@vonovia.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4269, 836, 2, 30, '', 'Belegungsrechte@vonovia.de', '', 1, 'belegungsrechte@vonovia.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4271, 837, 2, 30, '', 'termine@kardiologie-potsdam.de', '', 1, 'termine@kardiologie-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4276, 838, 2, 15, '', 'Antje', '', 0, 'antje');
-INSERT INTO public.rainloop_ab_properties VALUES (4277, 838, 2, 16, '', 'Evers', '', 0, 'evers');
-INSERT INTO public.rainloop_ab_properties VALUES (4278, 838, 2, 10, '', 'Antje Evers', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4275, 838, 2, 30, '', 'aevers75@web.de', '', 1, 'aevers75@web.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4280, 839, 2, 15, '', 'Isabell', '', 0, 'isabell');
-INSERT INTO public.rainloop_ab_properties VALUES (4281, 839, 2, 16, '', 'Kruse', '', 0, 'kruse');
-INSERT INTO public.rainloop_ab_properties VALUES (4282, 839, 2, 10, '', 'Isabell Kruse', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4219, 821, 2, 30, '', 'vermietung@vermietungsbuero-mueller.de', '', 5, 'vermietung@vermietungsbuero-mueller.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4284, 840, 2, 15, '', 'Mieterverein', '', 0, 'mieterverein');
-INSERT INTO public.rainloop_ab_properties VALUES (4285, 840, 2, 16, '', 'Potsdam', '', 0, 'potsdam');
-INSERT INTO public.rainloop_ab_properties VALUES (4286, 840, 2, 10, '', 'Mieterverein Potsdam', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4283, 840, 2, 30, '', 'info@mieterverein-potsdam.de', '', 1, 'info@mieterverein-potsdam.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4288, 841, 2, 15, '', 'Servicecenter', '', 0, 'servicecenter');
-INSERT INTO public.rainloop_ab_properties VALUES (4291, 842, 2, 30, '', 'ina.rosentreter@gmail.com', '', 1, 'ina.rosentreter@gmail.com');
-INSERT INTO public.rainloop_ab_properties VALUES (4294, 843, 2, 15, '', 'Pospiech,', '', 0, 'pospiech,');
-INSERT INTO public.rainloop_ab_properties VALUES (4295, 843, 2, 16, '', 'Mandy', '', 0, 'mandy');
-INSERT INTO public.rainloop_ab_properties VALUES (4296, 843, 2, 10, '', 'Pospiech, Mandy', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4298, 844, 2, 15, '', 'Pospiech,', '', 0, 'pospiech,');
-INSERT INTO public.rainloop_ab_properties VALUES (4299, 844, 2, 16, '', 'Mandy', '', 0, 'mandy');
-INSERT INTO public.rainloop_ab_properties VALUES (4300, 844, 2, 10, '', 'Pospiech, Mandy', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4293, 843, 2, 30, '', 'Mandy.Pospiech@bundesimmobilien.de', '', 2, 'mandy.pospiech@bundesimmobilien.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4297, 844, 2, 30, '', 'Mandy.Pospiech@bundesimmobilien.de', '', 1, 'mandy.pospiech@bundesimmobilien.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4302, 845, 2, 10, '', 'rezeption@hotel-chorin.de', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4301, 845, 2, 30, '', 'rezeption@hotel-chorin.de', '', 4, 'rezeption@hotel-chorin.de');
-INSERT INTO public.rainloop_ab_properties VALUES (4304, 846, 2, 15, '', 'Miriam', '', 0, 'miriam');
-INSERT INTO public.rainloop_ab_properties VALUES (4305, 846, 2, 16, '', 'Lewin', '', 0, 'lewin');
-INSERT INTO public.rainloop_ab_properties VALUES (4306, 846, 2, 10, '', 'Miriam Lewin', '', 0, '');
-INSERT INTO public.rainloop_ab_properties VALUES (4303, 846, 2, 30, '', 'immo@miriamlewin.de', '', 2, 'immo@miriamlewin.de');
-
-
---
--- Name: rainloop_ab_properties_id_prop_seq; Type: SEQUENCE SET; Schema: public; Owner: rainloop
---
-
-SELECT pg_catalog.setval('public.rainloop_ab_properties_id_prop_seq', 4306, true);
-
-
---
--- Data for Name: rainloop_system; Type: TABLE DATA; Schema: public; Owner: rainloop
---
-
-INSERT INTO public.rainloop_system VALUES ('pgsql-ab-version_version', 2, '');
-
-
---
--- Data for Name: rainloop_users; Type: TABLE DATA; Schema: public; Owner: rainloop
---
-
-INSERT INTO public.rainloop_users VALUES (1, 'privat@ole-b-rosentreter.de');
-INSERT INTO public.rainloop_users VALUES (2, 'privat@ina-rosentreter.de');
-INSERT INTO public.rainloop_users VALUES (3, 'privat@lasse-gehrmann.de');
-INSERT INTO public.rainloop_users VALUES (4, 'privat@matthies-gehrmann.de');
-INSERT INTO public.rainloop_users VALUES (5, 'kontakt@laktatnebel.de');
-INSERT INTO public.rainloop_users VALUES (6, 'sports@laktatnebel.de');
-
-
---
--- PostgreSQL database dump complete
---
-
+++ /dev/null
-1.17.0
\ No newline at end of file
+++ /dev/null
-1.17.0
\ No newline at end of file
+++ /dev/null
-<?php //9beeb01b864dfe83b62edeed1337ca361ea29ee1ff89e906447febb1cd28310c541e9b302a554c767aa61669cb2c6ea6
\ No newline at end of file
+++ /dev/null
-1.17.0
\ No newline at end of file
+++ /dev/null
-window.rainloopI18N={"LANGS_NAMES/LANG_EN":"English","LANGS_NAMES/LANG_EN_US":"English","LANGS_NAMES/LANG_EN_GB":"English (UK)","LANGS_NAMES/LANG_EN_UK":"English (UK)","LANGS_NAMES/LANG_EN_CA":"English (Canadian)","LANGS_NAMES/LANG_TH_TH":"ภาษาไทย","LANGS_NAMES/LANG_EL_GR":"Ελληνικά","LANGS_NAMES/LANG_NL_NL":"Nederlands","LANGS_NAMES/LANG_NB_NO":"Norsk (bokmål)","LANGS_NAMES/LANG_PL_PL":"Polski","LANGS_NAMES/LANG_RU_RU":"Русский","LANGS_NAMES/LANG_RO_RO":"Română","LANGS_NAMES/LANG_UK_UA":"Українська","LANGS_NAMES/LANG_DE_DE":"Deutsch","LANGS_NAMES/LANG_FI_FI":"Suomi","LANGS_NAMES/LANG_FR_FR":"Français (France)","LANGS_NAMES/LANG_FR_CA":"Français (Canada)","LANGS_NAMES/LANG_PT_PT":"Português (Portugal)","LANGS_NAMES/LANG_PT_BR":"Português (Brasil)","LANGS_NAMES/LANG_ES_ES":"Español (España)","LANGS_NAMES/LANG_ES_LA":"Español","LANGS_NAMES/LANG_ET_EE":"Eesti","LANGS_NAMES/LANG_FA_IR":"فارسی","LANGS_NAMES/LANG_IT_IT":"Italiano","LANGS_NAMES/LANG_LT_LT":"Lietuvių","LANGS_NAMES/LANG_LV_LV":"Latviešu","LANGS_NAMES/LANG_IS_IS":"Íslenska","LANGS_NAMES/LANG_HU_HU":"Magyar","LANGS_NAMES/LANG_TR_TR":"Türkçe","LANGS_NAMES/LANG_SK_SK":"Slovenčina","LANGS_NAMES/LANG_SV_SE":"Svenska","LANGS_NAMES/LANG_SL_SI":"Slovenščina","LANGS_NAMES/LANG_JA_JP":"日本語","LANGS_NAMES/LANG_ZH_TW":"中文(台灣)","LANGS_NAMES/LANG_ZH_CN":"中文(简体)","LANGS_NAMES/LANG_ZH_HK":"中文(香港)","LANGS_NAMES/LANG_KO_KR":"한국어","LANGS_NAMES/LANG_BG_BG":"Български","LANGS_NAMES/LANG_CS_CZ":"Čeština","LANGS_NAMES/LANG_AR_SA":"العربية","LANGS_NAMES/LANG_DA_DK":"Dansk","LANGS_NAMES/LANG_ID_ID":"Bahasa Indonesia","LANGS_NAMES/LANG_CA":"Catalan","LANGS_NAMES/LANG_CA_ES":"Catalan (Spain)","LANGS_NAMES/LANG_EU":"Basque","LANGS_NAMES_EN/LANG_EN":"English","LANGS_NAMES_EN/LANG_EN_US":"English (US)","LANGS_NAMES_EN/LANG_EN_GB":"English (UK)","LANGS_NAMES_EN/LANG_EN_UK":"English (UK)","LANGS_NAMES_EN/LANG_EN_CA":"English (Canadian)","LANGS_NAMES_EN/LANG_TH_TH":"Thai","LANGS_NAMES_EN/LANG_EL_GR":"Greek","LANGS_NAMES_EN/LANG_NL_NL":"Dutch","LANGS_NAMES_EN/LANG_NB_NO":"Norwegian (bokmal)","LANGS_NAMES_EN/LANG_PL_PL":"Polish","LANGS_NAMES_EN/LANG_RU_RU":"Russian","LANGS_NAMES_EN/LANG_RO_RO":"Romanian","LANGS_NAMES_EN/LANG_UK_UA":"Ukrainian","LANGS_NAMES_EN/LANG_DE_DE":"German","LANGS_NAMES_EN/LANG_FI_FI":"Finnish","LANGS_NAMES_EN/LANG_FR_FR":"French (France)","LANGS_NAMES_EN/LANG_FR_CA":"France (Canada)","LANGS_NAMES_EN/LANG_PT_PT":"Portuguese (Portugal)","LANGS_NAMES_EN/LANG_PT_BR":"Portuguese (Brazil)","LANGS_NAMES_EN/LANG_ES_ES":"Spanish","LANGS_NAMES_EN/LANG_ES_LA":"Spanish","LANGS_NAMES_EN/LANG_ET_EE":"Estonian","LANGS_NAMES_EN/LANG_FA_IR":"Persian","LANGS_NAMES_EN/LANG_IT_IT":"Italian","LANGS_NAMES_EN/LANG_LT_LT":"Lithuanian","LANGS_NAMES_EN/LANG_LV_LV":"Latvian","LANGS_NAMES_EN/LANG_IS_IS":"Icelandic","LANGS_NAMES_EN/LANG_HU_HU":"Hungarian","LANGS_NAMES_EN/LANG_TR_TR":"Turkish","LANGS_NAMES_EN/LANG_SK_SK":"Slovak","LANGS_NAMES_EN/LANG_SL_SI":"Slovenian","LANGS_NAMES_EN/LANG_SV_SE":"Swedish","LANGS_NAMES_EN/LANG_JA_JP":"Japanese","LANGS_NAMES_EN/LANG_ZH_TW":"Traditional Chinese (Taiwan)","LANGS_NAMES_EN/LANG_ZH_CN":"Simplified Chinese (China)","LANGS_NAMES_EN/LANG_ZH_HK":"Traditional Chinese (Hong Kong)","LANGS_NAMES_EN/LANG_KO_KR":"Korean","LANGS_NAMES_EN/LANG_BG_BG":"Bulgarian","LANGS_NAMES_EN/LANG_CS_CZ":"Czech","LANGS_NAMES_EN/LANG_AR_SA":"Arabic","LANGS_NAMES_EN/LANG_DA_DK":"Danish","LANGS_NAMES_EN/LANG_ID_ID":"Indonesian","LANGS_NAMES_EN/LANG_CA":"Catalan","LANGS_NAMES_EN/LANG_CA_ES":"Catalan (Spain)","LANGS_NAMES_EN/LANG_EU":"Basque","LOGIN/LABEL_EMAIL":"E-Mail","LOGIN/LABEL_LOGIN":"Login","LOGIN/LABEL_PASSWORD":"Passwort","LOGIN/LABEL_SIGN_ME":"Anmeldung merken","LOGIN/LABEL_VERIFICATION_CODE":"Verifizierungscode","LOGIN/LABEL_DONT_ASK_VERIFICATION_CODE":"Für zwei Wochen nicht nach dem Code fragen","LOGIN/BUTTON_SIGN_IN":"Anmelden","LOGIN/TITLE_SIGN_IN_GOOGLE":"Mit Google anmelden","LOGIN/TITLE_SIGN_IN_GMAIL":"Sign In using Gmail","LOGIN/TITLE_SIGN_IN_FACEBOOK":"Mit Facebook anmelden","LOGIN/TITLE_SIGN_IN_TWITTER":"Mit Twitter anmelden","LOGIN/LABEL_FORGOT_PASSWORD":"Passwort vergessen","LOGIN/LABEL_REGISTRATION":"Registrierung","TOP_TOOLBAR/BUTTON_ADD_ACCOUNT":"Konto hinzufügen","TOP_TOOLBAR/BUTTON_SETTINGS":"Einstellungen","TOP_TOOLBAR/BUTTON_HELP":"Hilfe","TOP_TOOLBAR/BUTTON_LOGOUT":"Abmelden","MOBILE/BUTTON_MOBILE_VERSION":"mobile Version","MOBILE/BUTTON_DESKTOP_VERSION":"Desktop Version","SEARCH/MAIN_INPUT_PLACEHOLDER":"Suche","SEARCH/TITLE_ADV":"Erweiterte Suche","SEARCH/LABEL_ADV_FROM":"Von","SEARCH/LABEL_ADV_TO":"An","SEARCH/LABEL_ADV_SUBJECT":"Betreff","SEARCH/LABEL_ADV_TEXT":"Text","SEARCH/LABEL_ADV_HAS_ATTACHMENT":"Anhang vorhanden","SEARCH/LABEL_ADV_HAS_ATTACHMENTS":"Anhänge vorhanden","SEARCH/LABEL_ADV_FLAGGED":"Markiert","SEARCH/LABEL_ADV_UNSEEN":"Ungelesen","SEARCH/LABEL_ADV_DATE":"Datum","SEARCH/LABEL_ADV_DATE_ALL":"Alle","SEARCH/LABEL_ADV_DATE_3_DAYS":"Nicht älter als 3 Tage","SEARCH/LABEL_ADV_DATE_7_DAYS":"Nicht älter als 1 Woche","SEARCH/LABEL_ADV_DATE_MONTH":"Nicht älter als 1 Monat","SEARCH/LABEL_ADV_DATE_3_MONTHS":"Nicht älter als 3 Monate","SEARCH/LABEL_ADV_DATE_6_MONTHS":"Nicht älter als 6 Monate","SEARCH/LABEL_ADV_DATE_YEAR":"Nicht älter als 1 Jahr","SEARCH/BUTTON_ADV_SEARCH":"Suchen","PREVIEW_POPUP/FULLSCREEN":"Vollbild umschalten","PREVIEW_POPUP/ZOOM":"Herein-/Herauszoomen","PREVIEW_POPUP/CLOSE":"Schließen (Esc)","PREVIEW_POPUP/LOADING":"Wird geladen ...","PREVIEW_POPUP/GALLERY_PREV":"Zurück (Linke Pfeil-Taste)","PREVIEW_POPUP/GALLERY_NEXT":"Weiter (Rechte Pfeil-Taste)","PREVIEW_POPUP/GALLERY_COUNTER":"%curr% von %total%","PREVIEW_POPUP/IMAGE_ERROR":"<a href=\"%url%\" target=\"_blank\">Die Grafikdatei</a> konnte nicht geladen werden.","PREVIEW_POPUP/AJAX_ERROR":"<a href=\"%url%\" target=\"_blank\">Der Inhalt</a> konnte nicht geladen werden.","FOLDER_LIST/BUTTON_COMPOSE":"Erstellen","FOLDER_LIST/BUTTON_CONTACTS":"Kontakte","FOLDER_LIST/BUTTON_NEW_MESSAGE":"Neue Nachricht","FOLDER_LIST/INBOX_NAME":"Posteingang","FOLDER_LIST/SENT_NAME":"Gesendet","FOLDER_LIST/DRAFTS_NAME":"Entwürfe","FOLDER_LIST/SPAM_NAME":"Spam","FOLDER_LIST/TRASH_NAME":"Papierkorb","FOLDER_LIST/ARCHIVE_NAME":"Archiv","QUOTA/TITLE":"Speicherplatz-Nutzung","MESSAGE_LIST/BUTTON_RELOAD":"Nachrichtenliste neu laden","MESSAGE_LIST/BUTTON_MOVE_TO":"Verschieben nach","MESSAGE_LIST/BUTTON_DELETE":"Löschen","MESSAGE_LIST/BUTTON_ARCHIVE":"Archiv","MESSAGE_LIST/BUTTON_SPAM":"Spam","MESSAGE_LIST/BUTTON_NOT_SPAM":"Kein Spam","MESSAGE_LIST/BUTTON_EMPTY_FOLDER":"Ordner leeren","MESSAGE_LIST/BUTTON_MULTY_FORWARD":"Nachrichten weiterleiten","MESSAGE_LIST/BUTTON_DELETE_WITHOUT_MOVE":"Endgültig löschen","MESSAGE_LIST/BUTTON_MORE":"Mehr","MESSAGE_LIST/MENU_SET_SEEN":"Als gelesen markieren","MESSAGE_LIST/MENU_SET_ALL_SEEN":"Alle als gelesen markieren","MESSAGE_LIST/MENU_UNSET_SEEN":"Als ungelesen markieren","MESSAGE_LIST/MENU_SET_FLAG":"Markieren","MESSAGE_LIST/MENU_UNSET_FLAG":"Markierung entfernen","MESSAGE_LIST/MENU_SELECT_ALL":"Alle","MESSAGE_LIST/MENU_SELECT_NONE":"Keine","MESSAGE_LIST/MENU_SELECT_INVERT":"Umkehren","MESSAGE_LIST/MENU_SELECT_UNSEEN":"Ungelesen","MESSAGE_LIST/MENU_SELECT_SEEN":"Gelesen","MESSAGE_LIST/MENU_SELECT_FLAGGED":"Markiert","MESSAGE_LIST/MENU_SELECT_UNFLAGGED":"Nicht markiert","MESSAGE_LIST/EMPTY_LIST":"Liste ist leer.","MESSAGE_LIST/EMPTY_SEARCH_LIST":"Keine Treffer für Ihre Suche.","MESSAGE_LIST/SEARCH_RESULT_FOR":"Suchergebnisse für \"%SEARCH%\"","MESSAGE_LIST/BACK_TO_MESSAGE_LIST":"Zurück zur Nachrichtenliste","MESSAGE_LIST/LIST_LOADING":"Die Liste wird geladen","MESSAGE_LIST/EMPTY_SUBJECT_TEXT":"(Kein Betreff)","MESSAGE_LIST/PUT_MESSAGE_HERE":"Ziehen Sie die Nachricht hierhin, um sie in der Liste anzuzeigen","MESSAGE_LIST/TODAY_AT":"Heute um %TIME%","MESSAGE_LIST/YESTERDAY_AT":"Gestern um %TIME%","MESSAGE_LIST/SEARCH_PLACEHOLDER":"Suche","MESSAGE_LIST/NEW_MESSAGE_NOTIFICATION":"Sie haben %COUNT% neue Nachrichten!","MESSAGE_LIST/QUOTA_SIZE":"Sie nutzen <strong>%SIZE% (%PROC%%)</strong> von <strong>%LIMIT%</strong>.","MESSAGE/BUTTON_EDIT":"Bearbeiten","MESSAGE/BUTTON_BACK":"Zurück","MESSAGE/BUTTON_CLOSE":"Schließen","MESSAGE/BUTTON_DELETE":"Löschen","MESSAGE/BUTTON_UNSUBSCRIBE":"Diese Liste abbestellen","MESSAGE/BUTTON_ARCHIVE":"Archiv","MESSAGE/BUTTON_SPAM":"Spam","MESSAGE/BUTTON_NOT_SPAM":"Kein Spam","MESSAGE/BUTTON_MOVE_TO":"Verschieben nach","MESSAGE/BUTTON_MORE":"Mehr","MESSAGE/BUTTON_REPLY":"Antworten","MESSAGE/BUTTON_REPLY_ALL":"Allen antworten","MESSAGE/BUTTON_FORWARD":"Weiterleiten","MESSAGE/BUTTON_FORWARD_AS_ATTACHMENT":"Als Anhang weiterleiten","MESSAGE/BUTTON_EDIT_AS_NEW":"Als neue Nachricht öffnen","MESSAGE/BUTTON_SHOW_IMAGES":"Bilder anzeigen","MESSAGE/BUTTON_NOTIFY_READ_RECEIPT":"Der Absender hat darum gebeten, benachrichtigt zu werden, wenn Sie diese Nachricht lesen.","MESSAGE/BUTTON_IN_NEW_WINDOW":"In neuem Fenster anzeigen","MESSAGE/BUTTON_THREAD_LIST":"Unterhaltungsliste","MESSAGE/BUTTON_THREAD_PREV":"Zurück","MESSAGE/BUTTON_THREAD_NEXT":"Weiter","MESSAGE/BUTTON_THREAD_MORE":"Mehr Nachrichten","MESSAGE/MENU_HEADERS":"Kopfzeilen anzeigen","MESSAGE/MENU_VIEW_ORIGINAL":"Original anzeigen","MESSAGE/MENU_DOWNLOAD_ORIGINAL":"Als .eml-Datei herunterladen","MESSAGE/MENU_FILTER_SIMILAR":"Ähnliche Nachrichten","MESSAGE/MENU_PRINT":"Drucken","MESSAGE/EMPTY_SUBJECT_TEXT":"(Kein Betreff)","MESSAGE/LABEL_SUBJECT":"Betreff","MESSAGE/LABEL_DATE":"Datum","MESSAGE/LABEL_FROM":"Von","MESSAGE/LABEL_FROM_SHORT":"von","MESSAGE/LABEL_TO":"An","MESSAGE/LABEL_TO_SHORT":"an","MESSAGE/LABEL_CC":"CC","MESSAGE/LABEL_BCC":"BCC","MESSAGE/LABEL_REPLY_TO":"Antwort an","MESSAGE/PRINT_LABEL_FROM":"Von","MESSAGE/PRINT_LABEL_TO":"An","MESSAGE/PRINT_LABEL_CC":"CC","MESSAGE/PRINT_LABEL_BCC":"BCC","MESSAGE/PRINT_LABEL_REPLY_TO":"Antwort an","MESSAGE/PRINT_LABEL_DATE":"Datum","MESSAGE/PRINT_LABEL_SUBJECT":"Betreff","MESSAGE/PRINT_LABEL_ATTACHMENTS":"Anhänge","MESSAGE/MESSAGE_LOADING":"Nachricht wird geladen","MESSAGE/MESSAGE_VIEW_DESC":"Wählen Sie eine Nachricht aus der Liste aus, um sie anzuzeigen.","MESSAGE/MESSAGE_VIEW_MOVE_DESC":"Klicke auf den Ordnernamen auf der linken Seite, um die Nachricht zu verschieben.","MESSAGE/PGP_PASSWORD_INPUT_PLACEHOLDER":"Passwort","MESSAGE/PGP_SIGNED_MESSAGE_DESC":"OpenPGP-signierte Nachricht (klicken, um zu überprüfen)","MESSAGE/PGP_ENCRYPTED_MESSAGE_DESC":"OpenPGP-verschlüsselte Nachricht (klicken, um zu entschlüsseln)","MESSAGE/LINK_DOWNLOAD_AS_ZIP":"Als ZIP-Datei herunterladen","MESSAGE/LINK_SAVE_TO_OWNCLOUD":"In ownCloud speichern","MESSAGE/LINK_SAVE_TO_CLOUD":"In der Cloud speichern","MESSAGE/LINK_SAVE_TO_DROPBOX":"In Dropbox speichern","READ_RECEIPT/SUBJECT":"Empfangsbestätigung (angezeigt) - %SUBJECT%","READ_RECEIPT/BODY":"Dies ist eine Empfangsbestätigung für die Nachricht, die Sie an %READ-RECEIPT% gesendet haben.\n\nHinweis: Diese Empfangsbestätigung bestätigt nur, dass die Nachricht auf dem Computer des Empfängers angezeigt wurde.\nEs besteht keine Garantie, dass der Empfänger den Inhalt der Nachricht gelesen oder verstanden hat.","SUGGESTIONS/SEARCHING_DESC":"Suche läuft...","CONTACTS/LEGEND_CONTACTS":"Kontakte","CONTACTS/SEARCH_INPUT_PLACEHOLDER":"Suche","CONTACTS/BUTTON_ADD_CONTACT":"Kontakt hinzufügen","CONTACTS/BUTTON_CREATE_CONTACT":"Kontakt anlegen","CONTACTS/BUTTON_UPDATE_CONTACT":"Kontakt aktualisieren","CONTACTS/BUTTON_IMPORT":"Import (csv, vcf, vCard)","CONTACTS/BUTTON_EXPORT_VCARD":"Export (vcf, vCard)","CONTACTS/BUTTON_EXPORT_CSV":"Export (csv)","CONTACTS/ERROR_IMPORT_FILE":"Importfehler (ungültiges Dateiformat)","CONTACTS/LIST_LOADING":"Kontakte werden geladen","CONTACTS/EMPTY_LIST":"Keine Kontakte","CONTACTS/EMPTY_SEARCH":"Keine Kontakte gefunden","CONTACTS/CLEAR_SEARCH":"Suche leeren","CONTACTS/CONTACT_VIEW_DESC":"Kontakt aus der Liste wählen, um ihn anzuzeigen.","CONTACTS/LABEL_DISPLAY_NAME":"Anzeigename","CONTACTS/LABEL_EMAIL":"E-Mail","CONTACTS/LABEL_PHONE":"Telefon","CONTACTS/LABEL_WEB":"Web","CONTACTS/LABEL_BIRTHDAY":"Geburtstag","CONTACTS/LINK_ADD_EMAIL":"E-Mail-Adresse hinzufügen","CONTACTS/LINK_ADD_PHONE":"Nummer hinzufügen","CONTACTS/LINK_BIRTHDAY":"Geburtstag","CONTACTS/PLACEHOLDER_ENTER_DISPLAY_NAME":"Anzeigename eingeben","CONTACTS/PLACEHOLDER_ENTER_LAST_NAME":"Nachnamen eingeben","CONTACTS/PLACEHOLDER_ENTER_FIRST_NAME":"Vornamen eingeben","CONTACTS/PLACEHOLDER_ENTER_NICK_NAME":"Spitzname eingeben","CONTACTS/LABEL_READ_ONLY":"Schreibgeschützt","CONTACTS/LABEL_SHARE":"Teilen","CONTACTS/ADD_MENU_LABEL":"Hinzufügen","CONTACTS/ADD_MENU_NICKNAME":"Spitzname","CONTACTS/ADD_MENU_NOTES":"Anmerkung","CONTACTS/ADD_MENU_EMAIL":"E-Mail","CONTACTS/ADD_MENU_PHONE":"Telefon","CONTACTS/ADD_MENU_URL":"URL","CONTACTS/ADD_MENU_ADDRESS":"Adresse","CONTACTS/ADD_MENU_BIRTHDAY":"Geburtstag","CONTACTS/ADD_MENU_TAGS":"Tags","CONTACTS/BUTTON_SHARE_NONE":"Niemand","CONTACTS/BUTTON_SHARE_ALL":"Jeder","CONTACTS/BUTTON_SYNC":"Synchronisierung (CardDAV)","COMPOSE/TITLE_FROM":"Von","COMPOSE/TITLE_TO":"An","COMPOSE/TITLE_CC":"CC","COMPOSE/TITLE_BCC":"BCC","COMPOSE/TITLE_REPLY_TO":"Antwort an","COMPOSE/TITLE_SUBJECT":"Betreff","COMPOSE/LINK_SHOW_INPUTS":"alle Felder anzeigen","COMPOSE/BUTTON_SEND":"Senden","COMPOSE/BUTTON_SAVE":"Speichern","COMPOSE/BUTTON_DELETE":"Löschen","COMPOSE/BUTTON_CANCEL":"Abbrechen","COMPOSE/BUTTON_MINIMIZE":"Minimieren","COMPOSE/SAVED_TIME":"Gespeichert um %TIME%","COMPOSE/SAVED_ERROR_ON_SEND":"Die Nachricht wurde gesendet, konnte aber nicht im Gesendet-Ordner gespeichert werden.","COMPOSE/DISCARD_UNSAVED_DATA":"Nicht gespeicherte Daten löschen?","COMPOSE/ATTACH_FILES":"Dateien anhängen","COMPOSE/ATTACH_DROP_FILES_DESC":"Fügen Sie hier Dateien ein","COMPOSE/ATTACH_ITEM_CANCEL":"Abbrechen","COMPOSE/DROPBOX":"Dropbox","COMPOSE/GOOGLE_DRIVE":"Google Drive","COMPOSE/REPLY_MESSAGE_TITLE":"%DATETIME%, %EMAIL% schrieb","COMPOSE/FORWARD_MESSAGE_TOP_TITLE":"-------- Weitergeleitete Nachricht -------","COMPOSE/FORWARD_MESSAGE_TOP_FROM":"Von","COMPOSE/FORWARD_MESSAGE_TOP_TO":"An","COMPOSE/FORWARD_MESSAGE_TOP_CC":"CC","COMPOSE/FORWARD_MESSAGE_TOP_SENT":"Gesendet","COMPOSE/FORWARD_MESSAGE_TOP_SUBJECT":"Betreff","COMPOSE/EMPTY_TO_ERROR_DESC":"Geben Sie bitte mindestens einen Empfänger an","COMPOSE/NO_ATTACHMENTS_HERE_DESC":"Keine Anhänge vorhanden.","COMPOSE/ATTACHMENTS_ERROR_DESC":"Warnung! Nicht alle Anhänge wurden hochgeladen.","COMPOSE/ATTACHMENTS_UPLOAD_ERROR_DESC":"Es wurden noch nicht alle Anhänge hochgeladen.","COMPOSE/BUTTON_REQUEST_READ_RECEIPT":"Empfangsbestätigung anfordern","COMPOSE/BUTTON_MARK_AS_IMPORTANT":"Als Wichtig markieren","COMPOSE/BUTTON_OPEN_PGP":"OpenPGP (nur bei unformatiertem Text)","COMPOSE/BUTTON_REQUEST_DSN":"Übermittlungsstatus anfordern","POPUPS_WELCOME_PAGE/BUTTON_CLOSE":"Schließen","POPUPS_ASK/BUTTON_YES":"Ja","POPUPS_ASK/BUTTON_NO":"Nein","POPUPS_ASK/DESC_WANT_CLOSE_THIS_WINDOW":"Sind Sie sicher, dass Sie dieses Fenster schließen möchten?","POPUPS_ASK/DESC_WANT_DELETE_MESSAGES":"Sind Sie sicher, dass Sie diese Nachricht(en) löschen möchten?","POPUPS_LANGUAGES/TITLE_LANGUAGES":"Sprache auswählen","POPUPS_ADD_ACCOUNT/TITLE_ADD_ACCOUNT":"Konto hinzufügen?","POPUPS_ADD_ACCOUNT/BUTTON_ADD_ACCOUNT":"Hinzufügen","POPUPS_ADD_ACCOUNT/TITLE_UPDATE_ACCOUNT":"Konto aktualisieren?","POPUPS_ADD_ACCOUNT/BUTTON_UPDATE_ACCOUNT":"Aktualisieren","POPUPS_IDENTITY/TITLE_ADD_IDENTITY":"Identität hinzufügen?","POPUPS_IDENTITY/TITLE_UPDATE_IDENTITY":"Identität aktualisieren?","POPUPS_IDENTITY/BUTTON_ADD_IDENTITY":"Hinzufügen","POPUPS_IDENTITY/BUTTON_UPDATE_IDENTITY":"Aktualisieren","POPUPS_IDENTITY/LABEL_EMAIL":"E-Mail","POPUPS_IDENTITY/LABEL_NAME":"Name","POPUPS_IDENTITY/LABEL_REPLY_TO":"Antwort an","POPUPS_IDENTITY/LABEL_SIGNATURE":"Signatur","POPUPS_IDENTITY/LABEL_CC":"CC","POPUPS_IDENTITY/LABEL_BCC":"BCC","POPUPS_IDENTITY/LABEL_SIGNATURE_INSERT_BEFORE":"Diese Signatur in Antworten vor dem zitierten Text einfügen","POPUPS_CREATE_FOLDER/TITLE_CREATE_FOLDER":"Ordner anlegen?","POPUPS_CREATE_FOLDER/LABEL_NAME":"Ordnername","POPUPS_CREATE_FOLDER/LABEL_PARENT":"Übergeordneter Ordner","POPUPS_CREATE_FOLDER/BUTTON_CREATE":"Anlegen","POPUPS_CREATE_FOLDER/BUTTON_CANCEL":"Abbrechen","POPUPS_CREATE_FOLDER/BUTTON_CLOSE":"Schließen","POPUPS_CREATE_FOLDER/TITLE_CREATING_PROCESS":"Ordner wird angelegt","POPUPS_CLEAR_FOLDER/TITLE_CLEAR_FOLDER":"Alle Nachrichten in diesem Ordner löschen?","POPUPS_CLEAR_FOLDER/BUTTON_CLEAR":"Bereinigen","POPUPS_CLEAR_FOLDER/BUTTON_CANCEL":"Abbrechen","POPUPS_CLEAR_FOLDER/BUTTON_CLOSE":"Schließen","POPUPS_CLEAR_FOLDER/DANGER_DESC_WARNING":"Achtung!","POPUPS_CLEAR_FOLDER/DANGER_DESC_HTML_1":"Dieser Schritt wird alle Nachrichten im Ordner <strong>%FOLDER%</strong> endgültig löschen.","POPUPS_CLEAR_FOLDER/DANGER_DESC_HTML_2":"Einmal begonnen, kann dieser Vorgang nicht mehr abgebrochen oder beendet werden.","POPUPS_CLEAR_FOLDER/TITLE_CLEARING_PROCESS":"Ordner wird gelöscht ...","POPUPS_IMPORT_OPEN_PGP_KEY/TITLE_IMPORT_OPEN_PGP_KEY":"OpenPGP-Schlüssel importieren","POPUPS_IMPORT_OPEN_PGP_KEY/BUTTON_IMPORT_OPEN_PGP_KEY":"Importieren","POPUPS_VIEW_OPEN_PGP_KEY/TITLE_VIEW_OPEN_PGP_KEY":"OpenPGP-Schlüssel anzeigen","POPUPS_VIEW_OPEN_PGP_KEY/BUTTON_SELECT":"Auswählen","POPUPS_VIEW_OPEN_PGP_KEY/BUTTON_CLOSE":"Schließen","POPUPS_GENERATE_OPEN_PGP_KEYS/TITLE_GENERATE_OPEN_PGP_KEYS":"OpenPGP-Schlüssel generieren","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_EMAIL":"E-Mail","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_NAME":"Name","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_PASSWORD":"Passwort","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_KEY_BIT_LENGTH":"Schlüssellänge","POPUPS_GENERATE_OPEN_PGP_KEYS/BUTTON_GENERATE_OPEN_PGP_KEYS":"Generieren","POPUPS_COMPOSE_OPEN_PGP/TITLE_COMPOSE_OPEN_PGP":"OpenPGP unterschreiben/verschlüsseln","POPUPS_COMPOSE_OPEN_PGP/LABEL_SIGN":"Unterschrift","POPUPS_COMPOSE_OPEN_PGP/LABEL_ENCRYPT":"Verschlüsselung","POPUPS_COMPOSE_OPEN_PGP/LABEL_PASSWORD":"Passwort","POPUPS_COMPOSE_OPEN_PGP/BUTTON_SIGN":"Unterschreiben","POPUPS_COMPOSE_OPEN_PGP/BUTTON_ENCRYPT":"Verschlüsseln","POPUPS_COMPOSE_OPEN_PGP/BUTTON_SIGN_AND_ENCRYPT":"Unterschreiben und verschlüsseln","POPUPS_MESSAGE_OPEN_PGP/TITLE_MESSAGE_OPEN_PGP":"OpenPGP Decrypt","POPUPS_MESSAGE_OPEN_PGP/LABEL_KEY":"Private Key","POPUPS_MESSAGE_OPEN_PGP/LABEL_PASSWORD":"Password","POPUPS_MESSAGE_OPEN_PGP/BUTTON_DECRYPT":"Decrypt","POPUPS_TWO_FACTOR_TEST/TITLE_TEST_CODE":"Zwei-Faktor-Authentifizierung","POPUPS_TWO_FACTOR_TEST/LABEL_CODE":"Code","POPUPS_TWO_FACTOR_TEST/BUTTON_TEST":"Testen","POPUPS_FILTER/TITLE_CREATE_FILTER":"Filter erstellen?","POPUPS_FILTER/TITLE_EDIT_FILTER":"Filter bearbeiten?","POPUPS_FILTER/FILTER_NAME":"Name","POPUPS_FILTER/LEGEND_CONDITIONS":"Bedingungen","POPUPS_FILTER/LEGEND_ACTIONS":"Aktionen","POPUPS_FILTER/BUTTON_DONE":"Erledigt","POPUPS_FILTER/BUTTON_ADD_CONDITION":"Bedingung hinzufügen","POPUPS_FILTER/SELECT_ACTION_NONE":"Keine","POPUPS_FILTER/SELECT_ACTION_MOVE_TO":"Verschieben nach","POPUPS_FILTER/SELECT_ACTION_FORWARD_TO":"Weiterleiten nach","POPUPS_FILTER/SELECT_ACTION_REJECT":"Ablehnen","POPUPS_FILTER/SELECT_ACTION_VACATION_MESSAGE":"Urlaubsbenachrichtigung","POPUPS_FILTER/SELECT_ACTION_DISCARD":"Verwerfen","POPUPS_FILTER/SELECT_FIELD_FROM":"Von","POPUPS_FILTER/SELECT_FIELD_RECIPIENTS":"Empfänger (An oder CC)","POPUPS_FILTER/SELECT_FIELD_SUBJECT":"Betreff","POPUPS_FILTER/SELECT_FIELD_HEADER":"Nachrichtenkopf","POPUPS_FILTER/SELECT_FIELD_SIZE":"Größe","POPUPS_FILTER/SELECT_TYPE_CONTAINS":"Enthält","POPUPS_FILTER/SELECT_TYPE_NOT_CONTAINS":"Enthält nicht","POPUPS_FILTER/SELECT_TYPE_MATCHES":"Übereinstimmung (* und ? unterstützt)","POPUPS_FILTER/SELECT_TYPE_NOT_MATCHES":"Keine Übereinstimmung (* und ? unterstützt)","POPUPS_FILTER/SELECT_TYPE_REGEXP":"Regulärer Ausdruck","POPUPS_FILTER/SELECT_TYPE_NOT_REGEXP":"Regulärer Ausdruck (negiert)","POPUPS_FILTER/SELECT_TYPE_EQUAL_TO":"Gleich","POPUPS_FILTER/SELECT_TYPE_NOT_EQUAL_TO":"Ungleich","POPUPS_FILTER/SELECT_TYPE_OVER":"Über","POPUPS_FILTER/SELECT_TYPE_UNDER":"Unter","POPUPS_FILTER/SELECT_MATCH_ANY":"Eine der folgenden Regeln trifft zu","POPUPS_FILTER/SELECT_MATCH_ALL":"Alle folgenden Regeln treffen zu","POPUPS_FILTER/MARK_AS_READ_LABEL":"Als Gelesen markieren","POPUPS_FILTER/REPLY_INTERVAL_LABEL":"Antwortintervall (Tage)","POPUPS_FILTER/KEEP_LABEL":"Behalten","POPUPS_FILTER/STOP_LABEL":"Weiterverarbeitung der Regeln nicht verhindern","POPUPS_FILTER/EMAIL_LABEL":"E-Mail","POPUPS_FILTER/VACATION_SUBJECT_LABEL":"Betreff (optional)","POPUPS_FILTER/VACATION_MESSAGE_LABEL":"Nachricht","POPUPS_FILTER/VACATION_RECIPIENTS_LABEL":"Empfänger (durch Komma getrennt)","POPUPS_FILTER/REJECT_MESSAGE_LABEL":"Ablehnnachricht","POPUPS_FILTER/ALL_INCOMING_MESSAGES_DESC":"Alle eingehenden Nachrichten","POPUPS_SYSTEM_FOLDERS/TITLE_SYSTEM_FOLDERS":"Wählen Sie die Systemordner aus","POPUPS_SYSTEM_FOLDERS/SELECT_CHOOSE_ONE":"Wählen Sie einen aus","POPUPS_SYSTEM_FOLDERS/SELECT_UNUSE_NAME":"Nicht anwenden","POPUPS_SYSTEM_FOLDERS/LABEL_SENT":"Gesendet","POPUPS_SYSTEM_FOLDERS/LABEL_DRAFTS":"Entwürfe","POPUPS_SYSTEM_FOLDERS/LABEL_SPAM":"Spam","POPUPS_SYSTEM_FOLDERS/LABEL_TRASH":"Papierkorb","POPUPS_SYSTEM_FOLDERS/LABEL_ARCHIVE":"Archiv","POPUPS_SYSTEM_FOLDERS/BUTTON_CANCEL":"Abbrechen","POPUPS_SYSTEM_FOLDERS/BUTTON_CLOSE":"Schließen","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_SENT":"Sie haben keinen \"Gesendet\"-Systemordner gewählt, in dem Nachrichten nach dem Versenden gespeichert werden.\nFalls Sie versandte Nachrichten nicht speichern möchten, wählen Sie die Option \"Nicht anwenden\".","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_DRAFTS":"Sie haben keinen \"Entwürfe\"-Systemordner gewählt, in dem Nachrichten beim Erstellen gespeichert werden.","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_SPAM":"Sie haben keinen \"Spam\"-Systemordner gewählt, in dem die Spam-Nachrichten abgelegt werden.\nFalls Sie Spam-Nachrichten endgültig löschen möchten, wählen Sie die Option \"Nicht anwenden\".","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_TRASH":"Sie haben keinen \"Papierkorb\"-Systemordner gewählt, in dem die gelöschten Nachrichten abgelegt werden.\nFalls Sie gelöschte Nachrichten endgültig löschen möchten, wählen Sie die Option \"Nicht anwenden\".","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_ARCHIVE":"Sie haben keinen \"Archiv\"-Systemordner gewählt, in dem die archivierten Nachrichten abgelegt werden.","POPUPS_TWO_FACTOR_CFG/LEGEND_TWO_FACTOR_AUTH":"Zwei-Faktor-Authentifizierung","POPUPS_TWO_FACTOR_CFG/LABEL_ENABLE_TWO_FACTOR":"Zwei-Faktor-Authentifizierung aktivieren","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_USER":"Benutzer","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_STATUS":"Status","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_SECRET":"Geheimnis","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_BACKUP_CODES":"Sicherungscodes","POPUPS_TWO_FACTOR_CFG/BUTTON_CREATE":"Neues Geheimnis erstellen","POPUPS_TWO_FACTOR_CFG/BUTTON_ACTIVATE":"Aktivieren","POPUPS_TWO_FACTOR_CFG/BUTTON_CLEAR":"Löschen","POPUPS_TWO_FACTOR_CFG/BUTTON_LOGOUT":"Abmelden","POPUPS_TWO_FACTOR_CFG/BUTTON_DONE":"Erledigt","POPUPS_TWO_FACTOR_CFG/BUTTON_TEST":"Test","POPUPS_TWO_FACTOR_CFG/LINK_TEST":"test","POPUPS_TWO_FACTOR_CFG/BUTTON_SHOW_SECRET":"Geheimnis einblenden","POPUPS_TWO_FACTOR_CFG/BUTTON_HIDE_SECRET":"Geheminis ausblenden","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_REQUIRE_DESC":"Ihr Benutzerkonto erfordert die Einrichtung der Zwei-Faktor-Authentifizierung.","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_CONFIGURED_DESC":"Konfiguriert","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_NOT_CONFIGURED_DESC":"Nicht konfiguriert","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_DESC":"Importieren Sie diese Information in Ihre Google-Authenticator-Anwendung (oder andere TOTP-Anwendung), indem Sie den unten bereitgestellten QR-Code verwenden oder den Code manuell eingeben.","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_BACKUP_CODES_DESC":"Sollten Sie keine Codes über den Google Authenticator erhalten, können Sie einen Sicherungscode zur Anmeldung verwenden. Der Sicherungscode wird inaktiv, sobald Sie ihn zur Anmeldung verwendet haben.","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_TEST_BEFORE_DESC":"Sie können diese Einstellung nicht ohne vorherigen Test verändern.","TITLES/LOADING":"Wird geladen","TITLES/LOGIN":"Anmeldung","TITLES/MAILBOX":"Postfach","TITLES/SETTINGS":"Einstellungen","TITLES/COMPOSE":"Erstellen","UPLOAD/ERROR_FILE_IS_TOO_BIG":"Datei ist zu groß","UPLOAD/ERROR_FILE_PARTIALLY_UPLOADED":"Die Datei wurde aus einem unbekannten Grund unvollständig hochgeladen.","UPLOAD/ERROR_NO_FILE_UPLOADED":"Keine Datei hochgeladen","UPLOAD/ERROR_MISSING_TEMP_FOLDER":"Die temporäre Datei fehlt","UPLOAD/ERROR_ON_SAVING_FILE":"Ein unbekannter Fehler trat beim Hochladen auf","UPLOAD/ERROR_FILE_TYPE":"Ungültiger Dateityp","UPLOAD/ERROR_UNKNOWN":"Ein unbekannter Fehler trat beim Hochladen auf","EDITOR/TEXT_SWITCHER_PLAINT_TEXT":"HTML <-> TEXT","EDITOR/TEXT_SWITCHER_RICH_FORMATTING":"Formatierter Text (Rich Text)","EDITOR/TEXT_SWITCHER_CONFIRM":"Alle Textformatierungen und Grafiken gehen verloren. Wollen Sie wirklich fortfahren?","SETTINGS_LABELS/LABEL_PERSONAL_NAME":"Persönlich","SETTINGS_LABELS/LABEL_GENERAL_NAME":"Allgemein","SETTINGS_LABELS/LABEL_CONTACTS_NAME":"Kontakte","SETTINGS_LABELS/LABEL_FOLDERS_NAME":"Ordner","SETTINGS_LABELS/LABEL_ACCOUNTS_NAME":"Konten","SETTINGS_LABELS/LABEL_IDENTITY_NAME":"Identität","SETTINGS_LABELS/LABEL_IDENTITIES_NAME":"Identitäten","SETTINGS_LABELS/LABEL_FILTERS_NAME":"Filter","SETTINGS_LABELS/LABEL_TEMPLATES_NAME":"Vorlagen","SETTINGS_LABELS/LABEL_SECURITY_NAME":"Sicherheit","SETTINGS_LABELS/LABEL_SOCIAL_NAME":"Social","SETTINGS_LABELS/LABEL_THEMES_NAME":"Themen","SETTINGS_LABELS/LABEL_CHANGE_PASSWORD_NAME":"Passwort","SETTINGS_LABELS/LABEL_OPEN_PGP_NAME":"OpenPGP","SETTINGS_LABELS/BUTTON_BACK":"Zurück","SETTINGS_FILTERS/LEGEND_FILTERS":"Filter","SETTINGS_FILTERS/BUTTON_SAVE":"Speichern","SETTINGS_FILTERS/BUTTON_ADD_FILTER":"Filter hinzufügen","SETTINGS_FILTERS/BUTTON_DELETE":"Löschen","SETTINGS_FILTERS/BUTTON_RAW_SCRIPT":"Benutzerdefiniertes Skript verwenden","SETTINGS_FILTERS/SUBNAME_NONE":"Keine","SETTINGS_FILTERS/SUBNAME_MOVE_TO":"Verschieben nach \"%FOLDER%\"","SETTINGS_FILTERS/SUBNAME_FORWARD_TO":"Weiterleiten nach \"%EMAIL%\"","SETTINGS_FILTERS/SUBNAME_REJECT":"Ablehnen","SETTINGS_FILTERS/SUBNAME_VACATION_MESSAGE":"Urlaubsbenachrichtigung","SETTINGS_FILTERS/SUBNAME_DISCARD":"Verwerfen","SETTINGS_FILTERS/CAPABILITY_LABEL":"Unterstützte Module","SETTINGS_FILTERS/LOADING_PROCESS":"Aktualisiere Filterliste","SETTINGS_FILTERS/DELETING_ASK":"Sind Sie sicher?","SETTINGS_FILTERS/CHACHES_NEED_TO_BE_SAVED_DESC":"Die Änderungen müssen auf dem Server gespeichert werden.","SETTINGS_IDENTITY/LEGEND_IDENTITY":"Identität","SETTINGS_IDENTITY/LABEL_DISPLAY_NAME":"Name","SETTINGS_IDENTITY/LABEL_REPLY_TO":"Antwort an","SETTINGS_IDENTITY/LABEL_SIGNATURE":"Signatur","SETTINGS_IDENTITY/LABEL_ADD_SIGNATURE_TO_ALL":"Signatur zu allen ausgehenden Nachrichten hinzufügen","SETTINGS_SECURITY/LEGEND_SECURITY":"Sicherheit","SETTINGS_SECURITY/LABEL_CONFIGURE_TWO_FACTOR":"Zwei-Faktor-Authentifizierung konfigurieren","SETTINGS_SECURITY/LABEL_AUTOLOGOUT":"Automatische Abmeldung","SETTINGS_SECURITY/AUTOLOGIN_NEVER_OPTION_NAME":"Nie","SETTINGS_SECURITY/AUTOLOGIN_MINUTES_OPTION_NAME":"%MINUTES% Minute(n)","SETTINGS_SECURITY/AUTOLOGIN_HOURS_OPTION_NAME":"%HOURS% Stunde(n)","SETTINGS_GENERAL/LEGEND_GENERAL":"Allgemein","SETTINGS_GENERAL/LABEL_LANGUAGE":"Sprache","SETTINGS_GENERAL/LABEL_IDENTITY":"Identity","SETTINGS_GENERAL/LABEL_LAYOUT":"Layout","SETTINGS_GENERAL/LABEL_LAYOUT_NO_SPLIT":"Keine Aufteilung","SETTINGS_GENERAL/LABEL_LAYOUT_VERTICAL_SPLIT":"Vertikale Aufteilung","SETTINGS_GENERAL/LABEL_LAYOUT_HORIZONTAL_SPLIT":"Horizontale Aufteilung","SETTINGS_GENERAL/LABEL_EDITOR":"Standard-Texteditor","SETTINGS_GENERAL/LABEL_EDITOR_HTML":"HTML","SETTINGS_GENERAL/LABEL_EDITOR_PLAIN":"Unformatierter Text","SETTINGS_GENERAL/LABEL_EDITOR_HTML_FORCED":"HTML (erzwungen)","SETTINGS_GENERAL/LABEL_EDITOR_PLAIN_FORCED":"Unformatierter Text (erzwungen)","SETTINGS_GENERAL/LABEL_ANIMATION":"Interface-Animation","SETTINGS_GENERAL/LABEL_ANIMATION_FULL":"Komplett","SETTINGS_GENERAL/LABEL_ANIMATION_NORMAL":"Normal","SETTINGS_GENERAL/LABEL_ANIMATION_NONE":"Keine","SETTINGS_GENERAL/LABEL_VIEW_OPTIONS":"Optionen anzeigen","SETTINGS_GENERAL/LABEL_USE_PREVIEW_PANE":"Vorschaufenster nutzen","SETTINGS_GENERAL/LABEL_USE_CHECKBOXES_IN_LIST":"Kontrollkästchen in der Liste anzeigen","SETTINGS_GENERAL/LABEL_USE_THREADS":"Als Unterhaltungen anzeigen","SETTINGS_GENERAL/LABEL_REPLY_SAME_FOLDER":"Antworten im gleichen Ordner wie die Nachricht, auf die geantwortet wurde, abspeichern","SETTINGS_GENERAL/LABEL_SHOW_IMAGES":"In der Nachricht enthaltene Bilder immer anzeigen","SETTINGS_GENERAL/LABEL_SHOW_ANIMATION":"Animation anzeigen","SETTINGS_GENERAL/LABEL_MESSAGE_PER_PAGE":"Nachrichten pro Seite","SETTINGS_GENERAL/LABEL_NOTIFICATIONS":"Benachrichtigungen","SETTINGS_GENERAL/LABEL_SOUND_NOTIFICATION":"Benachrichtigungston","SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC":"Popups einblenden, wenn neue Nachrichten vorhanden sind","SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC_DENIED":"(Vom Browser blockiert.)","SETTINGS_CONTACTS/LEGEND_CONTACTS":"Kontakte","SETTINGS_CONTACTS/LABEL_CONTACTS_AUTOSAVE":"Empfänger automatisch zu Ihrem Adressbuch hinzuzufügen","SETTINGS_CONTACTS/LEGEND_CONTACTS_SYNC":"Remote-Synchronisierung (CardDAV)","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_ENABLE":"Remote-Synchronisierung aktivieren","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_SERVER":"Server","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_AB_URL":"Adressbuch-URL","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_USER":"Benutzer","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_PASSWORD":"Passwort","SETTINGS_THEMES/LEGEND_THEMES":"Themen","SETTINGS_THEMES/LEGEND_THEMES_CUSTOM":"Konfiguration der selbsterstellten Themen","SETTINGS_THEMES/LABEL_CUSTOM_TYPE":"Typ","SETTINGS_THEMES/LABEL_CUSTOM_TYPE_LIGHT":"Hell","SETTINGS_THEMES/LABEL_CUSTOM_TYPE_DARK":"Dunkel","SETTINGS_THEMES/LABEL_CUSTOM_BACKGROUND_IMAGE":"Hintergrund","SETTINGS_THEMES/BUTTON_UPLOAD_BACKGROUND_IMAGE":"Hintergrundbild hochladen (JPG, PNG)","SETTINGS_THEMES/ERROR_FILE_IS_TOO_BIG":"Datei ist zu groß","SETTINGS_THEMES/ERROR_FILE_TYPE_ERROR":"Ungültiger Dateityp (nur JPG und PNG)","SETTINGS_THEMES/ERROR_UNKNOWN":"Ein unbekannter Fehler trat beim Hochladen auf","SETTINGS_SOCIAL/LEGEND_GOOGLE":"Google","SETTINGS_SOCIAL/BUTTON_GOOGLE_CONNECT":"Mit Google verbinden","SETTINGS_SOCIAL/BUTTON_GOOGLE_DISCONNECT":"Von Google abmelden","SETTINGS_SOCIAL/MAIN_GOOGLE_DESC":"Nach der Aktivierung der Anmeldung per Google können Sie sich hier mit dem Google-Button im Anmeldedialog anmelden.","SETTINGS_SOCIAL/LEGEND_FACEBOOK":"Facebook","SETTINGS_SOCIAL/BUTTON_FACEBOOK_CONNECT":"Mit Facebook verbinden","SETTINGS_SOCIAL/BUTTON_FACEBOOK_DISCONNECT":"Von Facebook abmelden","SETTINGS_SOCIAL/MAIN_FACEBOOK_DESC":"Nach der Aktivierung der Anmeldung per Facebook können Sie sich hier mit dem Facebook-Button im Anmeldedialog anmelden.","SETTINGS_SOCIAL/LEGEND_TWITTER":"Twitter","SETTINGS_SOCIAL/BUTTON_TWITTER_CONNECT":"Mit Twitter verbinden","SETTINGS_SOCIAL/BUTTON_TWITTER_DISCONNECT":"Von Twitter abmelden","SETTINGS_SOCIAL/MAIN_TWITTER_DESC":"Nach der Aktivierung der Anmeldung per Twitter können Sie sich hier mit dem Twitter-Button im Anmeldedialog anmelden.","SETTINGS_FOLDERS/LEGEND_FOLDERS":"Ordnerliste","SETTINGS_FOLDERS/BUTTON_CREATE":"Ordner anlegen","SETTINGS_FOLDERS/BUTTON_SYSTEM":"Systemordner","SETTINGS_FOLDERS/BUTTON_DELETE":"Löschen","SETTINGS_FOLDERS/BUTTON_SUBSCRIBE":"Abonnieren","SETTINGS_FOLDERS/BUTTON_UNSUBSCRIBE":"Abonnement beenden","SETTINGS_FOLDERS/LOADING_PROCESS":"Ordnerliste wird geladen","SETTINGS_FOLDERS/CREATING_PROCESS":"Ordner wird angelegt","SETTINGS_FOLDERS/DELETING_PROCESS":"Ordner wird gelöscht","SETTINGS_FOLDERS/RENAMING_PROCESS":"Ordner wird umbenannt","SETTINGS_FOLDERS/DELETING_ASK":"Sind Sie sicher?","SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_1":"Sie haben zu viele Ordner!","SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_2":"Aus Leistungsgründen zeigen wir nur einen Teil davon an.","SETTINGS_FOLDERS/HELP_DELETE_FOLDER":"Ordner löschen","SETTINGS_FOLDERS/HELP_SHOW_HIDE_FOLDER":"Ordner ein-/ausblenden","SETTINGS_FOLDERS/HELP_CHECK_FOR_NEW_MESSAGES":"Auf neue Nachrichten prüfen/nicht prüfen","SETTINGS_ACCOUNTS/LEGEND_ACCOUNTS":"Konten","SETTINGS_ACCOUNTS/LEGEND_IDENTITIES":"Identitäten","SETTINGS_ACCOUNTS/LEGEND_ACCOUNTS_AND_IDENTITIES":"Konten und Identitäten","SETTINGS_ACCOUNTS/BUTTON_ADD_ACCOUNT":"Konto hinzufügen","SETTINGS_ACCOUNTS/BUTTON_ADD_IDENTITY":"Identität hinzufügen","SETTINGS_ACCOUNTS/BUTTON_DELETE":"Löschen","SETTINGS_ACCOUNTS/LOADING_PROCESS":"Aktualisiere Kontenliste","SETTINGS_ACCOUNTS/DELETING_ASK":"Sind Sie sicher?","SETTINGS_ACCOUNTS/DEFAULT_IDENTITY_LABEL":"Standard","SETTINGS_IDENTITIES/LEGEND_IDENTITY":"Identität","SETTINGS_IDENTITIES/LEGEND_IDENTITIES":"Zusätzliche Identitäten","SETTINGS_IDENTITIES/LABEL_DEFAULT":"Standard","SETTINGS_IDENTITIES/LABEL_DISPLAY_NAME":"Name","SETTINGS_IDENTITIES/LABEL_REPLY_TO":"Antwort an","SETTINGS_IDENTITIES/LABEL_SIGNATURE":"Signatur","SETTINGS_IDENTITIES/LABEL_ADD_SIGNATURE_TO_ALL":"Signatur zu allen ausgehenden Nachrichten hinzufügen","SETTINGS_IDENTITIES/BUTTON_ADD_IDENTITY":"Identität hinzufügen","SETTINGS_IDENTITIES/BUTTON_DELETE":"Löschen","SETTINGS_IDENTITIES/LOADING_PROCESS":"Aktualisiere Identitätsliste","SETTINGS_IDENTITIES/DELETING_ASK":"Sind Sie sicher?","SETTINGS_CHANGE_PASSWORD/LEGEND_CHANGE_PASSWORD":"Passwort ändern","SETTINGS_CHANGE_PASSWORD/LABEL_CURRENT_PASSWORD":"Aktuelles Passwort","SETTINGS_CHANGE_PASSWORD/LABEL_NEW_PASSWORD":"Neues Passwort","SETTINGS_CHANGE_PASSWORD/LABEL_REPEAT_PASSWORD":"Neues Passwort bestätigen","SETTINGS_CHANGE_PASSWORD/BUTTON_UPDATE_PASSWORD":"Neues Passwort setzen","SETTINGS_CHANGE_PASSWORD/ERROR_PASSWORD_MISMATCH":"Passwörter stimmen nicht überein; versuchen Sie es bitte erneut","SETTINGS_OPEN_PGP/LEGEND_OPEN_PGP":"OpenPGP","SETTINGS_OPEN_PGP/BUTTON_ADD_OPEN_PGP_KEY":"OpenPGP-Schlüssel importieren","SETTINGS_OPEN_PGP/BUTTON_GENERATE_OPEN_PGP_KEYS":"OpenPGP-Schlüssel generieren","SETTINGS_OPEN_PGP/TITLE_PRIVATE":"Privat","SETTINGS_OPEN_PGP/TITLE_PUBLIC":"Öffentlich","SETTINGS_OPEN_PGP/DELETING_ASK":"Sind Sie sicher?","SETTINGS_OPEN_PGP/GENERATE_ONLY_HTTPS":"Nur HTTPS","SETTINGS_OPEN_PGP/LABEL_ALLOW_DRAFT_AUTOSAVE":"Automatisch Entwurf speichern","SHORTCUTS_HELP/LEGEND_SHORTCUTS_HELP":"Tastaturkürzel-Hilfe","SHORTCUTS_HELP/TAB_MAILBOX":"Postfach","SHORTCUTS_HELP/TAB_MESSAGE_LIST":"Nachrichtenliste","SHORTCUTS_HELP/TAB_MESSAGE_VIEW":"Nachrichtenansicht","SHORTCUTS_HELP/TAB_COMPOSE":"Nachricht schreiben","SHORTCUTS_HELP/LABEL_OPEN_USER_DROPDOWN":"Benutzerauswahl öffnen","SHORTCUTS_HELP/LABEL_REPLY":"Antworten","SHORTCUTS_HELP/LABEL_REPLY_ALL":"Allen Antworten","SHORTCUTS_HELP/LABEL_FORWARD":"Weiterleiten","SHORTCUTS_HELP/LABEL_FORWARD_MULTIPLY":"Als Anhang/Anhänge weiterleiten","SHORTCUTS_HELP/LABEL_HELP":"Hilfe","SHORTCUTS_HELP/LABEL_CHECK_ALL":"Alle Nachrichten auswählen","SHORTCUTS_HELP/LABEL_ARCHIVE":"Archivieren","SHORTCUTS_HELP/LABEL_DELETE":"Löschen","SHORTCUTS_HELP/LABEL_OPEN_THREAD":"Ausgewählte Unterhaltung öffnen","SHORTCUTS_HELP/LABEL_MOVE":"Verschieben","SHORTCUTS_HELP/LABEL_READ":"Ausgewählte Nachrichten als gelesen markieren","SHORTCUTS_HELP/LABEL_UNREAD":"Ausgewählte Nachrichten als ungelesen markieren","SHORTCUTS_HELP/LABEL_IMPORTANT":"Wichtig, ausgewählte Nachrichten markieren","SHORTCUTS_HELP/LABEL_SEARCH":"Suchen","SHORTCUTS_HELP/LABEL_CANCEL_SEARCH":"Suche abbrechen","SHORTCUTS_HELP/LABEL_FULLSCREEN_ENTER":"Vollbild (Vorschaubereich-Layout)","SHORTCUTS_HELP/LABEL_VIEW_MESSAGE_ENTER":"Nachricht anzeigen (kein Vorschaubereich-Layout)","SHORTCUTS_HELP/LABEL_SWITCH_TO_MESSAGE":"Fokus auf ausgewählte Nachricht schalten","SHORTCUTS_HELP/LABEL_SWITCH_TO_FOLDER_LIST":"Fokus auf Ordnerliste schalten","SHORTCUTS_HELP/LABEL_FULLSCREEN_TOGGLE":"Vollbildmodus umschalten","SHORTCUTS_HELP/LABEL_BLOCKQUOTES_TOGGLE":"Nachrichten-Blockzitate umschalten","SHORTCUTS_HELP/LABEL_THREAD_NEXT":"Nächste Nachricht in Unterhaltung","SHORTCUTS_HELP/LABEL_THREAD_PREV":"Vorherige Nachricht in Unterhaltung","SHORTCUTS_HELP/LABEL_PRINT":"Drucken","SHORTCUTS_HELP/LABEL_EXIT_FULLSCREEN":"Vollbildmodus verlassen","SHORTCUTS_HELP/LABEL_CLOSE_MESSAGE":"Nachricht schließen (kein Vorschaubereich-Layout)","SHORTCUTS_HELP/LABEL_SWITCH_TO_LIST":"Fokus auf Nachrichtenliste zurückschalten","SHORTCUTS_HELP/LABEL_OPEN_COMPOSE_POPUP":"Erstellen-Popup öffnen","SHORTCUTS_HELP/LABEL_MINIMIZE_COMPOSE_POPUP":"Minimize compose popup","SHORTCUTS_HELP/LABEL_OPEN_IDENTITIES_DROPDOWN":"Identitätsauswahl öffnen","SHORTCUTS_HELP/LABEL_SAVE_MESSAGE":"Nachricht speichern","SHORTCUTS_HELP/LABEL_SEND_MESSAGE":"Nachricht senden","SHORTCUTS_HELP/LABEL_CLOSE_COMPOSE":"Popup schließen","PGP_NOTIFICATIONS/NO_PUBLIC_KEYS_FOUND":"Keine öffentlichen Schlüssel gefunden","PGP_NOTIFICATIONS/NO_PUBLIC_KEYS_FOUND_FOR":"Keine öffentlichen Schlüssel für die E-Mail \"%EMAIL%\" gefunden","PGP_NOTIFICATIONS/NO_PRIVATE_KEY_FOUND":"Keine privaten Schlüssel gefunden","PGP_NOTIFICATIONS/NO_PRIVATE_KEY_FOUND_FOR":"Keine privaten Schlüssel für die E-Mail \"%EMAIL%\" gefunden","PGP_NOTIFICATIONS/ADD_A_PUBLICK_KEY":"Öffentlicher Schlüssel hinzufügen","PGP_NOTIFICATIONS/SELECT_A_PRIVATE_KEY":"Privaten Schlüssel auswählen","PGP_NOTIFICATIONS/UNVERIFIRED_SIGNATURE":"Nich verifizierte Unterschrift","PGP_NOTIFICATIONS/DECRYPTION_ERROR":"OpenPGP-Entschlüsselungsfehler","PGP_NOTIFICATIONS/GOOD_SIGNATURE":"Gültige Unterschrift von %USER%","PGP_NOTIFICATIONS/PGP_ERROR":"OpenPGP-Fehler: %ERROR%","PGP_NOTIFICATIONS/SPECIFY_FROM_EMAIL":"Bitte die VON-E-Mail-Adresse angeben","PGP_NOTIFICATIONS/SPECIFY_AT_LEAST_ONE_RECIPIENT":"Bitte geben Sie mindestens einen Empfänger an","NOTIFICATIONS/INVALID_TOKEN":"Ungültiger Token","NOTIFICATIONS/AUTH_ERROR":"Authentifizierung fehlgeschlagen","NOTIFICATIONS/ACCESS_ERROR":"Zugriffsfehler","NOTIFICATIONS/CONNECTION_ERROR":"Serververbindung kann nicht hergestellt werden","NOTIFICATIONS/CAPTCHA_ERROR":"Falsche CAPTCHA-Eingabe.","NOTIFICATIONS/SOCIAL_FACEBOOK_LOGIN_ACCESS_DISABLE":"Diese Social-ID ist bisher mit keinem E-Mail-Konto verbunden. Melden Sie sich mit Ihren E-Mail-Anmeldedaten an und aktivieren Sie diese Funktion in Ihren Konteneinstellungen.","NOTIFICATIONS/SOCIAL_TWITTER_LOGIN_ACCESS_DISABLE":"Diese Social-ID ist bisher mit keinem E-Mail-Konto verbunden. Melden Sie sich mit Ihren E-Mail-Anmeldedaten an und aktivieren Sie diese Funktion in Ihren Konteneinstellungen.","NOTIFICATIONS/SOCIAL_GOOGLE_LOGIN_ACCESS_DISABLE":"Diese Social-ID ist bisher mit keinem E-Mail-Konto verbunden. Melden Sie sich mit Ihren E-Mail-Anmeldedaten an und aktivieren Sie diese Funktion in Ihren Konteneinstellungen.","NOTIFICATIONS/DOMAIN_NOT_ALLOWED":"Diese Domain ist nicht zugelassen.","NOTIFICATIONS/ACCOUNT_NOT_ALLOWED":"Konto ist nicht zugelassen.","NOTIFICATIONS/ACCOUNT_TWO_FACTOR_AUTH_REQUIRED":"Zwei-Faktor-Authentifizierung erforderlich","NOTIFICATIONS/ACCOUNT_TWO_FACTOR_AUTH_ERROR":"Fehler bei Zwei-Faktor-Authentifizierung","NOTIFICATIONS/COULD_NOT_SAVE_NEW_PASSWORD":"Neues Passwort konnte nicht gespeichert werden","NOTIFICATIONS/CURRENT_PASSWORD_INCORRECT":"Aktuelles Passwort falsch","NOTIFICATIONS/NEW_PASSWORD_SHORT":"Passwort ist zu kurz","NOTIFICATIONS/NEW_PASSWORD_WEAK":"Passwort ist zu einfach","NOTIFICATIONS/NEW_PASSWORD_FORBIDDENT":"Passwort enthält unzulässige Zeichen","NOTIFICATIONS/CONTACTS_SYNC_ERROR":"Fehler bei Kontakte-Synchronisierung","NOTIFICATIONS/CANT_GET_MESSAGE_LIST":"Die Nachrichtenliste ist nicht verfügbar","NOTIFICATIONS/CANT_GET_MESSAGE":"Diese Nachricht ist nicht verfügbar","NOTIFICATIONS/CANT_DELETE_MESSAGE":"Diese Nachricht kann nicht gelöscht werden","NOTIFICATIONS/CANT_MOVE_MESSAGE":"Diese Nachricht kann nicht verschoben werden","NOTIFICATIONS/CANT_SAVE_MESSAGE":"Diese Nachricht kann nicht gespeichert werden","NOTIFICATIONS/CANT_SEND_MESSAGE":"Diese Nachricht kann nicht gesendet werden","NOTIFICATIONS/INVALID_RECIPIENTS":"Ungültige Empfängeradressen","NOTIFICATIONS/CANT_SAVE_FILTERS":"Die Filter können nicht gespeichert werden","NOTIFICATIONS/CANT_GET_FILTERS":"Die Filter sind nicht verfügbar","NOTIFICATIONS/FILTERS_ARE_NOT_CORRECT":"Die Filter sind fehlerhaft","NOTIFICATIONS/CANT_CREATE_FOLDER":"Dieser Ordner kann nicht angelegt werden","NOTIFICATIONS/CANT_RENAME_FOLDER":"Dieser Ordner kann nicht umbenannt werden","NOTIFICATIONS/CANT_DELETE_FOLDER":"Dieser Ordner kann nicht gelöscht werden","NOTIFICATIONS/CANT_DELETE_NON_EMPTY_FOLDER":"Der Ordner kann nicht gelöscht werden; er ist nicht leer","NOTIFICATIONS/CANT_SUBSCRIBE_FOLDER":"Dieser Ordner kann nicht abonniert werden","NOTIFICATIONS/CANT_UNSUBSCRIBE_FOLDER":"Das Abonnement dieses Ordners kann nicht gelöscht werden","NOTIFICATIONS/CANT_SAVE_SETTINGS":"Einstellungen können nicht gespeichert werden","NOTIFICATIONS/CANT_SAVE_PLUGIN_SETTINGS":"Einstellungen können nicht gespeichert werden","NOTIFICATIONS/DOMAIN_ALREADY_EXISTS":"Diese Domain existiert bereits","NOTIFICATIONS/CANT_INSTALL_PACKAGE":"Paket konnte nicht installiert werden","NOTIFICATIONS/CANT_DELETE_PACKAGE":"Paket konnte nicht entfernt werden","NOTIFICATIONS/INVALID_PLUGIN_PACKAGE":"Plugin-Paket ist ungültig","NOTIFICATIONS/UNSUPPORTED_PLUGIN_PACKAGE":"Plugin-Paket wird nicht unterstützt","NOTIFICATIONS/LICENSING_SERVER_IS_UNAVAILABLE":"Der Subscription-Server kann nicht erreicht werden","NOTIFICATIONS/LICENSING_DOMAIN_EXPIRED":"Die Subscription dieser Domain ist abgelaufen.","NOTIFICATIONS/LICENSING_DOMAIN_BANNED":"Die Subscription dieser Domain ist gesperrt.","NOTIFICATIONS/DEMO_SEND_MESSAGE_ERROR":"Dieses Demokonto darf aus Sicherheitsgründen keine Nachrichten an externe E-Mail-Adressen versenden!","NOTIFICATIONS/DEMO_ACCOUNT_ERROR":"Aus Sicherheitsgründen ist dieses Konto nicht zu dieser Aktion berechtigt!","NOTIFICATIONS/ACCOUNT_ALREADY_EXISTS":"Dieses Konto existiert bereits","NOTIFICATIONS/ACCOUNT_DOES_NOT_EXIST":"Dieser Account existiert nicht.","NOTIFICATIONS/MAIL_SERVER_ERROR":"Beim Zugriff auf den E-Mail-Server trat ein Fehler auf.","NOTIFICATIONS/INVALID_INPUT_ARGUMENT":"Ungültige Eingabe","NOTIFICATIONS/UNKNOWN_ERROR":"Unbekannter Fehler","STATIC/BACK_LINK":"Aktualisieren","STATIC/DOMAIN_LIST_DESC":"Liste der Domains, auf die zugegriffen werden darf","STATIC/PHP_EXSTENSIONS_ERROR_DESC":"Notwendige PHP-Erweiterungen sind in Ihrer PHP-Konfiguration nicht vorhanden!","STATIC/PHP_VERSION_ERROR_DESC":"Ihre PHP Version (%VERSION%) ist älter als die notwendige Version: 5.3.0!","STATIC/NO_SCRIPT_TITLE":"Diese Anwendung benötigt JavaScript.","STATIC/NO_SCRIPT_DESC":"Ihr Browser unterstützt JavaScript nicht.\nAktivieren Sie bitte die JavaScript-Unterstützung in Ihrem Browser und versuchen Sie es erneut.","STATIC/NO_COOKIE_TITLE":"Diese Anwendung benötigt Cookies.","STATIC/NO_COOKIE_DESC":"Ihr Browser unterstützt Cookies nicht.\nAktivieren Sie bitte die Cookie-Unterstützung in Ihrem Browser und versuchen Sie es erneut.","STATIC/BAD_BROWSER_TITLE":"Ihr Browser ist veraltet.","STATIC/BAD_BROWSER_DESC":"Um alle Funktionen dieser Anwendung nutzen zu können,\nsollten Sie einen der folgenden Browser herunterladen und installieren"};
-;(function (global, factory) {
- typeof exports === 'object' && typeof module !== 'undefined'
- && typeof require === 'function' ? factory(require('../moment')) :
- typeof define === 'function' && define.amd ? define(['../moment'], factory) :
- factory(global.moment)
-}(this, (function (moment) { 'use strict';
-
-
- function processRelativeTime(number, withoutSuffix, key, isFuture) {
- var format = {
- m: ['eine Minute', 'einer Minute'],
- h: ['eine Stunde', 'einer Stunde'],
- d: ['ein Tag', 'einem Tag'],
- dd: [number + ' Tage', number + ' Tagen'],
- w: ['eine Woche', 'einer Woche'],
- M: ['ein Monat', 'einem Monat'],
- MM: [number + ' Monate', number + ' Monaten'],
- y: ['ein Jahr', 'einem Jahr'],
- yy: [number + ' Jahre', number + ' Jahren'],
- };
- return withoutSuffix ? format[key][0] : format[key][1];
- }
-
- var de = moment.defineLocale('de', {
- months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
- '_'
- ),
- monthsShort: 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split(
- '_'
- ),
- monthsParseExact: true,
- weekdays: 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
- '_'
- ),
- weekdaysShort: 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
- weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
- weekdaysParseExact: true,
- longDateFormat: {
- LT: 'HH:mm',
- LTS: 'HH:mm:ss',
- L: 'DD.MM.YYYY',
- LL: 'D. MMMM YYYY',
- LLL: 'D. MMMM YYYY HH:mm',
- LLLL: 'dddd, D. MMMM YYYY HH:mm',
- },
- calendar: {
- sameDay: '[heute um] LT [Uhr]',
- sameElse: 'L',
- nextDay: '[morgen um] LT [Uhr]',
- nextWeek: 'dddd [um] LT [Uhr]',
- lastDay: '[gestern um] LT [Uhr]',
- lastWeek: '[letzten] dddd [um] LT [Uhr]',
- },
- relativeTime: {
- future: 'in %s',
- past: 'vor %s',
- s: 'ein paar Sekunden',
- ss: '%d Sekunden',
- m: processRelativeTime,
- mm: '%d Minuten',
- h: processRelativeTime,
- hh: '%d Stunden',
- d: processRelativeTime,
- dd: processRelativeTime,
- w: processRelativeTime,
- ww: '%d Wochen',
- M: processRelativeTime,
- MM: processRelativeTime,
- y: processRelativeTime,
- yy: processRelativeTime,
- },
- dayOfMonthOrdinalParse: /\d{1,2}\./,
- ordinal: '%d.',
- week: {
- dow: 1, doy: 4, },
- });
-
- return de;
-
-})));
+++ /dev/null
-window.rainloopI18N={"LANGS_NAMES/LANG_EN":"English","LANGS_NAMES/LANG_EN_US":"English","LANGS_NAMES/LANG_EN_GB":"English (UK)","LANGS_NAMES/LANG_EN_UK":"English (UK)","LANGS_NAMES/LANG_EN_CA":"English (Canadian)","LANGS_NAMES/LANG_TH_TH":"ภาษาไทย","LANGS_NAMES/LANG_EL_GR":"Ελληνικά","LANGS_NAMES/LANG_NL_NL":"Nederlands","LANGS_NAMES/LANG_NB_NO":"Norsk (bokmål)","LANGS_NAMES/LANG_PL_PL":"Polski","LANGS_NAMES/LANG_RU_RU":"Русский","LANGS_NAMES/LANG_RO_RO":"Română","LANGS_NAMES/LANG_UK_UA":"Українська","LANGS_NAMES/LANG_DE_DE":"Deutsch","LANGS_NAMES/LANG_FI_FI":"Suomi","LANGS_NAMES/LANG_FR_FR":"Français (France)","LANGS_NAMES/LANG_FR_CA":"Français (Canada)","LANGS_NAMES/LANG_PT_PT":"Português (Portugal)","LANGS_NAMES/LANG_PT_BR":"Português (Brasil)","LANGS_NAMES/LANG_ES_ES":"Español (España)","LANGS_NAMES/LANG_ES_LA":"Español","LANGS_NAMES/LANG_ET_EE":"Eesti","LANGS_NAMES/LANG_FA_IR":"فارسی","LANGS_NAMES/LANG_IT_IT":"Italiano","LANGS_NAMES/LANG_LT_LT":"Lietuvių","LANGS_NAMES/LANG_LV_LV":"Latviešu","LANGS_NAMES/LANG_IS_IS":"Íslenska","LANGS_NAMES/LANG_HU_HU":"Magyar","LANGS_NAMES/LANG_TR_TR":"Türkçe","LANGS_NAMES/LANG_SK_SK":"Slovenčina","LANGS_NAMES/LANG_SV_SE":"Svenska","LANGS_NAMES/LANG_SL_SI":"Slovenščina","LANGS_NAMES/LANG_JA_JP":"日本語","LANGS_NAMES/LANG_ZH_TW":"中文(台灣)","LANGS_NAMES/LANG_ZH_CN":"中文(简体)","LANGS_NAMES/LANG_ZH_HK":"中文(香港)","LANGS_NAMES/LANG_KO_KR":"한국어","LANGS_NAMES/LANG_BG_BG":"Български","LANGS_NAMES/LANG_CS_CZ":"Čeština","LANGS_NAMES/LANG_AR_SA":"العربية","LANGS_NAMES/LANG_DA_DK":"Dansk","LANGS_NAMES/LANG_ID_ID":"Bahasa Indonesia","LANGS_NAMES/LANG_CA":"Catalan","LANGS_NAMES/LANG_CA_ES":"Catalan (Spain)","LANGS_NAMES/LANG_EU":"Basque","LANGS_NAMES_EN/LANG_EN":"English","LANGS_NAMES_EN/LANG_EN_US":"English (US)","LANGS_NAMES_EN/LANG_EN_GB":"English (UK)","LANGS_NAMES_EN/LANG_EN_UK":"English (UK)","LANGS_NAMES_EN/LANG_EN_CA":"English (Canadian)","LANGS_NAMES_EN/LANG_TH_TH":"Thai","LANGS_NAMES_EN/LANG_EL_GR":"Greek","LANGS_NAMES_EN/LANG_NL_NL":"Dutch","LANGS_NAMES_EN/LANG_NB_NO":"Norwegian (bokmal)","LANGS_NAMES_EN/LANG_PL_PL":"Polish","LANGS_NAMES_EN/LANG_RU_RU":"Russian","LANGS_NAMES_EN/LANG_RO_RO":"Romanian","LANGS_NAMES_EN/LANG_UK_UA":"Ukrainian","LANGS_NAMES_EN/LANG_DE_DE":"German","LANGS_NAMES_EN/LANG_FI_FI":"Finnish","LANGS_NAMES_EN/LANG_FR_FR":"French (France)","LANGS_NAMES_EN/LANG_FR_CA":"France (Canada)","LANGS_NAMES_EN/LANG_PT_PT":"Portuguese (Portugal)","LANGS_NAMES_EN/LANG_PT_BR":"Portuguese (Brazil)","LANGS_NAMES_EN/LANG_ES_ES":"Spanish","LANGS_NAMES_EN/LANG_ES_LA":"Spanish","LANGS_NAMES_EN/LANG_ET_EE":"Estonian","LANGS_NAMES_EN/LANG_FA_IR":"Persian","LANGS_NAMES_EN/LANG_IT_IT":"Italian","LANGS_NAMES_EN/LANG_LT_LT":"Lithuanian","LANGS_NAMES_EN/LANG_LV_LV":"Latvian","LANGS_NAMES_EN/LANG_IS_IS":"Icelandic","LANGS_NAMES_EN/LANG_HU_HU":"Hungarian","LANGS_NAMES_EN/LANG_TR_TR":"Turkish","LANGS_NAMES_EN/LANG_SK_SK":"Slovak","LANGS_NAMES_EN/LANG_SL_SI":"Slovenian","LANGS_NAMES_EN/LANG_SV_SE":"Swedish","LANGS_NAMES_EN/LANG_JA_JP":"Japanese","LANGS_NAMES_EN/LANG_ZH_TW":"Traditional Chinese (Taiwan)","LANGS_NAMES_EN/LANG_ZH_CN":"Simplified Chinese (China)","LANGS_NAMES_EN/LANG_ZH_HK":"Traditional Chinese (Hong Kong)","LANGS_NAMES_EN/LANG_KO_KR":"Korean","LANGS_NAMES_EN/LANG_BG_BG":"Bulgarian","LANGS_NAMES_EN/LANG_CS_CZ":"Czech","LANGS_NAMES_EN/LANG_AR_SA":"Arabic","LANGS_NAMES_EN/LANG_DA_DK":"Danish","LANGS_NAMES_EN/LANG_ID_ID":"Indonesian","LANGS_NAMES_EN/LANG_CA":"Catalan","LANGS_NAMES_EN/LANG_CA_ES":"Catalan (Spain)","LANGS_NAMES_EN/LANG_EU":"Basque","LOGIN/LABEL_EMAIL":"Email","LOGIN/LABEL_LOGIN":"Login","LOGIN/LABEL_PASSWORD":"Password","LOGIN/LABEL_SIGN_ME":"Remember Me","LOGIN/LABEL_VERIFICATION_CODE":"Verification Code","LOGIN/LABEL_DONT_ASK_VERIFICATION_CODE":"Don't ask for the code for 2 weeks","LOGIN/BUTTON_SIGN_IN":"Sign In","LOGIN/TITLE_SIGN_IN_GOOGLE":"Sign In using Google","LOGIN/TITLE_SIGN_IN_GMAIL":"Sign In using Gmail","LOGIN/TITLE_SIGN_IN_FACEBOOK":"Sign In using Facebook","LOGIN/TITLE_SIGN_IN_TWITTER":"Sign In using Twitter","LOGIN/LABEL_FORGOT_PASSWORD":"Forgot password","LOGIN/LABEL_REGISTRATION":"Registration","TOP_TOOLBAR/BUTTON_ADD_ACCOUNT":"Add Account","TOP_TOOLBAR/BUTTON_SETTINGS":"Settings","TOP_TOOLBAR/BUTTON_HELP":"Help","TOP_TOOLBAR/BUTTON_LOGOUT":"Logout","MOBILE/BUTTON_MOBILE_VERSION":"Mobile version","MOBILE/BUTTON_DESKTOP_VERSION":"Desktop version","SEARCH/MAIN_INPUT_PLACEHOLDER":"Search","SEARCH/TITLE_ADV":"Advanced Search","SEARCH/LABEL_ADV_FROM":"From","SEARCH/LABEL_ADV_TO":"To","SEARCH/LABEL_ADV_SUBJECT":"Subject","SEARCH/LABEL_ADV_TEXT":"Text","SEARCH/LABEL_ADV_HAS_ATTACHMENT":"Has attachment","SEARCH/LABEL_ADV_HAS_ATTACHMENTS":"Has attachments","SEARCH/LABEL_ADV_FLAGGED":"Flagged","SEARCH/LABEL_ADV_UNSEEN":"Unseen","SEARCH/LABEL_ADV_DATE":"Date","SEARCH/LABEL_ADV_DATE_ALL":"All","SEARCH/LABEL_ADV_DATE_3_DAYS":"Up to 3 days old","SEARCH/LABEL_ADV_DATE_7_DAYS":"Up to 1 week old","SEARCH/LABEL_ADV_DATE_MONTH":"Up to 1 month old","SEARCH/LABEL_ADV_DATE_3_MONTHS":"Up to 3 months old","SEARCH/LABEL_ADV_DATE_6_MONTHS":"Up to 6 months old","SEARCH/LABEL_ADV_DATE_YEAR":"Up to 1 year old","SEARCH/BUTTON_ADV_SEARCH":"Search","PREVIEW_POPUP/FULLSCREEN":"Toggle fullscreen","PREVIEW_POPUP/ZOOM":"Zoom in/out","PREVIEW_POPUP/CLOSE":"Close (Esc)","PREVIEW_POPUP/LOADING":"Loading...","PREVIEW_POPUP/GALLERY_PREV":"Previous (arrow left)","PREVIEW_POPUP/GALLERY_NEXT":"Next (arrow right)","PREVIEW_POPUP/GALLERY_COUNTER":"%curr% of %total%","PREVIEW_POPUP/IMAGE_ERROR":"<a href=\"%url%\" target=\"_blank\">The image</a> could not be loaded.","PREVIEW_POPUP/AJAX_ERROR":"<a href=\"%url%\" target=\"_blank\">The content</a> could not be loaded.","FOLDER_LIST/BUTTON_COMPOSE":"Compose","FOLDER_LIST/BUTTON_CONTACTS":"Contacts","FOLDER_LIST/BUTTON_NEW_MESSAGE":"New message","FOLDER_LIST/INBOX_NAME":"Inbox","FOLDER_LIST/SENT_NAME":"Sent","FOLDER_LIST/DRAFTS_NAME":"Drafts","FOLDER_LIST/SPAM_NAME":"Spam","FOLDER_LIST/TRASH_NAME":"Trash","FOLDER_LIST/ARCHIVE_NAME":"Archive","QUOTA/TITLE":"Quota usage","MESSAGE_LIST/BUTTON_RELOAD":"Reload Message List","MESSAGE_LIST/BUTTON_MOVE_TO":"Move To","MESSAGE_LIST/BUTTON_DELETE":"Delete","MESSAGE_LIST/BUTTON_ARCHIVE":"Archive","MESSAGE_LIST/BUTTON_SPAM":"Spam","MESSAGE_LIST/BUTTON_NOT_SPAM":"Not Spam","MESSAGE_LIST/BUTTON_EMPTY_FOLDER":"Clear Folder","MESSAGE_LIST/BUTTON_MULTY_FORWARD":"Forward as attachment(s)","MESSAGE_LIST/BUTTON_DELETE_WITHOUT_MOVE":"Delete permanently","MESSAGE_LIST/BUTTON_MORE":"More","MESSAGE_LIST/MENU_SET_SEEN":"Mark as read","MESSAGE_LIST/MENU_SET_ALL_SEEN":"Mark all as read","MESSAGE_LIST/MENU_UNSET_SEEN":"Mark as unread","MESSAGE_LIST/MENU_SET_FLAG":"Flag","MESSAGE_LIST/MENU_UNSET_FLAG":"Unflag","MESSAGE_LIST/MENU_SELECT_ALL":"All","MESSAGE_LIST/MENU_SELECT_NONE":"None","MESSAGE_LIST/MENU_SELECT_INVERT":"Invert","MESSAGE_LIST/MENU_SELECT_UNSEEN":"Unread","MESSAGE_LIST/MENU_SELECT_SEEN":"Read","MESSAGE_LIST/MENU_SELECT_FLAGGED":"Flagged","MESSAGE_LIST/MENU_SELECT_UNFLAGGED":"Unflagged","MESSAGE_LIST/EMPTY_LIST":"Empty list.","MESSAGE_LIST/EMPTY_SEARCH_LIST":"No messages matched your search.","MESSAGE_LIST/SEARCH_RESULT_FOR":"Search results for \"%SEARCH%\"","MESSAGE_LIST/BACK_TO_MESSAGE_LIST":"back to message list","MESSAGE_LIST/LIST_LOADING":"Loading","MESSAGE_LIST/EMPTY_SUBJECT_TEXT":"(No subject)","MESSAGE_LIST/PUT_MESSAGE_HERE":"Drop message here to view it in the list","MESSAGE_LIST/TODAY_AT":"today at %TIME%","MESSAGE_LIST/YESTERDAY_AT":"yesterday at %TIME%","MESSAGE_LIST/SEARCH_PLACEHOLDER":"Search","MESSAGE_LIST/NEW_MESSAGE_NOTIFICATION":"You have %COUNT% new messages!","MESSAGE_LIST/QUOTA_SIZE":"Using <strong>%SIZE% (%PROC%%)</strong> of your <strong>%LIMIT%</strong>","MESSAGE/BUTTON_EDIT":"Edit","MESSAGE/BUTTON_BACK":"Back","MESSAGE/BUTTON_CLOSE":"Close","MESSAGE/BUTTON_DELETE":"Delete","MESSAGE/BUTTON_UNSUBSCRIBE":"Unsubscribe from this list","MESSAGE/BUTTON_ARCHIVE":"Archive","MESSAGE/BUTTON_SPAM":"Spam","MESSAGE/BUTTON_NOT_SPAM":"Not Spam","MESSAGE/BUTTON_MOVE_TO":"Move To","MESSAGE/BUTTON_MORE":"More","MESSAGE/BUTTON_REPLY":"Reply","MESSAGE/BUTTON_REPLY_ALL":"Reply All","MESSAGE/BUTTON_FORWARD":"Forward","MESSAGE/BUTTON_FORWARD_AS_ATTACHMENT":"Forward as attachment","MESSAGE/BUTTON_EDIT_AS_NEW":"Edit as New","MESSAGE/BUTTON_SHOW_IMAGES":"Display external images","MESSAGE/BUTTON_NOTIFY_READ_RECEIPT":"The sender has asked to be notified when you read this message.","MESSAGE/BUTTON_IN_NEW_WINDOW":"View in separate window","MESSAGE/BUTTON_THREAD_LIST":"Thread list","MESSAGE/BUTTON_THREAD_PREV":"Previous","MESSAGE/BUTTON_THREAD_NEXT":"Next","MESSAGE/BUTTON_THREAD_MORE":"More messages","MESSAGE/MENU_HEADERS":"Show message headers","MESSAGE/MENU_VIEW_ORIGINAL":"Show Source","MESSAGE/MENU_DOWNLOAD_ORIGINAL":"Download as .eml file","MESSAGE/MENU_FILTER_SIMILAR":"Filter messages like this","MESSAGE/MENU_PRINT":"Print","MESSAGE/EMPTY_SUBJECT_TEXT":"(No subject)","MESSAGE/LABEL_SUBJECT":"Subject","MESSAGE/LABEL_DATE":"Date","MESSAGE/LABEL_FROM":"From","MESSAGE/LABEL_FROM_SHORT":"from","MESSAGE/LABEL_TO":"To","MESSAGE/LABEL_TO_SHORT":"to","MESSAGE/LABEL_CC":"CC","MESSAGE/LABEL_BCC":"BCC","MESSAGE/LABEL_REPLY_TO":"Reply-To","MESSAGE/PRINT_LABEL_FROM":"From","MESSAGE/PRINT_LABEL_TO":"To","MESSAGE/PRINT_LABEL_CC":"CC","MESSAGE/PRINT_LABEL_BCC":"BCC","MESSAGE/PRINT_LABEL_REPLY_TO":"Reply-To","MESSAGE/PRINT_LABEL_DATE":"Date","MESSAGE/PRINT_LABEL_SUBJECT":"Subject","MESSAGE/PRINT_LABEL_ATTACHMENTS":"Attachments","MESSAGE/MESSAGE_LOADING":"Loading","MESSAGE/MESSAGE_VIEW_DESC":"Select any message in the list to view it here.","MESSAGE/MESSAGE_VIEW_MOVE_DESC":"Click folder name in the left panel to select the destination.","MESSAGE/PGP_PASSWORD_INPUT_PLACEHOLDER":"Password","MESSAGE/PGP_SIGNED_MESSAGE_DESC":"OpenPGP signed message (click to verify)","MESSAGE/PGP_ENCRYPTED_MESSAGE_DESC":"OpenPGP encrypted message (click to decrypt)","MESSAGE/LINK_DOWNLOAD_AS_ZIP":"Download as zip","MESSAGE/LINK_SAVE_TO_OWNCLOUD":"Save to ownCloud","MESSAGE/LINK_SAVE_TO_CLOUD":"Save to Cloud","MESSAGE/LINK_SAVE_TO_DROPBOX":"Save to Dropbox","READ_RECEIPT/SUBJECT":"Return Receipt (displayed) - %SUBJECT%","READ_RECEIPT/BODY":"This is a Return Receipt for the mail that you sent to %READ-RECEIPT%.\n\nNote: \"This Return Receipt only acknowledges that the message was displayed on the recipient's computer.\"\nThere is no guarantee that the recipient has read or understood the message contents.","SUGGESTIONS/SEARCHING_DESC":"Searching...","CONTACTS/LEGEND_CONTACTS":"Contacts","CONTACTS/SEARCH_INPUT_PLACEHOLDER":"Search","CONTACTS/BUTTON_ADD_CONTACT":"Add Contact","CONTACTS/BUTTON_CREATE_CONTACT":"Create","CONTACTS/BUTTON_UPDATE_CONTACT":"Update","CONTACTS/BUTTON_IMPORT":"Import (csv, vcf, vCard)","CONTACTS/BUTTON_EXPORT_VCARD":"Export (vcf, vCard)","CONTACTS/BUTTON_EXPORT_CSV":"Export (csv)","CONTACTS/ERROR_IMPORT_FILE":"Import error (invalid file format)","CONTACTS/LIST_LOADING":"Loading","CONTACTS/EMPTY_LIST":"No contacts here","CONTACTS/EMPTY_SEARCH":"No contacts found","CONTACTS/CLEAR_SEARCH":"Clear search","CONTACTS/CONTACT_VIEW_DESC":"Select contact in the list to view it here.","CONTACTS/LABEL_DISPLAY_NAME":"Display name","CONTACTS/LABEL_EMAIL":"Email","CONTACTS/LABEL_PHONE":"Phone","CONTACTS/LABEL_WEB":"Web","CONTACTS/LABEL_BIRTHDAY":"Birthday","CONTACTS/LINK_ADD_EMAIL":"Add an email address","CONTACTS/LINK_ADD_PHONE":"Add a phone","CONTACTS/LINK_BIRTHDAY":"Birthday","CONTACTS/PLACEHOLDER_ENTER_DISPLAY_NAME":"Enter display name","CONTACTS/PLACEHOLDER_ENTER_LAST_NAME":"Enter last name","CONTACTS/PLACEHOLDER_ENTER_FIRST_NAME":"Enter first name","CONTACTS/PLACEHOLDER_ENTER_NICK_NAME":"Enter nickname","CONTACTS/LABEL_READ_ONLY":"Read only","CONTACTS/LABEL_SHARE":"Share","CONTACTS/ADD_MENU_LABEL":"Add","CONTACTS/ADD_MENU_NICKNAME":"Nickname","CONTACTS/ADD_MENU_NOTES":"Notes","CONTACTS/ADD_MENU_EMAIL":"Email","CONTACTS/ADD_MENU_PHONE":"Phone","CONTACTS/ADD_MENU_URL":"URL","CONTACTS/ADD_MENU_ADDRESS":"Address","CONTACTS/ADD_MENU_BIRTHDAY":"Birthday","CONTACTS/ADD_MENU_TAGS":"Tags","CONTACTS/BUTTON_SHARE_NONE":"None","CONTACTS/BUTTON_SHARE_ALL":"Everyone","CONTACTS/BUTTON_SYNC":"Synchronization (CardDAV)","COMPOSE/TITLE_FROM":"From","COMPOSE/TITLE_TO":"To","COMPOSE/TITLE_CC":"CC","COMPOSE/TITLE_BCC":"BCC","COMPOSE/TITLE_REPLY_TO":"Reply-To","COMPOSE/TITLE_SUBJECT":"Subject","COMPOSE/LINK_SHOW_INPUTS":"show all fields","COMPOSE/BUTTON_SEND":"Send","COMPOSE/BUTTON_SAVE":"Save","COMPOSE/BUTTON_DELETE":"Delete","COMPOSE/BUTTON_CANCEL":"Cancel","COMPOSE/BUTTON_MINIMIZE":"Minimize","COMPOSE/SAVED_TIME":"Saved at %TIME%","COMPOSE/SAVED_ERROR_ON_SEND":"Message was sent but not saved to sent items folder","COMPOSE/DISCARD_UNSAVED_DATA":"Discard unsaved data?","COMPOSE/ATTACH_FILES":"Attach files","COMPOSE/ATTACH_DROP_FILES_DESC":"Drop files here","COMPOSE/ATTACH_ITEM_CANCEL":"Cancel","COMPOSE/DROPBOX":"Dropbox","COMPOSE/GOOGLE_DRIVE":"Google Drive","COMPOSE/REPLY_MESSAGE_TITLE":"%DATETIME%, %EMAIL% wrote","COMPOSE/FORWARD_MESSAGE_TOP_TITLE":"-------- Forwarded message -------","COMPOSE/FORWARD_MESSAGE_TOP_FROM":"From","COMPOSE/FORWARD_MESSAGE_TOP_TO":"To","COMPOSE/FORWARD_MESSAGE_TOP_CC":"CC","COMPOSE/FORWARD_MESSAGE_TOP_SENT":"Sent","COMPOSE/FORWARD_MESSAGE_TOP_SUBJECT":"Subject","COMPOSE/EMPTY_TO_ERROR_DESC":"Please specify at least one recipient","COMPOSE/NO_ATTACHMENTS_HERE_DESC":"No attachments here.","COMPOSE/ATTACHMENTS_ERROR_DESC":"Warning! Not all attachments have been uploaded.","COMPOSE/ATTACHMENTS_UPLOAD_ERROR_DESC":"Not all attachments have been uploaded yet.","COMPOSE/BUTTON_REQUEST_READ_RECEIPT":"Request a read receipt","COMPOSE/BUTTON_MARK_AS_IMPORTANT":"Mark as important","COMPOSE/BUTTON_OPEN_PGP":"OpenPGP (Plain Text Only)","COMPOSE/BUTTON_REQUEST_DSN":"Request a delivery receipt","POPUPS_WELCOME_PAGE/BUTTON_CLOSE":"Close","POPUPS_ASK/BUTTON_YES":"Yes","POPUPS_ASK/BUTTON_NO":"No","POPUPS_ASK/DESC_WANT_CLOSE_THIS_WINDOW":"Are you sure you want to close this window?","POPUPS_ASK/DESC_WANT_DELETE_MESSAGES":"Are you sure you want to delete the message(s)?","POPUPS_LANGUAGES/TITLE_LANGUAGES":"Choose your language","POPUPS_ADD_ACCOUNT/TITLE_ADD_ACCOUNT":"Add Account?","POPUPS_ADD_ACCOUNT/BUTTON_ADD_ACCOUNT":"Add","POPUPS_ADD_ACCOUNT/TITLE_UPDATE_ACCOUNT":"Update Account?","POPUPS_ADD_ACCOUNT/BUTTON_UPDATE_ACCOUNT":"Update","POPUPS_IDENTITY/TITLE_ADD_IDENTITY":"Add Identity?","POPUPS_IDENTITY/TITLE_UPDATE_IDENTITY":"Update Identity?","POPUPS_IDENTITY/BUTTON_ADD_IDENTITY":"Add","POPUPS_IDENTITY/BUTTON_UPDATE_IDENTITY":"Update","POPUPS_IDENTITY/LABEL_EMAIL":"Email","POPUPS_IDENTITY/LABEL_NAME":"Name","POPUPS_IDENTITY/LABEL_REPLY_TO":"Reply-To","POPUPS_IDENTITY/LABEL_SIGNATURE":"Signature","POPUPS_IDENTITY/LABEL_CC":"Cc","POPUPS_IDENTITY/LABEL_BCC":"Bcc","POPUPS_IDENTITY/LABEL_SIGNATURE_INSERT_BEFORE":"Insert this signature before quoted text in replies","POPUPS_CREATE_FOLDER/TITLE_CREATE_FOLDER":"Create a folder?","POPUPS_CREATE_FOLDER/LABEL_NAME":"Folder name","POPUPS_CREATE_FOLDER/LABEL_PARENT":"Parent folder","POPUPS_CREATE_FOLDER/BUTTON_CREATE":"Create","POPUPS_CREATE_FOLDER/BUTTON_CANCEL":"Cancel","POPUPS_CREATE_FOLDER/BUTTON_CLOSE":"Close","POPUPS_CREATE_FOLDER/TITLE_CREATING_PROCESS":"Creating a folder","POPUPS_CLEAR_FOLDER/TITLE_CLEAR_FOLDER":"Purge all messages from the folder?","POPUPS_CLEAR_FOLDER/BUTTON_CLEAR":"Clear","POPUPS_CLEAR_FOLDER/BUTTON_CANCEL":"Cancel","POPUPS_CLEAR_FOLDER/BUTTON_CLOSE":"Close","POPUPS_CLEAR_FOLDER/DANGER_DESC_WARNING":"Warning!","POPUPS_CLEAR_FOLDER/DANGER_DESC_HTML_1":"This action will result in removing all mails from <strong>%FOLDER%</strong> folder completely.","POPUPS_CLEAR_FOLDER/DANGER_DESC_HTML_2":"Once started, the process cannot be aborted or cancelled.","POPUPS_CLEAR_FOLDER/TITLE_CLEARING_PROCESS":"Purging the folder...","POPUPS_IMPORT_OPEN_PGP_KEY/TITLE_IMPORT_OPEN_PGP_KEY":"Import OpenPGP key","POPUPS_IMPORT_OPEN_PGP_KEY/BUTTON_IMPORT_OPEN_PGP_KEY":"Import","POPUPS_VIEW_OPEN_PGP_KEY/TITLE_VIEW_OPEN_PGP_KEY":"View OpenPGP key","POPUPS_VIEW_OPEN_PGP_KEY/BUTTON_SELECT":"Select","POPUPS_VIEW_OPEN_PGP_KEY/BUTTON_CLOSE":"Close","POPUPS_GENERATE_OPEN_PGP_KEYS/TITLE_GENERATE_OPEN_PGP_KEYS":"Generate OpenPGP keys","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_EMAIL":"Email","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_NAME":"Name","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_PASSWORD":"Password","POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_KEY_BIT_LENGTH":"Key length","POPUPS_GENERATE_OPEN_PGP_KEYS/BUTTON_GENERATE_OPEN_PGP_KEYS":"Generate","POPUPS_COMPOSE_OPEN_PGP/TITLE_COMPOSE_OPEN_PGP":"OpenPGP Sign/Encrypt","POPUPS_COMPOSE_OPEN_PGP/LABEL_SIGN":"Sign","POPUPS_COMPOSE_OPEN_PGP/LABEL_ENCRYPT":"Encrypt","POPUPS_COMPOSE_OPEN_PGP/LABEL_PASSWORD":"Password","POPUPS_COMPOSE_OPEN_PGP/BUTTON_SIGN":"Sign","POPUPS_COMPOSE_OPEN_PGP/BUTTON_ENCRYPT":"Encrypt","POPUPS_COMPOSE_OPEN_PGP/BUTTON_SIGN_AND_ENCRYPT":"Sign and encrypt","POPUPS_MESSAGE_OPEN_PGP/TITLE_MESSAGE_OPEN_PGP":"OpenPGP Decrypt","POPUPS_MESSAGE_OPEN_PGP/LABEL_KEY":"Private Key","POPUPS_MESSAGE_OPEN_PGP/LABEL_PASSWORD":"Password","POPUPS_MESSAGE_OPEN_PGP/BUTTON_DECRYPT":"Decrypt","POPUPS_TWO_FACTOR_TEST/TITLE_TEST_CODE":"2-Step verification test","POPUPS_TWO_FACTOR_TEST/LABEL_CODE":"Code","POPUPS_TWO_FACTOR_TEST/BUTTON_TEST":"Test","POPUPS_FILTER/TITLE_CREATE_FILTER":"Create a filter?","POPUPS_FILTER/TITLE_EDIT_FILTER":"Update filter?","POPUPS_FILTER/FILTER_NAME":"Name","POPUPS_FILTER/LEGEND_CONDITIONS":"Conditions","POPUPS_FILTER/LEGEND_ACTIONS":"Actions","POPUPS_FILTER/BUTTON_DONE":"Done","POPUPS_FILTER/BUTTON_ADD_CONDITION":"Add a Condition","POPUPS_FILTER/SELECT_ACTION_NONE":"None","POPUPS_FILTER/SELECT_ACTION_MOVE_TO":"Move to","POPUPS_FILTER/SELECT_ACTION_FORWARD_TO":"Forward to","POPUPS_FILTER/SELECT_ACTION_REJECT":"Reject","POPUPS_FILTER/SELECT_ACTION_VACATION_MESSAGE":"Vacation message","POPUPS_FILTER/SELECT_ACTION_DISCARD":"Discard","POPUPS_FILTER/SELECT_FIELD_FROM":"From","POPUPS_FILTER/SELECT_FIELD_RECIPIENTS":"Recipients (To or CC)","POPUPS_FILTER/SELECT_FIELD_SUBJECT":"Subject","POPUPS_FILTER/SELECT_FIELD_HEADER":"Header","POPUPS_FILTER/SELECT_FIELD_SIZE":"Size","POPUPS_FILTER/SELECT_TYPE_CONTAINS":"Contains","POPUPS_FILTER/SELECT_TYPE_NOT_CONTAINS":"Not Contains","POPUPS_FILTER/SELECT_TYPE_MATCHES":"Matches (* and ? supported)","POPUPS_FILTER/SELECT_TYPE_NOT_MATCHES":"Not Matches (* and ? supported)","POPUPS_FILTER/SELECT_TYPE_REGEXP":"Regexp","POPUPS_FILTER/SELECT_TYPE_NOT_REGEXP":"Not Regexp","POPUPS_FILTER/SELECT_TYPE_EQUAL_TO":"Equal To","POPUPS_FILTER/SELECT_TYPE_NOT_EQUAL_TO":"Not Equal To","POPUPS_FILTER/SELECT_TYPE_OVER":"Over","POPUPS_FILTER/SELECT_TYPE_UNDER":"Under","POPUPS_FILTER/SELECT_MATCH_ANY":"Matching ANY of the following rules","POPUPS_FILTER/SELECT_MATCH_ALL":"Matching ALL of the following rules","POPUPS_FILTER/MARK_AS_READ_LABEL":"Mark as read","POPUPS_FILTER/REPLY_INTERVAL_LABEL":"Reply interval (days)","POPUPS_FILTER/KEEP_LABEL":"Keep","POPUPS_FILTER/STOP_LABEL":"Don't stop processing rules","POPUPS_FILTER/EMAIL_LABEL":"Email","POPUPS_FILTER/VACATION_SUBJECT_LABEL":"Subject (optional)","POPUPS_FILTER/VACATION_MESSAGE_LABEL":"Message","POPUPS_FILTER/VACATION_RECIPIENTS_LABEL":"Recipients (comma separated)","POPUPS_FILTER/REJECT_MESSAGE_LABEL":"Reject message","POPUPS_FILTER/ALL_INCOMING_MESSAGES_DESC":"All incoming messages","POPUPS_SYSTEM_FOLDERS/TITLE_SYSTEM_FOLDERS":"Select system folders","POPUPS_SYSTEM_FOLDERS/SELECT_CHOOSE_ONE":"Choose one","POPUPS_SYSTEM_FOLDERS/SELECT_UNUSE_NAME":"Do not use","POPUPS_SYSTEM_FOLDERS/LABEL_SENT":"Sent","POPUPS_SYSTEM_FOLDERS/LABEL_DRAFTS":"Drafts","POPUPS_SYSTEM_FOLDERS/LABEL_SPAM":"Spam","POPUPS_SYSTEM_FOLDERS/LABEL_TRASH":"Trash","POPUPS_SYSTEM_FOLDERS/LABEL_ARCHIVE":"Archive","POPUPS_SYSTEM_FOLDERS/BUTTON_CANCEL":"Cancel","POPUPS_SYSTEM_FOLDERS/BUTTON_CLOSE":"Close","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_SENT":"You haven't selected \"Sent\" system folder messages are put to after sending.\nIf you don't want to save sent message, please select \"Do not use\" option.","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_DRAFTS":"You haven't selected \"Drafts\" system folder messages are saved to while composing.","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_SPAM":"You haven't selected \"Spam\" system folder spamed messages are placed to.\nIf you wish to remove messages permanently, please select \"Do not use\" option.","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_TRASH":"You haven't selected \"Trash\" system folder deleted messages are placed to.\nIf you wish to remove messages permanently, please select \"Do not use\" option.","POPUPS_SYSTEM_FOLDERS/NOTIFICATION_ARCHIVE":"You haven't selected \"Archive\" system folder achived messages are placed to.","POPUPS_TWO_FACTOR_CFG/LEGEND_TWO_FACTOR_AUTH":"2-Step Verification (TOTP)","POPUPS_TWO_FACTOR_CFG/LABEL_ENABLE_TWO_FACTOR":"Enable 2-Step verification","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_USER":"User","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_STATUS":"Status","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_SECRET":"Secret","POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_BACKUP_CODES":"Backup codes","POPUPS_TWO_FACTOR_CFG/BUTTON_CREATE":"Create a secret","POPUPS_TWO_FACTOR_CFG/BUTTON_ACTIVATE":"Activate","POPUPS_TWO_FACTOR_CFG/BUTTON_CLEAR":"Clear","POPUPS_TWO_FACTOR_CFG/BUTTON_LOGOUT":"Logout","POPUPS_TWO_FACTOR_CFG/BUTTON_DONE":"Done","POPUPS_TWO_FACTOR_CFG/BUTTON_TEST":"Test","POPUPS_TWO_FACTOR_CFG/LINK_TEST":"test","POPUPS_TWO_FACTOR_CFG/BUTTON_SHOW_SECRET":"Show Secret","POPUPS_TWO_FACTOR_CFG/BUTTON_HIDE_SECRET":"Hide Secret","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_REQUIRE_DESC":"Your account requires 2-Step verification configuration.","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_CONFIGURED_DESC":"Configured","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_NOT_CONFIGURED_DESC":"Not configured","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_DESC":"Import this info into your Google Authenticator client (or other TOTP client) using the provided QR code below or by entering the code manually.","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_BACKUP_CODES_DESC":"If you can't receive codes via Google Authenticator (or other TOTP client), you can use backup codes to sign in. After you’ve used a backup code to sign in, it will become inactive.","POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_TEST_BEFORE_DESC":"You can't change this setting before test.","TITLES/LOADING":"Loading","TITLES/LOGIN":"Login","TITLES/MAILBOX":"MailBox","TITLES/SETTINGS":"Settings","TITLES/COMPOSE":"Compose","UPLOAD/ERROR_FILE_IS_TOO_BIG":"File is too big","UPLOAD/ERROR_FILE_PARTIALLY_UPLOADED":"File was partially uploaded due to unknown error","UPLOAD/ERROR_NO_FILE_UPLOADED":"No file uploaded","UPLOAD/ERROR_MISSING_TEMP_FOLDER":"The temporary file is missing","UPLOAD/ERROR_ON_SAVING_FILE":"An unknown file upload error occurred","UPLOAD/ERROR_FILE_TYPE":"Invalid file type","UPLOAD/ERROR_UNKNOWN":"An unknown file upload error occurred","EDITOR/TEXT_SWITCHER_PLAINT_TEXT":"HTML <-> TEXT","EDITOR/TEXT_SWITCHER_RICH_FORMATTING":"Rich formatting","EDITOR/TEXT_SWITCHER_CONFIRM":"Text formatting and images will be lost. Are you sure you want to continue?","SETTINGS_LABELS/LABEL_PERSONAL_NAME":"Personal","SETTINGS_LABELS/LABEL_GENERAL_NAME":"General","SETTINGS_LABELS/LABEL_CONTACTS_NAME":"Contacts","SETTINGS_LABELS/LABEL_FOLDERS_NAME":"Folders","SETTINGS_LABELS/LABEL_ACCOUNTS_NAME":"Accounts","SETTINGS_LABELS/LABEL_IDENTITY_NAME":"Identity","SETTINGS_LABELS/LABEL_IDENTITIES_NAME":"Identities","SETTINGS_LABELS/LABEL_FILTERS_NAME":"Filters","SETTINGS_LABELS/LABEL_TEMPLATES_NAME":"Templates","SETTINGS_LABELS/LABEL_SECURITY_NAME":"Security","SETTINGS_LABELS/LABEL_SOCIAL_NAME":"Social","SETTINGS_LABELS/LABEL_THEMES_NAME":"Themes","SETTINGS_LABELS/LABEL_CHANGE_PASSWORD_NAME":"Password","SETTINGS_LABELS/LABEL_OPEN_PGP_NAME":"OpenPGP","SETTINGS_LABELS/BUTTON_BACK":"Back","SETTINGS_FILTERS/LEGEND_FILTERS":"Filters","SETTINGS_FILTERS/BUTTON_SAVE":"Save","SETTINGS_FILTERS/BUTTON_ADD_FILTER":"Add a Filter","SETTINGS_FILTERS/BUTTON_DELETE":"Delete","SETTINGS_FILTERS/BUTTON_RAW_SCRIPT":"Use Custom User Script","SETTINGS_FILTERS/SUBNAME_NONE":"None","SETTINGS_FILTERS/SUBNAME_MOVE_TO":"Move to \"%FOLDER%\"","SETTINGS_FILTERS/SUBNAME_FORWARD_TO":"Forward to \"%EMAIL%\"","SETTINGS_FILTERS/SUBNAME_REJECT":"Reject","SETTINGS_FILTERS/SUBNAME_VACATION_MESSAGE":"Vacation message","SETTINGS_FILTERS/SUBNAME_DISCARD":"Discard","SETTINGS_FILTERS/CAPABILITY_LABEL":"Capability","SETTINGS_FILTERS/LOADING_PROCESS":"Updating filter list","SETTINGS_FILTERS/DELETING_ASK":"Are you sure?","SETTINGS_FILTERS/CHACHES_NEED_TO_BE_SAVED_DESC":"These changes need to be saved to the server.","SETTINGS_IDENTITY/LEGEND_IDENTITY":"Identity","SETTINGS_IDENTITY/LABEL_DISPLAY_NAME":"Name","SETTINGS_IDENTITY/LABEL_REPLY_TO":"Reply-To","SETTINGS_IDENTITY/LABEL_SIGNATURE":"Signature","SETTINGS_IDENTITY/LABEL_ADD_SIGNATURE_TO_ALL":"Add your signature to all the outgoing messages","SETTINGS_SECURITY/LEGEND_SECURITY":"Security","SETTINGS_SECURITY/LABEL_CONFIGURE_TWO_FACTOR":"Configure 2-Step verification","SETTINGS_SECURITY/LABEL_AUTOLOGOUT":"Auto Logout","SETTINGS_SECURITY/AUTOLOGIN_NEVER_OPTION_NAME":"Never","SETTINGS_SECURITY/AUTOLOGIN_MINUTES_OPTION_NAME":"%MINUTES% minute(s)","SETTINGS_SECURITY/AUTOLOGIN_HOURS_OPTION_NAME":"%HOURS% hour(s)","SETTINGS_GENERAL/LEGEND_GENERAL":"General","SETTINGS_GENERAL/LABEL_LANGUAGE":"Language","SETTINGS_GENERAL/LABEL_IDENTITY":"Identity","SETTINGS_GENERAL/LABEL_LAYOUT":"Layout","SETTINGS_GENERAL/LABEL_LAYOUT_NO_SPLIT":"No Split","SETTINGS_GENERAL/LABEL_LAYOUT_VERTICAL_SPLIT":"Vertical Split","SETTINGS_GENERAL/LABEL_LAYOUT_HORIZONTAL_SPLIT":"Horizontal Split","SETTINGS_GENERAL/LABEL_EDITOR":"Default text editor","SETTINGS_GENERAL/LABEL_EDITOR_HTML":"Html","SETTINGS_GENERAL/LABEL_EDITOR_PLAIN":"Plain","SETTINGS_GENERAL/LABEL_EDITOR_HTML_FORCED":"Html (forced)","SETTINGS_GENERAL/LABEL_EDITOR_PLAIN_FORCED":"Plain (forced)","SETTINGS_GENERAL/LABEL_ANIMATION":"Interface animation","SETTINGS_GENERAL/LABEL_ANIMATION_FULL":"Full","SETTINGS_GENERAL/LABEL_ANIMATION_NORMAL":"Normal","SETTINGS_GENERAL/LABEL_ANIMATION_NONE":"None","SETTINGS_GENERAL/LABEL_VIEW_OPTIONS":"View options","SETTINGS_GENERAL/LABEL_USE_PREVIEW_PANE":"Use preview pane","SETTINGS_GENERAL/LABEL_USE_CHECKBOXES_IN_LIST":"Display checkboxes in list","SETTINGS_GENERAL/LABEL_USE_THREADS":"Use threads","SETTINGS_GENERAL/LABEL_REPLY_SAME_FOLDER":"Place replies in the folder of the message being replied to","SETTINGS_GENERAL/LABEL_SHOW_IMAGES":"Always display external images in message body","SETTINGS_GENERAL/LABEL_SHOW_ANIMATION":"Show animation","SETTINGS_GENERAL/LABEL_MESSAGE_PER_PAGE":"Messages on page","SETTINGS_GENERAL/LABEL_NOTIFICATIONS":"Notifications","SETTINGS_GENERAL/LABEL_SOUND_NOTIFICATION":"Sound notification","SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC":"Show new messages notification popups","SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC_DENIED":"(Blocked by the browser)","SETTINGS_CONTACTS/LEGEND_CONTACTS":"Contacts","SETTINGS_CONTACTS/LABEL_CONTACTS_AUTOSAVE":"Automatically add recipients to your address book","SETTINGS_CONTACTS/LEGEND_CONTACTS_SYNC":"Remote Synchronization (CardDAV)","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_ENABLE":"Enable remote synchronization","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_SERVER":"Server","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_AB_URL":"Addressbook URL","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_USER":"User","SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_PASSWORD":"Password","SETTINGS_THEMES/LEGEND_THEMES":"Themes","SETTINGS_THEMES/LEGEND_THEMES_CUSTOM":"Custom Theme Configuration","SETTINGS_THEMES/LABEL_CUSTOM_TYPE":"Type","SETTINGS_THEMES/LABEL_CUSTOM_TYPE_LIGHT":"Light","SETTINGS_THEMES/LABEL_CUSTOM_TYPE_DARK":"Dark","SETTINGS_THEMES/LABEL_CUSTOM_BACKGROUND_IMAGE":"Background","SETTINGS_THEMES/BUTTON_UPLOAD_BACKGROUND_IMAGE":"Upload background image (JPG, PNG)","SETTINGS_THEMES/ERROR_FILE_IS_TOO_BIG":"File is too big","SETTINGS_THEMES/ERROR_FILE_TYPE_ERROR":"Invalid file type (JPG and PNG only)","SETTINGS_THEMES/ERROR_UNKNOWN":"An unknown file upload error occurred","SETTINGS_SOCIAL/LEGEND_GOOGLE":"Google","SETTINGS_SOCIAL/BUTTON_GOOGLE_CONNECT":"Connect Google","SETTINGS_SOCIAL/BUTTON_GOOGLE_DISCONNECT":"Disconnect Google","SETTINGS_SOCIAL/MAIN_GOOGLE_DESC":"After enabling login via Google, you can log into this account using Google button on the login screen.","SETTINGS_SOCIAL/LEGEND_FACEBOOK":"Facebook","SETTINGS_SOCIAL/BUTTON_FACEBOOK_CONNECT":"Connect Facebook","SETTINGS_SOCIAL/BUTTON_FACEBOOK_DISCONNECT":"Disconnect Facebook","SETTINGS_SOCIAL/MAIN_FACEBOOK_DESC":"After enabling login via Facebook, you can log into this account using Facebook button on the login screen.","SETTINGS_SOCIAL/LEGEND_TWITTER":"Twitter","SETTINGS_SOCIAL/BUTTON_TWITTER_CONNECT":"Connect Twitter","SETTINGS_SOCIAL/BUTTON_TWITTER_DISCONNECT":"Disconnect Twitter","SETTINGS_SOCIAL/MAIN_TWITTER_DESC":"After enabling login via Twitter, you can log into this account using Twitter button on the login screen.","SETTINGS_FOLDERS/LEGEND_FOLDERS":"Folder List","SETTINGS_FOLDERS/BUTTON_CREATE":"Create Folder","SETTINGS_FOLDERS/BUTTON_SYSTEM":"System Folders","SETTINGS_FOLDERS/BUTTON_DELETE":"Delete","SETTINGS_FOLDERS/BUTTON_SUBSCRIBE":"Subscribe","SETTINGS_FOLDERS/BUTTON_UNSUBSCRIBE":"Unsubscribe","SETTINGS_FOLDERS/LOADING_PROCESS":"Updating folder list","SETTINGS_FOLDERS/CREATING_PROCESS":"Creating a folder","SETTINGS_FOLDERS/DELETING_PROCESS":"Deleting a folder","SETTINGS_FOLDERS/RENAMING_PROCESS":"Renaming a folder","SETTINGS_FOLDERS/DELETING_ASK":"Are you sure?","SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_1":"You have too many folders!","SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_2":"We have shown only a part of them, to avoid performance problems.","SETTINGS_FOLDERS/HELP_DELETE_FOLDER":"Delete folder","SETTINGS_FOLDERS/HELP_SHOW_HIDE_FOLDER":"Show/hide folder","SETTINGS_FOLDERS/HELP_CHECK_FOR_NEW_MESSAGES":"Check/don't check for new messages","SETTINGS_ACCOUNTS/LEGEND_ACCOUNTS":"Accounts","SETTINGS_ACCOUNTS/LEGEND_IDENTITIES":"Identities","SETTINGS_ACCOUNTS/LEGEND_ACCOUNTS_AND_IDENTITIES":"Accounts and Identities","SETTINGS_ACCOUNTS/BUTTON_ADD_ACCOUNT":"Add an Account","SETTINGS_ACCOUNTS/BUTTON_ADD_IDENTITY":"Add an Identity","SETTINGS_ACCOUNTS/BUTTON_DELETE":"Delete","SETTINGS_ACCOUNTS/LOADING_PROCESS":"Updating...","SETTINGS_ACCOUNTS/DELETING_ASK":"Are you sure?","SETTINGS_ACCOUNTS/DEFAULT_IDENTITY_LABEL":"default","SETTINGS_IDENTITIES/LEGEND_IDENTITY":"Identity","SETTINGS_IDENTITIES/LEGEND_IDENTITIES":"Additional Identities","SETTINGS_IDENTITIES/LABEL_DEFAULT":"Default","SETTINGS_IDENTITIES/LABEL_DISPLAY_NAME":"Name","SETTINGS_IDENTITIES/LABEL_REPLY_TO":"Reply-To","SETTINGS_IDENTITIES/LABEL_SIGNATURE":"Signature","SETTINGS_IDENTITIES/LABEL_ADD_SIGNATURE_TO_ALL":"Add your signature to all the outgoing messages","SETTINGS_IDENTITIES/BUTTON_ADD_IDENTITY":"Add Identity","SETTINGS_IDENTITIES/BUTTON_DELETE":"Delete","SETTINGS_IDENTITIES/LOADING_PROCESS":"Updating identity list","SETTINGS_IDENTITIES/DELETING_ASK":"Are you sure?","SETTINGS_CHANGE_PASSWORD/LEGEND_CHANGE_PASSWORD":"Change Password","SETTINGS_CHANGE_PASSWORD/LABEL_CURRENT_PASSWORD":"Current password","SETTINGS_CHANGE_PASSWORD/LABEL_NEW_PASSWORD":"New password","SETTINGS_CHANGE_PASSWORD/LABEL_REPEAT_PASSWORD":"Confirm New Password","SETTINGS_CHANGE_PASSWORD/BUTTON_UPDATE_PASSWORD":"Set New Password","SETTINGS_CHANGE_PASSWORD/ERROR_PASSWORD_MISMATCH":"Passwords do not match, please try again","SETTINGS_OPEN_PGP/LEGEND_OPEN_PGP":"OpenPGP","SETTINGS_OPEN_PGP/BUTTON_ADD_OPEN_PGP_KEY":"Import OpenPGP Key","SETTINGS_OPEN_PGP/BUTTON_GENERATE_OPEN_PGP_KEYS":"Generate OpenPGP Keys","SETTINGS_OPEN_PGP/TITLE_PRIVATE":"Private","SETTINGS_OPEN_PGP/TITLE_PUBLIC":"Public","SETTINGS_OPEN_PGP/DELETING_ASK":"Are you sure?","SETTINGS_OPEN_PGP/GENERATE_ONLY_HTTPS":"HTTPS only","SETTINGS_OPEN_PGP/LABEL_ALLOW_DRAFT_AUTOSAVE":"Automatically save draft","SHORTCUTS_HELP/LEGEND_SHORTCUTS_HELP":"Keyboard shortcuts help","SHORTCUTS_HELP/TAB_MAILBOX":"Mailbox","SHORTCUTS_HELP/TAB_MESSAGE_LIST":"Message list","SHORTCUTS_HELP/TAB_MESSAGE_VIEW":"Message view","SHORTCUTS_HELP/TAB_COMPOSE":"Compose","SHORTCUTS_HELP/LABEL_OPEN_USER_DROPDOWN":"Open user dropdown","SHORTCUTS_HELP/LABEL_REPLY":"Reply","SHORTCUTS_HELP/LABEL_REPLY_ALL":"Reply All","SHORTCUTS_HELP/LABEL_FORWARD":"Forward","SHORTCUTS_HELP/LABEL_FORWARD_MULTIPLY":"Forward as attachment(s)","SHORTCUTS_HELP/LABEL_HELP":"Help","SHORTCUTS_HELP/LABEL_CHECK_ALL":"Select all messages","SHORTCUTS_HELP/LABEL_ARCHIVE":"Archive","SHORTCUTS_HELP/LABEL_DELETE":"Delete","SHORTCUTS_HELP/LABEL_OPEN_THREAD":"Open selected thread","SHORTCUTS_HELP/LABEL_MOVE":"Move","SHORTCUTS_HELP/LABEL_READ":"Read selected messages","SHORTCUTS_HELP/LABEL_UNREAD":"Unread selected messages","SHORTCUTS_HELP/LABEL_IMPORTANT":"Important, flag selected messages","SHORTCUTS_HELP/LABEL_SEARCH":"Search","SHORTCUTS_HELP/LABEL_CANCEL_SEARCH":"Cancel search","SHORTCUTS_HELP/LABEL_FULLSCREEN_ENTER":"Fullscreen (Preview pane layout)","SHORTCUTS_HELP/LABEL_VIEW_MESSAGE_ENTER":"View message (No preview pane layout)","SHORTCUTS_HELP/LABEL_SWITCH_TO_MESSAGE":"Switch focus to selected message","SHORTCUTS_HELP/LABEL_SWITCH_TO_FOLDER_LIST":"Switch focus to folder list","SHORTCUTS_HELP/LABEL_FULLSCREEN_TOGGLE":"Toggle fullscreen mode","SHORTCUTS_HELP/LABEL_BLOCKQUOTES_TOGGLE":"Toggle message blockquotes","SHORTCUTS_HELP/LABEL_THREAD_NEXT":"Next message in thread","SHORTCUTS_HELP/LABEL_THREAD_PREV":"Previous message in thread","SHORTCUTS_HELP/LABEL_PRINT":"Print","SHORTCUTS_HELP/LABEL_EXIT_FULLSCREEN":"Exit fullscreen mode","SHORTCUTS_HELP/LABEL_CLOSE_MESSAGE":"Close message (No preview pane layout)","SHORTCUTS_HELP/LABEL_SWITCH_TO_LIST":"Switch focus back to message list","SHORTCUTS_HELP/LABEL_OPEN_COMPOSE_POPUP":"Open compose popup","SHORTCUTS_HELP/LABEL_MINIMIZE_COMPOSE_POPUP":"Minimize compose popup","SHORTCUTS_HELP/LABEL_OPEN_IDENTITIES_DROPDOWN":"Open identities dropdown","SHORTCUTS_HELP/LABEL_SAVE_MESSAGE":"Save message","SHORTCUTS_HELP/LABEL_SEND_MESSAGE":"Send message","SHORTCUTS_HELP/LABEL_CLOSE_COMPOSE":"Close compose","PGP_NOTIFICATIONS/NO_PUBLIC_KEYS_FOUND":"No public keys found","PGP_NOTIFICATIONS/NO_PUBLIC_KEYS_FOUND_FOR":"No public keys found for \"%EMAIL%\" email","PGP_NOTIFICATIONS/NO_PRIVATE_KEY_FOUND":"No private key found","PGP_NOTIFICATIONS/NO_PRIVATE_KEY_FOUND_FOR":"No private key found for \"%EMAIL%\" email","PGP_NOTIFICATIONS/ADD_A_PUBLICK_KEY":"Add a public key","PGP_NOTIFICATIONS/SELECT_A_PRIVATE_KEY":"Select a private key","PGP_NOTIFICATIONS/UNVERIFIRED_SIGNATURE":"Unverified signature","PGP_NOTIFICATIONS/DECRYPTION_ERROR":"OpenPGP decryption error","PGP_NOTIFICATIONS/GOOD_SIGNATURE":"Good signature from %USER%","PGP_NOTIFICATIONS/PGP_ERROR":"OpenPGP error: %ERROR%","PGP_NOTIFICATIONS/SPECIFY_FROM_EMAIL":"Please specify FROM email address","PGP_NOTIFICATIONS/SPECIFY_AT_LEAST_ONE_RECIPIENT":"Please specify at least one recipient","NOTIFICATIONS/INVALID_TOKEN":"Invalid token","NOTIFICATIONS/AUTH_ERROR":"Authentication failed","NOTIFICATIONS/ACCESS_ERROR":"Access error","NOTIFICATIONS/CONNECTION_ERROR":"Can't connect to server","NOTIFICATIONS/CAPTCHA_ERROR":"Incorrect CAPTCHA.","NOTIFICATIONS/SOCIAL_FACEBOOK_LOGIN_ACCESS_DISABLE":"This social ID is not assigned for any email account yet. Log in using email credentials and enable this feature in account settings.","NOTIFICATIONS/SOCIAL_TWITTER_LOGIN_ACCESS_DISABLE":"This social ID is not assigned for any email account yet. Log in using email credentials and enable this feature in account settings.","NOTIFICATIONS/SOCIAL_GOOGLE_LOGIN_ACCESS_DISABLE":"This social ID is not assigned for any email account yet. Log in using email credentials and enable this feature in account settings.","NOTIFICATIONS/DOMAIN_NOT_ALLOWED":"Domain is not allowed","NOTIFICATIONS/ACCOUNT_NOT_ALLOWED":"Account is not allowed","NOTIFICATIONS/ACCOUNT_TWO_FACTOR_AUTH_REQUIRED":"Two factor verification required","NOTIFICATIONS/ACCOUNT_TWO_FACTOR_AUTH_ERROR":"Two factor verification error","NOTIFICATIONS/COULD_NOT_SAVE_NEW_PASSWORD":"Could not save new password","NOTIFICATIONS/CURRENT_PASSWORD_INCORRECT":"Current password incorrect","NOTIFICATIONS/NEW_PASSWORD_SHORT":"Password is too short","NOTIFICATIONS/NEW_PASSWORD_WEAK":"Password is too easy","NOTIFICATIONS/NEW_PASSWORD_FORBIDDENT":"Password contains forbidden characters","NOTIFICATIONS/CONTACTS_SYNC_ERROR":"Contacts synchronization error","NOTIFICATIONS/CANT_GET_MESSAGE_LIST":"Can't get message list","NOTIFICATIONS/CANT_GET_MESSAGE":"Can't get message","NOTIFICATIONS/CANT_DELETE_MESSAGE":"Can't delete message","NOTIFICATIONS/CANT_MOVE_MESSAGE":"Can't move message","NOTIFICATIONS/CANT_SAVE_MESSAGE":"Can't save message","NOTIFICATIONS/CANT_SEND_MESSAGE":"Can't send message","NOTIFICATIONS/INVALID_RECIPIENTS":"Invalid recipients","NOTIFICATIONS/CANT_SAVE_FILTERS":"Can't save filters","NOTIFICATIONS/CANT_GET_FILTERS":"Can't get filters","NOTIFICATIONS/FILTERS_ARE_NOT_CORRECT":"Filters are not correct","NOTIFICATIONS/CANT_CREATE_FOLDER":"Can't create folder","NOTIFICATIONS/CANT_RENAME_FOLDER":"Can't rename folder","NOTIFICATIONS/CANT_DELETE_FOLDER":"Can't delete folder","NOTIFICATIONS/CANT_DELETE_NON_EMPTY_FOLDER":"Can't delete non-empty directory","NOTIFICATIONS/CANT_SUBSCRIBE_FOLDER":"Can't subscribe folder","NOTIFICATIONS/CANT_UNSUBSCRIBE_FOLDER":"Can't unsubscribe folder","NOTIFICATIONS/CANT_SAVE_SETTINGS":"Can't save settings","NOTIFICATIONS/CANT_SAVE_PLUGIN_SETTINGS":"Can't save settings","NOTIFICATIONS/DOMAIN_ALREADY_EXISTS":"Domain already exists","NOTIFICATIONS/CANT_INSTALL_PACKAGE":"Failed to install package","NOTIFICATIONS/CANT_DELETE_PACKAGE":"Failed to remove package","NOTIFICATIONS/INVALID_PLUGIN_PACKAGE":"Invalid plugin package","NOTIFICATIONS/UNSUPPORTED_PLUGIN_PACKAGE":"Unsupported plugin package","NOTIFICATIONS/LICENSING_SERVER_IS_UNAVAILABLE":"Subscription server is unvailable","NOTIFICATIONS/LICENSING_DOMAIN_EXPIRED":"Subscription for this domain has expired.","NOTIFICATIONS/LICENSING_DOMAIN_BANNED":"Subscription for this domain is banned.","NOTIFICATIONS/DEMO_SEND_MESSAGE_ERROR":"For security purposes, this account is not allowed to send messages to external e-mail addresses!","NOTIFICATIONS/DEMO_ACCOUNT_ERROR":"For security purposes, this account is not allowed for this action!","NOTIFICATIONS/ACCOUNT_ALREADY_EXISTS":"Account already exists","NOTIFICATIONS/ACCOUNT_DOES_NOT_EXIST":"Account doesn't exist","NOTIFICATIONS/MAIL_SERVER_ERROR":"An error has occured while accessing mail server","NOTIFICATIONS/INVALID_INPUT_ARGUMENT":"Invalid input argument","NOTIFICATIONS/UNKNOWN_ERROR":"Unknown error","STATIC/BACK_LINK":"Reload","STATIC/DOMAIN_LIST_DESC":"List of domains webmail is allowed to access.","STATIC/PHP_EXSTENSIONS_ERROR_DESC":"Required PHP extension are not available in your PHP configuration!","STATIC/PHP_VERSION_ERROR_DESC":"Your PHP version (%VERSION%) is lower than the minimal required 5.3.0!","STATIC/NO_SCRIPT_TITLE":"JavaScript is required for this application.","STATIC/NO_SCRIPT_DESC":"JavaScript support is not available in your browser.\nPlease enable JavaScript support in your browser settings and retry.","STATIC/NO_COOKIE_TITLE":"Cookies support is required for this application.","STATIC/NO_COOKIE_DESC":"Cookies support is not available in your browser.\nPlease enable Cookie support in your browser settings and retry.","STATIC/BAD_BROWSER_TITLE":"Your browser is outdated.","STATIC/BAD_BROWSER_DESC":"To use all the features of the application,\ndownload and install one of these browsers:"};window.moment && window.moment.locale && window.moment.locale('en');
\ No newline at end of file
+++ /dev/null
-.thm-body{color:#333;background-color:#48525c;background-size:inherit;background-image:url("rainloop/v/1.17.0/themes/SquaresDark/images/background.jpg") !important;}.thm-loading{color:#ddd !important;text-shadow:0px 1px 0px rgba(0,0,0,0.5) !important;}.thm-loading .e-spinner .e-bounce{background-color:#ddd !important;}.thm-login-desc .desc{color:#ddd !important;text-shadow:0px 1px 0px rgba(0,0,0,0.5) !important;}.thm-login{border:none !important;background-color:#2b333d !important;background-color:rgba(0,0,0,0.5) !important;-webkit-border-radius:7px !important;-moz-border-radius:7px !important;border-radius:7px !important;-webkit-box-shadow:0px 2px 10px rgba(0,0,0,0.5) !important;-moz-box-shadow:0px 2px 10px rgba(0,0,0,0.5) !important;box-shadow:0px 2px 10px rgba(0,0,0,0.5) !important;}.thm-login.submitting-pane.submitting:before{background:rgba(0,0,0,0.3);-webkit-border-radius:7px !important;-moz-border-radius:7px !important;border-radius:7px !important;}.thm-login.submitting-pane.submitting:after{border-top-color:#fff;}.thm-login-text{color:#eee !important;}.thm-login-text .legend,.thm-login-text .e-checkbox-icon,.thm-login-text .g-ui-link,.thm-login-text .social-button,.thm-login-text .language-button{color:#eee !important;}.thm-powered,.thm-mobile-switcher{color:#ddd;}.thm-powered a,.thm-mobile-switcher a{color:#ddd;}.thm-powered a:hover,.thm-mobile-switcher a:hover{color:#fff;}.thm-languages{color:#ddd;}.thm-languages .flag-name{color:#ddd;border-color:#ddd;}.g-ui-menu{color:#333 !important;background-color:#fff !important;}.g-ui-menu .e-item > .e-link{color:#333 !important;background-color:#fff !important;}.g-ui-menu .e-item > .e-link > i{color:#333 !important;}.g-ui-menu .e-item.selected > .e-link{background-color:#eee !important;}.g-ui-menu .e-item > .e-link:hover,.g-ui-menu .e-item > .e-link:focus{color:#eee !important;background-color:#48525c !important;}.g-ui-menu .e-item > .e-link:hover > i,.g-ui-menu .e-item > .e-link:focus > i{color:#eee !important;}.g-ui-menu .e-item.disabled > .e-link,.g-ui-menu .e-item.disabled > .e-link:hover{color:#999 !important;background-color:#fff !important;}.g-ui-menu .e-item.disabled > .e-link > i,.g-ui-menu .e-item.disabled > .e-link:hover > i{color:#999 !important;}.thm-message-list-top-toolbar,.thm-message-list-bottom-toolbar{background-color:#eee !important;background-color:#ececec !important;background-image:-moz-linear-gradient(top,#f4f4f4,#dfdfdf) !important;background-image:-webkit-gradient(linear,0 0,0 100%,from(#f4f4f4),to(#dfdfdf)) !important;background-image:-webkit-linear-gradient(top,#f4f4f4,#dfdfdf) !important;background-image:-o-linear-gradient(top,#f4f4f4,#dfdfdf !important);background-image:linear-gradient(to bottom,#f4f4f4,#dfdfdf) !important;background-repeat:repeat-x !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff4f4f4', endColorstr='#ffdfdfdf', GradientType=0) !important;}.thm-folders .e-link{color:#aaa !important;}.thm-folders .e-link.selectable{color:#fff !important;}.thm-folders .e-link.selectable:hover{color:#fff !important;background-color:#2b333d !important;background-color:rgba(0,0,0,0.5) !important;}.thm-folders .e-link.selectable.selected{color:#fff !important;background-color:#2b333d !important;background-color:rgba(0,0,0,0.5) !important;}.thm-folders .e-link.focused{color:#fff !important;background-color:#2b333d !important;background-color:rgba(0,0,0,0.7) !important;}.thm-folders .e-link.selectable.droppableHover{color:#fff !important;background-color:#2b333d !important;background-color:rgba(0,0,0,0.5) !important;}.thm-settings-menu .e-item .e-link{color:#aaa !important;}.thm-settings-menu .e-item.selectable .e-link{color:#fff !important;}.thm-settings-menu .e-item.selectable:hover .e-link{background-color:#2b333d !important;background-color:rgba(0,0,0,0.5) !important;color:#fff !important;}.thm-settings-menu .e-item.selectable.selected .e-link{background-color:#2b333d !important;background-color:rgba(0,0,0,0.5) !important;color:#fff !important;}.thm-message-view-background-color{background-color:#fff !important;}#rl-app{display:block;}html.no-css{margin:0;padding:0;font-family:Arial, Verdana, Geneva, sans-serif;}html.no-css body{margin:0;padding:0;}html.no-css #rl-loading,html.no-css #rl-loading-error{position:absolute;font-size:30px;line-height:130%;top:50%;width:100%;height:65px;margin:0;margin-top:-60px;background-color:transparent;text-align:center;color:#333;}html.no-css .progressjs-container{display:none;}html.no-css .thm-body{color:#333;background-color:#aaa;background-image:none;}html.no-css .thm-loading{color:#333 !important;text-shadow:none !important;}html.no-css .thm-loading .e-spinner .e-bounce{display:none !important;}html.no-css .thm-login-desc .desc{color:#333 !important;text-shadow:none !important;}html.glass .thm-login{background:none !important;background:rgba(0,0,0,0.5) !important;box-shadow:none !important;border:none !important;border:1px solid rgba(255,255,255,0.2) !important;}html.glass .thm-login .controls .input-append .add-on i{color:rgba(255,255,255,0.8) !important;text-shadow:none !important;outline:none !important;box-shadow:none !important;}html.glass .thm-login .controls input{border:1px solid none !important;background:none !important;outline:none !important;text-shadow:none !important;box-shadow:none !important;color:#fff !important;border-color:rgba(255,255,255,0.8) !important;}html.glass .thm-login .controls input::-webkit-input-placeholder{color:#fff !important;text-shadow:none !important;}html.glass .thm-login .controls input::-moz-placeholder{color:#fff !important;text-shadow:none !important;}html.glass .thm-login .controls input:-moz-placeholder{color:#fff !important;text-shadow:none !important;}html.glass .thm-login .controls input:-ms-input-placeholder{color:#fff !important;text-shadow:none !important;}html.glass .thm-login .controls input:input-placeholder{color:#fff !important;text-shadow:none !important;}html.glass .thm-login .controls input:placeholder{color:#fff !important;text-shadow:none !important;}html.glass .thm-login .controls input:focus,html.glass .thm-login .controls input:hover{border-color:#fff !important;}html.glass .thm-login .controls .btn{border:1px solid none !important;background:none !important;outline:none !important;text-shadow:none !important;box-shadow:none !important;color:#fff !important;border-color:rgba(255,255,255,0.8) !important;text-transform:uppercase;font-size:13px;}html.glass .thm-login .controls .btn:hover,html.glass .thm-login .controls .btn:active{border-color:#fff !important;}html.glass .thm-login .controls.error .input-append .add-on i{color:#f76260 !important;}html.glass .thm-login .controls.error input{color:#f76260 !important;border-color:#f76260 !important;}html.glass .thm-login-text{color:rgba(255,255,255,0.8) !important;text-shadow:none !important;}html.glass .thm-login-text .legend,html.glass .thm-login-text .e-checkbox-icon,html.glass .thm-login-text .g-ui-link,html.glass .thm-login-text .social-button,html.glass .thm-login-text .language-button{color:rgba(255,255,255,0.8) !important;text-shadow:none !important;}
\ No newline at end of file
+++ /dev/null
-<!DOCTYPE html><html class="no-js rl-booted-trigger rl-started-trigger glass" dir="ltr"><head><noscript><meta http-equiv="refresh" content="0; URL=./?/NoScript"/></noscript><!--[if lte IE 8]><meta http-equiv="refresh" content="0; URL=./?/BadBrowser"/><![endif]--><meta charset="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/><meta name="viewport" content="width=950,maximum-scale=2"><meta name="apple-mobile-web-app-capable" content="yes"/><meta name="google" content="notranslate"/><meta name="robots" content="noindex,nofollow,noodp"/><meta name="AppBootData" content='{"admin":false,"language":"de_DE","theme":"SquaresDark","mobile":false,"mobileDevice":false}' id="app-boot-data"/><script type="text/javascript" data-cfasync="false" src="rainloop/v/1.17.0/static/js/min/polyfills.min.js?legacy"></script><title></title><link type="image/png" rel="shortcut icon" href="rainloop/v/1.17.0/static/apple-touch-icon.png?legacy"/><link type="image/png" rel="apple-touch-icon" href="rainloop/v/1.17.0/static/apple-touch-icon.png?legacy"/><link type="text/css" rel="stylesheet" href="rainloop/v/1.17.0/static/css/app.min.css?legacy" rel="preload"/><link type="text/css" rel="stylesheet" href="./?/Css/0/User/-/SquaresDark/-/3c07b66115715402a1dc3fff313433ad/Hash/-/" id="app-theme-link" rel="preload"/><link rel="manifest" href="rainloop/v/1.17.0/static/manifest.json?legacy"/></head><body><div id="rl-app"></div><div id="rl-check"></div><script id="rainloop-templates-id"></script><script id="InputComponent" type="text/html" data-cfasync="false"><input class="i18n" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: value, attr: {'placeholder': placeholder}, enable: enable, css: className"/><!-- ko if: labeled --> <span class="i18n" data-bind="attr: {'data-i18n': label}"></span> <!-- /ko --><!-- ko if: triggered --> <div data-bind="component: { name: 'SaveTrigger', params: { value: trigger } }"></div><!-- /ko --></script><script id="CheckboxMaterialDesignComponent" type="text/html" data-cfasync="false"><span class="e-component e-checkbox material-design inline" tabindex="0" data-bind="click: click, onSpace: click, css: { 'disabled': disable() || !enable() }"><div class="sub-checkbox-container" role="checkbox"><div class="sub-checkbox" data-bind="css: {'checked': (value() && !inverted) || (!value() && inverted), 'unchecked': (!value() && !inverted) || (value() && inverted), 'box': animationBox, 'checkmark': animationCheckmark}"></div></div><!-- ko if: labeled --><span class="sub-label i18n" data-bind="attr: {'data-i18n': label}, css: {'i18n-animation': labelAnimated}"></span><!-- /ko --></span></script><script id="SelectComponent" type="text/html" data-cfasync="false"><div class="e-component e-select inline"><!-- ko if: preLabeled --><span class="i18n" data-bind="attr: {'data-i18n': preLabel}"></span> <!-- /ko --><select data-bind="options: options, value: value, enable: enable, optionsText: optionsText, optionsValue: optionsValue, optionsCaption: optionsCaption, css: className, optionsAfterRender: defautOptionsAfterRender"></select><!-- ko if: labeled --> <span class="i18n" data-bind="attr: {'data-i18n': label}"></span> <!-- /ko --><!-- ko if: triggered --> <div data-bind="component: { name: 'SaveTrigger', params: { value: trigger } }"></div><!-- /ko --></div></script><script id="TextAreaComponent" type="text/html" data-cfasync="false"><textarea class="i18n" rows="5" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, enable: enable, attr: { 'placeholder': placeholder, 'rows': rows, 'spellcheck': spellcheck ? 'true' : 'false' }, css: className"></textarea><!-- ko if: triggered --> <div data-bind="component: { name: 'SaveTrigger', params: { value: trigger, verticalAlign: 'top' } }"></div><!-- /ko --></script><script id="DateComponent" type="text/html" data-cfasync="false"><input class="i18n" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="pikaday: value, attr: {'placeholder': placeholder}, enable: enable, css: className"/><!-- ko if: labeled --> <span class="i18n" data-bind="attr: {'data-i18n': label}"></span> <!-- /ko --><!-- ko if: triggered --> <div data-bind="component: { name: 'SaveTrigger', params: { value: trigger } }"></div><!-- /ko --></script><script id="RadioComponent" type="text/html" data-cfasync="false"><div class="e-component e-radio" data-bind="foreach: values"><label tabindex="0" data-bind="click: $parent.click, css: {'inline': $parent.inline}"><i role="radio" data-bind="css: $parent.value() === value ? 'icon-radio-checked' : 'icon-radio-unchecked'"></i> <span class="sub-label i18n" data-bind="attr: {'data-i18n': label}"></span></label></div></script><script id="CheckboxComponent" type="text/html" data-cfasync="false"><span class="e-component e-checkbox inline" tabindex="0" data-bind="click: click, onSpace: click, css: { 'disabled': disable() || !enable() }"><i role="checkbox" class="e-checkbox-icon" data-bind="css: value() ? (inverted ? 'icon-checkbox-unchecked' : 'icon-checkbox-checked') : (inverted ? 'icon-checkbox-checked' : 'icon-checkbox-unchecked') "></i><!-- ko if: labeled --> <span class="sub-label i18n" data-bind="attr: {'data-i18n': label}, css: {'i18n-animation': labelAnimated}"></span><!-- /ko --></span></script><script id="SaveTriggerComponent" type="text/html" data-cfasync="false"><div class="e-component settings-saved-trigger"><i class="icon-spinner animated"></i><i class="icon-remove error"></i><i class="icon-ok success"></i></div></script><script id="CheckboxClassicComponent" type="text/html" data-cfasync="false"><label class="e-component e-checkbox inline" data-bind="css: { 'disabled': disable() || !enable() }"><input type="checkbox" data-bind="checked: value, disable: disable() || !enable()" style="margin: 0 0 1px 0;"/><!-- ko if: labeled --> <span class="sub-label i18n" data-bind="attr: {'data-i18n': label}, css: {'i18n-animation': labelAnimated}"></span><!-- /ko --></label></script><script id="MailMessageListItem" type="text/html" data-cfasync="false"><div class="messageListItem" data-bind="css: lineAsCss()"><div class="sidebarParent"> </div><div class="delimiter"></div><div class="wrapper"><div class="flagParent"><span class="flagOn"><i class="icon-star"></i></span><span class="flagOnHalf"><i class="icon-star-empty"></i></span><span class="flagOff"><i class="icon-star-empty"></i></span></div><div class="dateParent actionHandle dragHandle"><span class="date" data-moment-format="SHORT" data-moment-format-title="FULL" data-bind="moment: dateTimeStampInUTC"></span></div><div class="threadsParent" data-bind="visible: 1 < threadsLen()"><span class="threads-len"><span class="threads-len-data"><span data-bind="text: threadsLen"></span><i class="icon-right-mini"></i></span></span></div><div class="checkedParent"><i class="checkboxMessage" data-bind="css: checked() ? 'checkboxMessage icon-checkbox-checked' : 'checkboxMessage icon-checkbox-unchecked'"></i></div><div class="senderParent actionHandle dragHandle"><span class="replyFlag"><i class="icon-reply"></i> </span><span class="forwardFlag"><i class="icon-forward"></i> </span><span class="sender" data-bind="text: senderEmailsString, attr: {'title': senderClearEmailsString}"></span> </div><div class="attachmentParent actionHandle dragHandle"><span class="attachment"><i data-bind="css: attachmentIconClass"></i></span></div><div class="subjectParent actionHandle dragHandle"><b class="importantMark">!</b><span class="subject emptySubjectText" data-bind="text: $root.emptySubjectValue"></span><span class="subject-prefix" data-bind="text: subjectPrefix"></span><span class="subject-suffix" data-bind="text: subjectSuffix"></span></div></div></div></script><script id="PopupsMessageOpenPgp" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-message-open-pgp-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_MESSAGE_OPEN_PGP/TITLE_MESSAGE_OPEN_PGP"></span></h3></div><div class="modal-body"><div class="form-horizontal"><div class="alert" data-bind="visible: '' !== notification()"><span data-bind="text: notification"></span></div><br /><div class="control-group"><label class="i18n control-label" data-i18n="POPUPS_MESSAGE_OPEN_PGP/LABEL_KEY"></label><div class="controls key-list" data-bind="foreach: privateKeys" style="margin-top: 5px"><div class="key-list__item"><i class="key-list__item__radio icon-radio-unchecked"></i><div class="key-list__item__names"><span data-bind="foreach: users"><div><span class="key-list__item__name"><span data-bind="text: $data"></span> <span>[<span data-bind="text: $parent.id"></span>]</span></span></div></span></div></div><!--<div data-bind="json: $data"></div>--></div></div><div class="control-group"><label class="i18n control-label" data-i18n="POPUPS_MESSAGE_OPEN_PGP/LABEL_PASSWORD"></label><div class="controls"><input type="password" class="inputPassword input-xlarge" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: password, hasfocus: password.focus, onEnter: doCommand"/></div></div></div></div><div class="modal-footer"><button class="btn buttonDo" data-bind="command: doCommand, hasfocus: buttonFocus"><i data-bind="css: {'icon-key': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i> <span class="i18n" data-i18n="POPUPS_MESSAGE_OPEN_PGP/BUTTON_DECRYPT"></span></button></div></div></div></div></script><script id="SettingsAccounts" type="text/html" data-cfasync="false"><div class="b-settings-accounts g-ui-user-select-none"><div data-bind="visible: allowAdditionalAccount"><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_ACCOUNTS/LEGEND_ACCOUNTS"></span> <i class="icon-spinner animated" style="margin-top: 5px" data-bind="visible: accounts.loading"></i></div></div><a class="btn" data-bind="click: addNewAccount"><i class="icon-user-add"></i> <span class="i18n" data-i18n="SETTINGS_ACCOUNTS/BUTTON_ADD_ACCOUNT"></span></a><br /><br /><br /><div class="accounts-list-wrp"><div class="accounts-list-top-padding"></div><table class="table table-hover list-table accounts-list" data-bind="i18nUpdate: accounts"><colgroup><col /><col style="width: 150px"/><col style="width: 1%"/></colgroup><tbody data-bind="sortable: {data: accounts, options: scrollableOptions('.accounts-list-wrp'), afterMove: accountsAndIdentitiesAfterMove}"><tr class="account-item"><td class="e-action" data-bind="css: {'e-action': canBeEdit}"><span class="account-img icon-user"></span><i class="icon-braille drag-handle"></i> <span class="account-name" data-bind="text: email"></span></td><td><span data-bind="visible: !canBeDeleted()"></span><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="visible: canBeDeleted, css: {'delete-access': deleteAccess}, click: function(oAccount) { $root.deleteAccount(oAccount); }"><span class="i18n" data-i18n="SETTINGS_ACCOUNTS/DELETING_ASK"></span></a></td><td><span class="delete-account" data-bind="visible: !deleteAccess() && canBeDeleted(), click: function (oAccount) { $root.accountForDeletion(oAccount); }"><i class="icon-trash"></i></span></td></tr></tbody></table></div></div><div data-bind="visible: allowIdentities"><br /><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_ACCOUNTS/LEGEND_IDENTITIES"></span></div></div><a class="btn" data-bind="click: addNewIdentity"><i class="icon-user-add"></i> <span class="i18n" data-i18n="SETTINGS_ACCOUNTS/BUTTON_ADD_IDENTITY"></span></a><br /><br /><br /><div class="identities-list-wrp"><div class="identities-list-top-padding"></div><table class="table table-hover list-table identities-list" data-bind="i18nUpdate: identities"><colgroup><col /><col style="width: 150px"/><col style="width: 1%"/></colgroup><tbody data-bind="sortable: {data: identities, options: scrollableOptions('.identities-list-wrp'), afterMove: accountsAndIdentitiesAfterMove}"><tr class="identity-item"><td class="e-action"><span class="identity-img icon-user"></span><i class="icon-braille drag-handle"></i> <span class="identity-name" data-bind="text: formattedName()"></span> <span class="identity-default" data-bind="visible: 0 === $index()"> (<span class="i18n" data-i18n="SETTINGS_ACCOUNTS/DEFAULT_IDENTITY_LABEL"></span>) </span></td><td><span data-bind="visible: !canBeDeleted()"></span><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="visible: canBeDeleted, css: {'delete-access': deleteAccess}, click: function(oIdentity) { $root.deleteIdentity(oIdentity); }"><span class="i18n" data-i18n="SETTINGS_ACCOUNTS/DELETING_ASK"></span></a></td><td><span class="delete-identity" data-bind="visible: !deleteAccess() && canBeDeleted(), click: function (oIdentity) { $root.identityForDeletion(oIdentity); }"><i class="icon-trash"></i></span></td></tr></tbody></table></div></div></div></script><script id="SettingsSocial" type="text/html" data-cfasync="false"><div class="b-settings-social g-ui-user-select-none"><div class="form-horizontal" data-bind="visible: googleEnable() && googleEnableAuth()"><div class="legend"><span class="i18n" data-i18n="SETTINGS_SOCIAL/LEGEND_GOOGLE"></span></div><div class="control-group" data-bind="visible: !googleLoggined()"><button class="btn" data-bind="command: connectGoogleCommand"><i class="icon-google" data-bind="visible: !googleActions()"></i><i class="icon-spinner animated" data-bind="visible: googleActions()"></i> <span class="i18n" data-i18n="SETTINGS_SOCIAL/BUTTON_GOOGLE_CONNECT"></span></button><br /><br /><blockquote><p class="i18n muted" style="width: 500px" data-i18n="SETTINGS_SOCIAL/MAIN_GOOGLE_DESC"></p></blockquote></div><div class="control-group" data-bind="visible: googleLoggined"><strong><i class="icon-google"></i> <span data-bind="text: googleUserName"></span></strong><br /><br /><button class="btn" data-bind="command: disconnectGoogleCommand"><i class="icon-remove" data-bind="visible: !googleActions()"></i><i class="icon-spinner animated" data-bind="visible: googleActions()"></i> <span class="i18n" data-i18n="SETTINGS_SOCIAL/BUTTON_GOOGLE_DISCONNECT"></span></button></div></div><div class="form-horizontal" data-bind="visible: facebookEnable"><div class="legend"><span class="i18n" data-i18n="SETTINGS_SOCIAL/LEGEND_FACEBOOK"></span></div><div class="control-group" data-bind="visible: !facebookLoggined()"><button class="btn" data-bind="command: connectFacebookCommand"><i class="icon-facebook" data-bind="visible: !facebookActions()"></i><i class="icon-spinner animated" data-bind="visible: facebookActions()"></i> <span class="i18n" data-i18n="SETTINGS_SOCIAL/BUTTON_FACEBOOK_CONNECT"></span></button><br /><br /><blockquote><p class="i18n muted" style="width: 500px" data-i18n="SETTINGS_SOCIAL/MAIN_FACEBOOK_DESC"></p></blockquote></div><div class="control-group" data-bind="visible: facebookLoggined"><strong><i class="icon-facebook"></i> <span data-bind="text: facebookUserName"></span></strong><br /><br /><button class="btn" data-bind="command: disconnectFacebookCommand"><i class="icon-remove" data-bind="visible: !facebookActions()"></i><i class="icon-spinner animated" data-bind="visible: facebookActions()"></i> <span class="i18n" data-i18n="SETTINGS_SOCIAL/BUTTON_FACEBOOK_DISCONNECT"></span></button></div></div><div class="form-horizontal" data-bind="visible: twitterEnable"><div class="legend"><span class="i18n" data-i18n="SETTINGS_SOCIAL/LEGEND_TWITTER"></span></div><div class="control-group" data-bind="visible: !twitterLoggined()"><button class="btn" data-bind="command: connectTwitterCommand"><i class="icon-twitter" data-bind="visible: !twitterActions()"></i><i class="icon-spinner animated" data-bind="visible: twitterActions()"></i> <span class="i18n" data-i18n="SETTINGS_SOCIAL/BUTTON_TWITTER_CONNECT"></span></button><br /><br /><blockquote><p class="i18n muted" style="width: 500px" data-i18n="SETTINGS_SOCIAL/MAIN_TWITTER_DESC"></p></blockquote></div><div class="control-group" data-bind="visible: twitterLoggined"><strong><i class="icon-twitter"></i> <span data-bind="text: twitterUserName"></span></strong><br /><br /><button class="btn" data-bind="command: disconnectTwitterCommand"><i class="icon-remove" data-bind="visible: !twitterActions()"></i><i class="icon-spinner animated" data-bind="visible: twitterActions()"></i> <span class="i18n" data-i18n="SETTINGS_SOCIAL/BUTTON_TWITTER_DISCONNECT"></span></button></div></div></div></script><script id="SystemDropDown" type="text/html" data-cfasync="false"><div class="b-system-drop-down g-ui-user-select-none"><div class="b-toolbar"><div class="btn-toolbar"><div class="btn-group btn-group-last pull-right dropdown colored-toggle" data-bind="registrateBootstrapDropdown: true, openDropdownTrigger: accountMenuDropdownTrigger"><a id="top-system-dropdown-id" href="#" tabindex="-1" class="btn single btn-ellipsis btn-block dropdown-toggle system-dropdown" data-toggle="dropdown"><i data-bind="css: {'icon-user': !accounts.loading(), 'icon-spinner animated': accounts.loading()}"></i><!-- <b data-bind="text: accountsUnreadCount, visible: 100 > accountsUnreadCount() && 0 < accountsUnreadCount()"></b><b data-bind="visible: 99 < accountsUnreadCount()">99+</b> --> <span class="caret"></span></a><ul class="dropdown-menu g-ui-menu" tabindex="-1" role="menu" aria-labelledby="top-system-dropdown-id"><!-- ko if: accounts().length --><!-- ko foreach: accounts --><li class="e-item" role="presentation"><a class="e-link menuitem account-item" href="#" data-bind="click: $root.accountClick, attr: {'href': changeAccountLink()}, css: {'current': $root.accountEmail() === email}"><!-- <b class="pull-right counter" data-bind="visible: 0 < count()"><span data-bind="text: count, visible: 100 > count()"></span><span data-bind="visible: 99 < count()">99+</span></b>--><i class="icon-ok"></i><i class="icon-user"></i> <span class="email-title" data-bind="text: email, attr: {title: email}"></span></a></li><!-- /ko --><!-- /ko --><!-- ko if: capaAdditionalAccounts --><li class="divider" role="presentation"></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: addAccountClick"><i class="icon-plus"></i> <span class="i18n" data-i18n="TOP_TOOLBAR/BUTTON_ADD_ACCOUNT"></span></a></li><!-- /ko --><li class="e-item" role="presentation" data-bind="visible: allowSettings"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: settingsClick"><i class="icon-cog"></i> <span class="i18n" data-i18n="TOP_TOOLBAR/BUTTON_SETTINGS"></span></a></li><li class="e-item" role="presentation" data-bind="visible: allowHelp"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: settingsHelp"><i class="icon-help"></i> <span class="i18n" data-i18n="TOP_TOOLBAR/BUTTON_HELP"></span></a></li><li class="divider" role="presentation" data-bind="visible: allowSettings || allowHelp"></li><li class="e-item" role="presentation" data-bind="visible: mobile"><a class="e-link menuitem" href="./?/DesktopVersion/" tabindex="-1"><i class="icon-laptop"></i> <span class="i18n" data-i18n="MOBILE/BUTTON_DESKTOP_VERSION"></span></a></li><li class="e-item" role="presentation" data-bind="visible: !mobile"><a class="e-link menuitem" href="./?/MobileVersion/" tabindex="-1"><i class="icon-mobile"></i> <span class="i18n" data-i18n="MOBILE/BUTTON_MOBILE_VERSION"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: logoutClick"><i class="icon-power"></i> <span class="i18n" data-i18n="TOP_TOOLBAR/BUTTON_LOGOUT"></span></a></li></ul></div><div class="accountPlace pull-right hide-on-mobile" data-bind="text: emailTitle()"></div><div class="audioPlace pull-right" data-tooltip-i18n="off" data-tooltip-mobile="on" data-tooltip-join="right top" data-bind="visible: '' !== currentAudio(), tooltip: currentAudio, click: stopPlay"><div class="playIcon equaliser" data-bind="css: {'animated': '' !== currentAudio()}"><div class="bar first"></div><div class="bar second"></div><div class="bar third"></div></div><i class="stopIcon icon-pause"></i></div><div class="logoPlace pull-right" data-bind="if: logoImg"><img style="height: 99%" data-tooltip-i18n="off" data-tooltip-mobile="on" data-tooltip-join="right" data-bind="attr: { 'src': logoImg }, tooltip: logoTitle"/></div></div></div></div></script><script id="PhotoSwipe" type="text/html" data-cfasync="false"><div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> <div class="pswp__bg"></div> <div class="pswp__scroll-wrap"> <div class="pswp__container"> <div class="pswp__item"></div> <div class="pswp__item"></div> <div class="pswp__item"></div> </div> <div class="pswp__ui pswp__ui--hidden"> <div class="pswp__top-bar"> <div class="pswp__counter"></div> <button class="pswp__button pswp__button--close i18n" title="Close (Esc)" data-i18n="[title]PREVIEW_POPUP/CLOSE"></button> <button class="pswp__button pswp__button--fs i18n" title="Toggle fullscreen" data-i18n="[title]PREVIEW_POPUP/FULLSCREEN"></button> <button class="pswp__button pswp__button--zoom i18n" title="Zoom in/out" data-i18n="[title]PREVIEW_POPUP/ZOOM"></button> <div class="pswp__preloader"> <div class="pswp__preloader__icn"><div class="pswp__preloader__cut"><div class="pswp__preloader__donut"></div></div> </div> </div> </div> <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> <div class="pswp__share-tooltip"></div> </div> <button class="pswp__button pswp__button--arrow--left i18n" title="Previous (arrow left)" data-i18n="[title]PREVIEW_POPUP/GALLERY_PREV"></button> <button class="pswp__button pswp__button--arrow--right i18n" title="Next (arrow right)" data-i18n="[title]PREVIEW_POPUP/GALLERY_NEXT"></button> <div class="pswp__caption"> <div class="pswp__caption__center"></div> </div></div></div></div></script><script id="SettingsFiltersConditionSize" type="text/html" data-cfasync="false"><div class="control-group" data-bind="css: {'error': value.error}" style="margin-bottom: 0"><select class="span3" data-bind="options: $root.fieldOptions, value: field, optionsText: 'name', optionsValue: 'id'"></select> <select class="span2" data-bind="options: $root.typeOptionsSize, value: type, optionsText: 'name', optionsValue: 'id'"></select> <input class="span3" type="text" data-bind="value: value"/> <span class="delete-action button-delete pull-right" style="margin-top: 5px;" data-bind="click: function (oCondition) { $root.removeCondition(oCondition); }"><i class="icon-trash"></i></span></div></script><script id="PopupsFilter" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-filter-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_FILTER/TITLE_CREATE_FILTER" data-bind="visible: isNew"></span><span class="i18n" data-i18n="POPUPS_FILTER/TITLE_EDIT_FILTER" data-bind="visible: !isNew()"></span></h3></div><div class="modal-body"><div class="row filter" data-bind="with: filter, i18nInit: filter"><div class="span9" data-bind="i18nInit: true"><div class="control-group" data-bind="css: {'error': name.error}"><div class="controls"><input type="text" class="i18n span5" data-bind="value: name, hasFocus: name.focused" autocorrect="off" autocapitalize="off" spellcheck="false" data-i18n="[placeholder]POPUPS_FILTER/FILTER_NAME"/></div></div><div class="legend i18n" data-i18n="POPUPS_FILTER/LEGEND_CONDITIONS"></div><div><div data-bind="visible: 1 < conditions().length"><select class="span4" data-bind="value: conditionsType"><option value="Any" class="i18n" data-i18n="POPUPS_FILTER/SELECT_MATCH_ANY"></option><option value="All" class="i18n" data-i18n="POPUPS_FILTER/SELECT_MATCH_ALL"></option></select></div><div data-bind="visible: 0 < conditions().length, foreach: conditions"><div data-bind="template: {'name': template(), 'data': $data}"></div></div><div data-bind="visible: 0 === conditions().length"><span class="i18n" data-i18n="POPUPS_FILTER/ALL_INCOMING_MESSAGES_DESC"></span></div><br /><a class="btn" data-bind="click: addCondition, i18nInit: true"><i class="icon-plus"></i> <span class="i18n" data-i18n="POPUPS_FILTER/BUTTON_ADD_CONDITION"></span></a></div><br /><div class="legend i18n" data-i18n="POPUPS_FILTER/LEGEND_ACTIONS"></div><select class="span3" data-bind="options: $root.actionTypeOptions, value: actionType, optionsText: 'name', optionsValue: 'id'"></select><div data-bind="template: {'name': actionTemplate()}, i18nUpdate: actionTemplate"></div></div></div></div><div class="modal-footer"><a class="btn buttonSave" data-bind="command: saveFilterCommand"><i class="icon-ok"></i> <span class="i18n" data-i18n="POPUPS_FILTER/BUTTON_DONE"></span></a></div></div></div></div></script><script id="PopupsCompose" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-compose" data-backdrop="static" data-bind="modal: modalVisibility, css: {'loading': saving() || sending()}"><div class="modal-header b-header-toolbar g-ui-user-select-none"><a class="btn btn-large button-send" data-bind="command: sendCommand, tooltipErrorTip: sendErrorDesc, css: {'btn-success': sendButtonSuccess, 'btn-danger': sendError, 'btn-warning': sendSuccessButSaveError }"><i class="icon-white" data-bind="css: {'icon-paper-plane': !sending(), 'icon-spinner animated big': sending()}"></i><span class="i18n btn-text hide-on-mobile" data-i18n="COMPOSE/BUTTON_SEND"></span></a><a class="btn button-save" data-bind="visible: allowFolders, command: saveCommand, tooltipErrorTip: savedErrorDesc, css: {'btn-danger': savedError }"><i data-bind="css: {'icon-floppy': !saving(), 'icon-spinner animated': saving(), 'icon-white': savedError()}"></i><span class="i18n btn-text hide-on-mobile" data-i18n="COMPOSE/BUTTON_SAVE"></span></a><a class="close-custom" data-tooltip-join="top" data-bind="click: tryToClosePopup, tooltip: 'COMPOSE/BUTTON_CANCEL'">×</a><a class="minimize-custom" data-tooltip-join="top" data-bind="click: skipCommand, tooltip: 'COMPOSE/BUTTON_MINIMIZE'"></a><a class="btn btn-danger button-delete button-delete-transitions" data-bind="command: deleteCommand"><i class="icon-trash icon-white"></i></a><span class="saved-text hide-on-mobile" data-bind="text: savedTimeText"></span></div><div class="modal-body"><div><div class="b-header g-ui-user-select-none"><div class="g-ui-table"><div class="e-row" style="height: 40px;"><div class="e-cell e-label"><label class="control-label"><span class="i18n" data-i18n="COMPOSE/TITLE_FROM"></span></label></div><div class="e-cell e-value"><div class="dropdown pull-left" data-bind="registrateBootstrapDropdown: true, openDropdownTrigger: identitiesDropdownTrigger"><a class="dropdown-toggle g-ui-dropdown e-identity" href="#" tabindex="-1" id="identity-label-id" role="button" data-toggle="dropdown" data-bind="text: currentIdentityView, dropdownCloser: true, css: {'multiply': 1 < identitiesOptions().length }"></a><!-- ko if: 1 < identitiesOptions().length --><ul class="dropdown-menu g-ui-menu" role="menu" aria-labelledby="identity-label-id"><!-- ko foreach: identitiesOptions --><li class="e-item" role="presentation"><a class="e-link menuitem" tabindex="-1" href="javascript:void(0);" data-bind="click: function (oIdentity) { $root.selectIdentity(oIdentity); return true; }"><span data-bind="text: optText"></span></a></li><!-- /ko --></ul><!-- /ko --></div><div class="pull-right"><div class="btn-group dropdown colored-toggle pull-right" style="margin-right: 4px;"><a class="btn single dropdown-toggle buttonMore" data-toggle="dropdown"><i class="icon-list"></i></a><ul class="dropdown-menu g-ui-menu" role="menu"><li class="e-item" data-bind="click: function () { requestReadReceipt(!requestReadReceipt()); }"><a class="e-link"><i class="icon-checkbox-unchecked" data-bind="css: {'icon-checkbox-checked': requestReadReceipt(), 'icon-checkbox-unchecked': !requestReadReceipt() }"></i> <span class="i18n" data-i18n="COMPOSE/BUTTON_REQUEST_READ_RECEIPT"></span></a></li><li class="e-item" data-bind="click: function () { requestDsn(!requestDsn()); }"><a class="e-link"><i class="icon-checkbox-unchecked" data-bind="css: {'icon-checkbox-checked': requestDsn(), 'icon-checkbox-unchecked': !requestDsn() }"></i> <span class="i18n" data-i18n="COMPOSE/BUTTON_REQUEST_DSN"></span></a></li><li class="e-item" data-bind="click: function () { markAsImportant(!markAsImportant()); }"><a class="e-link"><i class="icon-checkbox-unchecked" data-bind="css: {'icon-checkbox-checked': markAsImportant(), 'icon-checkbox-unchecked': !markAsImportant() }"></i> <span class="i18n" data-i18n="COMPOSE/BUTTON_MARK_AS_IMPORTANT"></span></a></li><li class="divider" data-bind="visible: capaOpenPGP"></li><li class="e-item" data-bind="visible: capaOpenPGP, click: openOpenPgpPopup, css: {'disabled': isHtml()}"><a class="e-link"><i class="icon-key"></i> <span class="i18n" data-i18n="COMPOSE/BUTTON_OPEN_PGP"></span></a></li></ul></div><div class="btn-group pull-right"> </div><div class="btn-group pull-right"><a class="btn single" data-tooltip-join="top" data-bind="visible: allowContacts, command: contactsCommand, tooltip: 'FOLDER_LIST/BUTTON_CONTACTS'"><i class="icon-address-book"></i></a></div><div class="btn-group pull-right"> </div></div><span class="pull-right"><span class="i18n g-ui-link" data-i18n="COMPOSE/TITLE_CC" data-bind="visible: !showCc(), click: function () { showCc(true); }"></span> <span data-bind="visible: !showBcc()"><span class="i18n g-ui-link" data-i18n="COMPOSE/TITLE_BCC" data-bind="click: function () { showBcc(true); }"></span> </span><span class="i18n g-ui-link" data-i18n="COMPOSE/TITLE_REPLY_TO" data-bind="visible: !showReplyTo(), click: function () { showReplyTo(true); }"></span> </span></div></div><div class="e-row"><div class="e-cell e-label"><label class="control-label" data-bind="css: {'error-to': emptyToError}"><span class="i18n" data-i18n="COMPOSE/TITLE_TO" data-tooltip-join="top" data-bind="tooltipErrorTip: emptyToErrorTooltip"></span></label></div><div class="e-cell e-value"><input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: to, emailsTagsFocus: to.focused, autoCompleteSource: emailsSource"/></div></div><div class="e-row cc-row" data-bind="visible: showCc"><div class="e-cell e-label"><span class="i18n" data-i18n="COMPOSE/TITLE_CC"></span></div><div class="e-cell e-value"><input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: cc, autoCompleteSource: emailsSource"/></div></div><div class="e-row bcc-row" data-bind="visible: showBcc"><div class="e-cell e-label"><span class="i18n" data-i18n="COMPOSE/TITLE_BCC"></span></div><div class="e-cell e-value"><input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: bcc, autoCompleteSource: emailsSource"/></div></div><div class="e-row reply-to-row" data-bind="visible: showReplyTo"><div class="e-cell e-label"><span class="i18n" data-i18n="COMPOSE/TITLE_REPLY_TO"></span></div><div class="e-cell e-value"><input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="emailsTags: replyTo, autoCompleteSource: emailsSource"/></div></div><div class="e-row"><div class="e-cell e-label"><span class="i18n" data-i18n="COMPOSE/TITLE_SUBJECT"></span></div><div class="e-cell e-value"><input type="text" size="70" autocomplete="off" data-bind="textInput: subject, hasFocus: subject.focused"/></div></div><div class="e-row"><div class="e-cell e-label"></div><div class="e-cell e-value"><div><div class="pull-left"><div class="btn-group" data-toggle="buttons-radio"><button type="button" class="btn first" data-bind="click: function () { attachmentsPlace(false); }, css: { 'active': !attachmentsPlace() }"><i class="icon-file-text"></i></button><button type="button" class="btn last" data-tooltip-join="left" data-bind="click: function () { attachmentsPlace(true); }, css: { 'btn-danger': 0 < attachmentsInErrorCount(), 'active': attachmentsPlace() }, tooltipErrorTip: attachmentsErrorTooltip"><span data-bind="visible: 0 < attachmentsCount()"><b data-bind="text: attachmentsCount"></b> </span><i data-bind="css: { 'icon-attachment': 0 === attachmentsInProcessCount(), 'icon-spinner animated': 0 < attachmentsInProcessCount(), 'icon-white': 0 < attachmentsInErrorCount() }"></i></button></div></div><div class="pull-right" style="margin-right: 4px;"><div class="btn-group pull-right"><a class="btn first" data-tooltip-join="bottom" style="padding-left: 10px; padding-right: 10px;" data-bind="visible: addAttachmentEnabled(), initDom: composeUploaderButton, tooltip: 'COMPOSE/ATTACH_FILES', css: {'last': !(driveEnabled() && driveVisible()) && !(dropboxEnabled())}"><sup style="font-weight: bold; font-size: 100%; top: -0.3em;">+</sup><i class="icon-attachment"></i></a><a class="btn" data-tooltip-join="bottom" data-bind="visible: dropboxEnabled, command: dropboxCommand, tooltip: 'COMPOSE/DROPBOX', css: {'first': !addAttachmentEnabled(), 'last': !(driveEnabled() && driveVisible())}"><i class="icon-dropbox"></i></a><a class="btn last" data-tooltip-join="bottom" data-bind="visible: driveEnabled() && driveVisible(), command: driveCommand, tooltip: 'COMPOSE/GOOGLE_DRIVE', css: {'first': !addAttachmentEnabled() && !(driveEnabled() && driveVisible())}"><i class="icon-google-drive"></i></a></div></div></div></div></div></div></div><div class="attachmentAreaParent b-content" style="height: 200px; min-height: 200px" data-bind="nano: true, scrollerShadows: true, visible: attachmentsPlace, initResizeTrigger: [resizer(), 200, 57]"><div class="content g-scrollbox" data-scroller-shadows-content><div class="content-wrapper"><div class="b-attachment-place" data-bind="visible: addAttachmentEnabled() && dragAndDropEnabled() && dragAndDropVisible(), initDom: composeUploaderDropPlace, css: {'dragAndDropOver': dragAndDropOver}"><span class="i18n" data-i18n="COMPOSE/ATTACH_DROP_FILES_DESC"></span></div><ul class="attachmentList" data-bind="template: { name: 'ComposeAttachment', foreach: attachments }"></ul><div class="no-attachments-desc" data-bind="visible: 0 === attachments().length"><span class="i18n" data-i18n="COMPOSE/NO_ATTACHMENTS_HERE_DESC"></span></div></div></div></div><div class="textAreaParent" style="height: 200px; min-height: 200px" data-bind="visible: !attachmentsPlace(), initDom: composeEditorArea, initResizeTrigger: [resizer(), 200, 40]"></div></div></div></div></div></script><script id="PopupsTwoFactorConfiguration" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-two-factor-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="visible: viewEnable() || !lock(), command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/LEGEND_TWO_FACTOR_AUTH"></span></h3></div><div class="modal-body"><div class="form-horizontal" data-bind="visible: capaTwoFactor" style="margin-top: 10px;"><div class="control-group" data-bind="visible: twoFactorStatus"><div class="controls"><div style="display: inline-block" data-tooltip-join="top" data-bind="tooltip: viewTwoFactorEnableTooltip"><div data-bind="component: { name: 'Checkbox', params: { label: 'POPUPS_TWO_FACTOR_CFG/LABEL_ENABLE_TWO_FACTOR', enable: twoFactorAllowedEnable, value: viewEnable, inline: true } }"></div></div> <span class="i18n g-ui-link" data-bind="click: testTwoFactor, visible: twoFactorStatus" data-i18n="POPUPS_TWO_FACTOR_CFG/LINK_TEST"></span></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_USER"></span></label><div class="controls" style="padding-top: 5px;"><strong><span data-bind="text: viewUser"></span></strong><div style="padding-top: 15px;" data-bind="visible: lock"><blockquote><p class="muted i18n width100-on-mobile" style="width: 550px" data-i18n="POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_REQUIRE_DESC"></p></blockquote></div></div></div><div class="control-group" data-bind="visible: '' === viewSecret() && twoFactorStatus() && !clearing()"><div class="controls" style="padding-top: 5px;"><strong data-bind="visible: secreting">...</strong><span class="g-ui-link i18n" data-bind="click: showSecret, visible: !secreting()" data-i18n="POPUPS_TWO_FACTOR_CFG/BUTTON_SHOW_SECRET"></span></div></div><div class="control-group" data-bind="visible: '' !== viewSecret()"><label class="control-label"><span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_SECRET"></span></label><div class="controls" style="padding-top: 5px;"><strong data-bind="text: viewSecret"></strong> <span class="g-ui-link i18n" data-bind="click: hideSecret" data-i18n="POPUPS_TWO_FACTOR_CFG/BUTTON_HIDE_SECRET"></span><br /><br /><blockquote><p class="muted i18n width100-on-mobile" style="width: 550px" data-i18n="POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_SECRET_DESC"></p></blockquote><!-- ko if: '' !== viewUrl() --><img style="margin-left: -7px;" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQIW2P8DwQACgAD/il4QJ8AAAAASUVORK5CYII=" data-bind="attr: {'src': viewUrl}"/><!-- /ko --></div></div><div class="control-group" data-bind="visible: '' !== viewBackupCodes()"><label class="control-label"><span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/LABEL_TWO_FACTOR_BACKUP_CODES"></span></label><div class="controls" style="padding-top: 5px;"><pre data-bind="text: viewBackupCodes" style="width: 230px; word-break: break-word;"></pre><br /><blockquote><p class="muted i18n width100-on-mobile" style="width: 550px" data-i18n="POPUPS_TWO_FACTOR_CFG/TWO_FACTOR_BACKUP_CODES_DESC"></p></blockquote></div></div></div></div><div class="modal-footer"><a class="btn pull-left" data-bind="visible: lock, click: logout"><i class="icon-power"></i> <span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/BUTTON_LOGOUT"></span></a><a class="btn btn-danger" data-bind="click: clearTwoFactor, visible: twoFactorStatus"><i class="icon-remove" data-bind="css: {'icon-remove': !clearing(), 'icon-spinner animated': clearing()}" ></i> <span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/BUTTON_CLEAR"></span></a><a class="btn" data-bind="click: createTwoFactor, visible: !twoFactorStatus()"><i class="icon-play" data-bind="css: {'icon-play': !processing(), 'icon-spinner animated': processing()}" ></i> <span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/BUTTON_ACTIVATE"></span></a><a class="btn" data-bind="command: cancelCommand, visible: viewEnable() || !lock()"><i class="icon-ok" ></i> <span class="i18n" data-i18n="POPUPS_TWO_FACTOR_CFG/BUTTON_DONE"></span></a></div></div></div></div></script><script id="PopupsNewOpenPgpKey" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-open-pgp-key-generate-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_GENERATE_OPEN_PGP_KEYS/TITLE_GENERATE_OPEN_PGP_KEYS"></span></h3></div><div class="modal-body"><div class="form-horizontal"><div class="alert" data-bind="visible: '' !== submitError()"><button type="button" class="close" data-bind="click: function () { submitError('') }">×</button><span data-bind="text: submitError"></span></div><br /><div class="control-group" data-bind="css: {'error': email.error}"><label class="i18n control-label" data-i18n="POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_EMAIL"></label><div class="controls"><input type="email" class="inputEmail input-large" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: email, hasfocus: email.focus"/></div></div><div class="control-group"><label class="i18n control-label" data-i18n="POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_NAME"></label><div class="controls"><input type="text" class="inputName input-large" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: name"/></div></div><div class="control-group"><label class="i18n control-label" data-i18n="POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_PASSWORD"></label><div class="controls"><input type="password" class="inputPassword input-large" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: password"/></div></div><div class="control-group"><label class="i18n control-label" data-i18n="POPUPS_GENERATE_OPEN_PGP_KEYS/LABEL_KEY_BIT_LENGTH"></label><div class="controls"><select data-bind="value: keyBitLength, options: [2048, 4096]"></select></div></div></div></div><div class="modal-footer"><a class="btn buttonHenerateOpenPgpKey" data-bind="command: generateOpenPgpKeyCommand"><i data-bind="css: {'icon-key': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i> <span class="i18n" data-i18n="POPUPS_GENERATE_OPEN_PGP_KEYS/BUTTON_GENERATE_OPEN_PGP_KEYS"></span></a></div></div></div></div></script><script id="PopupsTwoFactorTest" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-two-factor-test-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_TWO_FACTOR_TEST/TITLE_TEST_CODE"></span></h3></div><div class="modal-body"><div class="form-horizontal"><br /><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_TWO_FACTOR_TEST/LABEL_CODE"></span></label><div class="controls"><input type="text" class="uiInput inputName" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: code, hasfocus: code.focused, onEnter: testCodeCommand"/></div></div></div></div><div class="modal-footer"><a class="btn" data-bind="command: testCodeCommand, css: { 'btn-success': true === code.status(), 'btn-danger': false === code.status() }"><i data-bind="css: {'icon-ok': !testing(), 'icon-spinner animated': testing(), 'icon-white': true === code.status() || false === code.status() }"></i> <span class="i18n" data-i18n="POPUPS_TWO_FACTOR_TEST/BUTTON_TEST"></span></a></div></div></div></div></script><script id="SettingsFiltersActionNone" type="text/html" data-cfasync="false"></script><script id="SettingsTemplates" type="text/html" data-cfasync="false"><div class="b-settings-templates g-ui-user-select-none"><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_TEMPLATES/LEGEND_TEMPLATES"></span> <i class="icon-spinner animated" style="margin-top: 5px" data-bind="visible: templates.loading"></i></div></div><a class="btn" data-bind="click: addNewTemplate"><i class="icon-user-add"></i> <span class="i18n" data-i18n="SETTINGS_TEMPLATES/BUTTON_ADD_TEMPLATE"></span></a><br /><br /><br /><div class="templates-list-wrp"><div class="templates-list-top-padding"></div><table class="table table-hover list-table templates-list" data-bind="i18nUpdate: templates"><colgroup><col /><col style="width: 150px"/><col style="width: 1%"/></colgroup><tbody data-bind="sortable: {data: templates, options: scrollableOptions('.templates-list-wrp')}"><tr class="template-item"><td class="e-action"><span class="template-img icon-user"></span><i class="icon-braille drag-handle"></i> <span class="template-name" data-bind="text: name"></span></td><td><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="css: {'delete-access': deleteAccess}, click: function(oTemplate) { $root.deleteTemplate(oTemplate); }"><span class="i18n" data-i18n="SETTINGS_TEMPLATES/DELETING_ASK"></span></a></td><td><span class="delete-template" data-bind="visible: !deleteAccess(), click: function (oTemplate) { $root.templateForDeletion(oTemplate); }"><i class="icon-trash"></i></span></td></tr></tbody></table></div></div></div></script><script id="PopupsFolderCreate" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-folder-create-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_CREATE_FOLDER/TITLE_CREATE_FOLDER"></span></h3></div><div class="modal-body"><div class="form-horizontal"><br /><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_CREATE_FOLDER/LABEL_NAME"></span></label><div class="controls"><input type="text" class="uiInput inputName" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: folderName, hasfocus: folderName.focused, onEnter: createFolderCommand"/></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_CREATE_FOLDER/LABEL_PARENT"></span></label><div class="controls"><select data-bind="options: parentFolderSelectList, value: selectedParentValue, optionsText: 'name', optionsValue: 'id', optionsAfterRender: defautOptionsAfterRender"></select></div></div></div></div><div class="modal-footer"><a class="btn buttonCreate" data-bind="command: createFolderCommand"><i class="icon-folder-add"></i> <span class="i18n" data-i18n="POPUPS_CREATE_FOLDER/BUTTON_CREATE"></span></a></div></div></div></div></script><script id="Login" type="text/html" data-cfasync="false"><div class="b-login-content"><div class="loginFormWrapper" data-bind="css: {'afterLoginHide': formHidden}"><center class="plugin-mark-Login-BeforeLogo"><!-- ko if: logoImg --><div class="logoWrapper plugin-mark-Login-AfterLogo"><img class="logoImg" data-bind="attr: {'src': logoImg }"/></div><!-- /ko --><div class="descWrapper thm-login-desc plugin-mark-Login-AfterLogoDescription" data-bind="visible: '' !== loginDescription"><span class="desc" data-bind="text: loginDescription"></span></div><div class="alert alertError" data-bind="visibleAnimated: '' !== submitError()"><button type="button" class="close" data-bind="click: function () { submitError('') }">×</button><span data-bind="text: submitError"></span><div data-bind="visible: '' !== submitErrorAddidional()"><br /><span data-bind="text: submitErrorAddidional"></span></div></div><div class="wrapper-parent"><div class="wrapper loginWelcomeForm thm-login-text" data-bind="css: {'welcome-on': welcome}"><!-- ko template: { name: 'LoginWelcome' } --><!-- /ko --></div><form class="wrapper submitting-pane loginForm thm-login thm-login-text" action="#/" data-bind="submit: submitForm, css: {'errorAnimated': formError, 'welcome-off': welcome, 'submitting': submitRequest()}"><div class="controls plugin-mark-Login-TopControlGroup" data-bind="css: {'error': emailError, 'animated': emailErrorAnimation}"><div class="input-append"><input type="email" class="i18n input-block-level inputEmail checkAutocomplete" name="RainLoopEmail" id="RainLoopEmail" style="padding-right: 35px;" autocomplete="email" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: email, hasFocus: emailFocus, disable: submitRequest" data-i18n="[placeholder]LOGIN/LABEL_EMAIL"/><span class="add-on"><i class="icon-mail"></i></span></div></div><div class="controls" data-bind="css: {'error': passwordError, 'animated': passwordErrorAnimation}"><div class="input-append"><input type="password" class="i18n input-block-level inputPassword checkAutocomplete" name="RainLoopPassword" id="RainLoopPassword" style="padding-right: 35px;" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: password, hasFocus: passwordFocus, disable: submitRequest" data-i18n="[placeholder]LOGIN/LABEL_PASSWORD"/><span class="add-on" tabindex="-1" data-tooltip-join="left" data-bind="command: submitCommand, tooltip: 'LOGIN/BUTTON_SIGN_IN'"><i class="icon-key" data-bind="visible: '' === password()"></i><button type="submit" class="btn-submit-icon-wrp" data-bind="visible: '' !== password()"><i class="icon-right-middle login-submit-icon"></i></button></span></div></div><div class="controls" data-bind="visible: additionalCode.visibility(), css: {'error': additionalCode.error, 'animated': additionalCode.errorAnimation}"><div class="input-append"><input type="text" class="i18n input-block-level inputAdditionalCode" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" style="padding-right: 35px;" data-bind="textInput: additionalCode, hasFocus: additionalCode.focused, disable: submitRequest" data-i18n="[placeholder]LOGIN/LABEL_VERIFICATION_CODE"/><span class="add-on"><i class="icon-key"></i></span></div></div><div class="controls plugin-mark-Login-BottomControlGroup" data-bind="visible: additionalCode.visibility()"><div class="additionalCodeSignMeLabel" data-bind="component: { name: 'CheckboxSimple', params: { label: 'LOGIN/LABEL_DONT_ASK_VERIFICATION_CODE', value: additionalCodeSignMe } }"></div></div><div class="controls controls-submit-wrp" data-bind="css: {'display-none': hideSubmitButton}"><button type="submit" class="btn btn-large btn-block buttonLogin" data-bind="command: submitCommand"><span class="i18n i18n-animation" data-i18n="LOGIN/BUTTON_SIGN_IN"></span></button></div><div class="controls clearfix" style="margin-bottom: 10px"><div class="pull-right social-buttons"><a href="#" tabindex="-1" class="social-button" data-bind="visible: googleGmailLoginEnabled, command: googleGmailCommand, tooltip: 'LOGIN/TITLE_SIGN_IN_GMAIL'"><i class="icon-mail"></i></a><a href="#" tabindex="-1" class="social-button" data-bind="visible: googleLoginEnabled, command: googleCommand, tooltip: 'LOGIN/TITLE_SIGN_IN_GOOGLE'"><i class="icon-google"></i></a><a href="#" tabindex="-1" class="social-button" data-bind="visible: facebookLoginEnabled, command: facebookCommand, tooltip: 'LOGIN/TITLE_SIGN_IN_FACEBOOK'"><i class="icon-facebook-alt"></i></a><a href="#" tabindex="-1" class="social-button" data-bind="visible: twitterLoginEnabled, command: twitterCommand, tooltip: 'LOGIN/TITLE_SIGN_IN_TWITTER'"><i class="icon-twitter"></i></a><a href="#" tabindex="-1" class="language-button" data-bind="visible: allowLanguagesOnLogin() && !socialLoginEnabled(), click: selectLanguage, tooltip: 'POPUPS_LANGUAGES/TITLE_LANGUAGES'"><i data-bind="css: langRequest() ? 'icon-spinner animated' : 'icon-world'"></i></a></div><div class="signMeLabel" data-bind="visible: signMeVisibility, component: { name: 'CheckboxSimple', params: { label: 'LOGIN/LABEL_SIGN_ME', labelAnimated: true, value: signMe } }"></div></div><div class="controls clearfix" data-bind="visible: '' !== forgotPasswordLinkUrl || '' !== registrationLinkUrl"><div class="forgot-link thm-forgot pull-left" data-bind="visible: '' !== forgotPasswordLinkUrl" style="text-align: center"><a href="#" target="_blank" class="g-ui-link" data-bind="attr: {href: forgotPasswordLinkUrl}, css: {'pull-right': '' !== registrationLinkUrl}"><span class="i18n" data-i18n="LOGIN/LABEL_FORGOT_PASSWORD"></span></a></div> <div class="registration-link thm-registration pull-right" data-bind="visible: '' !== registrationLinkUrl" style="text-align: center"><a href="#" target="_blank" class="g-ui-link" data-bind="attr: {href: registrationLinkUrl}, css: {'pull-left': '' !== forgotPasswordLinkUrl}"><span class="i18n" data-i18n="LOGIN/LABEL_REGISTRATION"></span></a></div></div></form></div><div class="e-mobile-switcher thm-mobile-switcher"><span data-bind="visible: !mobile"><i class="icon-mobile"></i> <a href="./?/MobileVersion/" tabindex="-1"><span class="i18n" data-i18n="MOBILE/BUTTON_MOBILE_VERSION"></span></a></span><span data-bind="visible: mobile"><i class="icon-laptop"></i> <a href="./?/DesktopVersion/" tabindex="-1"><span class="i18n" data-i18n="MOBILE/BUTTON_DESKTOP_VERSION"></span></a></span></div><div class="e-languages thm-languages plugin-mark-Login-BottomFooter" data-bind="visible: allowLanguagesOnLogin() && socialLoginEnabled()"><label class="flag-selector"><i data-bind="css: langRequest() ? 'icon-spinner animated' : 'icon-world'"></i> <span class="flag-name" tabindex="0" data-bind="text: languageFullName, click: selectLanguage, onSpace: selectLanguage, onEnter: selectLanguage, onTab: selectLanguageOnTab"></span></label></div></center></div><a href="#" onclick="return false;"></a><div class="loginAfter"></div></div></script><script id="PopupsFolderSystem" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-folder-system-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_SYSTEM_FOLDERS/TITLE_SYSTEM_FOLDERS"></span></h3></div><div class="modal-body"><div class="form-horizontal"><div class="alert" data-bind="visible: '' !== notification()"><span data-bind="text: notification"></span></div><br /><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_SYSTEM_FOLDERS/LABEL_SENT"></span></label><div class="controls"><select data-bind="options: folderSelectList, value: sentFolder, optionsText: 'name', optionsValue: 'id', optionsAfterRender: $root.defautOptionsAfterRender"></select></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_SYSTEM_FOLDERS/LABEL_DRAFTS"></span></label><div class="controls"><select data-bind="options: folderSelectList, value: draftFolder, optionsText: 'name', optionsValue: 'id', optionsAfterRender: defautOptionsAfterRender"></select></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_SYSTEM_FOLDERS/LABEL_SPAM"></span></label><div class="controls"><select data-bind="options: folderSelectList, value: spamFolder, optionsText: 'name', optionsValue: 'id', optionsAfterRender: $root.defautOptionsAfterRender"></select></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_SYSTEM_FOLDERS/LABEL_TRASH"></span></label><div class="controls"><select data-bind="options: folderSelectList, value: trashFolder, optionsText: 'name', optionsValue: 'id', optionsAfterRender: $root.defautOptionsAfterRender"></select></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="POPUPS_SYSTEM_FOLDERS/LABEL_ARCHIVE"></span></label><div class="controls"><select data-bind="options: folderSelectList, value: archiveFolder, optionsText: 'name', optionsValue: 'id', optionsAfterRender: $root.defautOptionsAfterRender"></select></div></div></div></div></div></div></script><script id="SettingsFiltersActionReject" type="text/html" data-cfasync="false"><div class="control-group" data-bind="css: {'error': actionValue.error}" style="margin-bottom: 0"><div class="controls"><textarea class="span5 i18n" data-bind="value: actionValue" style="height: 100px;" data-i18n="[placeholder]POPUPS_FILTER/REJECT_MESSAGE_LABEL"></textarea></div></div></script><script id="PopupsComposeOpenPgp" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-compose-open-pgp-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_COMPOSE_OPEN_PGP/TITLE_COMPOSE_OPEN_PGP"></span></h3></div><div class="modal-body"><div class="alert" data-bind="visible: '' !== notification()"><span data-bind="text: notification"></span></div><div class="row-fluid"><div class="span6"><div data-bind="component: { name: 'Checkbox', params: { label: 'POPUPS_COMPOSE_OPEN_PGP/LABEL_SIGN', value: sign } }, click: updateCommand"></div><div class="key-list" data-bind="visible: sign"><div class="key-list-wrp empty" data-bind="visible: !signKey()"> No private key found </div><div class="key-list-wrp" data-bind="visible: signKey()"><div class="key-list__item row-fluid"><div class="key-list__item-hash span4"> (<span data-bind="text: signKey() ? signKey().hash : ''"></span>) </div><div class="key-list__item-names span8"><!-- ko if: signKey() --><!-- ko foreach: signKey().users --><div class="key-list__item-name" data-bind="text: $data"></div><!-- /ko --><!-- /ko --></div></div></div></div></div><div class="span6"><div data-bind="component: { name: 'Checkbox', params: { label: 'POPUPS_COMPOSE_OPEN_PGP/LABEL_ENCRYPT', value: encrypt } }"></div><div class="key-list" data-bind="visible: encrypt"><div class="key-list-wrp empty" data-bind="visible: !encryptKeys() || encryptKeys().length === 0"> No public keys selected </div><div class="key-list-wrp" data-bind="visible: encryptKeys() && encryptKeys().length > 0"><!-- ko foreach: encryptKeys --><div class="key-list__item row-fluid"><div class="key-list__item-delete span1" data-bind="click: removable() ? $parent.deletePublickKey : null, css: {'disabled': !removable()}"><i class="icon-trash"></i></div><div class="key-list__item-hash span3" data-bind="visible: !empty"> (<span data-bind="text: hash"></span>) </div><div class="span8"><span class="key-list__item-names" data-bind="css: {'empty': empty}"><!-- ko foreach: users --><div class="key-list__item-name" data-bind="text: $data"></div><!-- /ko --></span><span class="key-list__item-error" data-bind="visible: empty"> (Public key not found) </span></div></div><!-- /ko --></div></div></div></div><div class="row-fluid key-actions"><div class="span6"><div data-bind="visible: sign()"><input type="password" class="inputPassword input-block-level i18n" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-i18n="[placeholder]POPUPS_COMPOSE_OPEN_PGP/LABEL_PASSWORD" data-bind="textInput: password, hasfocus: password.focus, onEnter: doCommand"/><div class="form-inline" data-bind="visible: 0 < privateKeysOptions().length"><select class="input-block-level" data-bind="options: privateKeysOptions, value: selectedPrivateKey, optionsCaption: privateKeysOptionsCaption, optionsText: 'name', optionsValue: 'id', optionsAfterRender: addOptionClass"></select></div></div></div><div class="span6"><div class="form-inline" data-bind="visible: encrypt() && 0 < publicKeysOptions().length"><select class="input-block-level" data-bind="options: publicKeysOptions, value: selectedPublicKey, optionsCaption: publicKeysOptionsCaption, optionsText: 'name', optionsValue: 'id', optionsAfterRender: addOptionClass"></select></div></div></div></div><div class="modal-footer"><button class="btn buttonDo" data-bind="command: doCommand, hasfocus: buttonFocus, enable: (sign() || encrypt()) && (!encrypt() || encrypt() && encryptKeys().length > 0)"><i data-bind="css: {'icon-key': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i> <span class="i18n" data-bind="visible: sign() && !encrypt()" data-i18n="POPUPS_COMPOSE_OPEN_PGP/BUTTON_SIGN"></span><span class="i18n" data-bind="visible: !sign() && encrypt()" data-i18n="POPUPS_COMPOSE_OPEN_PGP/BUTTON_ENCRYPT"></span><span class="i18n" data-bind="visible: (sign() && encrypt()) || (!sign() && !encrypt())" data-i18n="POPUPS_COMPOSE_OPEN_PGP/BUTTON_SIGN_AND_ENCRYPT"></span></button></div></div></div></div></script><script id="MailFolderListSystemItem" type="text/html" data-cfasync="false"><div class="e-item b-folder-system-item"><a class="e-link" data-bind="droppable: function (oEvent, oUi) { $root.messagesDrop($data, oUi); }, css: { 'selected': selected, 'selectable': selectable, 'print-count': 0 < printableUnreadCount().length, 'anim-action-class': actionBlink, 'is-inbox': isInbox }"><span class="badge pull-right count" data-bind="text: printableUnreadCount"></span> <span class="focused-poiner"></span><span class="name" data-bind="text: localName()"></span><span class="inbox-star-icon"><i class="icon-star"></i><i class="icon-star-empty"></i></span></a></div></script><script id="SettingsFiltersConditionMore" type="text/html" data-cfasync="false"><div class="control-group" data-bind="css: {'error': value.error}" style="margin-bottom: 0"><select class="span2" data-bind="options: $root.fieldOptions, value: field, optionsText: 'name', optionsValue: 'id'"></select> <input class="span2" type="text" data-bind="value: valueSecond"/> <select class="span2" data-bind="options: $root.typeOptions, value: type, optionsText: 'name', optionsValue: 'id'"></select> <input class="span3" type="text" data-bind="value: value"/> <span class="delete-action button-delete pull-right" style="margin-top: 5px;" data-bind="click: function (oCondition) { $root.removeCondition(oCondition); }"><i class="icon-trash"></i></span></div></script><script id="SettingsFilters" type="text/html" data-cfasync="false"><div class="b-settings-filters g-ui-user-select-none"><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_FILTERS/LEGEND_FILTERS"></span> <i class="icon-spinner animated" style="margin-top: 5px" data-bind="visible: filters.loading"></i></div></div><div class="row" data-bind="visible: inited() && !serverError()"><div class="span5 width100-on-mobile"><a class="btn" data-bind="click: addFilter"><i class="icon-plus"></i> <span class="i18n" data-i18n="SETTINGS_FILTERS/BUTTON_ADD_FILTER"></span></a> <a class="btn" data-tooltip-join="top" data-bind="visible: filterRaw.allow, click: function () { filterRaw.active(!filterRaw.active()) }, css: {'active': filterRaw.active }, tooltip: 'SETTINGS_FILTERS/BUTTON_RAW_SCRIPT'"><i class="icon-file-code"></i></a> <a class="btn hide-on-disabled-command" data-placement="bottom" data-join="top" data-bind="command: saveChangesCommand, tooltipErrorTip: saveErrorText, css: {'btn-danger': '' !== saveErrorText()}"><i data-bind="css: {'icon-floppy': !filters.saving(), 'icon-spinner animated': filters.saving()}"></i> <span class="i18n" data-i18n="SETTINGS_FILTERS/BUTTON_SAVE"></span></a></div></div><div class="row" data-bind="visible: haveChanges"><div class="span8 width100-on-mobile"><br /><div class="alert g-ui-user-select-none" style="margin-bottom: 0"><i class="icon-warning"></i> <span class="i18n" data-i18n="SETTINGS_FILTERS/CHACHES_NEED_TO_BE_SAVED_DESC"></span></div></div></div><div class="row" data-bind="visible: serverError"><div class="span8 width100-on-mobile"><div class="alert alert-error g-ui-user-select-none" style="margin-bottom: 0"><i class="icon-warning"></i> <span data-bind="text: serverErrorDesc"></span></div></div></div><br /><br /><div class="row"><div class="span8 width100-on-mobile"><div class="control-group" data-bind="css: {'error': filterRaw.error}, visible: inited() && filterRaw.allow() && filterRaw.active()"><div class="controls"><pre style="word-break: break-word;" data-bind="visible: '' !== filterRaw.capa()"><b class="i18n" data-i18n="SETTINGS_FILTERS/CAPABILITY_LABEL"></b>: <span data-bind="text: filterRaw.capa"></span></pre><textarea class="span8" style="height: 300px; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;" data-bind="value: filterRaw, valueUpdate: 'afterkeydown'"></textarea></div></div><div class="filters-list-wrp"><div class="filters-list-top-padding"></div><table class="table table-hover list-table filters-list g-ui-user-select-none" data-bind="visible: inited() && (!filterRaw.active() || !filterRaw.active()), i18nUpdate: filters"><colgroup><col style="width: 30px"/><col style="width: 16px"/><col /><col style="width: 140px"/><col style="width: 1%"/></colgroup><tbody data-bind="sortable: {data: filters, options: scrollableOptions('.filters-list-wrp')}" style="width: 600px"><tr class="filter-item"><td><span class="disabled-filter" data-bind="click: function () { $root.haveChanges(true); enabled(!enabled()); }"><i data-bind="css: {'icon-checkbox-checked': enabled, 'icon-checkbox-unchecked': !enabled()}"></i></span></td><td class="drag-wrapper"><i class="icon-braille drag-handle"></i></td><td class="e-action"><span class="filter-name" data-bind="text: name()"></span> <span class="filter-sub-name" data-bind="text: nameSub()"></span></td><td><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="css: {'delete-access': deleteAccess()}, click: function(oFilter) { $root.deleteFilter(oFilter); }"><span class="i18n" data-i18n="SETTINGS_FILTERS/DELETING_ASK"></span></a></td><td><span class="delete-filter" data-bind="visible: !deleteAccess() && canBeDeleted(), click: function (oFilter) { $root.filterForDeletion(oFilter); }"><i class="icon-trash"></i></span></td></tr></tbody></table></div></div></div></div></div></script><script id="SettingsOpenPGP" type="text/html" data-cfasync="false"><div class="b-settings-open-pgp g-ui-user-select-none"><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_OPEN_PGP/LEGEND_OPEN_PGP"></span></div></div><button class="btn" data-bind="click: addOpenPgpKey"><i class="icon-list-add"></i> <span class="i18n" data-i18n="SETTINGS_OPEN_PGP/BUTTON_ADD_OPEN_PGP_KEY"></span></button> <div style="display: inline-block" data-tooltip-join="left" data-bind="tooltip: isHttps ? '' : 'SETTINGS_OPEN_PGP/GENERATE_ONLY_HTTPS'"><button class="btn" data-bind="click: generateOpenPgpKey, disable: !isHttps"><i class="icon-key"></i> <span class="i18n" data-i18n="SETTINGS_OPEN_PGP/BUTTON_GENERATE_OPEN_PGP_KEYS"></span></button></div><br /><br /><div class="control-group"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_OPEN_PGP/LABEL_ALLOW_DRAFT_AUTOSAVE', value: allowDraftAutosave } }"></div></div></div><br /><table class="table table-hover list-table" data-bind="i18nUpdate: openpgpkeys"><colgroup><col /><col style="width: 1%"/><col style="width: 1%"/></colgroup><tbody><!-- ko foreach: openpgpkeysPrivate --><tr class="open-pgp-key-item"><td><span class="open-pgp-key-img i18n" data-i18n="[title]SETTINGS_OPEN_PGP/TITLE_PRIVATE"><i class="icon-lock"></i></span><span class="open-pgp-key-user"><!-- ko foreach: users --><div class="open-pgp-key-user-address" data-bind="text: $data"></div><!-- /ko --></span><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="css: {'delete-access': deleteAccess()}, click: function(openPgpKey) { $root.deleteOpenPgpKey(openPgpKey); }"><span class="i18n" data-i18n="SETTINGS_OPEN_PGP/DELETING_ASK"></span></a></td><td><span class="delete-open-pgp-key" data-bind="visible: !deleteAccess(), click: function (openPgpKey) { $root.openPgpKeyForDeletion(openPgpKey); }"><i class="icon-trash"></i></span></td><td><span class="view-open-pgp-key" data-bind="click: function (openPgpKey) { $root.viewOpenPgpKey(openPgpKey); }"><i class="icon-eye"></i></span></td></tr><!-- /ko --><!-- ko foreach: openpgpkeysPublic --><tr class="open-pgp-key-item"><td><span class="open-pgp-key-img i18n" data-i18n="[title]SETTINGS_OPEN_PGP/TITLE_PUBLIC"><i class="icon-key"></i></span><span class="open-pgp-key-user"><!-- ko foreach: users --><div class="open-pgp-key-user-address"><span data-bind="text: $data"></span> (<span class="open-pgp-key-id" data-bind="text: $parent.id"></span>) </div><!-- /ko --></span><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="css: {'delete-access': deleteAccess()}, click: function(oOpenPGP) { $root.deleteOpenPgpKey(oOpenPGP); }"><span class="i18n" data-i18n="SETTINGS_OPEN_PGP/DELETING_ASK"></span></a></td><td><span class="delete-open-pgp-key" data-bind="visible: !deleteAccess(), click: function (openPgpKey) { $root.openPgpKeyForDeletion(openPgpKey); }"><i class="icon-trash"></i></span></td><td><span class="view-open-pgp-key" data-bind="click: function (openPgpKey) { $root.viewOpenPgpKey(openPgpKey); }"><i class="icon-eye"></i></span></td></tr><!-- /ko --></tbody></table></div></script><script id="SettingsFolderItem" type="text/html" data-cfasync="false"><tr class="folder-item" data-bind="css: { 'selectable': selectable, 'system': isSystemFolder }"><td><span class="folder-padding" data-bind="css: 'deep-' + deep"> </span><span class="folder-name" data-bind="text: name, visible: !edited(), css: { 'e-action': canBeEdited, 'can-be-edited': canBeEdited }, click: function (oFolder) { $root.folderForEdit(oFolder); }"></span> <span class="folder-system-name" data-bind="text: manageFolderSystemName, visible: isSystemFolder"></span><input type="text" class="folder-name-input" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: nameForEdit, visible: edited, hasfocus: edited, onEnter: function () { $root.folderEditOnEnter($data); }, onEsc: function () { $root.folderEditOnEsc($data); }"/><a class="btn btn-small btn-small-small btn-danger pull-right button-delete button-delete-transitions" data-bind="css: {'delete-access': deleteAccess()}, click: function() { $root.deleteFolder($data); }"><span class="i18n" data-i18n="SETTINGS_FOLDERS/DELETING_ASK"></span></a></td><td class="delete-folder-parent"><span class="delete-folder" data-bind="visible: canBeDeleted() && !deleteAccess(), click: function (oFolder) { $root.folderForDeletion(oFolder); }"><i class="icon-trash"></i></span></td><td class="subscribe-folder-parent"><span class="unsubscribe-folder" data-bind="visible: canBeSubScribed() && !subScribed(), click: function(oFolder) { $root.subscribeFolder(oFolder); }"><i class="icon-eye"></i></span><span class="subscribe-folder" data-bind="visible: canBeSubScribed() && subScribed(), click: function(oFolder) { $root.unSubscribeFolder(oFolder); }"><i class="icon-eye"></i></span></td><td class="check-folder-parent" data-bind="visible: $root.displaySpecSetting"><span class="uncheck-folder" data-bind="visible: canBeChecked() && subScribed() && !checkable(), click: function(oFolder) { $root.checkableTrueFolder(oFolder); }"><i class="icon-check-mark-circle-two"></i></span><span class="check-folder" data-bind="visible: canBeChecked() && subScribed() && checkable(), click: function(oFolder) { $root.checkableFalseFolder(oFolder); }"><i class="icon-check-mark-circle-two"></i></span></td></tr><!-- ko template: { name: 'SettingsFolderItem', foreach: subFolders } --><!-- /ko --></script><script id="SettingsFiltersActionForward" type="text/html" data-cfasync="false"><div class="control-group" data-bind="css: {'error': actionValue.error}"><div class="controls"><input type="text" class="span3 i18n" data-bind="value: actionValue" data-i18n="[placeholder]POPUPS_FILTER/EMAIL_LABEL"/></div></div><div class="control-group"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'POPUPS_FILTER/KEEP_LABEL', value: actionKeep } }"></div><div data-bind="visible: $root.allowMarkAsRead, component: { name: 'Checkbox', params: { label: 'POPUPS_FILTER/MARK_AS_READ_LABEL', value: actionMarkAsRead } }"></div></div></div></script><script id="PopupsIdentity" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-identity-content" data-bind="modal: modalVisibility"><div><div class="modal-header g-ui-user-select-none"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span data-bind="visible: !edit()" class="i18n" data-i18n="POPUPS_IDENTITY/TITLE_ADD_IDENTITY"></span><span data-bind="visible: edit" class="i18n" data-i18n="POPUPS_IDENTITY/TITLE_UPDATE_IDENTITY"></span></h3></div><div class="modal-body"><div class="form-horizontal g-ui-user-select-none"><div class="alert" data-bind="visible: '' !== submitError()"><button type="button" class="close" data-bind="click: function () { submitError('') }">×</button><span data-bind="text: submitError"></span></div><br /><div class="control-group" data-bind="visible: !owner(), css: {'error': email.hasError}"><label class="i18n control-label" data-i18n="POPUPS_IDENTITY/LABEL_EMAIL"></label><div class="controls"><input type="email" class="inputEmail input-xlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: email, onEnter: addOrEditIdentityCommand, hasfocus: email.focused"/></div></div><div class="control-group" data-bind="visible: owner"><label class="i18n control-label" data-i18n="POPUPS_IDENTITY/LABEL_EMAIL"></label><div class="controls"><div class="textEmail" data-bind="text: email"></div></div></div><div class="control-group"><label class="i18n control-label" data-i18n="POPUPS_IDENTITY/LABEL_NAME"></label><div class="controls"><input type="text" class="inputName input-xlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: name, onEnter: addOrEditIdentityCommand, hasfocus: name.focused"/></div></div><div class="control-group" data-bind="visible: showReplyTo, css: {'error': replyTo.hasError}"><label class="i18n control-label" data-i18n="POPUPS_IDENTITY/LABEL_REPLY_TO"></label><div class="controls"><input type="text" class="inputReplyTo input-xlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: replyTo, onEnter: addOrEditIdentityCommand, hasfocus: replyTo.focused"/></div></div><div class="control-group" data-bind="visible: showBcc, css: {'error': bcc.hasError}"><label class="i18n control-label" data-i18n="POPUPS_IDENTITY/LABEL_BCC"></label><div class="controls"><input type="text" class="inputBcc input-xlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: bcc, onEnter: addOrEditIdentityCommand, hasfocus: bcc.focused"/></div></div><div class="control-group" data-bind="visible: !showReplyTo() || !showBcc()"><div class="controls"><span data-bind="visible: !showReplyTo()"><span class="i18n g-ui-link" data-i18n="POPUPS_IDENTITY/LABEL_REPLY_TO" data-bind="click: function () { showReplyTo(true); }"></span> </span><span data-bind="visible: !showBcc()"><span class="i18n g-ui-link" data-i18n="POPUPS_IDENTITY/LABEL_BCC" data-bind="click: function () { showBcc(true); }"></span></span></div></div></div><hr /><div class="form-horizontal"><div class="control-group g-ui-user-select-none"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'POPUPS_IDENTITY/LABEL_SIGNATURE_INSERT_BEFORE', value: signatureInsertBefore } }"></div></div></div><div class="control-group"><div class="e-signature-place" data-bind="editor: signature"></div></div></div></div><div class="modal-footer"><a class="btn buttonAddIdentity" data-bind="command: addOrEditIdentityCommand"><i data-bind="visible: !edit(), css: {'icon-user-add': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i><i data-bind="visible: edit, css: {'icon-ok': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i> <span data-bind="visible: !edit()" class="i18n" data-i18n="POPUPS_IDENTITY/BUTTON_ADD_IDENTITY"></span><span data-bind="visible: edit" class="i18n" data-i18n="POPUPS_IDENTITY/BUTTON_UPDATE_IDENTITY"></span></a></div></div></div></div></script><script id="MailMessageListItemNoPreviewPane" type="text/html" data-cfasync="false"><div class="messageListItem e-single-line" data-bind="css: lineAsCss()"><div class="sidebarParent"> </div><div class="delimiter"></div><div class="wrapper"><div class="dateParent actionHandle dragHandle"><span class="date" data-moment-format="SHORT" data-moment-format-title="FULL" data-bind="moment: dateTimeStampInUTC"></span></div><div class="threadsParent" data-bind="visible: 1 < threadsLen()"><span class="threads-len"><span class="threads-len-data"><span data-bind="text: threadsLen"></span><i class="icon-right-mini"></i></span></span></div><div class="checkedParent"><i class="checkboxMessage" data-bind="css: checked() ? 'checkboxMessage icon-checkbox-checked' : 'checkboxMessage icon-checkbox-unchecked'"></i></div><div class="flagParent"><span class="flagOn"><i class="icon-star"></i></span><span class="flagOnHalf"><i class="icon-star-empty"></i></span><span class="flagOff"><i class="icon-star-empty"></i></span></div><div class="senderParent actionHandle dragHandle"><span class="replyFlag"><i class="icon-reply"></i> </span><span class="forwardFlag"><i class="icon-forward"></i> </span><span class="sender" data-bind="text: senderEmailsString, attr: {'title': senderClearEmailsString}"></span> </div><div class="attachmentParent actionHandle dragHandle"><span class="attachment"><i data-bind="css: attachmentIconClass"></i></span></div><div class="subjectParent actionHandle dragHandle"><b class="importantMark">!</b><span class="subject emptySubjectText" data-bind="text: $root.emptySubjectValue"></span><span class="subject-prefix" data-bind="text: subjectPrefix"></span><span class="subject-suffix" data-bind="text: subjectSuffix"></span></div><div class="clearfix"></div></div></div></script><script id="MailFolderListItem" type="text/html" data-cfasync="false"><div class="e-item" data-bind="visible: visible, css: { 'i-am-inbox-wrapper': isInbox }"><a class="e-link" data-bind="droppable: function (oEvent, oUi) { $root.messagesDrop($data, oUi); }, droppableOver: function (oEvent, oUi) { $root.messagesDropOver($data, oUi); }, droppableOut: function (oEvent, oUi) { $root.messagesDropOut($data, oUi); }, css: { 'i-am-inbox': isInbox, 'selected': selected() && !isSystemFolder(), 'selectable': selectableForFolderList, 'hidden' : hidden, 'print-count': hasUnreadMessages, 'unread-sub': hasSubScribedUnreadMessagesSubfolders, 'system': isSystemFolder, 'anim-action-class': actionBlink }"><span class="badge pull-right count" data-bind="text: printableUnreadCount"></span><i data-bind="css: collapsedCss()"></i><span class="focused-poiner"></span><span class="name" data-bind="text: name"></span></a><div class="b-sub-folders" data-bind="template: { name: 'MailFolderListItem', foreach: subFolders }, css: { 'collapsed': collapsed() }"></div></div></script><script id="SettingsChangePassword" type="text/html" data-cfasync="false"><div class="b-settings-general g-ui-user-select-none"><div class="form-horizontal long-label"><div class="legend"><span class="i18n" data-i18n="SETTINGS_CHANGE_PASSWORD/LEGEND_CHANGE_PASSWORD"></span></div><div class="row"><div class="span6"><div class="control-group" data-bind="css: {'error': currentPassword.error}"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_CHANGE_PASSWORD/LABEL_CURRENT_PASSWORD"></span></label><div class="controls"><input type="password" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: currentPassword"/></div></div><div class="control-group" data-bind="css: {'error': passwordMismatch}"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_CHANGE_PASSWORD/LABEL_NEW_PASSWORD"></span></label><div class="controls"><input type="password" autocomplete="new-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: newPassword"/></div></div><div class="control-group" data-bind="css: {'error': passwordMismatch}"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_CHANGE_PASSWORD/LABEL_REPEAT_PASSWORD"></span></label><div class="controls"><input type="password" autocomplete="new-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: newPassword2"/></div></div><div class="control-group"><div class="controls"><a class="btn" data-bind="command: saveNewPasswordCommand, css: { 'btn-success': passwordUpdateSuccess, 'btn-danger': passwordUpdateError }"><i data-bind="css: {'icon-spinner animated': changeProcess(), 'icon-key': !changeProcess(), 'icon-white': passwordUpdateSuccess() || passwordUpdateError() }"></i> <span class="i18n" data-i18n="SETTINGS_CHANGE_PASSWORD/BUTTON_UPDATE_PASSWORD"></span></a></div></div></div><div class="span4 alert alert-error alert-null-left-margin" data-bind="visible: '' !== errorDescription(), text: errorDescription"></div></div></div></div></script><script id="PopupsWindowSimpleMessage" type="text/html" data-cfasync="false"><style> html, body { margin: 0; padding: 0; background-color: #fff; font-size: 13px; font-family: arial, sans-serif; } .tbl {width: 100%; font-size: 12px; font-family: arial, sans-serif;} .tt {padding: 5px; border:solid #ddd; border-width:0px 0px 1px 0px} .tv {padding: 5px; border:solid #ddd; border-width:0px 0px 1px 1px} .tb {padding: 15px} a {color: blue; text-decoration: underline} a:visited {color: #609} a:active {color: red} blockquote {border-left: 2px solid black; margin: 0; padding: 0px 10px} pre { margin: 0px; padding: 0px; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; background: #fff; border: none; white-space: pre-wrap; word-wrap: break-word; word-break: break-all; } .text-body { font-size: 13px; } .text-body.html div[data-x-div-type=body] { margin: 15px; } .text-body.html pre { font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; white-space: pre-wrap; word-wrap: break-word; word-break: break-all; } .text-body.plain { padding: 15px; white-space: pre-wrap; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; } .text-body.plain pre { margin: 0px; padding: 0px; background: #fff; border: none; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; white-space: pre-wrap; word-wrap: break-word; word-break: break-all; } .text-body.plain blockquote { border-left: 2px solid blue; color: blue; } .text-body.plain blockquote blockquote { border-left: 2px solid green; color: green; } .text-body.plain blockquote blockquote blockquote { border-left: 2px solid red; color: red; } </style><table cellpadding="0" cellspacing="0" class="tbl"><tbody><tr><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_FROM"></td><td class="tv" data-bind="text: popupFrom"></td></tr><tr><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_TO"></td><td class="tv" data-bind="text: popupTo"></td></tr><tr data-bind="visible: '' !== popupCc"><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_CC"></td><td class="tv" data-bind="text: popupCc"></td></tr><tr data-bind="visible: '' !== popupBcc"><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_BCC"></td><td class="tv" data-bind="text: popupBcc"></td></tr><tr data-bind="visible: '' !== popupReplyTo"><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_REPLY_TO"></td><td class="tv" data-bind="text: popupReplyTo"></td></tr><tr data-bind="visible: '' !== popupDate"><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_DATE"></td><td class="tv" data-bind="text: popupDate"></td></tr><tr><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_SUBJECT"></td><td class="tv" data-bind="text: popupSubject"></td></tr><tr data-bind="visible: '' !== popupAttachments"><td class="tt i18n" data-i18n="MESSAGE/PRINT_LABEL_ATTACHMENTS"></td><td class="tv" data-bind="text: popupAttachments"></td></tr><tr><td colspan="2" class="tb"><div class="text-body" data-bind="html: popupBody, css: {'plain': !popupIsHtml, 'html': popupIsHtml}"></div></td></tr></tbody></table></script><script id="SettingsPane" type="text/html" data-cfasync="false"><div class="b-settings b-settins-right"><div class="b-toolbar" style="padding-left: 0"><div class="btn-toolbar" style="margin-top: 2px;"><div class="btn-group" data-bind="visible: mobile && leftPanelDisabled()"><a class="btn btn-thin-2 single" data-bind="click: showLeft"><i class="icon-right-middle"></i></a></div><div class="btn-group" data-bind="visible: mobile && !leftPanelDisabled()" style="margin-left: -1px"><a class="btn btn-thin-2 single" data-bind="click: hideLeft"><i class="icon-left-middle"></i></a></div><a class="btn button-back" data-bind="click: backToMailBoxClick"><i class="icon-left"></i> <span class="i18n i18n-animation" data-i18n="SETTINGS_LABELS/BUTTON_BACK"></span></a></div></div><div class="b-content" data-bind="nano: true, scrollerShadows: true"><div class="content g-scrollbox" data-scroller-shadows-content><div class="content-wrapper"><div id="rl-settings-subscreen" class="b-settings-content" style="position: relative; z-index: 2"></div></div></div></div></div></script><script id="SettingsFolders" type="text/html" data-cfasync="false"><div class="b-settings-folders g-ui-user-select-none row" data-bind="css: { 'ignore-folder-subscribe': !useImapSubscribe }"><div class="span8 width100-on-mobile"><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_FOLDERS/LEGEND_FOLDERS"></span> <i class="icon-spinner animated" style="margin-top: 5px" data-bind="visible: loading"></i></div></div><a class="btn" data-bind="click: createFolder"><i class="icon-folder-add"></i> <span class="i18n" data-i18n="SETTINGS_FOLDERS/BUTTON_CREATE"></span></a> <a class="btn" data-bind="click: systemFolder"><i class="icon-wrench"></i> <span class="i18n" data-i18n="SETTINGS_FOLDERS/BUTTON_SYSTEM"></span></a><div class="alert folders-list-error" data-bind="visible: folderList.optimized"><b class="i18n" data-i18n="SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_1"></b><br /><span class="i18n" data-i18n="SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_2"></span></div><div class="alert folders-list-error" data-bind="visible: '' !== folderList.error()"><button type="button" class="close" data-bind="click: function () { folderList.error(''); }">×</button><span data-bind="text: folderList.error"></span></div><table class="table table-hover list-table" data-bind="i18nUpdate: folderList" style="margin-top: 40px"><colgroup><col /><col style="width: 1%"/><col style="width: 1%"/><col style="width: 1%" data-bind="visible: displaySpecSetting"/></colgroup><tbody data-bind="template: { name: 'SettingsFolderItem', foreach: folderList }"></tbody></table></div><div class="span4 hide-on-mobile" style="position: relative" data-bind="visible: '' !== folderListHelp()"><div class="alert alert-info" style="position: fixed"><span data-bind="text: folderListHelp"></span></div></div></div></script><script id="PopupsAddOpenPgpKey" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-open-pgp-key-add-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_IMPORT_OPEN_PGP_KEY/TITLE_IMPORT_OPEN_PGP_KEY"></span></h3></div><div class="modal-body"><div class="alert" data-bind="visible: key.error() && key.errorMessage(), text: key.errorMessage"></div><div class="form-horizontal"><div class="control-group" data-bind="css: {'error': key.error}"><textarea class="inputKey input-xxlarge" rows="14" autocomplete="off" data-bind="value: key, hasfocus: key.focus"></textarea></div></div></div><div class="modal-footer"><a class="btn buttonAddAccount" data-bind="command: addOpenPgpKeyCommand"><i class="icon-list-add"></i> <span class="i18n" data-i18n="POPUPS_IMPORT_OPEN_PGP_KEY/BUTTON_IMPORT_OPEN_PGP_KEY"></span></a></div></div></div></div></script><script id="SettingsMenu" type="text/html" data-cfasync="false"><div class="b-settins-left g-ui-user-select-none"><div class="b-content thm-settings-menu opacity-on-panel-disabled"><div class="b-settings-menu" data-bind="foreach: menu"><!-- ko if: disabled --><span class="e-item disabled"><span class="i18n e-link" data-bind="attr: { 'data-i18n': label }"></span></span><!-- /ko --><!-- ko ifnot: disabled --><a class="e-item selectable" href="#" data-bind="css: {'selected': selected }, attr: { 'href': $root.link(route) }"><span class="i18n e-link" data-bind="attr: { 'data-i18n': label }"></span></a><!-- /ko --></div></div><div class="b-content show-on-panel-disabled" data-bind="click: function () { leftPanelDisabled(false); }"></div><div class="b-footer"><nobr><div class="btn-toolbar"><div class="btn-group"><a class="btn single buttonResize" data-bind="click: function () { leftPanelDisabled(!leftPanelDisabled()); }"><i data-bind="css: {'icon-resize-out': leftPanelDisabled(), 'icon-resize-in': !leftPanelDisabled()}"></i></a></div></div></nobr></div></div></script><script id="PopupsContacts" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-contacts-content" data-bind="modal: modalVisibility"><div class="modal-header b-header-toolbar g-ui-user-select-none"><button type="button" class="close" data-bind="command: cancelCommand">×</button><div class="btn-toolbar"><div class="btn-group"><a class="btn single button-create-contact" data-bind="command: newCommand"><i class="icon-plus"></i> <span class="i18n" data-i18n="CONTACTS/BUTTON_ADD_CONTACT"></span></a></div><div class="btn-group"><a class="btn single btn-success button-new-message" data-bind="command: newMessageCommand"><i class="icon-mail icon-white"></i></a></div><div class="btn-group"><a class="btn single button-delete" data-bind="command: deleteCommand"><i class="icon-trash"></i></a></div><div class="btn-group dropdown colored-toggle" data-bind="registrateBootstrapDropdown: true"><a id="contacts-more-dropdown-id" class="btn single dropdown-toggle buttonMore" href="#" tabindex="-1" data-toggle="dropdown"><i data-bind="css: {'icon-list': !contacts.importing() && !contacts.syncing(), 'icon-spinner animated': contacts.importing() || contacts.syncing()}"></i></a><ul class="dropdown-menu g-ui-menu pull-right" role="menu" aria-labelledby="contacts-more-dropdown-id"><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="initDom: importUploaderButton"><i data-bind="css: {'icon-import': !contacts.importing(), 'icon-spinner animated': contacts.importing}"></i> <span class="i18n" data-i18n="CONTACTS/BUTTON_IMPORT"></span></a></li><li class="divider" role="presentation" data-bind="visible: allowExport"></li><li class="e-item" role="presentation" data-bind="visible: allowExport"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: exportCsv"><i data-bind="css: {'icon-export': !contacts.exportingCsv(), 'icon-spinner animated': contacts.exportingCsv}"></i> <span class="i18n" data-i18n="CONTACTS/BUTTON_EXPORT_CSV"></span></a></li><li class="e-item" role="presentation" data-bind="visible: allowExport" ><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: exportVcf"><i data-bind="css: {'icon-export': !contacts.exportingVcf(), 'icon-spinner animated': contacts.exportingVcf}"></i> <span class="i18n" data-i18n="CONTACTS/BUTTON_EXPORT_VCARD"></span></a></li><li class="divider" role="presentation" data-bind="visible: enableContactsSync() && allowContactsSync()"></li><li class="e-item" role="presentation" data-bind="visible: enableContactsSync() && allowContactsSync()"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: syncCommand"><i data-bind="css: {'icon-sync': !contacts.syncing(), 'icon-spinner animated': contacts.syncing}"></i> <span class="i18n" data-i18n="CONTACTS/BUTTON_SYNC"></span></a></li></ul></div></div></div><div class="modal-body" style="position: relative;"><div class="b-list-toolbar"><input type="text" class="i18n span3 e-search" placeholder="Search" autocorrect="off" autocapitalize="off" data-i18n="[placeholder]CONTACTS/SEARCH_INPUT_PLACEHOLDER" data-bind="value: search"/></div><div class="b-list-content g-ui-user-select-none" data-bind="nano: true, scrollerShadows: true, css: {'hideContactListCheckbox': !useCheckboxesInList()}"><div class="content g-scrollbox" data-scroller-shadows-content><div class="content-wrapper"><div class="listClear" data-bind="visible: viewClearSearch() && '' !== search()"><span class="g-ui-link i18n" data-i18n="CONTACTS/CLEAR_SEARCH" data-bind="command: clearCommand"></span></div><div class="listEmptyList" data-bind="visible: 0 === contacts().length && '' === search() && !contacts.loading()"><span class="i18n" data-i18n="CONTACTS/EMPTY_LIST"></span></div><div class="listEmptyListLoading" data-bind="visible: 0 === contacts().length && '' === search() && contacts.loading()"><span class="i18n" data-i18n="CONTACTS/LIST_LOADING"></span><span class="textLoadingAnimationD1">.</span><span class="textLoadingAnimationD2">.</span><span class="textLoadingAnimationD3">.</span></div><div class="listEmptySearchList" data-bind="visible: 0 === contacts().length && '' !== search() && !contacts.loading()"><span class="i18n" data-i18n="CONTACTS/EMPTY_SEARCH"></span></div><div class="e-contact-foreach g-ui-user-select-none" data-bind="foreach: contacts, visible: 0 < contacts().length"><div class="e-contact-item g-ui-user-select-none" data-bind="css: lineAsCss()"><div class="sidebarParent"> </div><div class="wrapper"><div class="checkedParent"><i class="checkboxItem" data-bind="css: checked() ? 'checkboxMessage icon-checkbox-checked' : 'checkboxMessage icon-checkbox-unchecked'"></i></div><div class="shareParent actionHandle"><i class="icon-share"></i></div><div class="nameParent actionHandle"><span class="listName" data-bind="text: display"></span> </div></div></div></div></div></div></div><div class="b-list-footer-toolbar"><div class="pull-right footer-pager"><!-- ko template: { name: 'Pagenator', data: contactsPagenator } --><!-- /ko --></div></div><div class="b-view-content-toolbar btn-toolbar" data-bind="css: {'read-only': viewReadOnly}"><div class="btn-group pull-right dropdown colored-toggle button-add-prop" data-bind="visible: !emptySelection(), registrateBootstrapDropdown: true"><a id="button-add-prop-dropdown-id" href="#" tabindex="-1" class="btn single dropdown-toggle" data-toggle="dropdown"><span class="i18n" data-i18n="CONTACTS/ADD_MENU_LABEL"></span> <span class="caret"></span></a><ul class="dropdown-menu g-ui-menu" style="text-align: left" tabindex="-1" role="menu" aria-labelledby="button-add-prop-dropdown-id"><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: addNewEmail"><i class="icon-none"></i> <span class="i18n" data-i18n="CONTACTS/ADD_MENU_EMAIL"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: addNewPhone"><i class="icon-none"></i> <span class="i18n" data-i18n="CONTACTS/ADD_MENU_PHONE"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: addNewWeb"><i class="icon-none"></i> <span class="i18n" data-i18n="CONTACTS/ADD_MENU_URL"></span></a></li><li class="divider" role="presentation"></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: addNewNickname"><i class="icon-none"></i> <span class="i18n" data-i18n="CONTACTS/ADD_MENU_NICKNAME"></span></a></li><!-- <li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="click: addNewAddress"><span class="i18n" data-i18n="CONTACTS/ADD_MENU_ADDRESS"></span></a></li>--></ul></div><div class="btn-group pull-right"> </div><div class="btn-group pull-right"><button class="btn single button-save-contact" data-bind="visible: !emptySelection(), command: saveCommand, css: {'dirty': watchDirty}"><i data-bind="css: {'icon-ok': !viewSaving(), 'icon-spinner animated': viewSaving()}"></i> <span class="i18n" data-i18n="CONTACTS/BUTTON_CREATE_CONTACT" data-bind="visible: '' === viewID()"></span><span class="i18n" data-i18n="CONTACTS/BUTTON_UPDATE_CONTACT" data-bind="visible: '' !== viewID()"></span></button></div></div><div class="b-view-content" data-bind="nano: true, scrollerShadows: true, css: {'read-only': viewReadOnly}"><div class="content g-scrollbox" data-scroller-shadows-content><div class="content-wrapper"><div class="b-contact-view-desc" data-bind="visible: emptySelection"><span class="i18n" data-i18n="CONTACTS/CONTACT_VIEW_DESC"></span></div><div data-bind="visible: !emptySelection()"><div class="form-horizontal top-part"><div class="control-group" data-bind="visible: !viewReadOnly() || 0 < viewPropertiesEmailsNonEmpty().length"><label class="control-label remove-padding-top fix-width"><i class="icon-user iconsize24"></i></label><div class="controls fix-width"><div data-bind="foreach: viewPropertiesNames"><div class="property-line"><span class="contactValueStatic" data-bind="text: value"></span><input type="text" class="contactValueInput" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, hasFocus: focused, valueUpdate: 'keyup', attr: {'placeholder': placeholderValue}"/></div></div><div data-bind="visible: 0 < viewPropertiesOther().length, foreach: viewPropertiesOther"><div class="property-line"><!-- ko if: !largeValue() --><span class="contactValueStatic" data-bind="text: value"></span><input type="text" class="contactValueInput" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, hasFocus: focused, valueUpdate: 'keyup', attr: {'placeholder': placeholderValue}"/><!-- /ko --><!-- ko if: largeValue --><span class="contactValueTextAreaStatic" data-bind="text: value"></span><textarea class="contactValueTextArea" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, hasFocus: focused, valueUpdate: 'keyup', attr: {'placeholder': placeholderValue}"></textarea><!-- /ko --></div></div></div></div><div class="control-group" data-bind="visible: !viewReadOnly() || 0 < viewPropertiesEmails().length"><label class="control-label remove-padding-top fix-width"><i class="icon-at iconsize24" data-tooltip-join="right" data-bind="tooltip: 'CONTACTS/LABEL_EMAIL'"></i></label><div class="controls fix-width"><div data-bind="foreach: viewPropertiesEmails"><div class="property-line"><span class="contactValueStatic" data-bind="text: value"></span><input type="text" class="contactValueInput" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, hasFocus: focused, valueUpdate: 'keyup'"/></div></div><a href="javascript:void(0);" class="g-ui-link add-link i18n" data-bind="visible: !viewReadOnly(), click: addNewEmail" data-i18n="CONTACTS/LINK_ADD_EMAIL"></a></div></div><div class="control-group" data-bind="visible: 0 < viewPropertiesPhones().length"><label class="control-label remove-padding-top fix-width"><i class="icon-telephone iconsize24" data-tooltip-join="right" data-bind="tooltip: 'CONTACTS/LABEL_PHONE'"></i></label><div class="controls fix-width"><div data-bind="foreach: viewPropertiesPhones"><div class="property-line"><span class="contactValueStatic" data-bind="text: value"></span><input type="text" class="contactValueInput" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, hasFocus: focused, valueUpdate: 'keyup'"/></div></div></div></div><div class="control-group" data-bind="visible: 0 < viewPropertiesWeb().length"><label class="control-label remove-padding-top fix-width"><i class="icon-earth iconsize24" data-tooltip-join="right" data-bind="tooltip: 'CONTACTS/LABEL_WEB'"></i></label><div class="controls fix-width"><div data-bind="foreach: viewPropertiesWeb"><div class="property-line"><span class="contactValueLargeStatic" data-bind="text: value"></span><input type="text" class="contactValueInputLarge" placeholder="http://" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: value, hasFocus: focused, valueUpdate: 'keyup'"/></div></div></div></div><div class="control-group"><div class="controls fix-width"><br /><br /></div></div></div><!-- <div class="e-read-only-sign"><i class="icon-lock iconsize24" data-tooltip-join="right" data-bind="tooltip: 'CONTACTS/LABEL_READ_ONLY'"></i></div>--></div></div></div></div></div></div></div></script><script id="PopupsTemplate" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-template-add-content" data-bind="modal: modalVisibility"><div><div class="modal-header g-ui-user-select-none"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span data-bind="visible: '' === id()" class="i18n" data-i18n="POPUPS_ADD_TEMPLATE/TITLE_ADD_TEMPLATE"></span><span data-bind="visible: '' !== id()" class="i18n" data-i18n="POPUPS_ADD_TEMPLATE/TITLE_UPDATE_TEMPLATE"></span></h3></div><div class="modal-body"><div class="form-horizontal g-ui-user-select-none"><div class="alert" data-bind="visible: '' !== submitError()"><button type="button" class="close" data-bind="click: function () { submitError('') }">×</button><span data-bind="text: submitError"></span></div><br /><div class="control-group" data-bind="css: {'error': name.error}"><label class="i18n control-label" data-i18n="POPUPS_ADD_TEMPLATE/LABEL_NAME"></label><div class="controls"><input type="text" class="inputName input-xlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="textInput: name, onEnter: addTemplateCommand, hasfocus: name.focus"/></div></div></div><hr /><div class="form-horizontal"><div class="control-group" data-bind="css: {'error': body.error}"><div class="e-template-place" data-bind="initDom: signatureDom"></div></div></div></div><div class="modal-footer"><a class="btn buttonAddAccount" data-bind="command: addTemplateCommand"><i data-bind="visible: '' == id(), css: {'icon-user-add': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i><i data-bind="visible: '' !== id(), css: {'icon-ok': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i> <span data-bind="visible: '' == id()" class="i18n" data-i18n="POPUPS_ADD_TEMPLATE/BUTTON_ADD_TEMPLATE"></span><span data-bind="visible: '' !== id()" class="i18n" data-i18n="POPUPS_ADD_TEMPLATE/BUTTON_UPDATE_TEMPLATE"></span></a></div></div></div></div></script><script id="SettingsContacts" type="text/html" data-cfasync="false"><div class="b-settings-contacts"><div class="form-horizontal g-ui-user-select-none"><div class="legend"><span class="i18n" data-i18n="SETTINGS_CONTACTS/LEGEND_CONTACTS"></span></div><div class="control-group"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_CONTACTS/LABEL_CONTACTS_AUTOSAVE', value: contactsAutosave } }"></div></div></div></div><br /><div class="form-horizontal" data-bind="visible: allowContactsSync"><div class="legend"><span class="i18n" data-i18n="SETTINGS_CONTACTS/LEGEND_CONTACTS_SYNC"></span></div><div class="control-group"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_ENABLE', value: enableContactsSync } }"></div></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_AB_URL"></span></label><div class="controls"><input type="text" class="input-xxlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: contactsSyncUrl" placeholder="https://"/></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_USER"></span></label><div class="controls"><input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: contactsSyncUser"/></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_CONTACTS/LABEL_CONTACTS_SYNC_PASSWORD"></span></label><div class="controls"><input type="password" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: contactsSyncPass"/></div></div></div></div></script><script id="MailFolderList" type="text/html" data-cfasync="false"><div class="b-folders g-ui-user-select-none thm-folders" data-bind="css: {'focused': folderListFocused, 'single-root-inbox': foldersListWithSingleInboxRootFolder, 'inbox-is-starred': isInboxStarred}"><div class="b-toolbar btn-toolbar hide-on-mobile"><a class="btn buttonCompose pull-left" data-tooltip-join="top" data-bind="visible: allowComposer, click: composeClick, tooltip: 'FOLDER_LIST/BUTTON_NEW_MESSAGE', css: {'btn-warning': composeInEdit, 'btn-success': !composeInEdit()}"><i class="icon-paper-plane"></i><span class="btn-text-wrp buttonComposeText"><span class="i18n" data-i18n="FOLDER_LIST/BUTTON_NEW_MESSAGE"></span></span></a><a class="btn buttonContacts pull-left" data-tooltip-join="top" data-bind="visible: allowContacts, click: contactsClick, tooltip: 'FOLDER_LIST/BUTTON_CONTACTS'"><i class="icon-address-book"></i></a></div><div class="b-content opacity-on-panel-disabled" data-bind="visible: allowFolders, nano: true, scrollerShadows: true, css: {'inbox-is-starred': isInboxStarred}"><div class="content g-scrollbox" data-scroller-shadows-content><div class="content-wrapper"><div class="b-folders-system" data-bind="template: { name: 'MailFolderListSystemItem', foreach: folderListSystem }"></div><hr class="b-list-delimiter"/><div class="b-folders-user" data-bind="template: { name: 'MailFolderListItem', foreach: folderList }"></div><div class="move-action-content-wrapper" data-bind="visible: moveAction"></div></div></div></div><div class="b-content show-on-panel-disabled" data-bind="click: function () { leftPanelDisabled(false); }"></div><div class="b-footer btn-toolbar hide-on-mobile" data-bind="visible: allowFolders"><div class="btn-group"><a class="btn single buttonResize" data-bind="click: function () { leftPanelDisabled(!leftPanelDisabled()); }"><i data-bind="css: {'icon-resize-out': leftPanelDisabled(), 'icon-resize-in': !leftPanelDisabled()}"></i></a></div><div class="btn-group hide-on-panel-disabled"><a class="btn first" data-bind="click: createFolder"><i data-bind="css: {'icon-folder-add': !foldersChanging(), 'icon-spinner animated': foldersChanging()}"></i></a><a class="btn last" data-bind="click: configureFolders"><i class="icon-cog"></i></a></div></div></div></script><script id="SettingsThemes" type="text/html" data-cfasync="false"><div class="b-settings-themes g-ui-user-select-none"><div class="form-horizontal"><div class="legend"><span class="i18n" data-i18n="SETTINGS_THEMES/LEGEND_THEMES"></span> <div data-bind="component: { name: 'SaveTrigger', params: { value: themeTrigger } }"></div></div></div><div class="b-themes-list" data-bind="foreach: themesObjects"><div class="e-item" data-bind="click: function () { $root.theme(name); }, css: { 'selected': selected }"><div class="e-name" data-bind="text: nameDisplay"></div><img class="e-image" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC" data-bind="attr: { 'src': themePreviewSrc }"/></div></div><br /><br /><div class="form-horizontal" data-bind="visible: capaUserBackground"><div class="legend"><span class="i18n" data-i18n="SETTINGS_THEMES/LEGEND_THEMES_CUSTOM"></span></div><div class="control-group g-ui-user-select-none"><div class="row" data-bind="visible: '' !== background.error()" style="margin-left: 0; margin-bottom: 10px;"><div class="alert alert-error span6" data-bind="text: background.error" style="margin-left: 0"></div></div><div class="row" data-bind="visible: '' !== background.name()" style="margin-left: 0"><a class="btn" data-bind="visible: '' !== background.name(), click: clearBackground"><i class="icon-remove"></i></a> <b data-bind="text: background.name"></b></div><div class="row" data-bind="visible: '' === background.name()" style="margin-left: 0"><a class="btn" data-bind="initDom: background.uploaderButton"><i data-bind="css: {'icon-image': !background.loading(), 'icon-spinner animated': background.loading()}"></i> <span class="i18n" data-i18n="SETTINGS_THEMES/BUTTON_UPLOAD_BACKGROUND_IMAGE"></span></a></div></div></div></div></script><script id="SettingsCustom" type="text/html" data-cfasync="false"><div class="settingsCustom"> CUSTOM </div></script><script id="SettingsGeneral" type="text/html" data-cfasync="false"><div class="b-settings-general g-ui-user-select-none"><div class="form-horizontal"><div class="legend"><span class="i18n i18n-animation" data-i18n="SETTINGS_GENERAL/LEGEND_GENERAL"></span></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_GENERAL/LABEL_IDENTITY"></span></label><div class="controls"><div style="display: inline-block; margin-top: 5px"><b data-bind="click: editMainIdentity, text: identityMainDesc" style="border-bottom: 1px dashed #555; cursor: pointer; padding: 2px 0px;"></b></div></div></div><div class="control-group" data-bind="visible: allowLanguagesOnSettings"><label class="control-label"><span class="i18n" data-i18n="SETTINGS_GENERAL/LABEL_LANGUAGE"></span></label><div class="controls"><div class="flag-selector"><span class="flag-wrapper"><span data-bind="css: 'flag flag-' + language().toLowerCase()" style=""></span></span><span class="flag-name" tabindex="0" data-bind="text: languageFullName, click: selectLanguage, onSpace: selectLanguage, onEnter: selectLanguage"></span> <div data-bind="component: { name: 'SaveTrigger', params: { value: languageTrigger } }"></div></div></div></div><div class="control-group hide-on-mobile"><label class="control-label"> <span class="i18n" data-i18n="SETTINGS_GENERAL/LABEL_LAYOUT"></span></label><div class="controls"><div data-bind="component: { name: 'Select', params: { options: layoutTypes, value: layout, trigger: layoutTrigger, optionsText: 'name', optionsValue: 'id' } }"></div></div></div><div class="control-group"><label class="control-label"> <span class="i18n" data-i18n="SETTINGS_GENERAL/LABEL_EDITOR"></span></label><div class="controls"><div data-bind="component: { name: 'Select', params: { options: editorDefaultTypes, value: editorDefaultType, trigger: editorDefaultTypeTrigger, optionsText: 'name', optionsValue: 'id' } }"></div></div></div><div class="control-group"><label class="control-label"> <span class="i18n" data-i18n="SETTINGS_GENERAL/LABEL_MESSAGE_PER_PAGE"></span></label><div class="controls"><div data-bind="component: { name: 'Select', params: { options: messagesPerPageArray, value: messagesPerPage, trigger: mppTrigger, size: 2, width: 80 } }"></div></div></div><div class="control-group"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_GENERAL/LABEL_SHOW_IMAGES', value: showImages } }"></div><div class="hide-on-mobile" data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_GENERAL/LABEL_USE_CHECKBOXES_IN_LIST', value: useCheckboxesInList } }"></div><br /><div data-bind="visible: threadsAllowed, component: { name: 'Checkbox', params: { label: 'SETTINGS_GENERAL/LABEL_USE_THREADS', value: useThreads } }"></div><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_GENERAL/LABEL_REPLY_SAME_FOLDER', value: replySameFolder } }"></div></div></div></div><div class="form-horizontal hide-on-mobile" data-bind="visible: isDesktopNotificationSupported() || soundNotificationIsSupported()"><div class="legend"><span class="i18n i18n-animation" data-i18n="SETTINGS_GENERAL/LABEL_NOTIFICATIONS"></span></div><div class="control-group"><div class="controls"><div data-bind="visible: isDesktopNotificationSupported"><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC', value: enableDesktopNotification, disable: isDesktopNotificationDenied, inline: true } }"></div> <span data-bind="visible: isDesktopNotificationDenied"><span class="i18n" style="color: #999" data-i18n="SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC_DENIED"></span></span></div><div data-bind="visible: soundNotificationIsSupported"><div data-bind="component: { name: 'Checkbox', params: { label: 'SETTINGS_GENERAL/LABEL_SOUND_NOTIFICATION', value: enableSoundNotification, inline: true } }"></div> <span data-bind="click: testSoundNotification" style="color:green;cursor:pointer"><i class="icon-right-dir iconsize20"></i></span></div></div></div></div></div></script><script id="SettingsFiltersActionVacation" type="text/html" data-cfasync="false"><div class="control-group" style="margin-bottom: 0"><div class="controls"><div data-bind="component: { name: 'Select', params: { options: [1, 2, 3, 7, 30], label: 'POPUPS_FILTER/REPLY_INTERVAL_LABEL', value: actionValueThird, size: 1 } }"></div></div></div><div class="control-group" data-bind="css: {'error': actionValueFourth.error}" style="margin-bottom: 0"><div class="controls"><input type="text" class="span5 i18n" data-bind="value: actionValueFourth" data-i18n="[placeholder]POPUPS_FILTER/VACATION_RECIPIENTS_LABEL"/><button class="btn setRecipientsBtn" data-bind="click: setRecipients"><i class="icon-plus"></i></button></div></div><div class="control-group" style="margin-bottom: 0"><div class="controls"><input type="text" class="span5 i18n" data-bind="value: actionValueSecond" data-i18n="[placeholder]POPUPS_FILTER/VACATION_SUBJECT_LABEL"/></div></div><div class="control-group" data-bind="css: {'error': actionValue.error}" style="margin-bottom: 0"><div class="controls"><textarea class="span5 i18n" data-bind="value: actionValue" style="height: 100px;" data-i18n="[placeholder]POPUPS_FILTER/VACATION_MESSAGE_LABEL"></textarea></div></div><div class="control-group"><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'POPUPS_FILTER/STOP_LABEL', value: actionNoStop } }"></div></div></div></script><script id="SettingsSecurity" type="text/html" data-cfasync="false"><div class="b-settings-security"><div class="form-horizontal" data-bind="visible: capaAutoLogout"><div class="legend"><span class="i18n" data-i18n="SETTINGS_SECURITY/LEGEND_SECURITY"></span></div><div class="control-group"><label class="control-label"> <span class="i18n" data-i18n="SETTINGS_SECURITY/LABEL_AUTOLOGOUT"></span></label><div class="controls"><div data-bind="component: { name: 'Select', params: { inline: true, options: autoLogoutOptions, value: autoLogout, trigger: autoLogout.trigger, optionsText: 'name', optionsValue: 'id' } }"></div></div></div><br /><div class="control-group" data-bind="visible: capaTwoFactor"><label class="control-label"></label><div class="controls"><i class="icon-lock"></i> <span class="i18n g-ui-link" tabindex="0" data-i18n="SETTINGS_SECURITY/LABEL_CONFIGURE_TWO_FACTOR" data-bind="click: configureTwoFactor, onSpace: configureTwoFactor, onEnter: configureTwoFactor"></span></div></div></div></div></script><script id="PopupsAccount" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-account-add-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span data-bind="visible: isNew" class="i18n" data-i18n="POPUPS_ADD_ACCOUNT/TITLE_ADD_ACCOUNT"></span><span data-bind="visible: !isNew()" class="i18n" data-i18n="POPUPS_ADD_ACCOUNT/TITLE_UPDATE_ACCOUNT"></span></h3></div><div class="modal-body"><div class="form-horizontal"><div class="alert" data-bind="visible: '' !== submitError()"><button type="button" class="close-custom" data-bind="click: function () { submitError('') }">×</button><span data-bind="text: submitError"></span><div data-bind="visible: submitErrorAdditional"><br /><span data-bind="text: submitErrorAdditional"></span></div></div><br /><div class="control-group" data-bind="css: {'error': emailError}"><label class="i18n control-label" data-i18n="LOGIN/LABEL_EMAIL"></label><div class="controls"><label style="margin-top: 5px;" data-bind="visible: !isNew()"><strong data-bind="text: email"></strong></label><input type="email" class="inputEmail input-xlarge" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="visible: isNew, textInput: email, onEnter: addAccountCommand, hasfocus: emailFocus"/></div></div><div class="control-group" data-bind="css: {'error': passwordError}"><label class="i18n control-label" data-i18n="LOGIN/LABEL_PASSWORD"></label><div class="controls"><input type="password" class="inputPassword input-xlarge" autocomplete="current-password" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: password, onEnter: addAccountCommand"/></div></div></div></div><div class="modal-footer"><a class="btn buttonAddAccount" data-bind="command: addAccountCommand"><i data-bind="visible: isNew, css: {'icon-user-add': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i><i data-bind="visible: !isNew(), css: {'icon-ok': !submitRequest(), 'icon-spinner animated': submitRequest()}"></i> <span data-bind="visible: isNew" class="i18n" data-i18n="POPUPS_ADD_ACCOUNT/BUTTON_ADD_ACCOUNT"></span><span data-bind="visible: !isNew()" class="i18n" data-i18n="POPUPS_ADD_ACCOUNT/BUTTON_UPDATE_ACCOUNT"></span></a></div></div></div></div></script><script id="PopupsViewOpenPgpKey" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-open-pgp-key-view-content" data-bind="modal: modalVisibility"><div><div class="modal-header g-ui-user-select-none"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_VIEW_OPEN_PGP_KEY/TITLE_VIEW_OPEN_PGP_KEY"></span></h3></div><div class="modal-body"><div class="form-horizontal"><div class="control-group"><pre class="key-viewer" data-bind="initDom: keyDom, text: key"></pre></div></div></div><div class="modal-footer"><a class="btn buttonClose" data-bind="command: cancelCommand"><i class="icon-remove"></i> <span class="i18n" data-i18n="POPUPS_VIEW_OPEN_PGP_KEY/BUTTON_CLOSE"></span></a><a class="btn buttonClose" data-bind="click: selectKey"><i class="icon-key"></i> <span class="i18n" data-i18n="POPUPS_VIEW_OPEN_PGP_KEY/BUTTON_SELECT"></span></a></div></div></div></div></script><script id="PopupsFolderClear" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-folder-clear-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_CLEAR_FOLDER/TITLE_CLEAR_FOLDER" data-bind="visible: !clearingProcess()"></span><span class="i18n" data-i18n="POPUPS_CLEAR_FOLDER/TITLE_CLEARING_PROCESS" data-bind="visible: clearingProcess"></span></h3></div><div class="modal-body"><div><i class="icon-warning" style="color:red"></i> <strong><span class="i18n" data-i18n="[html]POPUPS_CLEAR_FOLDER/DANGER_DESC_WARNING"></span></strong><br /><br /><span data-bind="html: dangerDescHtml"></span><br /><span class="i18n" data-i18n="[html]POPUPS_CLEAR_FOLDER/DANGER_DESC_HTML_2"></span></div></div><div class="modal-footer"><a class="btn btn-danger buttonClear" data-bind="command: clearCommand"><i class="icon-fire" data-bind="css: {'icon-fire': !clearingProcess(), 'icon-spinner animated white': clearingProcess()}" ></i> <span class="i18n" data-i18n="POPUPS_CLEAR_FOLDER/BUTTON_CLEAR"></span></a></div></div></div></div></script><script id="MailMessageList" type="text/html" data-cfasync="false"><div id="rl-sub-left"><div class="messageList g-ui-user-select-none" data-bind="css: {'message-selected': isMessageSelected, 'message-focused': !messageListFocused(), 'loading': messageListCompleteLoadingThrottle, 'hideMessageListCheckbox': !useCheckboxesInList() }"><div class="toolbar"><div class="btn-toolbar"><!-- ko if: allowFolders && mobile --><div class="btn-group" data-bind="visible: leftPanelDisabled()"><a class="btn btn-thin-2 single" data-bind="click: showLeft"><i class="icon-right-middle"></i></a></div><div class="btn-group" data-bind="visible: !leftPanelDisabled()"><a class="btn btn-thin-2 single" data-bind="click: hideLeft"><i class="icon-left-middle"></i></a></div><div class="btn-group"> </div><!-- /ko --><div class="btn-group" data-bind="visible: mobile && allowComposer && mobileCheckedStateHide()"><a class="btn single buttonCompose" data-tooltip-join="top" data-bind="click: composeClick, tooltip: 'FOLDER_LIST/BUTTON_NEW_MESSAGE', css: {'btn-warning': composeInEdit, 'btn-success': !composeInEdit()}"><i class="icon-paper-plane"></i></a></div><div class="btn-group" data-bind="visible: mobileCheckedStateHide()"> </div><div class="btn-group" data-bind="visible: allowReload && mobileCheckedStateHide()"><a class="btn single btn-dark-disabled-border buttonReload" data-tooltip-join="top" data-bind="command: reloadCommand, tooltip: 'MESSAGE_LIST/BUTTON_RELOAD'"><i class="icon-spinner" data-bind="css: {'animated': messageListCompleteLoadingThrottleForAnimation}"></i></a></div><div class="btn-group" data-bind="visible: allowReload && mobileCheckedStateHide()"> </div><!-- ko if: !newMoveToFolder() --><div class="btn-group dropdown colored-toggle hide-on-mobile" data-bind="visible: allowMessageListActions, registrateBootstrapDropdown: true, openDropdownTrigger: moveDropdownTrigger"><a id="move-dropdown-id" href="#" tabindex="-1" class="btn single btn-dark-disabled-border dropdown-toggle buttonMove" data-toggle="dropdown" data-tooltip-join="top" data-bind="command: moveCommand, tooltip: 'MESSAGE_LIST/BUTTON_MOVE_TO'"><i class="icon-copy visible-on-ctrl-btn"></i><i class="icon-folder hidden-on-ctrl-btn"></i> <span class="caret"></span></a><ul class="dropdown-menu g-ui-menu" role="menu" aria-labelledby="move-dropdown-id" role="menu" data-bind="foreach: folderMenuForMove"><!-- ko if: seporator --><li class="divider" role="presentation" data-bind="visible: seporator"></li><!-- /ko --><!-- ko if: !seporator --><li class="e-item" role="presentation" data-bind="css: { 'disabled': disabled }, click: function (mdata, oEvent) { if (!disabled) $root.moveSelectedMessagesToFolder(id, oEvent && !!oEvent.ctrlKey); }"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="text: name"></a></li><!-- /ko --></ul></div><!-- /ko --><!-- ko if: newMoveToFolder() --><div class="btn-group" data-bind="visible: allowMessageListActions && mobileCheckedStateShow()"><a id="move-dropdown-id" href="#" tabindex="-1" class="btn single btn-dark-disabled-border buttonMove" data-tooltip-join="top" data-bind="command: moveNewCommand, tooltip: 'MESSAGE_LIST/BUTTON_MOVE_TO'"><i class="icon-copy visible-on-ctrl-btn"></i><i class="icon-folder hidden-on-ctrl-btn"></i></a></div><!-- /ko --><div class="btn-group" data-bind="visible: allowMessageListActions && mobileCheckedStateHide()"> </div><div class="btn-group" data-bind="visible: allowMessageListActions && mobileCheckedStateShow()"><a class="btn first btn-dark-disabled-border button-archive" data-tooltip-join="top" data-bind="visible: isArchiveVisible, command: archiveCommand, tooltip: 'MESSAGE_LIST/BUTTON_ARCHIVE'"><i class="icon-archive"></i></a><a class="btn btn-dark-disabled-border button-spam" data-tooltip-join="top" data-bind="visible: isSpamVisible, command: spamCommand, tooltip: 'MESSAGE_LIST/BUTTON_SPAM', css: {'first': !isArchiveVisible()}"><i class="icon-warning"></i></a><a class="btn btn-dark-disabled-border button-not-spam" data-tooltip-join="top" data-bind="visible: isUnSpamVisible, command: notSpamCommand, tooltip: 'MESSAGE_LIST/BUTTON_NOT_SPAM', css: {'first': !isArchiveVisible()}"><i class="icon-check-mark-circle-two"></i></a><a class="btn last btn-dark-disabled-border button-delete" data-tooltip-join="top" data-bind="command: deleteCommand, tooltip: 'MESSAGE_LIST/BUTTON_DELETE', css: {'first': !isArchiveVisible() && !isSpamVisible() && !isUnSpamVisible()}"><i class="icon-trash"></i><!--<span data-bind="text: printableMessageCountForDeletion()"></span>--></a></div><div class="btn-group hide-on-mobile" data-bind="visible: allowMessageListActions"> </div><div class="btn-group dropdown colored-toggle hide-on-mobile" data-bind="visible: allowComposer || allowMessageListActions || allowDangerousActions, registrateBootstrapDropdown: true, openDropdownTrigger: moreDropdownTrigger"><a id="more-list-dropdown-id" class="btn single btn-dark-disabled-border dropdown-toggle buttonMore" href="#" tabindex="-1" data-toggle="dropdown" data-tooltip-join="top" data-bind="tooltip: 'MESSAGE_LIST/BUTTON_MORE'"><i class="icon-list animate-this-icon-on-open"></i></a><ul class="dropdown-menu pull-right g-ui-menu" role="menu" aria-labelledby="more-list-dropdown-id"><div data-bind="visible: allowMessageListActions"><li class="e-item" role="presentation" data-bind="click: listUnsetSeen, css: {'disabled': !hasCheckedOrSelectedLines()}"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-none"></i> <span class="i18n" data-i18n="MESSAGE_LIST/MENU_UNSET_SEEN"></span></a></li><li class="e-item" role="presentation" data-bind="click: listSetSeen, css: {'disabled': !hasCheckedOrSelectedLines()}"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-none"></i> <span class="i18n" data-i18n="MESSAGE_LIST/MENU_SET_SEEN"></span></a></li><li class="e-item" role="presentation" data-bind="click: listSetFlags, css: {'disabled': !hasCheckedOrSelectedLines()}"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-none"></i> <span class="i18n" data-i18n="MESSAGE_LIST/MENU_SET_FLAG"></span></a></li><li class="e-item" role="presentation" data-bind="click: listUnsetFlags, css: {'disabled': !hasCheckedOrSelectedLines()}"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-none"></i> <span class="i18n" data-i18n="MESSAGE_LIST/MENU_UNSET_FLAG"></span></a></li><li class="e-item" role="presentation" data-bind="click: listSetAllSeen, css: {'disabled': !hasMessages()}"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-none"></i> <span class="i18n" data-i18n="MESSAGE_LIST/MENU_SET_ALL_SEEN"></span></a></li></div><li class="divider" role="presentation" data-bind="visible: allowComposer && allowMessageListActions"></li><li class="e-item" role="presentation" data-bind="visible: allowComposer, command: multyForwardCommand"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-reply-all"></i> <span class="i18n" data-i18n="MESSAGE_LIST/BUTTON_MULTY_FORWARD"></span></a></li><li class="divider" role="presentation" data-bind="visible: allowDangerousActions"></li><li class="e-item" role="presentation" data-bind="visible: allowDangerousActions, command: deleteWithoutMoveCommand"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-trash"></i> <span class="i18n" data-i18n="MESSAGE_LIST/BUTTON_DELETE_WITHOUT_MOVE"></span></a></li><li class="e-item" role="presentation" data-bind="visible: allowDangerousActions, command: clearCommand"><a class="e-link menuitem" href="#" tabindex="-1"><i class="icon-fire"></i> <span class="i18n" data-i18n="MESSAGE_LIST/BUTTON_EMPTY_FOLDER"></span></a></li></ul></div></div></div><div class="b-message-list-wrapper"><div class="second-toolbar thm-message-list-top-toolbar"><div class="form-inline"><div class="input-append pull-right" data-bind="visible: allowSearch"><div class="close-input-wrp"><a class="close" data-bind="click: cancelSearch, visible: '' !== messageListSearchDesc()">×</a><input type="text" class="i18n span4 inputSearch" tabindex="-1" placeholder="Search" autocorrect="off" autocapitalize="off" data-i18n="[placeholder]SEARCH/MAIN_INPUT_PLACEHOLDER" data-bind="value: inputProxyMessageListSearch, onEnter: searchEnterAction, hasfocus: inputMessageListSearchFocus"/></div><a class="btn buttonMoreSearch" data-bind="visible: allowSearchAdv, click: advancedSearchClick"><span class="caret"></span></a></div><i class="checkboxCkeckAll" data-bind="css: checkAll() ? (isIncompleteChecked() ? 'icon-checkbox-partial' : 'icon-checkbox-checked') : 'icon-checkbox-unchecked'"></i></div></div><div class="line-loading e-strip-animation" data-bind="visible: messageListCompleteLoadingThrottle"></div><div class="mainDelimiter toolbarDelimiter"></div><div class="b-content" data-bind="nano: true, scrollerShadows: true, initDom: dragOverBodyArea"><div class="content g-scrollbox" data-scroller-shadows-content><div class="content-wrapper"><div class="listThreadUidDesc" data-bind="visible: '' !== messageListEndThreadUid(), click: cancelThreadUid"><i class="icon-left" data-bind="click: cancelThreadUid"></i> <span class="i18n" data-i18n="MESSAGE_LIST/BACK_TO_MESSAGE_LIST"></span></div><div class="listSearchDesc" data-bind="visible: '' !== messageListSearchDesc()"><span data-bind="text: messageListSearchDesc"></span></div><div class="listDragOver" data-bind="css: {'viewAppendArea': dragOver() && '' === messageListError() && !popupVisibility(), 'dragOverEnter': dragOverEnter }, initDom: dragOverArea"><i class="icon-down e-icon"></i> <span class="i18n" data-i18n="MESSAGE_LIST/PUT_MESSAGE_HERE"></span></div><div class="listClear" data-bind="visible: clearListIsVisible()"><span class="g-ui-link i18n" data-i18n="MESSAGE_LIST/BUTTON_EMPTY_FOLDER" data-bind="command: clearCommand"></span></div><div class="listError" data-bind="visible: !dragOver() && '' !== messageListError()"><span class="error" data-bind="text: messageListError"></span></div><div class="listEmptyList" data-bind="visible: !dragOver() && 0 === messageList().length && !messageListCompleteLoadingThrottle() && '' === messageListError() && '' === messageListSearch()"><span class="i18n" data-i18n="MESSAGE_LIST/EMPTY_LIST"></span></div><div class="listEmptyListLoading" data-bind="visible: !dragOver() && 0 === messageList().length && messageListCompleteLoadingThrottle() && '' === messageListError()"><span class="i18n" data-i18n="MESSAGE_LIST/LIST_LOADING"></span><span class="textLoadingAnimationD1">.</span><span class="textLoadingAnimationD2">.</span><span class="textLoadingAnimationD3">.</span></div><div class="listEmptySearchList" data-bind="visible: !dragOver() && 0 === messageList().length && !messageListCompleteLoadingThrottle() && '' === messageListError() && '' !== messageListSearch()"><span class="i18n" data-i18n="MESSAGE_LIST/EMPTY_SEARCH_LIST"></span></div><div data-bind="draggable: dragAndDronHelper, droppableSelector: '.b-folders .content.g-scrollbox'"><div class="messageListPlace" data-bind="template: { name: messageListItemTemplate(), foreach: messageList }"></div></div></div></div></div><div class="mainDelimiter footerDelimiter"></div><div class="b-footer thm-message-list-bottom-toolbar"><span data-tooltip-i18n="off" data-tooltip-mobile="on" data-bind="visible: 0 < userUsageProc(), tooltip: quotaTooltip" class="e-quota"><span data-bind="text: userUsageProc"></span>% </span><div class="pull-right"><!-- ko template: { name: 'Pagenator', data: messageListPagenator } --><!-- /ko --></div></div></div></div></div></script><script id="SettingsFiltersActionDiscard" type="text/html" data-cfasync="false"></script><script id="About" type="text/html" data-cfasync="false"><div style="margin: 30px"><h1 style="display: inline; color: #fff; text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.5);">RainLoop Webmail</h1> <h3 style="display: inline; color: #fff; text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.5);">(<span data-bind="text: version"></span>)</h3><h3><a href="https://www.rainloop.net/" target="_blank">https://www.rainloop.net</a></h3></div></script><script id="SettingsFiltersConditionDefault" type="text/html" data-cfasync="false"><div class="control-group" data-bind="css: {'error': value.error}" style="margin-bottom: 0"><select class="span3" data-bind="options: $root.fieldOptions, value: field, optionsText: 'name', optionsValue: 'id'"></select> <select class="span2" data-bind="options: $root.typeOptions, value: type, optionsText: 'name', optionsValue: 'id'"></select> <input class="span3" type="text" data-bind="value: value"/> <span class="delete-action button-delete pull-right" style="margin-top: 5px;" data-bind="click: function (oCondition) { $root.removeCondition(oCondition); }"><i class="icon-trash"></i></span></div></script><script id="LoginWelcome" type="text/html" data-cfasync="false"><div class="b-login--welcome-content"><i class="icon-google iconsize50" style="cursor: pointer; padding-right: 20px" data-bind="command: googleGmailCommand, visible: googleGmailLoginEnabled"></i><i class="icon-mail iconsize50" style="cursor: pointer" data-bind="click: displayMainForm"></i><br /><br /></div></script><script id="PopupsAdvancedSearch" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-advanced-search-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="SEARCH/TITLE_ADV"></span></h3></div><div class="modal-body"><br /><form class="form-horizontal" action="#/" autocomplete="off" onsubmit="return false;" data-bind="command: searchCommand"><div class="row"><div class="span4"><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SEARCH/LABEL_ADV_FROM"></span></label><div class="controls"><input type="text" class="uiInput inputFrom" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: from, onEnter: searchCommand, hasfocus: fromFocus, onEsc: cancelCommand"/></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SEARCH/LABEL_ADV_TO"></span></label><div class="controls"><input type="text" class="uiInput inputFrom" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: to, onEnter: searchCommand, onEsc: cancelCommand"/></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SEARCH/LABEL_ADV_SUBJECT"></span></label><div class="controls"><input type="text" class="uiInput inputFrom" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: subject, onEnter: searchCommand, onEsc: cancelCommand"/></div></div><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SEARCH/LABEL_ADV_TEXT"></span></label><div class="controls"><input type="text" class="uiInput inputFrom" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" data-bind="value: text, onEnter: searchCommand, onEsc: cancelCommand"/></div></div></div><div class="span4"><div class="control-group"><label class="control-label"><span class="i18n" data-i18n="SEARCH/LABEL_ADV_DATE"></span></label><div class="controls"><div data-bind="component: { name: 'Select', params: { options: selectedDates, value: selectedDateValue, optionsText: 'name', optionsValue: 'id' } }"></div></div></div><div class="control-group"><label class="control-label"></label><div class="controls"><div data-bind="component: { name: 'Checkbox', params: { label: 'SEARCH/LABEL_ADV_UNSEEN', value: unseen } }"></div><div data-bind="component: { name: 'Checkbox', params: { label: 'SEARCH/LABEL_ADV_FLAGGED', value: starred } }"></div><div data-bind="component: { name: 'Checkbox', params: { label: 'SEARCH/LABEL_ADV_HAS_ATTACHMENT', value: hasAttachment } }"></div></div></div></div></div></form></div><div class="modal-footer"><button type="submit" class="btn buttonAdvSearch" data-bind="command: searchCommand"><i class="icon-search"></i> <span class="i18n" data-i18n="SEARCH/BUTTON_ADV_SEARCH"></span></a></div></div></div></script><script id="MailMessageView" type="text/html" data-cfasync="false"><div id="rl-sub-right"><div class="messageView" data-bind="css: {'message-selected': isMessageSelected, 'message-focused': messageFocused}"><div class="toolbar top-toolbar g-ui-user-select-none" data-bind="visible: !usePreviewPane()"><nobr><div class="messageButtons btn-toolbar"><div class="btn-group" data-tooltip-join="top" data-bind="tooltip: 'MESSAGE/BUTTON_CLOSE'"><a class="btn single btn-dark-disabled-border buttonClose" data-bind="command: closeMessageCommand"><i class="icon-remove"></i></a></div><div class="btn-group"> </div><div class="btn-group" data-tooltip-join="top" data-bind="visible: isDraftFolder(), tooltip: 'MESSAGE/BUTTON_EDIT'"><a class="btn single btn-success buttonEdit" data-bind="command: messageEditCommand"><i class="icon-pencil icon-white"></i></a></div><div class="btn-group" data-bind="visible: !usePreviewPane()"> </div><div class="btn-group" data-bind="visible: !usePreviewPane()"><a class="btn first btn-dark-disabled-border button-archive" data-tooltip-join="top" data-bind="visible: !isDraftFolder() && !isArchiveFolder() && !isArchiveDisabled(), command: archiveCommand, tooltip: 'MESSAGE/BUTTON_ARCHIVE'"><i class="icon-archive"></i></a><a class="btn btn-dark-disabled-border button-spam" data-tooltip-join="top" data-bind="visible: !isDraftFolder() && !isSentFolder() && !isSpamFolder() && !isSpamDisabled(), command: spamCommand, tooltip: 'MESSAGE/BUTTON_SPAM'"><i class="icon-warning"></i></a><a class="btn btn-dark-disabled-border button-not-spam" data-tooltip-join="top" data-bind="visible: !isDraftFolder() && !isSentFolder() && isSpamFolder() && !isSpamDisabled(), command: notSpamCommand, tooltip: 'MESSAGE/BUTTON_NOT_SPAM'"><i class="icon-check-mark-circle-two"></i></a><a class="btn last btn-dark-disabled-border button-delete" data-tooltip-join="top" data-bind="command: deleteCommand, tooltip: 'MESSAGE/BUTTON_DELETE'"><i class="icon-trash"></i></a></div><div class="btn-group"> </div><div class="btn-group hide-on-mobile" data-bind="visible: !usePreviewPane()"><a class="btn btn-thin first btn-dark-disabled-border buttonUp" data-bind="command: goUpCommand"><i class="icon-left-middle"></i></a><a class="btn btn-thin last btn-dark-disabled-border buttonDown" data-bind="command: goDownCommand"><i class="icon-right-middle"></i></a></div></div></nobr></div><div class="b-content b-message-view-wrapper thm-message-view-background-color"><div style="height: 100%"><div class="b-message-view-backdrop" data-bind="visible: moveAction"><div class="backdrop-message-wrp"><div class="backdrop-message"><i class="icon-folder" style="padding: 0 7px; font-size: 24px; width: 24px; line-height: 24px;"></i><span class="i18n" style="vertical-align: middle; padding: 0 7px" data-i18n="MESSAGE/MESSAGE_VIEW_MOVE_DESC"></span></div></div></div><div class="b-message-view-checked-helper" data-bind="visible: !message() && '' === messageError() && hasCheckedMessages()"><span data-bind="text: printableCheckedMessageCount()"></span><i class="icon-mail"></i></div><div class="b-message-view-desc error" data-bind="visible: !message() && '' !== messageError() && !hasCheckedMessages()"><span class="text" data-bind="text: messageError()"></span></div><div data-bind="visible: !message() && '' === messageError() && !hasCheckedMessages()" style="height: 100%"><div class="b-message-view-desc" data-bind="visible: !logoIframe"><span class="i18n" data-bind="visible: !logoImg" data-i18n="MESSAGE/MESSAGE_VIEW_DESC"></span><div class="logoPlace" data-bind="visible: logoImg, if: logoImg"><img style="height: 99%" data-bind="attr: { 'src': logoImg }"/></div></div><div class="b-message-view-iframe" data-bind="visible: logoIframe, if: logoIframe" style="position: relative; height: 100%"><iframe src="javascript:1;" tabindex="-1" frameborder="0" style="border: none; width: 100%; height: 100%; position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px;" data-bind="attr: {'src': logoIframe}"></iframe><div class="b-message-view-iframe-backdrop"></div></div></div><div class="message-fixed-button-toolbar clearfix" data-bind="visible: message"><nobr><div class="btn-group pull-right" style="margin-right: -11px;"><div class="btn-group pull-right" data-bind="registrateBootstrapDropdown: true, visible: allowComposer || allowMessageListActions || allowMessageActions"><a class="btn btn-thin-2 btn-transparent last btn-dark-disabled-border dropdown-toggle buttonMore" id="more-view-dropdown-id" href="#" tabindex="-1" data-toggle="dropdown" data-tooltip-join="bottom" style="margin-left: -4px; margin-right: 2px" data-bind="command: messageVisibilityCommand, css: {'first': !allowComposer}"><span data-bind="visible: !allowComposer" class="icon-ellipsis-alt"></span><span data-bind="visible: allowComposer" class="caret"></span></a><ul class="dropdown-menu g-ui-menu" role="menu" aria-labelledby="more-view-dropdown-id"><div data-bind="visible: allowComposer && !isDraftFolder()"><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: replyCommand"><i class="icon-reply"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_REPLY"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: replyAllCommand"><i class="icon-reply-all"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_REPLY_ALL"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: forwardCommand"><i class="icon-forward"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_FORWARD"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: editAsNewCommand"><i class="icon-pencil"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_EDIT_AS_NEW"></span></a></li><li class="e-item" role="presentation"><a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: forwardAsAttachmentCommand"><i class="icon-forward"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_FORWARD_AS_ATTACHMENT"></span></a></li></div><div data-bind="visible: allowMessageListActions && usePreviewPane()"><li class="divider" role="presentation" data-bind="visible: allowComposer && !isDraftFolder()"></li><li class="e-item" role="presentation" data-bind="visible: !isDraftFolder() && !isArchiveFolder() && !isArchiveDisabled()"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="command: archiveCommand"><i class="icon-archive"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_ARCHIVE"></span></a></li><li class="e-item" role="presentation" data-bind="visible: !isDraftFolder() && !isSentFolder() && !isSpamFolder() && !isSpamDisabled()"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="command: spamCommand"><i class="icon-warning"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_SPAM"></span></a></li><li class="e-item" role="presentation" data-bind="visible: !isDraftFolder() && !isSentFolder() && isSpamFolder() && !isSpamDisabled()"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="command: notSpamCommand"><i class="icon-check-mark-circle-two"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_NOT_SPAM"></span></a></li><li class="e-item" role="presentation"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="command: deleteCommand"><i class="icon-trash"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_DELETE"></span></a></li><li class="e-item" role="presentation" data-bind="visible: message() && message().hasUnsubsribeLinks()"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="link: viewUnsubscribeLink()"><i class="icon-remove"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_UNSUBSCRIBE"></span></a></li></div><div data-bind="visible: allowMessageActions"><li class="divider" role="presentation" data-bind="visible: (allowComposer && !isDraftFolder()) || (allowMessageListActions && usePreviewPane())"></li><li class="e-item" role="presentation"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="click: function () { if (message()) { message().printMessage(); }} "><i class="icon-print"></i> <span class="i18n" data-i18n="MESSAGE/MENU_PRINT"></span></a></li><li class="e-item" role="presentation"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="click: function () { if (message()) { message().viewPopupMessage(); }}"><i class="icon-popup"></i> <span class="i18n" data-i18n="MESSAGE/BUTTON_IN_NEW_WINDOW"></span></a></li><li class="divider" role="presentation"></li><li class="e-item" role="presentation"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="link: viewViewLink()"><i class="icon-file-code"></i> <span class="i18n" data-i18n="MESSAGE/MENU_VIEW_ORIGINAL"></span></a></li><li class="e-item" role="presentation"><a target="_blank" class="e-link menuitem" href="#" tabindex="-1" data-bind="link: viewDownloadLink()"><i class="icon-download"></i> <span class="i18n" data-i18n="MESSAGE/MENU_DOWNLOAD_ORIGINAL"></span></a></li></div></ul></div><a class="btn btn-thin-2 btn-transparent first btn-dark-disabled-border buttonReply pull-right" data-tooltip-join="bottom" data-bind="visible: 'reply' === lastReplyAction() && allowComposer, command: replyCommand, tooltip: 'MESSAGE/BUTTON_REPLY'"><i class="icon-reply"></i></a><a class="btn btn-thin-2 btn-transparent first btn-dark-disabled-border buttonReplyAll pull-right" data-tooltip-join="bottom" data-bind="visible: 'replyall' === lastReplyAction() && allowComposer, command: replyAllCommand, tooltip: 'MESSAGE/BUTTON_REPLY_ALL'"><i class="icon-reply-all"></i></a><a class="btn btn-thin-2 btn-transparent first btn-dark-disabled-border buttonForward pull-right" data-tooltip-join="bottom" data-bind="visible: 'forward' === lastReplyAction() && allowComposer, command: forwardCommand, tooltip: 'MESSAGE/BUTTON_FORWARD'"><i class="icon-forward"></i></a></div><div class="btn-group pull-right hide-on-mobile" data-tooltip-join="right" data-bind="visible: isDraftFolder(), tooltip: 'MESSAGE/BUTTON_EDIT'" style="margin-right: 5px"><a class="btn single btn-success buttonEdit" data-bind="command: messageEditCommand"><i class="icon-pencil icon-white"></i></a></div></nobr></div><div data-bind="visible: message"><div class="messageItemHeader" data-bind="css: {'emptySubject': '' === viewSubject()}"><div class="subjectParent"><button class="close" data-bind="command: closeMessageCommand" style="margin-top: -2px;">×</button><span class="infoParent g-ui-user-select-none" data-bind="click: function() { showFullInfo(!showFullInfo()); }"><i class="icon-info" style="padding-top: 1px;"></i></span><span class="flagParent g-ui-user-select-none"><i class="icon-star-empty flagOff" data-bind="css: {'icon-star flagOn': viewIsFlagged, 'icon-star-empty flagOff': !viewIsFlagged()}" style="padding-top: 2px;"></i></span><b style="color: red; margin-right: 5px" data-bind="visible: viewIsImportant">!</b><span class="subject" data-bind="text: viewSubject, title: viewSubject, event: { 'dblclick': toggleFullScreen }"></span><span class="i18n emptySubjectText" data-i18n="MESSAGE/EMPTY_SUBJECT_TEXT" data-bind="event: { 'dblclick': toggleFullScreen }"></span></div><div><div><img class="fromPic" data-bind="visible: viewUserPicVisible, attr: {'src': viewUserPic() }"><div style="overflow: hidden;"><div class="informationShort" data-bind="event: { 'dblclick': toggleFullScreen }"><span><span class="from" data-bind="html: viewFromShort, title: viewFrom"></span><span data-bind="visible: viewFromDkimVisibility"> <i data-bind="css: viewFromDkimStatusIconClass, title: viewFromDkimStatusTitle"></i></span></span><span data-bind="visible: 0 < viewTimeStamp()"> (<span class="date" data-moment-format="FULL" data-bind="moment: viewTimeStamp"></span>) </span></div><div class="informationShortWrp"><div class="informationShort" data-bind="visible: viewTo, event: { 'dblclick': toggleFullScreen }"><span><span class="i18n uiLabel labelTo" data-i18n="MESSAGE/LABEL_TO" ></span>: <span class="to" data-bind="text: viewTo"></span></span></div><div class="informationShort" data-bind="visible: viewCc, event: { 'dblclick': toggleFullScreen }"><span><span class="i18n uiLabel labelTo" data-i18n="MESSAGE/LABEL_CC" ></span>: <span class="to" data-bind="text: viewCc"></span></span></div></div></div><div class="clearfix"></div></div><div class="informationFull" data-bind="visible: showFullInfo()"><table><tr data-bind="visible: '' !== viewFrom()"><td><span class="i18n uiLabel" data-i18n="MESSAGE/LABEL_FROM"></span></td><td><span class="pull-right size" data-bind="text: viewSize"></span><span class="from uiLabelValue" data-bind="text: viewFrom, title: viewFrom"></span></div></td></tr><tr data-bind="visible: '' !== viewTo()"><td><span class="i18n uiLabel" data-i18n="MESSAGE/LABEL_TO"></span></td><td><span class="to uiLabelValue" data-bind="text: viewTo, title: viewTo"></span></td></tr><tr data-bind="visible: '' !== viewCc()"><td><span class="i18n uiLabel" data-i18n="MESSAGE/LABEL_CC"></span></td><td><span class="cc uiLabelValue" data-bind="text: viewCc, title: viewCc"></span></td></tr><tr data-bind="visible: '' !== viewBcc()"><td><span class="i18n uiLabel" data-i18n="MESSAGE/LABEL_BCC"></span></td><td><span class="bcc uiLabelValue" data-bind="text: viewBcc, title: viewBcc"></span></td></tr><tr data-bind="visible: '' !== viewReplyTo()"><td><span class="i18n uiLabel" data-i18n="MESSAGE/LABEL_REPLY_TO"></span></td><td><span class="replyTo uiLabelValue" data-bind="text: viewReplyTo, title: viewReplyTo"></span></td></tr><tr data-bind="visible: 0 < viewTimeStamp()"><td><span class="i18n uiLabel" data-i18n="MESSAGE/LABEL_DATE"></span></td><td><span class="date uiLabelValue" data-moment-format="FULL" data-bind="moment: viewTimeStamp"></span> (<span class="date uiLabelValue" data-moment-format="FROMNOW" data-bind="moment: viewTimeStamp"></span>) </td></tr></table></div></div></div><div class="messageItem fixIndex" data-bind="css: viewLineAsCss(), nano: true, scrollerShadows: true, attr: {'style': 'top:' + viewBodyTopValue() + 'px' }"><div class="content g-scrollbox" tabindex="0" data-scroller-shadows-content data-bind="hasfocus: messageDomFocused, css: { 'focused': messageDomFocused }, style: {'background-color': messageLoadingThrottle() ? '' : bodyBackgroundColor()}"><div class="content-wrapper"><div><span class="buttonUp" data-bind="click: scrollMessageToTop"><i class="icon-up"></i></span><span class="buttonFull" data-bind="click: fullScreen"><i class="icon-arrows-out"></i></span><span class="buttonUnFull" data-bind="click: unFullScreen"><i class="icon-arrows-in"></i></span><div class="line-loading e-strip-animation" data-bind="visible: messageLoadingThrottle()"></div><div class="loading g-ui-min-height-300" data-bind="visible: messageLoadingThrottle()"><span class="i18n text" data-i18n="MESSAGE/MESSAGE_LOADING"></span><span class="textLoadingAnimationD1">.</span><span class="textLoadingAnimationD2">.</span><span class="textLoadingAnimationD3">.</span></div></div><div class="g-ui-min-height-300 content-content" data-bind="visible: !messageLoadingThrottle()"><div class="bodySubHeader"><div class="showImages" data-bind="visible: message() && message().hasImages(), click: function() { showImages(message()); }"><i class="icon-image"></i> <span class="i18n text" data-i18n="MESSAGE/BUTTON_SHOW_IMAGES"></span></div><div class="readReceipt" data-bind="visible: message() && !isDraftOrSentFolder() && '' !== message().readReceipt() && !message().isReadReceipt(), click: function() { readReceipt(message()); }"><i class="icon-mail"></i> <span class="i18n text" data-i18n="MESSAGE/BUTTON_NOTIFY_READ_RECEIPT"></span></div><div class="attachmentsPlace" data-bind="visible: message() && message().hasVisibleAttachments(), css: {'selection-mode' : showAttachmnetControls, 'unselectedAttachmentsError': highlightUnselectedAttachments}"><ul class="attachmentList" data-bind="foreach: message() ? message().attachments() : []"><li class="attachmentItem clearfix" draggable="true" data-tooltip-join="top" data-bind="visible: !isLinked, event: { 'dragstart': eventDragStart }, attr: { 'title': fileName }, css: {'checked': checked}"><div class="attachmentIconParent pull-left" data-bind="css: { 'hasPreview': hasPreview(), 'hasPreplay': hasPreplay(), 'isImage': isImage() }"><div class="hidePreview"><div class="iconMain"><i class="attachmentIcon attachmentMainIcon" data-bind="css: iconClass()"></i><i class="attachmentIconText attachmentMainIconText" data-bind="text: iconText()"></i></div></div><div class="showPreview"><a data-bind="click: $root.attachmentPreview, css: {'attachmentImagePreview': isImage(), 'visible': !isLinked}, attr: { 'title': fileName, 'href': linkPreviewMain() }" target="_blank"><div class="iconMain"><i class="attachmentIcon attachmentMainIcon" data-bind="css: iconClass()"></i><i class="attachmentIconText attachmentMainIconText" data-bind="text: iconText()"></i></div><div class="iconBG" data-bind="attr: { 'style': linkThumbnailPreviewStyle() }"></div><div class="iconPreview"><i class="attachmentIcon icon-eye show-hover"></i></div></a></div><div class="showPreplay"><div class="iconMain"><i class="attachmentIcon attachmentMainIcon" data-bind="css: iconClass()"></i></div><div class="iconPreview"><i class="attachmentIcon icon-play show-hover"></i></div></div></div><div class="attachmentNameParent"><div style="white-space: nowrap; text-overflow: ellipsis; overflow: hidden;"><span class="attachmentName" data-bind="text: fileName"></span> </div><div><span class="attachmentSize" data-bind="text: friendlySize"></span> </div></div><div class="checkedParent"><i class="checkboxAttachment icon-checkbox-unchecked" data-bind="css: checked() ? 'checkboxMessage icon-checkbox-checked' : 'checkboxMessage icon-checkbox-unchecked', click: function () { checked(!checked()); return false }"></i></div></li></ul><i class="icon-cog controls-handle" data-bind="visible: allowAttachmnetControls() && !showAttachmnetControls(), click: function () { showAttachmnetControls(true); showAttachmnetControlsState(true); }"></i></div><div class="attachmentsControls" data-bind="visible: showAttachmnetControls() && message() && message().hasVisibleAttachments()"><span data-bind="visible: downloadAsZipAllowed"><i class="icon-remove iconcolor-red" data-bind="visible: downloadAsZipError"></i><i class="icon-file-zip" data-bind="visible: !downloadAsZipError(), css: {'icon-file-zip': !downloadAsZipLoading(), 'icon-spinner animated': downloadAsZipLoading()}"></i> <span class="g-ui-link" data-bind="click: downloadAsZip"><span class="i18n" data-i18n="MESSAGE/LINK_DOWNLOAD_AS_ZIP"></span></span></span><span data-bind="visible: saveToOwnCloudAllowed"> <i class="icon-remove iconcolor-red" data-bind="visible: saveToOwnCloudError"></i><i class="icon-ok iconcolor-green" data-bind="visible: saveToOwnCloudSuccess"></i><i class="icon-cloud-up" data-bind="visible: !saveToOwnCloudSuccess() && !saveToOwnCloudError(), css: {'icon-cloud-up': !saveToOwnCloudLoading(), 'icon-spinner animated': saveToOwnCloudLoading()}"></i> <span class="g-ui-link" data-bind="click: saveToOwnCloud"><span class="i18n" data-i18n="MESSAGE/LINK_SAVE_TO_CLOUD"></span></span></span><span data-bind="visible: saveToDropboxAllowed"> <i class="icon-remove iconcolor-red" data-bind="visible: saveToDropboxError"></i><i class="icon-ok iconcolor-green" data-bind="visible: saveToDropboxSuccess"></i><i class="icon-dropbox" data-bind="visible: !saveToDropboxSuccess() && !saveToDropboxError(), css: {'icon-dropbox': !saveToDropboxLoading(), 'icon-spinner animated': saveToDropboxLoading()}"></i> <span class="g-ui-link" data-bind="click: saveToDropbox"><span class="i18n" data-i18n="MESSAGE/LINK_SAVE_TO_DROPBOX"></span></span></span><button type="button" class="close" style="margin-right: 5px;" data-bind="click: function () { showAttachmnetControls(false); showAttachmnetControlsState(false); }">×</button></div></div><div class="bodyText g-ui-min-height-300 rl-mv-root" data-bind="initDom: messagesBodiesDom"></div></div></div></div></div></div></div></div></div></div></script><script id="ComposeAttachment" type="text/html" data-cfasync="false"><li class="attachmentItem clearfix" data-bind="attr: { 'title': title }, css: { 'waiting': waiting, 'error': '' !== error() }"><div class="attachmentIconParent pull-left"><div class="iconMain"><i class="attachmentIcon attachmentMainIcon" data-bind="css: iconClass(), visible: !uploading() || 0 === progress()"></i><i class="attachmentIconText attachmentMainIconText" data-bind="text: iconText(), visible: !uploading() || 0 === progress()"></i></div><div class="iconProgress" data-bind="attr: { 'style': progressStyle }, visible: uploading"></div><div class="iconBG" data-bind="text: progressText, visible: uploading"></div></div><div class="attachmentNameParent"><button type="button" class="close pull-right" style="margin-top:-4px;" data-bind="click: cancel">×</button><div style="white-space: nowrap; text-overflow: ellipsis; overflow: hidden;"><span class="attachmentName" data-bind="text: fileName"></span> </div><div><span class="attachmentSize" data-bind="text: friendlySize"></span> </div></div></li></script><script id="SettingsFiltersActionMoveToFolder" type="text/html" data-cfasync="false"><div class="control-group" data-bind="css: {'error': actionValue.error}"><div class="controls"><select class="span3" data-bind="options: $root.folderSelectList, value: $root.selectedFolderValue, optionsText: 'name', optionsValue: 'id', optionsAfterRender: $root.defautOptionsAfterRender"></select></div></div><div class="control-group"><div class="controls"><div data-bind="visible: $root.allowMarkAsRead, component: { name: 'Checkbox', params: { label: 'POPUPS_FILTER/MARK_AS_READ_LABEL', value: actionMarkAsRead } }"></div></div></div></script><script id="Cmd" type="text/html" data-cfasync="false"><div class="rl-cmd" data-bind="css: {opened: opened}, click: function() { focused(true) }"><div class="rl-cmd-wrp"><div class="rl-cmd-history"><div class="rl-cmd-history-data"></div></div><div class="rl-cmd-input-wrp"><div class="rl-cmd-input-helper" data-bind="text: cmdHelper"></div><div class="rl-cmd-input-prefix">#</div><input type="text" class="rl-cmd-input" data-bind="textInput: cmd, hasFocus: focused, onEnter: onEnter, onKeyDown: onKeyDown, onEsc: onEsc, onTab: onTab"/></div></div></div></script><script id="PopupsLanguages" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-languages-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3><span class="i18n" data-i18n="POPUPS_LANGUAGES/TITLE_LANGUAGES"></span></h3></div><div class="modal-body" style="min-height: 150px;"><div data-bind="foreach: languages"><label class="lang-item" data-tooltip-i18n="off" data-tooltip-join="right" data-bind="click: function () { $root.changeLanguage(key); }, css: {'selected': selected, 'user': user}, tooltip: function () { return $root.languageTooltipName(key); }"><span class="flag-wrapper"><span data-bind="css: 'flag flag-' + key.toLowerCase()" style=""></span></span><span class="lang-name" data-bind="text: fullName"></span><i class="icon-ok pull-right" style="color: green; margin-top: 3px;" data-bind="visible: selected"></i></label></div></div></div></div></script><script id="PopupsWelcomePage" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-welcom-page-content g-ui-user-select-none" data-bind="modal: modalVisibility" style="width: 600px"><div class="modal-body" style="height: 450px; padding: 0"><div data-bind="if: welcomePageURL" style="height: 100%; width: 100%; margin: 0; padding: 0; position: relative"><iframe src="javascript:1;" tabindex="-1" frameborder="0" style="border: none; width: 100%; height: 100%; position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px;" data-bind="attr: {'src': welcomePageURL}"></iframe></div></div><div class="modal-footer"><button class="btn" data-bind="command: cancelCommand, hasFocus: closeFocused"><i class="icon-remove"></i> <span class="i18n" data-i18n="POPUPS_WELCOME_PAGE/BUTTON_CLOSE"></span></button></div></div></div></script><script id="PopupsAsk" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-ask-content g-ui-user-select-none" data-bind="modal: modalVisibility"><div><div class="modal-body"><br /><br /><span class="desc-place" data-bind="html: askDesc"></span><br /><br /><br /></div><div class="modal-footer"><button class="btn buttonYes" data-bind="click: yesClick, hasFocus: yesFocus"><i class="icon-ok"></i> <span data-bind="text: yesButton"></span></button><button class="btn buttonNo" data-bind="click: noClick, hasFocus: noFocus"><i class=" icon-remove"></i> <span data-bind="text: noButton"></span></button></div></div></div></div></script><script id="Pagenator" type="text/html" data-cfasync="false"><div class="e-pagenator g-ui-user-select-none" data-bind="foreach: $data"><a class="e-page" data-bind="css: { 'current': current, 'custom': custom }, title: title"><span class="e-page-number" data-bind="text: name"></span></a></div></script><script id="PopupsKeyboardShortcutsHelp" type="text/html" data-cfasync="false"><div class="popups"><div class="modal hide b-shortcuts-content" data-bind="modal: modalVisibility"><div class="modal-header"><button type="button" class="close" data-bind="command: cancelCommand">×</button><h3 class="i18n" data-i18n="SHORTCUTS_HELP/LEGEND_SHORTCUTS_HELP"></h3></div><div class="modal-body"><ul class="nav nav-tabs"><li class="active"><a class="i18n" data-i18n="SHORTCUTS_HELP/TAB_MAILBOX" href="#mailbox-shortcuts-id" data-toggle="tab"></a></li><li><a class="i18n" data-i18n="SHORTCUTS_HELP/TAB_MESSAGE_LIST" href="#message-list-shortcuts-id" data-toggle="tab"></a></li><li><a class="i18n" data-i18n="SHORTCUTS_HELP/TAB_MESSAGE_VIEW" href="#message-view-shortcuts-id" data-toggle="tab"></a></li><li><a class="i18n" data-i18n="SHORTCUTS_HELP/TAB_COMPOSE" href="#compose-shortcuts-id" data-toggle="tab"></a></li></ul><br /><div class="tab-content span8"><div class="tab-pane active" id="mailbox-shortcuts-id"><table class="table table-striped table-bordered"><tbody><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_OPEN_USER_DROPDOWN"></td><td>` (tilde)</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_REPLY"></td><td>R</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_REPLY_ALL"></td><td>A</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_FORWARD"></td><td>F</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_FORWARD_MULTIPLY"></td><td>Shift + F</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_HELP"></td><td>?, Shift + /</td></tr></tbody></table></div><div class="tab-pane" id="message-list-shortcuts-id"><table class="table table-striped table-bordered"><tbody><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_CHECK_ALL"></td><td>Ctrl + A, ⌘ + A</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_ARCHIVE"></td><td>Z</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_DELETE"></td><td>Delete, Shift + Delete, #</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_OPEN_THREAD"></td><td>T</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_MOVE"></td><td>M</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_READ"></td><td>Q</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_UNREAD"></td><td>U</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_IMPORTANT"></td><td>I</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_SEARCH"></td><td>/</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_FULLSCREEN_ENTER"></td><td>Enter</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_VIEW_MESSAGE_ENTER"></td><td>Enter</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_SWITCH_TO_MESSAGE"></td><td>→, Tab</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_SWITCH_TO_FOLDER_LIST"></td><td>←, Shift + Tab</td></tr></tbody></table></div><div class="tab-pane" id="message-view-shortcuts-id"><table class="table table-striped table-bordered"><tbody><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_FULLSCREEN_TOGGLE"></td><td>Enter</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_BLOCKQUOTES_TOGGLE"></td><td>B</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_PRINT"></td><td>Ctrl + P, ⌘ + P</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_EXIT_FULLSCREEN"></td><td>Esc</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_CLOSE_MESSAGE"></td><td>Esc</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_SWITCH_TO_LIST"></td><td>Tab, Shift + Tab, Esc</td></tr></tbody></table></div><div class="tab-pane" id="compose-shortcuts-id"><table class="table table-striped table-bordered"><tbody><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_OPEN_COMPOSE_POPUP"></td><td>W, C</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_OPEN_IDENTITIES_DROPDOWN"></td><td>` (tilde), Ctrl + `, ⌘ + `</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_SAVE_MESSAGE"></td><td>Ctrl + S, ⌘ + S</td></tr><!--<tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_SEND_MESSAGE"></td><td>Ctrl + Enter, ⌘ + Enter</td></tr>--><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_MINIMIZE_COMPOSE_POPUP"></td><td>Esc</td></tr><tr><td class="i18n" data-i18n="SHORTCUTS_HELP/LABEL_CLOSE_COMPOSE"></td><td>Shift + Esc</td></tr></tbody></table></div></div></div></div></div></script><script type="text/javascript" data-cfasync="false" src="rainloop/v/1.17.0/static/js/min/boot.min.js?legacy"></script></body></html>
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"6dd9fe9fcbc02497721a7bad96b84377","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"0167548d16bea367d2f46175e2eb030e","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"92b40c0820d4b4ecb4125f2929f62c21","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"79411dfab1ae345605abbbebc52a28ff","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"f15a8889d515895b8e174472239f731d","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"5d4addc4a2d82c826f76ad373cbf359c","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"2b7f71a3d3b78b0fb7de7159bf64bb94","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"adc6249f2f551b15003af271b34b883c","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"95c8fb988b03a43b685dc868bb0e29a3","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"277222160b61002bec64b411b16424f6","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"ea1184690bf9ec822eb009bc8e4be252","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"d518afd5a5551d7c7319da6c7368beff","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"2269bc56c269534dd5eab6a9c20738c9","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"8f2721531c2b2812b0e023da977f3f04","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"447d4726b9d517c208803b18b8a3936a","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"31d6c113fea2aea5138724b2a3a935ae","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"1f04a4e7563e74e21200c6c3b314d259","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"774c884ecf0a600d3a6bf2589f340f66","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"44b9bb5da4c617a70384b8cab4888835","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"9ce53f48a33b9947d59124a614b78c0e","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"e40a415468e861aeb5241af80d3823cd","Uids":[39852,39836,39705,39693,39569,39380,39212,39252,39119,39238,39016,38941,38940,39302,38899,38691,38898,39069,38649,38639,39052,38584,38577,38579,38393,38588,38223,38222,38199,38066,38046,38038,38007,38006,37980,38039,37942,37845,38657,37983,38042,37714,37533,37526,37440,37333,37328,37286,37285,37284,37524,37262,38656,37261,37176,37118,37206,37027,38263,37046,36839,38261,38265,36600,38264,37762,37761,37760,37759,37758,36940,36430,36395,36939,36384,36335,36321,37755,36305,36288,37754,36215,36211,36185,36157,36138,36128,36115,38655,36172,36170,36169,36168,36043,36029,36030,37752,35924,35900,35883,35776,38660,35773,36088,35712,35680,39058,39057,39056,35583,38659,38658,35501,35475,35470,35437,36071,35369,35534,35281,35278,37751,35252,35249,35235,35234,35232,35201,35185,35166,35347,35170,35161,35146,36076,35144,35140,35134,35125,35114,35832,35128,35319,35069,35066,35041,35031,35020,34993,35127,34975,34972,34914,34901,35126,34875,34855,34845,34838,34810,34773,34730,34728,34702,34703,34673,35354,34648,35132,34652,34651,34636,34618,34605,34604,34561,34592,34532,34526,34508,34503,34490,37750,37749,34463,34441,34440,34424,34313,34312,34283,34249,34284,34242,34224,34176,34152,34140,34148,34134,34326,34123,34104,34108,34066,34037,34014,34012,33960,33943,33915,33912,33901,33898,33895,34061,33868,34325,33797,33776,33770,33754,33755,33752,34033,33744,33743,33729,33816,33696,33693,33694,33690,33689,33667,33659,33656,33646,33641,33815,33623,33599,33598,33592,33594,33590,33634,33584,33582,33814,33569,33563,33561,33557,33542,33522,33495,33474,33444,33436,33415,33813,33812,33400,33374,33361,33359,33360,33357,33353,33314,33313,33299,33671,33293,33281,33273,33241,33194,33182,33170,33156,33375,33149,33129,33121,33108,33095,33168,33079,33070,33050,33049,33048,33167,33166,33031,33245,33171,34226,32986,32976,32975,32971,32965,32951,33244,33243,32977,32900,32894,32880,33242,32867,32978,32979,32852,33001,32819,33000,32817,32806,32772,32762,32735,32720,33006,32656,32636,32624,32623,32619,32622,32612,32602,32600,32598,32597,32593,32589,32582,32591,32567,32559,32546,32541,32539,32517,32515,32510,32460,32448,32447,32443,32440,32445,32434,32558,32389,32263,32396,32238,32813,32371,32199,32194,32187,32180,32179,32169,32159,32148,32141,32140,32136,32369,32367,32041,32034,32561,32560,31967,31912,31907,31936,31892,31973,31885,31877,31881,31941,31940,31780,31779,31733,31720,32083,31781,32080,31677,31766,31654,31653,31772,31771,31770,31769,31631,31630,31629,31628,31598,31591,31582,31580,31778,31505,31487,31460,31447,31382,31371,31370,32357,30790,30776,30758,30853,30768,30684,30661,30662,30654,30859,30627,30685,30615,30979,30593,30978,30563,30552,30539,30531,30511,30485,30476,30474,30467,30380,30372,30349,30345,30326,30312,30308,30299,30304,30314,30280,30231,30528,30210,30203,30165,30161,30131,30108,30054,30037,30193,30021,30007,29997,29972,30386,29964,29958,29953,29938,29907,29891,29888,29889,30408,29868,30407,29865,30459,29860,30097,29844,29843,29819,29814,29812,30458,29805,29806,29795,30460,29769,29763,29767,29760,29759,29758,30099,29830,29688,29682,29681,29680,29664,29657,29669,29631,29630,29621,29612,29611,29603,32341,29600,29598,29587,29578,29583,29567,29557,29556,29555,29518,29507,29496,29481,29480,29482,29447,30421,29442,30495,29440,29433,29430,29432,29427,29421,29404,29395,29626,29344,30418,29375,30498,29208,29205,29199,30497,30423,30013,30428,30012,29161,29140,30425,30424,30011,29117,29118,29100,29081,29070,29068,29061,29054,29025,28974,28971,28969,28967,28958,28957,30430,28948,28920,30431,30433,30434,28945,28901,28820,28819,28818,28828,28777,28753,28728,28707,28678,28648,28646,28645,30443,28827,28607,28525,28529,28516,28500,28485,28447,28436,30441,32333,30438,30437,28385,30461,28381,28839,30436,28365,28355,28323,28317,28294,28266,28257,30447,28235,28234,28168,28129,28089,28066,28049,28040,28036,27980,28041,27975,27943,27926,28857,27927,27983,27893,27873,27868,28859,27988,28042,27989,27842,27823,27810,27766,27722,27707,27698,27697,27696,27715,27675,28865,27674,27638,27637,27845,27608,27586,27585,27652,27582,27847,27679,27570,27560,27473,27460,27429,27430,27677,27344,27329,27310,27309,27246,27244,27257,27258,27138,27134,27086,27072,27056,27055,27008,27676,26995,26994,26985,26981,26972,26960,27192,26955,26948,26713,26693,26689,26683,26668,26838,26615,26557,26556,26626,26359,26358,26357,26307,26204,32297,26092,27194,27193,25264,33859,33858,33857,25280,23990,34401,34400,34399,21463,20296,20295,20293,20292,20036,19377,19376,31188,31187,31186,34409,31185,34375,31184,31183,34404,34405,30455,14158,12476,14146,34415,34414,34413,11366,11324,11313,11223,30454,27499,27498,9108,30453,30452,6879,6995,6994,33853,33852,5784,27497,33848,33847,33846,33845,33844,33843]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"1735fd6b340eeb73e241ef29ab7ab29a","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"6e976b02547373105b185a43cc8cff46","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"3284d1bb4589806f463fefb9b18159ab","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"818ee069ccd77216e94f1b1d2b756add","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"4c656a5241bc628b57518ecc9b81fbd3","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"fb1deb30902c8c7e19324431b49fc8da","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"ad8ddf05934ba8195832b89a4331bcde","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"92406a9fd30eda3c99aba00361fb3cf0","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"302183a2c6f63a038b7c673586e8565d","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"29de49ab59000bd7c8ae7ebb5da6af01","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"3d6b5e6549d823b45375d5ca9e276384","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"f6a1b724cd20cf8f73aa35ee71efcea6","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"c6403586142ab102bc867070c9743306","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"32aa47cd71639298836a3843d3a5972b","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"8395a52acc57ac282482b2401550bbb1","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"16b1e927cea0294dc4d58a7a6c79f88a","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"238d109676eb98093c0b5c72efd8ece1","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"482ab09e6749d77f8693c7262932e8ef","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"ccf70bb3b8c3538f988c64828649278b","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"83ad3b3f93527c3e76d6319e70256f40","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"4e592faa97f3bc942dc30737019adba9","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"73c4d8da908e53f583b1fbef542867ab","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"20f0715200055ca44fc8d763ba716181","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"103c0de16a297a402794b22255cfe6cc","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"db2d112b4f4c45491a1b458d705bf3e2","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"6493788c56dabef5203368d9bb348058","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"59246a5b7fe69f4cd226d3b290b37b91","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"878a53836c3e60dac5f8261caa580674","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"7c5312b6f6deb5bcd04b55c0a29d9f2b","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"fbe1c7a8a4cdbda2982cbae9ca0530cc","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"6bd85ff6dd315f08dad9119466409859","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"b218700ad794ce595ba4038016280319","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"10e811b37b30a4788da9e0169400d6e4","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"e17e7fab5de99b5aa3c9d592d265da80","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"0c9b73d96fd285e3a8449df83d12cd8e","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"a9f6cf1dc07d07b198f6b6b51d84e723","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"fa2be9d98ff9f60609b77c874f107c04","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"8f04237b91b9e932c34d25ebc8b65827","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"7f6b1f5d849336ef6378a94724dcacfd","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"0ffe4fbe70328dcb1411d50e85e27c5b","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"10ae81da9ea547b190c64201f43b4030","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"7713f6fadb4d188cf338a3b43a9360e0","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"14efe97cd2bd4cb5fae291c306cb7325","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"66818479cea61834f0b46573e75be4bd","Uids":[463,462,461,460,459,458,457,456,455,454,453,452,451,450,449,448,447,446,445,444]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"1da25e5e668b1f266b9150d42e84e2e7","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"791e18055628646d0f4224028b1017fd","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"eecf79afcba3f1c37920fba37d04f36e","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"add96c23e78974abfa617c667fb3b59c","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"c0bf858ad1b450d1e6363a6e26648fbd","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"d3720b8051812fc5aad8a532bc0f7af9","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"9229e42e30ca8a69e0dab63cdf67a214","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"3b648955759b171de48a2769b4ed4542","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"60e0eb29f7941ae419af978757a1309d","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"fb71ee073c64287d3931183366b664dc","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"9e705455eb17ac11c619abaaaa3d459c","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"f3085ea5d76efd64f483f510c313cde7","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"24aba3f39a0cbcde32c544b8d791aae1","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"aa39a7db73cb560225fcd1f877ca7507","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"97c5636d5c113d441e15af36d01f0877","Uids":[1165]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"35c3483c5da6ed3f6aab7c3d545e1890","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"9d04f534d59074d02f80740d277a29b4","Uids":[41032,41021,40994,40992,40936,40905,40828,40724,40723,40661,40616,40563,40556,40409,40399,40321,40225,40224,40120,40012,39937,39861,39785,39713,39692,39575,39574,39573,39570,39509,39435,39091,39064,39054,38806,38385,38343,38280,38260,38249,37830,37516,37515,37511,37509,36996,36642,36608,36564,36556,35733,35569,35552,35544,35494,35476,35475,35474,35473,35447,35446,35445,35319,35259,34849,34550,34430,34389,34390,34198,34195,34041,33997,33980,33937,33812,33810,33808,33798,33757,33724,33697,33585,33506,33493,33185,33150,33084,33053,33051,32968,32920,32874,32855,32820,32809,32803,32780,32686,32644,32616,32558,32557,32554,32461,32460,32405,32365,32219,32218,32173,32146,32141,32102,32007,31969,31939,31912,31861,31844,31841,31832,31825,31820,31784,31781,31774,31765,31745,31720,31730,31719,31690,31686,31624,31528,31501,31323,31259,31227,31027,30948,30946,30891,30656,30322,30242,30241,30162,30055,29966,29903,29679,29628,29578,29497,29390,29265,29161,29158,29127,28833,28557,28375,28330,28326,28325,28284,28244,28105,28103,28073,28061,28052,28049,27966,27766,27765,27726,27664,27614,27249,27135,26970,26847,26800,26668,26665,26654,26630,26572,26543,26542,26489,26432,26430,26391,26385,26263,26026,25975,25934,25838,25832,25806,25786,25784,25779,25766,25753,25739,25633,25431,25323,25128,25129,24989,24988,24867,24671,24643,24599,24579,24578,24554,24552,24371,24345,24343,24340,24339,24338,24335,24337,24329,24323,24197,24174,24171,24164,24016,23987,23935,23932,23931,23898,23876,23828,23735,23732,23731,23730,23729,23662,23660,23657,23628,23620,23599,23534,23517,23494,23488,23482,23479,23464,23463,23462,23461,23458,23459,23456,23447,23444,23434,23431,23423,23417,23400,23359,23233,23185,23182,23183,23181,23172,23126,22976,22975,22974,22858,22854,22808,22789,22753,22751,22734,22723,22645,22522,22520,22467,22433,22374,22024,21957,21948,21841,21832,21809,21800,21777,21513,21269,21235,21218,21207,21199,21200,21092,21086,20935,20933,20907,20893,20864,20857,20847,20812,20690,20658,20637,20605,20604,20555,20551,20505,20492,20464,20444,20439,20436,20388,20380,20372,20368,20351,20348,20340,20335,20314,20105,20104,20101,20076,19990,19987,19984,19899,19768,19765,19755,19720,19713,19684,19681,19649,19638,19624,19613,19611,19596,19603,19579,19578,19572,19562,19553,19547,19493,19485,19351,19343,19322,19311,19305,19300,19217,19197,19164,19133,19056,18969,18921,18788,18767,18755,18753,18737,18677,18589,18584,18527,18519,18423,18422,18403,18402,18375,18310,18243,18180,18169,18064,18028,18026,18007,17989,17949,17925,17916,17890,17871,17855,17815,17714,17693,17681,17645,17621,17619,17534,17533,17525,17522,17520,17518,17516,17502,17498,17497,17427,17408,17374,17356,17351,17350,17296,17294,17293,17286,17235,17206,17207,17180,17153,17038,16965,16938,16936,16893,16775,16755,16754,16752,16749,16717,16700,16689,16670,16557,16551,16526,16494,16471,16465,16451,16440,16439,16427,16407,16366,16342,16335,16318,16316,16315,16308,16305,18610,16283,16236,16231,16217,16197,16168,16163,16141,16140,16135,16130,16128,16112,15999,15981,15964,15908,15907,15905,15892,15887,15859,15845,15842,15819,15798,15741,15740,15734,15728,15711,15705,15645,15634,15621,15506,15379,15360,15336,15335,15228,15227,15225,15222,15217,15123,15114,15098,15097,15079,15078,15077,15076,15074,15071,15066,15063,15041,15034,15031,15030,15025,15016,15014,15010,14941,14845,14844,14832,14827,14823,14759,14757,14737,14733,14732,14688,14666,14665,14652,14648,14647,14646,14614,14563,14548,14547,14527,14526,14506,14505,14466,14450,14443,14429,14362,14335,14310,14285,14258,14253,14248,14234,14185,14151,14137,14112,14107,14106,14097,14093,14076,14015,13990,13979,13947,13857,13848,13769,13623,13577,13560,13543,13539,13534,13530,13508,13497,13496,13495,13489,13460,13435,13431,13365,13363,13283,13274,13256,13255,13251,13220,13216,13211,13192,13169,13164,13146,13131,13130,13129,13127,13125,13092,13091,13082,13081,13072,13071,13047,12921,12765,12746,12742,12732,12730,12726,12713,12710,12607,12604,12602,12537,12536,12474,12423,12403,12398,12393,12392,12391,12388,12381,12375,12361,12358,12356,12354,12342,12334,12328,12319,12318,12303,12279,12278,12268,12266,12259,12255,12254,12243,12193,12191,12153,12136,12120,12114,12104,12098,12094,12085,12084,12069,12066,12064,12059,12057,12054,12053,12027,12002,11992,11991,11953,11949,11927,11923,11895,11894,11893,11892,11886,11881,11829,11827,11826,11809,11800,11795,11793,11791,11790,11715,11711,11686,11658,11653,11630,11627,11625,11614,11584,11583,11570,11566,11534,11491,11443,11432,11414,11391,11387,11363,11331,11328,11323,11284,11266,11262,11220,11215,11214,11210,11200,11187,11137,11136,11085,11012,10974,10874,10788,10787,18622,10780,10723,10718,10712,10679,10670,10607,10599,10598,10519,10403,10353,10283,10282,10273,10272,10268,10265,10249,10222,10199,10192,10190,10184,10183,10166,10165,10116,10114,10083,10021,9955,9950,9905,9872,9835,9828,9810,9809,9808,9790,9785,9775,9747,9720,9694,9688,9668,9660,9446,9444,9441,9440,9438,9435,9414,9412,9411,9378,9355,9316,9292,9277,9254,9245,9179,9086,8984,8972,8934,8890,8871,8859,8857,8764,8750,8741,8597,8546,8428,8293,8246,8112,8097,8093,8083,8051,8030,8015,8014,8013,8012,8011,7875,7788,7764,7762,7705,7677,7668,7651,7610,7547,7544,7534,7455,7449,7348,7218,7215,7188,7075,7074,7073,7072,7053,6965,6955,6930,6912,6909,6830,6814,6646,6645,6644,6635,6576,6574,6573,6563,6561,6548,6542,6524,6522,6520,6512,6466,6460,6451,6424,6304,6303,6259,6257,6238,6179,6173,6164,6133,6130,6128,6076,6074,6057,6043,6032,6020,6014,5995,5983,5978,5972,5970,5967,5962,5959,5952,5948,5922,5882,5881,5867,5858,5856,5855,5854,5852,5843,5829,5826,5825,5823,5822,5818,5812,5811,5785,5784,5783,5779,5763,5761,5760,5758,5752,5751,5750,5749,5748,5744,5743,5739,5731,5730,5725,5724,5723,5654,5634,5628,5621,5618,5600,5598,5594,5550,5542,5539,5506,5505,5501,5499,5498,5497,5494,5491,5492,5490,5489,5475,5460,5456,5454,5455,5411,5389,5376,5369,5364,5347,5333,5325,5321,5304,5296,5287,5269,5267,5250,5238,5213,5204,5202,5196,5186,5182,5174,5171,5155,5151,5148,5138,5126,5120,5117,5114,5102,5098,5073,5068,5028,5026,5018,5016,5015,5014,4994,4974,4972,4973,4971,4967,4960,4955,4954,4944,4930,4927,4915,4913,4909,4905,4898,4894,4880,4879,4853,4825,4824,4820,4817,4813,4811,4806,4805,4793,4784,4781,4768,4764,4757,4719,4714,4710,4704,4702,4697,4687,4667,4655,4653,4646,4644,4642,4640,4633,4620,4594,4591,4585,4581,4575,4569,4558,4546,4537,4534,4533,4518,4515,4501,4492,4484,4482,4464,4460,4431,4416,4407,4391,4353,4351,4347,4346,4341,4329,4325,4323,4316,4314,4315,4313,4312,4295,4294,4291,4268,4261,4253,4245,4240,4221,4218,4207,4206,4198,4197,4193,4179,4165,4139,4138,4129,4125,4124,4121,4113,4062,4055,4031,3999,3997,3960,3892,3869,3861,3833,3791,3774,3773,3603,3602,3579,3578,3478,3413,3404,3353,3346,3342,3327,3324,3309,3306,3295,3289,3288,3282,3281,3280,3277,3119,3098,3077,3076,3075,3074,3072,3067,3064,3061,3059,3058,3056,3052,3050,3045,3039,3037,3018,2819,2733,2724,2714,2713,2402,2386,2385,2384,2371,2370,2338,2323,2314,2306,2294,2293,2292,2291,2290,2289,2288,2287,2285,2284,2283,2282,2281,2280,2279,2278,2277,2276,2275,2274,2273,2272,2208,2207,2197,2143,1923,1922,1920,1865,1828,1797,1795,1761,1691,1612,1599,1585,1570,1527,1477,1471,1468,1441,1421,1417,1390,1350,1337,1331,1330,1328,1305,1304,1295,1294,1293,1283,1237,1234,1223,1222,1207,1185,1158,1157,1145,1144,1142,1138,1137,1136,1135,1133,1132,1131,1126,1125,1118,1029,1012,998,989,915,901,878,875,804,783,732,731,727,708,699,698,684,654,648,589,587,575,10,321,320,347,346,318,333,332,330,339,338,337,336,341,342,271,299,272,277,276,275,283,282,306,303,302,281,311,314,312,285,288,287,286,290,309,295,294,292,291,305,298,297,296,317,259,258,260,265,264,268,263,269,262,261,267,266,256,255,254,243,252,253,242,241,251,244,248,247,246,250,240,239,233,211,210,212,236,218,217,216,230,215,214,234,213,220,219,221,227,226,225,232,224,223,222,209,208,207,206,205,204,203,202,201,200,199,196,197,194,195,192,186,185,193,190,189,184,176,182,180,178,177,181,174,173,172,170,169,171,168,167,166,165,164,163,162,161,160,159,158,129,128,131,130,149,152,148,132,133,145,136,135,137,139,141,156,150,140,147,146,143,144,126,125,123,122,120,118,117,116,115,458,564,456,562,454,560,558,556,448,554,446,552,444,550,442,546,438,544,436,542,434,540,432,538,430,536,428,534,426,532,424,530,422,528,420,351,526,418,113,112,111,110,105,104,103,102,100,99,96,94,95,91,90,87,86,83,82,81,80,77,74,71,68,65,64,63,62,59,56,49,48,47]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"cd727cbfb1f85afcda9601fdcfbee1a1","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"6fb5f8547b1742f75b1a56f67f0e08a7","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"8b2369738fb2b758880e950314569c67","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"9ffed8da49980d9878e7d5fc6837b753","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"2ce55367ee340cea5ec8671751cd772e","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"a786e48709f4b048b0b84baf03aa759b","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"9ee092b55d877dea8d8f8cab2036c885","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"5953a4b418b80a3a9bf2372beff690ca","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"42ff695f7b72c6b0cf78adac546b489b","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"3c1fef5aa2fd9241fc032a4cdbc21ed8","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"26821c2a02573d325ee72499abd10a7c","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"fbe1c7a8a4cdbda2982cbae9ca0530cc","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"0b92c6a165ba8857575bb49a9079ce65","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"690a0137323f6cc60f67af00f837bbce","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"da8c15618718e3cf4358019e460a4242","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"a2b891b540fd895c4c1b8da6b2082680","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"437875a5785af5f73b16e27955b82eb0","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"34f7ea00a3139b36d0a75a5c1d7dbd3b","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"ed3f8b2115f50f7230fb65bc893ebce7","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"cbead36570ab68437d9660eebc90ee5c","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"cf007d601cc969e51a0cfdb9e470f8f1","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"815a9e73264dd6ca70409c3f113e3f33","Uids":[6316]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"f88f5c8c880d2bceeff2740610b18d5d","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"494810d7f34f2d3010af92b1bd2b32c8","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"fd99e2dba0577a3094d1821b25d6c8ee","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"d240566d9bf3eb226f62448d4ce16e56","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"ff1cfec4a9d83e3d45303876d93f0662","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"87a281f0fea9a279e0aeecd390cdf8cd","Uids":[37755,37754]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"2eef14b6a0e4c1ca5094483afd991948","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"fed8b4e4ed9056e39f796a7dc2e5530a","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"578007c7d36f40bcbeb4000235ccc56c","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"474dbf0e25d028562696c18a2f677699","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"29db53a0aa101b74119175ebae66a387","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"8fd38e1ec166fc5cce5f22f72cb52b5f","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"79bf858ba69e4233d55bfc48a4c37af7","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"1c2afe449227ed723a2609d4d09420e7","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"07950beee71faade26bd6bd01e687a12","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"61160daf59b9522bed055ce0a9a210f7","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"b38a0c4190afdf4f4f964fdb97aab4eb","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"6f943171c7bd71c7fa7dd7794cfebd9b","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"aeb70811dd66bd676542971489f0001b","Uids":[2241,2240,2239,2238,2237,2236,2235,2234,2233,2232,2231,2230,2229,2228,2227,2226,2225,2224,2223,2222,2221,2220,2219,2218,2217,2216,2215,2214,2213,2212,2211,2210,2209,2208,2207,2206,2205,2204,2203,2202,2201,2200,2199,2198,2197,2196,2195,2194,2193,2192,2191,2190,2189,2188,2187,2186,2185,2184,2183,2182,2181,2180,2179,2178,2177,2176,2175,2174,2173,2172,2171,2170,2169,2168,2167,2166,2165,2164,2163,2162,2161,2160,2159,2158,2157,2156,2155,2154,2153,2152,2151,2150,2149,2148,2147,2146,2145,2144,2143,2142,2141,2140,2139,2138,2137,2136,2135,2134,2133,2132,2131,2130,2129,2128,2126,2127,2125,2124,2123,2122,2121,2120,2119,2118,2117,2116,2115,2114,2113,2112,2111,2110,2109,2108,2107,2106,2105,2104,2103,2102,2101,2100,2099,2098,2097,2096,2095,2094,2093,2092,2091,2090,2089,2088,2087,2086,2085,2084,2083,2082,2081,2080,2079,2078,2077,2076,2075,2074,2073,2072,2071,2070,2069,2068,2067,2066,2065,2064,2063,2062,2061,2060,2059,2058,2056,2055,2054,2053,2052,2051,2050,2049,2048,2047,2045,2044,2043,2042,2041,2040,2039,2038,2037,2036,2035,2034,2033,2032,2031,2030,2029,2028,2027,2026,2025,2024,2023,2022,2021,2020,2019,2018,2017,2016,2015,2014,2013,2012,2011,2009,2008,2007,2006,2005,2004,2003,2002,2001,2000,1999,1998,1997,1996,1995,1994,1993,1992,1991,1990,1989,1988,1987,1971,1970,1969,1968,1961,1962,1958,1946,1945,1944,1943,1942,1941,1940,1939,1938,1937,1936,1935,1934,1933,1932,1931,1930,1929,1928,1927,1926,1924,1923,1922,1921,1920,1919,1918,1917,1916,1915,1914,1913,1912,1911,1910,1909,1908,1907,1906,1905,1904,1903,1902,1901,1900,1899,1898,1897,1896,1895,1894,1893,1892,1891,1890,1889,1888,1887,1886,1885,1884,1883,1882,1881,1880,1879,1878,1877,1876,1875,1874,1873,1872,1871,1870,1869,1868,1867,1866,1865,1864,1863,1862,1861,1860,1859,1858,1857,1856,1855,1854,1853,1852,1851,1850,1849,1848,1847,1846,1845,1844,1843,1842,1841,1840,1839,1838,1837,1836,1835,1834,1833,1832,1831,1830,1829,1828,1827,1826,1825,1824,1823,1822,1821,1820,1819,1818,1817,1816,1815,1814,1813,1812,1811,1810,1809,1808,1807,1806,1805,1804,1803,1802,1801,1800,1799,1798,1797,1796,1795,1794,1793,1792,1791,1790,1789,1788,1787,1786,1785,1784,1783,1782,1781,1780,1779,1778,1777,1776,1775,1774,1773,1772,1771,1770,1769,1768,1767,1766,1765,1764,1763,1762,1761,1760,1759,1757,1756,1755,1753,1754,1752,1751,1750,1749,1748,1747,1746,1745,1744,1743,1742,1741,1740,1739,1738,1737,1736,1735,1734,1733,1725,1724,1723,1722,1721,1720,1707,1706,1705,1704,1703,1702,1701,1700,1699,1698,1697,1696,1695,1694,1693,1692,1691,1690,1689,1688,1687,1686,1685,1684,1683,1682,1681,1680,1679,1678,1677,1676,1675,1674,1671,1670,1669,1667,1666,1665,1664,1663,1662,1661,1660,1659,1658,1657,1656,1655,1654,1653,1652,1651,1650,1649,1648,1647,1646,1645,1644,1643,1642,1641,1640,1639,1638,1637,1636,1635,1634,1633,1632,1631,1630,1629,1628,1627,1626,1625,1624,1623,1622,1621,1620,1619,1618,1617,1616,1615,1614,1613,1612,1611,1610,1609,1608,1607,1606,1605,1604,1603,1602,1601,1600,1599,1598,1597,1596,1595,1594,1593,1592,1591,1590,1589,1588,1587,1586,1585,1584,1583,1582,1581,1580,1579,1578,1577,1576,1575,1574,1573,1572,1571,1570,1569,1568,1567,1566,1565,1564,1563,1562,1561,1560,1559,1558,1557,1556,1555,1554,1553,1552,1551,1550,1549,1548,1547,1546,1545,1544,1543,1542,1541,1540,1539,1538,1537,1536,1535,1534,1533,1532,1531,1530,1529,1528,1527,1526,1525,1524,1523,1522,1521,1520,1519,1518,1517,1516,1515,1514,1513,1512,1511,1510,1509,1508,1507,1506,1505,1504,1503,1502,1501,1500,1499,1498,1497,1496,1495,1494,1492,1493,1491,1490,1489,1488,1487,1486,1485,1484,1483,1482,1481,1480,1479,1478,1477,1476,1475,1474,1473,1472,1471,1470,1469,1468,1467,1466,1465,1464,1463,1462,1461,1460,1459,1456,1455,1454,1453,1452,1451,1450,1449,1448,1445,1444,1443,1442,1441,1440,1439,1438,1437,1436,1435,1434,1433,1432,1431,1430,1429,1428,1427,1426,1425,1424,1423,1422,1421,1420,1419,1418,1417,1416,1410,1408,1407,1406,1405,1403,1402,1401,1400,1398,1397,1396,1395,1394,1393,1392,1391,1390,1389,1388,1387,1386,1385,1384,1383,1381,1380,1378,1377,1376,1375,1374,1373,1372,1371,1370,1369,1368,1367,1366,1365,1364,1363,1362,1361,1360,1359,1358,1357,1356,1355,1354,1353,1352,1351,1350,1349,1348,1347,1346,1345,1344,1343,1342,1341,1340,1339,1338,1337,1336,1335,1334,1333,1332,1331,1330,1329,1328,1327,1326,1325,1324,1323,1322,1321,1320,1319,1318,1317,1314,1313,1312,1311,1310,1309,1308,1307,1306,1305,1304,1303,1302,1301,1300,1297,1296,1295,1294,1293,1292,1291,1289,1288,1287,1286,1285,1284,1283,1282,1281,1280,1279,1278,1277,1276,1275,1274,1273,1272,1271,1269,1268,1267,1266,1265,1264,1263,1262,1261,1260,1256,1255,1254,1253,1252,1251,1250,1249,1248,1247,1246,1245,1244,1243,1242,1241,1240,1239,1237,1236,1235,1234,1233,1232,1231,1230,1229,1228,1227,1226,1225,1224,1223,1222,1221,1215,1214,1213,1212,1211,1210,1208,1207,1206,1205,1204,1202,1200,1199,1198,1197,1196,1195,1194,1193,1192,1191,1190,1189,1188,1187,1186,1185,1184,1183,1182,1181,1180,1179,1178,1177,1176,1175,1174,1173,1172,1171,1170,1169,1168,1167,1166,1165,1164,1163,1162,1161,1160,1159,1158,1157,1156,1155,1154,1153,1152,1151,1150,1149,1148,1147,1146,1145,1144,1143,1142,1141,1140,1139,1138,1137,1136,1135,1134,1133,1132,1131,1130,1129,1128,1127,1126,1125,1124,1123,1122,1121,1120,1119,1118,1117,1116,1115,1114,1113,1112,1111,1110,1109,1108,1107,1106,1105,1104,1103,1102,1101,1100,1099,1098,1097,1096,1095,1094,1093,1092,1091,1090,1089,1088,1087,1086,1085,1084,1083,1082,1081,1080,1079,1078,1077,1076,1075,1074,1073,1072,1071,1070,1069,1068,1067,1066,1064,1062,1061,1060,1059,1058,1057,1056,1055,1054,1053,1052,1051,1049,1048,1047,1046,1045,1044,1042,1041,1040,1039,1038,1037,1036,1035,1034,1033,1032,1031,1030,1029,1028,1027,1026,1025,1024,1023,1022,1021,1020,1019,1018,1017,1016,1015,1014,1013,1012,1011,1010,1009,1008,1007,1006,1005,1004,1003,1002,1001,1000,999,998,997,996,995,994,993,992,991,990,989,987,986,985,984,983,982,981,979,978,977,976,975,966,913,912,911,910,909,908,907,906,905,904,903,902,901,900,899,898,897,896,895,894,893,892,891,890,889,888,887,886,885,884,883,882,881,880,878,877,876,875,874,873,872,871,879,870,869,868,867,866,865,864,863,862,861,860,859,858,857,856,855,854,853,852,851,850,849,848,847,846,844,843,842,841,840,839,838,837,836,835,834,833,832,831,830,829,828,827,826,825,824,823,822,821,820,819,818,817,816,815,814,813,812,811,810,809,808,807,806,805,804,803,802,801,800,799,798,797,796,795,794,793,792,791,790,789,788,787,786,785,783,782,780,779,778,777,776,775,774,773,772,771,770,769,768,767,766,765,764,763,762,761,760,759,755,754,753,752,751,750,749,748,747,746,745,744,743,742,741,740,739,738,737,736,735,734,733,732,731,730,729,728,727,726,725,724,723,722,721,720,719,718,717,716,715,714,713,712,711,710,709,708,707,706,705,704,703,702,701,698,697,696,695,694,693,692,691,690,689,688,687,686,685,684,683,682,681,680,679,678,677,676,675,674,673,672,671,670,669,668,667,666,665,664,663,662,645,644,643,642,641,640,639,638,637,636,635,634,633,632,631,630,629,628,627,626,625,624,623,622,621,620,619,618,617,616,615,614,613,612,611,610,609,608,607,606,605,604,603,602,601,600,599,598,597,596,595,594,593,592,591,590,589,588,587,586,585,584,583,582,581,580,578,579,577,576,575,574,573,572,571,570,569,568,567,566,565,564,563,562,561,560,559,558,557,556,555,554,553,552,551,550,549,548,547,546,545,544,543,542,541,540,539,538,537,536,535,534,533,532,531,530,529,528,527,526,525,524,523,522,521,520,519,518,517,516,515,514,513,512,511,510,509,508,507,506,505,504,503,502,501,500,498,497,496,495,494,493,492,491,490,489,488,485,484,483,482,481,480,479,478,477,476,475,474,473,472,471,470,469,468,467,466,465,464,463,462,461,460,459,458,457,456,455,454,453,452,451,450,449,448,447,446,445,444,443,442,441,440,439,438,437,436,435,433,432,431,430,429,428,427,426,425,424,423,422,421,420,419,418,417,416,415,414,413,412,411,410,409,408,407,406,405,404,403,402,401,400,399,398,397,396,395,394,393,392,391,390,389,388,387,386,385,384,383,382,381,380,379,378,377,376,375,374,373,371,370,369,368,367,366,365,364,363,434,172,158,171,170,157,169,156,168,167,155,154,166,164,163,162,161,160,159,165,132,131,130,144,133,135,134,143,142,145,141,147,140,139,138,146,137,136,153,151,152,148,149,150,129,128,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107,106,105,104,103,102,101,100,99,98,97,96,95,94,93,92,91,90,89,88,87,86,85,280,362,198,197,196,195,194,193,192,191,190,189,188,187,186,185,184,183,182,181,180,179,178,177,176,175,83,173,360,79,78,77,356,75,74,73,72,351,70,349,68,347,66,263,64,343,62,341,258,339,58,337,56,335,54,333,52,331,50,329,48,327,46,325,44,323,322,41,320,39,318,37,316,35,314,33,312,31,310,29,308,27,224,25,304,303,22,301,20,299,18,297,16,295,14,293,12,291,10,207,288,7,286,5,284,3,282,199]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"6642d16dbae8c10e9ae4d737d69b0dcf","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"e2e0635892c8f86b9c11a4d969d0b0ea","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"810199efe5c237cc62c472d6e524fb5e","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"489a23d8c1ac9d8f7ce072afc1097c9e","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"f58feab699043250ab0a56fb3c81af3d","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"539d66b119a9fae43dbf9d3847dc2816","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"7de62cf87b943e5a73641e59bc974ace","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"3e26b43a1faf4e80559bf6148488ca44","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"31ba7fb5f5e9920f9164c534e8c44ab3","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"4bea8e4f0f513905168eed515822e73b","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"26f57ec66045cf86b9834d5831f1d959","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"b6e7f9736a610f4d6dda0a1f080b0425","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"dbaa333f5c017f4bb1aaed862d621d53","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"03721a807465896594fb7c2b144f3bd4","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"1f769cbaaca463d5836c34901520c92b","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"752b8a3b17e9eacee7a54c7b734beae4","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"adc6249f2f551b15003af271b34b883c","Uids":[39303,39240,38148,38121,37501,37500,37499,37498,37497,37496,37495,37494,37490,37482,37481,37480,37477,37333,35925,35673,35250,35221,35201,35014,34851,34726,34577,34266,33922,33885,33599,33474,33105,33070,32585,32136,31741,31075,30705,30684,30571,30455,30314,30048,29961,29915,29430,29319,29221,29205,29178,28743,28714,28707,28518,27918,27823,27780,27276,26981,26716,26677,26486]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"02df058738800f038fefc64ed7e5ac1c","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"f6acecd6ad285288a0a873d5aac611b7","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"1be0d657035728149e64fd6c4ed2573a","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"26c1dd8b06fd4a5b57ded7357867e7f2","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"20816b3d424c304e12c9bf0b534fb442","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"f93a811e165976f0508ed37b0526b258","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"a35a622f7d4f5b1cc189a46bc624b7a8","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"4c62bc13bdc24fcf9425d679b0232c7e","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"c16c94470188d5794bac324d9cf39f89","Uids":[39705,34381,33816,33812,33744,33743,33640,33602,33590,33561,33525,33449,33441,33357,33341,33299,33281,33251,33241,33235,33213,33171,33112,33102,33100,33045,32986,32602,32601,32522,32517,32510,32448,32424,32377,32357,32333,32297,32279,32263,32194,32141,31978,31877,31867,31836,31723,31718,31456,31443,31401,31367,31294,31257,31108,31044,31024,31017,30871,30853,30848,30845,30833,30826,30790,30504,30447,30443,30442,30273,30227,30154,30097,30086,30037,29981,29972,29907,29895,29819,29603,29598,29587,29442,29440,29344,29258,29208,29070,29043,29025,28980,28935,28886,28661,28648,28645,28627,28620,28469,28436,28317,28249,28076,28037,27994,27975,27943,27932,27826,27766,27749,27698,27674,27601,27591,27535,27356,27194,27193,26713,26694,25948,11324,11313]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"35c3483c5da6ed3f6aab7c3d545e1890","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"55957abf03118ec75c0d92129c1cd407","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"93fbe18552fc4828a8b3b99f7ce20d44","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"8ef46b17f38682bb322e37c4baf10b90","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"7921257e800bf072c961749709fc59cc","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"6efdbe9f77d98ef80820b79e38edeea7","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"ad601650b5db15795b7592a1d39b5494","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"adc6249f2f551b15003af271b34b883c","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"14965ffe2c11660ac65293022564f017","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"b5dbf12d46fd16cf7f91b3355db5c3f1","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"53bb13a7f2b2cd13232f8a533dc911af","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"a276ccde35aba8d488e47135c3b667d5","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"98e04db5e89cb0ad33375f6c97f5133d","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"7bb9f87b71bd3de719e5a4cb17ed8410","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"d9a877c087b3b7fb5980fb7629db437a","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"2dc17bf12a168dd62ad9c8aa812a7de2","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"ccf70bb3b8c3538f988c64828649278b","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"f88c8e2d37c4cc90c440cca8e193a6aa","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"9b6746052d9285229ab5453fc83cfa31","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"08fa20d56de730be497ae345aca765a6","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"36b2d89ce949156e3c385b99b0a7f905","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"d8f033e7cb539d40be05f509960dfc3e","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"0443b96f1f64e973870c106f54d6e036","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"4840e0bd49a2449ae12c401496555b82","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"5d6d681a8d0872c0bd0c5ef4e96f868c","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"2c82eec6c3f530b66252ed992b8e3ae5","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"f393875cfd8300d91c6ca54e50b8aefa","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"8c9e490e5b863841f55c6ef3c4ee27d8","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"8adef513a997a348808e3fdbeae4b190","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"38dfa1ebef68820e1c87082281e96ef4","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"4c48204e42197cc9b7310963b42941d5","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"66c98a5ff79f20544c382ea04a53adc9","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"49c72f04c24a193ceb2a0092cbb773d8","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"78224dab3e734be638394f2cca779ff1","Uids":[]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"1a7c12dfb69b55a176d6db8b7d962e6e","Uids":[2567,2566,2565,2564,2563,2562,2561,2560,2559,2558,2557,2556,2555,2554,2553,2552,2551,2550,2549,2548,2547,2546,2545,2544,2543,2542,2541,2540,2539,2538,2537,2536,2535,2534,2533,2532,2530,2529,2528,2527,2526,2525,2524,2523,2522,2521,2520,2519,2518,2517,2516,2515,2531,2514,2513,2512,2511,2510,2509,2507,2508,2506,2505,2504,2503]}
\ No newline at end of file
+++ /dev/null
-{"FolderHash":"5b01d9475f69cc5b630fd2316bcfef24","Uids":[131,130,129,128,127,126,125,124,123,122,121,120,119,118,117,116,115,114,113,112,111,110,109,108,107]}
\ No newline at end of file
+++ /dev/null
-; RainLoop Webmail configuration file\r
-; Please don't add custom parameters here, those will be overwritten
-
-[webmail]
-; Text displayed as page title
-title = "Laktatnebel Webmail"
-
-; Text displayed on startup
-loading_description = "Webmail"
-favicon_url = ""
-
-; Theme used by default
-theme = "SquaresDark"
-
-; Allow theme selection on settings screen
-allow_themes = On
-allow_user_background = On
-
-; Language used by default
-language = "de_DE"
-
-; Admin Panel interface language
-language_admin = "de_DE"
-
-; Allow language selection on settings screen
-allow_languages_on_settings = On
-allow_additional_accounts = On
-allow_additional_identities = On
-
-; Number of messages displayed on page by default
-messages_per_page = 20
-
-; File size limit (MB) for file upload on compose screen
-; 0 for unlimited.
-attachment_size_limit = 32
-
-[interface]
-show_attachment_thumbnail = On
-use_native_scrollbars = Off
-new_move_to_folder_button = On
-
-[branding]
-login_logo = ""
-login_background = ""
-login_desc = ""
-login_css = ""
-user_css = ""
-user_logo = ""
-user_logo_title = ""
-user_logo_message = ""
-user_iframe_message = ""
-welcome_page_url = ""
-welcome_page_display = "none"
-
-[contacts]
-; Enable contacts
-enable = On
-allow_sync = On
-sync_interval = 20
-type = "pgsql"
-pdo_dsn = "pgsql:host=127.0.0.1;port=5432;dbname=rainloop"
-pdo_user = "rainloop"
-pdo_password = "dS7CBpJEs8-9&E_e"
-suggestions_limit = 30
-
-[security]
-; Enable CSRF protection (http://en.wikipedia.org/wiki/Cross-site_request_forgery)
-csrf_protection = On
-custom_server_signature = "RainLoop"
-x_frame_options_header = ""
-x_xss_protection_header = "1; mode=block"
-openpgp = Off
-
-; Login and password for web admin panel
-admin_login = "webmailAdmin"
-admin_password = "$2y$10$jEphx3Qbqgh3hqr1oMOADey9onSGhWE05d9rgD9OEQNOx1npzs/ki"
-
-; Access settings
-allow_admin_panel = On
-allow_two_factor_auth = On
-force_two_factor_auth = Off
-hide_x_mailer_header = Off
-admin_panel_host = ""
-admin_panel_key = "admin"
-content_security_policy = ""
-core_install_access_domain = ""
-
-[ssl]
-; Require verification of SSL certificate used.
-verify_certificate = Off
-
-; Allow self-signed certificates. Requires verify_certificate.
-allow_self_signed = On
-
-; Location of Certificate Authority file on local filesystem (/etc/ssl/certs/ca-certificates.crt)
-cafile = ""
-
-; capath must be a correctly hashed certificate directory. (/etc/ssl/certs/)
-capath = ""
-
-; Location of client certificate file (pem format with private key) on local filesystem
-client_cert = ""
-
-[capa]
-folders = On
-composer = On
-contacts = On
-settings = On
-quota = On
-help = On
-reload = On
-search = On
-search_adv = On
-filters = On
-x-templates = Off
-dangerous_actions = On
-message_actions = On
-messagelist_actions = On
-attachments_actions = On
-
-[login]
-default_domain = ""
-
-; Allow language selection on webmail login screen
-allow_languages_on_login = On
-determine_user_language = On
-determine_user_domain = On
-welcome_page = Off
-hide_submit_button = Off
-forgot_password_link_url = ""
-registration_link_url = ""
-login_lowercase = On
-
-; This option allows webmail to remember the logged in user
-; once they closed the browser window.
-;
-; Values:
-; "DefaultOff" - can be used, disabled by default;
-; "DefaultOn" - can be used, enabled by default;
-; "Unused" - cannot be used
-sign_me_auto = "DefaultOff"
-
-[plugins]
-; Enable plugin support
-enable = Off
-
-; List of enabled plugins
-enabled_list = ""
-
-[defaults]
-; Editor mode used by default (Plain, Html, HtmlForced or PlainForced)
-view_editor_type = "Html"
-
-; layout: 0 - no preview, 1 - side preview, 2 - bottom preview
-view_layout = 1
-view_use_checkboxes = On
-autologout = 30
-show_images = Off
-contacts_autosave = On
-mail_use_threads = Off
-allow_draft_autosave = On
-mail_reply_same_folder = Off
-
-[logs]
-; Enable logging
-enable = Off
-
-; Logs entire request only if error occured (php requred)
-write_on_error_only = Off
-
-; Logs entire request only if php error occured
-write_on_php_error_only = Off
-
-; Logs entire request only if request timeout (in seconds) occured.
-write_on_timeout_only = 0
-
-; Required for development purposes only.
-; Disabling this option is not recommended.
-hide_passwords = On
-time_offset = "0"
-session_filter = ""
-sentry_dsn = ""
-
-; Log filename.
-; For security reasons, some characters are removed from filename.
-; Allows for pattern-based folder creation (see examples below).
-;
-; Patterns:
-; {date:Y-m-d} - Replaced by pattern-based date
-; Detailed info: http://www.php.net/manual/en/function.date.php
-; {user:email} - Replaced by user's email address
-; If user is not logged in, value is set to "unknown"
-; {user:login} - Replaced by user's login (the user part of an email)
-; If user is not logged in, value is set to "unknown"
-; {user:domain} - Replaced by user's domain name (the domain part of an email)
-; If user is not logged in, value is set to "unknown"
-; {user:uid} - Replaced by user's UID regardless of account currently used
-;
-; {user:ip}
-; {request:ip} - Replaced by user's IP address
-;
-; Others:
-; {imap:login} {imap:host} {imap:port}
-; {smtp:login} {smtp:host} {smtp:port}
-;
-; Examples:
-; filename = "log-{date:Y-m-d}.txt"
-; filename = "{date:Y-m-d}/{user:domain}/{user:email}_{user:uid}.log"
-; filename = "{user:email}-{date:Y-m-d}.txt"
-filename = "log-{date:Y-m-d}.txt"
-
-; Enable auth logging in a separate file (for fail2ban)
-auth_logging = Off
-auth_logging_filename = "fail2ban/auth-{date:Y-m-d}.txt"
-auth_logging_format = "[{date:Y-m-d H:i:s}] Auth failed: ip={request:ip} user={imap:login} host={imap:host} port={imap:port}"
-
-[debug]
-; Special option required for development purposes
-enable = Off
-
-[social]
-; Google
-google_enable = Off
-google_enable_auth = Off
-google_enable_auth_gmail = Off
-google_enable_drive = Off
-google_enable_preview = Off
-google_client_id = ""
-google_client_secret = ""
-google_api_key = ""
-
-; Facebook
-fb_enable = Off
-fb_app_id = ""
-fb_app_secret = ""
-
-; Twitter
-twitter_enable = Off
-twitter_consumer_key = ""
-twitter_consumer_secret = ""
-
-; Dropbox
-dropbox_enable = Off
-dropbox_api_key = ""
-
-[cache]
-; The section controls caching of the entire application.
-;
-; Enables caching in the system
-enable = On
-
-; Additional caching key. If changed, cache is purged
-index = "v1"
-
-; Can be: files, APC, memcache, redis (beta)
-fast_cache_driver = "files"
-
-; Additional caching key. If changed, fast cache is purged
-fast_cache_index = "v1"
-
-; Browser-level cache. If enabled, caching is maintainted without using files
-http = On
-
-; Browser-level cache time (seconds, Expires header)
-http_expires = 3600
-
-; Caching message UIDs when searching and sorting (threading)
-server_uids = On
-
-[labs]
-; Experimental settings. Handle with care.
-;
-allow_mobile_version = On
-ignore_folders_subscription = Off
-check_new_password_strength = On
-update_channel = "stable"
-allow_gravatar = On
-allow_prefetch = On
-allow_smart_html_links = On
-cache_system_data = On
-date_from_headers = On
-autocreate_system_folders = On
-allow_message_append = Off
-disable_iconv_if_mbstring_supported = Off
-login_fault_delay = 1
-log_ajax_response_write_limit = 300
-allow_html_editor_source_button = Off
-allow_html_editor_biti_buttons = Off
-allow_ctrl_enter_on_compose = On
-try_to_detect_hidden_images = Off
-hide_dangerous_actions = Off
-use_app_debug_js = Off
-use_mobile_version_for_tablets = Off
-use_app_debug_css = Off
-use_imap_sort = On
-use_imap_force_selection = Off
-use_imap_list_subscribe = On
-use_imap_thread = On
-use_imap_move = Off
-use_imap_expunge_all_on_delete = Off
-imap_forwarded_flag = "$Forwarded"
-imap_read_receipt_flag = "$ReadReceipt"
-imap_body_text_limit = 555000
-imap_message_list_fast_simple_search = On
-imap_message_list_count_limit_trigger = 0
-imap_message_list_date_filter = 0
-imap_message_list_permanent_filter = ""
-imap_message_all_headers = Off
-imap_large_thread_limit = 50
-imap_folder_list_limit = 200
-imap_show_login_alert = On
-imap_use_auth_plain = On
-imap_use_auth_cram_md5 = Off
-smtp_show_server_errors = Off
-smtp_use_auth_plain = On
-smtp_use_auth_cram_md5 = Off
-sieve_allow_raw_script = Off
-sieve_utf8_folder_name = On
-sieve_auth_plain_initial = On
-sieve_allow_fileinto_inbox = Off
-imap_timeout = 300
-smtp_timeout = 60
-sieve_timeout = 10
-domain_list_limit = 99
-mail_func_clear_headers = On
-mail_func_additional_parameters = Off
-favicon_status = On
-folders_spec_limit = 50
-owncloud_save_folder = "Attachments"
-owncloud_suggestions = On
-curl_proxy = ""
-curl_proxy_auth = ""
-in_iframe = Off
-force_https = Off
-custom_login_link = ""
-custom_logout_link = ""
-allow_external_login = Off
-allow_external_sso = Off
-external_sso_key = ""
-http_client_ip_check_proxy = Off
-fast_cache_memcache_host = "127.0.0.1"
-fast_cache_memcache_port = 11211
-fast_cache_redis_host = "127.0.0.1"
-fast_cache_redis_port = 6379
-use_local_proxy_for_external_images = Off
-detect_image_exif_orientation = On
-cookie_default_path = ""
-cookie_default_secure = Off
-check_new_messages = On
-replace_env_in_configuration = ""
-startup_url = ""
-strict_html_parser = Off
-allow_cmd = Off
-dev_email = ""
-dev_password = ""
-
-[version]
-current = "1.17.0"
-saved = "Thu, 08 Aug 2024 15:37:51 +0000"
\ No newline at end of file
+++ /dev/null
-imap_host = "imap.anita-ole.de"
-imap_port = 993
-imap_secure = "SSL"
-imap_short_login = Off
-sieve_use = Off
-sieve_allow_raw = Off
-sieve_host = ""
-sieve_port = 4190
-sieve_secure = "None"
-smtp_host = "smtp.anita-ole.de"
-smtp_port = 465
-smtp_secure = "SSL"
-smtp_short_login = Off
-smtp_auth = On
-smtp_php_mail = Off
-white_list = ""
\ No newline at end of file
+++ /dev/null
-imap_host = "imap.ina-rosentreter.de"
-imap_port = 993
-imap_secure = "SSL"
-imap_short_login = Off
-sieve_use = Off
-sieve_allow_raw = Off
-sieve_host = ""
-sieve_port = 4190
-sieve_secure = "None"
-smtp_host = "smtp.ina-rosentreter.de"
-smtp_port = 465
-smtp_secure = "SSL"
-smtp_short_login = Off
-smtp_auth = On
-smtp_php_mail = Off
-white_list = ""
\ No newline at end of file
+++ /dev/null
-imap_host = "smtp.laktatnebel.de"
-imap_port = 993
-imap_secure = "SSL"
-imap_short_login = Off
-sieve_use = Off
-sieve_allow_raw = Off
-sieve_host = ""
-sieve_port = 4190
-sieve_secure = "None"
-smtp_host = "imap.laktatnebel.de"
-smtp_port = 465
-smtp_secure = "SSL"
-smtp_short_login = Off
-smtp_auth = On
-smtp_php_mail = Off
-white_list = ""
\ No newline at end of file
+++ /dev/null
-imap_host = "imap.lasse-gehrmann.de"
-imap_port = 993
-imap_secure = "SSL"
-imap_short_login = Off
-sieve_use = Off
-sieve_allow_raw = Off
-sieve_host = ""
-sieve_port = 4190
-sieve_secure = "None"
-smtp_host = "smtp.lasse-gehrmann.de"
-smtp_port = 465
-smtp_secure = "SSL"
-smtp_short_login = Off
-smtp_auth = On
-smtp_php_mail = Off
-white_list = ""
\ No newline at end of file
+++ /dev/null
-imap_host = "imap.matthies-gehrmann.de"
-imap_port = 993
-imap_secure = "SSL"
-imap_short_login = Off
-sieve_use = Off
-sieve_allow_raw = Off
-sieve_host = ""
-sieve_port = 4190
-sieve_secure = "None"
-smtp_host = "smtp.matthies-gehrmann.de"
-smtp_port = 465
-smtp_secure = "SSL"
-smtp_short_login = Off
-smtp_auth = On
-smtp_php_mail = Off
-white_list = ""
\ No newline at end of file
+++ /dev/null
-imap_host = "imap.ole-b-rosentreter.de"
-imap_port = 993
-imap_secure = "SSL"
-imap_short_login = Off
-sieve_use = Off
-sieve_allow_raw = Off
-sieve_host = ""
-sieve_port = 4190
-sieve_secure = "None"
-smtp_host = "smtp.ole-b-rosentreter.de"
-smtp_port = 465
-smtp_secure = "SSL"
-smtp_short_login = Off
-smtp_auth = On
-smtp_php_mail = Off
-white_list = ""
\ No newline at end of file
+++ /dev/null
-{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
+++ /dev/null
-{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
+++ /dev/null
-A2i5YbS_mKaT4ifcweMmcgm-9pcpd1OryBFzks17JsSpGqgqkiYnTSIb-XbduGVk2emHKSPslmCIfEWy8-09Js70_Q8MFDiVgmSRPHF_yG-JIESRATQ8DP5Wy9qTl_yedCDm9DI9fc-pSMJ8Kz-4X3WPAaqRLsgxyHPCi-5J1vNR6EGtFfjNV1E1cf1F0LzFDV_HI2QoZx_Q2SB7fMgwDw7lZ27ZJicP7cDjBBaYfrwz2MiKl2mduHuSjZfEmRG0iDX3Txv-km3IiKXmqijiSaqxBe0O_PSKIRndxDJCWutCXCaK3F0tJjgqYgt1FlOvaa6YIXtLg67V1QqMWXWFSBOOKfa5O5tDT6keWYXeI_GtURwrlbXXGqXWday3O4-3xPg0H7aNA-mFN5klGXUJ-G6gSpDJAy7aC6dDFng4jmw6Wt6bdEpnBtE3jrLljRzEe5iIOvZk0mZBN8HjFpr85_wMD4O7F_D_vspgUu1J4uNwt8B7Zxfx8YbmiJTkPoPyzvjO3H1osHL0DBPhxBaJsIm3i17a1GEN4e-6K5A7enubqdSw98gQlyjRZq7YZdehWs8dMOSihHVYVhncbAeQVr7-Gxta_DVP_Y1Wt6wTHRMa275fDwEzI160OZVaEqhvHOmpG48HrYsftD6PEDdi455MChOCIBO06Dd8cAjeybuq2Qr9rXevNlM9SgfC6podea6FVbGt7jA
\ No newline at end of file
+++ /dev/null
-[]
\ No newline at end of file
+++ /dev/null
-{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder","Theme":"Linen"}
\ No newline at end of file
+++ /dev/null
-[{"Id":"","Email":"privat@ina-rosentreter.de","Name":"","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"b1m43pel6629gfyvq5gc7ccbht8iwzhm","Email":"freicha@web.de","Name":"","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"8q75sze3epk37ileb2hx9urw3txa1rcz","Email":"shopping@ina-rosentreter.de","Name":"Ina Rosentreter","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"3unt7pjp8klz4ghc80po7ud5ul9c1l25","Email":"holiday@ina-rosentreter.de","Name":"Ina Rosentreter","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"sqlnrph1dovgc2m888y37q9si8abpcbv","Email":"amazon@ina-rosentreter.de","Name":"Ina Rosentreter","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"veb7o7brwk3x5abvrol0dkj2aubpxuqr","Email":"banking@ina-rosentreter.de","Name":"Ina Rosentreter","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"l24j0rrl2sdy3sg4xj3r6oxwlglzph1b","Email":"sport@ina-rosentreter.de","Name":"Ina Rosentreter","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false},{"Id":"92xwigevadaqn55j9rsr11d3w8jkw7cm","Email":"ina.rosentreter@gmail.com","Name":"Ina Rosentreter","ReplyTo":"","Bcc":"","Signature":"","SignatureInsertBefore":false}]
\ No newline at end of file
+++ /dev/null
-{"DesktopNotifications":false,"MPP":100}
\ No newline at end of file
+++ /dev/null
-{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
+++ /dev/null
-7hNlXRAAe1dRHpbN8-k4-z6a1cp_38ZX_LbyKGRkTMIzhxkNeyIG-8hE-c0ws-qW_C4pOXvKc7cuevcPSvfYRcMAIs_XPRnOmZlryqkv4XppmGI03tMY6K-wJ03JTpt0iIXdwOuN9sFinu11JKQS_8raA6L1Oti3RjwsBsWIcqc
\ No newline at end of file
+++ /dev/null
-{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
+++ /dev/null
-sICjDF_169giFeC_QYssiK4kHRSR65UzHwwed8_xes9rX8x6EBZtJV_rgqt4JCTAvsDvWpKG0oifdS8QPtdReIDe7wX26bhLnMMzK82t-NC28vhiXHHmXw8BJY8wTbl7h61D6vKSUQ7YxRrQc5p8fN4uJCBJnppYmu7OMuW1txxG7TiHLCl0INAYeZNerCZXTkS7SuZe-EIONRGLmBacuV5PVd5OU6VwqqNT0IMJnAT5O6qQSIcpjNHFyq-OuoZc1JTUSpVSRyVgBhsUhwBMdbuZ_7o_EP6xTY-7KHTebRGOzxc0VtzDl5y0QD1dugVi1XYzKpEwgLNmRT0ik7QyiDA1vCn6QgtuQ80r3v3_W6bQGJwupQ41ZYQoDWtp36Midm7O5VgfKQw2YLrtHzMCXYgzHC9deZX0E8sfXRhFYc-Ja6jaRRl-45SL4DeMS5OzZim5jAksgNlg8A-Tegkyni5D4ucPE8FZONIBvJdqYFH3ZP1q4dTMjJl64cT6dsGtEal7rK6PqVGC4To3ZOyH_d0UBHcY-sdbUHaHUogBQC8wvSgXW5I2UZMJqTPAAQxMl43ztKL0xV0s3pvmUXzkMZEwHWzU1Uml7uEskxSBldXPvdGiKAu_GuSsZ4wnwBCYfQkzaayTv4TU9nB2WIKy94sn3ZgnIECDa3FPlkkI3Ak7Ds5qFAaHh2DXEs2nrZvbuKFmawC7wlRssXjr6fS_wOiSezE
\ No newline at end of file
+++ /dev/null
-{"privat@ole-b-rosentreter.de":"OfiSWsg4BbsO_1b7GT68IyV30UyOHgB1neuQcLfJOi_lvRIysd5b21eX09GJSDBhRkObN1kG9E-E4J1jwI9GtAZsofgDxpyHW-29dTutEV93kpM90_ghkwakAehNDadIu4VM9tpG62zLAPx2qNEvpQo7jvbudm3jAwPJD4WRiCri_KxfLmmyfBQVykJO5yyyWJRXw9kCika3SIEKJGwA_WY9USOfU71Xl2Q4XmJAgS-TsHniyYVRHhigTRxNvkJ8iXkVaTGmmyKQ5PvUC7fNMYUUeMlQRHb_szrcs9k9TVVLvOUlUnBHiW33QnS6RWDPd6wXA-DbCp8rrrTWgTiye6Vc2p_68F3QsnRUxRKwOBtThoh8znri45rbLmJRjS9aXHcBzkSUBCfr8oti17tiEV9e2viV0HmuuNQfMcxNLO4","commerce@ole-b-rosentreter.de":"tJ0xG5NopY1zmJlFtjr269xXz5NuqxznJ40aZ2s0HA0SY7xIdls4VxC2CzPwui381sh8Xkq_hOmL8YBxV_H5LiqEktssaNsHUb7Yt9s6bgh5GfGiUW9faxpby5ev5wws_1qntmKpglLEAXBTuZ15lawjKn6LSfdUa1y3-7wy-Ulr1xz_IHbscUBvIw3jWj6U-8NP1aUULNDriy8rnjKHV-BVMc_Gl0OWxKyGkSu5wO0g5VXsPpfFW9fmKMf0oEdavz9GXeEAVM2so9Jk-ZZaUCmws6yBHYAhe8ifW5RNrRk8Zj42i8Ozp2wacBO30wu3H4Wbsff9EAjDPu8O9i_6LJkvox4UFc9wLmmVd_OPbbJnTOOrKNvH4agvR6gVGKfZFlE9iv_msYOGr64LF49gHpPtdxc","sport@ole-b-rosentreter.de":"lyIUZe-p7sxU2V7p3DaqAfBL5JZ6PIgzIijTAsxIMoag_BQuK1tnXI6Xo9wBBVtYk4Z5Q7nffRgpaQPz94r1u5DIJ1qvyVfNtdKzMF6f8fFx41HjcjuonoHfoZOr1hPvQTagOFIPvNmK2TsgIZ4ozef795KfDNdy_Ko__rxiOe4QvZUlm-UH_jgDs8E2QF0Gwgy7w11D2zk1RRcULTfoEaM8vN6DTs7Giqs7eD8RgXZ4fAlx8nKPj91Ry_OKBWJmFNKB7MrKp39X4lCR4WBv_26hCw_BJ0VtSMfcqtSKQjMpeJ835UYgSdLBilB6p604SvgMeqfaC9z4zx6BhHR4SjxWFnz-GTOpLhTwpWCap6T5dDrufn80QBJiitp8xRlY8a-iCZ9FtKrK-5tCEmfx0Q","job@ole-b-rosentreter.de":"21KlC0qJj8GKB3Gzgga_OfbvbIIR2PEI9yiCHxnns8fwzVpnWavUp1D7WluPPzmolXwPrRbhTGrWb8l6W38Or-xf1iPGd2iG5pFnmU0UG6Ge7sEGIBqOrDibZhqU-M7iWkAvWNfC22YxDpr_TxGw59I-IfXCSJMq12QL9gYMXfTrS6IgpPmKVSE0mBsFNwb-xT6O3DY2FllpumhzFK0NNR-wDa6B067ps6hFlJgqwz8AVbkFbOuGQ3FymfJ9y383a6MoHQvo2yLB7hgreWwdqIRFQqWlOs3m1XXu-byTAt8KPcoSvbo0qAFt6vd5kWTIpbx0i9ZsFw4gogJFn9QtWcvXXLfqjy1K86MjYOgcIizcQ158Quct2su8KM43P8mqHfnSaULikcwqtP37","finanzen@ole-b-rosentreter.de":"qfD-1gLcvHjt63jn-eiKu5I0xu1ZmP4lTwj-VN5g41ufij1SZBfszM5UWTCeqv5wCNYj8tHrLQD7pAFnCgaJGbeJMTJw1XVXN8NjjSqFlWZ03vuHRr9ZtKUgEW-cmSkeBqNmleHroD-4RR8XZj8kdEYNown8utmuJwQMqshcN3cx0ygpZY3mmCij3Hkl1KJp2KSXeNuKbuRu58trLicuqpIqarkovdMol6Nh1uQgp_A4K11eiJ_0gRUA_lp7blUsT7LX3tk5xbDYe4ZJ50Ikujv5EUc_s-w0h_UCucQMDuFQ8k2dys07U7wAexd7OlkYmQXkToAKyzSruDXyFR7oUxT5rpx2VbTe2rNJpEubOhAnMSr-9KbhpqOIatiMfCDsUNdb7OJqnPYjl69cBd9M_LMS-o4","freizeit@ole-b-rosentreter.de":"GC0IM62opg3x1plhsMEnRPBU7lyzabHUTVNpkAgaDoCHaTmV7PudLesu_AhnomVikvpKyrRoRt8-Lrokz7BBZkBbMG1LtZT4mC3GDeOoFYokuqKFQmrHVg2ut1ueCnKTWFGiSTJQMz2HhjKuok3rNKU80jan8q-ed375ARa7X06EvrdL55s_M5Z6R1KAl_JsISlxsm_Dh8C3H9-8ySewdNgVVM-XaaadLr6BCnFl9MbgbDwHOKiuSKAeecmUsIDmgDi4ghheAP6ea9HAd4Mexn0mCkPzp1r7hLEImJ4JmdOgOV5DTgYkFPSaHtm5fCeBZ8umH8aig9sdUOIaAlWJA_m7RsIXw-vH_8Dq4DSmOEmmgmmelowqhjaW3Tgv4PbEZXhfCAp7li7O-x2qKFK6IgBsUw8"}
\ No newline at end of file
+++ /dev/null
-{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
+++ /dev/null
-5T9P958wXzzvH9dkKziBo-ajjWWZu9wpQIqob1dSzStCKUYrsKkTKEVzJYvJHy5wfLzkV03qoNw13iBNG3BcMeW9v6jHvtjXD7bzxpAgMu55l48OKXjj48vWNxa1bllGZI9fpf_4CTJvqFsaBYzs33ZNPrnQaZj6Zd2GFkUN4tG8-D-_wfI_A-4fAmmmj5-M4FOoxg
\ No newline at end of file
+++ /dev/null
-{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
+++ /dev/null
-{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
+++ /dev/null
-{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
+++ /dev/null
-{"EditorDefaultType":"Plain","MPP":100,"ContactsAutosave":false,"DesktopNotifications":false}
\ No newline at end of file
+++ /dev/null
-{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder","UseThreads":true,"Theme":"SquaresDark"}
\ No newline at end of file
+++ /dev/null
-bOG1_hbQyxev3zmyO1CUW7LPa6Ve2Ua5fzwbkSTlF7b3aUxHM5vWlSDKU_w9-kYWtecsFoXWq4iKgjGzlCI46-ytQhoyd_XygWNMUx-DDX6U6khTDijZ6uABbJoqHmfyrCBjVsg8pvjDwNEYH5bG0lIrwAgJ1QAIlk-SfJuGakiH4AtpNSwY5psevls8LXS12x9lYx7_XJn7u2cunZ5OD68LaUsobL5FgT5WLshiZGFi8cF3ZpWynJcyrXHjkCqAynQA9IW5nDkjAe0B4wHyTZ-XejJ5yYWxToOwmtz6u9wGUS3NnKHloaGvC9lCbXQvKLwBrf6tJmPXgK6_e7rcb4VK3Rh00d1Nq6haHXwgcDJ-ZqOuzhg7fmPMbxjEoVLpeBeGU6os2Whre_apYPH1Io0YDVFO5z2zFH1bGKCcJZMkNoz87c4PukDy3ZtgianpSVr1vf2gxSN38P_tzt4A4IUaXJi5KAyrNwGR7RD2Dckue7OQjVjGXEfjx9fRRsTnW0Mvo5dD3M0Xc4i_LwOW_wLdV43JoELQZSY-i2wn-n6Rn8RXIK-y6H9O15ze5gP-UFSC2ybg_W070-DkbrLI0NNHm-4XtFli-2-PtItFsUhsXzKptnpoDKh_fmyCRCAA7gfxEcUuZfnbe6FPc8OuKcZZtALc0N0nkfyiNod1TcSsYLGzR9AqBdkEDXJ2WsiHHFYHnohbD1iU58vFDbVTmxmGD1c
\ No newline at end of file
+++ /dev/null
-{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
+++ /dev/null
-{"SentFolder":"Sent","DraftFolder":"Drafts","SpamFolder":"Junk","TrashFolder":"Trash","ArchiveFolder":"Archive","NullFolder":"NullFolder"}
\ No newline at end of file
+++ /dev/null
-1725523723,1725555274,1725460489
\ No newline at end of file
+++ /dev/null
-Forbidden
\ No newline at end of file
+++ /dev/null
-Forbidden
\ No newline at end of file
+++ /dev/null
-
-
-# RAINLOOP
-host rainloop rainloop 127.0.0.1/32 md5
-host rainloop rainloop ::1/128 md5
+++ /dev/null
-CREATE ROLE rainloop;
-ALTER ROLE rainloop WITH NOSUPERUSER NOINHERIT NOCREATEROLE NOCREATEDB LOGIN NOREPLICATION NOBYPASSRLS PASSWORD 'md56b687e2fb7043085438d99aacf67296c' VALID UNTIL 'infinity';
-
-CREATE DATABASE rainloop WITH TEMPLATE = template0 OWNER = postgres;
-GRANT CONNECT ON DATABASE rainloop TO rainloop;
-
-\connect rainloop
-
---
--- PostgreSQL database dump
---
-
--- Dumped from database version 9.6.24
--- Dumped by pg_dump version 9.6.24
-
-SET statement_timeout = 0;
-SET lock_timeout = 0;
-SET idle_in_transaction_session_timeout = 0;
-SET client_encoding = 'UTF8';
-SET standard_conforming_strings = on;
-SELECT pg_catalog.set_config('search_path', '', false);
-SET check_function_bodies = false;
-SET xmloption = content;
-SET client_min_messages = warning;
-SET row_security = off;
-
---
--- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
---
-
-CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
-
-
---
--- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
---
-
-COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
-
-
---
--- Name: id_user; Type: SEQUENCE; Schema: public; Owner: rainloop
---
-
-CREATE SEQUENCE public.id_user
- START WITH 1
- INCREMENT BY 1
- NO MINVALUE
- NO MAXVALUE
- CACHE 1;
-
-
-ALTER TABLE public.id_user OWNER TO rainloop;
-
-SET default_tablespace = '';
-
-SET default_with_oids = false;
-
---
--- Name: rainloop_ab_contacts; Type: TABLE; Schema: public; Owner: rainloop
---
-
-CREATE TABLE public.rainloop_ab_contacts (
- id_contact bigint NOT NULL,
- id_contact_str character varying(128) DEFAULT ''::character varying NOT NULL,
- id_user integer NOT NULL,
- display character varying(255) DEFAULT ''::character varying NOT NULL,
- changed integer DEFAULT 0 NOT NULL,
- deleted integer DEFAULT 0 NOT NULL,
- etag character varying(128) DEFAULT ''::character varying NOT NULL
-);
-
-
-ALTER TABLE public.rainloop_ab_contacts OWNER TO rainloop;
-
---
--- Name: rainloop_ab_contacts_id_contact_seq; Type: SEQUENCE; Schema: public; Owner: rainloop
---
-
-CREATE SEQUENCE public.rainloop_ab_contacts_id_contact_seq
- START WITH 1
- INCREMENT BY 1
- NO MINVALUE
- NO MAXVALUE
- CACHE 1;
-
-
-ALTER TABLE public.rainloop_ab_contacts_id_contact_seq OWNER TO rainloop;
-
---
--- Name: rainloop_ab_contacts_id_contact_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: rainloop
---
-
-ALTER SEQUENCE public.rainloop_ab_contacts_id_contact_seq OWNED BY public.rainloop_ab_contacts.id_contact;
-
-
---
--- Name: rainloop_ab_properties; Type: TABLE; Schema: public; Owner: rainloop
---
-
-CREATE TABLE public.rainloop_ab_properties (
- id_prop bigint NOT NULL,
- id_contact integer NOT NULL,
- id_user integer NOT NULL,
- prop_type integer NOT NULL,
- prop_type_str character varying(255) DEFAULT ''::character varying NOT NULL,
- prop_value text DEFAULT ''::text NOT NULL,
- prop_value_custom text DEFAULT ''::text NOT NULL,
- prop_frec integer DEFAULT 0 NOT NULL,
- prop_value_lower text DEFAULT ''::text NOT NULL
-);
-
-
-ALTER TABLE public.rainloop_ab_properties OWNER TO rainloop;
-
---
--- Name: rainloop_ab_properties_id_prop_seq; Type: SEQUENCE; Schema: public; Owner: rainloop
---
-
-CREATE SEQUENCE public.rainloop_ab_properties_id_prop_seq
- START WITH 1
- INCREMENT BY 1
- NO MINVALUE
- NO MAXVALUE
- CACHE 1;
-
-
-ALTER TABLE public.rainloop_ab_properties_id_prop_seq OWNER TO rainloop;
-
---
--- Name: rainloop_ab_properties_id_prop_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: rainloop
---
-
-ALTER SEQUENCE public.rainloop_ab_properties_id_prop_seq OWNED BY public.rainloop_ab_properties.id_prop;
-
-
---
--- Name: rainloop_system; Type: TABLE; Schema: public; Owner: rainloop
---
-
-CREATE TABLE public.rainloop_system (
- sys_name character varying(50) NOT NULL,
- value_int integer DEFAULT 0 NOT NULL,
- value_str character varying(128) DEFAULT ''::character varying NOT NULL
-);
-
-
-ALTER TABLE public.rainloop_system OWNER TO rainloop;
-
---
--- Name: rainloop_users; Type: TABLE; Schema: public; Owner: rainloop
---
-
-CREATE TABLE public.rainloop_users (
- id_user integer DEFAULT nextval(('id_user'::text)::regclass) NOT NULL,
- rl_email character varying(128) DEFAULT ''::character varying NOT NULL
-);
-
-
-ALTER TABLE public.rainloop_users OWNER TO rainloop;
-
---
--- Name: rainloop_ab_contacts id_contact; Type: DEFAULT; Schema: public; Owner: rainloop
---
-
-ALTER TABLE ONLY public.rainloop_ab_contacts ALTER COLUMN id_contact SET DEFAULT nextval('public.rainloop_ab_contacts_id_contact_seq'::regclass);
-
-
---
--- Name: rainloop_ab_properties id_prop; Type: DEFAULT; Schema: public; Owner: rainloop
---
-
-ALTER TABLE ONLY public.rainloop_ab_properties ALTER COLUMN id_prop SET DEFAULT nextval('public.rainloop_ab_properties_id_prop_seq'::regclass);
-
-
---
--- Name: rainloop_ab_contacts rainloop_ab_contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: rainloop
---
-
-ALTER TABLE ONLY public.rainloop_ab_contacts
- ADD CONSTRAINT rainloop_ab_contacts_pkey PRIMARY KEY (id_contact);
-
-
---
--- Name: rainloop_ab_properties rainloop_ab_properties_pkey; Type: CONSTRAINT; Schema: public; Owner: rainloop
---
-
-ALTER TABLE ONLY public.rainloop_ab_properties
- ADD CONSTRAINT rainloop_ab_properties_pkey PRIMARY KEY (id_prop);
-
-
---
--- Name: rainloop_users rainloop_users_pkey; Type: CONSTRAINT; Schema: public; Owner: rainloop
---
-
-ALTER TABLE ONLY public.rainloop_users
- ADD CONSTRAINT rainloop_users_pkey PRIMARY KEY (id_user);
-
-
---
--- Name: id_user_id_contact_rainloop_ab_properties_index; Type: INDEX; Schema: public; Owner: rainloop
---
-
-CREATE INDEX id_user_id_contact_rainloop_ab_properties_index ON public.rainloop_ab_properties USING btree (id_user, id_contact);
-
-
---
--- Name: id_user_rainloop_ab_contacts_index; Type: INDEX; Schema: public; Owner: rainloop
---
-
-CREATE INDEX id_user_rainloop_ab_contacts_index ON public.rainloop_ab_contacts USING btree (id_user);
-
-
---
--- Name: id_user_rainloop_ab_properties_index; Type: INDEX; Schema: public; Owner: rainloop
---
-
-CREATE INDEX id_user_rainloop_ab_properties_index ON public.rainloop_ab_properties USING btree (id_user);
-
-
---
--- Name: rl_email_rainloop_users_index; Type: INDEX; Schema: public; Owner: rainloop
---
-
-CREATE INDEX rl_email_rainloop_users_index ON public.rainloop_users USING btree (rl_email);
-
-
---
--- Name: sys_name_rainloop_system_index; Type: INDEX; Schema: public; Owner: rainloop
---
-
-CREATE INDEX sys_name_rainloop_system_index ON public.rainloop_system USING btree (sys_name);
-
-
---
--- Name: SCHEMA public; Type: ACL; Schema: -; Owner: postgres
---
-
-GRANT USAGE ON SCHEMA public TO rainloop;
-
-
---
--- PostgreSQL database dump complete
---
-
+++ /dev/null
-ALTER TABLE cache_index OWNER TO roundcube;
-ALTER TABLE cache_shared OWNER TO roundcube;
-ALTER TABLE cache_thread OWNER TO roundcube;
-ALTER TABLE collected_addresses OWNER TO roundcube;
-ALTER TABLE contactgroupmembers OWNER TO roundcube;
-ALTER TABLE contactgroups OWNER TO roundcube;
-ALTER TABLE contacts OWNER TO roundcube;
-ALTER TABLE dictionary OWNER TO roundcube;
-ALTER TABLE filestore OWNER TO roundcube;
-ALTER TABLE identities OWNER TO roundcube;
-ALTER TABLE responses OWNER TO roundcube;
-ALTER TABLE searches OWNER TO roundcube;
-ALTER TABLE session OWNER TO roundcube;
-ALTER TABLE system OWNER TO roundcube;
-ALTER TABLE users OWNER TO roundcube;
-
-ALTER SEQUENCE collected_addresses_seq OWNER TO roundcube;
-ALTER SEQUENCE contactgroups_seq OWNER TO roundcube;
-ALTER SEQUENCE contacts_seq OWNER TO roundcube;
-ALTER SEQUENCE filestore_seq OWNER TO roundcube;
-ALTER SEQUENCE identities_seq OWNER TO roundcube;
-ALTER SEQUENCE responses_seq OWNER TO roundcube;
-ALTER SEQUENCE searches_seq OWNER TO roundcube;
-ALTER SEQUENCE users_seq OWNER TO roundcube;
+++ /dev/null
-<?php
-
-// ---------------------------------------------------------------------
-// WARNING: Do not edit this file! Copy configuration to config.inc.php.
-// ---------------------------------------------------------------------
-
-/*
- +-----------------------------------------------------------------------+
- | Default settings for all configuration options |
- | |
- | This file is part of the Roundcube Webmail client |
- | Copyright (C) The Roundcube Dev Team |
- | |
- | Licensed under the GNU General Public License version 3 or |
- | any later version with exceptions for skins & plugins. |
- | See the README file for a full license statement. |
- +-----------------------------------------------------------------------+
-*/
-
-$config = [];
-
-// ----------------------------------
-// SQL DATABASE
-// ----------------------------------
-
-// Database connection string (DSN) for read+write operations
-// Format (compatible with PEAR MDB2): db_provider://user:password@host/database
-// Currently supported db_providers: mysql, pgsql, sqlite, mssql, sqlsrv, oracle
-// For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php
-// Note: for SQLite use absolute path (Linux): 'sqlite:////full/path/to/sqlite.db?mode=0646'
-// or (Windows): 'sqlite:///C:/full/path/to/sqlite.db'
-// Note: Various drivers support various additional arguments for connection,
-// for Mysql: key, cipher, cert, capath, ca, verify_server_cert,
-// for Postgres: application_name, sslmode, sslcert, sslkey, sslrootcert, sslcrl, sslcompression, service.
-// e.g. 'mysql://roundcube:@localhost/roundcubemail?verify_server_cert=false'
-$config['db_dsnw'] = 'pgsql://roundcube:__ROUNDCUBE_PASS__@localhost/roundcube';
-
-// Database DSN for read-only operations (if empty write database will be used)
-// useful for database replication
-$config['db_dsnr'] = '';
-
-// Disable the use of already established dsnw connections for subsequent reads
-$config['db_dsnw_noread'] = false;
-
-// use persistent db-connections
-// beware this will not "always" work as expected
-// see: http://www.php.net/manual/en/features.persistent-connections.php
-$config['db_persistent'] = false;
-
-// you can define specific table (and sequence) names prefix
-$config['db_prefix'] = '';
-
-// Mapping of table names and connections to use for ALL operations.
-// This can be used in a setup with replicated databases and a DB master
-// where read/write access to cache tables should not go to master.
-$config['db_table_dsn'] = [
-// 'cache' => 'r',
-// 'cache_index' => 'r',
-// 'cache_thread' => 'r',
-// 'cache_messages' => 'r',
-];
-
-// It is possible to specify database variable values e.g. some limits here.
-// Use them if your server is not MySQL or for better performance.
-// For example Roundcube uses max_allowed_packet value (in bytes)
-// which limits query size for database cache operations.
-$config['db_max_allowed_packet'] = null;
-
-
-// ----------------------------------
-// LOGGING/DEBUGGING
-// ----------------------------------
-
-// log driver: 'syslog', 'stdout' or 'file'.
-$config['log_driver'] = 'file';
-
-// date format for log entries
-// (read http://php.net/manual/en/function.date.php for all format characters)
-$config['log_date_format'] = 'd-M-Y H:i:s O';
-
-// length of the session ID to prepend each log line with
-// set to 0 to avoid session IDs being logged.
-$config['log_session_id'] = 8;
-
-// Default extension used for log file name
-$config['log_file_ext'] = '.log';
-
-// Syslog ident string to use, if using the 'syslog' log driver.
-$config['syslog_id'] = 'roundcube';
-
-// Syslog facility to use, if using the 'syslog' log driver.
-// For possible values see installer or http://php.net/manual/en/function.openlog.php
-$config['syslog_facility'] = LOG_USER;
-
-// Activate this option if logs should be written to per-user directories.
-// Data will only be logged if a directory <log_dir>/<username>/ exists and is writable.
-$config['per_user_logging'] = false;
-
-// Log sent messages to <log_dir>/sendmail.log or to syslog
-$config['smtp_log'] = false;
-
-// Log successful/failed logins to <log_dir>/userlogins.log or to syslog
-$config['log_logins'] = false;
-
-// Log session debug information/authentication errors to <log_dir>/session.log or to syslog
-$config['session_debug'] = false;
-
-// Log SQL queries to <log_dir>/sql.log or to syslog
-$config['sql_debug'] = false;
-
-// Log IMAP conversation to <log_dir>/imap.log or to syslog
-$config['imap_debug'] = false;
-
-// Log LDAP conversation to <log_dir>/ldap.log or to syslog
-$config['ldap_debug'] = false;
-
-// Log SMTP conversation to <log_dir>/smtp.log or to syslog
-$config['smtp_debug'] = false;
-
-// Log Memcache conversation to <log_dir>/memcache.log or to syslog
-$config['memcache_debug'] = false;
-
-// Log APC conversation to <log_dir>/apc.log or to syslog
-$config['apc_debug'] = false;
-
-// Log Redis conversation to <log_dir>/redis.log or to syslog
-$config['redis_debug'] = false;
-
-
-// ----------------------------------
-// IMAP
-// ----------------------------------
-
-// The IMAP host (and optionally port number) chosen to perform the log-in.
-// Leave blank to show a textbox at login, give a list of hosts
-// to display a pulldown menu or set one host as string.
-// Enter hostname with prefix ssl:// to use Implicit TLS, or use
-// prefix tls:// to use STARTTLS.
-// If port number is omitted it will be set to 993 (for ssl://) or 143 otherwise.
-// Supported replacement variables:
-// %n - hostname ($_SERVER['SERVER_NAME'])
-// %t - hostname without the first part
-// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
-// %s - domain name after the '@' from e-mail address provided at login screen
-// For example %n = mail.domain.tld, %t = domain.tld
-// WARNING: After hostname change update of mail_host column in users table is
-// required to match old user data records with the new host.
-$config['imap_host'] = 'localhost:143';
-
-// IMAP authentication method (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or null).
-// Use 'IMAP' to authenticate with IMAP LOGIN command.
-// By default the most secure method (from supported) will be selected.
-$config['imap_auth_type'] = null;
-
-// IMAP socket context options
-// See http://php.net/manual/en/context.ssl.php
-// The example below enables server certificate validation
-//$config['imap_conn_options'] = [
-// 'ssl' => [
-// 'verify_peer' => true,
-// 'verify_depth' => 3,
-// 'cafile' => '/etc/openssl/certs/ca.crt',
-// ],
-// ];
-// Note: These can be also specified as an array of options indexed by hostname
-$config['imap_conn_options'] = null;
-
-// IMAP connection timeout, in seconds. Default: 0 (use default_socket_timeout)
-$config['imap_timeout'] = 0;
-
-// Optional IMAP authentication identifier to be used as authorization proxy
-$config['imap_auth_cid'] = null;
-
-// Optional IMAP authentication password to be used for imap_auth_cid
-$config['imap_auth_pw'] = null;
-
-// If you know your imap's folder delimiter, you can specify it here.
-// Otherwise it will be determined automatically
-$config['imap_delimiter'] = null;
-
-// If you know your imap's folder vendor, you can specify it here.
-// Otherwise it will be determined automatically. Use lower-case
-// identifiers, e.g. 'dovecot', 'cyrus', 'gimap', 'hmail', 'uw-imap'.
-$config['imap_vendor'] = 'dovecot';
-
-// If IMAP server doesn't support NAMESPACE extension, but you're
-// using shared folders or personal root folder is non-empty, you'll need to
-// set these options. All can be strings or arrays of strings.
-// Note: Folders need to be ended with directory separator, e.g. "INBOX."
-// (special directory "~" is an exception to this rule)
-// Note: These can be used also to overwrite server's namespaces
-// Note: Set these to FALSE to disable access to specified namespace
-$config['imap_ns_personal'] = null;
-$config['imap_ns_other'] = null;
-$config['imap_ns_shared'] = null;
-
-// By default IMAP capabilities are read after connection to IMAP server
-// In some cases, e.g. when using IMAP proxy, there's a need to refresh the list
-// after login. Set to True if you've got this case.
-$config['imap_force_caps'] = false;
-
-// By default list of subscribed folders is determined using LIST-EXTENDED
-// extension if available. Some servers (dovecot 1.x) returns wrong results
-// for shared namespaces in this case. https://github.com/roundcube/roundcubemail/issues/2474
-// Enable this option to force LSUB command usage instead.
-// Deprecated: Use imap_disabled_caps = ['LIST-EXTENDED']
-$config['imap_force_lsub'] = false;
-
-// Some server configurations (e.g. Courier) doesn't list folders in all namespaces
-// Enable this option to force listing of folders in all namespaces
-$config['imap_force_ns'] = false;
-
-// Some servers return hidden folders (name starting with a dot)
-// from user home directory. IMAP RFC does not forbid that.
-// Enable this option to hide them and disable possibility to create such.
-$config['imap_skip_hidden_folders'] = false;
-
-// Some servers do not support folders with both folders and messages inside
-// If your server supports that use true, if it does not, use false.
-// By default it will be determined automatically (once per user session).
-$config['imap_dual_use_folders'] = null;
-
-// List of disabled imap extensions.
-// Use if your IMAP server has broken implementation of some feature
-// and you can't remove it from CAPABILITY string on server-side.
-// For example UW-IMAP server has broken ESEARCH.
-// Note: Because the list is cached, re-login is required after change.
-$config['imap_disabled_caps'] = [];
-
-// Log IMAP session identifiers after each IMAP login.
-// This is used to relate IMAP session with Roundcube user sessions
-$config['imap_log_session'] = false;
-
-// Type of IMAP indexes cache. Supported values: 'db', 'apc' and 'memcache' or 'memcached'.
-$config['imap_cache'] = null;
-
-// Enables messages cache. Only 'db' cache is supported.
-// This requires an IMAP server that supports QRESYNC and CONDSTORE
-// extensions (RFC7162). See synchronize() in program/lib/Roundcube/rcube_imap_cache.php
-// for further info, or if you experience syncing problems.
-$config['messages_cache'] = false;
-
-// Lifetime of IMAP indexes cache. Possible units: s, m, h, d, w
-$config['imap_cache_ttl'] = '10d';
-
-// Lifetime of messages cache. Possible units: s, m, h, d, w
-$config['messages_cache_ttl'] = '10d';
-
-// Maximum cached message size in kilobytes.
-// Note: On MySQL this should be less than (max_allowed_packet - 30%)
-$config['messages_cache_threshold'] = 50;
-
-
-// ----------------------------------
-// SMTP
-// ----------------------------------
-
-// SMTP server host (and optional port number) for sending mails.
-// Enter hostname with prefix ssl:// to use Implicit TLS, or use
-// prefix tls:// to use STARTTLS.
-// If port number is omitted it will be set to 465 (for ssl://) or 587 otherwise.
-// Supported replacement variables:
-// %h - user's IMAP hostname
-// %n - hostname ($_SERVER['SERVER_NAME'])
-// %t - hostname without the first part
-// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
-// %z - IMAP domain (IMAP hostname without the first part)
-// For example %n = mail.domain.tld, %t = domain.tld
-// To specify different SMTP servers for different IMAP hosts provide an array
-// of IMAP host (no prefix or port) and SMTP server e.g. ['imap.example.com' => 'smtp.example.net']
-$config['smtp_host'] = 'localhost:465';
-
-// SMTP username (if required)
-// Note: %u variable will be replaced with current user's username
-$config['smtp_user'] = '%u';
-
-// SMTP password (if required)
-// Note: When set to '%p' current user's password will be used
-$config['smtp_pass'] = '%p';
-
-// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
-// best server supported one)
-$config['smtp_auth_type'] = PLAIN;
-
-// Optional SMTP authentication identifier to be used as authorization proxy
-$config['smtp_auth_cid'] = null;
-
-// Optional SMTP authentication password to be used for smtp_auth_cid
-$config['smtp_auth_pw'] = null;
-
-// Pass the username (XCLIENT LOGIN) to the server
-$config['smtp_xclient_login'] = false;
-
-// Pass the remote IP (XCLIENT ADDR) to the server
-$config['smtp_xclient_addr'] = false;
-
-
-// SMTP HELO host
-// Hostname to give to the remote server for SMTP 'HELO' or 'EHLO' messages
-// Leave this blank and you will get the server variable 'server_name' or
-// localhost if that isn't defined.
-$config['smtp_helo_host'] = '';
-
-// SMTP connection timeout, in seconds. Default: 0 (use default_socket_timeout)
-// Note: There's a known issue where using ssl connection with
-// timeout > 0 causes connection errors (https://bugs.php.net/bug.php?id=54511)
-$config['smtp_timeout'] = 0;
-
-// SMTP socket context options
-// See http://php.net/manual/en/context.ssl.php
-// The example below enables server certificate validation, and
-// requires 'smtp_timeout' to be non zero.
-// $config['smtp_conn_options'] = [
-// 'ssl' => [
-// 'verify_peer' => true,
-// 'verify_depth' => 3,
-// 'cafile' => '/etc/openssl/certs/ca.crt',
-// ],
-// ];
-// Note: These can be also specified as an array of options indexed by hostname
-$config['smtp_conn_options'] = null;
-
-
-// ----------------------------------
-// OAuth
-// ----------------------------------
-
-// Enable OAuth2 by defining a provider. Use 'generic' here
-$config['oauth_provider'] = null;
-
-// Provider name to be displayed on the login button
-$config['oauth_provider_name'] = 'Google';
-
-// Mandatory: OAuth client ID for your Roundcube installation
-$config['oauth_client_id'] = null;
-
-// Mandatory: OAuth client secret
-$config['oauth_client_secret'] = null;
-
-// Mandatory: URI for OAuth user authentication (redirect)
-$config['oauth_auth_uri'] = null;
-
-// Mandatory: Endpoint for OAuth authentication requests (server-to-server)
-$config['oauth_token_uri'] = null;
-
-// Optional: Endpoint to query user identity if not provided in auth response
-$config['oauth_identity_uri'] = null;
-
-// Optional: disable SSL certificate check on HTTP requests to OAuth server
-// See http://docs.guzzlephp.org/en/stable/request-options.html#verify for possible values
-$config['oauth_verify_peer'] = true;
-
-// Mandatory: OAuth scopes to request (space-separated string)
-$config['oauth_scope'] = null;
-
-// Optional: additional query parameters to send with login request (hash array)
-$config['oauth_auth_parameters'] = [];
-
-// Optional: array of field names used to resolve the username within the identity information
-$config['oauth_identity_fields'] = null;
-
-// Boolean: automatically redirect to OAuth login when opening Roundcube without a valid session
-$config['oauth_login_redirect'] = false;
-
-///// Example config for Gmail
-
-// Register your service at https://console.developers.google.com/
-// - use https://<your-roundcube-url>/index.php/login/oauth as redirect URL
-
-// $config['imap_host'] = 'ssl://imap.gmail.com';
-// $config['oauth_provider'] = 'google';
-// $config['oauth_provider_name'] = 'Google';
-// $config['oauth_client_id'] = "<your-credentials-client-id>";
-// $config['oauth_client_secret'] = "<your-credentials-client-secret>";
-// $config['oauth_auth_uri'] = "https://accounts.google.com/o/oauth2/auth";
-// $config['oauth_token_uri'] = "https://oauth2.googleapis.com/token";
-// $config['oauth_identity_uri'] = 'https://www.googleapis.com/oauth2/v1/userinfo';
-// $config['oauth_scope'] = "email profile openid https://mail.google.com/";
-// $config['oauth_auth_parameters'] = ['access_type' => 'offline', 'prompt' => 'consent'];
-
-///// Example config for Outlook.com (Office 365)
-
-// Register your OAuth client at https://portal.azure.com
-// - use https://<your-roundcube-url>/index.php/login/oauth as redirect URL
-// - grant permissions to Microsoft Graph API "IMAP.AccessAsUser.All", "SMTP.Send", "User.Read" and "offline_access"
-
-// $config['imap_host'] = 'ssl://outlook.office365.com';
-// $config['smtp_host'] = 'ssl://smtp.office365.com';
-
-// $config['oauth_provider'] = 'outlook';
-// $config['oauth_provider_name'] = 'Outlook.com';
-// $config['oauth_client_id'] = "<your-credentials-client-id>";
-// $config['oauth_client_secret'] = "<your-credentials-client-secret>";
-// $config['oauth_auth_uri'] = "https://login.microsoftonline.com/common/oauth2/v2.0/authorize";
-// $config['oauth_token_uri'] = "https://login.microsoftonline.com/common/oauth2/v2.0/token";
-// $config['oauth_identity_uri'] = "https://graph.microsoft.com/v1.0/me";
-// $config['oauth_identity_fields'] = ['email', 'userPrincipalName'];
-// $config['oauth_scope'] = "https://outlook.office365.com/IMAP.AccessAsUser.All https://outlook.office365.com/SMTP.Send User.Read offline_access";
-// $config['oauth_auth_parameters'] = ['nonce' => mt_rand()];
-
-// ----------------------------------
-// LDAP
-// ----------------------------------
-
-// Type of LDAP cache. Supported values: 'db', 'apc' and 'memcache' or 'memcached'.
-$config['ldap_cache'] = 'db';
-
-// Lifetime of LDAP cache. Possible units: s, m, h, d, w
-$config['ldap_cache_ttl'] = '10m';
-
-
-// ----------------------------------
-// CACHE(S)
-// ----------------------------------
-
-// Use these hosts for accessing memcached
-// Define any number of hosts in the form of hostname:port or unix:///path/to/socket.file
-// Example: ['localhost:11211', '192.168.1.12:11211', 'unix:///var/tmp/memcached.sock'];
-$config['memcache_hosts'] = null;
-
-// Controls the use of a persistent connections to memcache servers
-// See http://php.net/manual/en/memcache.addserver.php
-$config['memcache_pconnect'] = true;
-
-// Value in seconds which will be used for connecting to the daemon
-// See http://php.net/manual/en/memcache.addserver.php
-$config['memcache_timeout'] = 1;
-
-// Controls how often a failed server will be retried (value in seconds).
-// Setting this parameter to -1 disables automatic retry.
-// See http://php.net/manual/en/memcache.addserver.php
-$config['memcache_retry_interval'] = 15;
-
-// Use these hosts for accessing Redis.
-// Currently only one host is supported. Cluster support may come in a future release.
-// You can pass 4 fields, host, port (optional), database (optional) and password (optional).
-// Unset fields will be set to the default values host=127.0.0.1, port=6379.
-// Examples:
-// ['localhost:6379'];
-// ['192.168.1.1:6379:1:secret'];
-// ['unix:///var/run/redis/redis-server.sock:1:secret'];
-$config['redis_hosts'] = null;
-
-// Maximum size of an object in memcache (in bytes). Default: 2MB
-$config['memcache_max_allowed_packet'] = '2M';
-
-// Maximum size of an object in APC cache (in bytes). Default: 2MB
-$config['apc_max_allowed_packet'] = '2M';
-
-// Maximum size of an object in Redis cache (in bytes). Default: 2MB
-$config['redis_max_allowed_packet'] = '2M';
-
-
-// ----------------------------------
-// SYSTEM
-// ----------------------------------
-
-// THIS OPTION WILL ALLOW THE INSTALLER TO RUN AND CAN EXPOSE SENSITIVE CONFIG DATA.
-// ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING!
-$config['enable_installer'] = false;
-
-// don't allow these settings to be overridden by the user
-$config['dont_override'] = [];
-
-// List of disabled UI elements/actions
-$config['disabled_actions'] = [];
-
-// define which settings should be listed under the 'advanced' block
-// which is hidden by default
-$config['advanced_prefs'] = [];
-
-// provide an URL where a user can get support for this Roundcube installation
-// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
-$config['support_url'] = '';
-
-// Location of the blank (watermark) frame page. By default it is the watermark.html
-// file from the currently selected skin. Prepend name/path with a slash to use
-// current skin folder. Remove the slash to point to a file in the Roundcube
-// root directory. It can be also a full URL.
-$config['blankpage_url'] = '/watermark.html';
-
-// Logo image replacement. Specifies location of the image as:
-// - URL relative to the document root of this Roundcube installation
-// - full URL with http:// or https:// prefix
-// - URL relative to the current skin folder (when starts with a '/')
-//
-// An array can be used to specify different logos for specific template files
-// The array key specifies the place(s) the logo should be applied to and
-// is made up of (up to) 3 parts:
-// - skin name prefix (always with colon, can be replaced with *)
-// - template name (or * for all templates)
-// - logo type - it is used for logos used on multiple templates and the available types include:
-// '[favicon]' for favicon
-// '[print]' for logo on all print templates (e.g. messageprint, contactprint)
-// '[small]' for small screen logo in supported skins
-// '[dark]' and '[small-dark]' for dark mode logo in supported skins
-// '[link]' for adding a URL link to the logo image
-//
-// Example config for skin_logo
-/*
- [
- // show the image /images/logo_login_small.png for the Login screen in the Elastic skin on small screens
- "elastic:login[small]" => "/images/logo_login_small.png",
- // show the image /images/logo_login.png for the Login screen in the Elastic skin
- "elastic:login" => "/images/logo_login.png",
- // add a link to the logo on the Login screen in the Elastic skin
- "elastic:login[link]" => "https://www.example.com",
- // add a link to the logo on all screens in the Elastic skin
- "elastic:*[link]" => "https://www.example.com",
- // add a link to the logo on all screens for all skins
- "[link]" => "https://www.example.com",
- // show the image /images/logo_small.png in the Elastic skin
- "elastic:*[small]" => "/images/logo_small.png",
- // show the image /images/larry.png in the Larry skin
- "larry:*" => "/images/larry.png",
- // show the image /images/logo_login.png on the login template in all skins
- "login" => "/images/logo_login.png",
- // show the image /images/logo_print.png for all print type logos in all skins
- "[print]" => "/images/logo_print.png",
- ];
-*/
-$config['skin_logo'] = null;
-
-// Automatically register user in Roundcube database on successful (IMAP) logon.
-// Set to false if only registered users should be allowed to the webmail.
-// Note: If disabled you have to create records in Roundcube users table by yourself.
-// Note: Roundcube does not manage/create users on a mail server.
-$config['auto_create_user'] = true;
-
-// Enables possibility to log in using email address from user identities
-$config['user_aliases'] = false;
-
-// use this folder to store log files
-// must be writeable for the user who runs PHP process (Apache user if mod_php is being used)
-// This is used by the 'file' log driver.
-//$config['log_dir'] = RCUBE_INSTALL_PATH . 'logs/';
-$config['log_dir'] = '/var/log/apache2/roundcube/';
-
-// Location of temporary saved files such as attachments and cache files
-// must be writeable for the user who runs PHP process (Apache user if mod_php is being used)
-$config['temp_dir'] = RCUBE_INSTALL_PATH . 'temp/';
-
-// expire files in temp_dir after 48 hours
-// possible units: s, m, h, d, w
-$config['temp_dir_ttl'] = '48h';
-
-// Enforce connections over https
-// With this option enabled, all non-secure connections will be redirected.
-// It can be also a port number, hostname or hostname:port if they are
-// different than default HTTP_HOST:443
-$config['force_https'] = false;
-
-// tell PHP that it should work as under secure connection
-// even if it doesn't recognize it as secure ($_SERVER['HTTPS'] is not set)
-// e.g. when you're running Roundcube behind a https proxy
-// this option is mutually exclusive to 'force_https' and only either one of them should be set to true.
-$config['use_https'] = false;
-
-// Allow browser-autocompletion on login form.
-// 0 - disabled, 1 - username and host only, 2 - username, host, password
-$config['login_autocomplete'] = 0;
-
-// Forces conversion of logins to lower case.
-// 0 - disabled, 1 - only domain part, 2 - domain and local part.
-// If users authentication is case-insensitive this must be enabled.
-// Note: After enabling it all user records need to be updated, e.g. with query:
-// UPDATE users SET username = LOWER(username);
-$config['login_lc'] = 2;
-
-// Maximum length (in bytes) of logon username and password.
-$config['login_username_maxlen'] = 1024;
-$config['login_password_maxlen'] = 1024;
-
-// Logon username filter. Regular expression for use with preg_match().
-// Use special value 'email' if you accept only full email addresses as user logins.
-// Example: '/^[a-z0-9_@.-]+$/'
-$config['login_username_filter'] = 'email';
-
-// Brute-force attacks prevention.
-// The value specifies maximum number of failed logon attempts per minute.
-$config['login_rate_limit'] = 3;
-
-// Includes should be interpreted as PHP files
-$config['skin_include_php'] = false;
-
-// display product name and software version on login screen
-// 0 - hide product name and version number, 1 - show product name only, 2 - show product name and version number
-$config['display_product_info'] = 1;
-
-// Session lifetime in minutes
-$config['session_lifetime'] = 10;
-
-// Session domain: .example.org
-$config['session_domain'] = '';
-
-// Session name. Default: 'roundcube_sessid'
-$config['session_name'] = null;
-
-// Session authentication cookie name. Default: 'roundcube_sessauth'
-$config['session_auth_name'] = null;
-
-// Session path. Defaults to PHP session.cookie_path setting.
-$config['session_path'] = null;
-
-// Session samesite. Defaults to PHP session.cookie_samesite setting.
-// Requires PHP >= 7.3.0, see https://wiki.php.net/rfc/same-site-cookie for more info
-// Possible values: null (default), 'Lax', or 'Strict'
-$config['session_samesite'] = null;
-
-// Backend to use for session storage. Can either be 'db' (default), 'redis', 'memcache', or 'php'
-//
-// If set to 'memcache' or 'memcached', a list of servers need to be specified in 'memcache_hosts'
-// Make sure the Memcache extension (https://pecl.php.net/package/memcache) version >= 2.0.0
-// or the Memcached extension (https://pecl.php.net/package/memcached) version >= 2.0.0 is installed.
-//
-// If set to 'redis', a server needs to be specified in 'redis_hosts'
-// Make sure the Redis extension (https://pecl.php.net/package/redis) version >= 2.0.0 is installed.
-//
-// Setting this value to 'php' will use the default session save handler configured in PHP
-$config['session_storage'] = 'db';
-
-// List of trusted proxies
-// X_FORWARDED_* and X_REAL_IP headers are only accepted from these IPs
-$config['proxy_whitelist'] = [];
-
-// List of trusted host names
-// Attackers can modify Host header of the HTTP request causing $_SERVER['SERVER_NAME']
-// or $_SERVER['HTTP_HOST'] variables pointing to a different host, that could be used
-// to collect user names and passwords. Some server configurations prevent that, but not all.
-// An empty list accepts any host name. The list can contain host names
-// or PCRE patterns (without // delimiters, that will be added automatically).
-$config['trusted_host_patterns'] = [];
-
-// check client IP in session authorization
-$config['ip_check'] = false;
-
-// X-Frame-Options HTTP header value sent to prevent from Clickjacking.
-// Possible values: sameorigin|deny|allow-from <uri>.
-// Set to false in order to disable sending the header.
-$config['x_frame_options'] = 'sameorigin';
-
-// This key is used for encrypting purposes, like storing of imap password
-// in the session. For historical reasons it's called DES_key, but it's used
-// with any configured cipher_method (see below).
-// For the default cipher_method a required key length is 24 characters.
-$config['des_key'] = 'rcmail-!24ByteDESkey*Str';
-
-// Encryption algorithm. You can use any method supported by OpenSSL.
-// Default is set for backward compatibility to DES-EDE3-CBC,
-// but you can choose e.g. AES-256-CBC which we consider a better choice.
-$config['cipher_method'] = 'DES-EDE3-CBC';
-
-// Automatically add this domain to user names for login
-// Only for IMAP servers that require full e-mail addresses for login
-// Specify an array with 'host' => 'domain' values to support multiple hosts
-// Supported replacement variables:
-// %h - user's IMAP hostname
-// %n - hostname ($_SERVER['SERVER_NAME'])
-// %t - hostname without the first part
-// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
-// %z - IMAP domain (IMAP hostname without the first part)
-// For example %n = mail.domain.tld, %t = domain.tld
-$config['username_domain'] = '';
-
-// Force domain configured in username_domain to be used for login.
-// Any domain in username will be replaced by username_domain.
-$config['username_domain_forced'] = false;
-
-// This domain will be used to form e-mail addresses of new users
-// Specify an array with 'host' => 'domain' values to support multiple hosts
-// Supported replacement variables:
-// %h - user's IMAP hostname
-// %n - http hostname ($_SERVER['SERVER_NAME'])
-// %d - domain (http hostname without the first part)
-// %z - IMAP domain (IMAP hostname without the first part)
-// For example %n = mail.domain.tld, %t = domain.tld
-$config['mail_domain'] = '';
-
-// Password character set, to change the password for user
-// authentication or for password change operations
-$config['password_charset'] = 'UTF-8';
-
-// How many seconds must pass between emails sent by a user
-$config['sendmail_delay'] = 0;
-
-// Message size limit. Note that SMTP server(s) may use a different value.
-// This limit is verified when user attaches files to a composed message.
-// Size in bytes (possible unit suffix: K, M, G)
-$config['max_message_size'] = '100M';
-
-// Maximum number of recipients per message (including To, Cc, Bcc).
-// Default: 0 (no limit)
-$config['max_recipients'] = 0;
-
-// Maximum number of recipients per message excluding Bcc header.
-// This is a soft limit, which means we only display a warning to the user.
-// Default: 5
-$config['max_disclosed_recipients'] = 5;
-
-// Maximum allowed number of members of an address group. Default: 0 (no limit)
-// If 'max_recipients' is set this value should be less or equal
-$config['max_group_members'] = 0;
-
-// Name your service. This is displayed on the login screen and in the window title
-$config['product_name'] = 'Roundcube Webmail /w laktatnebel.de';
-
-// Add this user-agent to message headers when sending. Default: not set.
-$config['useragent'] = null;
-
-// try to load host-specific configuration
-// see https://github.com/roundcube/roundcubemail/wiki/Configuration:-Multi-Domain-Setup
-// for more details
-$config['include_host_config'] =
-false;
-// END_DOMAINLIST
-
-// path to a text file which will be added to each sent message
-// paths are relative to the Roundcube root folder
-$config['generic_message_footer'] = '';
-
-// path to a text file which will be added to each sent HTML message
-// paths are relative to the Roundcube root folder
-$config['generic_message_footer_html'] = '';
-
-// add a received header to outgoing mails containing the creators IP and hostname
-$config['http_received_header'] = false;
-
-// Whether or not to encrypt the IP address and the host name
-// these could, in some circles, be considered as sensitive information;
-// however, for the administrator, these could be invaluable help
-// when tracking down issues.
-$config['http_received_header_encrypt'] = false;
-
-// number of chars allowed for line when wrapping text.
-// text wrapping is done when composing/sending messages
-$config['line_length'] = 72;
-
-// send plaintext messages as format=flowed
-$config['send_format_flowed'] = true;
-
-// According to RFC2298, return receipt envelope sender address must be empty.
-// If this option is true, Roundcube will use user's identity as envelope sender for MDN responses.
-$config['mdn_use_from'] = false;
-
-// Set identities access level:
-// 0 - many identities with possibility to edit all params
-// 1 - many identities with possibility to edit all params but not email address
-// 2 - one identity with possibility to edit all params
-// 3 - one identity with possibility to edit all params but not email address
-// 4 - one identity with possibility to edit only signature
-$config['identities_level'] = 0;
-
-// Maximum size of uploaded image (in kilobytes) for HTML identities.
-// Images (in html signatures) are stored in database as data URIs.
-$config['identity_image_size'] = 64;
-
-// Maximum size of uploaded image (in kilobytes) for HTML responses.
-// Images (in html responses) are stored in database as data URIs.
-$config['response_image_size'] = 64;
-
-// Mimetypes supported by the browser.
-// Attachments of these types will open in a preview window.
-// Either a comma-separated list or an array. Default list includes:
-// text/plain,text/html,
-// image/jpeg,image/gif,image/png,image/bmp,image/tiff,image/webp,
-// application/x-javascript,application/pdf,application/x-shockwave-flash
-$config['client_mimetypes'] = null;
-
-// Path to a local mime magic database file for PHPs finfo extension.
-// Set to null if the default path should be used.
-$config['mime_magic'] = null;
-
-// Absolute path to a local mime.types mapping table file.
-// This is used to derive mime-types from the filename extension or vice versa.
-// Such a file is usually part of the apache webserver. If you don't find a file named mime.types on your system,
-// download it from http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
-$config['mime_types'] = null;
-
-// path to imagemagick identify binary (if not set we'll use Imagick or GD extensions)
-$config['im_identify_path'] = null;
-
-// path to imagemagick convert binary (if not set we'll use Imagick or GD extensions)
-$config['im_convert_path'] = null;
-
-// Size of thumbnails from image attachments displayed below the message content.
-// Note: whether images are displayed at all depends on the 'inline_images' option.
-// Set to 0 to display images in full size.
-$config['image_thumbnail_size'] = 240;
-
-// maximum size of uploaded contact photos in pixel
-$config['contact_photo_size'] = 160;
-
-// Enable DNS checking for e-mail address validation
-$config['email_dns_check'] = false;
-
-// Disables saving sent messages in Sent folder (like gmail) (Default: false)
-// Note: useful when SMTP server stores sent mail in user mailbox
-$config['no_save_sent_messages'] = false;
-
-// Improve system security by using special URL with security token.
-// This can be set to a number defining token length. Default: 16.
-// Warning: This requires http server configuration. Sample:
-// RewriteRule ^/roundcubemail/[a-zA-Z0-9]{16}/(.*) /roundcubemail/$1 [PT]
-// Alias /roundcubemail /var/www/roundcubemail/
-// Warning: This feature does NOT work with request_path = 'SCRIPT_NAME'
-// Note: Use assets_path to not prevent the browser from caching assets
-$config['use_secure_urls'] = false;
-
-// Specifies the full path of the original HTTP request, either as a real path or
-// $_SERVER field name. This might be useful when Roundcube runs behind a reverse
-// proxy using a subpath. This is a path part of the URL, not the full URL!
-// The reverse proxy config can specify a custom header (e.g. X-Forwarded-Path) containing
-// the path under which Roundcube is exposed to the outside world (e.g. /rcube/).
-// This header value is then available in PHP with $_SERVER['HTTP_X_FORWARDED_PATH'].
-// By default the path comes from 'REDIRECT_SCRIPT_URL', 'SCRIPT_NAME' or 'REQUEST_URI',
-// whichever is set (in this order).
-$config['request_path'] = null;
-
-// Allows to define separate server/path for image/js/css files
-// Warning: If the domain is different cross-domain access to some
-// resources need to be allowed
-// Sample:
-// <FilesMatch ".(eot|ttf|woff)">
-// Header set Access-Control-Allow-Origin "*"
-// </FilesMatch>
-$config['assets_path'] = '';
-
-// While assets_path is for the browser, assets_dir informs
-// PHP code about the location of asset files in filesystem
-$config['assets_dir'] = '';
-
-// Options passed when creating Guzzle HTTP client, used to fetch remote content
-// For example:
-// [
-// 'timeout' => 10,
-// 'proxy' => 'tcp://localhost:8125',
-// ]
-$config['http_client'] = [];
-
-// List of supported subject prefixes for a message reply
-// This list is used to clean the subject when replying or sorting messages
-$config['subject_reply_prefixes'] = ['Re:'];
-
-// List of supported subject prefixes for a message forward
-// This list is used to clean the subject when forwarding or sorting messages
-$config['subject_forward_prefixes'] = ['Fwd:', 'Fw:'];
-
-// Prefix to use in subject when replying to a message
-$config['response_prefix'] = 'Re:';
-
-// Prefix to use in subject when forwarding a message
-$config['forward_prefix'] = 'Fwd:';
-
-// ----------------------------------
-// PLUGINS
-// ----------------------------------
-
-// List of active plugins (in plugins/ directory)
-$config['plugins'] = [];
-
-// ----------------------------------
-// USER INTERFACE
-// ----------------------------------
-
-// default messages sort column. Use empty value for default server's sorting,
-// or 'arrival', 'date', 'subject', 'from', 'to', 'fromto', 'size', 'cc'
-$config['message_sort_col'] = '';
-
-// default messages sort order
-$config['message_sort_order'] = 'DESC';
-
-// These cols are shown in the message list. Available cols are:
-// subject, from, to, fromto, cc, replyto, date, size, status, flag, attachment, priority
-$config['list_cols'] = ['subject', 'status', 'fromto', 'date', 'size', 'flag', 'attachment'];
-
-// the default locale setting (leave empty for auto-detection)
-// RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR
-$config['language'] = null;
-
-// use this format for date display (PHP DateTime format)
-$config['date_format'] = 'Y-m-d';
-
-// give this choice of date formats to the user to select from
-// Note: do not use ambiguous formats like m/d/Y
-$config['date_formats'] = ['Y-m-d', 'Y/m/d', 'Y.m.d', 'd-m-Y', 'd/m/Y', 'd.m.Y', 'j.n.Y'];
-
-// use this format for time display (PHP DateTime format)
-$config['time_format'] = 'H:i';
-
-// give this choice of time formats to the user to select from
-$config['time_formats'] = ['G:i', 'H:i', 'g:i a', 'h:i A'];
-
-// use this format for short date display (derived from date_format and time_format)
-$config['date_short'] = 'D H:i';
-
-// use this format for detailed date/time formatting (derived from date_format and time_format)
-$config['date_long'] = 'Y-m-d H:i';
-
-// store draft message is this mailbox
-// leave blank if draft messages should not be stored
-// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
-$config['drafts_mbox'] = 'Drafts';
-
-// store spam messages in this mailbox
-// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
-$config['junk_mbox'] = 'Junk';
-
-// store sent message is this mailbox
-// leave blank if sent messages should not be stored
-// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
-$config['sent_mbox'] = 'Sent';
-
-// move messages to this folder when deleting them
-// leave blank if they should be deleted directly
-// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
-$config['trash_mbox'] = 'Trash';
-
-// automatically create the above listed default folders on user login
-$config['create_default_folders'] = false;
-
-// protect the default folders from renames, deletes, and subscription changes
-$config['protect_default_folders'] = true;
-
-// Disable localization of the default folder names listed above
-$config['show_real_foldernames'] = false;
-
-// if in your system 0 quota means no limit set this option to true
-$config['quota_zero_as_unlimited'] = false;
-
-// Make use of the built-in spell checker.
-$config['enable_spellcheck'] = false;
-
-// Enables spellchecker exceptions dictionary.
-// Setting it to 'shared' will make the dictionary shared by all users.
-$config['spellcheck_dictionary'] = false;
-
-// Set the spell checking engine. Possible values:
-// - 'googie' - the default (also used for connecting to Nox Spell Server, see 'spellcheck_uri' setting)
-// - 'pspell' - requires the PHP Pspell module and aspell installed
-// - 'enchant' - requires the PHP Enchant module
-// - 'atd' - install your own After the Deadline server or check with the people at http://www.afterthedeadline.com before using their API
-// Since Google shut down their public spell checking service, the default settings
-// connect to http://spell.roundcube.net which is a hosted service provided by Roundcube.
-// You can connect to any other googie-compliant service by setting 'spellcheck_uri' accordingly.
-$config['spellcheck_engine'] = 'googie';
-
-// For locally installed Nox Spell Server or After the Deadline services,
-// please specify the URI to call it.
-// Get Nox Spell Server from http://orangoo.com/labs/?page_id=72 or
-// the After the Deadline package from http://www.afterthedeadline.com.
-// Leave empty to use the public API of service.afterthedeadline.com
-$config['spellcheck_uri'] = '';
-
-// These languages can be selected for spell checking.
-// Configure as a PHP style hash array: ['en'=>'English', 'de'=>'Deutsch'];
-// Leave empty for default set of available language.
-$config['spellcheck_languages'] = null;
-
-// Makes that words with all letters capitalized will be ignored (e.g. GOOGLE)
-$config['spellcheck_ignore_caps'] = false;
-
-// Makes that words with numbers will be ignored (e.g. g00gle)
-$config['spellcheck_ignore_nums'] = false;
-
-// Makes that words with symbols will be ignored (e.g. g@@gle)
-$config['spellcheck_ignore_syms'] = false;
-
-// Number of lines at the end of a message considered to contain the signature.
-// Increase this value if signatures are not properly detected and colored
-$config['sig_max_lines'] = 15;
-
-// don't let users set pagesize to more than this value if set
-$config['max_pagesize'] = 200;
-
-// Minimal value of user's 'refresh_interval' setting (in seconds)
-$config['min_refresh_interval'] = 60;
-
-// Specifies for how many seconds the Undo button will be available
-// after object delete action. Currently used with supporting address book sources.
-// Setting it to 0, disables the feature.
-$config['undo_timeout'] = 0;
-
-// A static list of canned responses which are immutable for the user
-$config['compose_responses_static'] = [
-// ['name' => 'Canned Response 1', 'text' => 'Static Response One'],
-// ['name' => 'Canned Response 2', 'text' => 'Static Response Two'],
-];
-
-// List of HKP key servers for PGP public key lookups in Enigma/Mailvelope
-// Note: Lookup is client-side, so the server must support Cross-Origin Resource Sharing
-$config['keyservers'] = ['keys.openpgp.org'];
-
-// Enables use of the Main Keyring in Mailvelope? If disabled, a per-site keyring
-// will be used. This is set to false for backwards compatibility.
-$config['mailvelope_main_keyring'] = false;
-
-// Mailvelope RSA bit size for newly generated keys, either 2048 or 4096.
-// It maybe desirable to use 2048 for sites with many mobile users.
-$config['mailvelope_keysize'] = 4096;
-
-// Html2Text link handling options:
-// 0 - links will be removed
-// 1 - a list of link URLs should be listed at the end of the text (default)
-// 2 - link should be displayed to the original point in the text they appeared
-$config['html2text_links'] = 1;
-
-// Html2Text text width. Maximum width of the formatted text, in columns. Default: 75.
-$config['html2text_width'] = 75;
-
-// ----------------------------------
-// ADDRESSBOOK SETTINGS
-// ----------------------------------
-
-// This indicates which type of address book to use. Possible choices:
-// 'sql' - built-in sql addressbook enabled (default),
-// '' - built-in sql addressbook disabled.
-// Still LDAP or plugin-added addressbooks will be available.
-// BC Note: The value can actually be anything except 'sql', it does not matter.
-$config['address_book_type'] = 'sql';
-
-// In order to enable public ldap search, configure an array like the Verisign
-// example further below. if you would like to test, simply uncomment the example.
-// Array key must contain only safe characters, ie. a-zA-Z0-9_
-$config['ldap_public'] = [];
-
-// If you are going to use LDAP for individual address books, you will need to
-// set 'user_specific' to true and use the variables to generate the appropriate DNs to access it.
-//
-// The recommended directory structure for LDAP is to store all the address book entries
-// under the users main entry, e.g.:
-//
-// o=root
-// ou=people
-// uid=user@domain
-// mail=contact@contactdomain
-//
-// So the base_dn would be uid=%fu,ou=people,o=root
-// The bind_dn would be the same as based_dn or some super user login.
-/*
- * example config for Verisign directory
- *
-$config['ldap_public']['Verisign'] = [
- 'name' => 'Verisign.com',
- // Replacement variables supported in host names:
- // %h - user's IMAP hostname
- // %n - hostname ($_SERVER['SERVER_NAME'])
- // %t - hostname without the first part
- // %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
- // %z - IMAP domain (IMAP hostname without the first part)
- // For example %n = mail.domain.tld, %t = domain.tld
- // Note: Host can also be a full URI e.g. ldaps://hostname.local:636 (for SSL)
- // Note: If port number is omitted, it will be set to 636 (for ldaps://) or 389 otherwise.
- // Note: To enable TLS use tls:// prefix
- 'hosts' => array('directory.verisign.com:389'),
- 'ldap_version' => 3, // using LDAPv3
- 'network_timeout' => 10, // The timeout (in seconds) for connect + bind attempts. This is only supported in PHP >= 5.3.0 with OpenLDAP 2.x
- 'user_specific' => false, // If true the base_dn, bind_dn and bind_pass default to the user's IMAP login.
- // When 'user_specific' is enabled following variables can be used in base_dn/bind_dn config:
- // %fu - The full username provided, assumes the username is an email
- // address, uses the username_domain value if not an email address.
- // %u - The username prior to the '@'.
- // %d - The domain name after the '@'.
- // %dc - The domain name hierarchal string e.g. "dc=test,dc=domain,dc=com"
- // %dn - DN found by ldap search when search_filter/search_base_dn are used
- 'base_dn' => '',
- 'bind_dn' => '',
- 'bind_pass' => '',
- // It's possible to bind for an individual address book
- // The login name is used to search for the DN to bind with
- 'search_base_dn' => '',
- 'search_filter' => '', // e.g. '(&(objectClass=posixAccount)(uid=%u))'
- // DN and password to bind as before searching for bind DN, if anonymous search is not allowed
- 'search_bind_dn' => '',
- 'search_bind_pw' => '',
- // Base DN and filter used for resolving the user's domain root DN which feeds the %dc variables
- // Leave empty to skip this lookup and derive the root DN from the username domain
- 'domain_base_dn' => '',
- 'domain_filter' => '',
- // Optional map of replacement strings => attributes used when binding for an individual address book
- 'search_bind_attrib' => [], // e.g. ['%udc' => 'ou']
- // Default for %dn variable if search doesn't return DN value
- 'search_dn_default' => '',
- // Optional authentication identifier to be used as SASL authorization proxy
- // bind_dn need to be empty
- 'auth_cid' => '',
- // SASL authentication method (for proxy auth), e.g. DIGEST-MD5
- 'auth_method' => '',
- // Indicates if the addressbook shall be hidden from the list.
- // With this option enabled you can still search/view contacts.
- 'hidden' => false,
- // Indicates if the addressbook shall not list contacts but only allows searching.
- 'searchonly' => false,
- // Indicates if we can write to the LDAP directory or not.
- // If writable is true then these fields need to be populated:
- // LDAP_Object_Classes, required_fields, LDAP_rdn
- 'writable' => false,
- // To create a new contact these are the object classes to specify
- // (or any other classes you wish to use).
- 'LDAP_Object_Classes' => ['top', 'inetOrgPerson'],
- // The RDN field that is used for new entries, this field needs
- // to be one of the search_fields, the base of base_dn is appended
- // to the RDN to insert into the LDAP directory.
- 'LDAP_rdn' => 'cn',
- // The required attributes needed to build a new contact as required by
- // the object classes (can include additional fields not required by the object classes).
- 'required_fields' => ['cn', 'sn', 'mail'],
- // The attributes used when searching with "All fields" option
- // If empty, attributes for name, surname, firstname and email fields will be used
- 'search_fields' => ['mail', 'cn'],
- // mapping of contact fields to directory attributes
- // 1. for every attribute one can specify the number of values (limit) allowed.
- // default is 1, a wildcard * means unlimited
- // 2. another possible parameter is separator character for composite fields
- // 3. it's possible to define field format for write operations, e.g. for date fields
- // example: 'birthday:date[YmdHis\\Z]'
- 'fieldmap' => [
- // Roundcube => LDAP:limit
- 'name' => 'cn',
- 'surname' => 'sn',
- 'firstname' => 'givenName',
- 'jobtitle' => 'title',
- 'email' => 'mail:*',
- 'phone:home' => 'homePhone',
- 'phone:work' => 'telephoneNumber',
- 'phone:mobile' => 'mobile',
- 'phone:pager' => 'pager',
- 'phone:workfax' => 'facsimileTelephoneNumber',
- 'street' => 'street',
- 'zipcode' => 'postalCode',
- 'region' => 'st',
- 'locality' => 'l',
- // if you country is a complex object, you need to configure 'sub_fields' below
- 'country' => 'c',
- 'organization' => 'o',
- 'department' => 'ou',
- 'jobtitle' => 'title',
- 'notes' => 'description',
- 'photo' => 'jpegPhoto',
- // these currently don't work:
- // 'manager' => 'manager',
- // 'assistant' => 'secretary',
- ],
- // Map of contact sub-objects (attribute name => objectClass(es)), e.g. 'c' => 'country'
- 'sub_fields' => [],
- // Generate values for the following LDAP attributes automatically when creating a new record
- 'autovalues' => [
- // 'uid' => 'md5(microtime())', // You may specify PHP code snippets which are then eval'ed
- // 'mail' => '{givenname}.{sn}@mydomain.com', // or composite strings with placeholders for existing attributes
- ],
- 'sort' => 'cn', // The field to sort the listing by.
- 'scope' => 'sub', // search mode: sub|base|list
- 'filter' => '(objectClass=inetOrgPerson)', // used for basic listing (if not empty) and will be &'d with search queries. example: status=act
- 'fuzzy_search' => true, // server allows wildcard search
- 'vlv' => false, // Enable Virtual List View to more efficiently fetch paginated data (if server supports it)
- 'vlv_search' => false, // Use Virtual List View functions for autocompletion searches (if server supports it)
- 'numsub_filter' => '(objectClass=organizationalUnit)', // with VLV, we also use numSubOrdinates to query the total number of records. Set this filter to get all numSubOrdinates attributes for counting
- 'config_root_dn' => 'cn=config', // Root DN to search config entries (e.g. vlv indexes)
- 'sizelimit' => '0', // Enables you to limit the count of entries fetched. Setting this to 0 means no limit.
- 'timelimit' => '0', // Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit.
- 'referrals' => false, // Sets the LDAP_OPT_REFERRALS option. Mostly used in multi-domain Active Directory setups
- 'dereference' => 0, // Sets the LDAP_OPT_DEREF option. One of: LDAP_DEREF_NEVER, LDAP_DEREF_SEARCHING, LDAP_DEREF_FINDING, LDAP_DEREF_ALWAYS
- // Used where addressbook contains aliases to objects elsewhere in the LDAP tree.
-
- // definition for contact groups (uncomment if no groups are supported)
- // for the groups base_dn, the user replacements %fu, %u, %d and %dc work as for base_dn (see above)
- // if the groups base_dn is empty, the contact base_dn is used for the groups as well
- // -> in this case, assure that groups and contacts are separated due to the concerning filters!
- 'groups' => [
- 'base_dn' => '',
- 'scope' => 'sub', // Search mode: sub|base|list
- 'filter' => '(objectClass=groupOfNames)',
- 'object_classes' => ['top', 'groupOfNames'], // Object classes to be assigned to new groups
- 'member_attr' => 'member', // Name of the default member attribute, e.g. uniqueMember
- 'name_attr' => 'cn', // Attribute to be used as group name
- 'email_attr' => 'mail', // Group email address attribute (e.g. for mailing lists)
- 'member_filter' => '(objectclass=*)', // Optional filter to use when querying for group members
- 'vlv' => false, // Use VLV controls to list groups
- 'class_member_attr' => [ // Mapping of group object class to member attribute used in these objects
- 'groupofnames' => 'member',
- 'groupofuniquenames' => 'uniquemember'
- ],
- ],
- // this configuration replaces the regular groups listing in the directory tree with
- // a hard-coded list of groups, each listing entries with the configured base DN and filter.
- // if the 'groups' option from above is set, it'll be shown as the first entry with the name 'Groups'
- 'group_filters' => [
- 'departments' => [
- 'name' => 'Company Departments',
- 'scope' => 'list',
- 'base_dn' => 'ou=Groups,dc=mydomain,dc=com',
- 'filter' => '(|(objectclass=groupofuniquenames)(objectclass=groupofurls))',
- 'name_attr' => 'cn',
- ],
- 'customers' => [
- 'name' => 'Customers',
- 'scope' => 'sub',
- 'base_dn' => 'ou=Customers,dc=mydomain,dc=com',
- 'filter' => '(objectClass=inetOrgPerson)',
- 'name_attr' => 'sn',
- ],
- ],
-];
-*/
-
-// An ordered array of the ids of the addressbooks that should be searched
-// when populating address autocomplete fields server-side. ex: ['sql','Verisign'];
-$config['autocomplete_addressbooks'] = ['sql'];
-
-// The minimum number of characters required to be typed in an autocomplete field
-// before address books will be searched. Most useful for LDAP directories that
-// may need to do lengthy results building given overly-broad searches
-$config['autocomplete_min_length'] = 1;
-
-// Number of parallel autocomplete requests.
-// If there's more than one address book, n parallel (async) requests will be created,
-// where each request will search in one address book. By default (0), all address
-// books are searched in one request.
-$config['autocomplete_threads'] = 0;
-
-// Max. number of entries in autocomplete popup. Default: 15.
-$config['autocomplete_max'] = 15;
-
-// show address fields in this order
-// available placeholders: {street}, {locality}, {zipcode}, {country}, {region}
-$config['address_template'] = '{street}<br/>{locality} {zipcode}<br/>{country} {region}';
-
-// Matching mode for addressbook search (including autocompletion)
-// 0 - partial (*abc*), default
-// 1 - strict (abc)
-// 2 - prefix (abc*)
-// Note: For LDAP sources fuzzy_search must be enabled to use 'partial' or 'prefix' mode
-$config['addressbook_search_mode'] = 0;
-
-// List of fields used on contacts list and for autocompletion searches
-// Warning: These are field names not LDAP attributes (see 'fieldmap' setting)!
-$config['contactlist_fields'] = ['name', 'firstname', 'surname', 'email'];
-
-// Template of contact entry on the autocompletion list.
-// You can use contact fields as: name, email, organization, department, etc.
-// See program/actions/contacts/index.php for a list
-$config['contact_search_name'] = '{name} <{email}>';
-
-// Contact mode. If your contacts are mostly business, switch it to 'business'.
-// This will prioritize form fields related to 'work' (instead of 'home').
-// Default: 'private'.
-$config['contact_form_mode'] = 'private';
-
-// The addressbook source to store automatically collected recipients in.
-// Default: true (the built-in "Collected recipients" addressbook, source id = '1')
-// Note: It can be set to any writeable addressbook, e.g. 'sql'
-$config['collected_recipients'] = true;
-
-// The addressbook source to store trusted senders in.
-// Default: true (the built-in "Trusted senders" addressbook, source id = '2')
-// Note: It can be set to any writeable addressbook, e.g. 'sql'
-$config['collected_senders'] = true;
-
-
-// ----------------------------------
-// USER PREFERENCES
-// ----------------------------------
-
-// Use this charset as fallback for message decoding
-$config['default_charset'] = 'ISO-8859-1';
-
-// Skin name: folder from skins/
-$config['skin'] = 'elastic';
-
-// Limit skins available for the user.
-// Note: When not empty, it should include the default skin set in 'skin' option.
-$config['skins_allowed'] = [];
-
-// Enables using standard browser windows (that can be handled as tabs)
-// instead of popup windows
-$config['standard_windows'] = false;
-
-// show up to X items in messages list view
-$config['mail_pagesize'] = 50;
-
-// show up to X items in contacts list view
-$config['addressbook_pagesize'] = 50;
-
-// sort contacts by this col (preferably either one of name, firstname, surname)
-$config['addressbook_sort_col'] = 'surname';
-
-// The way how contact names are displayed in the list.
-// 0: prefix firstname middlename surname suffix (only if display name is not set)
-// 1: firstname middlename surname
-// 2: surname firstname middlename
-// 3: surname, firstname middlename
-$config['addressbook_name_listing'] = 0;
-
-// use this timezone to display date/time
-// valid timezone identifiers are listed here: php.net/manual/en/timezones.php
-// 'auto' will use the browser's timezone settings
-$config['timezone'] = 'auto';
-
-// prefer displaying HTML messages
-$config['prefer_html'] = true;
-
-// Display remote resources (inline images, styles) in HTML messages. Default: 0.
-// 0 - Never, always ask
-// 1 - Allow from my contacts (all writeable addressbooks + collected senders and recipients)
-// 2 - Always allow
-// 3 - Allow from trusted senders only
-$config['show_images'] = 0;
-
-// open messages in new window
-$config['message_extwin'] = false;
-
-// open message compose form in new window
-$config['compose_extwin'] = false;
-
-// compose html formatted messages by default
-// 0 - never,
-// 1 - always,
-// 2 - on reply to HTML message,
-// 3 - on forward or reply to HTML message
-// 4 - always, except when replying to plain text message
-$config['htmleditor'] = 0;
-
-// save copies of compose messages in the browser's local storage
-// for recovery in case of browser crashes and session timeout.
-$config['compose_save_localstorage'] = true;
-
-// show pretty dates as standard
-$config['prettydate'] = true;
-
-// save compose message every 300 seconds (5min)
-$config['draft_autosave'] = 300;
-
-// Interface layout. Default: 'widescreen'.
-// 'widescreen' - three columns
-// 'desktop' - two columns, preview on bottom
-// 'list' - two columns, no preview
-$config['layout'] = 'widescreen';
-
-// Mark as read when viewing a message (delay in seconds)
-// Set to -1 if messages should not be marked as read
-$config['mail_read_time'] = 0;
-
-// Clear Trash on logout. Remove all messages or only older than N days.
-// Supported values: false, true, 30, 60, 90. Default: false.
-$config['logout_purge'] = false;
-
-// Compact INBOX on logout
-$config['logout_expunge'] = false;
-
-// Display attached images below the message body
-$config['inline_images'] = true;
-
-// Encoding of long/non-ascii attachment names:
-// 0 - Full RFC 2231 compatible
-// 1 - RFC 2047 for 'name' and RFC 2231 for 'filename' parameter (Thunderbird's default)
-// 2 - Full 2047 compatible
-$config['mime_param_folding'] = 1;
-
-// Set true if deleted messages should not be displayed
-// This will make the application run slower
-$config['skip_deleted'] = false;
-
-// Set true to Mark deleted messages as read as well as deleted
-// False means that a message's read status is not affected by marking it as deleted
-$config['read_when_deleted'] = true;
-
-// Set to true to never delete messages immediately
-// Use 'Purge' to remove messages marked as deleted
-$config['flag_for_deletion'] = false;
-
-// Default interval for auto-refresh requests (in seconds)
-// These are requests for system state updates e.g. checking for new messages, etc.
-// Setting it to 0 disables the feature.
-$config['refresh_interval'] = 60;
-
-// If true all folders will be checked for recent messages
-$config['check_all_folders'] = false;
-
-// If true, after message/contact delete/move, the next message/contact will be displayed
-$config['display_next'] = true;
-
-// Default messages listing mode. One of 'threads' or 'list'.
-$config['default_list_mode'] = 'list';
-
-// 0 - Do not expand threads
-// 1 - Expand all threads automatically
-// 2 - Expand only threads with unread messages
-$config['autoexpand_threads'] = 0;
-
-// When replying:
-// -1 - don't cite the original message
-// 0 - place cursor below the original message
-// 1 - place cursor above original message (top posting)
-// 2 - place cursor above original message (top posting), but do not indent the quote
-$config['reply_mode'] = 0;
-
-// When replying strip original signature from message
-$config['strip_existing_sig'] = true;
-
-// Show signature:
-// 0 - Never
-// 1 - Always
-// 2 - New messages only
-// 3 - Forwards and Replies only
-$config['show_sig'] = 1;
-
-// By default the signature is placed depending on cursor position (reply_mode).
-// Sometimes it might be convenient to start the reply on top but keep
-// the signature below the quoted text (sig_below = true).
-$config['sig_below'] = false;
-
-// Enables adding of standard separator to the signature
-$config['sig_separator'] = true;
-
-// Use MIME encoding (quoted-printable) for 8bit characters in message body
-$config['force_7bit'] = false;
-
-// Default fields configuration for mail search.
-// The array can contain a per-folder list of header fields which should be considered when searching
-// The entry with key '*' stands for all folders which do not have a specific list set.
-// Supported fields: subject, from, to, cc, bcc, replyto, followupto, body, text.
-// Please note that folder names should to be in sync with $config['*_mbox'] options
-$config['search_mods'] = null; // Example: ['*' => ['subject'=>1, 'from'=>1], 'Sent' => ['subject'=>1, 'to'=>1]];
-
-// Defaults of the addressbook search field configuration.
-$config['addressbook_search_mods'] = null; // Example: ['name'=>1, 'firstname'=>1, 'surname'=>1, 'email'=>1, '*'=>1];
-
-// Directly delete messages in Junk instead of moving to Trash
-$config['delete_junk'] = false;
-
-// Behavior if a received message requests a message delivery notification (read receipt)
-// 0 = ask the user,
-// 1 = send automatically,
-// 2 = ignore (never send or ask)
-// 3 = send automatically if sender is in my contacts, otherwise ask the user
-// 4 = send automatically if sender is in my contacts, otherwise ignore
-// 5 = send automatically if sender is a trusted sender, otherwise ask the user
-// 6 = send automatically if sender is a trusted sender, otherwise ignore
-$config['mdn_requests'] = 0;
-
-// Return receipt checkbox default state
-$config['mdn_default'] = 0;
-
-// Delivery Status Notification checkbox default state
-$config['dsn_default'] = 0;
-
-// Place replies in the folder of the message being replied to
-$config['reply_same_folder'] = false;
-
-// Sets default mode of Forward feature to "forward as attachment"
-$config['forward_attachment'] = false;
-
-// Defines address book (internal index) to which new contacts will be added
-// By default it is the first writeable addressbook.
-// Note: Use '0' for built-in address book.
-$config['default_addressbook'] = null;
-
-// Enables spell checking before sending a message.
-$config['spellcheck_before_send'] = false;
-
-// Skip alternative email addresses in autocompletion (show one address per contact)
-$config['autocomplete_single'] = false;
-
-// Default font for composed HTML message.
-// Supported values: Andale Mono, Arial, Arial Black, Book Antiqua, Courier New,
-// Georgia, Helvetica, Impact, Tahoma, Terminal, Times New Roman, Trebuchet MS, Verdana
-$config['default_font'] = 'Verdana';
-
-// Default font size for composed HTML message.
-// Supported sizes: 8pt, 10pt, 12pt, 14pt, 18pt, 24pt, 36pt
-$config['default_font_size'] = '10pt';
-
-// Enables display of email address with name instead of a name (and address in title)
-$config['message_show_email'] = false;
-
-// Default behavior of Reply-All button:
-// 0 - Reply-All always
-// 1 - Reply-List if mailing list is detected
-$config['reply_all_mode'] = 0;
+++ /dev/null
-
-
-# ROUNDCUBE
-host roundcube roundcube 127.0.0.1/32 md5
-host roundcube roundcube ::1/128 md5
+++ /dev/null
- # Auth ##########
- Require valid-user
- AuthType Basic
- AuthName "__REALM__"
- AuthBasicProvider dbd
- AuthDBDUserPWQuery "SELECT pass FROM web.web_view_webaccess WHERE url='__FULL__' AND username = %s"
-
+++ /dev/null
- # DB-Connection ##########
- DBDriver pgsql
- DBDParams "hostaddr=127.0.0.1 host=localhost port=5432 dbname=serveradmin user=mailserver_manage password=pUn6ZUzqctC2z3Lq"
- DBDMin 1
- DBDKeep 8
- DBDMax 20
- DBDExptime 300
-
+++ /dev/null
- <Directory /var/www/__DOMAIN__/__SUB__>
+++ /dev/null
-
- DocumentRoot /var/www/__DOMAIN__/__SUB__
+++ /dev/null
-
-</VirtualHost>
\ No newline at end of file
+++ /dev/null
-# sites-available/__FILE__
-# Modified by: Ole B. Rosentreter <webmaster@laktatnebel.de>
-# Last modified: __DATE__
-
-# __SUB__ ##########
-<VirtualHost *:__PORT__>
-
+++ /dev/null
- # Logging ##########
- ErrorLog /var/log/apache2/__DOMAIN__/__SUB__.error.log
- CustomLog /var/log/apache2/__DOMAIN__/__SUB__.access.log combined
+++ /dev/null
-
- RewriteEngine On
- RewriteCond %{SERVER_PORT} !^443$
- RewriteRule (.*) https://%{HTTP_HOST}$1 [R=301,L]
-
+++ /dev/null
- # SSL ##########
- SetEnvIf User-Agent ".*MSIE.*"nokeepalive SSL-unclean-shutdown
-
- SSLCertificateFile /etc/letsencrypt/live/__FULL__/fullchain.pem
- SSLCertificateKeyFile /etc/letsencrypt/live/__FULL__/privkey.pem
- Include /etc/letsencrypt/options-ssl-apache.conf
-
+++ /dev/null
-
-
-# MAILSERVER
-host serveradmin mailserver_manage 127.0.0.1/32 md5
-host serveradmin mailserver_manage ::1/128 md5
+++ /dev/null
-
-
-CREATE DATABASE serveradmin;
-
-\connect serveradmin
-
-SET statement_timeout = 0;
-SET lock_timeout = 0;
-SET client_encoding = 'UTF8';
-SET standard_conforming_strings = on;
-SELECT pg_catalog.set_config('search_path', '', false);
-SET check_function_bodies = false;
-SET client_min_messages = warning;
-
-CREATE SCHEMA domain;
-
-SET search_path = pg_catalog;
-
-SET default_tablespace = '';
-
-SET default_with_oids = false;
-
--- #############################################################################################
--- ##### PEOPLE
--- ##### Datentabellen
--- User, die Domaininhaber sind oder Leserechte an bestimmten Subdomains
-CREATE TABLE domain.people_dt_user (
- id_user serial NOT NULL,
- user_name varchar(64) NOT NULL,
- pass_web varchar(256) NOT NULL default 'password',
- email varchar(256) default NULL,
- full_name varchar(256) NOT NULL,
- domainowner boolean NOT NULL default false, -- false
- active boolean NOT NULL default true, -- true
- rights smallint NOT NULL default 0,
- webaccess_expire_date timestamp NULL default '2034-12-31 23:59:59',
- CONSTRAINT people_dt_user_pkey PRIMARY KEY (id_user),
- CONSTRAINT people_dt_user_unique_key UNIQUE (user_name)
-);
-
-
--- #############################################################################################
--- ##### DOMAINS
--- ##### Datentabellen
--- Domains
-CREATE TABLE domain.domain_dt_domains (
- id_domains serial NOT NULL,
- domain_name varchar(256) NOT NULL,
- CONSTRAINT domain_dt_domains_pkey PRIMARY KEY (id_domains),
- CONSTRAINT domain_dt_domains_unique_key UNIQUE (domain_name)
-);
-
--- Subdomians
-CREATE TABLE domain.domain_dt_subdomains (
- id_subdomains serial NOT NULL,
- subdomain_name varchar(32) NOT NULL default 'www',
- CONSTRAINT domain_dt_subdomains_pkey PRIMARY KEY (id_subdomains),
- CONSTRAINT domain_dt_subdomains_unique_key UNIQUE (subdomain_name)
-);
-
--- Topleveldomains
-CREATE TABLE domain.domain_dt_topleveldomains (
- id_topleveldomains serial NOT NULL,
- tld_name varchar(8) NOT NULL default 'de',
- CONSTRAINT domain_dt_topleveldomains_pkey PRIMARY KEY (id_topleveldomains),
- CONSTRAINT domain_dt_topleveldomains_unique_key UNIQUE (tld_name)
-);
-
--- ##### Kreuztabellen
--- Kombination aus Domainnanmen und Topleveldomains - einedomain.tld
--- Domaininhaberschaft, Konnektierung
-CREATE TABLE domain.domain_kt_domains_topleveldomains (
- id_domains_topleveldomains serial NOT NULL,
- fk_domain integer NOT NULL,
- fk_topleveldomain integer NOT NULL,
- fk_domain_owner integer NOT NULL default '1',
- domain_connection_date date NOT NULL default now(),
- dkim_key varchar(256) default NULL,
- dkim_value text default NULL,
- CONSTRAINT domain_kt_domains_topleveldomains_pkey PRIMARY KEY (id_domains_topleveldomains),
- CONSTRAINT "fk_domain" FOREIGN KEY (fk_domain) REFERENCES domain.domain_dt_domains (id_domains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT "fk_topleveldomain" FOREIGN KEY (fk_topleveldomain) REFERENCES domain.domain_dt_topleveldomains (id_topleveldomains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT "fk_domain_owner" FOREIGN KEY (fk_domain_owner) REFERENCES domain.people_dt_user (id_user) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT domain_kt_domains_topleveldomain_unique_key UNIQUE (fk_domain, fk_topleveldomain)
-);
-
--- Komplette Domain - subdom.einedomain.tld
-CREATE TABLE domain.domain_kt_fulldomains (
- id_fulldomain serial NOT NULL,
- fk_subdomain integer NOT NULL,
- fk_domain integer NOT NULL,
- CONSTRAINT domain_kt_fulldomains_pkey PRIMARY KEY (id_fulldomain),
- CONSTRAINT "fk_domain" FOREIGN KEY (fk_domain) REFERENCES domain.domain_kt_domains_topleveldomains (id_domains_topleveldomains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT "fk_subdomain" FOREIGN KEY (fk_subdomain) REFERENCES domain.domain_dt_subdomains (id_subdomains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
-);
+++ /dev/null
-
-\connect serveradmin
-
--- #############################################################################################
--- ##### PEOPLE
--- ##### Views
--- Alle Domaininhaber
-CREATE OR REPLACE VIEW
- domain.people_view_people_domain_owner
-AS SELECT * FROM
- domain.people_dt_user
-WHERE domainowner = true;
-
--- Alle aktiven Benutzer
-CREATE OR REPLACE VIEW
- domain.people_view_people_active
-AS SELECT * FROM
- domain.people_dt_user
-WHERE active = true;
-
--- Alle Benutzer, deren Zugriff nicht abgelaufen ist.
-CREATE OR REPLACE VIEW
- domain.people_view_people_webaccess_nonexpired
-AS SELECT * FROM
- domain.people_dt_user
-WHERE webaccess_expire_date > now();
-
--- #############################################################################################
--- ##### DOMAINS
--- ##### Views
--- Als Text: Kombination aus Domainnanmen und Topleveldomains und Domaininhaber und Konnektierungsdatum
-CREATE OR REPLACE VIEW
- domain.domain_view_domains_topleveldomains
-AS SELECT
- id_domains_topleveldomains AS id_kt_domains_topleveldomains,
- concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS domain_name_as_registered,
- people_dt_user.id_user,
- people_dt_user.full_name AS domain_owner,
- domain_connection_date AS connection_date
-FROM
- domain.domain_kt_domains_topleveldomains
-JOIN
- domain.domain_dt_domains
- ON
- domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
-JOIN
- domain.domain_dt_topleveldomains
- ON
- domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain
-JOIN
- domain.people_dt_user
- ON
- domain.people_dt_user.id_user = domain.domain_kt_domains_topleveldomains.fk_domain_owner;
-
--- Volle Domain als Text
-CREATE OR REPLACE VIEW
- domain.domain_view_fulldomain
-AS SELECT
- id_fulldomain AS id_fulldomain,
- concat(domain.domain_dt_subdomains.subdomain_name || '.' || domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS full_domain,
- domain.domain_dt_subdomains.id_subdomains AS id_sub_domain,
- domain.domain_dt_subdomains.subdomain_name AS sub_domain,
- domain.domain_kt_fulldomains.fk_domain AS id_domain,
- concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS domain
-FROM
- domain.domain_kt_fulldomains
-JOIN
- domain.domain_dt_subdomains
- ON
- domain.domain_dt_subdomains.id_subdomains = domain.domain_kt_fulldomains.fk_subdomain
-JOIN
- domain.domain_kt_domains_topleveldomains
- ON
- domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains = domain.domain_kt_fulldomains.fk_domain
-JOIN
- domain.domain_dt_domains
- ON
- domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
-JOIN
- domain.domain_dt_topleveldomains
- ON
- domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain;
-
-
+++ /dev/null
-
-\connect serveradmin
-
-CREATE ROLE mailserver_manage WITH PASSWORD 'pUn6ZUzqctC2z3Lq';
-
-ALTER ROLE mailserver_manage WITH LOGIN;
-
-GRANT USAGE ON SCHEMA domain TO mailserver_manage;
-
-GRANT USAGE ON SCHEMA mail TO mailserver_manage;
-
-GRANT SELECT ON TABLE mail.mail_view_adresses TO mailserver_manage;
-GRANT SELECT ON TABLE mail.mail_view_alias_domain TO mailserver_manage;
-GRANT SELECT ON TABLE mail.mail_view_forwardings TO mailserver_manage;
-GRANT SELECT ON TABLE mail.mail_view_users_maildir TO mailserver_manage;
-
-GRANT USAGE ON SCHEMA web TO mailserver_manage;
-
-GRANT SELECT ON TABLE web.web_view_webaccess TO mailserver_manage;
+++ /dev/null
-
-\connect serveradmin
-
-SET statement_timeout = 0;
-SET lock_timeout = 0;
-SET client_encoding = 'UTF8';
-SET standard_conforming_strings = on;
-SELECT pg_catalog.set_config('search_path', '', false);
-SET check_function_bodies = false;
-SET client_min_messages = warning;
-
-CREATE SCHEMA mail;
-
-SET search_path = pg_catalog;
-
-SET default_tablespace = '';
-
-SET default_with_oids = false;
-
-
--- #############################################################################################
--- ##### ALIAS
--- ##### Datentabellen
--- vorkommende Aliase
-CREATE TABLE mail.mail_dt_aliases (
- id_mail_aliases serial NOT NULL,
- alias_name varchar(250) NOT NULL,
- alias_purpose varchar(250) NOT NULL,
- CONSTRAINT mail_dt_aliases_pkey PRIMARY KEY (id_mail_aliases),
- CONSTRAINT mail_dt_aliases_unique_key UNIQUE (alias_name)
-);
-
--- ##### Kreuztabellen
--- Zuordnung Domain - Alias
-CREATE TABLE mail.mail_kt_alias_domain (
- id_aliasdomain serial NOT NULL,
- fk_alias integer NOT NULL,
- fk_domain integer NOT NULL,
- CONSTRAINT mail_kt_alias_domain_pkey PRIMARY KEY (id_aliasdomain),
- CONSTRAINT mail_kt_alias_domain_unique_key UNIQUE (fk_alias,fk_domain),
- CONSTRAINT "fk_alias" FOREIGN KEY (fk_alias) REFERENCES mail.mail_dt_aliases(id_mail_aliases) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT "fk_domain" FOREIGN KEY (fk_domain) REFERENCES domain.domain_kt_domains_topleveldomains(id_domains_topleveldomains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
-);
-
--- Mail-Account
-CREATE TABLE mail.mail_dkt_account (
- id_account serial NOT NULL,
- fk_mailaddress integer NOT NULL,
- pass_postbox varchar(256) NOT NULL,
- CONSTRAINT mail_dkt_account_pkey PRIMARY KEY (id_account),
- CONSTRAINT mail_dkt_account_unique_key UNIQUE (fk_mailaddress),
- CONSTRAINT "fk_mailaddress" FOREIGN KEY (fk_mailaddress) REFERENCES mail.mail_kt_alias_domain(id_aliasdomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
-);
-
--- Weiterleitungen nach extern
-CREATE TABLE mail.mail_dkt_forwarding_extern (
- fk_source integer NOT NULL,
- destination_extern varchar (128) NOT NULL,
- CONSTRAINT mail_dkt_forwarding_extern_unique_key UNIQUE (fk_source, destination_extern),
- CONSTRAINT "fk_source" FOREIGN KEY (fk_source) REFERENCES mail.mail_kt_alias_domain(id_aliasdomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
-);
-
--- Weiterleitungen nach intern
-CREATE TABLE mail.mail_kt_forwarding_intern (
- fk_source integer NOT NULL,
- fk_destination integer NOT NULL,
- CONSTRAINT mail_dkt_forwarding_intern_unique_key UNIQUE (fk_source,fk_destination),
- CONSTRAINT "fk_source" FOREIGN KEY (fk_source) REFERENCES mail.mail_kt_alias_domain(id_aliasdomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT "fk_destination" FOREIGN KEY (fk_destination) REFERENCES mail.mail_kt_alias_domain(id_aliasdomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
-);
+++ /dev/null
-
-\connect serveradmin
-
--- #############################################################################################
--- ##### ALIAS
--- ##### Views
--- Zuordnung Domain - Alias im Klartext - Besitzer der Domain
-CREATE OR REPLACE VIEW
- mail.mail_view_alias_domain
-AS SELECT
- id_mail_aliases,
- alias_name,
- concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS regdomain,
- id_aliasdomain as id_full_mailadress,
- concat(mail_dt_aliases.alias_name || '@' || domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS full_mailaddress,
- --user_name AS username,
- user_name AS address_owner,
- pass_web AS pass
-FROM
- mail.mail_kt_alias_domain
-JOIN
- mail.mail_dt_aliases
- ON
- mail_dt_aliases.id_mail_aliases = mail_kt_alias_domain.fk_alias
-JOIN
- domain.domain_kt_domains_topleveldomains
- ON
- domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains = mail_kt_alias_domain.fk_domain
-JOIN
- domain.people_dt_user
- ON
- domain.people_dt_user.id_user = domain.domain_kt_domains_topleveldomains.fk_domain_owner
-JOIN
- domain.domain_dt_domains
- ON
- domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
-JOIN
- domain.domain_dt_topleveldomains
- ON
- domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain;
-
--- Weiterleitungen nach intern
-CREATE OR REPLACE VIEW
- mail.mail_view_aliases_forwarding_intern
-AS SELECT
- src_alias_domain.id_aliasdomain AS id_source,
- concat(src_aliases.alias_name || '@' || src_dom.domain_name || '.' || src_tld.tld_name) AS source,
- concat(src_dom.domain_name || '.' || src_tld.tld_name) AS domain_source,
- dest_alias_domain.id_aliasdomain AS id_destination,
- concat(dest_aliases.alias_name || '@' || dest_dom.domain_name || '.' || dest_tld.tld_name) AS destination,
- concat(dest_dom.domain_name || '.' || dest_tld.tld_name) AS domain_destination
-FROM
- mail.mail_kt_forwarding_intern
-JOIN
- mail.mail_kt_alias_domain src_alias_domain
- ON
- src_alias_domain.id_aliasdomain = mail_kt_forwarding_intern.fk_source
-JOIN
- mail.mail_dt_aliases src_aliases
- ON
- src_aliases.id_mail_aliases = src_alias_domain.fk_alias
-JOIN
- domain.domain_kt_domains_topleveldomains src_domtld
- ON
- src_domtld.id_domains_topleveldomains = src_alias_domain.fk_domain
-JOIN
- domain.domain_dt_domains src_dom
- ON
- src_dom.id_domains = src_domtld.fk_domain
-JOIN
- domain.domain_dt_topleveldomains src_tld
- ON
- src_tld.id_topleveldomains = src_domtld.fk_topleveldomain
-JOIN
- mail.mail_kt_alias_domain dest_alias_domain
- ON
- dest_alias_domain.id_aliasdomain = mail_kt_forwarding_intern.fk_destination
-JOIN
- mail.mail_dt_aliases dest_aliases
- ON
- dest_aliases.id_mail_aliases = dest_alias_domain.fk_alias
-JOIN
- domain.domain_kt_domains_topleveldomains dest_domtld
- ON
- dest_domtld.id_domains_topleveldomains = dest_alias_domain.fk_domain
-JOIN
- domain.domain_dt_domains dest_dom
- ON
- dest_dom.id_domains = dest_domtld.fk_domain
-JOIN
- domain.domain_dt_topleveldomains dest_tld
- ON
- dest_tld.id_topleveldomains = dest_domtld.fk_topleveldomain;
-
--- Weiterleitungen nach extern
-CREATE OR REPLACE VIEW
- mail.mail_view_aliases_forwarding_extern
-AS SELECT
- src_alias_domain.id_aliasdomain AS id_source,
- concat(src_aliases.alias_name || '@' || src_dom.domain_name || '.' || src_tld.tld_name) AS source,
- destination_extern AS destination
-FROM
- mail.mail_dkt_forwarding_extern
-JOIN
- mail.mail_kt_alias_domain src_alias_domain
- ON
- src_alias_domain.id_aliasdomain = mail_dkt_forwarding_extern.fk_source
-JOIN
- mail.mail_dt_aliases src_aliases
- ON
- src_aliases.id_mail_aliases = src_alias_domain.fk_alias
-JOIN
- domain.domain_kt_domains_topleveldomains src_domtld
- ON
- src_domtld.id_domains_topleveldomains = src_alias_domain.fk_domain
-JOIN
- domain.domain_dt_domains src_dom
- ON
- src_dom.id_domains = src_domtld.fk_domain
-JOIN
- domain.domain_dt_topleveldomains src_tld
- ON
- src_tld.id_topleveldomains = src_domtld.fk_topleveldomain;
-
--- Alle Weiterleitungen
-CREATE OR REPLACE VIEW
- mail.mail_view_forwardings
-AS
-SELECT id_source, source, destination FROM
- mail.mail_view_aliases_forwarding_extern
-UNION
-SELECT id_source, source, destination FROM
- mail.mail_view_aliases_forwarding_intern;
-
--- User, Pass für Mailbox, Maildir
-CREATE OR REPLACE VIEW
- mail.mail_view_users_maildir
-AS SELECT
- pass_postbox AS pass,
- concat(mail_dt_aliases.alias_name || '@' || domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS username,
- concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS domain,
- concat(mail_dt_aliases.alias_name::text) AS maildir_username,
- concat(((((('/var/vmail/'::text || domain_dt_domains.domain_name::text) || '.'::text) || domain_dt_topleveldomains.tld_name::text) || '/'::text) || mail_dt_aliases.alias_name::text) || '/'::text) AS maildir_home
-FROM
- mail.mail_dkt_account
-JOIN
- mail.mail_kt_alias_domain
- ON
- mail_kt_alias_domain.id_aliasdomain = mail_dkt_account.fk_mailaddress
-JOIN
- mail.mail_dt_aliases
- ON
- mail_dt_aliases.id_mail_aliases = mail_kt_alias_domain.fk_alias
-JOIN
- domain.domain_kt_domains_topleveldomains
- ON
- domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains = mail_kt_alias_domain.fk_domain
-JOIN
- domain.domain_dt_domains
- ON
- domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
-JOIN
- domain.domain_dt_topleveldomains
- ON
- domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain;
-
--- Mail, ID Alias, ID Domain, ID Mail, Maildir
-CREATE OR REPLACE VIEW
- mail.mail_view_adresses
-AS SELECT
- id_aliasdomain AS id_full_mailadress,
- concat(alias_name || '@' || domain_name || '.' || tld_name) AS full_mailadress,
- alias_purpose as mailadress_purpose,
- id_mail_aliases,
- fk_mailaddress AS fk_mailaddress_account
-FROM
- mail.mail_dkt_account
-JOIN
- mail.mail_kt_forwarding_intern fid
- ON
- fid.fk_destination = fk_mailaddress
-JOIN
- mail.mail_kt_alias_domain ad
- ON
- ad.id_aliasdomain = fid.fk_source
-JOIN
- mail.mail_dt_aliases al
- ON
- al.id_mail_aliases = ad.fk_alias
-JOIN
- domain.domain_kt_domains_topleveldomains dtl
- ON
- dtl.id_domains_topleveldomains = ad.fk_domain
-JOIN
- domain.domain_dt_domains dom
- ON
- dom.id_domains = dtl.fk_domain
-JOIN
- domain.domain_dt_topleveldomains tld
- ON
- tld.id_topleveldomains = dtl.fk_topleveldomain;
-
-CREATE OR REPLACE VIEW
- mail.mail_view_mailboxmanage
-AS
-SELECT * FROM
- web.group_view_group_domain_mailboxmanage
-UNION
-SELECT * FROM
- web.group_view_user_domain_mailboxmanage
-UNION
-SELECT address_owner, pass, regdomain FROM
- mail.mail_view_alias_domain;
-
-
-
+++ /dev/null
-
-\connect serveradmin
-
-SET statement_timeout = 0;
-SET lock_timeout = 0;
-SET client_encoding = 'UTF8';
-SET standard_conforming_strings = on;
-SELECT pg_catalog.set_config('search_path', '', false);
-SET check_function_bodies = false;
-
-CREATE SCHEMA web;
-
-SET search_path = pg_catalog;
-
-SET default_tablespace = '';
-
-SET default_with_oids = false;
-
-
--- #############################################################################################
--- ##### GRUPPEN
--- ##### Datentabellen
--- Benutzer, die nur einer Gruppe angehören
-CREATE TABLE web.group_dt_user (
- id_group_user serial NOT NULL,
- member_name varchar(64) NOT NULL,
- email varchar(256) default NULL,
- active boolean NOT NULL default true,
- CONSTRAINT group_dt_user_pkey PRIMARY KEY (id_group_user),
- CONSTRAINT group_dt_user_unique_key UNIQUE (member_name)
-);
-
--- Gruppen
-CREATE TABLE web.group_dt_groups (
- id_group_groups serial NOT NULL,
- group_username varchar(32) NOT NULL,
- pass_web varchar(256) NOT NULL default 'password',
- full_name varchar(256) NOT NULL,
- webaccess_expire_date timestamp NULL default '2034-12-31 23:59:59',
- CONSTRAINT group_dt_groups_pkey PRIMARY KEY (id_group_groups),
- CONSTRAINT group_dt_groups_unique_key UNIQUE (group_username)
-);
-
--- ##### Kreuztabellen
--- Zugehörigkeit von Gruppenbenutzern zu Gruppen
-CREATE TABLE web.group_kt_membership (
- fk_groupuser integer NOT NULL,
- fk_group integer NOT NULL,
- CONSTRAINT "fk_groupuser" FOREIGN KEY (fk_groupuser) REFERENCES web.group_dt_user(id_group_user) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT "fk_group" FOREIGN KEY (fk_group) REFERENCES web.group_dt_groups(id_group_groups) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT group_kt_membership_unique_key UNIQUE (fk_groupuser, fk_group)
-);
-
--- Zugehörigkeit von Gruppenbenutzern zu registrierten Domains
-CREATE TABLE web.group_kt_group_domain_mailboxmanage (
- fk_group integer NOT NULL,
- fk_regdomain integer NOT NULL,
- CONSTRAINT "fk_group" FOREIGN KEY (fk_group) REFERENCES web.group_dt_groups(id_group_groups) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT "fk_regdomain" FOREIGN KEY (fk_regdomain) REFERENCES domain.domain_kt_domains_topleveldomains(id_domains_topleveldomains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT group_kt_group_domain_mailboxmanage_unique_key UNIQUE (fk_group,fk_regdomain)
-);
-
--- Zugehörigkeit von Usern zu registrierten Domains
-CREATE TABLE web.group_kt_user_domain_mailboxmanage (
- fk_user integer NOT NULL,
- fk_regdomain integer NOT NULL,
- CONSTRAINT "fk_user" FOREIGN KEY (fk_user) REFERENCES domain.people_dt_user(id_user) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT "fk_regdomain" FOREIGN KEY (fk_regdomain) REFERENCES domain.domain_kt_domains_topleveldomains(id_domains_topleveldomains) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT group_kt_user_domain_mailboxmanage_unique_key UNIQUE (fk_user,fk_regdomain)
-);
-
--- #############################################################################################
--- ##### WEB
--- ##### Kreuztabellen
--- Gruppen mit Leserechten auf bestimmten Subdomains
-CREATE TABLE web.web_kt_group_domain (
- fk_group integer NOT NULL,
- fk_domain integer NOT NULL,
- CONSTRAINT web_kt_group_domain_unique_key UNIQUE (fk_group,fk_domain),
- CONSTRAINT "fk_group" FOREIGN KEY (fk_group) REFERENCES web.group_dt_groups(id_group_groups) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT "fk_domain" FOREIGN KEY (fk_domain) REFERENCES domain.domain_kt_fulldomains(id_fulldomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
-);
-
--- User mit Leserechten auf bestimmten Subdomains
-CREATE TABLE web.web_kt_user_domain (
- fk_user integer NOT NULL,
- fk_domain integer NOT NULL,
- CONSTRAINT web_kt_user_domain_unique_key UNIQUE (fk_user,fk_domain),
- CONSTRAINT "fk_user" FOREIGN KEY (fk_user) REFERENCES domain.people_dt_user(id_user) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE,
- CONSTRAINT "fk_domain" FOREIGN KEY (fk_domain) REFERENCES domain.domain_kt_fulldomains(id_fulldomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
-);
-
--- Domains mit Konfiguration
-CREATE TABLE web.web_dkt_domain_config (
- id_domain_config serial NOT NULL,
- fk_fulldomain integer NOT NULL default '1',
- description varchar(256) default NULL,
- realm boolean,
- serveralias varchar(256) default NULL,
- virtualhost text default NULL,
- directory text default NULL,
- CONSTRAINT web_dkt_domain_config_pkey PRIMARY KEY (id_domain_config),
- CONSTRAINT "fk_fulldomain" FOREIGN KEY (fk_fulldomain) REFERENCES domain.domain_kt_fulldomains(id_fulldomain) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE
-);
+++ /dev/null
-
-\connect serveradmin
-
--- #############################################################################################
--- ##### GRUPPEN
--- ##### Views
--- Nicht abgelaufene Gruppen
-CREATE OR REPLACE VIEW
- web.group_view_group_webaccess_nonexpired
-AS SELECT * FROM
- web.group_dt_groups
-WHERE webaccess_expire_date > now();
-
--- Zugehörigkeit von Gruppenbenutzern zu Gruppen mit Namen
-CREATE OR REPLACE VIEW
- web.group_view_membership
-AS SELECT
- web.group_dt_groups.full_name AS group_name,
- web.group_dt_user.member_name
-FROM
- web.group_kt_membership
-JOIN
- web.group_dt_user
- ON
- web.group_dt_user.id_group_user = web.group_kt_membership.fk_groupuser
-JOIN
- web.group_dt_groups
- ON
- web.group_dt_groups.id_group_groups = web.group_kt_membership.fk_group;
-
--- Zugehörigkeit von Gruppenbenutzern zu registrierten Domains mit Manage-Rechten
-CREATE OR REPLACE VIEW
- web.group_view_group_domain_mailboxmanage
-AS SELECT
- web.group_dt_groups.group_username AS username,
- web.group_dt_groups.pass_web AS pass,
- concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS regdomain
-FROM
- web.group_kt_group_domain_mailboxmanage
-JOIN
- web.group_dt_groups
- ON
- web.group_kt_group_domain_mailboxmanage.fk_group = web.group_dt_groups.id_group_groups
-JOIN
- domain.domain_kt_domains_topleveldomains
- ON
- web.group_kt_group_domain_mailboxmanage.fk_regdomain = domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains
-JOIN
- domain.domain_dt_domains
- ON
- domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
-JOIN
- domain.domain_dt_topleveldomains
- ON
- domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain
-WHERE
- web.group_dt_groups.webaccess_expire_date > now();
-
--- Zugehörigkeit von Usern zu registrierten Domains mit Manage-Rechten
-CREATE OR REPLACE VIEW
- web.group_view_user_domain_mailboxmanage
-AS SELECT
- domain.people_dt_user.user_name AS username,
- domain.people_dt_user.pass_web AS pass,
- concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS regdomain
-FROM
- web.group_kt_user_domain_mailboxmanage
-JOIN
- domain.people_dt_user
- ON
- web.group_kt_user_domain_mailboxmanage.fk_user = domain.people_dt_user.id_user
-JOIN
- domain.domain_kt_domains_topleveldomains
- ON
- web.group_kt_user_domain_mailboxmanage.fk_regdomain = domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains
-JOIN
- domain.domain_dt_domains
- ON
- domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
-JOIN
- domain.domain_dt_topleveldomains
- ON
- domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain
-WHERE
- domain.people_dt_user.webaccess_expire_date > now()
-AND domain.people_dt_user.active = true;
-
--- #############################################################################################
--- ##### WEB
--- ##### Views
--- Group und Pass pro Subdomain
-CREATE OR REPLACE VIEW
- web.web_view_group_webaccess
-AS SELECT
- group_dt_user.member_name AS username,
- group_dt_groups.pass_web AS pass,
- concat(domain.domain_dt_subdomains.subdomain_name || '.' || domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS url,
- domain.domain_kt_fulldomains.id_fulldomain AS url_id,
- group_dt_groups.id_group_groups AS id
-FROM
- web.web_kt_group_domain
-JOIN
- web.group_dt_groups
- ON
- web.web_kt_group_domain.fk_group = web.group_dt_groups.id_group_groups
-JOIN
- domain.domain_kt_fulldomains
- ON
- web.web_kt_group_domain.fk_domain = domain.domain_kt_fulldomains.id_fulldomain
-JOIN
- domain.domain_dt_subdomains
- ON
- domain.domain_dt_subdomains.id_subdomains = domain.domain_kt_fulldomains.fk_subdomain
-JOIN
- domain.domain_kt_domains_topleveldomains
- ON
- domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains = domain.domain_kt_fulldomains.fk_domain
-JOIN
- domain.domain_dt_domains
- ON
- domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
-JOIN
- domain.domain_dt_topleveldomains
- ON
- domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain
-JOIN
- web.group_kt_membership
- ON
- web.group_dt_groups.id_group_groups = web.group_kt_membership.fk_group
-JOIN
- web.group_dt_user
- ON
- web.group_dt_user.id_group_user = web.group_kt_membership.fk_groupuser
-WHERE
- group_dt_groups.webaccess_expire_date > now();
-
--- User und Pass pro Subdomain
-CREATE OR REPLACE VIEW
- web.web_view_user_webaccess
-AS SELECT
- domain.people_dt_user.id_user AS id,
- domain.people_dt_user.user_name AS username,
- domain.people_dt_user.pass_web AS pass,
- domain.domain_kt_fulldomains.id_fulldomain AS url_id,
- concat(domain.domain_dt_subdomains.subdomain_name || '.' || domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS url
-FROM
- web.web_kt_user_domain
-JOIN
- domain.people_dt_user
- ON
- web.web_kt_user_domain.fk_user = people_dt_user.id_user
-JOIN
- domain.domain_kt_fulldomains
- ON
- web.web_kt_user_domain.fk_domain = domain.domain_kt_fulldomains.id_fulldomain
-JOIN
- domain.domain_dt_subdomains
- ON
- domain.domain_dt_subdomains.id_subdomains = domain.domain_kt_fulldomains.fk_subdomain
-JOIN
- domain.domain_kt_domains_topleveldomains
- ON
- domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains = domain.domain_kt_fulldomains.fk_domain
-JOIN
- domain.domain_dt_domains
- ON
- domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
-JOIN
- domain.domain_dt_topleveldomains
- ON
- domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain
-WHERE
- domain.people_dt_user.webaccess_expire_date > now();
-
--- User zusamen mit Groups und Pass pro Subdomain
-CREATE OR REPLACE VIEW
- web.web_view_webaccess
-AS
-SELECT id, username, pass, url, url_id FROM
- web.web_view_user_webaccess
-UNION
-SELECT id, username, pass, url, url_id FROM
- web.web_view_group_webaccess;
-
-
--- Volle Domain mit Config
-CREATE OR REPLACE VIEW
- web.web_view_fulldomain_config
-AS SELECT
- id_domain_config,
- domain.domain_dt_subdomains.subdomain_name AS sub_domain,
- concat(domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS domain,
- concat(domain.domain_dt_subdomains.subdomain_name || '.' || domain.domain_dt_domains.domain_name || '.' || domain.domain_dt_topleveldomains.tld_name) AS full_domain,
- serveralias,
- realm,
- directory,
- virtualhost,
- description
-FROM
- web.web_dkt_domain_config
-JOIN
- domain.domain_kt_fulldomains
- ON
- domain.domain_kt_fulldomains.id_fulldomain = web.web_dkt_domain_config.fk_fulldomain
-JOIN
- domain.domain_dt_subdomains
- ON
- domain.domain_dt_subdomains.id_subdomains = domain.domain_kt_fulldomains.fk_subdomain
-JOIN
- domain.domain_kt_domains_topleveldomains
- ON
- domain.domain_kt_domains_topleveldomains.id_domains_topleveldomains = domain.domain_kt_fulldomains.fk_domain
-JOIN
- domain.domain_dt_domains
- ON
- domain.domain_dt_domains.id_domains = domain.domain_kt_domains_topleveldomains.fk_domain
-JOIN
- domain.domain_dt_topleveldomains
- ON
- domain.domain_dt_topleveldomains.id_topleveldomains = domain.domain_kt_domains_topleveldomains.fk_topleveldomain;
+++ /dev/null
-#
-# Sample Webalizer configuration file
-# Copyright 1997-2013 by Bradford L. Barrett
-#
-# Distributed under the GNU General Public License. See the
-# files "Copyright" and "COPYING" provided with the webalizer
-# distribution for additional information.
-#
-# This is a sample configuration file for the Webalizer (ver 2.23)
-# Lines starting with pound signs '#' are comment lines and are
-# ignored. Blank lines are skipped as well. Other lines are considered
-# as configuration lines, and have the form "ConfigOption Value" where
-# ConfigOption is a valid configuration keyword, and Value is the value
-# to assign that configuration option. Invalid keyword/values are
-# ignored, with appropriate warnings being displayed. There must be
-# at least one space or tab between the keyword and its value.
-#
-# As of version 0.98, The Webalizer will look for a 'default' configuration
-# file named "webalizer.conf" in the current directory, and if not found
-# there, will look for "/etc/webalizer.conf".
-
-
-# LogFile defines the web server log file to use. If not specified
-# here or on on the command line, input will default to STDIN. If
-# the log filename ends in '.gz' (a gzip compressed file), or '.bz2'
-# (bzip2 compressed file), it will be decompressed on the fly as it
-# is being read.
-
-LogFile /var/log/apache2/__DOMAIN__/www/access.log.1
-
-# LogType defines the log type being processed. Normally, the Webalizer
-# expects a CLF or Combined web server log as input. Using this option,
-# you can process ftp logs (xferlog as produced by wu-ftp and others),
-# Squid native logs or W3C extended format web logs. Values can be 'clf',
-# 'ftp', 'squid' or 'w3c'. The default is 'clf'.
-
-#LogType clf
-
-# OutputDir is where you want to put the output files. This should
-# should be a full path name, however relative ones might work as well.
-# If no output directory is specified, the current directory will be used.
-
-OutputDir /var/www/__DOMAIN__/webalizer
-
-# HistoryName allows you to specify the name of the history file produced
-# by the Webalizer. The history file keeps the data for previous months,
-# and is used for generating the main HTML page (index.html). The default
-# is a file named "webalizer.hist", stored in the output directory being
-# used. The name can include a path, which will be relative to the output
-# directory unless absolute (starts with a leading '/').
-
-#HistoryName webalizer.hist
-
-# Incremental processing allows multiple partial log files to be used
-# instead of one huge one. Useful for large sites that have to rotate
-# their log files more than once a month. The Webalizer will save its
-# internal state before exiting, and restore it the next time run, in
-# order to continue processing where it left off. This mode also causes
-# The Webalizer to scan for and ignore duplicate records (records already
-# processed by a previous run). See the README file for additional
-# information. The value may be 'yes' or 'no', with a default of 'no'.
-# The file 'webalizer.current' is used to store the current state data,
-# and is located in the output directory of the program (unless changed
-# with the IncrementalName option below). Please read at least the section
-# on Incremental processing in the README file before you enable this option.
-
-Incremental yes
-
-# IncrementalName allows you to specify the filename for saving the
-# incremental data in. It is similar to the HistoryName option where the
-# name is relative to the specified output directory, unless an absolute
-# filename is specified. The default is a file named "webalizer.current"
-# kept in the normal output directory. If you don't specify "Incremental"
-# as 'yes' then this option has no meaning.
-
-#IncrementalName webalizer.current
-
-# ReportTitle is the text to display as the title. The hostname
-# (unless blank) is appended to the end of this string (separated with
-# a space) to generate the final full title string.
-# Default is (for english) "Usage Statistics for".
-
-ReportTitle Usage Statistics for
-
-# HostName defines the hostname for the report. This is used in
-# the title, and is prepended to the URL table items. This allows
-# clicking on URLs in the report to go to the proper location in
-# the event you are running the report on a 'virtual' web server,
-# or for a server different than the one the report resides on.
-# If not specified here, or on the command line, webalizer will
-# try to get the hostname via a uname system call. If that fails,
-# it will default to "localhost".
-
-HostName www.__DOMAIN__
-
-# HTMLExtension allows you to specify the filename extension to use
-# for generated HTML pages. Normally, this defaults to "html", but
-# can be changed for sites who need it (like for PHP embeded pages).
-
-#HTMLExtension html
-
-# PageType lets you tell the Webalizer what types of URLs you
-# consider a 'page'. Most people consider html and cgi documents
-# as pages, while not images and audio files. If no types are
-# specified, defaults will be used ('htm*', 'cgi' and HTMLExtension
-# if different for web logs, 'txt' for ftp logs).
-
-PageType htm*
-PageType cgi
-#PageType phtml
-PageType php3
-#PageType pl
-PageType php
-
-# PagePrefix allows all requests with a specified prefix to be
-# considered as 'pages'. If you want everything under /documents
-# to be treated as pages no matter what their extension is. Also
-# useful if you have cgi-scripts with PATH_INFO.
-
-#PagePrefix /documents
-#PagePrefix /mycgi/parameters
-
-# OmitPage lets you tell the Webalizer that certain URLs do not
-# contain any pages. No URL matching an OmitPage value will be
-# counted as a page, even if it matches a PageType above or has
-# no extension (e.g., a directory). They will still be counted
-# as a hit.
-
-#OmitPage /render
-
-# UseHTTPS should be used if the analysis is being run on a
-# secure server, and links to urls should use 'https://' instead
-# of the default 'http://'. If you need this, set it to 'yes'.
-# Default is 'no'. This only changes the behaviour of the 'Top
-# URLs' table.
-
-UseHTTPS yes
-
-# HTAccess allows the generation of a default .htaccess file in the
-# output directory. If enabled, a default .htaccess file will be
-# created (with a single "DirectoryIndex" directive), unless one
-# already exists. Values may be 'yes' or 'no', with 'no'
-# being the default (don't write .htaccess files).
-
-#HTAccess no
-
-# StripCGI determines if URL CGI variables should be striped or not.
-# Historically, the Webalizer stripped all CGI variables from the end
-# of URLs to improve accuracy. Some sites may prefer to keep the CGI
-# variables in place, particularly those with highly dynamic pages.
-# Values may be 'yes' or 'no', with the default being 'yes'.
-
-#StripCGI yes
-
-# The TrimSquidURL option only has effect on squid type log files.
-# When analyzing a squid log, it is usually desirable to have less
-# granularity on the URLs. TrimSquidURL = n where n is a number > 0
-# causes all URLs to be truncated after the nth '/' after the http://
-# portion. Setting TrimSquidURL to one (1) will cause all URLs to be
-# summarized by domain only. The default is zero (0), which disables
-# any such truncation and preserve the URLs as they are in the log.
-
-# TrimSquidURL 0
-
-# DNSCache specifies the DNS cache filename to use for reverse DNS lookups.
-# This file must be specified if you wish to perform name lookups on any IP
-# addresses found in the log file. If an absolute path is not given as
-# part of the filename (ie: starts with a leading '/'), then the name is
-# relative to the default output directory. See the DNS.README file for
-# additional information.
-
-#DNSCache dns_cache.db
-
-# DNSChildren allows you to specify how many "children" processes are
-# run to perform DNS lookups to create or update the DNS cache file.
-# If a number is specified, the DNS cache file will be created/updated
-# each time the Webalizer is run, immediately prior to normal processing,
-# by running the specified number of "children" processes to perform
-# DNS lookups. If used, the DNS cache filename MUST be specified as
-# well. The default value is zero (0), which disables DNS cache file
-# creation/updates at run time. The number of children processes to
-# run may be anywhere from 1 to 100, however a large number may affect
-# normal system operations. Reasonable values should be between 5 and
-# 20. See the DNS.README file for additional information.
-
-#DNSChildren 0
-
-# CacheIPs allows unresolved IP addresses to be cached in the DNS
-# database. Normally, only resolved addresses are saved. At some
-# sites, particularly those with a large number of unresolvable IP
-# addresses visiting, it may be useful to enable this feature so
-# those addresses are not constantly looked up each time the program
-# is run. Values can be 'yes' or 'no', with 'no' being the default.
-
-#CacheIPs no
-
-# CacheTTL specifies the time to live (TTL) value for cached DNS
-# entries, in days. This value may be anywhere between 1 and 100
-# with the default being 7 days (1 week).
-
-#CacheTTL 7
-
-# The GeoDB option enables or disabled the use of the native
-# Webalizer GeoDB geolocation services. This is the preferred
-# geolocation option. Values may be 'yes' or 'no', with 'no'
-# being the default.
-
-GeoDB yes
-
-# GeoDBDatabase specifies an alternate database to use. The
-# default database is /usr/share/GeoDB/GeoDB.dat (however the
-# path may be changed at compile time; use the -vV command
-# line option to determine where). If a different database is
-# to be used, it may be specified here. The name is relative
-# to the output directory being used unless an absolute name
-# (ie: starts with a leading '/') is specified.
-
-#GeoDBDatabase /usr/share/GeoDB/GeoDB.dat
-
-# The GeoIP option enables or disables the use of geolocation
-# services provided by the GeoIP library (http://www.maxmind.com),
-# if available. Values may be 'yes' or 'no, with 'no' being the
-# default. Note: if GeoDB is enabled, then this option will have
-# no effect (GeoDB will be used regardless of this setting).
-
-#GeoIP no
-
-# GeoIPDatabase specifies an alternate database filename to use by the
-# GeoIP library. If an absolute path is not given as part of the name
-# (ie: starts with a leading '/'), then the name is relative to the
-# default output directory. This option should not normally be needed.
-
-#GeoIPDatabase /usr/share/GeoIP/GeoIP.dat
-
-# HTMLPre defines HTML code to insert at the very beginning of the
-# file. Default is the DOCTYPE line shown below. Max line length
-# is 80 characters, so use multiple HTMLPre lines if you need more.
-
-#HTMLPre <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-
-# HTMLHead defines HTML code to insert within the <HEAD></HEAD>
-# block, immediately after the <TITLE> line. Maximum line length
-# is 80 characters, so use multiple lines if needed.
-
-#HTMLHead <META NAME="author" CONTENT="The Webalizer">
-#HTMLHead <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
-
-# HTMLBody defined the HTML code to be inserted, starting with the
-# <BODY> tag. If not specified, the default is shown below. If
-# used, you MUST include your own <BODY> tag as the first line.
-# Maximum line length is 80 char, use multiple lines if needed.
-
-#HTMLBody <BODY BGCOLOR="#E8E8E8" TEXT="#000000" LINK="#0000FF" VLINK="#FF0000">
-
-# HTMLPost defines the HTML code to insert immediately before the
-# first <HR> on the document, which is just after the title and
-# "summary period"-"Generated on:" lines. If anything, this should
-# be used to clean up in case an image was inserted with HTMLBody.
-# As with HTMLHead, you can define as many of these as you want and
-# they will be inserted in the output stream in order of apperance.
-# Max string size is 80 characters. Use multiple lines if you need to.
-
-#HTMLPost <BR CLEAR="all">
-
-# HTMLTail defines the HTML code to insert at the bottom of each
-# HTML document, usually to include a link back to your home
-# page or insert a small graphic. It is inserted as a table
-# data element (ie: <TD> your code here </TD>) and is right
-# alligned with the page. Max string size is 80 characters.
-
-#HTMLTail <IMG SRC="msfree.png" ALT="100% Micro$oft free!">
-
-# HTMLEnd defines the HTML code to add at the very end of the
-# generated files. It defaults to what is shown below. If
-# used, you MUST specify the </BODY> and </HTML> closing tags
-# as the last lines. Max string length is 80 characters.
-
-#HTMLEnd </BODY></HTML>
-
-# The LinkReferrer option determines if entries in the referrer table
-# should be plain text or a HTML link to the referrer. Values can be
-# either 'yes' or 'no', with 'no' being the default.
-
-#LinkReferrer no
-
-# The Quiet option suppresses output messages... Useful when run
-# as a cron job to prevent bogus e-mails. Values can be either
-# "yes" or "no". Default is "no". Note: this does not suppress
-# warnings and errors (which are printed to stderr).
-
-#Quiet no
-
-# ReallyQuiet will supress all messages including errors and
-# warnings. Values can be 'yes' or 'no' with 'no' being the
-# default. If 'yes' is used here, it cannot be overriden from
-# the command line, so use with caution. A value of 'no' has
-# no effect.
-
-#ReallyQuiet no
-
-# TimeMe allows you to force the display of timing information
-# at the end of processing. A value of 'yes' will force the
-# timing information to be displayed. A value of 'no' has no
-# effect.
-
-#TimeMe no
-
-# GMTTime allows reports to show GMT (UTC) time instead of local
-# time. Default is to display the time the report was generated
-# in the timezone of the local machine, such as EDT or PST. This
-# keyword allows you to have times displayed in UTC instead. Use
-# only if you really have a good reason, since it will probably
-# screw up the reporting periods by however many hours your local
-# time zone is off of GMT.
-
-#GMTTime no
-
-# Debug prints additional information for error messages. This
-# will cause webalizer to dump bad records/fields instead of just
-# telling you it found a bad one. As usual, the value can be
-# either "yes" or "no". The default is "no". It shouldn't be
-# needed unless you start getting a lot of Warning or Error
-# messages and want to see why. (Note: warning and error messages
-# are printed to stderr, not stdout like normal messages).
-
-#Debug no
-
-# FoldSeqErr forces the Webalizer to ignore sequence errors.
-# This is useful for Netscape and other web servers that cache
-# the writing of log records and do not guarentee that they
-# will be in chronological order. The use of the FoldSeqErr
-# option will cause out of sequence log records to be treated
-# as if they had the same time stamp as the last valid record.
-# Default is to ignore out of sequence log records. The use
-# of this feature is strongly discouraged and rarely needed.
-# (the webalizer already compensates for up to 60 minutes of
-# difference between records).
-
-#FoldSeqErr no
-
-# VisitTimeout allows you to set the default timeout for a visit
-# (sometimes called a 'session'). The default is 30 minutes,
-# which should be fine for most sites.
-# Visits are determined by looking at the time of the current
-# request, and the time of the last request from the site. If
-# the time difference is greater than the VisitTimeout value, it
-# is considered a new visit, and visit totals are incremented.
-# Value is the number of seconds to timeout (default=1800=30min)
-
-#VisitTimeout 1800
-
-# IgnoreHist shouldn't be used in a config file, but it is here
-# just because it might be usefull in certain situations. If the
-# history file is ignored, the main "index.html" file will only
-# report on the current log files contents. Usefull only when you
-# want to reproduce the reports from scratch. USE WITH CAUTION!
-# Valid values are "yes" or "no". Default is "no".
-
-#IgnoreHist no
-
-# IgnoreState also shouldn't be used, but is here anyway. It is
-# similar to the IgnoreHist option, but for the incremental data
-# file. If this is set to 'yes', any existing incremental data
-# will be ignored and a new data file will be written at the end
-# of processing. USE WITH CAUTION. By ignoring an existing
-# incremental data file, all previous processing for the current
-# month will be lost, and those logs must be re-processed.
-# Valid values are "yes" or "no". Default is "no".
-
-#IgnoreState no
-
-# CountryGraph allows the usage by country graph to be disabled.
-# Values can be 'yes' or 'no', default is 'yes'.
-
-#CountryGraph yes
-
-# CountryFlags allows flags to be displayed in the top country
-# table in monthly reports. Values can be 'yes' or 'no', with
-# the default being 'no'.
-
-#CountryFlags no
-
-# FlagDir specifies the location of flag graphics which will be
-# used in the top country table. If not specified, the default
-# is to look in the 'flags' directory directly under the output
-# directory being used for the reports. If this option is used,
-# the display of flag graphics will be enabled by default.
-
-#FlagDir flags
-
-# DailyGraph and DailyStats allows the daily statistics graph
-# and statistics table to be disabled (not displayed). Values
-# may be "yes" or "no". Default is "yes".
-
-#DailyGraph yes
-#DailyStats yes
-
-# HourlyGraph and HourlyStats allows the hourly statistics graph
-# and statistics table to be disabled (not displayed). Values
-# may be "yes" or "no". Default is "yes".
-
-#HourlyGraph yes
-#HourlyStats yes
-
-# GraphLegend allows the color coded legends to be turned on or off
-# in the graphs. The default is for them to be displayed. This only
-# toggles the color coded legends, the other legends are not changed.
-# If you think they are hideous and ugly, say 'no' here :)
-
-#GraphLegend yes
-
-# GraphLines allows you to have index lines drawn behind the graphs.
-# I personally am not crazy about them, but a lot of people requested
-# them and they weren't a big deal to add. The number represents the
-# number of lines you want displayed. Default is 2, you can disable
-# the lines by using a value of zero ('0'). [max is 20]
-# Note, due to rounding errors, some values don't work quite right.
-# The lower the better, with 1,2,3,4,6 and 10 producing nice results.
-
-#GraphLines 2
-
-# IndexMonths defines the number of months to display in the main index
-# (yearly summary) table. Value can be between 12 and 120, with the
-# default being 12 months (1 year).
-
-#IndexMonths 12
-
-# YearHeaders enables/disables the display of year headers in the main
-# index (yearly summary) table. If enabled, year headers will be shown
-# when the table is displaying more than 16 months worth of data. Values
-# can be 'yes' or 'no', with 'yes' being the default.
-
-#YearHeaders yes
-
-# YearTotals enables/disables the display of yearly totals in the main
-# index (yearly summary) table. If enabled, year totals will be shown
-# when the table is displaying more than 16 months worth of data. Values
-# can be 'yes' or 'no', with 'yes' being the default.
-
-#YearTotals yes
-
-# GraphMonths defines the number of months to display in the main index
-# (yearly summary) graph. Value can be between 12 and 72 months, with
-# the default being 12 months.
-
-#GraphMonths 12
-
-# Enable Input Output data as reported by apache_logio module.
-# Note for this to work you need the following in your apache configuration
-# LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
-# CustomLog /var/log/apache2/access.log combinedio
-# webalizer can try to be smart and detect whether your log contains logio
-# information or not, to enable this use the 'auto' value.
-# Values can be 'yes','no' or 'auto', the later being the default.
-#
-
-#InOutkB auto
-
-# The "Top" options below define the number of entries for each table.
-# Defaults are Sites=30, URLs=30, Referrers=30 and Agents=15, and
-# Countries=30. TopKSites and TopKURLs (by KByte tables) both default
-# to 10, as do the top entry/exit tables (TopEntry/TopExit). The top
-# search strings and usernames default to 20. Tables may be disabled
-# by using zero (0) for the value.
-
-#TopSites 30
-#TopKSites 10
-#TopURLs 30
-#TopKURLs 10
-#TopReferrers 30
-#TopAgents 15
-#TopCountries 30
-#TopEntry 10
-#TopExit 10
-#TopSearch 20
-#TopUsers 20
-
-# The All* keywords allow the display of all URLs, Sites, Referrers
-# User Agents, Search Strings and Usernames. If enabled, a separate
-# HTML page will be created, and a link will be added to the bottom
-# of the appropriate "Top" table. There are a couple of conditions
-# for this to occur.. First, there must be more items than will fit
-# in the "Top" table (otherwise it would just be duplicating what is
-# already displayed). Second, the listing will only show those items
-# that are normally visable, which means it will not show any hidden
-# items. Grouped entries will be listed first, followed by individual
-# items. The value for these keywords can be either 'yes' or 'no',
-# with the default being 'no'. Please be aware that these pages can
-# be quite large in size, particularly the sites page, and separate
-# pages are generated for each month, which can consume quite a lot
-# of disk space depending on the traffic to your site.
-
-#AllSites no
-#AllURLs no
-#AllReferrers no
-#AllAgents no
-#AllSearchStr no
-#AllUsers no
-
-# The Webalizer normally strips the string 'index.' off the end of
-# URLs in order to consolidate URL totals. For example, the URL
-# /somedir/index.html is turned into /somedir/ which is really the
-# same URL. This option allows you to specify additional strings
-# to treat in the same way. You don't need to specify 'index.' as
-# it is always scanned for by The Webalizer, this option is just to
-# specify _additional_ strings if needed. If you don't need any,
-# don't specify any as each string will be scanned for in EVERY
-# log record... A bunch of them will degrade performance. Also,
-# the string is scanned for anywhere in the URL, so a string of
-# 'home' would turn the URL /somedir/homepages/brad/home.html into
-# just /somedir/ which is probably not what was intended.
-
-#IndexAlias home.htm
-#IndexAlias homepage.htm
-
-# The DefaultIndex option is used to enable/disable the use of
-# "index." as the default index name to be stripped off the end of
-# a URL (as described above). Most sites will not need to use this
-# option, but some may, such as those whose default index file name
-# is different, or those that use "index.php" or similar URLs in a
-# dynamic environment. Values can be 'yes' or 'no', with the default
-# being 'yes'. This option does not effect any names added using the
-# IndexAlias option, and those names will still function as described
-# regardless of this setting.
-
-#DefaultIndex yes
-
-# The Hide*, Group* and Ignore* and Include* keywords allow you to
-# change the way Sites, URLs, Referrers, User Agents and Usernames
-# are manipulated. The Ignore* keywords will cause The Webalizer to
-# completely ignore records as if they didn't exist (and thus not
-# counted in the main site totals). The Hide* keywords will prevent
-# things from being displayed in the 'Top' tables, but will still be
-# counted in the main totals. The Group* keywords allow grouping
-# similar objects as if they were one. Grouped records are displayed
-# in the 'Top' tables and can optionally be displayed in BOLD and/or
-# shaded. Groups cannot be hidden, and are not counted in the main
-# totals. The Group* options do not, by default, hide all the items
-# that it matches. If you want to hide the records that match (so just
-# the grouping record is displayed), follow with an identical Hide*
-# keyword with the same value. (see example below) In addition,
-# Group* keywords may have an optional label which will be displayed
-# instead of the keywords value. The label should be separated from
-# the value by at least one 'white-space' character, such as a space
-# or tab. If the match string contains whitespace (spaces or tabs),
-# the string should be quoted with either single or double quotes.
-#
-# The value can have either a leading or trailing '*' wildcard
-# character. If no wildcard is found, a match can occur anywhere
-# in the string. Given a string "www.yourmama.com", the values "your",
-# "*mama.com" and "www.your*" will all match.
-
-# Your own site should be hidden
-#HideSite *webalizer.org
-#HideSite localhost
-
-# Your own site gives most referrals
-#HideReferrer webalizer.org/
-
-# This one hides non-referrers ("-" Direct requests)
-#HideReferrer Direct Request
-
-# Usually you want to hide these
-HideURL *.gif
-HideURL *.GIF
-HideURL *.jpg
-HideURL *.JPG
-HideURL *.png
-HideURL *.PNG
-HideURL *.ra
-
-# Hiding agents is kind of futile
-#HideAgent RealPlayer
-
-# You can also hide based on authenticated username
-#HideUser root
-#HideUser admin
-
-# Grouping options
-#GroupURL /cgi-bin/* CGI Scripts
-#GroupURL /images/* Images
-
-#GroupSite *.aol.com
-#GroupSite *.compuserve.com
-
-#GroupReferrer yahoo.com/ Yahoo!
-#GroupReferrer excite.com/ Excite
-#GroupReferrer infoseek.com/ InfoSeek
-#GroupReferrer webcrawler.com/ WebCrawler
-
-#GroupUser root Admin users
-#GroupUser admin Admin users
-#GroupUser wheel Admin users
-
-# The following is a great way to get an overall total
-# for browsers, and not display all the detail records.
-# (You should use MangleAgent to refine further...)
-
-#GroupAgent Opera/ Opera
-#HideAgent Opera/
-#GroupAgent "MSIE 7" Microsoft Internet Exploder 7
-#HideAgent MSIE 7
-#GroupAgent "MSIE 6" Microsoft Internet Exploder 6
-#HideAgent MSIE 6
-#GroupAgent "MSIE " Older Microsoft Exploders
-#HideAgent MSIE
-#GroupAgent Firefox/2. Firefox 2
-#HideAgent Firefox/2.
-#GroupAgent Firefox/1. Firefox 1.x
-#HideAgent Firefox/1.
-#GroupAgent Konqueror Konqueror
-#HideAgent Konqueror
-#GroupAgent Safari Safari
-#HideAgent Safari
-#GroupAgent Lynx* Lynx
-#HideAgent Lynx*
-#GroupAgent Wget/ WGet
-#HideAgent Wget/
-#GroupAgent (compatible; Other Mozilla Compatibles
-#HideAgent (compatible;
-#GroupAgent Mozilla* Mozilla/Netscape
-#HideAgent Mozilla*
-
-# HideAllSites allows forcing individual sites to be hidden in the
-# report. This is particularly useful when used in conjunction
-# with the "GroupDomain" feature, but could be useful in other
-# situations as well, such as when you only want to display grouped
-# sites (with the GroupSite keywords...). The value for this
-# keyword can be either 'yes' or 'no', with 'no' the default,
-# allowing individual sites to be displayed.
-
-#HideAllSites no
-
-# The GroupDomains keyword allows you to group individual hostnames
-# into their respective domains. The value specifies the level of
-# grouping to perform, and can be thought of as 'the number of dots'
-# that will be displayed. For example, if a visiting host is named
-# cust1.tnt.mia.uu.net, a domain grouping of 1 will result in just
-# "uu.net" being displayed, while a 2 will result in "mia.uu.net".
-# The default value of zero disable this feature. Domains will only
-# be grouped if they do not match any existing "GroupSite" records,
-# which allows overriding this feature with your own if desired.
-
-#GroupDomains 0
-
-# The GroupShading allows grouped rows to be shaded in the report.
-# Useful if you have lots of groups and individual records that
-# intermingle in the report, and you want to diferentiate the group
-# records a little more. Value can be 'yes' or 'no', with 'yes'
-# being the default.
-
-#GroupShading yes
-
-# GroupHighlight allows the group record to be displayed in BOLD.
-# Can be either 'yes' or 'no' with the default 'yes'.
-
-#GroupHighlight yes
-
-# The Ignore* keywords allow you to completely ignore log records based
-# on hostname, URL, user agent, referrer or username. I hesitated in
-# adding these, since the Webalizer was designed to generate _accurate_
-# statistics about a web servers performance. By choosing to ignore
-# records, the accuracy of reports become skewed, negating why I wrote
-# this program in the first place. However, due to popular demand, here
-# they are. Use the same as the Hide* keywords, where the value can have
-# a leading or trailing wildcard '*'. Use at your own risk ;) Please
-# remember, the use of these will MAKE YOUR STATS INACCURATE and you
-# should consider using an equivalent 'Hide*' keyword instead.
-
-#IgnoreSite bad.site.net
-IgnoreSite localhost
-#IgnoreURL /test*
-#IgnoreReferrer file:/*
-IgnoreReferrer localhost
-#IgnoreAgent RealPlayer
-#IgnoreUser root
-
-# The Include* keywords allow you to force the inclusion of log records
-# based on hostname, URL, user agent, referrer or username. They take
-# precidence over the Ignore* keywords. Note: Using Ignore/Include
-# combinations to selectivly process parts of a web site is _extremely
-# inefficent_!!! Avoid doing so if possible (ie: grep the records to a
-# separate file if you really want that kind of report).
-
-# Example: Only show stats on Joe User's pages...
-#IgnoreURL *
-#IncludeURL ~joeuser*
-
-# Or based on an authenticated username
-#IgnoreUser *
-#IncludeUser someuser
-
-# The MangleAgents allows you to specify how much, if any, The Webalizer
-# should mangle user agent names. This allows several levels of detail
-# to be produced when reporting user agent statistics. There are six
-# levels that can be specified, which define different levels of detail
-# supression. Level 5 shows only the browser name (MSIE or Mozilla)
-# and the major version number. Level 4 adds the minor version number
-# (single decimal place). Level 3 displays the minor version to two
-# decimal places. Level 2 will add any sub-level designation (such
-# as Mozilla/3.01Gold or MSIE 3.0b). Level 1 will attempt to also add
-# the system type if it is specified. The default Level 0 displays the
-# full user agent field without modification and produces the greatest
-# amount of detail. User agent names that can't be mangled will be
-# left unmodified.
-
-#MangleAgents 0
-
-# The SearchEngine keywords allow specification of search engines and
-# their query strings on the URL. These are used to locate and report
-# what search strings are used to find your site. The first word is
-# a substring to match in the referrer field that identifies the search
-# engine, and the second is the URL variable used by that search engine
-# to define its search terms.
-
-SearchEngine .google. q=
-SearchEngine yahoo.com p=
-SearchEngine altavista.com q=
-SearchEngine aolsearch. query=
-SearchEngine ask.co q=
-SearchEngine eureka.com q=
-SearchEngine lycos.com query=
-SearchEngine hotbot.com MT=
-SearchEngine msn.com q=
-SearchEngine infoseek.com qt=
-SearchEngine excite search=
-SearchEngine netscape.com query=
-SearchEngine mamma.com query=
-SearchEngine alltheweb.com q=
-SearchEngine northernlight.com qr=
-SearchEngine sensis.com.au find=
-
-# Normally, search strings are converted to lower case in order to
-# increase accuracy. The SearchCaseI option allows them to maintain
-# case sensitivity, useful for some sites. The value can be 'yes'
-# or 'no', with 'yes' (case insensitive) being the default.
-
-#SearchCaseI yes
-
-# The Dump* keywords allow the dumping of Sites, URLs, Referrers
-# User Agents, Usernames and Search strings to separate tab delimited
-# text files, suitable for import into most database or spreadsheet
-# programs.
-
-# DumpPath specifies the path to dump the files. If not specified,
-# it will default to the current output directory. Do not use a
-# trailing slash ('/').
-
-#DumpPath /var/lib/httpd/logs
-
-# The DumpHeader keyword specifies if a header record should be
-# written to the file. A header record is the first record of the
-# file, and contains the labels for each field written. Normally,
-# files that are intended to be imported into a database system
-# will not need a header record, while spreadsheets usually do.
-# Value can be either 'yes' or 'no', with 'no' being the default.
-
-#DumpHeader no
-
-# DumpExtension allow you to specify the dump filename extension
-# to use. The default is "tab", but some programs are pickey about
-# the filenames they use, so you may change it here (for example,
-# some people may prefer to use "csv").
-
-#DumpExtension tab
-
-# These control the dumping of each individual table. The value
-# can be either 'yes' or 'no'.. the default is 'no'.
-
-#DumpSites no
-#DumpURLs no
-#DumpReferrers no
-#DumpAgents no
-#DumpUsers no
-#DumpSearchStr no
-
-# The custom graph colors are defined here. Declare them
-# in the standard hexadecimal way (as HTML, without the '#')
-# If none are given, you will get the standard default colors.
-
-#ColorHit 00805c
-#ColorFile 0040ff
-#ColorSite ff8000
-#ColorKbyte ff0000
-#ColorIKbyte 0080ff
-#ColorOKbyte 00e000
-#ColorPage 00e0ff
-#ColorVisit ffff00
-#ColorMisc 00e0ff
-
-#PieColor1 800080
-#PieColor2 80ffc0
-#PieColor3 ff00ff
-#PieColor4 ffc080
-
-# TrueTypeFont makes possible to replace GD built-in font by
-# specified TrueTypeFont.
-# The value can be '/path/to/your/true_type_font.file' or empty.
-# If value is empty(or commented out), GD built-in font will be used.
-# The default is empty.
-# (Supplement for Japanese:
-# Under EUC-JP locale, TTF file must be specified which has *Windows
-# Shift-JIS encoding*. This limitation is derived from libgd.
-# e.g. you can use "/usr/share/fonts/truetype/X-TT/wadalab-gothic.ttf"
-# provided by ttf-xtt-wadalab-gothic package)
-
-#TrueTypeFont
-
-# End of configuration file... Have a nice day!
+++ /dev/null
-<?php
-# This file was automatically generated by the MediaWiki 1.42.1
-# installer. If you make manual changes, please keep track in case you
-# need to recreate them later.
-#
-# See includes/MainConfigSchema.php for all configurable settings
-# and their default values, but don't forget to make changes in _this_
-# file, not there.
-#
-# Further documentation for configuration settings may be found at:
-# https://www.mediawiki.org/wiki/Manual:Configuration_settings
-
-# Protect against web entry
-if ( !defined( 'MEDIAWIKI' ) ) {
- exit;
-}
-
-
-
-
-## Uncomment this to disable output compression
-# $wgDisableOutputCompression = true;
-
-$wgSitename = 'LaktatWiki';
-
-## The URL base path to the directory containing the wiki;
-## defaults for all runtime URL paths are based off of this.
-## For more information on customizing the URLs
-## (like /w/index.php/Page_title to /wiki/Page_title) please see:
-## https://www.mediawiki.org/wiki/Manual:Short_URL
-$wgScriptPath = '';
-
-## The protocol and server name to use in fully-qualified URLs
-$wgServer = 'https://wiki.triathlon-coaching.com';
-
-## The URL path to static resources (images, scripts, etc.)
-$wgResourceBasePath = $wgScriptPath;
-
-## The URL paths to the logo. Make sure you change this from the default,
-## or else you'll overwrite your logo when you upgrade!
-$wgLogos = [
- '1x' => "$wgResourceBasePath/resources/assets/change-your-logo.svg",
- 'icon' => "$wgResourceBasePath/resources/assets/change-your-logo.svg",
-];
-
-## UPO means: this is also a user preference option
-
-$wgEnableEmail = true;
-$wgEnableUserEmail = true; # UPO
-
-$wgEmergencyContact = '';
-$wgPasswordSender = '';
-
-$wgEnotifUserTalk = false; # UPO
-$wgEnotifWatchlist = false; # UPO
-$wgEmailAuthentication = true;
-
-## Database settings
-$wgDBtype = 'postgres';
-$wgDBserver = 'localhost';
-$wgDBname = 'my_wiki';
-$wgDBuser = 'wikiuser';
-$wgDBpassword = 'TuKhScdLG\$9x3X\$F';
-
-# Postgres specific settings
-$wgDBport = "5432";
-$wgDBssl = false;
-$wgDBmwschema = "mediawiki";
-
-# Shared database table
-# This has no effect unless $wgSharedDB is also set.
-$wgSharedTables[] = "actor";
-
-## Shared memory settings
-$wgMainCacheType = CACHE_NONE;
-$wgMemCachedServers = [];
-
-## To enable image uploads, make sure the 'images' directory
-## is writable, then set this to true:
-$wgEnableUploads = true;
-#$wgUseImageMagick = true;
-#$wgImageMagickConvertCommand = '/usr/bin/convert';
-
-# InstantCommons allows wiki to use images from https://commons.wikimedia.org
-$wgUseInstantCommons = false;
-
-# Periodically send a pingback to https://www.mediawiki.org/ with basic data
-# about this MediaWiki instance. The Wikimedia Foundation shares this data
-# with MediaWiki developers to help guide future development efforts.
-$wgPingback = true;
-
-# Site language code, should be one of the list in ./includes/languages/data/Names.php
-$wgLanguageCode = 'de';
-
-# Time zone
-$wgLocaltimezone = 'UTC';
-
-## Set $wgCacheDirectory to a writable directory on the web server
-## to make your wiki go slightly faster. The directory should not
-## be publicly accessible from the web.
-#$wgCacheDirectory = "$IP/cache";
-
-$wgSecretKey = '4546fbfb723fdc1b3c7426562d56e57ab08250f158cf83d21a58047561bb16ec';
-
-# Changing this will log out all existing sessions.
-$wgAuthenticationTokenVersion = '1';
-
-# Site upgrade key. Must be set to a string (default provided) to turn on the
-# web installer while LocalSettings.php is in place
-$wgUpgradeKey = '6b32525d4a862838';
-
-## For attaching licensing metadata to pages, and displaying an
-## appropriate copyright notice / icon. GNU Free Documentation
-## License and Creative Commons licenses are supported so far.
-$wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
-$wgRightsUrl = '';
-$wgRightsText = '';
-$wgRightsIcon = "";
-
-# Path to the GNU diff3 utility. Used for conflict resolution.
-$wgDiff3 = '/usr/bin/diff3';
-
-# The following permissions were set based on your choice in the installer
-$wgGroupPermissions['*']['createaccount'] = false;
-$wgGroupPermissions['*']['edit'] = false;
-$wgGroupPermissions['*']['read'] = false;
-
-## Default skin: you can change the default skin. Use the internal symbolic
-## names, e.g. 'vector' or 'monobook':
-$wgDefaultSkin = 'minervaneue';
-
-# Enabled skins.
-# The following skins were automatically enabled:
-wfLoadSkin( 'MinervaNeue' );
-wfLoadSkin( 'MonoBook' );
-wfLoadSkin( 'Timeless' );
-wfLoadSkin( 'Vector' );
-
-
-# Enabled extensions. Most of the extensions are enabled by adding
-# wfLoadExtension( 'ExtensionName' );
-# to LocalSettings.php. Check specific extension documentation for more details.
-# The following extensions were automatically enabled:
-wfLoadExtension( 'CategoryTree' );
-wfLoadExtension( 'Cite' );
-wfLoadExtension( 'CiteThisPage' );
-wfLoadExtension( 'CodeEditor' );
-wfLoadExtension( 'Math' );
-wfLoadExtension( 'MultimediaViewer' );
-wfLoadExtension( 'PageImages' );
-wfLoadExtension( 'SyntaxHighlight_GeSHi' );
-wfLoadExtension( 'VisualEditor' );
-wfLoadExtension( 'WikiEditor' );
-
-
-# End of automatically generated settings.
-# Add more configuration options below.
-
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>oleb</owner>
- <name>laktatnebel</name>
- <tld>de</tld>
- <connection>2015-05-18</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>webalizer</name>
- <descr>Webalizer</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>cal</name>
- <descr>Davical</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# Davical
- DirectoryIndex index.php index.html
-
- Alias /images/ /var/www/laktatnebel.de/cal/images/
- AcceptPathInfo On
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>wiki</name>
- <descr>Wiki WackoWiki</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# WackoWiki
- DirectoryIndex index.php index.html
-
- LoadModule rewrite_module modules/mod_rewrite.so
- ]]></virtualhost>
- <directory><![CDATA[
- Options FollowSymlinks
- AllowOverride all
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>repo</name>
- <descr>Maven-Repository</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>git</name>
- <descr>GIT</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>ticket</name>
- <descr>Ticket</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>cloud</name>
- <descr>Cloudspace</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>phpmyadmin</name>
- <descr>phpMyAdmin</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>phppgadmin</name>
- <descr>phpPgAdmin</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>tools</name>
- <descr>Admin-Tools</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>eval</name>
- <descr>Evaluation</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>swim</name>
- <descr>Swim-Tools</descr>
- <realm>false</realm>
- <serveralias>swim.triathlon-coaching.com</serveralias>
- </subdomain>
- </domain>
- <domain>
- <owner>oleb</owner>
- <name>triathlon-coaching</name>
- <tld>com</tld>
- <connection>2023-04-30</connection>
- <dkim>v=DKIM1; h=sha256; k=rsa;
- p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDJ2QMawri3618NYRR6+O6rPY8MKqbftxYw0IJ8slVX6zzqd4dmq1BmmDt4dNUnXLhnaEK4LiZn63G62EyYMw5MzHYMKD2G4lnsTPYHWX4llcYrEeie73ltKc2wG1V65Qeteay2MrXOIBoGm/v8FW0mQJ227arf+RSwKokd3a/xRwIDAQAB</dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>webalizer</name>
- <descr>Webalizer</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>cal</name>
- <descr>Davical</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# Davical
- DirectoryIndex index.php index.html
-
- Alias /images/ /var/www/laktatnebel.de/cal/images/
- AcceptPathInfo On
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>wiki</name>
- <descr>Wiki WackoWiki</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# WackoWiki
- DirectoryIndex index.php index.html
-
- LoadModule rewrite_module modules/mod_rewrite.so
- ]]></virtualhost>
- <directory><![CDATA[
- Options FollowSymlinks
- AllowOverride all
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>calsheet</name>
- <descr>AgenDAV</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# AgenDAV
- DirectoryIndex index.php index.html
-
- <Location />
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [QSA,L]
- </Location>
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>phpmyadmin</name>
- <descr>phpMyAdmin</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>phppgadmin</name>
- <descr>phpPgAdmin</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>tools</name>
- <descr>Admin-Tools</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>swim</name>
- <descr>Swim-Tools</descr>
- <realm>false</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
- <domain>
- <owner>oleb</owner>
- <name>ole-b-rosentreter</name>
- <tld>de</tld>
- <connection>2016-12-07</connection>
- <dkim></dkim>
- <subdomain>
- <name>calsheet</name>
- <descr>AgenDAV</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# AgenDAV
- DirectoryIndex index.php index.html
-
- <Location />
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [QSA,L]
- </Location>
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>ebay</name>
- <descr>Ebay Webspace</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
- <domain>
- <owner>oleb</owner>
- <name>wechselzonenluder</name>
- <tld>de</tld>
- <connection>2018-09-09</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>webalizer</name>
- <descr>Webalizer</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
- <domain>
- <owner>oleb</owner>
- <name>anita-ole</name>
- <tld>de</tld>
- <connection>2022-10-16</connection>
- <dkim></dkim>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <acls>anita</acls>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>calsheet</name>
- <descr>AgenDAV</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# AgenDAV
- DirectoryIndex index.php index.html
-
- <Location />
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [QSA,L]
- </Location>
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>cloud</name>
- <descr>Cloudspace</descr>
- <realm>true</realm>
- <acls>anita</acls>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
- <domain>
- <owner>oleb</owner>
- <name>coach-4-you</name>
- <tld>com</tld>
- <connection>2017-04-14</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <serveralias>www.triathlon-coaching.com</serveralias>
- </subdomain>
- </domain>
- <domain>
- <owner>oleb</owner>
- <name>coaching-training-triathlon</name>
- <tld>de</tld>
- <connection>2022-01-30</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <serveralias>www.triathlon-coaching.com</serveralias>
- </subdomain>
- </domain>
- <domain>
- <owner>oleb</owner>
- <name>triathlon-online-trainingsplan</name>
- <tld>de</tld>
- <connection>2022-01-30</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <serveralias>www.triathlon-coaching.com</serveralias>
- </subdomain>
- </domain>
- <domain>
- <owner>oleb</owner>
- <name>triathlon-training-coaching</name>
- <tld>de</tld>
- <connection>2022-01-30</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <serveralias>www.triathlon-coaching.com</serveralias>
- </subdomain>
- </domain>
- <domain>
- <owner>oleb</owner>
- <name>triathlon-coaching-training</name>
- <tld>de</tld>
- <connection>2022-01-30</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <serveralias>www.triathlon-coaching.com</serveralias>
- </subdomain>
- </domain>
- <domain>
- <owner>oleb</owner>
- <name>triathlon-coaching-trainingsplan</name>
- <tld>de</tld>
- <connection>2022-01-30</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <serveralias>www.triathlon-coaching.com</serveralias>
- </subdomain>
- </domain>
- <domain>
- <owner>anita</owner>
- <name>anita-meyer</name>
- <tld>com</tld>
- <connection>2023-09-30</connection>
- <dkim></dkim>
- <subdomain>
- <name>calsheet</name>
- <descr>AgenDAV</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# AgenDAV
- DirectoryIndex index.php index.html
-
- <Location />
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [QSA,L]
- </Location>
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
- <domain>
- <owner>lasse</owner>
- <name>lasse-gehrmann</name>
- <tld>de</tld>
- <connection>2015-06-02</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>calsheet</name>
- <descr>AgenDAV</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# AgenDAV
- DirectoryIndex index.php index.html
-
- <Location />
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [QSA,L]
- </Location>
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>webalizer</name>
- <descr>Webalizer</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
- <domain>
- <owner>matthies</owner>
- <name>matthies-gehrmann</name>
- <tld>de</tld>
- <connection>2015-06-02</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>calsheet</name>
- <descr>AgenDAV</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# AgenDAV
- DirectoryIndex index.php index.html
-
- <Location />
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [QSA,L]
- </Location>
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>webalizer</name>
- <descr>Webalizer</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
- <domain>
- <owner>ina</owner>
- <name>ina-rosentreter</name>
- <tld>de</tld>
- <connection>2014-04-04</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>calsheet</name>
- <descr>AgenDAV</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# AgenDAV
- DirectoryIndex index.php index.html
-
- <Location />
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [QSA,L]
- </Location>
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- </domain>
- <domain>
- <owner>ina</owner>
- <name>little-red-riding-hood</name>
- <tld>eu</tld>
- <connection>2017-04-01</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>webalizer</name>
- <descr>Webalizer</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>anita</owner>
- <name>anita-meyer</name>
- <tld>com</tld>
- <connection>2023-09-30</connection>
- <dkim>v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsuMu5zgvQCxZlreN3Mb+JaRkntUL8VaLr6/hvw0J9qxyE8WUYpNvYrbGNeXEBWn0p9nglxBztX04ADFGRB1WKHg7we8jRaTpxvRi7cy906nqylc5lun80u7jdj+tViBfCQwCr2WYfQo/EiKZ456+1IObvkQbGNK0SsSxGGGtm0kdgfBgO6LlVOcEYxTO7ycqIlAAIRFqmoDoBcl3MY08ewnwc62zCrcAIxeKVRQ8xF/stdZKjY1SiWBXQuU7BhbM5DssdMBV4oshLWqQcjJwkLT6eolWdQOu4FJLmda6EEahH93H/9ignlLxqSaIUbgcm0qysoll6QDbQsmaQWJl5wIDAQAB</dkim>
- <subdomain>
- <name>calsheet</name>
- <descr>AgenDAV</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# AgenDAV
- DirectoryIndex index.php index.html
-
- <Location />
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [QSA,L]
- </Location>
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- <IfModule mod_rewrite.c>
- RewriteEngine On
- RewriteRule ^favicon\.ico$ skins/larry/images/favicon.ico
- # security rules:
- # - deny access to files not containing a dot or starting with a dot
- # in all locations except installer directory
- RewriteRule ^(?!installer)(\.?[^\.]+)$ - [F]
- # - deny access to some locations
- RewriteRule ^/?(\.git|\.tx|SQL|bin|config|logs|temp|tests|program\/(include|lib|localization|steps)) - [F]
- # - deny access to some documentation files
- RewriteRule /?(README\.md|composer\.json-dist|composer\.json|package\.xml)$ - [F]
- </IfModule>
-
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
-
- <Directory /var/www/roundcube/plugins/enigma/home>
- Options -FollowSymLinks
- AllowOverride None
- Order allow,deny
- Deny from all
- </Directory>
- <Directory /var/www/roundcube/config>
- Options -FollowSymLinks
- AllowOverride None
- Order allow,deny
- Deny from all
- </Directory>
- <Directory /var/www/roundcube/temp>
- Options -FollowSymLinks
- AllowOverride None
- Order allow,deny
- Deny from all
- </Directory>
- <Directory /var/www/roundcube/logs>
- Options -FollowSymLinks
- AllowOverride None
- Order allow,deny
- Deny from all
- ]]></directory>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<mailboxes>
- <mailbox>
- <mailbox_id alias="privat" name="anita-meyer" tld="com" />
- <purpose>privat</purpose>
- <mailbox_password>Haeuschen!Schnecke_181217</mailbox_password>
- <aliasses>
- <alias name="anita" descr="privat" />
- <alias name="meyer" descr="privat" />
- <alias name="a.meyer" descr="privat" />
- <alias name="anita.meyer" descr="privat" />
- <alias name="email" descr="privat" />
- <alias name="post" descr="privat" />
- <alias name="mail" descr="privat" />
- <alias name="schneggi" descr="privat" />
- <alias name="frau.schneck" descr="privat" />
- <alias name="haeuschenschnecke" descr="privat" />
- </aliasses>
- </mailbox>
-</mailboxes>
-</root>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>oleb</owner>
- <name>anita-ole</name>
- <tld>de</tld>
- <connection>2022-10-16</connection>
- <dkim></dkim>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <acls>anita</acls>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>calsheet</name>
- <descr>AgenDAV</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# AgenDAV
- DirectoryIndex index.php index.html
-
- <Location />
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [QSA,L]
- </Location>
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>cloud</name>
- <descr>Cloudspace</descr>
- <realm>true</realm>
- <acls>anita</acls>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<mailboxes>
-
- <mailbox>
- <mailbox_id alias="privat" name="anita-ole" tld="de" />
- <purpose>privat</purpose>
- <mailbox_password>SchneckenHaus_181217</mailbox_password>
- <aliasses>
- <alias name="anita" descr="privat" />
- <alias name="bank" descr="Bank" />
- <alias name="e.on" descr="e.on" />
- <alias name="email" descr="privat" />
- <alias name="faz" descr="FAZ" />
- <alias name="freizeit" descr="Freizeit" />
- <alias name="ing-diba" descr="ING-Diba" />
- <alias name="kfz" descr="Auto" />
- <alias name="mail" descr="privat" />
- <alias name="netflix" descr="Netflix" />
- <alias name="ole" descr="privat" />
- <alias name="paypal" descr="Paypal" />
- <alias name="urlaub" descr="Urlaub" />
- <alias name="versicherung" descr="Versicherungen" />
- <alias name="whg" descr="Wohnung" />
- </aliasses>
- </mailbox>
-
-
-</mailboxes>
-</root>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>oleb</owner>
- <name>coach-4-you</name>
- <tld>com</tld>
- <connection>2017-04-14</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <serveralias>www.triathlon-coaching.com</serveralias>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>oleb</owner>
- <name>coaching-training-triathlon</name>
- <tld>de</tld>
- <connection>2022-01-30</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <serveralias>www.triathlon-coaching.com</serveralias>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>ina</owner>
- <name>ina-rosentreter</name>
- <tld>de</tld>
- <connection>2014-04-04</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>calsheet</name>
- <descr>AgenDAV</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# AgenDAV
- DirectoryIndex index.php index.html
-
- <Location />
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [QSA,L]
- </Location>
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<mailboxes>
-
- <mailbox>
- <mailbox_id alias="privat" name="ina-rosentreter" tld="de" />
- <purpose>privat</purpose>
- <mailbox_password>lieblingsSCHWESTER_76</mailbox_password>
- <aliasses>
- <alias name="amazon" descr="Amazon" />
- <alias name="arzt" descr="Arzt" />
- <alias name="bahn" descr="Deutsche Bahn" />
- <alias name="banking" descr="Bank" />
- <alias name="briefkasten" descr="privat" />
- <alias name="dav" descr="DAV" />
- <alias name="e-mail" descr="privat" />
- <alias name="email" descr="privat" />
- <alias name="food" descr="Food" />
- <alias name="foren" descr="Foren" />
- <alias name="foto" descr="Foto" />
- <alias name="freizeit" descr="Freizeit" />
- <alias name="fun" descr="Fun" />
- <alias name="gesundheit" descr="Gesundheit" />
- <alias name="hamburg" descr="Hamburg" />
- <alias name="holiday" descr="Holiday" />
- <alias name="ina" descr="privat" />
- <alias name="ina.rosentreter" descr="privat" />
- <alias name="info" descr="Info" />
- <alias name="insurance" descr="Versicherung" />
- <alias name="job" descr="Job" />
- <alias name="mail" descr="privat" />
- <alias name="musik" descr="Musik" />
- <alias name="newsletter" descr="Newsletter" />
- <alias name="outdoor" descr="Outdoor" />
- <alias name="post" descr="privat" />
- <alias name="shopping" descr="shopping" />
- <alias name="sport" descr="Sport" />
- <alias name="steuern" descr="Steuern" />
- <alias name="tchibo" descr="Tchibo" />
- <alias name="tickets" descr="Tickets" />
- <alias name="vereine" descr="Vereine" />
- <alias name="web" descr="web" />
- <alias name="whg" descr="Wohnung" />
- </aliasses>
- </mailbox>
-
-
-</mailboxes>
-</root>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>oleb</owner>
- <name>laktatnebel</name>
- <tld>de</tld>
- <connection>2015-05-18</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>webalizer</name>
- <descr>Webalizer</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>cal</name>
- <descr>Davical</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# Davical
- DirectoryIndex index.php index.html
-
- Alias /images/ /var/www/laktatnebel.de/cal/images/
- AcceptPathInfo On
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>wiki</name>
- <descr>Wiki WackoWiki</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# WackoWiki
- DirectoryIndex index.php index.html
-
- LoadModule rewrite_module modules/mod_rewrite.so
- ]]></virtualhost>
- <directory><![CDATA[
- Options FollowSymlinks
- AllowOverride all
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>repo</name>
- <descr>Maven-Repository</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>git</name>
- <descr>GIT</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>ticket</name>
- <descr>Ticket</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>cloud</name>
- <descr>Cloudspace</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>phpmyadmin</name>
- <descr>phpMyAdmin</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>phppgadmin</name>
- <descr>phpPgAdmin</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>tools</name>
- <descr>Admin-Tools</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>eval</name>
- <descr>Evaluation</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<mailboxes>
-
- <mailbox>
- <mailbox_id alias="admin" name="laktatnebel" tld="de" />
- <purpose>Administration</purpose>
- <mailbox_password>K3ytGfwpQT9QRb2e</mailbox_password>
- <aliasses>
- <alias name="accounting" descr="techn. Email" />
- <alias name="anfrage" descr="techn. Email" />
- <alias name="bestaetigung" descr="techn. Email" />
- <alias name="buchung" descr="techn. Email" />
- <alias name="confirmation" descr="techn. Email" />
- <alias name="registration" descr="techn. Email" />
- <alias name="registrierung" descr="techn. Email" />
- <alias name="request" descr="techn. Email" />
- <alias name="subscribe" descr="techn. Email" />
- <alias name="unsubscribe" descr="techn. Email" />
- <alias name="datenschutz" descr="Datenschutz" />
- <alias name="noreply" descr="techn. Email" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="einkauf" name="laktatnebel" tld="de" />
- <purpose>Einkauf</purpose>
- <mailbox_password>TxfG_p4Ky=h6bruH</mailbox_password>
- <aliasses>
- <alias name="hardware" descr="hardware" />
- <alias name="hosting" descr="hosting" />
- <alias name="strato" descr="Strato" />
- <alias name="webtropia" descr=" Webtropia" />
- <alias name="owayo" descr="Owayo" />
- <alias name="saxoprint" descr="Saxoprint" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="kontakt" name="laktatnebel" tld="de" />
- <purpose>Kontakt</purpose>
- <mailbox_password>MubqcD=N=8CB2Pba</mailbox_password>
- <aliasses>
- <alias name="bugs" descr="Bugs" />
- <alias name="google" descr="Google" />
- <alias name="ig.socialmedia" descr="Instagram" />
- <alias name="it" descr="IT" />
- <alias name="paypal" descr="Paypal" />
- <alias name="teamviewer" descr=" Teamviewer" />
- <alias name="zoom" descr="Zoom" />
- <alias name="support" descr="Support" />
- </aliasses>
- </mailbox>
-
-
-</mailboxes>
-</root>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>lasse</owner>
- <name>lasse-gehrmann</name>
- <tld>de</tld>
- <connection>2015-06-02</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>webalizer</name>
- <descr>Webalizer</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<mailboxes>
-
- <mailbox>
- <mailbox_id alias="privat" name="lasse-gehrmann" tld="de" />
- <purpose>privat</purpose>
- <mailbox_password>LasSE_09=nF</mailbox_password>
- <aliasses>
- <alias name="briefkasten" descr="privat" />
- <alias name="e-mail" descr="privat" />
- <alias name="email" descr="privat" />
- <alias name="frederik" descr="privat" />
- <alias name="l.g" descr="privat" />
- <alias name="l.gehrmann" descr="privat" />
- <alias name="lasse" descr="privat" />
- <alias name="lasse.gehrmann" descr="privat" />
- <alias name="lasse.nils.frederik" descr="privat" />
- <alias name="lasse.nils.frederik.gehrmann" descr="privat" />
- <alias name="lg" descr="privat" />
- <alias name="lnf" descr="privat" />
- <alias name="lnf.gehrmann" descr="privat" />
- <alias name="lnfg" descr="privat" />
- <alias name="mail" descr="privat" />
- <alias name="nils" descr="privat" />
- <alias name="post" descr="privat" />
- </aliasses>
- </mailbox>
-
-
-</mailboxes>
-</root>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>matthies</owner>
- <name>matthies-gehrmann</name>
- <tld>de</tld>
- <connection>2015-06-02</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>calsheet</name>
- <descr>AgenDAV</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# AgenDAV
- DirectoryIndex index.php index.html
-
- <Location />
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [QSA,L]
- </Location>
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>webalizer</name>
- <descr>Webalizer</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<mailboxes>
-
-
- <mailbox>
- <mailbox_id alias="privat" name="matthies-gehrmann"
- tld="de" />
- <purpose>privat</purpose>
- <mailbox_password>MaTthiES_11=fE</mailbox_password>
- <aliasses>
- <alias name="briefkasten" descr="privat" />
- <alias name="e-mail" descr="privat" />
- <alias name="email" descr="privat" />
- <alias name="erik" descr="privat" />
- <alias name="finn" descr="privat" />
- <alias name="m.g" descr="privat" />
- <alias name="m.gehrmann" descr="privat" />
- <alias name="mail" descr="privat" />
- <alias name="matthies" descr="privat" />
- <alias name="matthies.finn.erik" descr="privat" />
- <alias name="matthies.finn.erik.gehrmann" descr="privat" />
- <alias name="matthies.gehrmann" descr="privat" />
- <alias name="mfe" descr="privat" />
- <alias name="mfe.gehrmann" descr="privat" />
- <alias name="mfeg" descr="privat" />
- <alias name="mg" descr="privat" />
- <alias name="post" descr="privat" />
- <alias name="pro2000" descr="privat" />
- </aliasses>
- </mailbox>
-
-
-</mailboxes>
-</root>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>oleb</owner>
- <name>ole-b-rosentreter</name>
- <tld>de</tld>
- <connection>2016-12-07</connection>
- <dkim></dkim>
- <subdomain>
- <name>calsheet</name>
- <descr>AgenDAV</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# AgenDAV
- DirectoryIndex index.php index.html
-
- <Location />
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [QSA,L]
- </Location>
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<mailboxes>
-
- <mailbox>
- <mailbox_id alias="finanzen" name="ole-b-rosentreter"
- tld="de" />
- <purpose>Finanzen</purpose>
- <mailbox_password>dbMWBuXKZ6R+#W7B</mailbox_password>
- <aliasses>
- <alias name="bank" descr="Bank" />
- <alias name="banking" descr="Bank" />
- <alias name="cash" descr="Bank" />
- <alias name="comdirect" descr="comdirect" />
- <alias name="nuernberger.versicherung"
- descr="Nürnberger Versicherung" />
- <alias name="insurance" descr="Versicherung" />
- <alias name="n26" descr="N26" />
- <alias name="paypal" descr="Paypal" />
- <alias name="pkv" descr="private KV" />
- <alias name="steuern" descr="Steuern" />
- <alias name="versicherung" descr="Versicherungen" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="freizeit" name="ole-b-rosentreter"
- tld="de" />
- <purpose>Freizeit</purpose>
- <mailbox_password>D5p=kz=VehN25E6F</mailbox_password>
- <aliasses>
- <alias name="fb.socialmedia" descr="Facebook" />
- <alias name="fun" descr="Fun" />
- <alias name="games" descr="Spiele" />
- <alias name="ig.socialmedia" descr="Instagram" />
- <alias name="laut.fm" descr="Laut.FM" />
- <alias name="newsletter" descr="Newsletter" />
- <alias name="skype" descr="Skype" />
- <alias name="tipprunden" descr="Tipprunden" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="job" name="ole-b-rosentreter" tld="de" />
- <purpose>Job</purpose>
- <mailbox_password>Q+q4CvC8+smT7DVu</mailbox_password>
- <aliasses>
- <alias name="indeed" descr="Indeed" />
- <alias name="it" descr="IT" />
- <alias name="jobs" descr="Jobs" />
- <alias name="linkedin" descr="LinkedIN" />
- <alias name="stepstone" descr="Stepstone" />
- <alias name="udemy" descr="Udemy" />
- <alias name="weiterbildung" descr="Weiterbildung" />
- <alias name="xing" descr="Xing" />
- <alias name="aos" descr="Academy of Sports" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="privat" name="ole-b-rosentreter"
- tld="de" />
- <purpose>privat</purpose>
- <mailbox_password>JV2Z5+hwv6ntbxR?</mailbox_password>
- <aliasses>
- <alias name="arzt" descr="Arzt" />
- <alias name="briefkasten" descr="privat" />
- <alias name="email" descr="privat" />
- <alias name="gesundheit" descr="Gesundheit" />
- <alias name="mail" descr="privat" />
- <alias name="med" descr="Medizinisches" />
- <alias name="o.b.r" descr="privat" />
- <alias name="o.b.rosentreter" descr="privat" />
- <alias name="o.r" descr="privat" />
- <alias name="o.rosentreter" descr="privat" />
- <alias name="obr" descr="privat" />
- <alias name="ole" descr="privat" />
- <alias name="ole.b.rosentreter" descr="privat" />
- <alias name="ole.rosentreter" descr="privat" />
- <alias name="or" descr="privat" />
- <alias name="post" descr="privat" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="sport" name="ole-b-rosentreter" tld="de" />
- <purpose>Sport</purpose>
- <mailbox_password>SnuRnt2RdA2+_eR%</mailbox_password>
- <aliasses>
- <alias name="16mmol" descr="16mmol" />
- <alias name="competition" descr="competition" />
- <alias name="eisenmann" descr="eisenmann" />
- <alias name="fitx" descr="FitX" />
- <alias name="garmin" descr="Garmin Connect" />
- <alias name="ironman" descr="Ironman" />
- <alias name="laktatnebel" descr="Laktatnebel" />
- <alias name="running" descr="Running" />
- <alias name="sports" descr="Sport" />
- <alias name="swimbikerun" descr="swimbikerun" />
- <alias name="training" descr="Training" />
- <alias name="triathlon" descr="Triathlon" />
- <alias name="trainingpeaks" descr="Trainingpeaks" />
- <alias name="vo2max" descr="vo2max" />
- <alias name="wahoo" descr="Wahoo" />
- <alias name="wettkampf" descr="Wettkampf Anmeldungen" />
- <alias name="zwift" descr="Zwift" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="commerce" name="ole-b-rosentreter"
- tld="de" />
- <purpose>geschäftlich</purpose>
- <mailbox_password>-Cd8U+BKJpp_8th6</mailbox_password>
- <aliasses>
- <alias name="airbnb" descr="Airbnb" />
- <alias name="amazon" descr="Amazon" />
- <alias name="auktionen" descr="Ebay" />
- <alias name="bahn" descr="Deutsche Bahn" />
- <alias name="bird" descr="Bird Scooter" />
- <alias name="bolt" descr="Bolt Scooter" />
- <alias name="booking.com" descr="booking.com" />
- <alias name="dropbox" descr="Dropbox" />
- <alias name="gyg" descr="Get Yor Guide" />
- <alias name="holiday" descr="Holiday" />
- <alias name="hotel" descr="Hotel" />
- <alias name="hrs" descr="HRS" />
- <alias name="kfz" descr="Auto" />
- <alias name="kleinanzeigen" descr="Kleinanzeigen" />
- <alias name="lime" descr="Lime Scooter" />
- <alias name="metro" descr="Metro" />
- <alias name="packstation" descr="Packstation" />
- <alias name="phone" descr="Telefon" />
- <alias name="press" descr="Zeitungen" />
- <alias name="shopping" descr="shopping" />
- <alias name="tchibo" descr="Tchibo" />
- <alias name="terrashop" descr="Terrashop" />
- <alias name="tickets" descr="Tickets" />
- <alias name="tier" descr="Tier Scooter" />
- <alias name="uber" descr="Uber" />
- <alias name="urlaub" descr="Urlaub" />
- <alias name="verkaufen" descr="verkaufen" />
- <alias name="verkaufen.2022.ebay" descr="Ebay" />
- <alias name="vgn" descr="VGN" />
- <alias name="voi" descr="VOI Scooter" />
- <alias name="whg" descr="Wohnung" />
- <alias name="zoom" descr="Zoom" />
- <alias name="deutsche.post" descr="Deutsche Post" />
- </aliasses>
- </mailbox>
-
-
-</mailboxes>
-</root>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>oleb</owner>
- <name>triathlon-coaching-training</name>
- <tld>de</tld>
- <connection>2022-01-30</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <serveralias>www.triathlon-coaching.com</serveralias>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>oleb</owner>
- <name>triathlon-coaching-trainingsplan</name>
- <tld>de</tld>
- <connection>2022-01-30</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <serveralias>www.triathlon-coaching.com</serveralias>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>oleb</owner>
- <name>triathlon-coaching</name>
- <tld>com</tld>
- <connection>2023-04-30</connection>
- <dkim>v=DKIM1; h=sha256; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDJ2QMawri3618NYRR6+O6rPY8MKqbftxYw0IJ8slVX6zzqd4dmq1BmmDt4dNUnXLhnaEK4LiZn63G62EyYMw5MzHYMKD2G4lnsTPYHWX4llcYrEeie73ltKc2wG1V65Qeteay2MrXOIBoGm/v8FW0mQJ227arf+RSwKokd3a/xRwIDAQAB</dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>webalizer</name>
- <descr>Webalizer</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>cal</name>
- <descr>Davical</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# Davical
- DirectoryIndex index.php index.html
-
- Alias /images/ /var/www/laktatnebel.de/cal/images/
- AcceptPathInfo On
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>wiki</name>
- <descr>Wiki WackoWiki</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# WackoWiki
- DirectoryIndex index.php index.html
-
- LoadModule rewrite_module modules/mod_rewrite.so
- ]]></virtualhost>
- <directory><![CDATA[
- Options FollowSymlinks
- AllowOverride all
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>calsheet</name>
- <descr>AgenDAV</descr>
- <realm>true</realm>
- <virtualhost><![CDATA[
-# AgenDAV
- DirectoryIndex index.php index.html
-
- <Location />
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^ index.php [QSA,L]
- </Location>
- ]]></virtualhost>
- <directory><![CDATA[
- AllowOverride None
- Order allow,deny
- Allow from all
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>phpmyadmin</name>
- <descr>phpMyAdmin</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>phppgadmin</name>
- <descr>phpPgAdmin</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>tools</name>
- <descr>Admin-Tools</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>swim</name>
- <descr>Swim-Tools</descr>
- <realm>false</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<mailboxes>
-
- <mailbox>
- <mailbox_id alias="kontakt" name="triathlon-coaching"
- tld="com" />
- <purpose>Kontakt</purpose>
- <mailbox_password>sH+z9XaY7?Jx9Nzr</mailbox_password>
- <aliasses>
- <alias name="ig.socialmedia" descr="Instagram" />
- <alias name="camp" descr="Camps" />
- <alias name="paypal" descr="Paypal" />
- <alias name="bike24" descr="Bike24" />
- <alias name="einkauf" descr="Einkauf" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="sport" name="triathlon-coaching"
- tld="com" />
- <purpose>Sport</purpose>
- <mailbox_password>§c-fCJce2!6B7eTJ</mailbox_password>
- <aliasses>
- <alias name="sports" descr="Sport" />
- <alias name="swimbikerun" descr="swimbikerun" />
- <alias name="coaching" descr="Coaching" />
- <alias name="kurs" descr="Kurse" />
- <alias name="laufseminar" descr="Laufseminar" />
- <alias name="schwimmseminar" descr="Schwimmseminar" />
- <alias name="trainingpeaks" descr="Trainingpeaks" />
- <alias name="mats" descr="MATS" />
- <alias name="triathlon" descr="Triathlon" />
- <alias name="training" descr="Training" />
- <alias name="running" descr="Running" />
- </aliasses>
- </mailbox>
-
-
-</mailboxes>
-</root>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>oleb</owner>
- <name>triathlon-online-trainingsplan</name>
- <tld>de</tld>
- <connection>2022-01-30</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <serveralias>www.triathlon-coaching.com</serveralias>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>oleb</owner>
- <name>triathlon-training-coaching</name>
- <tld>de</tld>
- <connection>2022-01-30</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <serveralias>www.triathlon-coaching.com</serveralias>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<domains>
- <domain>
- <owner>oleb</owner>
- <name>wechselzonenluder</name>
- <tld>de</tld>
- <connection>2018-09-09</connection>
- <dkim></dkim>
- <subdomain>
- <name>www</name>
- <descr>Webseite</descr>
- <realm>false</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>mail</name>
- <descr>Webmail</descr>
- <realm>true</realm>
- <directory><![CDATA[
- Options +FollowSymLinks
- AllowOverride None
- ]]></directory>
- </subdomain>
- <subdomain>
- <name>webalizer</name>
- <descr>Webalizer</descr>
- <realm>true</realm>
- <directory><![CDATA[
- AllowOverride None
- ]]></directory>
- </subdomain>
- </domain>
-</domains>
-</root>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<mailboxes>
-
- <mailbox>
- <mailbox_id alias="kontakt" name="wechselzonenluder"
- tld="de" />
- <purpose>Kontakt</purpose>
- <mailbox_password>4ZeHM8fqHxG-v</mailbox_password>
- <aliasses>
- <alias name="einkauf" descr="Einkauf" />
- <alias name="fb.socialmedia" descr="Facebook" />
- <alias name="google" descr="Google" />
- <alias name="ig.socialmedia" descr="Instagram" />
- <alias name="merchandise" descr="Merchandise" />
- <alias name="spreadshirt" descr="Spreadshirt" />
- <alias name="socialmedia" descr="Socialmedia" />
- <alias name="support" descr="Support" />
- </aliasses>
- </mailbox>
-
-
-</mailboxes>
-</root>
\ No newline at end of file
+++ /dev/null
-# ~/.bashrc: executed by bash(1) for non-login shells.
-# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
-# for examples
-
-# Source global definitions
-if [ -f /etc/bash.bashrc ]; then
- . /etc/bash.bashrc
-fi
-
-# If not running interactively, don't do anything
-case $- in
- *i*) ;;
- *) return;;
-esac
-
-# don't put duplicate lines or lines starting with space in the history.
-# See bash(1) for more options
-HISTCONTROL=ignoreboth
-
-# append to the history file, don't overwrite it
-shopt -s histappend
-
-# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
-HISTSIZE=10000
-HISTFILESIZE=20000
-
-# check the window size after each command and, if necessary,
-# update the values of LINES and COLUMNS.
-shopt -s checkwinsize
-
-# If set, the pattern "**" used in a pathname expansion context will
-# match all files and zero or more directories and subdirectories.
-#shopt -s globstar
-
-# make less more friendly for non-text input files, see lesspipe(1)
-[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
-
-# set variable identifying the chroot you work in (used in the prompt below)
-if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
- debian_chroot=$(cat /etc/debian_chroot)
-fi
-
-# Add an "alert" alias for long running commands. Use like so:
-# sleep 10; alert
-alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
-
-# set a fancy prompt (non-color, unless we know we "want" color)
-case "$TERM" in
- xterm-color|*-256color) color_prompt=yes;;
-esac
-
-# uncomment for a colored prompt, if the terminal has the capability; turned
-# off by default to not distract the user: the focus in a terminal window
-# should be on the output of commands, not on the prompt
-#force_color_prompt=yes
-
-if [ -n "$force_color_prompt" ]; then
- if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
- # We have color support; assume it's compliant with Ecma-48
- # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
- # a case would tend to support setf rather than setaf.)
- color_prompt=yes
- else
- color_prompt=
- fi
-fi
-
-if [ "$color_prompt" = yes ]; then
- PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
-else
- PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
-fi
-unset color_prompt force_color_prompt
-
-# If this is an xterm set the title to user@host:dir
-case "$TERM" in
-xterm*|rxvt*)
- PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
- ;;
-*)
- ;;
-esac
-
-# enable color support of ls and also add handy aliases
-if [ -x /usr/bin/dircolors ]; then
- test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
- alias ls='ls --color=auto'
- #alias dir='dir --color=auto'
- #alias vdir='vdir --color=auto'
-
- #alias grep='grep --color=auto'
- #alias fgrep='fgrep --color=auto'
- #alias egrep='egrep --color=auto'
-fi
-
-# colored GCC warnings and errors
-#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
-
-# Alias definitions.
-# You may want to put all your additions into a separate file like
-# ~/.bash_aliases, instead of adding them here directly.
-# See /usr/share/doc/bash-doc/examples in the bash-doc package.
-
-if [ -f ~/.bash_aliases ]; then
- . ~/.bash_aliases
-fi
-
-# enable programmable completion features (you don't need to enable
-# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
-# sources /etc/bash.bashrc).
-#if [ -f /etc/bash_completion ]; then
-# . /etc/bash_completion
-#fi
-
-
-export LS_OPTIONS='--color=auto'
-eval "`dircolors`"
-alias ls='ls $LS_OPTIONS'
-alias la='ls $LS_OPTIONS -la'
-alias ll='ls $LS_OPTIONS -l'
-
-alias grep='grep $LS_OPTIONS'
-
-# enable programmable completion features (you don't need to enable
-# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
-# sources /etc/bash.bashrc).
-if ! shopt -oq posix; then
- if [ -f /usr/share/bash-completion/bash_completion ]; then
- . /usr/share/bash-completion/bash_completion
- elif [ -f /etc/bash_completion ]; then
- . /etc/bash_completion
- fi
-fi
+++ /dev/null
-# ~/.profile: executed by the command interpreter for login shells.
-# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
-# exists.
-# see /usr/share/doc/bash/examples/startup-files for examples.
-# the files are located in the bash-doc package.
-
-# the default umask is set in /etc/profile; for setting the umask
-# for ssh logins, install and configure the libpam-umask package.
-#umask 022
-
-# if running bash
-if [ -n "$BASH_VERSION" ]; then
- # include .bashrc if it exists
- if [ -f "$HOME/.bashrc" ]; then
- . "$HOME/.bashrc"
- fi
-fi
-
-# set PATH so it includes user's private bin if it exists
-if [ -d "$HOME/bin" ] ; then
- PATH="$HOME/bin:$PATH"
-fi
-
-export LANG="de_DE.utf8"
-
+++ /dev/null
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCFTIRs14XVVR3SVlw9QqNhqwKmKrVL5qiERoNfZyCBzwzYq1Jk7kNbN35dVfz7sTXk8r7vCTEwwNIVBqqX8iZhAK/xigiwzgdXf6JM/VrY7rLl4PJnY0mUuePohUcTBNqpZn0QTByvo+y35h1yPTD+g8T2kH5Hcuc2Ofg0stpbM13miyUPIO9T7l76/66KdNvMA5652TVYWlkFFejE8PUbocyvZHrZXVaKUTo1asKRcKEp/4JxeIMQBkuHENZnaHHzzYZ3jTC3RL//Rm5U6nBOYzv+xCC0hRbFtzP6mP1/QqqX+rJkLel+zcabx4OUyAE6sSwVBl1bRPJjWRnOzIV2AE7QvCemkM5eJIo/XD8EZxM6vwU6UycLTyLV/H3rP7NQMo/waBK9THVFXEzYZnoUsYQFk22viKzMxd/mcFkn3JY+0vy3l6ZSvZUIQ/VXr2ovxtebeX2Vyy7nFbJm9u35aqEGQ8FkBzQzjqkHvV44kfTykj09oTAF81kL2qvUXc= oleb@poseidon
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDtbM0S9xUKRlFFS3ZTMoZhKMwmGRVFdX1kdbRtZUw2lulxjQxbvqo3fJ9xk2ojhV4jy+qnhLqWCFxRvwX89xSj3hvIs8UO/aoIcPcf6jMV7GO8NBdhR4A0yuQH4ySPzC3XCbq/TX2IYX1rp7FpAceAtK3Ht6j2wGy8la98DJoVYuIINgyOBO/lmXYzck3+PSun4ENT5JA2OTLx/VAq3hJL7S4B/t+SHFW85KrziX81lKiPZ0MMOUkkqG7mVLqprLNLabKRmdYYzbGjk3el+H4ZHAAqnqDrTeEgxOZM4ebPAEgNxFfRgbnldlOAZ4GBe+BHYecHH4yXNJWIaydvAA7 oleb@h2410715.stratoserver.net
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDCbPQ/ZgqZdSi/0P/hKodUgJuVootKIlTtoMbc9Ru7RIaA3imyKvj4B7OkINz9CiC7irFtYfSjKMDVdOkhw96ZG97F5gKXQwxAxzQ4yrTjQkknxG8vM4PJvEzAreC1GOIrIw1n/XAA9UowQpC0fzpzXgOL5BOB81td61FvKyKm42c6A88zOyZ5eDCno+VF77LHuGtb2GN9exwKG5v88wvIrPH+iVDj70XkIo3sEd0R4Gjju6ClweXTDmzjULDL4pcdFnaDEc0wrgtJeKC8ZRnyyjpKii6ZQa9TQ+zlI++ERGFg2vmS6XGcL6sqm4eojDFanR5TU7JaTVJHHaMGMZM7 root@h2410715.stratoserver.net
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<mailboxes>
-
- <mailbox>
- <mailbox_id alias="privat" name="anita-meyer" tld="com" />
- <purpose>privat</purpose>
- <mailbox_password>Haeuschen!Schnecke_181217</mailbox_password>
- <aliasses>
- <alias name="anita" descr="privat" />
- <alias name="meyer" descr="privat" />
- <alias name="a.meyer" descr="privat" />
- <alias name="anita.meyer" descr="privat" />
- <alias name="email" descr="privat" />
- <alias name="post" descr="privat" />
- <alias name="mail" descr="privat" />
- <alias name="schneggi" descr="privat" />
- <alias name="frau.schneck" descr="privat" />
- <alias name="haeuschenschnecke" descr="privat" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="privat" name="anita-ole" tld="de" />
- <purpose>privat</purpose>
- <mailbox_password>SchneckenHaus_181217</mailbox_password>
- <aliasses>
- <alias name="anita" descr="privat" />
- <alias name="bank" descr="Bank" />
- <alias name="e.on" descr="e.on" />
- <alias name="email" descr="privat" />
- <alias name="faz" descr="FAZ" />
- <alias name="freizeit" descr="Freizeit" />
- <alias name="ing-diba" descr="ING-Diba" />
- <alias name="kfz" descr="Auto" />
- <alias name="mail" descr="privat" />
- <alias name="netflix" descr="Netflix" />
- <alias name="ole" descr="privat" />
- <alias name="paypal" descr="Paypal" />
- <alias name="urlaub" descr="Urlaub" />
- <alias name="versicherung" descr="Versicherungen" />
- <alias name="whg" descr="Wohnung" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="privat" name="ina-rosentreter" tld="de" />
- <purpose>privat</purpose>
- <mailbox_password>lieblingsSCHWESTER_76</mailbox_password>
- <aliasses>
- <alias name="amazon" descr="Amazon" />
- <alias name="arzt" descr="Arzt" />
- <alias name="bahn" descr="Deutsche Bahn" />
- <alias name="banking" descr="Bank" />
- <alias name="briefkasten" descr="privat" />
- <alias name="dav" descr="DAV" />
- <alias name="e-mail" descr="privat" />
- <alias name="email" descr="privat" />
- <alias name="food" descr="Food" />
- <alias name="foren" descr="Foren" />
- <alias name="foto" descr="Foto" />
- <alias name="freizeit" descr="Freizeit" />
- <alias name="fun" descr="Fun" />
- <alias name="gesundheit" descr="Gesundheit" />
- <alias name="hamburg" descr="Hamburg" />
- <alias name="holiday" descr="Holiday" />
- <alias name="ina" descr="privat" />
- <alias name="ina.rosentreter" descr="privat" />
- <alias name="info" descr="Info" />
- <alias name="insurance" descr="Versicherung" />
- <alias name="job" descr="Job" />
- <alias name="mail" descr="privat" />
- <alias name="musik" descr="Musik" />
- <alias name="newsletter" descr="Newsletter" />
- <alias name="outdoor" descr="Outdoor" />
- <alias name="post" descr="privat" />
- <alias name="shopping" descr="shopping" />
- <alias name="sport" descr="Sport" />
- <alias name="steuern" descr="Steuern" />
- <alias name="tchibo" descr="Tchibo" />
- <alias name="tickets" descr="Tickets" />
- <alias name="vereine" descr="Vereine" />
- <alias name="web" descr="web" />
- <alias name="whg" descr="Wohnung" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="kontakt" name="little-red-riding-hood"
- tld="eu" />
- <purpose>Kontakt</purpose>
- <mailbox_password>lieblingsSCHWESTER_76</mailbox_password>
- <aliasses>
- <alias name="accounting" descr="techn. Email" />
- <alias name="anfrage" descr="techn. Email" />
- <alias name="bestaetigung" descr="techn. Email" />
- <alias name="buchung" descr="techn. Email" />
- <alias name="confirmation" descr="techn. Email" />
- <alias name="registration" descr="techn. Email" />
- <alias name="registrierung" descr="techn. Email" />
- <alias name="request" descr="techn. Email" />
- <alias name="subscribe" descr="techn. Email" />
- <alias name="unsubscribe" descr="techn. Email" />
- <alias name="datenschutz" descr="Datenschutz" />
- <alias name="fb.socialmedia" descr="Facebook" />
- <alias name="google" descr="Google" />
- <alias name="info" descr="Info" />
- <alias name="infos" descr="Infos" />
- <alias name="ig.socialmedia" descr="Instagram" />
- <alias name="socialmedia" descr="Socialmedia" />
- <alias name="support" descr="Support" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="admin" name="laktatnebel" tld="de" />
- <purpose>Administration</purpose>
- <mailbox_password>K3ytGfwpQT9QRb2e</mailbox_password>
- <aliasses>
- <alias name="accounting" descr="techn. Email" />
- <alias name="anfrage" descr="techn. Email" />
- <alias name="bestaetigung" descr="techn. Email" />
- <alias name="buchung" descr="techn. Email" />
- <alias name="confirmation" descr="techn. Email" />
- <alias name="registration" descr="techn. Email" />
- <alias name="registrierung" descr="techn. Email" />
- <alias name="request" descr="techn. Email" />
- <alias name="subscribe" descr="techn. Email" />
- <alias name="unsubscribe" descr="techn. Email" />
- <alias name="datenschutz" descr="Datenschutz" />
- <alias name="noreply" descr="techn. Email" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="einkauf" name="laktatnebel" tld="de" />
- <purpose>Einkauf</purpose>
- <mailbox_password>TxfG_p4Ky=h6bruH</mailbox_password>
- <aliasses>
- <alias name="hardware" descr="hardware" />
- <alias name="hosting" descr="hosting" />
- <alias name="strato" descr="Strato" />
- <alias name="webtropia" descr=" Webtropia" />
- <alias name="owayo" descr="Owayo" />
- <alias name="saxoprint" descr="Saxoprint" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="kontakt" name="laktatnebel" tld="de" />
- <purpose>Kontakt</purpose>
- <mailbox_password>MubqcD=N=8CB2Pba</mailbox_password>
- <aliasses>
- <alias name="bugs" descr="Bugs" />
- <alias name="google" descr="Google" />
- <alias name="ig.socialmedia" descr="Instagram" />
- <alias name="it" descr="IT" />
- <alias name="paypal" descr="Paypal" />
- <alias name="teamviewer" descr=" Teamviewer" />
- <alias name="zoom" descr="Zoom" />
- <alias name="support" descr="Support" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="privat" name="lasse-gehrmann" tld="de" />
- <purpose>privat</purpose>
- <mailbox_password>LasSE_09=nF</mailbox_password>
- <aliasses>
- <alias name="briefkasten" descr="privat" />
- <alias name="e-mail" descr="privat" />
- <alias name="email" descr="privat" />
- <alias name="frederik" descr="privat" />
- <alias name="l.g" descr="privat" />
- <alias name="l.gehrmann" descr="privat" />
- <alias name="lasse" descr="privat" />
- <alias name="lasse.gehrmann" descr="privat" />
- <alias name="lasse.nils.frederik" descr="privat" />
- <alias name="lasse.nils.frederik.gehrmann" descr="privat" />
- <alias name="lg" descr="privat" />
- <alias name="lnf" descr="privat" />
- <alias name="lnf.gehrmann" descr="privat" />
- <alias name="lnfg" descr="privat" />
- <alias name="mail" descr="privat" />
- <alias name="nils" descr="privat" />
- <alias name="post" descr="privat" />
- </aliasses>
- </mailbox>
-
-
- <mailbox>
- <mailbox_id alias="privat" name="matthies-gehrmann"
- tld="de" />
- <purpose>privat</purpose>
- <mailbox_password>MaTthiES_11=fE</mailbox_password>
- <aliasses>
- <alias name="briefkasten" descr="privat" />
- <alias name="e-mail" descr="privat" />
- <alias name="email" descr="privat" />
- <alias name="erik" descr="privat" />
- <alias name="finn" descr="privat" />
- <alias name="m.g" descr="privat" />
- <alias name="m.gehrmann" descr="privat" />
- <alias name="mail" descr="privat" />
- <alias name="matthies" descr="privat" />
- <alias name="matthies.finn.erik" descr="privat" />
- <alias name="matthies.finn.erik.gehrmann" descr="privat" />
- <alias name="matthies.gehrmann" descr="privat" />
- <alias name="mfe" descr="privat" />
- <alias name="mfe.gehrmann" descr="privat" />
- <alias name="mfeg" descr="privat" />
- <alias name="mg" descr="privat" />
- <alias name="post" descr="privat" />
- <alias name="pro2000" descr="privat" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="kontakt" name="triathlon-coaching"
- tld="com" />
- <purpose>Kontakt</purpose>
- <mailbox_password>sH+z9XaY7?Jx9Nzr</mailbox_password>
- <aliasses>
- <alias name="ig.socialmedia" descr="Instagram" />
- <alias name="camp" descr="Camps" />
- <alias name="paypal" descr="Paypal" />
- <alias name="bike24" descr="Bike24" />
- <alias name="einkauf" descr="Einkauf" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="sport" name="triathlon-coaching"
- tld="com" />
- <purpose>Sport</purpose>
- <mailbox_password>§c-fCJce2!6B7eTJ</mailbox_password>
- <aliasses>
- <alias name="sports" descr="Sport" />
- <alias name="swimbikerun" descr="swimbikerun" />
- <alias name="coaching" descr="Coaching" />
- <alias name="kurs" descr="Kurse" />
- <alias name="laufseminar" descr="Laufseminar" />
- <alias name="schwimmseminar" descr="Schwimmseminar" />
- <alias name="trainingpeaks" descr="Trainingpeaks" />
- <alias name="mats" descr="MATS" />
- <alias name="triathlon" descr="Triathlon" />
- <alias name="training" descr="Training" />
- <alias name="running" descr="Running" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="kontakt" name="wechselzonenluder"
- tld="de" />
- <purpose>Kontakt</purpose>
- <mailbox_password>4ZeHM8fqHxG-v</mailbox_password>
- <aliasses>
- <alias name="einkauf" descr="Einkauf" />
- <alias name="fb.socialmedia" descr="Facebook" />
- <alias name="google" descr="Google" />
- <alias name="ig.socialmedia" descr="Instagram" />
- <alias name="merchandise" descr="Merchandise" />
- <alias name="spreadshirt" descr="Spreadshirt" />
- <alias name="socialmedia" descr="Socialmedia" />
- <alias name="support" descr="Support" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="finanzen" name="ole-b-rosentreter"
- tld="de" />
- <purpose>Finanzen</purpose>
- <mailbox_password>dbMWBuXKZ6R+#W7B</mailbox_password>
- <aliasses>
- <alias name="bank" descr="Bank" />
- <alias name="banking" descr="Bank" />
- <alias name="cash" descr="Bank" />
- <alias name="comdirect" descr="comdirect" />
- <alias name="nuernberger.versicherung"
- descr="Nürnberger Versicherung" />
- <alias name="insurance" descr="Versicherung" />
- <alias name="n26" descr="N26" />
- <alias name="paypal" descr="Paypal" />
- <alias name="pkv" descr="private KV" />
- <alias name="steuern" descr="Steuern" />
- <alias name="versicherung" descr="Versicherungen" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="freizeit" name="ole-b-rosentreter"
- tld="de" />
- <purpose>Freizeit</purpose>
- <mailbox_password>D5p=kz=VehN25E6F</mailbox_password>
- <aliasses>
- <alias name="fb.socialmedia" descr="Facebook" />
- <alias name="fun" descr="Fun" />
- <alias name="games" descr="Spiele" />
- <alias name="ig.socialmedia" descr="Instagram" />
- <alias name="laut.fm" descr="Laut.FM" />
- <alias name="newsletter" descr="Newsletter" />
- <alias name="skype" descr="Skype" />
- <alias name="tipprunden" descr="Tipprunden" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="job" name="ole-b-rosentreter" tld="de" />
- <purpose>Job</purpose>
- <mailbox_password>Q+q4CvC8+smT7DVu</mailbox_password>
- <aliasses>
- <alias name="indeed" descr="Indeed" />
- <alias name="it" descr="IT" />
- <alias name="jobs" descr="Jobs" />
- <alias name="linkedin" descr="LinkedIN" />
- <alias name="stepstone" descr="Stepstone" />
- <alias name="udemy" descr="Udemy" />
- <alias name="weiterbildung" descr="Weiterbildung" />
- <alias name="xing" descr="Xing" />
- <alias name="aos" descr="Academy of Sports" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="privat" name="ole-b-rosentreter"
- tld="de" />
- <purpose>privat</purpose>
- <mailbox_password>JV2Z5+hwv6ntbxR?</mailbox_password>
- <aliasses>
- <alias name="arzt" descr="Arzt" />
- <alias name="briefkasten" descr="privat" />
- <alias name="email" descr="privat" />
- <alias name="gesundheit" descr="Gesundheit" />
- <alias name="mail" descr="privat" />
- <alias name="med" descr="Medizinisches" />
- <alias name="o.b.r" descr="privat" />
- <alias name="o.b.rosentreter" descr="privat" />
- <alias name="o.r" descr="privat" />
- <alias name="o.rosentreter" descr="privat" />
- <alias name="obr" descr="privat" />
- <alias name="ole" descr="privat" />
- <alias name="ole.b.rosentreter" descr="privat" />
- <alias name="ole.rosentreter" descr="privat" />
- <alias name="or" descr="privat" />
- <alias name="post" descr="privat" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="sport" name="ole-b-rosentreter" tld="de" />
- <purpose>Sport</purpose>
- <mailbox_password>SnuRnt2RdA2+_eR%</mailbox_password>
- <aliasses>
- <alias name="16mmol" descr="16mmol" />
- <alias name="competition" descr="competition" />
- <alias name="eisenmann" descr="eisenmann" />
- <alias name="fitx" descr="FitX" />
- <alias name="garmin" descr="Garmin Connect" />
- <alias name="ironman" descr="Ironman" />
- <alias name="laktatnebel" descr="Laktatnebel" />
- <alias name="running" descr="Running" />
- <alias name="sports" descr="Sport" />
- <alias name="swimbikerun" descr="swimbikerun" />
- <alias name="training" descr="Training" />
- <alias name="triathlon" descr="Triathlon" />
- <alias name="trainingpeaks" descr="Trainingpeaks" />
- <alias name="vo2max" descr="vo2max" />
- <alias name="wahoo" descr="Wahoo" />
- <alias name="wettkampf" descr="Wettkampf Anmeldungen" />
- <alias name="zwift" descr="Zwift" />
- </aliasses>
- </mailbox>
-
- <mailbox>
- <mailbox_id alias="commerce" name="ole-b-rosentreter"
- tld="de" />
- <purpose>geschäftlich</purpose>
- <mailbox_password>-Cd8U+BKJpp_8th6</mailbox_password>
- <aliasses>
- <alias name="airbnb" descr="Airbnb" />
- <alias name="amazon" descr="Amazon" />
- <alias name="auktionen" descr="Ebay" />
- <alias name="bahn" descr="Deutsche Bahn" />
- <alias name="bird" descr="Bird Scooter" />
- <alias name="bolt" descr="Bolt Scooter" />
- <alias name="booking.com" descr="booking.com" />
- <alias name="dropbox" descr="Dropbox" />
- <alias name="gyg" descr="Get Yor Guide" />
- <alias name="holiday" descr="Holiday" />
- <alias name="hotel" descr="Hotel" />
- <alias name="hrs" descr="HRS" />
- <alias name="kfz" descr="Auto" />
- <alias name="kleinanzeigen" descr="Kleinanzeigen" />
- <alias name="lime" descr="Lime Scooter" />
- <alias name="metro" descr="Metro" />
- <alias name="packstation" descr="Packstation" />
- <alias name="phone" descr="Telefon" />
- <alias name="press" descr="Zeitungen" />
- <alias name="shopping" descr="shopping" />
- <alias name="tchibo" descr="Tchibo" />
- <alias name="terrashop" descr="Terrashop" />
- <alias name="tickets" descr="Tickets" />
- <alias name="tier" descr="Tier Scooter" />
- <alias name="uber" descr="Uber" />
- <alias name="urlaub" descr="Urlaub" />
- <alias name="verkaufen" descr="verkaufen" />
- <alias name="verkaufen.2022.ebay" descr="Ebay" />
- <alias name="vgn" descr="VGN" />
- <alias name="voi" descr="VOI Scooter" />
- <alias name="whg" descr="Wohnung" />
- <alias name="zoom" descr="Zoom" />
- <alias name="deutsche.post" descr="Deutsche Post" />
- </aliasses>
- </mailbox>
-
-
-</mailboxes>
-</root>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
-<users>
- <user>
- <user_name>admin</user_name>
- <pass_web>Lnf_Mfe@0724</pass_web>
- <full_name>Administrator</full_name>
- <email>admin@laktatnebel.de</email>
- </user>
- <user>
- <user_name>oleb</user_name>
- <pass_web>859im</pass_web>
- <full_name>Ole Benjamin Rosentreter</full_name>
- <email>hosting@laktatnebel.de</email>
- </user>
- <user>
- <user_name>ina</user_name>
- <pass_web>lieblingsSCHWESTER_76</pass_web>
- <full_name>Ina Rosentreter</full_name>
- <email>ina@ina-rosentreter.de</email>
- </user>
- <user>
- <user_name>lasse</user_name>
- <pass_web>Lnf@24_Nbg</pass_web>
- <full_name>Lasse Gehrmann</full_name>
- <email>webmaster@laktatnebel.de</email>
- </user>
- <user>
- <user_name>matthies</user_name>
- <pass_web>Mfe@07_Erl</pass_web>
- <full_name>Matthies Gehrmann</full_name>
- <email>webmaster@laktatnebel.de</email>
- </user>
- <user>
- <user_name>anita</user_name>
- <pass_web>Haeuschen_181217</pass_web>
- <full_name>Anita Meyer</full_name>
- <email>anita@anita-meyer.com</email>
- </user>
-</users>
-</root>
\ No newline at end of file
+++ /dev/null
-# ~/.bashrc: executed by bash(1) for non-login shells.
-# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
-# for examples
-
-# Source global definitions
-if [ -f /etc/bash.bashrc ]; then
- . /etc/bash.bashrc
-fi
-
-# If not running interactively, don't do anything
-case $- in
- *i*) ;;
- *) return;;
-esac
-
-# don't put duplicate lines or lines starting with space in the history.
-# See bash(1) for more options
-HISTCONTROL=ignoreboth
-
-# append to the history file, don't overwrite it
-shopt -s histappend
-
-# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
-HISTSIZE=10000
-HISTFILESIZE=20000
-
-# check the window size after each command and, if necessary,
-# update the values of LINES and COLUMNS.
-shopt -s checkwinsize
-
-# If set, the pattern "**" used in a pathname expansion context will
-# match all files and zero or more directories and subdirectories.
-#shopt -s globstar
-
-# make less more friendly for non-text input files, see lesspipe(1)
-[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
-
-# set variable identifying the chroot you work in (used in the prompt below)
-if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
- debian_chroot=$(cat /etc/debian_chroot)
-fi
-
-# Add an "alert" alias for long running commands. Use like so:
-# sleep 10; alert
-alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
-
-# set a fancy prompt (non-color, unless we know we "want" color)
-case "$TERM" in
- xterm-color|*-256color) color_prompt=yes;;
-esac
-
-# uncomment for a colored prompt, if the terminal has the capability; turned
-# off by default to not distract the user: the focus in a terminal window
-# should be on the output of commands, not on the prompt
-#force_color_prompt=yes
-
-if [ -n "$force_color_prompt" ]; then
- if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
- # We have color support; assume it's compliant with Ecma-48
- # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
- # a case would tend to support setf rather than setaf.)
- color_prompt=yes
- else
- color_prompt=
- fi
-fi
-
-if [ "$color_prompt" = yes ]; then
- PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
-else
- PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
-fi
-unset color_prompt force_color_prompt
-
-# If this is an xterm set the title to user@host:dir
-case "$TERM" in
-xterm*|rxvt*)
- PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
- ;;
-*)
- ;;
-esac
-
-# enable color support of ls and also add handy aliases
-if [ -x /usr/bin/dircolors ]; then
- test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
- alias ls='ls --color=auto'
- #alias dir='dir --color=auto'
- #alias vdir='vdir --color=auto'
-
- #alias grep='grep --color=auto'
- #alias fgrep='fgrep --color=auto'
- #alias egrep='egrep --color=auto'
-fi
-
-# colored GCC warnings and errors
-#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
-
-# Alias definitions.
-# You may want to put all your additions into a separate file like
-# ~/.bash_aliases, instead of adding them here directly.
-# See /usr/share/doc/bash-doc/examples in the bash-doc package.
-
-if [ -f ~/.bash_aliases ]; then
- . ~/.bash_aliases
-fi
-
-# enable programmable completion features (you don't need to enable
-# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
-# sources /etc/bash.bashrc).
-#if [ -f /etc/bash_completion ]; then
-# . /etc/bash_completion
-#fi
-
-
-export LS_OPTIONS='--color=auto'
-eval "`dircolors`"
-alias ls='ls $LS_OPTIONS'
-alias la='ls $LS_OPTIONS -la'
-alias ll='ls $LS_OPTIONS -l'
-
-alias grep='grep $LS_OPTIONS'
-
-# enable programmable completion features (you don't need to enable
-# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
-# sources /etc/bash.bashrc).
-if ! shopt -oq posix; then
- if [ -f /usr/share/bash-completion/bash_completion ]; then
- . /usr/share/bash-completion/bash_completion
- elif [ -f /etc/bash_completion ]; then
- . /etc/bash_completion
- fi
-fi
+++ /dev/null
-# ~/.profile: executed by the command interpreter for login shells.
-# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
-# exists.
-# see /usr/share/doc/bash/examples/startup-files for examples.
-# the files are located in the bash-doc package.
-
-# the default umask is set in /etc/profile; for setting the umask
-# for ssh logins, install and configure the libpam-umask package.
-#umask 022
-
-# if running bash
-if [ -n "$BASH_VERSION" ]; then
- # include .bashrc if it exists
- if [ -f "$HOME/.bashrc" ]; then
- . "$HOME/.bashrc"
- fi
-fi
-
-# set PATH so it includes user's private bin if it exists
-if [ -d "$HOME/bin" ] ; then
- PATH="$HOME/bin:$PATH"
-fi
-
-export LANG="de_DE.utf8"
-
+++ /dev/null
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCFTIRs14XVVR3SVlw9QqNhqwKmKrVL5qiERoNfZyCBzwzYq1Jk7kNbN35dVfz7sTXk8r7vCTEwwNIVBqqX8iZhAK/xigiwzgdXf6JM/VrY7rLl4PJnY0mUuePohUcTBNqpZn0QTByvo+y35h1yPTD+g8T2kH5Hcuc2Ofg0stpbM13miyUPIO9T7l76/66KdNvMA5652TVYWlkFFejE8PUbocyvZHrZXVaKUTo1asKRcKEp/4JxeIMQBkuHENZnaHHzzYZ3jTC3RL//Rm5U6nBOYzv+xCC0hRbFtzP6mP1/QqqX+rJkLel+zcabx4OUyAE6sSwVBl1bRPJjWRnOzIV2AE7QvCemkM5eJIo/XD8EZxM6vwU6UycLTyLV/H3rP7NQMo/waBK9THVFXEzYZnoUsYQFk22viKzMxd/mcFkn3JY+0vy3l6ZSvZUIQ/VXr2ovxtebeX2Vyy7nFbJm9u35aqEGQ8FkBzQzjqkHvV44kfTykj09oTAF81kL2qvUXc= oleb@poseidon
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLklgRMuKFTXaTIIVzwlDuK569VeeCJvo5l5fwHt7hOrHs49NBoC6T2kdRebLd58kAEOgB0P1sGE4tjFpCtAMbrhNKRyi3gPmi8LIMkWK6hYu4+QWW/rtmjnERlmTylUzBjjHHB8lWhyq4GRGa1LaiBLtcLC0sKJxCM/hyj28t+ebCl5KoGKQHgJImLz7qcM2TFqYhI/NVi8YZTfYuRhL93J2FyKmaPyDSeQ/rAIbHbQjDNw/nrNOs8xRmluSCuNMO8s6c/LKuSk0OvJjt37oSrDq0Ku2HG2XXETcb5rnA+UgYYSc8S00J0HeDKDxquYk1FaiM0Pe68VgFXxwP/Ys/ lasse@h2410715.stratoserver.net
+++ /dev/null
------BEGIN RSA PRIVATE KEY-----
-MIIEowIBAAKCAQEAy5JYETLihU12kyCFc8JQ7iuevVXngib6OZeX8B7e4Tqx7OPT
-QaAuk9pHUXmy3efJABDoAdD9bBhOLYxaQrQDG64TSkcot4D5ovCyDJFiuoWLuPkF
-lv67Zo5xEZZk8pVMwY4xxwfJVocquBkRmtS2ogS7XCwtLCicQjP4co9vLfnmwpeS
-qBikB4CSJi8+6nDNkxamISPzVYvGGU32LkYS/dydhcipmj8g0nkP6wCGx20IwzcP
-56zTrPMUZpbkgrjTDvLOnPyyrkpNDryY7d+6Eqw6tCrthxtl1xE3G+a5wPlIGGEn
-PEtNCdB3gyg8armJNRWojND3uvFYBV8cD/2LPwIDAQABAoIBAQCOEMs09XXv4Wdm
-tcNsTad9DyPwrgqqYdkuaAS4plKUjAmvcC72FXtr42DyEyQoiKFVUncXDWpODYhB
-cTlsY4PnxUvhAlf/+Bo/BAq9ipiD4r7nj6G/BnZx0+ZEh9hbEqZGTZ2fcGep4xqE
-77nBe8EYwISghpPfxVeHPA2epUrJoeXA3BFenYxY51d0t3qpb5HrrauQgDWdkbrG
-TD7zUutdUIwB16IoHBXyrlEbQXeyTZSazWwqJ9q/+FlBr+beV+cz7ttKPK8NXUOw
-cbmfiUmWs19l4JBddh8uuAFOlO7C0JjXbDATvxQOicVAZf2zfDJKdYdjuOdizWoM
-dhSf0oqBAoGBAPB9mVVHQJHi0MTFuhuQMRyw2xHiezfVHBcBqYoydf3cLKjpKn4v
-7sj7ZZNUJoyM6SRnlQVnZB4MNDzyRbflyztQ9ZJJKw5zJVvuNTt9SMUkPWZcnPnn
-Pp2W+TE5fGFcIh0x1XgdNOW2Jtlp6n6NgIu47yCgg4t4iS0nIwUqh8cZAoGBANiz
-Omju1+uCB5yAH0GHPSogV9a05guIomqUq4Mi+9a1b2wF9joaqY2gVSfnZN1TP5DX
-7WjOtr+GZfLv5l+3IWpcHR9Zdg/Spr/iHydAH2+gCtllH2ceryvmlfDNMzzPxpQ4
-VAbjW3+QwL85BBPJSRQEJP+FIW7KgeNYkcozvOgXAoGAUNu5+U1KrYJYdUCR8YCK
-sr3X+mxux3f0yNt7OIb82wzzSxuSePj+zT6RiXaqu2kJXn8hQL7hj6TEz5UZ0doG
-efwfhT7qpiIa9oziAw19sSMdLdSHxxJ0ICJJyL4uTsHeinhd8NPJHE8hQsp02HYV
-OWVFqW+uqu8tGCxnfu4s1skCgYAduO+RBvmMrugWWihvV3pXNdp2c5d+C36jecLQ
-mNLMD1S6D1NHgvKwn0Yu0/kstkdouYUxs/Cy8l83ZBpIFJk7umiwLRgZcX43oW8+
-dfgZ2mzChrE49qd2MQlt3udhNup42AUGcNbS92rIj6x0fk5MtYjRl1QPmy0XnsVY
-Y6JMfwKBgG/FulgsnG2HfG1FgcTWokevfSrSNZKeobqgM8xPlQhaYXA8XcrygNUM
-QSqELAlJUDPVpdfdDSBgW6l4UZRnQmfw7SCmVyf5bALwK8nXRHlrprzQ+1YeOwMz
-mTIxW07Jgq5RxHSSe8C3wzUz0HcQQh+WVPlie8BHj4z/VpHID5lU
------END RSA PRIVATE KEY-----
+++ /dev/null
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLklgRMuKFTXaTIIVzwlDuK569VeeCJvo5l5fwHt7hOrHs49NBoC6T2kdRebLd58kAEOgB0P1sGE4tjFpCtAMbrhNKRyi3gPmi8LIMkWK6hYu4+QWW/rtmjnERlmTylUzBjjHHB8lWhyq4GRGa1LaiBLtcLC0sKJxCM/hyj28t+ebCl5KoGKQHgJImLz7qcM2TFqYhI/NVi8YZTfYuRhL93J2FyKmaPyDSeQ/rAIbHbQjDNw/nrNOs8xRmluSCuNMO8s6c/LKuSk0OvJjt37oSrDq0Ku2HG2XXETcb5rnA+UgYYSc8S00J0HeDKDxquYk1FaiM0Pe68VgFXxwP/Ys/ lasse@h2410715.stratoserver.net
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <title>moin servus moin</title>
-</head>
-<body>
-<h1>Roblox</h1>
-
-
-
-
-
-
-<h2>All Star Tower Defense</h2>
-
-<img src="Airren.png" height="687" width="1280" alt="Airren" />
-<p> Meinen Zweiter "Mega-Rarer!!" den ich Gesummt habe. Mein erster "Mega-Rare" ist "Wish". Er ist echt OP aber das er nur alle 120sec angreift ist blöd aber die Titanen haben viel HP. Außerdem kann er Powerfulls angreifen ohne ein Upgrade zu haben, das ist echt cool.</p>
-
-<h2> Boku No Roblox Remasttered </h2>
-
-
-
-<p> Es ist ein spiel was von My Hero Academia handelt. <br /> Ich habe Overhoul vom Schaden her ist dieses Guirk das Beste von den Guirks das man durch Spinen bekommen kann. <br /><video src="BokuNoRoblox.mp4" controls>
-<h2>Anime Mania</h2>
\ No newline at end of file
+++ /dev/null
-# ~/.bashrc: executed by bash(1) for non-login shells.
-# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
-# for examples
-
-# Source global definitions
-if [ -f /etc/bash.bashrc ]; then
- . /etc/bash.bashrc
-fi
-
-# If not running interactively, don't do anything
-case $- in
- *i*) ;;
- *) return;;
-esac
-
-# don't put duplicate lines or lines starting with space in the history.
-# See bash(1) for more options
-HISTCONTROL=ignoreboth
-
-# append to the history file, don't overwrite it
-shopt -s histappend
-
-# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
-HISTSIZE=10000
-HISTFILESIZE=20000
-
-# check the window size after each command and, if necessary,
-# update the values of LINES and COLUMNS.
-shopt -s checkwinsize
-
-# If set, the pattern "**" used in a pathname expansion context will
-# match all files and zero or more directories and subdirectories.
-#shopt -s globstar
-
-# make less more friendly for non-text input files, see lesspipe(1)
-[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
-
-# set variable identifying the chroot you work in (used in the prompt below)
-if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
- debian_chroot=$(cat /etc/debian_chroot)
-fi
-
-# Add an "alert" alias for long running commands. Use like so:
-# sleep 10; alert
-alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
-
-# set a fancy prompt (non-color, unless we know we "want" color)
-case "$TERM" in
- xterm-color|*-256color) color_prompt=yes;;
-esac
-
-# uncomment for a colored prompt, if the terminal has the capability; turned
-# off by default to not distract the user: the focus in a terminal window
-# should be on the output of commands, not on the prompt
-#force_color_prompt=yes
-
-if [ -n "$force_color_prompt" ]; then
- if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
- # We have color support; assume it's compliant with Ecma-48
- # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
- # a case would tend to support setf rather than setaf.)
- color_prompt=yes
- else
- color_prompt=
- fi
-fi
-
-if [ "$color_prompt" = yes ]; then
- PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
-else
- PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
-fi
-unset color_prompt force_color_prompt
-
-# If this is an xterm set the title to user@host:dir
-case "$TERM" in
-xterm*|rxvt*)
- PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
- ;;
-*)
- ;;
-esac
-
-# enable color support of ls and also add handy aliases
-if [ -x /usr/bin/dircolors ]; then
- test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
- alias ls='ls --color=auto'
- #alias dir='dir --color=auto'
- #alias vdir='vdir --color=auto'
-
- #alias grep='grep --color=auto'
- #alias fgrep='fgrep --color=auto'
- #alias egrep='egrep --color=auto'
-fi
-
-# colored GCC warnings and errors
-#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
-
-# Alias definitions.
-# You may want to put all your additions into a separate file like
-# ~/.bash_aliases, instead of adding them here directly.
-# See /usr/share/doc/bash-doc/examples in the bash-doc package.
-
-if [ -f ~/.bash_aliases ]; then
- . ~/.bash_aliases
-fi
-
-# enable programmable completion features (you don't need to enable
-# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
-# sources /etc/bash.bashrc).
-#if [ -f /etc/bash_completion ]; then
-# . /etc/bash_completion
-#fi
-
-
-export LS_OPTIONS='--color=auto'
-eval "`dircolors`"
-alias ls='ls $LS_OPTIONS'
-alias la='ls $LS_OPTIONS -la'
-alias ll='ls $LS_OPTIONS -l'
-
-alias grep='grep $LS_OPTIONS'
-
-# enable programmable completion features (you don't need to enable
-# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
-# sources /etc/bash.bashrc).
-if ! shopt -oq posix; then
- if [ -f /usr/share/bash-completion/bash_completion ]; then
- . /usr/share/bash-completion/bash_completion
- elif [ -f /etc/bash_completion ]; then
- . /etc/bash_completion
- fi
-fi
+++ /dev/null
-# ~/.profile: executed by the command interpreter for login shells.
-# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
-# exists.
-# see /usr/share/doc/bash/examples/startup-files for examples.
-# the files are located in the bash-doc package.
-
-# the default umask is set in /etc/profile; for setting the umask
-# for ssh logins, install and configure the libpam-umask package.
-#umask 022
-
-# if running bash
-if [ -n "$BASH_VERSION" ]; then
- # include .bashrc if it exists
- if [ -f "$HOME/.bashrc" ]; then
- . "$HOME/.bashrc"
- fi
-fi
-
-# set PATH so it includes user's private bin if it exists
-if [ -d "$HOME/bin" ] ; then
- PATH="$HOME/bin:$PATH"
-fi
-
-export LANG="de_DE.utf8"
-
+++ /dev/null
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCFTIRs14XVVR3SVlw9QqNhqwKmKrVL5qiERoNfZyCBzwzYq1Jk7kNbN35dVfz7sTXk8r7vCTEwwNIVBqqX8iZhAK/xigiwzgdXf6JM/VrY7rLl4PJnY0mUuePohUcTBNqpZn0QTByvo+y35h1yPTD+g8T2kH5Hcuc2Ofg0stpbM13miyUPIO9T7l76/66KdNvMA5652TVYWlkFFejE8PUbocyvZHrZXVaKUTo1asKRcKEp/4JxeIMQBkuHENZnaHHzzYZ3jTC3RL//Rm5U6nBOYzv+xCC0hRbFtzP6mP1/QqqX+rJkLel+zcabx4OUyAE6sSwVBl1bRPJjWRnOzIV2AE7QvCemkM5eJIo/XD8EZxM6vwU6UycLTyLV/H3rP7NQMo/waBK9THVFXEzYZnoUsYQFk22viKzMxd/mcFkn3JY+0vy3l6ZSvZUIQ/VXr2ovxtebeX2Vyy7nFbJm9u35aqEGQ8FkBzQzjqkHvV44kfTykj09oTAF81kL2qvUXc= oleb@poseidon
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC2bRV5ZGcSEd7ghpgsxdbaywv3vmEaocCHZ2ErWwGl/iFPm5SsSmPXt8fmr/+8+vFnfB/5u3SI55bQM4wvd8RkXNedPya+OQhaBp2jKLgnkfiNOjiroyONmw/QwAOBGxIvYE/5s0aqhXtSJOEBl66Q3DArbEFcLjT1mt3q2vYUM6cVnuGfz6iUPnj4fZWoJ9KU357xHb9J8lVY9zM82dJJ9o5gUHIjjMTSOcnQlgp+HINiQ6Mb6JK0McThVCZlEbwpYfDma17Ts29AbvrO3ho9UW+ie+5HZL2KG2s3EfmGJM1W91VIHsvhqcVOecYeShH04H+HEYbJKsWH14EwduSnx8pqi6ATL8ZtYC4VndjsZQQ0IYkKaYTOAqtJZ2IfWst/VWytgwv4GwMuuH1AKORjFutUCzQsC9exThpE4cB609x2Pc5FoXVrCOgOVzH6AIzYxUTy6ZiJUO1c/vMDPwNllSwePTgLxMFx0ULQF2IEaiHYvFHqc/z+o8hsoLQVYos= matthies@jupiter
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdStYTg3wwWA0pMcvUhATD1C6b7BLCHHD74gQzqA70JR6kGujUbeKGmO3LR/VosdqsxJWNWm5mZZnIyoj8rlzlmjmn2aeUjiCgKJkNYF3Ng+hPvykYPeP17Cq15L+ZVDK41sYIWAsUUlQOCL14IaeracZqAkq9GPflnBP0QCqsQwMDE2xboreHNdD+H1DQIcKGfdj86P2S/9ztSpEbhLRLExcDFmxNRTHk+giAdlh5j7d/ylb9YQoAe3Ev2pI7H4o7VX4U0MQXz1pMAbtAlJBSihi7owL+xK5EtJ0gM7RTCNap64OgaRNRRc4/RyM5+yrEOz6yi7PwarxVd/depg0j matthies@h2410715.stratoserver.net
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8">
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3c.org/1999/xhtml" lang="de">
-<head>
-
-<title> Coockie</title>
-</head>
-<body>
-<ul><li><a href="#reiseziele">Reiseziele</a></li></ul>
-<h1>Der beste Hund der Welt</h1>
-
-<p>Hallo die Tage die ich mit Coockie verbracht habe waren die besten. ich habe mit ihm sehr viel Quatsch gemacht. er ist mein bester Freund.
-<img src="suess.jpg" alt="coockie ist auf dem bild zu sehen" /> </p>
-
-<h1>Roblox</h1>
-<p>in einem Computerspiel namens roblox hat er mir mal das Leben gerettet , weil er auf meinen stärksten Angriff gekommen ist.</p>
-<video src="RobloX-IcH.mp4" controls> Das ist ei ultra krasses Game das heißt Boku No Roblox remastered schaut auch mal rein. LG Matthies </video>
-<h1>Coronakrise</h1>
-<p>Also ich habe viel Verständnis dafür das Politiker auch mal Mist bauen.</p>
-<p>Dieser Coronaaufstand ist die reinste Hölle. Ich will nicht sagen, dass das Coronavirus ungefährlich ist, aber die Politiker wollen nicht einsehen, dass sie uns in eine Pleitewelle stürzen.
-Sehr viele sind schon pleite gegangen z.B. die Schausteller.
-Angela Merkel grenzt alles ein obwohl, die Zahl der Coronainfizierten sinkt.</p>
-
-<h1>
-<a name="reiseziele" />Coole Reiseziele
-</h1>
-<h2>Serengeti Park</h2>
-<p>In dem Serengeti Park Hodenhagen sollte jeder mal gewesen sein, weil man da so gut wie alles machen kann. Zum Beispiel gibt es dort:
-<ul>
-<li>Eine Achterbahn</li>
-<li>Wildwasserbahn</li>
-<li>Tiere die frei herumlaufen</li>
-</ul></p>
-<a href="https://www.serengeti-park.de/" target="_blank">hier kommst du zur Homepage vom Serengeti Park.</a>
-<p>Geht doch auch mal hin, das macht tierisch Spaß!</p>
-<br />
-<h2>Trier die beste Stadt</h2>
-
-
-In Trier sollte jeder mal gewesn sein, weil es da die Törtchenmanufraktur gibt und die haben sehr gute Minitörtchen.
-<a href="http://www.dietoertchenmanufaktur.de/" target="_blank">Hier kommt ihr zur Websete von der Törtchenmanufraktur.</a>
-Die Törtchen haben da so gut geschmeckt ich hätte mir zehn davon reinziehen können.
-
-<br />
-<br /><br />
-<br />
-<br />
-<a href="impressum.html">Impressum</a>
-
-</body>
-</html>
\ No newline at end of file
+++ /dev/null
-<!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<title>Insert title here</title>
-<style>
-canvas#leinwand {
- border: solid 1px Llightgrey;
- background-color: ivory;
- display: block;
-}
-</style>
-<script type="text/javascript">
-</script>
-</head>
-<body>
-<script src="geometrie.js"></script>
-
-<form action="#">
-Höhe:<input type="text" name="hoehe" id="hoehe" />
-Breite:<input type="text" name="breite" id="breite" />
-Seite:<input type="text" name="seite" id="seite" /> (Sechseck)
-<br/>
-<input type="button" value="Rechteck zeichnen" name="zeichnen" onclick="draw('Rechteck')" />
-<input type="button" value="Rechteck berechnen" name="berechnen" onclick="calc('Rechteck')" />
-<br/>
-<input type="button" value="Dreieck zeichnen" name="zeichnen" onclick="draw('Dreieck')" />
-<input type="button" value="Dreieck berechnen" name="berechnen" onclick="calc('Dreieck')" />
-<br/>
-<input type="button" value="Sechseck zeichnen" name="zeichnen" onclick="draw('Sechseck')" />
-<input type="button" value="Sechseck berechnen" name="berechnen" onclick="calc('Sechseck')" />
-<br/>
-Umfang:<input type="text" id="umfang" name="umfang" />
-Flaeche:<input type="text" id="flaeche" name="flaeche" />
-</form>
-
-<canvas id="leinwand" width="1400" height="800"></canvas>
-
-
-
-</body>
-</html>
\ No newline at end of file
+++ /dev/null
-/**
- *
- */
-
-function draw(typ) {
- alert("Ich zeichne ein " + typ + ".");
- var leinwand = document.getElementById('leinwand').getContext('2d');
-
- var start_x=10;
- var start_y=10;
-
- var breite=Number(document.getElementById('breite').value);
- var hoehe=Number(document.getElementById('hoehe').value);
- var seite=Number(document.getElementById('seite').value);
-
- leinwand.beginPath();
- leinwand.lineWidth = 1;
-
- if (typ == "Dreieck") {
- leinwand.moveTo(start_x, start_y);
- leinwand.lineTo(start_x, start_y+hoehe);
- leinwand.lineTo(start_x+breite, start_y);
- leinwand.lineTo(start_x, start_y);
- } else if (typ == "Sechseck") {
- var delta=20+seite;
-
- x1=delta;
- x2=delta+seite/2;
- x3=delta+seite*3/2;
- x4=delta+seite*2;
- y1=delta;
- y2=delta+seite*Math.sqrt(3)/2;
- y3=delta+seite*Math.sqrt(3);
-
- leinwand.moveTo(x2, y1);
- leinwand.lineTo(x3, y1);
- leinwand.lineTo(x4, y2);
- leinwand.lineTo(x3, y3);
- leinwand.lineTo(x2, y3);
- leinwand.lineTo(x1, y2);
- leinwand.lineTo(x2, y1);
- } else {
- leinwand.rect(start_x, start_y, breite, hoehe);
- }
-
- leinwand.stroke();
-
-}
-
-function calc(typ) {
- alert("Ich berechne ein " + typ + ".");
-
- var breite=Number(document.getElementById('breite').value);
- var hoehe=Number(document.getElementById('hoehe').value);
- var seite=Number(document.getElementById('seite').value);
-
- if (typ == "Dreieck") {
- var umfang = hoehe + breite + Math.sqrt(hoehe*hoehe + breite*breite);
- var flaeche=(hoehe * breite)/2;
- } else if (typ == "Sechseck") {
- var umfang = seite * 6;
- var flaeche = Math.pow(seite, 2) * Math.sqrt(3) * 3 / 2;
- } else {
- var umfang=2 * (hoehe + breite);
- var flaeche=(hoehe * breite);
-
- }
-
- document.getElementById('umfang').value = umfang;
- document.getElementById('flaeche').value = flaeche;
-
-}
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <title>Impressum</title>
-</head>
-<body>
-<h1>Angaben gemäß §5 TMG:</h1>
-<p>Matthies Gehrmann<br />
-Marienweg 37<br />
-57234 Wilnsdorf<br />
-webmaster@matthies-gehrmann.de</p>
-</body>
-</html>
\ No newline at end of file
+++ /dev/null
-<?php
-
-require ("db/database_functions_pgsql.php");
-require ("db/database_functions_insert.php");
-require ("db/database_functions_select.php");
-require ("db/database_functions_update.php");
-require ("db/database_functions_delete.php");
-
-?>
\ No newline at end of file
+++ /dev/null
-<?php
-
-
-function generateDeleteSchema($schema, $table, $col, $value) {
- $delete_str = "DELETE FROM ".$schema.".".$table." WHERE (".$col."=".$value.");";
- //echo debugPrint($delete_str);
- return $delete_str;
-}
-
-function generateDelete($table, $col, $value) {
- $delete_str = "DELETE FROM ".$table." WHERE (".$col."=".$value.");";
- //echo debugPrint($delete_str);
- return $delete_str;
-}
-
-?>
\ No newline at end of file
+++ /dev/null
-<?php
-
-
-function generateInsertSchema($schema, $table, $values) {
- $insert_str = "INSERT INTO ".$schema.".".$table." VALUES (";
-
- //print_r($values);
- $anzValues = count($values);
- for ($i = 0 ; $i < $anzValues; $i++) {
-
- $value = pg_escape_string($values[$i]);
-
- if (is_numeric($value) || $value == "DEFAULT") {
- $insert_str .= $value;
- } else {
- $insert_str .= "'".$value."'";
- }
-
- if ($i < $anzValues-1) {
- $insert_str .= ", ";
- }
- }
-
- $insert_str .= ");";
- //echo $insert_str;
- //echo debugPrint($insert_str);
- return $insert_str;
-}
-
-function generateInsert($table, $values) {
- $insert_str = "INSERT INTO ".SCHMEA.".".$table." VALUES (";
-
- //print_r($values);
- $anzValues = count($values);
- for ($i = 0 ; $i < $anzValues; $i++) {
-
- $value = pg_escape_string($values[$i]);
-
- if (is_numeric($val)) {
- $insert_str .= $value;
- } else {
- $insert_str .= "'".$value."'";
- }
-
- if ($i < $anzValues-1) {
- $insert_str .= ", ";
- }
- }
-
- $insert_str .= ");";
- //echo debugPrint($insert_str);
- return $insert_str;
-}
-
-?>
\ No newline at end of file
+++ /dev/null
-<?php
-
-/**
- * Mit PostgresSQL verbinden */
-function getDBConnection() {
-
- $str_connection = "host=".HOST." port=5432 dbname=".DB." user=".USER." password=".PASS." ";
- // mit DB verbinden
- $connect_dbms_handle = @pg_connect($str_connection) or die('Verbindungsaufbau fehlgeschlagen: ' . pg_last_error());
-
- if ($connect_dbms_handle) {
- return $connect_dbms_handle;
- } else {
- echo "Datenbankabfrage fehlgeschlagen!";
- echo pg_last_error($connect_dbms_handle);
- return false;
- }
-}
-
-/**
- * PostgresSQL-Verbindung schliessen */
-function closeDBConnection($ref_connection) {
- @pg_close($ref_connection) or die('Verbindungsclose fehlgeschlagen: ');
- echo pg_last_error($ref_connection);
-}
-
-
-// SQL an DB absetzen
-// Parameter: Tablle, Feld(er), Wert(e)
-// Rückgabewert: boolean
-function getBooleanData ($dbms_connection, $db_query) {
- // Variablen
- $return_bool_value = false ;
-
- // DB Abfage starten
- //echo $db_query;
- $res_sql_result = pg_query ($dbms_connection, $db_query);
- // Gültigkeit der DB Abfage testen
- if ($res_sql_result) {
- //echo "<li>".$res_sql_result;
- $return_bool_value = true;
- } else {
- return "Datenbankabfrage fehlgeschlagen!";
- }
-
- return $return_bool_value;
-}
-
-
-// SQL an DB absetzen
-// Parameter: Tablle, Feld(er), Wert(e)
-// Rückgabewert: Array
-function getData ($dbms_connection, $db_query) {
- $return_arr_data = array(); // Rückgabewert als Array
- //echo "\n<p> SQL:<br>".$ref_str_db_query."</p>";
-
- // DB Abfage starten
- //echo $db_query;
- $res_sql_result = pg_query ($dbms_connection, $db_query);
- // Gültigkeit der DB Abfage testen
- if ($res_sql_result) {
- //echo "<p>".$res_sql_result."</p>";
- while ($arr_sql_data = pg_fetch_row($res_sql_result)) {
- //echo debugPrint($arr_sql_data);
- array_push ($return_arr_data, $arr_sql_data);
- }
- //var_dump( $return_arr_data);
- } else {
- return "Datenbankabfrage fehlgeschlagen!";
- }
-
- return $return_arr_data;
-}
-
-
-?>
\ No newline at end of file
+++ /dev/null
-<?php
-function generateSelect ($selectedFields, $table) {
- $select_str = "SELECT ";
-
- //print_r($selectedFields);
- $anzFields = count($selectedFields);
- for ($i = 0 ; $i < $anzFields; $i++) {
- $select_str .= $selectedFields[$i];
- if ($i < $anzFields-1) {
- $select_str .= ", ";
- }
- }
-
- $select_str .= " FROM ".SCHEMA.".".$table;
-
- $select_str .= ";";
-
- //echo $select_str;
- return $select_str;
-}
-
-
-function generateSelectWhereOrder ($selectedFields, $table, $whereClause, $orderClause) {
- $select_str = "SELECT ";
-
- //print_r($selectedFields);
- $anzFields = count($selectedFields);
- for ($i = 0 ; $i < $anzFields; $i++) {
- $select_str .= $selectedFields[$i];
- if ($i < $anzFields-1) {
- $select_str .= ", ";
- }
- }
-
- $select_str .= " FROM ".SCHEMA.".".$table;
-
- if ($whereClause != null) {
- $select_str .= " WHERE ";
-
- //print_r($whereClause);
- $anzWheres = count($whereClause);
- for ($i = 0 ; $i < $anzWheres; $i++) {
- $select_str .= $whereClause[$i];
- if ($i < $anzWheres-1) {
- $select_str .= " AND ";
- }
- }
- }
-
- if ($orderClause != null) {
- $select_str .= " ORDER BY ";
-
- //print_r($orderClause);
- $anzOrders = count($orderClause);
- for ($i = 0 ; $i < $anzOrders; $i++) {
- $select_str .= $orderClause[$i];
- if ($i < $anzOrders-1) {
- $select_str .= ", ";
- }
- }
- }
-
- $select_str .= ";";
-
- //echo $select_str;
- return $select_str;
-}
-
-
-?>
\ No newline at end of file
+++ /dev/null
-<?php
-
-
-?>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <title></title>
-</head>
-<body>
-<form action="rechner.php?ctype=base" method="post" enctype="application/x-www-form-urlencoded">
-<h1>Grundrechenarten</h1>
-<table>
-<tr><td>
-<input type="number" name="zahl1" size="6" maxlength="6">
-</td><td>
-<input type="submit" name="operation" value="+" /><br />
-<input type="submit" name="operation" value="-" /><br />
-<input type="submit" name="operation" value="*" /><br />
-<input type="submit" name="operation" value="/" />
-</td><td>
-<input type="number" name="zahl2" size="6" maxlength="6">
-</td></tr>
-</table>
-</form>
-
-<form action="rechner.php?ctype=frac" method="post" enctype="application/x-www-form-urlencoded">
-<h1>Bruchrechnung</h1>
-<table>
-<tr><td>
-<input type="number" name="zaehler1" size="6" maxlength="6">
-<hr />
-<input type="number" name="nenner1" size="6" maxlength="6">
-</td><td>
-<input type="submit" name="operation" value="+" /><br />
-<input type="submit" name="operation" value="-" /><br />
-<input type="submit" name="operation" value="*" /><br />
-<input type="submit" name="operation" value="/" />
-</td><td>
-<input type="number" name="zaehler2" size="6" maxlength="6">
-<hr />
-<input type="number" name="nenner2" size="6" maxlength="6">
-</form>
-</td></tr>
-</table>
-
-<?php
-
-$y="";
-$x="";
-$operation="";
-$result="";
-
-var_dump($_POST);
-var_dump($_GET);
-
-if(!empty($_POST)) {
-
- $y=$_POST['zahl1'];
- $x=$_POST['zahl2'];
- $operation=$_POST['operation'];
-
-}
-
-if(!empty($_POST)) {
-
- $ctype=$_GET['ctype'];
-}
-
-
-echo "<p>operation: ".$x." ".$operation." ".$y."</p>";
-
-if(strlen($x) > 0 && strlen($y) > 0) {
-
- switch($operation) {
- case '+' : $result=(float)$y+(float)$x;
- break;
- case '-' : $result=(float)$y-(float)$x;
- break;
- case '*' : $result=(float)$y*(float)$x;
- break;
- case '/' : if($x != 0) {
- $result=(float)$y/(float)$x;
- } else {
- echo "nice try - Du hast versucht durch null zu teilen....";
- }
- break;
- default : echo "I am in ur house";
- }
-
- echo "<p>Ergebnis: ".$result."</p>";
-} else {
- echo "Beide Eingabefelder müssen gefüllt sein and I am in ur house.";
-}
-
-
-
-?>
-</body>
-</html>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <title>Sportprotokoll</title>
- <link rel="stylesheet" href="sporttabelle.css">
-</head>
-<body>
-<form action="sporttabelle.php" method="post" enctype="application/x-www-form-urlencoded">
-
-Datum: <label for="tag">Tag:</label><input type="number" name="tag" size="2" />
-
-Monat: <select name="monat" size="1">
-<option>1</option>
-<option>2</option>
-<option>3</option>
-<option>4</option>
-<option>5</option>
-<option>6</option>
-<option>7</option>
-<option>8</option>
-<option>9</option>
-<option>10</option>
-<option>11</option>
-<option>12</option>
-</select>
-
-
-Jahr: <input type="number" name="jahr" size="4" />
-
-<br /><br />
-
-Person: <input type="text" name="person" size="15" maxlength="25" />
-
-<br /><br />
-
-Aktivität: <input type="text" name="aktivitaet" size="15" maxlength="30" />
-
-<br /><br />
-
-Uhrzeit: <input type="number" name="stunde" size="2" /> : <input type="number" name="minute" size="2" />
-
-<br /><br />
-
-Grund: <textarea name="grund" rows="4" cols="50"></textarea>
-
-<br /><br />
-
-Strecke: <input type="number" name="strecke" size="3" maxlength="3" /> Kilometer ps: schau da vorbei: <a href="geometrie.html" >Geometrie</a>
-
-<br /><br />
-
-Leistung: <input type="text" name="leistung" size="15" maxlength="15" />
-
-<br /><br />
-
-verbrauchte Kalorien: <input type="number" name="leistung" size="5" /> kcal
-
-<br /><br />
-
-Dauer: <input type="number" name="dauer_std" size="2" />:<input type="number" name="dauer_min" size="2" /> hh:mm
-
-<br /><br />
-Anstrengung <select name="anstrengung">
-
-
-<option>1</option>
-<option>2</option>
-<option>3</option>
-<option>4</option>
-<option>5</option>
-<option>6</option>
-<option>7</option>
-<option>8</option>
-<option>9</option>
-<option>10</option>
-</select>
-
-<h5> 10=schwer, 1=einfach </h5>
-<br /><br />
-Ort:<input type="text" name="ort" size="5" maxlength="100" />
-
-
-Bemerkung: <textarea name="bemerkung" rows="25" cols="50" >Hallo hier kannst du den ort wo du warst beschreiben. </textarea>
-<br /><br />
-
-Wetter:<input type="text" name="wetter" size="20" maxlength="30" />
-
-Temperatur:<input type="number" name="temperatur" size="2" />
-
-<br /><br />
-<input type="submit" name="speichern" value="speichern" />
-
-</form>
-
-
-<h1>Regeln sind:</h1>
-
-
- 1. Nicht mehr als fünf Einträge pro Tag u. Person.
-<br /><br />
- 2. Max 3h pro Einheit.
-<br /><br />
- 3. Max 10 h pro Tag (Erwachsene)
-<br /><br />
- 4. Max 6-7 h pro Tag (Kind)
-<br /><br />
- 5. Keine Einträge für die Zukunft
- <br /><br />
- ps:viel spaß beim Sport.
- <br /><br />
- pps:Ich bin erst elf u. habe alles selbst gemacht.
-
-</body>
-</html>
\ No newline at end of file
+++ /dev/null
-
-body {
- background-color: #ed00ae;
-}
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <title>Sportprotokoll</title>
- <link rel="stylesheet" href="sporttabelle.css">
-</head>
-<body>
-
-
-<?php
-
-echo "speichere Daten:\t$_POST\n";
-
-foreach($_POST as $key => $value)
-{
-echo $key . " => " . $value;
-}
-
-
-
-
-
-
-
-?>
-
-
-<form action="sporttabelle.php" method="post" enctype="application/x-www-form-urlencoded">
-
-Datum: <label for="tag">Tag:</label><input type="number" name="tag" size="2" />
-
-Monat: <select name="monat" size="1">
-<option>1</option>
-<option>2</option>
-<option>3</option>
-<option>4</option>
-<option>5</option>
-<option>6</option>
-<option>7</option>
-<option>8</option>
-<option>9</option>
-<option>10</option>
-<option>11</option>
-<option>12</option>
-</select>
-
-
-Jahr: <input type="number" name="jahr" size="4" />
-
-<br /><br />
-
-Person: <input type="text" name="person" size="15" maxlength="25" />
-
-<br /><br />
-
-Aktivität: <input type="text" name="aktivitaet" size="15" maxlength="30" />
-
-<br /><br />
-
-Uhrzeit: <input type="number" name="stunde" size="2" /> : <input type="number" name="minute" size="2" />
-
-<br /><br />
-
-Grund: <textarea name="grund" rows="4" cols="50"></textarea>
-
-<br /><br />
-
-Strecke: <input type="number" name="strecke" size="3" maxlength="3" /> Kilometer ps: schau da vorbei: <a href="geometrie.html" >Geometrie</a>
-
-<br /><br />
-
-Leistung: <input type="text" name="leistung" size="15" maxlength="15" />
-
-<br /><br />
-
-verbrauchte Kalorien: <input type="number" name="leistung" size="5" /> kcal
-
-<br /><br />
-
-Dauer: <input type="number" name="dauer_std" size="2" />:<input type="number" name="dauer_min" size="2" /> hh:mm
-
-<br /><br />
-Anstrengung <select name="anstrengung">
-
-
-<option>1</option>
-<option>2</option>
-<option>3</option>
-<option>4</option>
-<option>5</option>
-<option>6</option>
-<option>7</option>
-<option>8</option>
-<option>9</option>
-<option>10</option>
-</select>
-
-<h5> 10=schwer, 1=einfach </h5>
-<br /><br />
-Ort:<input type="text" name="ort" size="5" maxlength="100" />
-
-
-Bemerkung: <textarea name="bemerkung" rows="25" cols="50" >Hallo hier kannst du den ort wo du warst beschreiben. </textarea>
-<br /><br />
-
-Wetter:<input type="text" name="wetter" size="20" maxlength="30" />
-
-Temperatur:<input type="number" name="temperatur" size="2" />
-
-<br /><br />
-<input type="submit" name="speichern" value="speichern" />
-
-</form>
-
-
-<h1>Regeln sind:</h1>
-
-
- 1. Nicht mehr als fünf Einträge pro Tag u. Person.
-<br /><br />
- 2. Max 3h pro Einheit.
-<br /><br />
- 3. Max 10 h pro Tag (Erwachsene)
-<br /><br />
- 4. Max 6-7 h pro Tag (Kind)
-<br /><br />
- 5. Keine Einträge für die Zukunft
- <br /><br />
- ps:viel spaß beim Sport.
- <br /><br />
- pps:Ich bin erst elf u. habe alles selbst gemacht.
-
-</body>
-</html>
+++ /dev/null
-# ~/.bashrc: executed by bash(1) for non-login shells.
-# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
-# for examples
-
-# Source global definitions
-if [ -f /etc/bash.bashrc ]; then
- . /etc/bash.bashrc
-fi
-
-# If not running interactively, don't do anything
-case $- in
- *i*) ;;
- *) return;;
-esac
-
-# don't put duplicate lines or lines starting with space in the history.
-# See bash(1) for more options
-HISTCONTROL=ignoreboth
-
-# append to the history file, don't overwrite it
-shopt -s histappend
-
-# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
-HISTSIZE=10000
-HISTFILESIZE=20000
-
-# check the window size after each command and, if necessary,
-# update the values of LINES and COLUMNS.
-shopt -s checkwinsize
-
-# If set, the pattern "**" used in a pathname expansion context will
-# match all files and zero or more directories and subdirectories.
-#shopt -s globstar
-
-# make less more friendly for non-text input files, see lesspipe(1)
-[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
-
-# set variable identifying the chroot you work in (used in the prompt below)
-if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
- debian_chroot=$(cat /etc/debian_chroot)
-fi
-
-# Add an "alert" alias for long running commands. Use like so:
-# sleep 10; alert
-alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
-
-# set a fancy prompt (non-color, unless we know we "want" color)
-case "$TERM" in
- xterm-color|*-256color) color_prompt=yes;;
-esac
-
-# uncomment for a colored prompt, if the terminal has the capability; turned
-# off by default to not distract the user: the focus in a terminal window
-# should be on the output of commands, not on the prompt
-#force_color_prompt=yes
-
-if [ -n "$force_color_prompt" ]; then
- if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
- # We have color support; assume it's compliant with Ecma-48
- # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
- # a case would tend to support setf rather than setaf.)
- color_prompt=yes
- else
- color_prompt=
- fi
-fi
-
-if [ "$color_prompt" = yes ]; then
- PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
-else
- PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
-fi
-unset color_prompt force_color_prompt
-
-# If this is an xterm set the title to user@host:dir
-case "$TERM" in
-xterm*|rxvt*)
- PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
- ;;
-*)
- ;;
-esac
-
-# enable color support of ls and also add handy aliases
-if [ -x /usr/bin/dircolors ]; then
- test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
- alias ls='ls --color=auto'
- #alias dir='dir --color=auto'
- #alias vdir='vdir --color=auto'
-
- #alias grep='grep --color=auto'
- #alias fgrep='fgrep --color=auto'
- #alias egrep='egrep --color=auto'
-fi
-
-# colored GCC warnings and errors
-#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
-
-# Alias definitions.
-# You may want to put all your additions into a separate file like
-# ~/.bash_aliases, instead of adding them here directly.
-# See /usr/share/doc/bash-doc/examples in the bash-doc package.
-
-if [ -f ~/.bash_aliases ]; then
- . ~/.bash_aliases
-fi
-
-# enable programmable completion features (you don't need to enable
-# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
-# sources /etc/bash.bashrc).
-#if [ -f /etc/bash_completion ]; then
-# . /etc/bash_completion
-#fi
-
-
-export LS_OPTIONS='--color=auto'
-eval "`dircolors`"
-alias ls='ls $LS_OPTIONS'
-alias la='ls $LS_OPTIONS -la'
-alias ll='ls $LS_OPTIONS -l'
-
-alias grep='grep $LS_OPTIONS'
-
-# enable programmable completion features (you don't need to enable
-# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
-# sources /etc/bash.bashrc).
-if ! shopt -oq posix; then
- if [ -f /usr/share/bash-completion/bash_completion ]; then
- . /usr/share/bash-completion/bash_completion
- elif [ -f /etc/bash_completion ]; then
- . /etc/bash_completion
- fi
-fi
+++ /dev/null
-localhost:5432:*:postgres:B9cr--ZvfF@5cMdu
-*:*:*:oleb:wpj_9+L6ukX+SN2-
-localhost:5432:*:oleb:wpj_9+L6ukX+SN2-
+++ /dev/null
-# ~/.profile: executed by the command interpreter for login shells.
-# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
-# exists.
-# see /usr/share/doc/bash/examples/startup-files for examples.
-# the files are located in the bash-doc package.
-
-# the default umask is set in /etc/profile; for setting the umask
-# for ssh logins, install and configure the libpam-umask package.
-#umask 022
-
-# if running bash
-if [ -n "$BASH_VERSION" ]; then
- # include .bashrc if it exists
- if [ -f "$HOME/.bashrc" ]; then
- . "$HOME/.bashrc"
- fi
-fi
-
-# set PATH so it includes user's private bin if it exists
-if [ -d "$HOME/bin" ] ; then
- PATH="$HOME/bin:$PATH"
-fi
-
-export LANG="de_DE.utf8"
-
+++ /dev/null
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCFTIRs14XVVR3SVlw9QqNhqwKmKrVL5qiERoNfZyCBzwzYq1Jk7kNbN35dVfz7sTXk8r7vCTEwwNIVBqqX8iZhAK/xigiwzgdXf6JM/VrY7rLl4PJnY0mUuePohUcTBNqpZn0QTByvo+y35h1yPTD+g8T2kH5Hcuc2Ofg0stpbM13miyUPIO9T7l76/66KdNvMA5652TVYWlkFFejE8PUbocyvZHrZXVaKUTo1asKRcKEp/4JxeIMQBkuHENZnaHHzzYZ3jTC3RL//Rm5U6nBOYzv+xCC0hRbFtzP6mP1/QqqX+rJkLel+zcabx4OUyAE6sSwVBl1bRPJjWRnOzIV2AE7QvCemkM5eJIo/XD8EZxM6vwU6UycLTyLV/H3rP7NQMo/waBK9THVFXEzYZnoUsYQFk22viKzMxd/mcFkn3JY+0vy3l6ZSvZUIQ/VXr2ovxtebeX2Vyy7nFbJm9u35aqEGQ8FkBzQzjqkHvV44kfTykj09oTAF81kL2qvUXc= oleb@poseidon
+++ /dev/null
-<?php
-
- $i=0;
- $adresses = array("sport@triathlon-coaching.com","kontakt@triathlon-coaching.com","kontakt@laktatnebel.de");
-
- foreach ($adresses as $row) {
-
-
- echo ++$i."\t".$row."\n";
-
- $mail_recipient = $row;
- $mail_subject = "Testmaili an: ".$row;
- $mail_str = $mail_subject;
- $mail_header = "From: kontakt@triathlon-coaching.com <kontakt@triathlon-coaching.com>\r\nMIME-Version: 1.0\r\nContent-type: text/plain; charset=utf-8\r\n";
-
- $res_mail = mail($mail_recipient, $mail_subject, $mail_str, $mail_header);
-
- if ($res_mail) {
- echo "\t\tGesendet\n";
- } else {
- echo "\t\tNicht gesendet\n";
- }
-
- }
-
-?>
+++ /dev/null
-#!/bin/sh
-
-BACKUPDIR=/var/bckp
-
-# Datum
-TODAY=`date +%Y%m%d`
-YESTERDAY=`date --date='-1 day' +%Y%m%d`
-DAYBEFOREYESTERDAY=`date --date='-2 day' +%Y%m%d`
-
-GLOBAL_LOG=/var/log/bckp2ftp.${TODAY}.log
-
-echo "START Backup ${TODAY}" >> ${GLOBAL_LOG} 2>&1
-date >> ${GLOBAL_LOG} 2>&1
-
-TARFILE=${BACKUPDIR}/sync/${YESTERDAY}.tar.gz
-tar -czf ${TARFILE} ${BACKUPDIR}/sync/${YESTERDAY} >> ${GLOBAL_LOG} 2>&1
-
-ENCFILE=${BACKUPDIR}/sync/${YESTERDAY}.tar.gz.enc
-openssl enc -e -aes256 -in ${TARFILE} -out ${ENCFILE} -pass file:/root/.bckp_passwd >> ${GLOBAL_LOG} 2>&1
-
-mv -v ${ENCFILE} ${BACKUPDIR}/ftpsyncdir/ >> ${GLOBAL_LOG} 2>&1
-rm -v ${TARFILE} >> ${GLOBAL_LOG} 2>&1
-rm -Rfv ${BACKUPDIR}/sync/${DAYBEFOREYESTERDAY} >> ${GLOBAL_LOG} 2>&1
-
-SIZE=`du -s ${BACKUPDIR}/ftpsyncdir/ | sed "s/[a-z\/]//g" | tr -d [:space:]`
-echo "${SIZE} in FTP-Space" >> ${GLOBAL_LOG} 2>&1
-while [ 450000000 -le ${SIZE} ] ; do
- OLDESTFILE=`find ${BACKUPDIR}/ftpsyncdir/ -name "*enc" | head -1`
-
- rm -v ${OLDESTFILE} >> ${GLOBAL_LOG} 2>&1
-
- SIZE=`du -s ${BACKUPDIR}/ftpsyncdir/ | sed "s/[a-z\/]//g" | tr -d [:space:]`
-done
-
-echo "END Backup ${TODAY}" >> ${GLOBAL_LOG} 2>&1
-date >> ${GLOBAL_LOG} 2>&1
-
-exit 0
+++ /dev/null
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>de.laktatnebel.admin</groupId>
- <artifactId>vps2462554.fastwebserver.de</artifactId>
- <version>0.0.1-SNAPSHOT</version>
-
- <name>Administration-${artifactId}</name>
-
- <parent>
- <groupId>de.laktatnebel.admin</groupId>
- <artifactId>serversandclients</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
-
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
-
-</project>
\ No newline at end of file
+++ /dev/null
-# PostgreSQL Client Authentication Configuration File
-# ===================================================
-#
-# Refer to the "Client Authentication" section in the PostgreSQL
-# documentation for a complete description of this file. A short
-# synopsis follows.
-#
-# This file controls: which hosts are allowed to connect, how clients
-# are authenticated, which PostgreSQL user names they can use, which
-# databases they can access. Records take one of these forms:
-#
-# local DATABASE USER METHOD [OPTIONS]
-# host DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostssl DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostgssenc DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostnogssenc DATABASE USER ADDRESS METHOD [OPTIONS]
-#
-# (The uppercase items must be replaced by actual values.)
-#
-# The first field is the connection type: "local" is a Unix-domain
-# socket, "host" is either a plain or SSL-encrypted TCP/IP socket,
-# "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a
-# non-SSL TCP/IP socket. Similarly, "hostgssenc" uses a
-# GSSAPI-encrypted TCP/IP socket, while "hostnogssenc" uses a
-# non-GSSAPI socket.
-#
-# DATABASE can be "all", "sameuser", "samerole", "replication", a
-# database name, or a comma-separated list thereof. The "all"
-# keyword does not match "replication". Access to replication
-# must be enabled in a separate record (see example below).
-#
-# USER can be "all", a user name, a group name prefixed with "+", or a
-# comma-separated list thereof. In both the DATABASE and USER fields
-# you can also write a file name prefixed with "@" to include names
-# from a separate file.
-#
-# ADDRESS specifies the set of hosts the record matches. It can be a
-# host name, or it is made up of an IP address and a CIDR mask that is
-# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that
-# specifies the number of significant bits in the mask. A host name
-# that starts with a dot (.) matches a suffix of the actual host name.
-# Alternatively, you can write an IP address and netmask in separate
-# columns to specify the set of hosts. Instead of a CIDR-address, you
-# can write "samehost" to match any of the server's own IP addresses,
-# or "samenet" to match any address in any subnet that the server is
-# directly connected to.
-#
-# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256",
-# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert".
-# Note that "password" sends passwords in clear text; "md5" or
-# "scram-sha-256" are preferred since they send encrypted passwords.
-#
-# OPTIONS are a set of options for the authentication in the format
-# NAME=VALUE. The available options depend on the different
-# authentication methods -- refer to the "Client Authentication"
-# section in the documentation for a list of which options are
-# available for which authentication methods.
-#
-# Database and user names containing spaces, commas, quotes and other
-# special characters must be quoted. Quoting one of the keywords
-# "all", "sameuser", "samerole" or "replication" makes the name lose
-# its special character, and just match a database or username with
-# that name.
-#
-# This file is read on server startup and when the server receives a
-# SIGHUP signal. If you edit the file on a running system, you have to
-# SIGHUP the server for the changes to take effect, run "pg_ctl reload",
-# or execute "SELECT pg_reload_conf()".
-#
-# Put your actual configuration here
-# ----------------------------------
-#
-# If you want to allow non-local connections, you need to add more
-# "host" records. In that case you will also need to make PostgreSQL
-# listen on a non-local interface via the listen_addresses
-# configuration parameter, or via the -i or -h command line switches.
-
-
-
-
-# DO NOT DISABLE!
-# If you change this first entry you will need to make sure that the
-# database superuser can access the database using some other method.
-# Noninteractive access to all databases is required during automatic
-# maintenance (custom daily cronjobs, replication, and similar tasks).
-#
-
-
-# Database administrative login by Unix domain socket
-#local all postgres peer
-#local all postgres trust
-local all postgres md5
-
-# TYPE DATABASE USER ADDRESS METHOD
-
-# DAVICAL
-# for local davical users
-local davical davical_app trust
-local davical davical_dba trust
-# for davical web-application
-host davical davical_app ::1/128 md5
-
-
-# AGENDAV - Kalender-WebUI
-# for local agendav user
-local agendav agendav md5
-# for agendav web-ui
-host agendav agendav ::1/128 md5
-
-
-# TICKET
-host tickets oleb ::1/128 md5
-
-
-# WEBMAIL
-host rainloop rainloop ::1/128 md5
-
-
-# PHPPGADMIN
-# host all all 127.0.0.1/32 trust
-host all all 127.0.0.1/32 md5
-
-
-# PROFTPD
-host serveradmin proftp ::1/128 md5
-
-
-# MAILSERVER
-host serveradmin mailserver_manage ::1/128 md5
-
-
-# ANWENDUNGEN
-host laktatnebel laktatnebel ::1/128 md5
-host home matthies ::1/128 md5
-
-
-
-
-# "local" is for Unix domain socket connections only
-local all all peer
-# IPv4 local connections:
-host all postgres 127.0.0.1/32 md5
-# IPv6 local connections:
-host all postgres ::1/128 md5
-# Allow replication connections from localhost, by a user with the
-# replication privilege.
-local replication all peer
-host replication all 127.0.0.1/32 md5
-host replication all ::1/128 md5
+++ /dev/null
-# PostgreSQL Client Authentication Configuration File
-# ===================================================
-#
-# Refer to the "Client Authentication" section in the PostgreSQL
-# documentation for a complete description of this file. A short
-# synopsis follows.
-#
-# This file controls: which hosts are allowed to connect, how clients
-# are authenticated, which PostgreSQL user names they can use, which
-# databases they can access. Records take one of these forms:
-#
-# local DATABASE USER METHOD [OPTIONS]
-# host DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostssl DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostgssenc DATABASE USER ADDRESS METHOD [OPTIONS]
-# hostnogssenc DATABASE USER ADDRESS METHOD [OPTIONS]
-#
-# (The uppercase items must be replaced by actual values.)
-#
-# The first field is the connection type: "local" is a Unix-domain
-# socket, "host" is either a plain or SSL-encrypted TCP/IP socket,
-# "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a
-# non-SSL TCP/IP socket. Similarly, "hostgssenc" uses a
-# GSSAPI-encrypted TCP/IP socket, while "hostnogssenc" uses a
-# non-GSSAPI socket.
-#
-# DATABASE can be "all", "sameuser", "samerole", "replication", a
-# database name, or a comma-separated list thereof. The "all"
-# keyword does not match "replication". Access to replication
-# must be enabled in a separate record (see example below).
-#
-# USER can be "all", a user name, a group name prefixed with "+", or a
-# comma-separated list thereof. In both the DATABASE and USER fields
-# you can also write a file name prefixed with "@" to include names
-# from a separate file.
-#
-# ADDRESS specifies the set of hosts the record matches. It can be a
-# host name, or it is made up of an IP address and a CIDR mask that is
-# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that
-# specifies the number of significant bits in the mask. A host name
-# that starts with a dot (.) matches a suffix of the actual host name.
-# Alternatively, you can write an IP address and netmask in separate
-# columns to specify the set of hosts. Instead of a CIDR-address, you
-# can write "samehost" to match any of the server's own IP addresses,
-# or "samenet" to match any address in any subnet that the server is
-# directly connected to.
-#
-# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256",
-# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert".
-# Note that "password" sends passwords in clear text; "md5" or
-# "scram-sha-256" are preferred since they send encrypted passwords.
-#
-# OPTIONS are a set of options for the authentication in the format
-# NAME=VALUE. The available options depend on the different
-# authentication methods -- refer to the "Client Authentication"
-# section in the documentation for a list of which options are
-# available for which authentication methods.
-#
-# Database and user names containing spaces, commas, quotes and other
-# special characters must be quoted. Quoting one of the keywords
-# "all", "sameuser", "samerole" or "replication" makes the name lose
-# its special character, and just match a database or username with
-# that name.
-#
-# This file is read on server startup and when the server receives a
-# SIGHUP signal. If you edit the file on a running system, you have to
-# SIGHUP the server for the changes to take effect, run "pg_ctl reload",
-# or execute "SELECT pg_reload_conf()".
-#
-# Put your actual configuration here
-# ----------------------------------
-#
-# If you want to allow non-local connections, you need to add more
-# "host" records. In that case you will also need to make PostgreSQL
-# listen on a non-local interface via the listen_addresses
-# configuration parameter, or via the -i or -h command line switches.
-
-
-
-
-# DO NOT DISABLE!
-# If you change this first entry you will need to make sure that the
-# database superuser can access the database using some other method.
-# Noninteractive access to all databases is required during automatic
-# maintenance (custom daily cronjobs, replication, and similar tasks).
-#
-
-
-# Database administrative login by Unix domain socket
-#local all postgres peer
-#local all postgres trust
-local all postgres md5
-
-# TYPE DATABASE USER ADDRESS METHOD
-
-# "local" is for Unix domain socket connections only
-local all all peer
-# IPv4 local connections:
-host all postgres 127.0.0.1/32 md5
-# IPv6 local connections:
-host all postgres ::1/128 md5
-# Allow replication connections from localhost, by a user with the
-# replication privilege.
-local replication all peer
-host replication all 127.0.0.1/32 md5
-host replication all ::1/128 md5
+++ /dev/null
-# see "man logrotate" for details
-
-# global options do not affect preceding include directives
-
-# rotate log files weekly
-weekly
-
-# keep 4 weeks worth of backlogs
-rotate 4
-
-# create new (empty) log files after rotating old ones
-create
-
-# use date as a suffix of the rotated file
-#dateext
-
-# uncomment this if you want your log files compressed
-#compress
-
-# packages drop log rotation information into this directory
-include /etc/logrotate.d
-
-# system-specific logs may also be configured here.
+++ /dev/null
-/var/log/alternatives.log {
- monthly
- rotate 12
- compress
- delaycompress
- missingok
- notifempty
- create 644 root root
-}
+++ /dev/null
-/var/log/apache2/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/ole-b-rosentreter.de/ebay.*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/coach-4-you.com/mail/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/ina-rosentreter.de/mail/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/laktatnebel.de/mail/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/lasse-gehrmann.de/mail/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/laufen-in-franken.de/mail/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/little-red-riding-hood.eu/mail/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/matthies-gehrmann.de/mail/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/ole-b-rosentreter.de/mail/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/wechselzonenluder.de/mail/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/coach-4-you.com/www/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/ina-rosentreter.de/www/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/laktatnebel.de/www/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/lasse-gehrmann.de/www/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/laufen-in-franken.de/www/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/little-red-riding-hood.eu/www/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/matthies-gehrmann.de/www/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/ole-b-rosentreter.de/www/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apache2/wechselzonenluder.de/www/*.log {
- daily
- missingok
- rotate 28
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- if /etc/init.d/apache2 status > /dev/null ; then \
- /etc/init.d/apache2 reload > /dev/null; \
- fi;
- endscript
- prerotate
- if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
- run-parts /etc/logrotate.d/httpd-prerotate; \
- fi; \
- endscript
-}
+++ /dev/null
-/var/log/apt/term.log {
- rotate 12
- monthly
- compress
- missingok
- notifempty
-}
-
-/var/log/apt/history.log {
- rotate 12
- monthly
- compress
- missingok
- notifempty
-}
-
+++ /dev/null
-/var/log/aptitude {
- rotate 6
- monthly
- compress
- missingok
- notifempty
-}
+++ /dev/null
-# no packages own btmp -- we'll rotate it here
-/var/log/btmp {
- missingok
- monthly
- create 0660 root utmp
- rotate 1
-}
+++ /dev/null
-/var/log/letsencrypt/*.log {
- rotate 12
- weekly
- compress
- missingok
-}
\ No newline at end of file
+++ /dev/null
-/var/log/dpkg.log {
- monthly
- rotate 12
- compress
- delaycompress
- missingok
- notifempty
- create 644 root root
-}
-/var/log/alternatives.log {
- monthly
- rotate 12
- compress
- delaycompress
- missingok
- notifempty
- create 644 root root
-}
+++ /dev/null
-/var/log/exim4/mainlog /var/log/exim4/rejectlog {
- daily
- missingok
- rotate 10
- compress
- delaycompress
- notifempty
- create 640 Debian-exim adm
-}
+++ /dev/null
-/var/log/exim4/paniclog {
- size 10M
- missingok
- rotate 10
- compress
- delaycompress
- notifempty
- create 640 Debian-exim adm
-}
-
+++ /dev/null
-/var/log/fail2ban.log {
-
- weekly
- rotate 4
- compress
-
- delaycompress
- missingok
- postrotate
- fail2ban-client flushlogs 1>/dev/null
- endscript
-
- # If fail2ban runs as non-root it still needs to have write access
- # to logfiles.
- # create 640 fail2ban adm
- create 640 root adm
-}
+++ /dev/null
-# This is the MariaDB configuration for the logrotate utility
-#
-# Note that on most Linux systems logs are written to journald, which has its
-# own rotation scheme.
-#
-# Read https://mariadb.com/kb/en/error-log/ to learn more about logging and
-# https://mariadb.com/kb/en/rotating-logs-on-unix-and-linux/ about rotating logs.
-
-/var/lib/mysql/mysqld.log /var/log/mysql/mysql.log /var/lib/mysql/mariadb.log /var/log/mysql/mysql-slow.log /var/log/mysql/mariadb-slow.log /var/log/mysql/error.log {
-
- # If any of the files listed above is missing, skip them silently without
- # emitting any errors
- missingok
-
- # If file exists but is empty, don't rotate it
- notifempty
-
- # Run monthly
- monthly
-
- # Keep 6 months of logs
- rotate 6
-
- # If file is growing too big, rotate immediately
- maxsize 500M
-
- # If file size is too small, don't rotate at all
- minsize 50M
-
- # Compress logs, as they are text and compression will save a lot of disk space
- compress
-
- # Don't compress the log immediately to avoid errors about "file size changed while zipping"
- delaycompress
-
- # Don't run the postrotate script for each file configured in this file, but
- # run it only once if one or more files were rotated
- sharedscripts
-
- # After each rotation, run this custom script to flush the logs. Note that
- # this assumes that the mariadb-admin command has database access, which it
- # has thanks to the default use of Unix socket authentication for the 'root'
- # account used everywhere since MariaDB 10.4.
- postrotate
- if test -r /etc/mysql/debian.cnf
- then
- EXTRAPARAM='--defaults-file=/etc/mysql/debian.cnf'
- fi
-
- if test -x /usr/bin/mariadb-admin
- then
- /usr/bin/mariadb-admin $EXTRAPARAM --local flush-error-log \
- flush-engine-log flush-general-log flush-slow-log
- fi
- endscript
-}
+++ /dev/null
-/var/log/postgresql/*.log {
- weekly
- rotate 10
- copytruncate
- delaycompress
- compress
- notifempty
- missingok
- su root root
-}
+++ /dev/null
-/var/log/proftpd/proftpd.log
-/var/log/proftpd/controls.log
-{
- weekly
- missingok
- rotate 7
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- postrotate
- # reload could be not sufficient for all logs, a restart is safer
- invoke-rc.d proftpd restart 2>/dev/null >/dev/null || true
- endscript
-}
-
-/var/log/proftpd/xferlog
-/var/log/proftpd/xferreport
-{
- monthly
- missingok
- rotate 7
- compress
- delaycompress
- notifempty
- create 640 root adm
- sharedscripts
- prerotate
- endscript
- postrotate
- # reload could be not sufficient for all logs, a restart is safer
- invoke-rc.d proftpd restart 2>/dev/null >/dev/null || true
- # run ftpstats on past transfer log
- ftpstats -a -r -l 2 -d -h -f /var/log/proftpd/xferlog.0 2>/dev/null >/var/log/proftpd/xferreport || true
- endscript
-}
+++ /dev/null
-/var/log/syslog
-{
- rotate 7
- daily
- missingok
- notifempty
- delaycompress
- compress
- postrotate
- invoke-rc.d rsyslog rotate > /dev/null
- endscript
-}
-
-/var/log/mail.info
-/var/log/mail.warn
-/var/log/mail.err
-/var/log/mail.log
-/var/log/daemon.log
-/var/log/kern.log
-/var/log/auth.log
-/var/log/user.log
-/var/log/lpr.log
-/var/log/cron.log
-/var/log/debug
-/var/log/messages
-{
- rotate 4
- weekly
- missingok
- notifempty
- compress
- delaycompress
- sharedscripts
- postrotate
- invoke-rc.d rsyslog rotate > /dev/null
- endscript
-}
+++ /dev/null
-# no packages own wtmp -- we'll rotate it here
-/var/log/wtmp {
- missingok
- monthly
- create 0664 root utmp
- minsize 1M
- rotate 1
-}
+++ /dev/null
-##
-## Authentication processes
-##
-
-#auth_debug=yes
-#auth_debug_passwords=yes
-
-# Disable LOGIN command and all other plaintext authentications unless
-# SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP
-# matches the local IP (ie. you're connecting from the same computer), the
-# connection is considered secure and plaintext authentication is allowed.
-# See also ssl=required setting.
-#disable_plaintext_auth = yes
-
-# Authentication cache size (e.g. 10M). 0 means it's disabled. Note that
-# bsdauth, PAM and vpopmail require cache_key to be set for caching to be used.
-#auth_cache_size = 0
-# Time to live for cached data. After TTL expires the cached record is no
-# longer used, *except* if the main database lookup returns internal failure.
-# We also try to handle password changes automatically: If user's previous
-# authentication was successful, but this one wasn't, the cache isn't used.
-# For now this works only with plaintext authentication.
-#auth_cache_ttl = 1 hour
-# TTL for negative hits (user not found, password mismatch).
-# 0 disables caching them completely.
-#auth_cache_negative_ttl = 1 hour
-
-# Space separated list of realms for SASL authentication mechanisms that need
-# them. You can leave it empty if you don't want to support multiple realms.
-# Many clients simply use the first one listed here, so keep the default realm
-# first.
-#auth_realms =
-
-# Default realm/domain to use if none was specified. This is used for both
-# SASL realms and appending @domain to username in plaintext logins.
-#auth_default_realm =
-
-# List of allowed characters in username. If the user-given username contains
-# a character not listed in here, the login automatically fails. This is just
-# an extra check to make sure user can't exploit any potential quote escaping
-# vulnerabilities with SQL/LDAP databases. If you want to allow all characters,
-# set this value to empty.
-#auth_username_chars = abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@
-
-# Username character translations before it's looked up from databases. The
-# value contains series of from -> to characters. For example "#@/@" means
-# that '#' and '/' characters are translated to '@'.
-#auth_username_translation =
-
-# Username formatting before it's looked up from databases. You can use
-# the standard variables here, eg. %Lu would lowercase the username, %n would
-# drop away the domain if it was given, or "%n-AT-%d" would change the '@' into
-# "-AT-". This translation is done after auth_username_translation changes.
-#auth_username_format = %Lu
-
-# If you want to allow master users to log in by specifying the master
-# username within the normal username string (ie. not using SASL mechanism's
-# support for it), you can specify the separator character here. The format
-# is then <username><separator><master username>. UW-IMAP uses "*" as the
-# separator, so that could be a good choice.
-#auth_master_user_separator =
-
-# Username to use for users logging in with ANONYMOUS SASL mechanism
-#auth_anonymous_username = anonymous
-
-# Maximum number of dovecot-auth worker processes. They're used to execute
-# blocking passdb and userdb queries (eg. MySQL and PAM). They're
-# automatically created and destroyed as needed.
-#auth_worker_max_count = 30
-
-# Host name to use in GSSAPI principal names. The default is to use the
-# name returned by gethostname(). Use "$ALL" (with quotes) to allow all keytab
-# entries.
-#auth_gssapi_hostname =
-
-# Kerberos keytab to use for the GSSAPI mechanism. Will use the system
-# default (usually /etc/krb5.keytab) if not specified. You may need to change
-# the auth service to run as root to be able to read this file.
-#auth_krb5_keytab =
-
-# Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon and
-# ntlm_auth helper. <doc/wiki/Authentication/Mechanisms/Winbind.txt>
-#auth_use_winbind = no
-
-# Path for Samba's ntlm_auth helper binary.
-#auth_winbind_helper_path = /usr/bin/ntlm_auth
-
-# Time to delay before replying to failed authentications.
-#auth_failure_delay = 2 secs
-
-# Require a valid SSL client certificate or the authentication fails.
-#auth_ssl_require_client_cert = no
-
-# Take the username from client's SSL certificate, using
-# X509_NAME_get_text_by_NID() which returns the subject's DN's
-# CommonName.
-#auth_ssl_username_from_cert = no
-
-# Space separated list of wanted authentication mechanisms:
-# plain login digest-md5 cram-md5 ntlm rpa apop anonymous gssapi otp skey
-# gss-spnego
-# NOTE: See also disable_plaintext_auth setting.
-auth_mechanisms = plain login
-
-##
-## Password and user databases
-##
-
-#
-# Password database is used to verify user's password (and nothing more).
-# You can have multiple passdbs and userdbs. This is useful if you want to
-# allow both system users (/etc/passwd) and virtual users to login without
-# duplicating the system users into virtual database.
-#
-# <doc/wiki/PasswordDatabase.txt>
-#
-# User database specifies where mails are located and what user/group IDs
-# own them. For single-UID configuration use "static" userdb.
-#
-# <doc/wiki/UserDatabase.txt>
-
-#!include auth-deny.conf.ext
-#!include auth-master.conf.ext
-
-#!include auth-system.conf.ext
-!include auth-sql.conf.ext
-#!include auth-ldap.conf.ext
-#!include auth-passwdfile.conf.ext
-#!include auth-checkpassword.conf.ext
-#!include auth-vpopmail.conf.ext
-#!include auth-static.conf.ext
+++ /dev/null
-##
-## Director-specific settings.
-##
-
-# Director can be used by Dovecot proxy to keep a temporary user -> mail server
-# mapping. As long as user has simultaneous connections, the user is always
-# redirected to the same server. Each proxy server is running its own director
-# process, and the directors are communicating the state to each others.
-# Directors are mainly useful with NFS-like setups.
-
-# List of IPs or hostnames to all director servers, including ourself.
-# Ports can be specified as ip:port. The default port is the same as
-# what director service's inet_listener is using.
-#director_servers =
-
-# List of IPs or hostnames to all backend mail servers. Ranges are allowed
-# too, like 10.0.0.10-10.0.0.30.
-#director_mail_servers =
-
-# How long to redirect users to a specific server after it no longer has
-# any connections.
-#director_user_expire = 15 min
-
-# TCP/IP port that accepts doveadm connections (instead of director connections)
-# If you enable this, you'll also need to add inet_listener for the port.
-#director_doveadm_port = 0
-
-# How the username is translated before being hashed. Useful values include
-# %Ln if user can log in with or without @domain, %Ld if mailboxes are shared
-# within domain.
-#director_username_hash = %Lu
-
-# To enable director service, uncomment the modes and assign a port.
-service director {
- unix_listener login/director {
- #mode = 0666
- }
- fifo_listener login/proxy-notify {
- #mode = 0666
- }
- unix_listener director-userdb {
- #mode = 0600
- }
- inet_listener {
- #port =
- }
-}
-
-# Enable director for the wanted login services by telling them to
-# connect to director socket instead of the default login socket:
-service imap-login {
- #executable = imap-login director
-}
-service pop3-login {
- #executable = pop3-login director
-}
-
-# Enable director for LMTP proxying:
-protocol lmtp {
- #auth_socket_path = director-userdb
-}
+++ /dev/null
-##
-## Log destination.
-##
-
-info_log_path = /var/log/dovecot-info.log
-
-# Log file to use for error messages. "syslog" logs to syslog,
-# /dev/stderr logs to stderr.
-#log_path = syslog
-
-# Log file to use for informational messages. Defaults to log_path.
-#info_log_path =
-# Log file to use for debug messages. Defaults to info_log_path.
-#debug_log_path =
-
-# Syslog facility to use if you're logging to syslog. Usually if you don't
-# want to use "mail", you'll use local0..local7. Also other standard
-# facilities are supported.
-#syslog_facility = mail
-
-##
-## Logging verbosity and debugging.
-##
-
-# Log unsuccessful authentication attempts and the reasons why they failed.
-#auth_verbose = no
-
-# In case of password mismatches, log the attempted password. Valid values are
-# no, plain and sha1. sha1 can be useful for detecting brute force password
-# attempts vs. user simply trying the same password over and over again.
-# You can also truncate the value to n chars by appending ":n" (e.g. sha1:6).
-#auth_verbose_passwords = no
-
-# Even more verbose logging for debugging purposes. Shows for example SQL
-# queries.
-#auth_debug = no
-
-# In case of password mismatches, log the passwords and used scheme so the
-# problem can be debugged. Enabling this also enables auth_debug.
-#auth_debug_passwords = no
-
-# Enable mail process debugging. This can help you figure out why Dovecot
-# isn't finding your mails.
-#mail_debug = no
-
-# Show protocol level SSL errors.
-#verbose_ssl = no
-
-# mail_log plugin provides more event logging for mail processes.
-plugin {
- # Events to log. Also available: flag_change append
- #mail_log_events = delete undelete expunge copy mailbox_delete mailbox_rename
- # Available fields: uid, box, msgid, from, subject, size, vsize, flags
- # size and vsize are available only for expunge and copy events.
- #mail_log_fields = uid box msgid size
-}
-
-##
-## Log formatting.
-##
-
-# Prefix for each line written to log file. % codes are in strftime(3)
-# format.
-#log_timestamp = "%b %d %H:%M:%S "
-
-# Space-separated list of elements we want to log. The elements which have
-# a non-empty variable value are joined together to form a comma-separated
-# string.
-#login_log_format_elements = user=<%u> method=%m rip=%r lip=%l mpid=%e %c
-
-# Login log format. %s contains login_log_format_elements string, %$ contains
-# the data we want to log.
-#login_log_format = %$: %s
-
-# Log prefix for mail processes. See doc/wiki/Variables.txt for list of
-# possible variables you can use.
-#mail_log_prefix = "%s(%u): "
-
-# Format to use for logging mail deliveries. You can use variables:
-# %$ - Delivery status message (e.g. "saved to INBOX")
-# %m - Message-ID
-# %s - Subject
-# %f - From address
-# %p - Physical size
-# %w - Virtual size
-#deliver_log_format = msgid=%m: %$
+++ /dev/null
-##
-## Mailbox locations and namespaces
-##
-
-# Location for users' mailboxes. The default is empty, which means that Dovecot
-# tries to find the mailboxes automatically. This won't work if the user
-# doesn't yet have any mail, so you should explicitly tell Dovecot the full
-# location.
-#
-# If you're using mbox, giving a path to the INBOX file (eg. /var/mail/%u)
-# isn't enough. You'll also need to tell Dovecot where the other mailboxes are
-# kept. This is called the "root mail directory", and it must be the first
-# path given in the mail_location setting.
-#
-# There are a few special variables you can use, eg.:
-#
-# %u - username
-# %n - user part in user@domain, same as %u if there's no domain
-# %d - domain part in user@domain, empty if there's no domain
-# %h - home directory
-#
-# See doc/wiki/Variables.txt for full list. Some examples:
-#
-# mail_location = maildir:~/Maildir
-# mail_location = mbox:~/mail:INBOX=/var/mail/%u
-# mail_location = mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%n
-#
-# <doc/wiki/MailLocation.txt>
-#
-mail_location = maildir:/var/vmail/%d/%n
-
-# If you need to set multiple mailbox locations or want to change default
-# namespace settings, you can do it by defining namespace sections.
-#
-# You can have private, shared and public namespaces. Private namespaces
-# are for user's personal mails. Shared namespaces are for accessing other
-# users' mailboxes that have been shared. Public namespaces are for shared
-# mailboxes that are managed by sysadmin. If you create any shared or public
-# namespaces you'll typically want to enable ACL plugin also, otherwise all
-# users can access all the shared mailboxes, assuming they have permissions
-# on filesystem level to do so.
-namespace inbox {
- # Namespace type: private, shared or public
- #type = private
-
- # Hierarchy separator to use. You should use the same separator for all
- # namespaces or some clients get confused. '/' is usually a good one.
- # The default however depends on the underlying mail storage format.
- separator = /
-
- # Prefix required to access this namespace. This needs to be different for
- # all namespaces. For example "Public/".
- #prefix =
-
- # Physical location of the mailbox. This is in same format as
- # mail_location, which is also the default for it.
- #location =
-
- # There can be only one INBOX, and this setting defines which namespace
- # has it.
- inbox = yes
-
- # If namespace is hidden, it's not advertised to clients via NAMESPACE
- # extension. You'll most likely also want to set list=no. This is mostly
- # useful when converting from another server with different namespaces which
- # you want to deprecate but still keep working. For example you can create
- # hidden namespaces with prefixes "~/mail/", "~%u/mail/" and "mail/".
- #hidden = no
-
- # Show the mailboxes under this namespace with LIST command. This makes the
- # namespace visible for clients that don't support NAMESPACE extension.
- # "children" value lists child mailboxes, but hides the namespace prefix.
- #list = yes
-
- # Namespace handles its own subscriptions. If set to "no", the parent
- # namespace handles them (empty prefix should always have this as "yes")
- #subscriptions = yes
-
-}
-
-# Example shared namespace configuration
-#namespace {
- #type = shared
- #separator = /
-
- # Mailboxes are visible under "shared/user@domain/"
- # %%n, %%d and %%u are expanded to the destination user.
- #prefix = shared/%%u/
-
- # Mail location for other users' mailboxes. Note that %variables and ~/
- # expands to the logged in user's data. %%n, %%d, %%u and %%h expand to the
- # destination user's data.
- #location = maildir:%%h/Maildir:INDEX=~/Maildir/shared/%%u
-
- # Use the default namespace for saving subscriptions.
- #subscriptions = no
-
- # List the shared/ namespace only if there are visible shared mailboxes.
- #list = children
-#}
-# Should shared INBOX be visible as "shared/user" or "shared/user/INBOX"?
-#mail_shared_explicit_inbox = no
-
-# System user and group used to access mails. If you use multiple, userdb
-# can override these by returning uid or gid fields. You can use either numbers
-# or names. <doc/wiki/UserIds.txt>
-mail_uid = 5000
-mail_gid = 5000
-
-# Group to enable temporarily for privileged operations. Currently this is
-# used only with INBOX when either its initial creation or dotlocking fails.
-# Typically this is set to "mail" to give access to /var/mail.
-#mail_privileged_group =
-
-# Grant access to these supplementary groups for mail processes. Typically
-# these are used to set up access to shared mailboxes. Note that it may be
-# dangerous to set these if users can create symlinks (e.g. if "mail" group is
-# set here, ln -s /var/mail ~/mail/var could allow a user to delete others'
-# mailboxes, or ln -s /secret/shared/box ~/mail/mybox would allow reading it).
-#mail_access_groups =
-
-# Allow full filesystem access to clients. There's no access checks other than
-# what the operating system does for the active UID/GID. It works with both
-# maildir and mboxes, allowing you to prefix mailboxes names with eg. /path/
-# or ~user/.
-#mail_full_filesystem_access = no
-
-# Dictionary for key=value mailbox attributes. Currently used by URLAUTH, but
-# soon intended to be used by METADATA as well.
-#mail_attribute_dict =
-
-##
-## Mail processes
-##
-
-# Don't use mmap() at all. This is required if you store indexes to shared
-# filesystems (NFS or clustered filesystem).
-#mmap_disable = no
-
-# Rely on O_EXCL to work when creating dotlock files. NFS supports O_EXCL
-# since version 3, so this should be safe to use nowadays by default.
-#dotlock_use_excl = yes
-
-# When to use fsync() or fdatasync() calls:
-# optimized (default): Whenever necessary to avoid losing important data
-# always: Useful with e.g. NFS when write()s are delayed
-# never: Never use it (best performance, but crashes can lose data)
-#mail_fsync = optimized
-
-# Locking method for index files. Alternatives are fcntl, flock and dotlock.
-# Dotlocking uses some tricks which may create more disk I/O than other locking
-# methods. NFS users: flock doesn't work, remember to change mmap_disable.
-#lock_method = fcntl
-
-# Directory in which LDA/LMTP temporarily stores incoming mails >128 kB.
-#mail_temp_dir = /tmp
-
-# Valid UID range for users, defaults to 500 and above. This is mostly
-# to make sure that users can't log in as daemons or other system users.
-# Note that denying root logins is hardcoded to dovecot binary and can't
-# be done even if first_valid_uid is set to 0.
-#first_valid_uid = 500
-#last_valid_uid = 0
-
-# Valid GID range for users, defaults to non-root/wheel. Users having
-# non-valid GID as primary group ID aren't allowed to log in. If user
-# belongs to supplementary groups with non-valid GIDs, those groups are
-# not set.
-#first_valid_gid = 1
-#last_valid_gid = 0
-
-# Maximum allowed length for mail keyword name. It's only forced when trying
-# to create new keywords.
-#mail_max_keyword_length = 50
-
-# ':' separated list of directories under which chrooting is allowed for mail
-# processes (ie. /var/mail will allow chrooting to /var/mail/foo/bar too).
-# This setting doesn't affect login_chroot, mail_chroot or auth chroot
-# settings. If this setting is empty, "/./" in home dirs are ignored.
-# WARNING: Never add directories here which local users can modify, that
-# may lead to root exploit. Usually this should be done only if you don't
-# allow shell access for users. <doc/wiki/Chrooting.txt>
-#valid_chroot_dirs =
-
-# Default chroot directory for mail processes. This can be overridden for
-# specific users in user database by giving /./ in user's home directory
-# (eg. /home/./user chroots into /home). Note that usually there is no real
-# need to do chrooting, Dovecot doesn't allow users to access files outside
-# their mail directory anyway. If your home directories are prefixed with
-# the chroot directory, append "/." to mail_chroot. <doc/wiki/Chrooting.txt>
-#mail_chroot =
-
-# UNIX socket path to master authentication server to find users.
-# This is used by imap (for shared users) and lda.
-#auth_socket_path = /var/run/dovecot/auth-userdb
-
-# Directory where to look up mail plugins.
-#mail_plugin_dir = /usr/lib/dovecot/modules
-
-# Space separated list of plugins to load for all services. Plugins specific to
-# IMAP, LDA, etc. are added to this list in their own .conf files.
-#mail_plugins =
-
-##
-## Mailbox handling optimizations
-##
-
-# Mailbox list indexes can be used to optimize IMAP STATUS commands. They are
-# also required for IMAP NOTIFY extension to be enabled.
-#mailbox_list_index = no
-
-# The minimum number of mails in a mailbox before updates are done to cache
-# file. This allows optimizing Dovecot's behavior to do less disk writes at
-# the cost of more disk reads.
-#mail_cache_min_mail_count = 0
-
-# When IDLE command is running, mailbox is checked once in a while to see if
-# there are any new mails or other changes. This setting defines the minimum
-# time to wait between those checks. Dovecot can also use dnotify, inotify and
-# kqueue to find out immediately when changes occur.
-#mailbox_idle_check_interval = 30 secs
-
-# Save mails with CR+LF instead of plain LF. This makes sending those mails
-# take less CPU, especially with sendfile() syscall with Linux and FreeBSD.
-# But it also creates a bit more disk I/O which may just make it slower.
-# Also note that if other software reads the mboxes/maildirs, they may handle
-# the extra CRs wrong and cause problems.
-#mail_save_crlf = no
-
-# Max number of mails to keep open and prefetch to memory. This only works with
-# some mailbox formats and/or operating systems.
-#mail_prefetch_count = 0
-
-# How often to scan for stale temporary files and delete them (0 = never).
-# These should exist only after Dovecot dies in the middle of saving mails.
-#mail_temp_scan_interval = 1w
-
-##
-## Maildir-specific settings
-##
-
-# By default LIST command returns all entries in maildir beginning with a dot.
-# Enabling this option makes Dovecot return only entries which are directories.
-# This is done by stat()ing each entry, so it causes more disk I/O.
-# (For systems setting struct dirent->d_type, this check is free and it's
-# done always regardless of this setting)
-#maildir_stat_dirs = no
-
-# When copying a message, do it with hard links whenever possible. This makes
-# the performance much better, and it's unlikely to have any side effects.
-#maildir_copy_with_hardlinks = yes
-
-# Assume Dovecot is the only MUA accessing Maildir: Scan cur/ directory only
-# when its mtime changes unexpectedly or when we can't find the mail otherwise.
-#maildir_very_dirty_syncs = no
-
-# If enabled, Dovecot doesn't use the S=<size> in the Maildir filenames for
-# getting the mail's physical size, except when recalculating Maildir++ quota.
-# This can be useful in systems where a lot of the Maildir filenames have a
-# broken size. The performance hit for enabling this is very small.
-#maildir_broken_filename_sizes = no
-
-# Always move mails from new/ directory to cur/, even when the \Recent flags
-# aren't being reset.
-#maildir_empty_new = no
-
-##
-## mbox-specific settings
-##
-
-# Which locking methods to use for locking mbox. There are four available:
-# dotlock: Create <mailbox>.lock file. This is the oldest and most NFS-safe
-# solution. If you want to use /var/mail/ like directory, the users
-# will need write access to that directory.
-# dotlock_try: Same as dotlock, but if it fails because of permissions or
-# because there isn't enough disk space, just skip it.
-# fcntl : Use this if possible. Works with NFS too if lockd is used.
-# flock : May not exist in all systems. Doesn't work with NFS.
-# lockf : May not exist in all systems. Doesn't work with NFS.
-#
-# You can use multiple locking methods; if you do the order they're declared
-# in is important to avoid deadlocks if other MTAs/MUAs are using multiple
-# locking methods as well. Some operating systems don't allow using some of
-# them simultaneously.
-#
-# The Debian value for mbox_write_locks differs from upstream Dovecot. It is
-# changed to be compliant with Debian Policy (section 11.6) for NFS safety.
-# Dovecot: mbox_write_locks = dotlock fcntl
-# Debian: mbox_write_locks = fcntl dotlock
-#
-#mbox_read_locks = fcntl
-#mbox_write_locks = fcntl dotlock
-
-# Maximum time to wait for lock (all of them) before aborting.
-#mbox_lock_timeout = 5 mins
-
-# If dotlock exists but the mailbox isn't modified in any way, override the
-# lock file after this much time.
-#mbox_dotlock_change_timeout = 2 mins
-
-# When mbox changes unexpectedly we have to fully read it to find out what
-# changed. If the mbox is large this can take a long time. Since the change
-# is usually just a newly appended mail, it'd be faster to simply read the
-# new mails. If this setting is enabled, Dovecot does this but still safely
-# fallbacks to re-reading the whole mbox file whenever something in mbox isn't
-# how it's expected to be. The only real downside to this setting is that if
-# some other MUA changes message flags, Dovecot doesn't notice it immediately.
-# Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK
-# commands.
-#mbox_dirty_syncs = yes
-
-# Like mbox_dirty_syncs, but don't do full syncs even with SELECT, EXAMINE,
-# EXPUNGE or CHECK commands. If this is set, mbox_dirty_syncs is ignored.
-#mbox_very_dirty_syncs = no
-
-# Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK
-# commands and when closing the mailbox). This is especially useful for POP3
-# where clients often delete all mails. The downside is that our changes
-# aren't immediately visible to other MUAs.
-#mbox_lazy_writes = yes
-
-# If mbox size is smaller than this (e.g. 100k), don't write index files.
-# If an index file already exists it's still read, just not updated.
-#mbox_min_index_size = 0
-
-# Mail header selection algorithm to use for MD5 POP3 UIDLs when
-# pop3_uidl_format=%m. For backwards compatibility we use apop3d inspired
-# algorithm, but it fails if the first Received: header isn't unique in all
-# mails. An alternative algorithm is "all" that selects all headers.
-#mbox_md5 = apop3d
-
-##
-## mdbox-specific settings
-##
-
-# Maximum dbox file size until it's rotated.
-#mdbox_rotate_size = 2M
-
-# Maximum dbox file age until it's rotated. Typically in days. Day begins
-# from midnight, so 1d = today, 2d = yesterday, etc. 0 = check disabled.
-#mdbox_rotate_interval = 0
-
-# When creating new mdbox files, immediately preallocate their size to
-# mdbox_rotate_size. This setting currently works only in Linux with some
-# filesystems (ext4, xfs).
-#mdbox_preallocate_space = no
-
-##
-## Mail attachments
-##
-
-# sdbox and mdbox support saving mail attachments to external files, which
-# also allows single instance storage for them. Other backends don't support
-# this for now.
-
-# Directory root where to store mail attachments. Disabled, if empty.
-#mail_attachment_dir =
-
-# Attachments smaller than this aren't saved externally. It's also possible to
-# write a plugin to disable saving specific attachments externally.
-#mail_attachment_min_size = 128k
-
-# Filesystem backend to use for saving attachments:
-# posix : No SiS done by Dovecot (but this might help FS's own deduplication)
-# sis posix : SiS with immediate byte-by-byte comparison during saving
-# sis-queue posix : SiS with delayed comparison and deduplication
-#mail_attachment_fs = sis posix
-
-# Hash format to use in attachment filenames. You can add any text and
-# variables: %{md4}, %{md5}, %{sha1}, %{sha256}, %{sha512}, %{size}.
-# Variables can be truncated, e.g. %{sha256:80} returns only first 80 bits
-#mail_attachment_hash = %{sha1}
+++ /dev/null
-
-
-#default_process_limit = 100
-#default_client_limit = 1000
-
-# Default VSZ (virtual memory size) limit for service processes. This is mainly
-# intended to catch and kill processes that leak memory before they eat up
-# everything.
-#default_vsz_limit = 256M
-
-# Login user is internally used by login processes. This is the most untrusted
-# user in Dovecot system. It shouldn't have access to anything at all.
-#default_login_user = dovenull
-
-# Internal user is used by unprivileged processes. It should be separate from
-# login user, so that login processes can't disturb other processes.
-#default_internal_user = dovecot
-
-service imap-login {
- inet_listener imap {
- port = 143
- }
- inet_listener imaps {
- port = 993
- ssl = yes
- }
-
- # Number of connections to handle before starting a new process. Typically
- # the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0
- # is faster. <doc/wiki/LoginProcess.txt>
- #service_count = 1
-
- # Number of processes to always keep waiting for more connections.
- #process_min_avail = 0
-
- # If you set service_count=0, you probably need to grow this.
- #vsz_limit = $default_vsz_limit
-}
-
-#service pop3-login {
-# inet_listener pop3 {
-# #port = 110
-# }
-# inet_listener pop3s {
-# #port = 995
-# #ssl = yes
-# }
-#}
-
-service lmtp {
- unix_listener /var/spool/postfix/private/dovecot-lmtp {
- group = postfix
- mode = 0666
- user = postfix
- }
- unix_listener lmtp {
- mode = 0666
- }
- user = vmail
- executable = lmtp -L
-
- # Create inet listener only if you can't use the above UNIX socket
- #inet_listener lmtp {
- # Avoid making LMTP visible for the entire internet
- #address =
- #port =
- #}
-}
-
-service imap {
- # Most of the memory goes to mmap()ing files. You may need to increase this
- # limit if you have huge mailboxes.
- #vsz_limit = $default_vsz_limit
-
- # Max. number of IMAP processes (connections)
- #process_limit = 1024
-}
-
-service pop3 {
- # Max. number of POP3 processes (connections)
- #process_limit = 1024
-}
-
-service auth {
- # auth_socket_path points to this userdb socket by default. It's typically
- # used by dovecot-lda, doveadm, possibly imap process, etc. Users that have
- # full permissions to this socket are able to get a list of all usernames and
- # get the results of everyone's userdb lookups.
- #
- # The default 0666 mode allows anyone to connect to the socket, but the
- # userdb lookups will succeed only if the userdb returns an "uid" field that
- # matches the caller process's UID. Also if caller's uid or gid matches the
- # socket's uid or gid the lookup succeeds. Anything else causes a failure.
- #
- # To give the caller full permissions to lookup all users, set the mode to
- # something else than 0666 and Dovecot lets the kernel enforce the
- # permissions (e.g. 0777 allows everyone full permissions).
- unix_listener auth-userdb {
- #mode = 0666
- #user =
- #group =
- }
-
-# Postfix smtp-auth
- unix_listener /var/spool/postfix/private/auth_dovecot {
- mode = 0660
- user = postfix
- group = postfix
- }
-
- # Auth process is run as this user.
- #user = $default_internal_user
-}
-
-service auth-worker {
- # Auth worker process is run as root by default, so that it can access
- # /etc/shadow. If this isn't necessary, the user should be changed to
- # $default_internal_user.
- #user = root
-}
-
-service dict {
- # If dict proxy is used, mail processes should have access to its socket.
- # For example: mode=0660, group=vmail and global mail_access_groups=vmail
- unix_listener dict {
- #mode = 0600
- #user =
- #group =
- }
-}
-
-# Postfix smtp-auth
-#unix_listener /var/spool/postfix/private/auth_dovecot {
-# mode = 0660
-# user = postfix
-# group = postfix
-#}
\ No newline at end of file
+++ /dev/null
-##
-## SSL settings
-##
-
-# SSL/TLS support: yes, no, required. <doc/wiki/SSL.txt>
-ssl = yes
-
-# PEM encoded X.509 SSL/TLS certificate and private key. They're opened before
-# dropping root privileges, so keep the key file unreadable by anyone but
-# root. Included doc/mkcert.sh can be used to easily generate self-signed
-# certificate, just make sure to update the domains in dovecot-openssl.cnf
-ssl_cert = </etc/letsencrypt/live/mail.triathlon-coaching.com/fullchain.pem
-ssl_key = </etc/letsencrypt/live/mail.triathlon-coaching.com/privkey.pem
-
-# If key file is password protected, give the password here. Alternatively
-# give it when starting dovecot with -p parameter. Since this file is often
-# world-readable, you may want to place this setting instead to a different
-# root owned 0600 file by using ssl_key_password = <path.
-#ssl_key_password =
-
-# PEM encoded trusted certificate authority. Set this only if you intend to use
-# ssl_verify_client_cert=yes. The file should contain the CA certificate(s)
-# followed by the matching CRL(s). (e.g. ssl_ca = </etc/ssl/certs/ca.pem)
-#ssl_ca =
-
-# Require that CRL check succeeds for client certificates.
-#ssl_require_crl = yes
-
-# Directory and/or file for trusted SSL CA certificates. These are used only
-# when Dovecot needs to act as an SSL client (e.g. imapc backend or
-# submission service). The directory is usually /etc/ssl/certs in
-# Debian-based systems and the file is /etc/pki/tls/cert.pem in
-# RedHat-based systems. Note that ssl_client_ca_file isn't recommended with
-# large CA bundles, because it leads to excessive memory usage.
-#ssl_client_ca_dir =
-ssl_client_ca_dir = /etc/ssl/certs
-#ssl_client_ca_file =
-
-# Require valid cert when connecting to a remote server
-#ssl_client_require_valid_cert = yes
-
-# Request client to send a certificate. If you also want to require it, set
-# auth_ssl_require_client_cert=yes in auth section.
-#ssl_verify_client_cert = no
-
-# Which field from certificate to use for username. commonName and
-# x500UniqueIdentifier are the usual choices. You'll also need to set
-# auth_ssl_username_from_cert=yes.
-#ssl_cert_username_field = commonName
-
-# SSL DH parameters
-# Generate new params with `openssl dhparam -out /etc/dovecot/dh.pem 4096`
-# Or migrate from old ssl-parameters.dat file with the command dovecot
-# gives on startup when ssl_dh is unset.
-ssl_dh = </usr/share/dovecot/dh.pem
-
-# Minimum SSL protocol version to use. Potentially recognized values are SSLv3,
-# TLSv1, TLSv1.1, and TLSv1.2, depending on the OpenSSL version used.
-#ssl_min_protocol = TLSv1
-
-# SSL ciphers to use, the default is:
-#ssl_cipher_list = ALL:!kRSA:!SRP:!kDHd:!DSS:!aNULL:!eNULL:!EXPORT:!DES:!3DES:!MD5:!PSK:!RC4:!ADH:!LOW@STRENGTH
-# To disable non-EC DH, use:
-#ssl_cipher_list = ALL:!DH:!kRSA:!SRP:!kDHd:!DSS:!aNULL:!eNULL:!EXPORT:!DES:!3DES:!MD5:!PSK:!RC4:!ADH:!LOW@STRENGTH
-
-# Colon separated list of elliptic curves to use. Empty value (the default)
-# means use the defaults from the SSL library. P-521:P-384:P-256 would be an
-# example of a valid value.
-#ssl_curve_list =
-
-# Prefer the server's order of ciphers over client's.
-#ssl_prefer_server_ciphers = no
-
-# SSL crypto device to use, for valid values run "openssl engine"
-#ssl_crypto_device =
-
-# SSL extra options. Currently supported options are:
-# compression - Enable compression.
-# no_ticket - Disable SSL session tickets.
-#ssl_options =
+++ /dev/null
-##
-## LDA specific settings (also used by LMTP)
-##
-
-# Address to use when sending rejection mails.
-# Default is postmaster@<your domain>. %d expands to recipient domain.
-postmaster_address = postmaster@laktatnebel.de
-
-# Hostname to use in various parts of sent mails (e.g. in Message-Id) and
-# in LMTP replies. Default is the system's real hostname@domain.
-#hostname =
-
-# If user is over quota, return with temporary failure instead of
-# bouncing the mail.
-#quota_full_tempfail = no
-
-# Binary to use for sending mails.
-#sendmail_path = /usr/sbin/sendmail
-
-# If non-empty, send mails via this SMTP host[:port] instead of sendmail.
-#submission_host =
-
-# Subject: header to use for rejection mails. You can use the same variables
-# as for rejection_reason below.
-#rejection_subject = Rejected: %s
-
-# Human readable error message for rejection mails. You can use variables:
-# %n = CRLF, %r = reason, %s = original subject, %t = recipient
-#rejection_reason = Your message to <%t> was automatically rejected:%n%r
-
-# Delimiter character between local-part and detail in email address.
-recipient_delimiter = +
-
-# Header where the original recipient address (SMTP's RCPT TO: address) is taken
-# from if not available elsewhere. With dovecot-lda -a parameter overrides this.
-# A commonly used header for this is X-Original-To.
-#lda_original_recipient_header =
-
-# Should saving a mail to a nonexistent mailbox automatically create it?
-lda_mailbox_autocreate = yes
-
-# Should automatically created mailboxes be also automatically subscribed?
-lda_mailbox_autosubscribe = yes
-
-protocol lda {
- # Space separated list of plugins to load (default is global mail_plugins).
- #mail_plugins = $mail_plugins
-}
+++ /dev/null
-##
-## Mailbox definitions
-##
-
-# NOTE: Assumes "namespace inbox" has been defined in 10-mail.conf.
-namespace inbox {
-
- mailbox Trash {
- auto = subscribe
- special_use = \Trash
- }
- mailbox "Deleted Messages" {
- special_use = \Trash
- }
- mailbox "Gelöschte Objekte" {
- special_use = \Trash
- }
- mailbox "Papierkorb" {
- special_use = \Trash
- }
- mailbox Archive {
- auto = subscribe
- special_use = \Archive
- }
- mailbox Archiv {
- special_use = \Archive
- }
- mailbox Archives {
- special_use = \Archive
- }
- mailbox Sent {
- auto = subscribe
- special_use = \Sent
- }
- mailbox "Sent Messages" {
- special_use = \Sent
- }
- mailbox "Gesendet" {
- special_use = \Sent
- }
- mailbox "Gesendete Objekte" {
- special_use = \Sent
- }
- mailbox Drafts {
- auto = subscribe
- special_use = \Drafts
- }
- mailbox Entwürfe {
- special_use = \Drafts
- }
- mailbox Junk {
- auto = subscribe
- special_use = \Junk
- }
-
- #########################
-
- #mailbox name {
- # auto=create will automatically create this mailbox.
- # auto=subscribe will both create and subscribe to the mailbox.
- #auto = no
-
- # Space separated list of IMAP SPECIAL-USE attributes as specified by
- # RFC 6154: \All \Archive \Drafts \Flagged \Junk \Sent \Trash
- #special_use =
- #}
-
- # These mailboxes are widely used and could perhaps be created automatically:
-# mailbox Drafts {
-# special_use = \Drafts
-# }
-# mailbox Junk {
-# special_use = \Junk
-# }
-# mailbox Trash {
-# special_use = \Trash
-# }
-
- # For \Sent mailboxes there are two widely used names. We'll mark both of
- # them as \Sent. User typically deletes one of them if duplicates are created.
-# mailbox Sent {
-# special_use = \Sent
-# }
-# mailbox "Sent Messages" {
-# special_use = \Sent
-# }
-
- # If you have a virtual "All messages" mailbox:
- #mailbox virtual/All {
- # special_use = \All
- #}
-
- # If you have a virtual "Flagged" mailbox:
- #mailbox virtual/Flagged {
- # special_use = \Flagged
- #}
-}
+++ /dev/null
-##
-## IMAP specific settings
-##
-
-# Maximum IMAP command line length. Some clients generate very long command
-# lines with huge mailboxes, so you may need to raise this if you get
-# "Too long argument" or "IMAP command line too large" errors often.
-#imap_max_line_length = 64k
-
-# IMAP logout format string:
-# %i - total number of bytes read from client
-# %o - total number of bytes sent to client
-#imap_logout_format = in=%i out=%o
-
-# Override the IMAP CAPABILITY response. If the value begins with '+',
-# add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
-#imap_capability =
-
-# How long to wait between "OK Still here" notifications when client is
-# IDLEing.
-#imap_idle_notify_interval = 2 mins
-
-# ID field names and values to send to clients. Using * as the value makes
-# Dovecot use the default value. The following fields have default values
-# currently: name, version, os, os-version, support-url, support-email.
-#imap_id_send =
-
-# ID fields sent by client to log. * means everything.
-#imap_id_log =
-
-# Workarounds for various client bugs:
-# delay-newmail:
-# Send EXISTS/RECENT new mail notifications only when replying to NOOP
-# and CHECK commands. Some clients ignore them otherwise, for example OSX
-# Mail (<v2.1). Outlook Express breaks more badly though, without this it
-# may show user "Message no longer in server" errors. Note that OE6 still
-# breaks even with this workaround if synchronization is set to
-# "Headers Only".
-# tb-extra-mailbox-sep:
-# Thunderbird gets somehow confused with LAYOUT=fs (mbox and dbox) and
-# adds extra '/' suffixes to mailbox names. This option causes Dovecot to
-# ignore the extra '/' instead of treating it as invalid mailbox name.
-# tb-lsub-flags:
-# Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
-# This makes Thunderbird realize they aren't selectable and show them
-# greyed out, instead of only later giving "not selectable" popup error.
-#
-# The list is space-separated.
-#imap_client_workarounds =
-
-# Host allowed in URLAUTH URLs sent by client. "*" allows all.
-#imap_urlauth_host =
-
-protocol imap {
- # Space separated list of plugins to load (default is global mail_plugins).
- #mail_plugins = $mail_plugins
-
- # Maximum number of IMAP connections allowed for a user from each IP address.
- # NOTE: The username is compared case-sensitively.
- #mail_max_userip_connections = 10
-}
+++ /dev/null
-##
-## IMAP specific settings
-##
-
-# If nothing happens for this long while client is IDLEing, move the connection
-# to imap-hibernate process and close the old imap process. This saves memory,
-# because connections use very little memory in imap-hibernate process. The
-# downside is that recreating the imap process back uses some resources.
-#imap_hibernate_timeout = 0
-
-# Maximum IMAP command line length. Some clients generate very long command
-# lines with huge mailboxes, so you may need to raise this if you get
-# "Too long argument" or "IMAP command line too large" errors often.
-#imap_max_line_length = 64k
-
-# IMAP logout format string:
-# %i - total number of bytes read from client
-# %o - total number of bytes sent to client
-# %{fetch_hdr_count} - Number of mails with mail header data sent to client
-# %{fetch_hdr_bytes} - Number of bytes with mail header data sent to client
-# %{fetch_body_count} - Number of mails with mail body data sent to client
-# %{fetch_body_bytes} - Number of bytes with mail body data sent to client
-# %{deleted} - Number of mails where client added \Deleted flag
-# %{expunged} - Number of mails that client expunged, which does not
-# include automatically expunged mails
-# %{autoexpunged} - Number of mails that were automatically expunged after
-# client disconnected
-# %{trashed} - Number of mails that client copied/moved to the
-# special_use=\Trash mailbox.
-# %{appended} - Number of mails saved during the session
-#imap_logout_format = in=%i out=%o deleted=%{deleted} expunged=%{expunged} \
-# trashed=%{trashed} hdr_count=%{fetch_hdr_count} \
-# hdr_bytes=%{fetch_hdr_bytes} body_count=%{fetch_body_count} \
-# body_bytes=%{fetch_body_bytes}
-
-# Override the IMAP CAPABILITY response. If the value begins with '+',
-# add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
-#imap_capability =
-
-# How long to wait between "OK Still here" notifications when client is
-# IDLEing.
-#imap_idle_notify_interval = 2 mins
-
-# ID field names and values to send to clients. Using * as the value makes
-# Dovecot use the default value. The following fields have default values
-# currently: name, version, os, os-version, support-url, support-email,
-# revision.
-#imap_id_send =
-
-# ID fields sent by client to log. * means everything.
-#imap_id_log =
-
-# Workarounds for various client bugs:
-# delay-newmail:
-# Send EXISTS/RECENT new mail notifications only when replying to NOOP
-# and CHECK commands. Some clients ignore them otherwise, for example OSX
-# Mail (<v2.1). Outlook Express breaks more badly though, without this it
-# may show user "Message no longer in server" errors. Note that OE6 still
-# breaks even with this workaround if synchronization is set to
-# "Headers Only".
-# tb-extra-mailbox-sep:
-# Thunderbird gets somehow confused with LAYOUT=fs (mbox and dbox) and
-# adds extra '/' suffixes to mailbox names. This option causes Dovecot to
-# ignore the extra '/' instead of treating it as invalid mailbox name.
-# tb-lsub-flags:
-# Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
-# This makes Thunderbird realize they aren't selectable and show them
-# greyed out, instead of only later giving "not selectable" popup error.
-#
-# The list is space-separated.
-#imap_client_workarounds =
-
-# Host allowed in URLAUTH URLs sent by client. "*" allows all.
-#imap_urlauth_host =
-
-# Enable IMAP LITERAL- extension (replaces LITERAL+)
-#imap_literal_minus = no
-
-# What happens when FETCH fails due to some internal error:
-# disconnect-immediately:
-# The FETCH is aborted immediately and the IMAP client is disconnected.
-# disconnect-after:
-# The FETCH runs for all the requested mails returning as much data as
-# possible. The client is finally disconnected without a tagged reply.
-# no-after:
-# Same as disconnect-after, but tagged NO reply is sent instead of
-# disconnecting the client. If the client attempts to FETCH the same failed
-# mail more than once, the client is disconnected. This is to avoid clients
-# from going into infinite loops trying to FETCH a broken mail.
-#imap_fetch_failure = disconnect-immediately
-
-protocol imap {
- # Space separated list of plugins to load (default is global mail_plugins).
- #mail_plugins = $mail_plugins
-
- # Maximum number of IMAP connections allowed for a user from each IP address.
- # NOTE: The username is compared case-sensitively.
- #mail_max_userip_connections = 10
-}
+++ /dev/null
-##
-## LMTP specific settings
-##
-
-info_log_path = /var/log/dovecot-lmtp.log
-
-# Support proxying to other LMTP/SMTP servers by performing passdb lookups.
-#lmtp_proxy = no
-
-# When recipient address includes the detail (e.g. user+detail), try to save
-# the mail to the detail mailbox. See also recipient_delimiter and
-# lda_mailbox_autocreate settings.
-#lmtp_save_to_detail_mailbox = no
-
-# Verify quota before replying to RCPT TO. This adds a small overhead.
-#lmtp_rcpt_check_quota = no
-
-protocol lmtp {
- # Space separated list of plugins to load (default is global mail_plugins).
- mail_plugins = $mail_plugins sieve
- postmaster_address = postmaster@laktatnebel.de
-}
-
\ No newline at end of file
+++ /dev/null
-##
-## LMTP specific settings
-##
-
-# Support proxying to other LMTP/SMTP servers by performing passdb lookups.
-#lmtp_proxy = no
-
-# When recipient address includes the detail (e.g. user+detail), try to save
-# the mail to the detail mailbox. See also recipient_delimiter and
-# lda_mailbox_autocreate settings.
-#lmtp_save_to_detail_mailbox = no
-
-# Verify quota before replying to RCPT TO. This adds a small overhead.
-#lmtp_rcpt_check_quota = no
-
-# Add "Received:" header to mails delivered.
-#lmtp_add_received_header = yes
-
-# Which recipient address to use for Delivered-To: header and Received:
-# header. The default is "final", which is the same as the one given to
-# RCPT TO command. "original" uses the address given in RCPT TO's ORCPT
-# parameter, "none" uses nothing. Note that "none" is currently always used
-# when a mail has multiple recipients.
-#lmtp_hdr_delivery_address = final
-
-# Workarounds for various client bugs:
-# whitespace-before-path:
-# Allow one or more spaces or tabs between `MAIL FROM:' and path and between
-# `RCPT TO:' and path.
-# mailbox-for-path:
-# Allow using bare Mailbox syntax (i.e., without <...>) instead of full path
-# syntax.
-#
-# The list is space-separated.
-#lmtp_client_workarounds =
-
-protocol lmtp {
- # Space separated list of plugins to load (default is global mail_plugins).
- #mail_plugins = $mail_plugins
-}
+++ /dev/null
-##
-## ManageSieve specific settings
-##
-
-# Uncomment to enable managesieve protocol:
-#protocols = $protocols sieve
-
-# Service definitions
-
-#service managesieve-login {
- #inet_listener sieve {
- # port = 4190
- #}
-
- #inet_listener sieve_deprecated {
- # port = 2000
- #}
-
- # Number of connections to handle before starting a new process. Typically
- # the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0
- # is faster. <doc/wiki/LoginProcess.txt>
- #service_count = 1
-
- # Number of processes to always keep waiting for more connections.
- #process_min_avail = 0
-
- # If you set service_count=0, you probably need to grow this.
- #vsz_limit = 64M
-#}
-
-#service managesieve {
- # Max. number of ManageSieve processes (connections)
- #process_limit = 1024
-#}
-
-# Service configuration
-
-protocol sieve {
- # Maximum ManageSieve command line length in bytes. ManageSieve usually does
- # not involve overly long command lines, so this setting will not normally
- # need adjustment
- #managesieve_max_line_length = 65536
-
- # Maximum number of ManageSieve connections allowed for a user from each IP
- # address.
- # NOTE: The username is compared case-sensitively.
- #mail_max_userip_connections = 10
-
- # Space separated list of plugins to load (none known to be useful so far).
- # Do NOT try to load IMAP plugins here.
- #mail_plugins =
-
- # MANAGESIEVE logout format string:
- # %i - total number of bytes read from client
- # %o - total number of bytes sent to client
- #managesieve_logout_format = bytes=%i/%o
-
- # To fool ManageSieve clients that are focused on CMU's timesieved you can
- # specify the IMPLEMENTATION capability that Dovecot reports to clients.
- # For example: 'Cyrus timsieved v2.2.13'
- #managesieve_implementation_string = Dovecot Pigeonhole
-
- # Explicitly specify the SIEVE and NOTIFY capability reported by the server
- # before login. If left unassigned these will be reported dynamically
- # according to what the Sieve interpreter supports by default (after login
- # this may differ depending on the user).
- #managesieve_sieve_capability =
- #managesieve_notify_capability =
-
- # The maximum number of compile errors that are returned to the client upon
- # script upload or script verification.
- #managesieve_max_compile_errors = 5
-
- # Refer to 90-sieve.conf for script quota configuration and configuration of
- # Sieve execution limits.
-}
+++ /dev/null
-##
-## POP3 specific settings
-##
-
-# Don't try to set mails non-recent or seen with POP3 sessions. This is
-# mostly intended to reduce disk I/O. With maildir it doesn't move files
-# from new/ to cur/, with mbox it doesn't write Status-header.
-#pop3_no_flag_updates = no
-
-# Support LAST command which exists in old POP3 specs, but has been removed
-# from new ones. Some clients still wish to use this though. Enabling this
-# makes RSET command clear all \Seen flags from messages.
-#pop3_enable_last = no
-
-# If mail has X-UIDL header, use it as the mail's UIDL.
-#pop3_reuse_xuidl = no
-
-# Allow only one POP3 session to run simultaneously for the same user.
-#pop3_lock_session = no
-
-# POP3 requires message sizes to be listed as if they had CR+LF linefeeds.
-# Many POP3 servers violate this by returning the sizes with LF linefeeds,
-# because it's faster to get. When this setting is enabled, Dovecot still
-# tries to do the right thing first, but if that requires opening the
-# message, it fallbacks to the easier (but incorrect) size.
-#pop3_fast_size_lookups = no
-
-# POP3 UIDL (unique mail identifier) format to use. You can use following
-# variables, along with the variable modifiers described in
-# doc/wiki/Variables.txt (e.g. %Uf for the filename in uppercase)
-#
-# %v - Mailbox's IMAP UIDVALIDITY
-# %u - Mail's IMAP UID
-# %m - MD5 sum of the mailbox headers in hex (mbox only)
-# %f - filename (maildir only)
-# %g - Mail's GUID
-#
-# If you want UIDL compatibility with other POP3 servers, use:
-# UW's ipop3d : %08Xv%08Xu
-# Courier : %f or %v-%u (both might be used simultaneosly)
-# Cyrus (<= 2.1.3) : %u
-# Cyrus (>= 2.1.4) : %v.%u
-# Dovecot v0.99.x : %v.%u
-# tpop3d : %Mf
-#
-# Note that Outlook 2003 seems to have problems with %v.%u format which was
-# Dovecot's default, so if you're building a new server it would be a good
-# idea to change this. %08Xu%08Xv should be pretty fail-safe.
-#
-#pop3_uidl_format = %08Xu%08Xv
-
-# Permanently save UIDLs sent to POP3 clients, so pop3_uidl_format changes
-# won't change those UIDLs. Currently this works only with Maildir.
-#pop3_save_uidl = no
-
-# What to do about duplicate UIDLs if they exist?
-# allow: Show duplicates to clients.
-# rename: Append a temporary -2, -3, etc. counter after the UIDL.
-#pop3_uidl_duplicates = allow
-
-# This option changes POP3 behavior so that it's not possible to actually
-# delete mails via POP3, only hide them from future POP3 sessions. The mails
-# will still be counted towards user's quota until actually deleted via IMAP.
-# Use e.g. "$POP3Deleted" as the value (it will be visible as IMAP keyword).
-# Make sure you can legally archive mails before enabling this setting.
-#pop3_deleted_flag =
-
-# POP3 logout format string:
-# %i - total number of bytes read from client
-# %o - total number of bytes sent to client
-# %t - number of TOP commands
-# %p - number of bytes sent to client as a result of TOP command
-# %r - number of RETR commands
-# %b - number of bytes sent to client as a result of RETR command
-# %d - number of deleted messages
-# %m - number of messages (before deletion)
-# %s - mailbox size in bytes (before deletion)
-# %u - old/new UIDL hash. may help finding out if UIDLs changed unexpectedly
-#pop3_logout_format = top=%t/%p, retr=%r/%b, del=%d/%m, size=%s
-
-# Workarounds for various client bugs:
-# outlook-no-nuls:
-# Outlook and Outlook Express hang if mails contain NUL characters.
-# This setting replaces them with 0x80 character.
-# oe-ns-eoh:
-# Outlook Express and Netscape Mail breaks if end of headers-line is
-# missing. This option simply sends it if it's missing.
-# The list is space-separated.
-#pop3_client_workarounds =
-
-protocol pop3 {
- # Space separated list of plugins to load (default is global mail_plugins).
- #mail_plugins = $mail_plugins
-
- # Maximum number of POP3 connections allowed for a user from each IP address.
- # NOTE: The username is compared case-sensitively.
- #mail_max_userip_connections = 10
-}
+++ /dev/null
-##
-## Quota configuration.
-##
-
-# Note that you also have to enable quota plugin in mail_plugins setting.
-# <doc/wiki/Quota.txt>
-
-##
-## Quota limits
-##
-
-# Quota limits are set using "quota_rule" parameters. To get per-user quota
-# limits, you can set/override them by returning "quota_rule" extra field
-# from userdb. It's also possible to give mailbox-specific limits, for example
-# to give additional 100 MB when saving to Trash:
-
-plugin {
- #quota_rule = *:storage=1G
- #quota_rule2 = Trash:storage=+100M
-
- # LDA/LMTP allows saving the last mail to bring user from under quota to
- # over quota, if the quota doesn't grow too high. Default is to allow as
- # long as quota will stay under 10% above the limit. Also allowed e.g. 10M.
- #quota_grace = 10%%
-}
-
-##
-## Quota warnings
-##
-
-# You can execute a given command when user exceeds a specified quota limit.
-# Each quota root has separate limits. Only the command for the first
-# exceeded limit is excecuted, so put the highest limit first.
-# The commands are executed via script service by connecting to the named
-# UNIX socket (quota-warning below).
-# Note that % needs to be escaped as %%, otherwise "% " expands to empty.
-
-plugin {
- #quota_warning = storage=95%% quota-warning 95 %u
- #quota_warning2 = storage=80%% quota-warning 80 %u
-}
-
-# Example quota-warning service. The unix listener's permissions should be
-# set in a way that mail processes can connect to it. Below example assumes
-# that mail processes run as vmail user. If you use mode=0666, all system users
-# can generate quota warnings to anyone.
-#service quota-warning {
-# executable = script /usr/local/bin/quota-warning.sh
-# user = dovecot
-# unix_listener quota-warning {
-# user = vmail
-# }
-#}
-
-##
-## Quota backends
-##
-
-# Multiple backends are supported:
-# dirsize: Find and sum all the files found from mail directory.
-# Extremely SLOW with Maildir. It'll eat your CPU and disk I/O.
-# dict: Keep quota stored in dictionary (eg. SQL)
-# maildir: Maildir++ quota
-# fs: Read-only support for filesystem quota
-
-plugin {
- #quota = dirsize:User quota
- #quota = maildir:User quota
- #quota = dict:User quota::proxy::quota
- #quota = fs:User quota
-}
-
-# Multiple quota roots are also possible, for example this gives each user
-# their own 100MB quota and one shared 1GB quota within the domain:
-plugin {
- #quota = dict:user::proxy::quota
- #quota2 = dict:domain:%d:proxy::quota_domain
- #quota_rule = *:storage=102400
- #quota2_rule = *:storage=1048576
-}
+++ /dev/null
-# Sieve Extprograms plugin configuration
-
-# Don't forget to add the sieve_extprograms plugin to the sieve_plugins setting.
-# Also enable the extensions you need (one or more of vnd.dovecot.pipe,
-# vnd.dovecot.filter and vnd.dovecot.execute) by adding these to the
-# sieve_extensions or sieve_global_extensions settings. Restricting these
-# extensions to a global context using sieve_global_extensions is recommended.
-
-plugin {
-
- # The directory where the program sockets are located for the
- # vnd.dovecot.pipe, vnd.dovecot.filter and vnd.dovecot.execute extension
- # respectively. The name of each unix socket contained in that directory
- # directly maps to a program-name referenced from the Sieve script.
- #sieve_pipe_socket_dir = sieve-pipe
- #sieve_filter_socket_dir = sieve-filter
- #sieve_execute_socket_dir = sieve-execute
-
- # The directory where the scripts are located for direct execution by the
- # vnd.dovecot.pipe, vnd.dovecot.filter and vnd.dovecot.execute extension
- # respectively. The name of each script contained in that directory
- # directly maps to a program-name referenced from the Sieve script.
- #sieve_pipe_bin_dir = /usr/lib/dovecot/sieve-pipe
- #sieve_filter_bin_dir = /usr/lib/dovecot/sieve-filter
- #sieve_execute_bin_dir = /usr/lib/dovecot/sieve-execute
-}
-
-# An example program service called 'do-something' to pipe messages to
-#service do-something {
- # Define the executed script as parameter to the sieve service
- #executable = script /usr/lib/dovecot/sieve-pipe/do-something.sh
-
- # Use some unprivileged user for executing the program
- #user = dovenull
-
- # The unix socket located in the sieve_pipe_socket_dir (as defined in the
- # plugin {} section above)
- #unix_listener sieve-pipe/do-something {
- # LDA/LMTP must have access
- # user = vmail
- # mode = 0600
- #}
-#}
-
+++ /dev/null
-##
-## Settings for the Sieve interpreter
-##
-
-# Do not forget to enable the Sieve plugin in 15-lda.conf and 20-lmtp.conf
-# by adding it to the respective mail_plugins= settings.
-
-plugin {
- # The path to the user's main active script. If ManageSieve is used, this the
- # location of the symbolic link controlled by ManageSieve.
- sieve = ~/.dovecot.sieve
-
- # The default Sieve script when the user has none. This is a path to a global
- # sieve script file, which gets executed ONLY if user's private Sieve script
- # doesn't exist. Be sure to pre-compile this script manually using the sievec
- # command line tool.
- # --> See sieve_before fore executing scripts before the user's personal
- # script.
- #sieve_default = /var/lib/dovecot/sieve/default.sieve
-
- # Directory for :personal include scripts for the include extension. This
- # is also where the ManageSieve service stores the user's scripts.
- sieve_dir = ~/sieve
-
- # Directory for :global include scripts for the include extension.
- #sieve_global_dir =
-
- # Path to a script file or a directory containing script files that need to be
- # executed before the user's script. If the path points to a directory, all
- # the Sieve scripts contained therein (with the proper .sieve extension) are
- # executed. The order of execution within a directory is determined by the
- # file names, using a normal 8bit per-character comparison. Multiple script
- # file or directory paths can be specified by appending an increasing number.
- #sieve_before =
- #sieve_before2 =
- #sieve_before3 = (etc...)
-
- # Identical to sieve_before, only the specified scripts are executed after the
- # user's script (only when keep is still in effect!). Multiple script file or
- # directory paths can be specified by appending an increasing number.
- #sieve_after =
- #sieve_after2 =
- #sieve_after2 = (etc...)
-
- # Which Sieve language extensions are available to users. By default, all
- # supported extensions are available, except for deprecated extensions or
- # those that are still under development. Some system administrators may want
- # to disable certain Sieve extensions or enable those that are not available
- # by default. This setting can use '+' and '-' to specify differences relative
- # to the default. For example `sieve_extensions = +imapflags' will enable the
- # deprecated imapflags extension in addition to all extensions were already
- # enabled by default.
- #sieve_extensions = +notify +imapflags
-
- # Which Sieve language extensions are ONLY available in global scripts. This
- # can be used to restrict the use of certain Sieve extensions to administrator
- # control, for instance when these extensions can cause security concerns.
- # This setting has higher precedence than the `sieve_extensions' setting
- # (above), meaning that the extensions enabled with this setting are never
- # available to the user's personal script no matter what is specified for the
- # `sieve_extensions' setting. The syntax of this setting is similar to the
- # `sieve_extensions' setting, with the difference that extensions are
- # enabled or disabled for exclusive use in global scripts. Currently, no
- # extensions are marked as such by default.
- #sieve_global_extensions =
-
- # The Pigeonhole Sieve interpreter can have plugins of its own. Using this
- # setting, the used plugins can be specified. Check the Dovecot wiki
- # (wiki2.dovecot.org) or the pigeonhole website
- # (http://pigeonhole.dovecot.org) for available plugins.
- # The sieve_extprograms plugin is included in this release.
- #sieve_plugins =
-
- # The separator that is expected between the :user and :detail
- # address parts introduced by the subaddress extension. This may
- # also be a sequence of characters (e.g. '--'). The current
- # implementation looks for the separator from the left of the
- # localpart and uses the first one encountered. The :user part is
- # left of the separator and the :detail part is right. This setting
- # is also used by Dovecot's LMTP service.
- #recipient_delimiter = +
-
- # The maximum size of a Sieve script. The compiler will refuse to compile any
- # script larger than this limit. If set to 0, no limit on the script size is
- # enforced.
- #sieve_max_script_size = 1M
-
- # The maximum number of actions that can be performed during a single script
- # execution. If set to 0, no limit on the total number of actions is enforced.
- #sieve_max_actions = 32
-
- # The maximum number of redirect actions that can be performed during a single
- # script execution. If set to 0, no redirect actions are allowed.
- #sieve_max_redirects = 4
-
- # The maximum number of personal Sieve scripts a single user can have. If set
- # to 0, no limit on the number of scripts is enforced.
- # (Currently only relevant for ManageSieve)
- #sieve_quota_max_scripts = 0
-
- # The maximum amount of disk storage a single user's scripts may occupy. If
- # set to 0, no limit on the used amount of disk storage is enforced.
- # (Currently only relevant for ManageSieve)
- #sieve_quota_max_storage = 0
-}
+++ /dev/null
-##
-## Settings for the Sieve interpreter
-##
-
-# Do not forget to enable the Sieve plugin in 15-lda.conf and 20-lmtp.conf
-# by adding it to the respective mail_plugins= settings.
-
-# The Sieve interpreter can retrieve Sieve scripts from several types of
-# locations. The default `file' location type is a local filesystem path
-# pointing to a Sieve script file or a directory containing multiple Sieve
-# script files. More complex setups can use other location types such as
-# `ldap' or `dict' to fetch Sieve scripts from remote databases.
-#
-# All settings that specify the location of one ore more Sieve scripts accept
-# the following syntax:
-#
-# location = [<type>:]path[;<option>[=<value>][;...]]
-#
-# If the type prefix is omitted, the script location type is 'file' and the
-# location is interpreted as a local filesystem path pointing to a Sieve script
-# file or directory. Refer to Pigeonhole wiki or INSTALL file for more
-# information.
-
-plugin {
- # The location of the user's main Sieve script or script storage. The LDA
- # Sieve plugin uses this to find the active script for Sieve filtering at
- # delivery. The "include" extension uses this location for retrieving
- # :personal" scripts. This is also where the ManageSieve service will store
- # the user's scripts, if supported.
- #
- # Currently only the 'file:' location type supports ManageSieve operation.
- # Other location types like 'dict:' and 'ldap:' can currently only
- # be used as a read-only script source ().
- #
- # For the 'file:' type: use the ';active=' parameter to specify where the
- # active script symlink is located.
- # For other types: use the ';name=' parameter to specify the name of the
- # default/active script.
- sieve = file:~/sieve;active=~/.dovecot.sieve
-
- # The default Sieve script when the user has none. This is the location of a
- # global sieve script file, which gets executed ONLY if user's personal Sieve
- # script doesn't exist. Be sure to pre-compile this script manually using the
- # sievec command line tool if the binary is not stored in a global location.
- # --> See sieve_before for executing scripts before the user's personal
- # script.
- #sieve_default = /var/lib/dovecot/sieve/default.sieve
-
- # The name by which the default Sieve script (as configured by the
- # sieve_default setting) is visible to the user through ManageSieve.
- #sieve_default_name =
-
- # Location for ":global" include scripts as used by the "include" extension.
- #sieve_global =
-
- # The location of a Sieve script that is run for any message that is about to
- # be discarded; i.e., it is not delivered anywhere by the normal Sieve
- # execution. This only happens when the "implicit keep" is canceled, by e.g.
- # the "discard" action, and no actions that deliver the message are executed.
- # This "discard script" can prevent discarding the message, by executing
- # alternative actions. If the discard script does nothing, the message is
- # still discarded as it would be when no discard script is configured.
- #sieve_discard =
-
- # Location Sieve of scripts that need to be executed before the user's
- # personal script. If a 'file' location path points to a directory, all the
- # Sieve scripts contained therein (with the proper `.sieve' extension) are
- # executed. The order of execution within that directory is determined by the
- # file names, using a normal 8bit per-character comparison.
- #
- # Multiple script locations can be specified by appending an increasing number
- # to the setting name. The Sieve scripts found from these locations are added
- # to the script execution sequence in the specified order. Reading the
- # numbered sieve_before settings stops at the first missing setting, so no
- # numbers may be skipped.
- #sieve_before = /var/lib/dovecot/sieve.d/
- #sieve_before2 = ldap:/etc/sieve-ldap.conf;name=ldap-domain
- #sieve_before3 = (etc...)
-
- # Identical to sieve_before, only the specified scripts are executed after the
- # user's script (only when keep is still in effect!). Multiple script
- # locations can be specified by appending an increasing number.
- #sieve_after =
- #sieve_after2 =
- #sieve_after2 = (etc...)
-
- # Which Sieve language extensions are available to users. By default, all
- # supported extensions are available, except for deprecated extensions or
- # those that are still under development. Some system administrators may want
- # to disable certain Sieve extensions or enable those that are not available
- # by default. This setting can use '+' and '-' to specify differences relative
- # to the default. For example `sieve_extensions = +imapflags' will enable the
- # deprecated imapflags extension in addition to all extensions were already
- # enabled by default.
- #sieve_extensions = +notify +imapflags
-
- # Which Sieve language extensions are ONLY available in global scripts. This
- # can be used to restrict the use of certain Sieve extensions to administrator
- # control, for instance when these extensions can cause security concerns.
- # This setting has higher precedence than the `sieve_extensions' setting
- # (above), meaning that the extensions enabled with this setting are never
- # available to the user's personal script no matter what is specified for the
- # `sieve_extensions' setting. The syntax of this setting is similar to the
- # `sieve_extensions' setting, with the difference that extensions are
- # enabled or disabled for exclusive use in global scripts. Currently, no
- # extensions are marked as such by default.
- #sieve_global_extensions =
-
- # The Pigeonhole Sieve interpreter can have plugins of its own. Using this
- # setting, the used plugins can be specified. Check the Dovecot wiki
- # (wiki2.dovecot.org) or the pigeonhole website
- # (http://pigeonhole.dovecot.org) for available plugins.
- # The sieve_extprograms plugin is included in this release.
- #sieve_plugins =
-
- # The maximum size of a Sieve script. The compiler will refuse to compile any
- # script larger than this limit. If set to 0, no limit on the script size is
- # enforced.
- #sieve_max_script_size = 1M
-
- # The maximum number of actions that can be performed during a single script
- # execution. If set to 0, no limit on the total number of actions is enforced.
- #sieve_max_actions = 32
-
- # The maximum number of redirect actions that can be performed during a single
- # script execution. If set to 0, no redirect actions are allowed.
- #sieve_max_redirects = 4
-
- # The maximum number of personal Sieve scripts a single user can have. If set
- # to 0, no limit on the number of scripts is enforced.
- # (Currently only relevant for ManageSieve)
- #sieve_quota_max_scripts = 0
-
- # The maximum amount of disk storage a single user's scripts may occupy. If
- # set to 0, no limit on the used amount of disk storage is enforced.
- # (Currently only relevant for ManageSieve)
- #sieve_quota_max_storage = 0
-
- # The primary e-mail address for the user. This is used as a default when no
- # other appropriate address is available for sending messages. If this setting
- # is not configured, either the postmaster or null "<>" address is used as a
- # sender, depending on the action involved. This setting is important when
- # there is no message envelope to extract addresses from, such as when the
- # script is executed in IMAP.
- #sieve_user_email =
-
- # The path to the file where the user log is written. If not configured, a
- # default location is used. If the main user's personal Sieve (as configured
- # with sieve=) is a file, the logfile is set to <filename>.log by default. If
- # it is not a file, the default user log file is ~/.dovecot.sieve.log.
- #sieve_user_log =
-
- # Specifies what envelope sender address is used for redirected messages.
- # The following values are supported for this setting:
- #
- # "sender" - The sender address is used (default).
- # "recipient" - The final recipient address is used.
- # "orig_recipient" - The original recipient is used.
- # "user_email" - The user's primary address is used. This is
- # configured with the "sieve_user_email" setting. If
- # that setting is unconfigured, "user_mail" is equal to
- # "recipient".
- # "postmaster" - The postmaster_address configured for the LDA.
- # "<user@domain>" - Redirected messages are always sent from user@domain.
- # The angle brackets are mandatory. The null "<>" address
- # is also supported.
- #
- # This setting is ignored when the envelope sender is "<>". In that case the
- # sender of the redirected message is also always "<>".
- #sieve_redirect_envelope_from = sender
-
- ## TRACE DEBUGGING
- # Trace debugging provides detailed insight in the operations performed by
- # the Sieve script. These settings apply to both the LDA Sieve plugin and the
- # IMAPSIEVE plugin.
- #
- # WARNING: On a busy server, this functionality can quickly fill up the trace
- # directory with a lot of trace files. Enable this only temporarily and as
- # selective as possible.
-
- # The directory where trace files are written. Trace debugging is disabled if
- # this setting is not configured or if the directory does not exist. If the
- # path is relative or it starts with "~/" it is interpreted relative to the
- # current user's home directory.
- #sieve_trace_dir =
-
- # The verbosity level of the trace messages. Trace debugging is disabled if
- # this setting is not configured. Possible values are:
- #
- # "actions" - Only print executed action commands, like keep,
- # fileinto, reject and redirect.
- # "commands" - Print any executed command, excluding test commands.
- # "tests" - Print all executed commands and performed tests.
- # "matching" - Print all executed commands, performed tests and the
- # values matched in those tests.
- #sieve_trace_level =
-
- # Enables highly verbose debugging messages that are usually only useful for
- # developers.
- #sieve_trace_debug = no
-
- # Enables showing byte code addresses in the trace output, rather than only
- # the source line numbers.
- #sieve_trace_addresses = no
-}
+++ /dev/null
-# Authentication for SQL users. Included from 10-auth.conf.
-#
-# <doc/wiki/AuthDatabase.SQL.txt>
-
-passdb {
- driver = sql
- # Path for SQL configuration file, see example-config/dovecot-sql.conf.ext
- args = /etc/dovecot/dovecot-sql.conf.ext
-}
-
-# "prefetch" user database means that the passdb already provided the
-# needed information and there's no need to do a separate userdb lookup.
-# <doc/wiki/UserDatabase.Prefetch.txt>
-userdb {
- driver = prefetch
-}
-
-userdb {
- driver = sql
- args = /etc/dovecot/dovecot-sql.conf.ext
-}
-
-# If you don't have any user-specific settings, you can avoid the user_query
-# by using userdb static instead of userdb sql, for example:
-# <doc/wiki/UserDatabase.Static.txt>
-userdb {
- driver = static
- args = uid=vmail gid=vmail home=/var/vmail/%d/%n
-}
+++ /dev/null
-# Authentication for system users. Included from 10-auth.conf.
-#
-# <doc/wiki/PasswordDatabase.txt>
-# <doc/wiki/UserDatabase.txt>
-
-# PAM authentication. Preferred nowadays by most systems.
-# PAM is typically used with either userdb passwd or userdb static.
-# REMEMBER: You'll need /etc/pam.d/dovecot file created for PAM
-# authentication to actually work. <doc/wiki/PasswordDatabase.PAM.txt>
-passdb {
- driver = pam
- # [session=yes] [setcred=yes] [failure_show_msg=yes] [max_requests=<n>]
- # [cache_key=<key>] [<service name>]
- #args = dovecot
-}
-
-# System users (NSS, /etc/passwd, or similiar).
-# In many systems nowadays this uses Name Service Switch, which is
-# configured in /etc/nsswitch.conf. <doc/wiki/AuthDatabase.Passwd.txt>
-#passdb {
- #driver = passwd
- # [blocking=no]
- #args =
-#}
-
-# Shadow passwords for system users (NSS, /etc/shadow or similiar).
-# Deprecated by PAM nowadays.
-# <doc/wiki/PasswordDatabase.Shadow.txt>
-#passdb {
- #driver = shadow
- # [blocking=no]
- #args =
-#}
-
-# PAM-like authentication for OpenBSD.
-# <doc/wiki/PasswordDatabase.BSDAuth.txt>
-#passdb {
- #driver = bsdauth
- # [blocking=no] [cache_key=<key>]
- #args =
-#}
-
-##
-## User databases
-##
-
-# System users (NSS, /etc/passwd, or similiar). In many systems nowadays this
-# uses Name Service Switch, which is configured in /etc/nsswitch.conf.
-userdb {
- # <doc/wiki/AuthDatabase.Passwd.txt>
- driver = passwd
- # [blocking=no]
- #args =
-
- # Override fields from passwd
- #override_fields = home=/home/virtual/%u
-}
-
-# Static settings generated from template <doc/wiki/UserDatabase.Static.txt>
-#userdb {
- #driver = static
- # Can return anything a userdb could normally return. For example:
- #
- # args = uid=500 gid=500 home=/var/mail/%u
- #
- # LDA and LMTP needs to look up users only from the userdb. This of course
- # doesn't work with static userdb because there is no list of users.
- # Normally static userdb handles this by doing a passdb lookup. This works
- # with most passdbs, with PAM being the most notable exception. If you do
- # the user verification another way, you can add allow_all_users=yes to
- # the args in which case the passdb lookup is skipped.
- #
- #args =
-#}
+++ /dev/null
-# Authentication for vpopmail users. Included from 10-auth.conf.
-#
-# <doc/wiki/AuthDatabase.VPopMail.txt>
-
-passdb {
- driver = vpopmail
-
- # [cache_key=<key>] [webmail=<ip>]
- args =
-}
-
-userdb {
- driver = vpopmail
-
- # [quota_template=<template>] - %q expands to Maildir++ quota
- args = quota_template=quota_rule=*:backend=%q
-}
+++ /dev/null
-# This file is commonly accessed via passdb {} or userdb {} section in
-# conf.d/auth-sql.conf.ext
-
-# This file is opened as root, so it should be owned by root and mode 0600.
-#
-# http://wiki2.dovecot.org/AuthDatabase/SQL
-#
-# For the sql passdb module, you'll need a database with a table that
-# contains fields for at least the username and password. If you want to
-# use the user@domain syntax, you might want to have a separate domain
-# field as well.
-#
-# If your users all have the same uig/gid, and have predictable home
-# directories, you can use the static userdb module to generate the home
-# dir based on the username and domain. In this case, you won't need fields
-# for home, uid, or gid in the database.
-#
-# If you prefer to use the sql userdb module, you'll want to add fields
-# for home, uid, and gid. Here is an example table:
-#
-# CREATE TABLE users (
-# username VARCHAR(128) NOT NULL,
-# domain VARCHAR(128) NOT NULL,
-# password VARCHAR(64) NOT NULL,
-# home VARCHAR(255) NOT NULL,
-# uid INTEGER NOT NULL,
-# gid INTEGER NOT NULL,
-# active CHAR(1) DEFAULT 'Y' NOT NULL
-# );
-
-# Database driver: mysql, pgsql, sqlite
-driver = pgsql
-
-# Database connection string. This is driver-specific setting.
-#
-# HA / round-robin load-balancing is supported by giving multiple host
-# settings, like: host=sql1.host.org host=sql2.host.org
-#
-# pgsql:
-# For available options, see the PostgreSQL documention for the
-# PQconnectdb function of libpq.
-# Use maxconns=n (default 5) to change how many connections Dovecot can
-# create to pgsql.
-#
-# mysql:
-# Basic options emulate PostgreSQL option names:
-# host, port, user, password, dbname
-#
-# But also adds some new settings:
-# client_flags - See MySQL manual
-# ssl_ca, ssl_ca_path - Set either one or both to enable SSL
-# ssl_cert, ssl_key - For sending client-side certificates to server
-# ssl_cipher - Set minimum allowed cipher security (default: HIGH)
-# ssl_verify_server_cert - Verify that the name in the server SSL certificate
-# matches the host (default: no)
-# option_file - Read options from the given file instead of
-# the default my.cnf location
-# option_group - Read options from the given group (default: client)
-#
-# You can connect to UNIX sockets by using host: host=/var/run/mysql.sock
-# Note that currently you can't use spaces in parameters.
-#
-# sqlite:
-# The path to the database file.
-#
-# Examples:
-# connect = host=192.168.1.1 dbname=users
-# connect = host=sql.example.com dbname=virtual user=virtual password=blarg
-# connect = /etc/dovecot/authdb.sqlite
-#
-#connect =
-connect = "host=localhost dbname=serveradmin user=mailserver_manage password=pUn6ZUzqctC2z3Lq"
-
-# Default password scheme.
-#
-# List of supported schemes is in
-# http://wiki2.dovecot.org/Authentication/PasswordSchemes
-#
-#default_pass_scheme = MD5
-default_pass_scheme = SHA512
-
-
-# passdb query to retrieve the password. It can return fields:
-# password - The user's password. This field must be returned.
-# user - user@domain from the database. Needed with case-insensitive lookups.
-# username and domain - An alternative way to represent the "user" field.
-#
-# The "user" field is often necessary with case-insensitive lookups to avoid
-# e.g. "name" and "nAme" logins creating two different mail directories. If
-# your user and domain names are in separate fields, you can return "username"
-# and "domain" fields instead of "user".
-#
-# The query can also return other fields which have a special meaning, see
-# http://wiki2.dovecot.org/PasswordDatabase/ExtraFields
-#
-# Commonly used available substitutions (see http://wiki2.dovecot.org/Variables
-# for full list):
-# %u = entire user@domain
-# %n = user part of user@domain
-# %d = domain part of user@domain
-#
-# Note that these can be used only as input to SQL query. If the query outputs
-# any of these substitutions, they're not touched. Otherwise it would be
-# difficult to have eg. usernames containing '%' characters.
-#
-# Example:
-# password_query = SELECT userid AS user, pw AS password \
-# FROM users WHERE userid = '%u' AND active = 'Y'
-#
-#password_query = \
-# SELECT username, domain, password \
-# FROM users WHERE username = '%n' AND domain = '%d'
-
-password_query = SELECT pass AS password, username AS user, 'maildir:' || maildir_home AS userdb_mail, maildir_home AS userdb_home, 5000 AS userdb_uid, 5000 AS userdb_gid FROM mail.mail_view_users_maildir WHERE username = '%u'
-
-
-# userdb query to retrieve the user information. It can return fields:
-# uid - System UID (overrides mail_uid setting)
-# gid - System GID (overrides mail_gid setting)
-# home - Home directory
-# mail - Mail location (overrides mail_location setting)
-#
-# None of these are strictly required. If you use a single UID and GID, and
-# home or mail directory fits to a template string, you could use userdb static
-# instead. For a list of all fields that can be returned, see
-# http://wiki2.dovecot.org/UserDatabase/ExtraFields
-#
-# Examples:
-# user_query = SELECT home, uid, gid FROM users WHERE userid = '%u'
-# user_query = SELECT dir AS home, user AS uid, group AS gid FROM users where userid = '%u'
-# user_query = SELECT home, 501 AS uid, 501 AS gid FROM users WHERE userid = '%u'
-#
-#user_query = \
-# SELECT home, uid, gid \
-# FROM users WHERE username = '%n' AND domain = '%d'
-
-user_query = SELECT maildir_home AS home, 5000 AS uid, 5000 AS gid FROM mail.mail_view_users_maildir WHERE username = '%u'
-
-
-# If you wish to avoid two SQL lookups (passdb + userdb), you can use
-# userdb prefetch instead of userdb sql in dovecot.conf. In that case you'll
-# also have to return userdb fields in password_query prefixed with "userdb_"
-# string. For example:
-#password_query = \
-# SELECT userid AS user, password, \
-# home AS userdb_home, uid AS userdb_uid, gid AS userdb_gid \
-# FROM users WHERE userid = '%u'
-
-# Query to get a list of all usernames.
-#iterate_query = SELECT username AS user FROM users
+++ /dev/null
-## Dovecot configuration file
-
-# If you're in a hurry, see http://wiki2.dovecot.org/QuickConfiguration
-
-# "doveconf -n" command gives a clean output of the changed settings. Use it
-# instead of copy&pasting files when posting to the Dovecot mailing list.
-
-# '#' character and everything after it is treated as comments. Extra spaces
-# and tabs are ignored. If you want to use either of these explicitly, put the
-# value inside quotes, eg.: key = "# char and trailing whitespace "
-
-# Most (but not all) settings can be overridden by different protocols and/or
-# source/destination IPs by placing the settings inside sections, for example:
-# protocol imap { }, local 127.0.0.1 { }, remote 10.0.0.0/8 { }
-
-# Default values are shown for each setting, it's not required to uncomment
-# those. These are exceptions to this though: No sections (e.g. namespace {})
-# or plugin settings are added by default, they're listed only as examples.
-# Paths are also just examples with the real defaults being based on configure
-# options. The paths listed here are for configure --prefix=/usr
-# --sysconfdir=/etc --localstatedir=/var
-
-# Enable installed protocols
-!include_try /usr/share/dovecot/protocols.d/*.protocol
-
-protocols = imap lmtp
-
-# A comma separated list of IPs or hosts where to listen in for connections.
-# "*" listens in all IPv4 interfaces, "::" listens in all IPv6 interfaces.
-# If you want to specify non-default ports or anything more complex,
-# edit conf.d/master.conf.
-#listen = *, ::
-
-# Base directory where to store runtime data.
-#base_dir = /var/run/dovecot/
-
-# Name of this instance. In multi-instance setup doveadm and other commands
-# can use -i <instance_name> to select which instance is used (an alternative
-# to -c <config_path>). The instance name is also added to Dovecot processes
-# in ps output.
-#instance_name = dovecot
-
-# Greeting message for clients.
-login_greeting = Dovecot ready.
-
-# Space separated list of trusted network ranges. Connections from these
-# IPs are allowed to override their IP addresses and ports (for logging and
-# for authentication checks). disable_plaintext_auth is also ignored for
-# these networks. Typically you'd specify your IMAP proxy servers here.
-#login_trusted_networks =
-
-# Space separated list of login access check sockets (e.g. tcpwrap)
-#login_access_sockets =
-
-# With proxy_maybe=yes if proxy destination matches any of these IPs, don't do
-# proxying. This isn't necessary normally, but may be useful if the destination
-# IP is e.g. a load balancer's IP.
-#auth_proxy_self =
-
-# Show more verbose process titles (in ps). Currently shows user name and
-# IP address. Useful for seeing who are actually using the IMAP processes
-# (eg. shared mailboxes or if same uid is used for multiple accounts).
-#verbose_proctitle = no
-
-# Should all processes be killed when Dovecot master process shuts down.
-# Setting this to "no" means that Dovecot can be upgraded without
-# forcing existing client connections to close (although that could also be
-# a problem if the upgrade is e.g. because of a security fix).
-#shutdown_clients = yes
-
-# If non-zero, run mail commands via this many connections to doveadm server,
-# instead of running them directly in the same process.
-#doveadm_worker_count = 0
-# UNIX socket or host:port used for connecting to doveadm server
-#doveadm_socket_path = doveadm-server
-
-# Space separated list of environment variables that are preserved on Dovecot
-# startup and passed down to all of its child processes. You can also give
-# key=value pairs to always set specific settings.
-#import_environment = TZ
-
-##
-## Dictionary server settings
-##
-
-# Dictionary can be used to store key=value lists. This is used by several
-# plugins. The dictionary can be accessed either directly or though a
-# dictionary server. The following dict block maps dictionary names to URIs
-# when the server is used. These can then be referenced using URIs in format
-# "proxy::<name>".
-
-dict {
- #quota = mysql:/etc/dovecot/dovecot-dict-sql.conf.ext
- #expire = sqlite:/etc/dovecot/dovecot-dict-sql.conf.ext
-}
-
-# Most of the actual configuration gets included below. The filenames are
-# first sorted by their ASCII value and parsed in that order. The 00-prefixes
-# in filenames are intended to make it easier to understand the ordering.
-!include conf.d/*.conf
-
-# A config file can also tried to be included without giving an error if
-# it's not found:
-!include_try local.conf
+++ /dev/null
-127.0.0.1
-::1
-localhost
+++ /dev/null
-# This is a basic configuration for signing and verifying. It can easily be
-# adapted to suit a basic installation. See opendkim.conf(5) and
-# /usr/share/doc/opendkim/examples/opendkim.conf.sample for complete
-# documentation of available configuration parameters.
-
-Syslog yes
-SyslogSuccess yes
-LogWhy yes
-
-AutoRestart yes
-AutoRestartRate 10/1h
-
-# Common signing and verification parameters. In Debian, the "From" header is
-# oversigned, because it is often the identity key used by reputation systems
-# and thus somewhat security sensitive.
-Canonicalization relaxed/relaxed
-
-Mode sv
-
-#SubDomains no
-
-OversignHeaders From
-
-# Signing domain, selector, and key (required). For example, perform signing
-# for domain "example.com" with selector "2020" (2020._domainkey.example.com),
-# using the private key stored in /etc/dkimkeys/example.private. More granular
-# setup options can be found in /usr/share/doc/opendkim/README.opendkim.
-#Domain triathlon-coaching.com
-Domain *
-
-#Selector 2020
-Selector mail
-
-KeyFile /etc/opendkim/keys/triathlon-coaching.com/dkim1.private
-SigningTable refile:/etc/opendkim/signing.table
-KeyTable /etc/opendkim/key.table
-
-ExternalIgnoreList refile:/etc/opendkim/TrustedHosts
-
-# In Debian, opendkim runs as user "opendkim". A umask of 007 is required when
-# using a local socket with MTAs that access the socket as a non-privileged
-# user (for example, Postfix). You may need to add user "postfix" to group
-# "opendkim" in that case.
-UserID opendkim
-UMask 007
-
-# Socket for the MTA connection (required). If the MTA is inside a chroot jail,
-# it must be ensured that the socket is accessible. In Debian, Postfix runs in
-# a chroot in /var/spool/postfix, therefore a Unix socket would have to be
-# configured as shown on the last line below.
-#Socket local:/run/opendkim/opendkim.sock
-#Socket inet:8891@localhost
-#Socket inet:8891
-#Socket local:/var/spool/postfix/opendkim/opendkim.sock
-Socket inet:8891@127.0.0.1
-
-PidFile /run/opendkim/opendkim.pid
-
-# Hosts for which to sign rather than verify, default is 127.0.0.1. See the
-# OPERATION section of opendkim(8) for more information.
-#InternalHosts 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12
-InternalHosts refile:/etc/opendkim/TrustedHosts
-
-
-# The trust anchor enables DNSSEC. In Debian, the trust anchor file is provided
-# by the package dns-root-data.
-TrustAnchorFile /usr/share/dns/root.key
-#Nameservers 127.0.0.1
-
-RequireSafeKeys False
-
+++ /dev/null
-# This is a basic configuration that can easily be adapted to suit a standard
-# installation. For more advanced options, see openmarc.conf(5) and/or
-# /usr/share/doc/opendmarc/examples/opendmarc.conf.sample.
-
-## AuthservID (string)
-## defaults to MTA name
-AuthservID mail.triathlon-coaching.com
-
-
-##
-## Sets the "authserv-id" to use when generating the Authentication-Results:
-## header field after verifying a message. If the string "HOSTNAME" is
-## provided, the name of the host running the filter (as returned by the
-## gethostname(3) function) will be used.
-#
-# AuthservID name
-
-## FailureReports { true | false }
-## default "false"
-##
-## Enables generation of failure reports when the DMARC test fails and the
-## purported sender of the message has requested such reports. Reports are
-## formatted per RFC6591.
-#
-# FailureReports false
-FailureReports true
-FailureReportsSentBy postmaster@triathlon-coaching.com
-
-
-## PidFile path
-## default (none)
-##
-## Specifies the path to a file that should be created at process start
-## containing the process ID.
-#
-
-BaseDirectory /run/opendmarc
-PidFile /run/opendmarc/opendmarc.pid
-HistoryFile /run/opendmarc/opendmarc.dat
-
-## PublicSuffixList path
-## default (none)
-##
-## Specifies the path to a file that contains top-level domains (TLDs) that
-## will be used to compute the Organizational Domain for a given domain name,
-## as described in the DMARC specification. If not provided, the filter will
-## not be able to determine the Organizational Domain and only the presented
-## domain will be evaluated.
-#
-PublicSuffixList /etc/opendmarc/public_suffix_list.dat
-
-## RejectFailures { true | false }
-## default "false"
-##
-## If set, messages will be rejected if they fail the DMARC evaluation, or
-## temp-failed if evaluation could not be completed. By default, no message
-## will be rejected or temp-failed regardless of the outcome of the DMARC
-## evaluation of the message. Instead, an Authentication-Results header
-## field will be added.
-#
-# RejectFailures false
-RejectFailures true
-
-
-IgnoreMailFrom example.com
-IgnoreHosts /etc/opendmarc/ignore.hosts
-PublicSuffixList /etc/opendmarc/public_suffix_list.dat
-
-SoftwareHeader false
-
-
-## Socket socketspec
-## default (none)
-##
-## Specifies the socket that should be established by the filter to receive
-## connections from sendmail(8) in order to provide service. socketspec is
-## in one of two forms: local:path, which creates a UNIX domain socket at
-## the specified path, or inet:port[@host] or inet6:port[@host] which creates
-## a TCP socket on the specified port for the appropriate protocol family.
-## If the host is not given as either a hostname or an IP address, the
-## socket will be listening on all interfaces. This option is mandatory
-## either in the configuration file or on the command line. If an IP
-## address is used, it must be enclosed in square brackets.
-#
-AutoRestart true
-
-# Socket local:/run/opendmarc/opendmarc.sock
-Socket inet:8893@127.0.0.1
-
-## Syslog { true | false }
-## default "false"
-##
-## Log via calls to syslog(3) any interesting activity.
-#
-Syslog true
-## SyslogFacility facility-name
-## default "mail"
-##
-## Log via calls to syslog(3) using the named facility. The facility names
-## are the same as the ones allowed in syslog.conf(5).
-#
- SyslogFacility mail
-
-## TrustedAuthservIDs string
-## default HOSTNAME
-##
-## Specifies one or more "authserv-id" values to trust as relaying true
-## upstream DKIM and SPF results. The default is to use the name of
-## the MTA processing the message. To specify a list, separate each entry
-## with a comma. The key word "HOSTNAME" will be replaced by the name of
-## the host running the filter as reported by the gethostname(3) function.
-#
-# TrustedAuthservIDs HOSTNAME
-TrustedAuthservIDs mail.triathlon-coaching.com
-
-## UMask mask
-## default (none)
-##
-## Requests a specific permissions mask to be used for file creation. This
-## only really applies to creation of the socket when Socket specifies a
-## UNIX domain socket, and to the HistoryFile and PidFile (if any); temporary
-## files are normally created by the mkstemp(3) function that enforces a
-## specific file mode on creation regardless of the process umask. See
-## umask(2) for more information.
-#
-UMask 0002
-
-## UserID user[:group]
-## default (none)
-##
-## Attempts to become the specified userid before starting operations.
-## The process will be assigned all of the groups and primary group ID of
-## the named userid unless an alternate group is specified.
-#
-UserID opendmarc
-
-~
-~
-~
-~
\ No newline at end of file
+++ /dev/null
-# SMTPd greeting banner: You MUST specify $myhostname at the start of the text. This is required by the SMTP protocol.
-smtpd_banner = $myhostname
-
-# Disable local biff service
-biff = no
-
-# Do not append the string $mydomain to -locally- submitted email.
-append_dot_mydomain = no
-
-# Readme directory
-# readme_directory = /usr/share/doc/postfix
-readme_directory = no
-
-# HTML directory
-# html_directory = /usr/share/doc/postfix/html
-html_directory = no
-
-# Alias maps and database for -local- delivery only
-alias_maps = hash:/etc/aliases
-alias_database = hash:/etc/aliases
-
-# The domain name that locally-posted mail appears to come from, and that locally posted mail is delivered to.
-myorigin = /etc/mailname
-
-# The list of domains that are delivered via the -local- mail delivery transport. No external domains like "stratoserver.net" belong here! "h2410715.stratoserver.net" is fine.
-mydestination = vps2462554.fastwebserver.de, localhost.fastwebserver.de, localhost
-
-# Trusted SMTP clients with more privileges. Trusted clients can relay mail.
-mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
-
-# Use the FQDN for the local hostname!
-myhostname = vps2462554.fastwebserver.de
-
-#################################################################
-# TLS
-# Certificates
-smtpd_tls_key_file = /etc/letsencrypt/live/mail.triathlon-coaching.com/privkey.pem
-smtpd_tls_cert_file = /etc/letsencrypt/live/mail.triathlon-coaching.com/fullchain.pem
-
-# Opportunistic TLS. TLS auth only.
-smtpd_tls_security_level=may
-smtpd_tls_auth_only=yes
-
-#################################################################
-# SYSTEM USERS, PATH
-# vmail-user
-virtual_uid_maps = static:5000
-virtual_gid_maps = static:5000
-
-# The minimum user ID value that the virtual delivery agent accepts
-virtual_minimum_uid = 5000
-
-
-virtual_mailbox_base = /var/vmail
-
-# Handle Postfix-style extensions
-recipient_delimiter = +
-
-#################################################################
-# LOOKUP, TRANSPORT, LDA
-
-virtual_mailbox_maps = pgsql:/etc/postfix/sql/psql_virtual_mailbox_maps.cf
-virtual_mailbox_domains = pgsql:/etc/postfix/sql/psql_virtual_mailbox_domains.cf
-virtual_alias_maps = pgsql:/etc/postfix/sql/psql_virtual_alias_maps.cf
-
-local_recipient_maps =
-
-# The default mail delivery transport and next-hop destination for final delivery to domains listed with "virtual_mailbox_domains"
-virtual_transport = lmtp:unix:private/dovecot-lmtp
-
-dovecot_destination_recipient_limit = 1
-
-mailbox_command = /usr/lib/dovecot/deliver -f “$SENDER” -a “$RECIPIENT”
-
-#################################################################
-# MAIL RESTRICTIONS
-# Maximum mail size
-message_size_limit = 0
-
-# The maximal size of any -local- individual mailbox
-mailbox_size_limit = 0
-
-#################################################################
-
-# The network interface addresses that this mail system receives mail on.
-inet_interfaces = all
-
-#################################################################
-# AUTH PER DOVECOT
-# The SASL plug-in type that the Postfix SMTP server should use for authentication.
-smtpd_sasl_type=dovecot
-
-# Where to passthrough our authentication information for the above plug-in
-smtpd_sasl_path=private/auth_dovecot
-
-# Enable SASL authentication in the Postfix SMTP server.
-smtpd_sasl_auth_enable = yes
-
-# Report the SASL authenticated user name in the smtpd Received message header.
-##smtpd_sasl_authenticated_header = yes
-# -------------------- ?
-
-#################################################################
-
-
-# Sender, recipient, client and data restrictions
-smtpd_sender_restrictions =
- permit_sasl_authenticated,
- permit_mynetworks,
- reject_non_fqdn_sender,
- reject_unknown_sender_domain,
- permit
-
-## reject_authenticated_sender_login_mismatch,
-## reject_sender_login_mismatch,
-## reject_unlisted_sender,
-
-smtpd_recipient_restrictions =
- # wenn der client, ohne rueckmeldung, smtp commands abschickt (spam)
- reject_unauth_pipelining,
-
- # RCPT TO: feld muss FQDN haben
-## reject_non_fqdn_recipient
-
- # email muss fuer unsere domains gelten (keine weiterleitungen)
-## reject_unknown_recipient_domain,
- permit_sasl_authenticated,
- reject_unknown_reverse_client_hostname,
- permit_mynetworks,
-
- # RCPT TO: user@domain hat ein postfach bei uns
- # um nicht preiszugegen ob der user in postfach hat, koennte man die abfrage auch nach den RBL machen
- reject_unauth_destination,
- check_policy_service unix:private/policy-spf,
-
- # real time blacklist abfrage
- #reject_rbl_client dnsbl.njabl.org,
- reject_rbl_client sbl-xbl.spamhaus.org,
-
- # greylisting ?
- #check_policy_service inet:127.0.0.1:60000
-
- permit
-
-## check_recipient_access proxy:mysql:/etc/postfix/sql/mysql_tls_enforce_in_policy.cf,
-## reject_invalid_helo_hostname,
-
-smtpd_data_restrictions =
- reject_unauth_pipelining,
- permit
-
-
-#################################################################
-# Please say hello first...
-smtpd_helo_required = yes
-
-# We lookup MX records to send non-local mail, so this stays empty
-relayhost =
-
-# VRFY command is not really needed anymore
-disable_vrfy_command = yes
-
-
-
-#################################################################
-# Disallow SSLv2 and SSLv3, only accept secure ciphers
-smtpd_tls_mandatory_protocols=!SSLv2,!SSLv3
-smtpd_tls_protocols = !SSLv2, !SSLv3
-#smtpd_tls_mandatory_ciphers=high
-#smtpd_tls_exclude_ciphers = ECDHE-RSA-RC4-SHA
-#smtpd_tls_mandatory_exclude_ciphers = ECDHE-RSA-RC4-SHA
-
-debug_peer_list = 127.0.0.1
-debug_peer_level = 2
-
-#################################################################
-#################################################################
-
-
-# DH parameters, actually 2048 bit long
-#smtpd_tls_dh1024_param_file = /etc/ssl/mail/dhparams.pem
-
-# CA path for SMTP client connections to external servers
-#smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt
-
-# TLS session cache for SMTPd
-#smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
-
-
-# Log TLS handling
-#smtpd_tls_loglevel = 1
-#smtp_tls_loglevel = 1
-
-# Delay reject until RCPT TO
-#smtpd_delay_reject = yes
-
-# Enable elliptic curve cryptography, "ultra" needs more cpu time
-#smtpd_tls_eecdh_grade = strong
-
-# Default: Anonymize outgoing mail headers
-#smtp_header_checks = pcre:/etc/postfix/anonymize_headers.pcre
-
-
-##smtpd_restriction_classes = greylist
-
-##greylist = permit_dnswl_client list.dnswl.org, check_policy_service inet:127.0.0.1:10023
-
-# Determine valid MAIL FROM addresses for a SASL authenticated user.
-##smtpd_sender_login_maps = proxy:mysql:/etc/postfix/sql/mysql_virtual_sender_acl.cf
-
-# Sender dependent smtp service for TLS enforced connections
-##sender_dependent_default_transport_maps = proxy:mysql:/etc/postfix/sql/mysql_tls_enforce_out_policy.cf
-
-# Set a higher timeout for connecting, sending and receiving information from/to a proxy (FuGlu)
-##smtpd_proxy_timeout = 600s
-
-# TLS session cache for SMTP
-#smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
-
-# A custom list with secure ciphers.
-#tls_high_cipherlist=EDH+CAMELLIA:EDH+aRSA:EECDH+aRSA+AESGCM:EECDH+aRSA+SHA384:EECDH+aRSA+SHA256:EECDH:+CAMELLIA256:+AES256:+CAMELLIA128:+AES128:+SSLv3:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!PSK:!DSS:!RC4:!SEED:!ECDSA:CAMELLIA256-SHA:AES256-SHA:CAMELLIA128-SHA:AES128-SHA
-
-# We relay for these domains
-##relay_domains= proxy:mysql:/etc/postfix/sql/mysql_virtual_mxdomain_maps.cf
-
-# Relay only for these accounts
-##relay_recipient_maps = proxy:mysql:/etc/postfix/sql/mysql_relay_recipient_maps.cf
-
-
-
-# Have Postfix advertise AUTH support in a non-standard way.
-##broken_sasl_auth_clients = yes
-broken_sasl_auth_clients = no
-
-# The lookup tables that the proxymap server is allowed to access for the read-only service.
-## proxy_read_maps = proxy:mysql:/etc/postfix/sql/mysql_virtual_sender_acl.cf, proxy:mysql:/etc/postfix/sql/mysql_tls_enforce_out_policy.cf, proxy:mysql:/etc/postfix/sql/mysql_tls_enforce_in_policy.cf, $local_recipient_maps $mydestination $virtual_alias_maps $virtual_alias_domains $virtual_mailbox_maps $virtual_mailbox_domains $relay_recipient_maps $relay_domains $canonical_maps $sender_canonical_maps $recipient_canonical_maps $relocated_maps $transport_maps $mynetworks $smtpd_sender_login_maps
-
-
-## Queue configuration
-# Consider a message as undeliverable, when delivery fails with a temporary error, and the time in the queue has reached this limit.
-maximal_queue_lifetime = 1d
-
-# Consider a bounce message as undeliverable, when delivery fails with a temporary error, and the time in the queue has reached this limit.
-bounce_queue_lifetime = 1d
-
-# The time between deferred queue scans by the queue manager.
-queue_run_delay = 300s
-
-# The maximal/minimal time between attempts to deliver a deferred message.
-maximal_backoff_time = 1800s
-minimal_backoff_time = 300s
-
-
-
-# This tarpits a client after 3 erroneous commands for 10s
-smtpd_soft_error_limit = 3
-smtpd_error_sleep_time = 10s
-smtpd_hard_error_limit = ${stress?1}${stress:5}
-
-# Feel free to maintain a white-/blacklist for Postscreen
-#postscreen_access_list = permit_mynetworks, cidr:/etc/postfix/postscreen_access.cidr
-
-# Drop connections from blacklisted servers with a 521 reply
-#postscreen_blacklist_action = drop
-
-# Clean Postscreen cache after 24h
-#postscreen_cache_cleanup_interval = 24h
-
-#postscreen_dnsbl_ttl = 5m
-#postscreen_dnsbl_threshold = 8
-#postscreen_dnsbl_action = enforce
-#postscreen_dnsbl_sites =
-# b.barracudacentral.org=127.0.0.2*7
-# dnsbl.inps.de=127.0.0.2*7
-# bl.mailspike.net=127.0.0.2*5
-# bl.mailspike.net=127.0.0.[10;11;12]*4
-# dnsbl.sorbs.net=127.0.0.10*8
-# dnsbl.sorbs.net=127.0.0.5*6
-# dnsbl.sorbs.net=127.0.0.7*3
-# dnsbl.sorbs.net=127.0.0.8*2
-# dnsbl.sorbs.net=127.0.0.6*2
-# dnsbl.sorbs.net=127.0.0.9*2
-# zen.spamhaus.org=127.0.0.[10;11]*8
-# zen.spamhaus.org=127.0.0.[4..7]*6
-# zen.spamhaus.org=127.0.0.3*4
-# zen.spamhaus.org=127.0.0.2*3
-# hostkarma.junkemailfilter.com=127.0.0.2*3
-# hostkarma.junkemailfilter.com=127.0.0.4*1
-# hostkarma.junkemailfilter.com=127.0.1.2*1
-# wl.mailspike.net=127.0.0.[18;19;20]*-2
-# hostkarma.junkemailfilter.com=127.0.0.1*-2
-#postscreen_greet_banner = $smtpd_banner
-#postscreen_greet_action = enforce
-#postscreen_greet_wait = 3s
-#postscreen_greet_ttl = 2d
-#postscreen_bare_newline_enable = no
-#postscreen_non_smtp_command_enable = no
-#postscreen_pipelining_enable = no
-#postscreen_cache_map = proxy:btree:$data_directory/postscreen_cache
-
-# We need milter support for OpenDKIM
-smtpd_milters =
- inet:127.0.0.1:8891
- inet:127.0.0.1:8893
-# smtpd_milters = unix:/run/opendkim/opendkim.sock
-non_smtpd_milters = $smtpd_milters
-milter_protocol = 6
-
-# To avoid losing any mail, accept if the milter fails
-milter_default_action = accept
-
-# Hard-fail missing TLS when enabled for a user
-plaintext_reject_code = 550
-
-policy-spf_time_limit = 3600s
-
-
+++ /dev/null
-# Postfix master process configuration file. For details on the format
-# of the file, see the master(5) manual page (command: "man 5 master").
-#
-# Do not forget to execute "postfix reload" after editing this file.
-#
-# ==========================================================================
-# service type private unpriv chroot wakeup maxproc command + args
-# (yes) (yes) (yes) (never) (100)
-# ==========================================================================
-smtp inet n - y - - smtpd
-submission inet n - y - - smtpd
-# -o smtpd_tls_security_level=encrypt
- -o smtpd_sasl_auth_enable=yes
- -o smtpd_client_restrictions=permit_sasl_authenticated,reject
-# -o milter_macro_daemon_name=ORIGINATING
-#
-smtps inet n - y - - smtpd
- -o smtpd_tls_wrappermode=yes
- -o smtpd_sasl_auth_enable=yes
- -o smtpd_client_restrictions=permit_sasl_authenticated,reject
-# -o milter_macro_daemon_name=ORIGINATING
-#628 inet n - y - - qmqpd
-pickup fifo n - y 60 1 pickup
-cleanup unix n - y - 0 cleanup
-qmgr fifo n - n 300 1 qmgr
-#qmgr fifo n - n 300 1 oqmgr
-tlsmgr unix - - y 1000? 1 tlsmgr
-rewrite unix - - y - - trivial-rewrite
-bounce unix - - y - 0 bounce
-defer unix - - y - 0 bounce
-trace unix - - y - 0 bounce
-verify unix - - y - 1 verify
-flush unix n - y 1000? 0 flush
-proxymap unix - - n - - proxymap
-proxywrite unix - - n - 1 proxymap
-smtp unix - - y - - smtp
-# When relaying mail as backup MX, disable fallback_relay to avoid MX loops
-relay unix - - y - - smtp
- -o smtp_fallback_relay=
-# -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
-showq unix n - y - - showq
-error unix - - y - - error
-retry unix - - y - - error
-discard unix - - y - - discard
-local unix - n n - - local
-virtual unix - n n - - virtual
-lmtp unix - - y - - lmtp
-anvil unix - - y - 1 anvil
-scache unix - - y - 1 scache
-#
-# ====================================================================
-# Interfaces to non-Postfix software. Be sure to examine the manual
-# pages of the non-Postfix software to find out what options it wants.
-#
-# Many of the following services use the Postfix pipe(8) delivery
-# agent. See the pipe(8) man page for information about ${recipient}
-# and other message envelope options.
-# ====================================================================
-#
-dovecot unix - n n - - pipe
- flags=DRhu user=vmail:vmail argv=/usr/lib/dovecot/deliver -f ${sender} -d ${recipient}
-maildrop unix - n n - - pipe
- flags=DRhu user=vmail argv=/usr/bin/maildrop -d ${recipient}
-policy-spf unix - n n - - spawn
- user=nobody argv=/usr/bin/policyd-spf
-
\ No newline at end of file
+++ /dev/null
-$shlib_directory/postfix-pgsql.so:f:root:-:755
-$manpage_directory/man5/pgsql_table.5.gz:f:root:-:644
+++ /dev/null
-# /etc/postfix/sql/pqsl_virtual_mailbox_domains.cf
-# Modified by: Ole B. Rosentreter <postmaster@laktatnebel.dee>
-# Last modified: Fr, 18.02.2017 - 18:00:00
-
-# host
-hosts = 127.0.0.1
-
-# user name and password to log into the pgsql server.
-user = mailserver_manage
-password = pUn6ZUzqctC2z3Lq
-
-# database
-dbname = serveradmin
-
-# SQL query
-# Maildir des Users (Emailadresse, die das Postfach bezeichnet) finden
-#query = select username FROM mail.mail_view_users_maildir where username='%s'
-query = select username as destination FROM mail.mail_view_users_maildir where username='%s' union select destination FROM mail.mail_view_forwardings where source='%s'
-#query = SELECT username FROM mail.mail_view_users_maildir WHERE username='%s'
+++ /dev/null
-# /etc/postfix/sql/pqsl_virtual_mailbox_domains.cf
-# Modified by: Ole B. Rosentreter <postmaster@laktatnebel.dee>
-# Last modified: Fr, 18.02.2017 - 18:00:00
-
-# host
-hosts = 127.0.0.1
-
-# user name and password to log into the pgsql server.
-user = mailserver_manage
-password = pUn6ZUzqctC2z3Lq
-
-# database
-dbname = serveradmin
-
-# SQL query
-# Liste der verfügbaren Domains ausgeben
-query = SELECT DISTINCT domain FROM mail.mail_view_users_maildir WHERE domain='%s'
-#query = SELECT DISTINCT regdomain as domain FROM mail.mail_view_alias_domain WHERE regdomain='%s'
+++ /dev/null
-# /etc/postfix/sql/pqsl_virtual_mailbox_domains.cf
-# Modified by: Ole B. Rosentreter <postmaster@laktatnebel.dee>
-# Last modified: Fr, 18.02.2017 - 18:00:00
-
-
-
-# host
-hosts = 127.0.0.1
-
-# user name and password to log into the pgsql server.
-user = mailserver_manage
-password = pUn6ZUzqctC2z3Lq
-
-# database
-dbname = serveradmin
-
-# SQL query
-# Weiterleitungsadresse zu einer Email finden.
-query = SELECT destination FROM mail.mail_view_forwardings WHERE source='%s'
+++ /dev/null
-# $OpenBSD: sshd_config,v 1.103 2018/04/09 20:41:22 tj Exp $
-
-# This is the sshd server system-wide configuration file. See
-# sshd_config(5) for more information.
-
-# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
-
-# The strategy used for options in the default sshd_config shipped with
-# OpenSSH is to specify options with their default value where
-# possible, but leave them commented. Uncommented options override the
-# default value.
-
-Include /etc/ssh/sshd_config.d/*.conf
-
-Port 22
-#AddressFamily any
-#ListenAddress 0.0.0.0
-#ListenAddress ::
-
-Protocol 2
-
-HostKey /etc/ssh/ssh_host_rsa_key
-HostKey /etc/ssh/ssh_host_ecdsa_key
-HostKey /etc/ssh/ssh_host_ed25519_key
-
-UsePrivilegeSeparation yes
-
-# Ciphers and keying
-#RekeyLimit default none
-
-# Logging
-SyslogFacility AUTH
-LogLevel INFO
-
-# Authentication:
-
-LoginGraceTime 2m
-PermitRootLogin yes
-StrictModes yes
-#MaxAuthTries 6
-#MaxSessions 10
-
-RSAAuthentication yes
-PubkeyAuthentication yes
-
-# Expect .ssh/authorized_keys2 to be disregarded by default in future.
-#AuthorizedKeysFile .ssh/authorized_keys .ssh/authorized_keys2
-
-#AuthorizedPrincipalsFile none
-
-#AuthorizedKeysCommand none
-#AuthorizedKeysCommandUser nobody
-
-# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
-HostbasedAuthentication no
-# Change to yes if you don't trust ~/.ssh/known_hosts for
-HostbasedAuthentication no
-#IgnoreUserKnownHosts no
-# Don't read the user's ~/.rhosts and ~/.shosts files
-IgnoreRhosts yes
-
-# To disable tunneled clear text passwords, change to no here!
-PasswordAuthentication no
-PermitEmptyPasswords no
-
-# Change to yes to enable challenge-response passwords (beware issues with
-# some PAM modules and threads)
-ChallengeResponseAuthentication no
-
-# Kerberos options
-#KerberosAuthentication no
-#KerberosOrLocalPasswd yes
-#KerberosTicketCleanup yes
-#KerberosGetAFSToken no
-
-# GSSAPI options
-#GSSAPIAuthentication no
-#GSSAPICleanupCredentials yes
-#GSSAPIStrictAcceptorCheck yes
-#GSSAPIKeyExchange no
-
-# Set this to 'yes' to enable PAM authentication, account processing,
-# and session processing. If this is enabled, PAM authentication will
-# be allowed through the ChallengeResponseAuthentication and
-# PasswordAuthentication. Depending on your PAM configuration,
-# PAM authentication via ChallengeResponseAuthentication may bypass
-# the setting of "PermitRootLogin without-password".
-# If you just want the PAM account and session checks to run without
-# PAM authentication, then enable this but set PasswordAuthentication
-# and ChallengeResponseAuthentication to 'no'.
-UsePAM yes
-
-#AllowAgentForwarding yes
-#AllowTcpForwarding yes
-#GatewayPorts no
-X11Forwarding no
-X11DisplayOffset 10
-#X11UseLocalhost yes
-#PermitTTY yes
-PrintMotd no
-PrintLastLog yes
-TCPKeepAlive yes
-#PermitUserEnvironment no
-Compression yes
-#ClientAliveInterval 0
-#ClientAliveCountMax 3
-UseDNS yes
-#PidFile /var/run/sshd.pid
-#MaxStartups 10:30:100
-#PermitTunnel no
-#ChrootDirectory none
-#VersionAddendum none
-
-# no default banner path
-#Banner none
-
-# Allow client to pass locale environment variables
-AcceptEnv LANG LC_*
-
-# override default of no subsystems
-Subsystem sftp /usr/lib/openssh/sftp-server
-
-# Example of overriding settings on a per-user basis
-#Match User anoncvs
-# X11Forwarding no
-# AllowTcpForwarding no
-# PermitTTY no
-
+++ /dev/null
-# $OpenBSD: sshd_config,v 1.103 2018/04/09 20:41:22 tj Exp $
-
-# This is the sshd server system-wide configuration file. See
-# sshd_config(5) for more information.
-
-# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
-
-# The strategy used for options in the default sshd_config shipped with
-# OpenSSH is to specify options with their default value where
-# possible, but leave them commented. Uncommented options override the
-# default value.
-
-Include /etc/ssh/sshd_config.d/*.conf
-
-Port 22
-#AddressFamily any
-#ListenAddress 0.0.0.0
-#ListenAddress ::
-
-Protocol 2
-
-HostKey /etc/ssh/ssh_host_rsa_key
-HostKey /etc/ssh/ssh_host_ecdsa_key
-HostKey /etc/ssh/ssh_host_ed25519_key
-
-UsePrivilegeSeparation yes
-
-# Ciphers and keying
-#RekeyLimit default none
-
-# Logging
-SyslogFacility AUTH
-LogLevel INFO
-
-# Authentication:
-
-LoginGraceTime 2m
-PermitRootLogin no
-StrictModes yes
-#MaxAuthTries 6
-#MaxSessions 10
-
-RSAAuthentication yes
-PubkeyAuthentication yes
-
-# Expect .ssh/authorized_keys2 to be disregarded by default in future.
-#AuthorizedKeysFile .ssh/authorized_keys .ssh/authorized_keys2
-
-#AuthorizedPrincipalsFile none
-
-#AuthorizedKeysCommand none
-#AuthorizedKeysCommandUser nobody
-
-# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
-HostbasedAuthentication no
-# Change to yes if you don't trust ~/.ssh/known_hosts for
-HostbasedAuthentication no
-#IgnoreUserKnownHosts no
-# Don't read the user's ~/.rhosts and ~/.shosts files
-IgnoreRhosts yes
-
-# To disable tunneled clear text passwords, change to no here!
-PasswordAuthentication no
-PermitEmptyPasswords no
-
-# Change to yes to enable challenge-response passwords (beware issues with
-# some PAM modules and threads)
-ChallengeResponseAuthentication no
-
-# Kerberos options
-#KerberosAuthentication no
-#KerberosOrLocalPasswd yes
-#KerberosTicketCleanup yes
-#KerberosGetAFSToken no
-
-# GSSAPI options
-#GSSAPIAuthentication no
-#GSSAPICleanupCredentials yes
-#GSSAPIStrictAcceptorCheck yes
-#GSSAPIKeyExchange no
-
-# Set this to 'yes' to enable PAM authentication, account processing,
-# and session processing. If this is enabled, PAM authentication will
-# be allowed through the ChallengeResponseAuthentication and
-# PasswordAuthentication. Depending on your PAM configuration,
-# PAM authentication via ChallengeResponseAuthentication may bypass
-# the setting of "PermitRootLogin without-password".
-# If you just want the PAM account and session checks to run without
-# PAM authentication, then enable this but set PasswordAuthentication
-# and ChallengeResponseAuthentication to 'no'.
-UsePAM yes
-
-#AllowAgentForwarding yes
-#AllowTcpForwarding yes
-#GatewayPorts no
-X11Forwarding no
-X11DisplayOffset 10
-#X11UseLocalhost yes
-#PermitTTY yes
-PrintMotd no
-PrintLastLog yes
-TCPKeepAlive yes
-#PermitUserEnvironment no
-Compression yes
-#ClientAliveInterval 0
-#ClientAliveCountMax 3
-UseDNS yes
-#PidFile /var/run/sshd.pid
-#MaxStartups 10:30:100
-#PermitTunnel no
-#ChrootDirectory none
-#VersionAddendum none
-
-# no default banner path
-#Banner none
-
-# Allow client to pass locale environment variables
-AcceptEnv LANG LC_*
-
-# override default of no subsystems
-Subsystem sftp /usr/lib/openssh/sftp-server
-
-# Example of overriding settings on a per-user basis
-#Match User anoncvs
-# X11Forwarding no
-# AllowTcpForwarding no
-# PermitTTY no
-
+++ /dev/null
-access_compat
-alias
-auth_basic
-authn_core
-authn_dbd
-authn_file
-authz_core
-authz_dbd
-authz_host
-authz_user
-autoindex
-dbd
-deflate
-dir
-env
-filter
-jk
-mime
-mpm_prefork
-negotiation
-phpPHPVERSION
-reqtimeout
-rewrite
-setenvif
-socache_shmcb
-ssl
-status
-authn_socache
-expires
-headers
+++ /dev/null
-# Because we are using logrotate for greater flexibility, disable the
-# internal certbot logrotation.
-max-log-backups = 0
\ No newline at end of file
+++ /dev/null
-# This file contains important security parameters. If you modify this file
-# manually, Certbot will be unable to automatically provide future security
-# updates. Instead, Certbot will print and log an error message with a path to
-# the up-to-date file that you will need to refer to when manually updating
-# this file.
-
-SSLEngine on
-
-# Intermediate configuration, tweak to your needs
-SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
-SSLCipherSuite ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384
-SSLHonorCipherOrder off
-SSLSessionTickets off
-
-SSLOptions +StrictRequire
-
-# Add vhost name to log entries:
-LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" vhost_combined
-LogFormat "%v %h %l %u %t \"%r\" %>s %b" vhost_common
+++ /dev/null
-[PHP]
-
-;;;;;;;;;;;;;;;;;;;
-; About php.ini ;
-;;;;;;;;;;;;;;;;;;;
-; PHP's initialization file, generally called php.ini, is responsible for
-; configuring many of the aspects of PHP's behavior.
-
-; PHP attempts to find and load this configuration from a number of locations.
-; The following is a summary of its search order:
-; 1. SAPI module specific location.
-; 2. The PHPRC environment variable.
-; 3. A number of predefined registry keys on Windows
-; 4. Current working directory (except CLI)
-; 5. The web server's directory (for SAPI modules), or directory of PHP
-; (otherwise in Windows)
-; 6. The directory from the --with-config-file-path compile time option, or the
-; Windows directory (usually C:\windows)
-; See the PHP docs for more specific information.
-; https://php.net/configuration.file
-
-; The syntax of the file is extremely simple. Whitespace and lines
-; beginning with a semicolon are silently ignored (as you probably guessed).
-; Section headers (e.g. [Foo]) are also silently ignored, even though
-; they might mean something in the future.
-
-; Directives following the section heading [PATH=/www/mysite] only
-; apply to PHP files in the /www/mysite directory. Directives
-; following the section heading [HOST=www.example.com] only apply to
-; PHP files served from www.example.com. Directives set in these
-; special sections cannot be overridden by user-defined INI files or
-; at runtime. Currently, [PATH=] and [HOST=] sections only work under
-; CGI/FastCGI.
-; https://php.net/ini.sections
-
-; Directives are specified using the following syntax:
-; directive = value
-; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
-; Directives are variables used to configure PHP or PHP extensions.
-; There is no name validation. If PHP can't find an expected
-; directive because it is not set or is mistyped, a default value will be used.
-
-; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
-; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
-; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
-; previously set variable or directive (e.g. ${foo})
-
-; Expressions in the INI file are limited to bitwise operators and parentheses:
-; | bitwise OR
-; ^ bitwise XOR
-; & bitwise AND
-; ~ bitwise NOT
-; ! boolean NOT
-
-; Boolean flags can be turned on using the values 1, On, True or Yes.
-; They can be turned off using the values 0, Off, False or No.
-
-; An empty string can be denoted by simply not writing anything after the equal
-; sign, or by using the None keyword:
-
-; foo = ; sets foo to an empty string
-; foo = None ; sets foo to an empty string
-; foo = "None" ; sets foo to the string 'None'
-
-; If you use constants in your value, and these constants belong to a
-; dynamically loaded extension (either a PHP extension or a Zend extension),
-; you may only use these constants *after* the line that loads the extension.
-
-;;;;;;;;;;;;;;;;;;;
-; About this file ;
-;;;;;;;;;;;;;;;;;;;
-; PHP comes packaged with two INI files. One that is recommended to be used
-; in production environments and one that is recommended to be used in
-; development environments.
-
-; php.ini-production contains settings which hold security, performance and
-; best practices at its core. But please be aware, these settings may break
-; compatibility with older or less security-conscious applications. We
-; recommending using the production ini in production and testing environments.
-
-; php.ini-development is very similar to its production variant, except it is
-; much more verbose when it comes to errors. We recommend using the
-; development version only in development environments, as errors shown to
-; application users can inadvertently leak otherwise secure information.
-
-; This is the php.ini-production INI file.
-
-;;;;;;;;;;;;;;;;;;;
-; Quick Reference ;
-;;;;;;;;;;;;;;;;;;;
-
-; The following are all the settings which are different in either the production
-; or development versions of the INIs with respect to PHP's default behavior.
-; Please see the actual settings later in the document for more details as to why
-; we recommend these changes in PHP's behavior.
-
-; display_errors
-; Default Value: On
-; Development Value: On
-; Production Value: Off
-
-; display_startup_errors
-; Default Value: On
-; Development Value: On
-; Production Value: Off
-
-; error_reporting
-; Default Value: E_ALL
-; Development Value: E_ALL
-; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
-
-; log_errors
-; Default Value: Off
-; Development Value: On
-; Production Value: On
-
-; max_input_time
-; Default Value: -1 (Unlimited)
-; Development Value: 60 (60 seconds)
-; Production Value: 60 (60 seconds)
-
-; output_buffering
-; Default Value: Off
-; Development Value: 4096
-; Production Value: 4096
-
-; register_argc_argv
-; Default Value: On
-; Development Value: Off
-; Production Value: Off
-
-; request_order
-; Default Value: None
-; Development Value: "GP"
-; Production Value: "GP"
-
-; session.gc_divisor
-; Default Value: 100
-; Development Value: 1000
-; Production Value: 1000
-
-; session.sid_bits_per_character
-; Default Value: 4
-; Development Value: 5
-; Production Value: 5
-
-; short_open_tag
-; Default Value: On
-; Development Value: Off
-; Production Value: Off
-
-; variables_order
-; Default Value: "EGPCS"
-; Development Value: "GPCS"
-; Production Value: "GPCS"
-
-; zend.exception_ignore_args
-; Default Value: Off
-; Development Value: Off
-; Production Value: On
-
-; zend.exception_string_param_max_len
-; Default Value: 15
-; Development Value: 15
-; Production Value: 0
-
-;;;;;;;;;;;;;;;;;;;;
-; php.ini Options ;
-;;;;;;;;;;;;;;;;;;;;
-; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
-;user_ini.filename = ".user.ini"
-
-; To disable this feature set this option to an empty value
-;user_ini.filename =
-
-; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
-;user_ini.cache_ttl = 300
-
-;;;;;;;;;;;;;;;;;;;;
-; Language Options ;
-;;;;;;;;;;;;;;;;;;;;
-
-; Enable the PHP scripting language engine under Apache.
-; https://php.net/engine
-engine = On
-
-; This directive determines whether or not PHP will recognize code between
-; <? and ?> tags as PHP source which should be processed as such. It is
-; generally recommended that <?php and ?> should be used and that this feature
-; should be disabled, as enabling it may result in issues when generating XML
-; documents, however this remains supported for backward compatibility reasons.
-; Note that this directive does not control the <?= shorthand tag, which can be
-; used regardless of this directive.
-; Default Value: On
-; Development Value: Off
-; Production Value: Off
-; https://php.net/short-open-tag
-short_open_tag = Off
-
-; The number of significant digits displayed in floating point numbers.
-; https://php.net/precision
-precision = 14
-
-; Output buffering is a mechanism for controlling how much output data
-; (excluding headers and cookies) PHP should keep internally before pushing that
-; data to the client. If your application's output exceeds this setting, PHP
-; will send that data in chunks of roughly the size you specify.
-; Turning on this setting and managing its maximum buffer size can yield some
-; interesting side-effects depending on your application and web server.
-; You may be able to send headers and cookies after you've already sent output
-; through print or echo. You also may see performance benefits if your server is
-; emitting less packets due to buffered output versus PHP streaming the output
-; as it gets it. On production servers, 4096 bytes is a good setting for performance
-; reasons.
-; Note: Output buffering can also be controlled via Output Buffering Control
-; functions.
-; Possible Values:
-; On = Enabled and buffer is unlimited. (Use with caution)
-; Off = Disabled
-; Integer = Enables the buffer and sets its maximum size in bytes.
-; Note: This directive is hardcoded to Off for the CLI SAPI
-; Default Value: Off
-; Development Value: 4096
-; Production Value: 4096
-; https://php.net/output-buffering
-output_buffering = 4096
-
-; You can redirect all of the output of your scripts to a function. For
-; example, if you set output_handler to "mb_output_handler", character
-; encoding will be transparently converted to the specified encoding.
-; Setting any output handler automatically turns on output buffering.
-; Note: People who wrote portable scripts should not depend on this ini
-; directive. Instead, explicitly set the output handler using ob_start().
-; Using this ini directive may cause problems unless you know what script
-; is doing.
-; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
-; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
-; Note: output_handler must be empty if this is set 'On' !!!!
-; Instead you must use zlib.output_handler.
-; https://php.net/output-handler
-;output_handler =
-
-; URL rewriter function rewrites URL on the fly by using
-; output buffer. You can set target tags by this configuration.
-; "form" tag is special tag. It will add hidden input tag to pass values.
-; Refer to session.trans_sid_tags for usage.
-; Default Value: "form="
-; Development Value: "form="
-; Production Value: "form="
-;url_rewriter.tags
-
-; URL rewriter will not rewrite absolute URL nor form by default. To enable
-; absolute URL rewrite, allowed hosts must be defined at RUNTIME.
-; Refer to session.trans_sid_hosts for more details.
-; Default Value: ""
-; Development Value: ""
-; Production Value: ""
-;url_rewriter.hosts
-
-; Transparent output compression using the zlib library
-; Valid values for this option are 'off', 'on', or a specific buffer size
-; to be used for compression (default is 4KB)
-; Note: Resulting chunk size may vary due to nature of compression. PHP
-; outputs chunks that are few hundreds bytes each as a result of
-; compression. If you prefer a larger chunk size for better
-; performance, enable output_buffering in addition.
-; Note: You need to use zlib.output_handler instead of the standard
-; output_handler, or otherwise the output will be corrupted.
-; https://php.net/zlib.output-compression
-zlib.output_compression = Off
-
-; https://php.net/zlib.output-compression-level
-;zlib.output_compression_level = -1
-
-; You cannot specify additional output handlers if zlib.output_compression
-; is activated here. This setting does the same as output_handler but in
-; a different order.
-; https://php.net/zlib.output-handler
-;zlib.output_handler =
-
-; Implicit flush tells PHP to tell the output layer to flush itself
-; automatically after every output block. This is equivalent to calling the
-; PHP function flush() after each and every call to print() or echo() and each
-; and every HTML block. Turning this option on has serious performance
-; implications and is generally recommended for debugging purposes only.
-; https://php.net/implicit-flush
-; Note: This directive is hardcoded to On for the CLI SAPI
-implicit_flush = Off
-
-; The unserialize callback function will be called (with the undefined class'
-; name as parameter), if the unserializer finds an undefined class
-; which should be instantiated. A warning appears if the specified function is
-; not defined, or if the function doesn't include/implement the missing class.
-; So only set this entry, if you really want to implement such a
-; callback-function.
-unserialize_callback_func =
-
-; The unserialize_max_depth specifies the default depth limit for unserialized
-; structures. Setting the depth limit too high may result in stack overflows
-; during unserialization. The unserialize_max_depth ini setting can be
-; overridden by the max_depth option on individual unserialize() calls.
-; A value of 0 disables the depth limit.
-;unserialize_max_depth = 4096
-
-; When floats & doubles are serialized, store serialize_precision significant
-; digits after the floating point. The default value ensures that when floats
-; are decoded with unserialize, the data will remain the same.
-; The value is also used for json_encode when encoding double values.
-; If -1 is used, then dtoa mode 0 is used which automatically select the best
-; precision.
-serialize_precision = -1
-
-; open_basedir, if set, limits all file operations to the defined directory
-; and below. This directive makes most sense if used in a per-directory
-; or per-virtualhost web server configuration file.
-; Note: disables the realpath cache
-; https://php.net/open-basedir
-;open_basedir =
-
-; This directive allows you to disable certain functions.
-; It receives a comma-delimited list of function names.
-; https://php.net/disable-functions
-disable_functions =
-
-; This directive allows you to disable certain classes.
-; It receives a comma-delimited list of class names.
-; https://php.net/disable-classes
-disable_classes =
-
-; Colors for Syntax Highlighting mode. Anything that's acceptable in
-; <span style="color: ???????"> would work.
-; https://php.net/syntax-highlighting
-;highlight.string = #DD0000
-;highlight.comment = #FF9900
-;highlight.keyword = #007700
-;highlight.default = #0000BB
-;highlight.html = #000000
-
-; If enabled, the request will be allowed to complete even if the user aborts
-; the request. Consider enabling it if executing long requests, which may end up
-; being interrupted by the user or a browser timing out. PHP's default behavior
-; is to disable this feature.
-; https://php.net/ignore-user-abort
-;ignore_user_abort = On
-
-; Determines the size of the realpath cache to be used by PHP. This value should
-; be increased on systems where PHP opens many files to reflect the quantity of
-; the file operations performed.
-; Note: if open_basedir is set, the cache is disabled
-; https://php.net/realpath-cache-size
-;realpath_cache_size = 4096k
-
-; Duration of time, in seconds for which to cache realpath information for a given
-; file or directory. For systems with rarely changing files, consider increasing this
-; value.
-; https://php.net/realpath-cache-ttl
-;realpath_cache_ttl = 120
-
-; Enables or disables the circular reference collector.
-; https://php.net/zend.enable-gc
-zend.enable_gc = On
-
-; If enabled, scripts may be written in encodings that are incompatible with
-; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
-; encodings. To use this feature, mbstring extension must be enabled.
-;zend.multibyte = Off
-
-; Allows to set the default encoding for the scripts. This value will be used
-; unless "declare(encoding=...)" directive appears at the top of the script.
-; Only affects if zend.multibyte is set.
-;zend.script_encoding =
-
-; Allows to include or exclude arguments from stack traces generated for exceptions.
-; In production, it is recommended to turn this setting on to prohibit the output
-; of sensitive information in stack traces
-; Default Value: Off
-; Development Value: Off
-; Production Value: On
-zend.exception_ignore_args = On
-
-; Allows setting the maximum string length in an argument of a stringified stack trace
-; to a value between 0 and 1000000.
-; This has no effect when zend.exception_ignore_args is enabled.
-; Default Value: 15
-; Development Value: 15
-; Production Value: 0
-; In production, it is recommended to set this to 0 to reduce the output
-; of sensitive information in stack traces.
-zend.exception_string_param_max_len = 0
-
-;;;;;;;;;;;;;;;;;
-; Miscellaneous ;
-;;;;;;;;;;;;;;;;;
-
-; Decides whether PHP may expose the fact that it is installed on the server
-; (e.g. by adding its signature to the Web server header). It is no security
-; threat in any way, but it makes it possible to determine whether you use PHP
-; on your server or not.
-; https://php.net/expose-php
-expose_php = Off
-
-;;;;;;;;;;;;;;;;;;;
-; Resource Limits ;
-;;;;;;;;;;;;;;;;;;;
-
-; Maximum execution time of each script, in seconds
-; https://php.net/max-execution-time
-; Note: This directive is hardcoded to 0 for the CLI SAPI
-max_execution_time = 30
-
-; Maximum amount of time each script may spend parsing request data. It's a good
-; idea to limit this time on productions servers in order to eliminate unexpectedly
-; long running scripts.
-; Note: This directive is hardcoded to -1 for the CLI SAPI
-; Default Value: -1 (Unlimited)
-; Development Value: 60 (60 seconds)
-; Production Value: 60 (60 seconds)
-; https://php.net/max-input-time
-max_input_time = 60
-
-; Maximum input variable nesting level
-; https://php.net/max-input-nesting-level
-;max_input_nesting_level = 64
-
-; How many GET/POST/COOKIE input variables may be accepted
-;max_input_vars = 1000
-
-; How many multipart body parts (combined input variable and file uploads) may
-; be accepted.
-; Default Value: -1 (Sum of max_input_vars and max_file_uploads)
-;max_multipart_body_parts = 1500
-
-; Maximum amount of memory a script may consume
-; https://php.net/memory-limit
-memory_limit = 128M
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-; Error handling and logging ;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-; This directive informs PHP of which errors, warnings and notices you would like
-; it to take action for. The recommended way of setting values for this
-; directive is through the use of the error level constants and bitwise
-; operators. The error level constants are below here for convenience as well as
-; some common settings and their meanings.
-; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
-; those related to E_NOTICE and E_STRICT, which together cover best practices and
-; recommended coding standards in PHP. For performance reasons, this is the
-; recommend error reporting setting. Your production server shouldn't be wasting
-; resources complaining about best practices and coding standards. That's what
-; development servers and development settings are for.
-; Note: The php.ini-development file has this setting as E_ALL. This
-; means it pretty much reports everything which is exactly what you want during
-; development and early testing.
-;
-; Error Level Constants:
-; E_ALL - All errors and warnings
-; E_ERROR - fatal run-time errors
-; E_RECOVERABLE_ERROR - almost fatal run-time errors
-; E_WARNING - run-time warnings (non-fatal errors)
-; E_PARSE - compile-time parse errors
-; E_NOTICE - run-time notices (these are warnings which often result
-; from a bug in your code, but it's possible that it was
-; intentional (e.g., using an uninitialized variable and
-; relying on the fact it is automatically initialized to an
-; empty string)
-; E_STRICT - run-time notices, enable to have PHP suggest changes
-; to your code which will ensure the best interoperability
-; and forward compatibility of your code
-; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
-; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
-; initial startup
-; E_COMPILE_ERROR - fatal compile-time errors
-; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
-; E_USER_ERROR - user-generated error message
-; E_USER_WARNING - user-generated warning message
-; E_USER_NOTICE - user-generated notice message
-; E_DEPRECATED - warn about code that will not work in future versions
-; of PHP
-; E_USER_DEPRECATED - user-generated deprecation warnings
-;
-; Common Values:
-; E_ALL (Show all errors, warnings and notices including coding standards.)
-; E_ALL & ~E_NOTICE (Show all errors, except for notices)
-; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
-; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
-; Default Value: E_ALL
-; Development Value: E_ALL
-; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
-; https://php.net/error-reporting
-error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
-
-; This directive controls whether or not and where PHP will output errors,
-; notices and warnings too. Error output is very useful during development, but
-; it could be very dangerous in production environments. Depending on the code
-; which is triggering the error, sensitive information could potentially leak
-; out of your application such as database usernames and passwords or worse.
-; For production environments, we recommend logging errors rather than
-; sending them to STDOUT.
-; Possible Values:
-; Off = Do not display any errors
-; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
-; On or stdout = Display errors to STDOUT
-; Default Value: On
-; Development Value: On
-; Production Value: Off
-; https://php.net/display-errors
-display_errors = Off
-
-; The display of errors which occur during PHP's startup sequence are handled
-; separately from display_errors. We strongly recommend you set this to 'off'
-; for production servers to avoid leaking configuration details.
-; Default Value: On
-; Development Value: On
-; Production Value: Off
-; https://php.net/display-startup-errors
-display_startup_errors = Off
-
-; Besides displaying errors, PHP can also log errors to locations such as a
-; server-specific log, STDERR, or a location specified by the error_log
-; directive found below. While errors should not be displayed on productions
-; servers they should still be monitored and logging is a great way to do that.
-; Default Value: Off
-; Development Value: On
-; Production Value: On
-; https://php.net/log-errors
-log_errors = On
-
-; Do not log repeated messages. Repeated errors must occur in same file on same
-; line unless ignore_repeated_source is set true.
-; https://php.net/ignore-repeated-errors
-ignore_repeated_errors = Off
-
-; Ignore source of message when ignoring repeated messages. When this setting
-; is On you will not log errors with repeated messages from different files or
-; source lines.
-; https://php.net/ignore-repeated-source
-ignore_repeated_source = Off
-
-; If this parameter is set to Off, then memory leaks will not be shown (on
-; stdout or in the log). This is only effective in a debug compile, and if
-; error reporting includes E_WARNING in the allowed list
-; https://php.net/report-memleaks
-report_memleaks = On
-
-; This setting is off by default.
-;report_zend_debug = 0
-
-; Turn off normal error reporting and emit XML-RPC error XML
-; https://php.net/xmlrpc-errors
-;xmlrpc_errors = 0
-
-; An XML-RPC faultCode
-;xmlrpc_error_number = 0
-
-; When PHP displays or logs an error, it has the capability of formatting the
-; error message as HTML for easier reading. This directive controls whether
-; the error message is formatted as HTML or not.
-; Note: This directive is hardcoded to Off for the CLI SAPI
-; https://php.net/html-errors
-;html_errors = On
-
-; If html_errors is set to On *and* docref_root is not empty, then PHP
-; produces clickable error messages that direct to a page describing the error
-; or function causing the error in detail.
-; You can download a copy of the PHP manual from https://php.net/docs
-; and change docref_root to the base URL of your local copy including the
-; leading '/'. You must also specify the file extension being used including
-; the dot. PHP's default behavior is to leave these settings empty, in which
-; case no links to documentation are generated.
-; Note: Never use this feature for production boxes.
-; https://php.net/docref-root
-; Examples
-;docref_root = "/phpmanual/"
-
-; https://php.net/docref-ext
-;docref_ext = .html
-
-; String to output before an error message. PHP's default behavior is to leave
-; this setting blank.
-; https://php.net/error-prepend-string
-; Example:
-;error_prepend_string = "<span style='color: #ff0000'>"
-
-; String to output after an error message. PHP's default behavior is to leave
-; this setting blank.
-; https://php.net/error-append-string
-; Example:
-;error_append_string = "</span>"
-
-; Log errors to specified file. PHP's default behavior is to leave this value
-; empty.
-; https://php.net/error-log
-; Example:
-;error_log = php_errors.log
-; Log errors to syslog (Event Log on Windows).
-;error_log = syslog
-
-; The syslog ident is a string which is prepended to every message logged
-; to syslog. Only used when error_log is set to syslog.
-;syslog.ident = php
-
-; The syslog facility is used to specify what type of program is logging
-; the message. Only used when error_log is set to syslog.
-;syslog.facility = user
-
-; Set this to disable filtering control characters (the default).
-; Some loggers only accept NVT-ASCII, others accept anything that's not
-; control characters. If your logger accepts everything, then no filtering
-; is needed at all.
-; Allowed values are:
-; ascii (all printable ASCII characters and NL)
-; no-ctrl (all characters except control characters)
-; all (all characters)
-; raw (like "all", but messages are not split at newlines)
-; https://php.net/syslog.filter
-;syslog.filter = ascii
-
-;windows.show_crt_warning
-; Default value: 0
-; Development value: 0
-; Production value: 0
-
-;;;;;;;;;;;;;;;;;
-; Data Handling ;
-;;;;;;;;;;;;;;;;;
-
-; The separator used in PHP generated URLs to separate arguments.
-; PHP's default setting is "&".
-; https://php.net/arg-separator.output
-; Example:
-;arg_separator.output = "&"
-
-; List of separator(s) used by PHP to parse input URLs into variables.
-; PHP's default setting is "&".
-; NOTE: Every character in this directive is considered as separator!
-; https://php.net/arg-separator.input
-; Example:
-;arg_separator.input = ";&"
-
-; This directive determines which super global arrays are registered when PHP
-; starts up. G,P,C,E & S are abbreviations for the following respective super
-; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
-; paid for the registration of these arrays and because ENV is not as commonly
-; used as the others, ENV is not recommended on productions servers. You
-; can still get access to the environment variables through getenv() should you
-; need to.
-; Default Value: "EGPCS"
-; Development Value: "GPCS"
-; Production Value: "GPCS";
-; https://php.net/variables-order
-variables_order = "GPCS"
-
-; This directive determines which super global data (G,P & C) should be
-; registered into the super global array REQUEST. If so, it also determines
-; the order in which that data is registered. The values for this directive
-; are specified in the same manner as the variables_order directive,
-; EXCEPT one. Leaving this value empty will cause PHP to use the value set
-; in the variables_order directive. It does not mean it will leave the super
-; globals array REQUEST empty.
-; Default Value: None
-; Development Value: "GP"
-; Production Value: "GP"
-; https://php.net/request-order
-request_order = "GP"
-
-; This directive determines whether PHP registers $argv & $argc each time it
-; runs. $argv contains an array of all the arguments passed to PHP when a script
-; is invoked. $argc contains an integer representing the number of arguments
-; that were passed when the script was invoked. These arrays are extremely
-; useful when running scripts from the command line. When this directive is
-; enabled, registering these variables consumes CPU cycles and memory each time
-; a script is executed. For performance reasons, this feature should be disabled
-; on production servers.
-; Note: This directive is hardcoded to On for the CLI SAPI
-; Default Value: On
-; Development Value: Off
-; Production Value: Off
-; https://php.net/register-argc-argv
-register_argc_argv = Off
-
-; When enabled, the ENV, REQUEST and SERVER variables are created when they're
-; first used (Just In Time) instead of when the script starts. If these
-; variables are not used within a script, having this directive on will result
-; in a performance gain. The PHP directive register_argc_argv must be disabled
-; for this directive to have any effect.
-; https://php.net/auto-globals-jit
-auto_globals_jit = On
-
-; Whether PHP will read the POST data.
-; This option is enabled by default.
-; Most likely, you won't want to disable this option globally. It causes $_POST
-; and $_FILES to always be empty; the only way you will be able to read the
-; POST data will be through the php://input stream wrapper. This can be useful
-; to proxy requests or to process the POST data in a memory efficient fashion.
-; https://php.net/enable-post-data-reading
-;enable_post_data_reading = Off
-
-; Maximum size of POST data that PHP will accept.
-; Its value may be 0 to disable the limit. It is ignored if POST data reading
-; is disabled through enable_post_data_reading.
-; https://php.net/post-max-size
-post_max_size = 16M
-
-; Automatically add files before PHP document.
-; https://php.net/auto-prepend-file
-auto_prepend_file =
-
-; Automatically add files after PHP document.
-; https://php.net/auto-append-file
-auto_append_file =
-
-; By default, PHP will output a media type using the Content-Type header. To
-; disable this, simply set it to be empty.
-;
-; PHP's built-in default media type is set to text/html.
-; https://php.net/default-mimetype
-default_mimetype = "text/html"
-
-; PHP's default character set is set to UTF-8.
-; https://php.net/default-charset
-default_charset = "UTF-8"
-
-; PHP internal character encoding is set to empty.
-; If empty, default_charset is used.
-; https://php.net/internal-encoding
-;internal_encoding =
-
-; PHP input character encoding is set to empty.
-; If empty, default_charset is used.
-; https://php.net/input-encoding
-;input_encoding =
-
-; PHP output character encoding is set to empty.
-; If empty, default_charset is used.
-; See also output_buffer.
-; https://php.net/output-encoding
-;output_encoding =
-
-;;;;;;;;;;;;;;;;;;;;;;;;;
-; Paths and Directories ;
-;;;;;;;;;;;;;;;;;;;;;;;;;
-
-; UNIX: "/path1:/path2"
-;include_path = ".:/usr/share/php"
-;
-; Windows: "\path1;\path2"
-;include_path = ".;c:\php\includes"
-;
-; PHP's default setting for include_path is ".;/path/to/php/pear"
-; https://php.net/include-path
-
-; The root of the PHP pages, used only if nonempty.
-; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
-; if you are running php as a CGI under any web server (other than IIS)
-; see documentation for security issues. The alternate is to use the
-; cgi.force_redirect configuration below
-; https://php.net/doc-root
-doc_root =
-
-; The directory under which PHP opens the script using /~username used only
-; if nonempty.
-; https://php.net/user-dir
-user_dir =
-
-; Directory in which the loadable extensions (modules) reside.
-; https://php.net/extension-dir
-;extension_dir = "./"
-; On windows:
-;extension_dir = "ext"
-
-; Directory where the temporary files should be placed.
-; Defaults to the system default (see sys_get_temp_dir)
-;sys_temp_dir = "/tmp"
-
-; Whether or not to enable the dl() function. The dl() function does NOT work
-; properly in multithreaded servers, such as IIS or Zeus, and is automatically
-; disabled on them.
-; https://php.net/enable-dl
-enable_dl = Off
-
-; cgi.force_redirect is necessary to provide security running PHP as a CGI under
-; most web servers. Left undefined, PHP turns this on by default. You can
-; turn it off here AT YOUR OWN RISK
-; **You CAN safely turn this off for IIS, in fact, you MUST.**
-; https://php.net/cgi.force-redirect
-;cgi.force_redirect = 1
-
-; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
-; every request. PHP's default behavior is to disable this feature.
-;cgi.nph = 1
-
-; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
-; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
-; will look for to know it is OK to continue execution. Setting this variable MAY
-; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
-; https://php.net/cgi.redirect-status-env
-;cgi.redirect_status_env =
-
-; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
-; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
-; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
-; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
-; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
-; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
-; https://php.net/cgi.fix-pathinfo
-;cgi.fix_pathinfo=1
-
-; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside
-; of the web tree and people will not be able to circumvent .htaccess security.
-;cgi.discard_path=1
-
-; FastCGI under IIS supports the ability to impersonate
-; security tokens of the calling client. This allows IIS to define the
-; security context that the request runs under. mod_fastcgi under Apache
-; does not currently support this feature (03/17/2002)
-; Set to 1 if running under IIS. Default is zero.
-; https://php.net/fastcgi.impersonate
-;fastcgi.impersonate = 1
-
-; Disable logging through FastCGI connection. PHP's default behavior is to enable
-; this feature.
-;fastcgi.logging = 0
-
-; cgi.rfc2616_headers configuration option tells PHP what type of headers to
-; use when sending HTTP response code. If set to 0, PHP sends Status: header that
-; is supported by Apache. When this option is set to 1, PHP will send
-; RFC2616 compliant header.
-; Default is zero.
-; https://php.net/cgi.rfc2616-headers
-;cgi.rfc2616_headers = 0
-
-; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #!
-; (shebang) at the top of the running script. This line might be needed if the
-; script support running both as stand-alone script and via PHP CGI<. PHP in CGI
-; mode skips this line and ignores its content if this directive is turned on.
-; https://php.net/cgi.check-shebang-line
-;cgi.check_shebang_line=1
-
-;;;;;;;;;;;;;;;;
-; File Uploads ;
-;;;;;;;;;;;;;;;;
-
-; Whether to allow HTTP file uploads.
-; https://php.net/file-uploads
-file_uploads = On
-
-; Temporary directory for HTTP uploaded files (will use system default if not
-; specified).
-; https://php.net/upload-tmp-dir
-;upload_tmp_dir =
-
-; Maximum allowed size for uploaded files.
-; https://php.net/upload-max-filesize
-upload_max_filesize = 32M
-
-; Maximum number of files that can be uploaded via a single request
-max_file_uploads = 20
-
-;;;;;;;;;;;;;;;;;;
-; Fopen wrappers ;
-;;;;;;;;;;;;;;;;;;
-
-; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
-; https://php.net/allow-url-fopen
-allow_url_fopen = On
-
-; Whether to allow include/require to open URLs (like https:// or ftp://) as files.
-; https://php.net/allow-url-include
-allow_url_include = Off
-
-; Define the anonymous ftp password (your email address). PHP's default setting
-; for this is empty.
-; https://php.net/from
-;from="john@doe.com"
-
-; Define the User-Agent string. PHP's default setting for this is empty.
-; https://php.net/user-agent
-;user_agent="PHP"
-
-; Default timeout for socket based streams (seconds)
-; https://php.net/default-socket-timeout
-default_socket_timeout = 60
-
-; If your scripts have to deal with files from Macintosh systems,
-; or you are running on a Mac and need to deal with files from
-; unix or win32 systems, setting this flag will cause PHP to
-; automatically detect the EOL character in those files so that
-; fgets() and file() will work regardless of the source of the file.
-; https://php.net/auto-detect-line-endings
-;auto_detect_line_endings = Off
-
-;;;;;;;;;;;;;;;;;;;;;;
-; Dynamic Extensions ;
-;;;;;;;;;;;;;;;;;;;;;;
-
-; If you wish to have an extension loaded automatically, use the following
-; syntax:
-;
-; extension=modulename
-;
-; For example:
-;
-; extension=mysqli
-;
-; When the extension library to load is not located in the default extension
-; directory, You may specify an absolute path to the library file:
-;
-; extension=/path/to/extension/mysqli.so
-;
-; Note : The syntax used in previous PHP versions ('extension=<ext>.so' and
-; 'extension='php_<ext>.dll') is supported for legacy reasons and may be
-; deprecated in a future PHP major version. So, when it is possible, please
-; move to the new ('extension=<ext>) syntax.
-;
-; Notes for Windows environments :
-;
-; - Many DLL files are located in the ext/
-; extension folders as well as the separate PECL DLL download.
-; Be sure to appropriately set the extension_dir directive.
-;
-;extension=bz2
-
-; The ldap extension must be before curl if OpenSSL 1.0.2 and OpenLDAP is used
-; otherwise it results in segfault when unloading after using SASL.
-; See https://github.com/php/php-src/issues/8620 for more info.
-;extension=ldap
-
-;extension=curl
-;extension=ffi
-;extension=ftp
-;extension=fileinfo
-;extension=gd
-;extension=gettext
-;extension=gmp
-;extension=intl
-;extension=imap
-;extension=mbstring
-;extension=exif ; Must be after mbstring as it depends on it
-;extension=mysqli
-;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
-;extension=oci8_19 ; Use with Oracle Database 19 Instant Client
-;extension=odbc
-;extension=openssl
-;extension=pdo_firebird
-;extension=pdo_mysql
-;extension=pdo_oci
-;extension=pdo_odbc
-;extension=pdo_pgsql
-;extension=pdo_sqlite
-;extension=pgsql
-;extension=shmop
-
-; The MIBS data available in the PHP distribution must be installed.
-; See https://www.php.net/manual/en/snmp.installation.php
-;extension=snmp
-
-;extension=soap
-;extension=sockets
-;extension=sodium
-;extension=sqlite3
-;extension=tidy
-;extension=xsl
-;extension=zip
-
-;zend_extension=opcache
-
-;;;;;;;;;;;;;;;;;;;
-; Module Settings ;
-;;;;;;;;;;;;;;;;;;;
-
-[CLI Server]
-; Whether the CLI web server uses ANSI color coding in its terminal output.
-cli_server.color = On
-
-[Date]
-; Defines the default timezone used by the date functions
-; https://php.net/date.timezone
-;date.timezone =
-
-; https://php.net/date.default-latitude
-;date.default_latitude = 31.7667
-
-; https://php.net/date.default-longitude
-;date.default_longitude = 35.2333
-
-; https://php.net/date.sunrise-zenith
-;date.sunrise_zenith = 90.833333
-
-; https://php.net/date.sunset-zenith
-;date.sunset_zenith = 90.833333
-
-[filter]
-; https://php.net/filter.default
-;filter.default = unsafe_raw
-
-; https://php.net/filter.default-flags
-;filter.default_flags =
-
-[iconv]
-; Use of this INI entry is deprecated, use global input_encoding instead.
-; If empty, default_charset or input_encoding or iconv.input_encoding is used.
-; The precedence is: default_charset < input_encoding < iconv.input_encoding
-;iconv.input_encoding =
-
-; Use of this INI entry is deprecated, use global internal_encoding instead.
-; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
-; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
-;iconv.internal_encoding =
-
-; Use of this INI entry is deprecated, use global output_encoding instead.
-; If empty, default_charset or output_encoding or iconv.output_encoding is used.
-; The precedence is: default_charset < output_encoding < iconv.output_encoding
-; To use an output encoding conversion, iconv's output handler must be set
-; otherwise output encoding conversion cannot be performed.
-;iconv.output_encoding =
-
-[imap]
-; rsh/ssh logins are disabled by default. Use this INI entry if you want to
-; enable them. Note that the IMAP library does not filter mailbox names before
-; passing them to rsh/ssh command, thus passing untrusted data to this function
-; with rsh/ssh enabled is insecure.
-;imap.enable_insecure_rsh=0
-
-[intl]
-;intl.default_locale =
-; This directive allows you to produce PHP errors when some error
-; happens within intl functions. The value is the level of the error produced.
-; Default is 0, which does not produce any errors.
-;intl.error_level = E_WARNING
-;intl.use_exceptions = 0
-
-[sqlite3]
-; Directory pointing to SQLite3 extensions
-; https://php.net/sqlite3.extension-dir
-;sqlite3.extension_dir =
-
-; SQLite defensive mode flag (only available from SQLite 3.26+)
-; When the defensive flag is enabled, language features that allow ordinary
-; SQL to deliberately corrupt the database file are disabled. This forbids
-; writing directly to the schema, shadow tables (eg. FTS data tables), or
-; the sqlite_dbpage virtual table.
-; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html
-; (for older SQLite versions, this flag has no use)
-;sqlite3.defensive = 1
-
-[Pcre]
-; PCRE library backtracking limit.
-; https://php.net/pcre.backtrack-limit
-;pcre.backtrack_limit=100000
-
-; PCRE library recursion limit.
-; Please note that if you set this value to a high number you may consume all
-; the available process stack and eventually crash PHP (due to reaching the
-; stack size limit imposed by the Operating System).
-; https://php.net/pcre.recursion-limit
-;pcre.recursion_limit=100000
-
-; Enables or disables JIT compilation of patterns. This requires the PCRE
-; library to be compiled with JIT support.
-;pcre.jit=1
-
-[Pdo]
-; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
-; https://php.net/pdo-odbc.connection-pooling
-;pdo_odbc.connection_pooling=strict
-
-[Pdo_mysql]
-; Default socket name for local MySQL connects. If empty, uses the built-in
-; MySQL defaults.
-pdo_mysql.default_socket=
-
-[Phar]
-; https://php.net/phar.readonly
-;phar.readonly = On
-
-; https://php.net/phar.require-hash
-;phar.require_hash = On
-
-;phar.cache_list =
-
-[mail function]
-; For Win32 only.
-; https://php.net/smtp
-SMTP = localhost
-; https://php.net/smtp-port
-smtp_port = 25
-
-; For Win32 only.
-; https://php.net/sendmail-from
-;sendmail_from = me@example.com
-
-; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
-; https://php.net/sendmail-path
-;sendmail_path =
-
-; Force the addition of the specified parameters to be passed as extra parameters
-; to the sendmail binary. These parameters will always replace the value of
-; the 5th parameter to mail().
-;mail.force_extra_parameters =
-
-; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
-mail.add_x_header = Off
-
-; Use mixed LF and CRLF line separators to keep compatibility with some
-; RFC 2822 non conformant MTA.
-mail.mixed_lf_and_crlf = Off
-
-; The path to a log file that will log all mail() calls. Log entries include
-; the full path of the script, line number, To address and headers.
-;mail.log =
-; Log mail to syslog (Event Log on Windows).
-;mail.log = syslog
-
-[ODBC]
-; https://php.net/odbc.default-db
-;odbc.default_db = Not yet implemented
-
-; https://php.net/odbc.default-user
-;odbc.default_user = Not yet implemented
-
-; https://php.net/odbc.default-pw
-;odbc.default_pw = Not yet implemented
-
-; Controls the ODBC cursor model.
-; Default: SQL_CURSOR_STATIC (default).
-;odbc.default_cursortype
-
-; Allow or prevent persistent links.
-; https://php.net/odbc.allow-persistent
-odbc.allow_persistent = On
-
-; Check that a connection is still valid before reuse.
-; https://php.net/odbc.check-persistent
-odbc.check_persistent = On
-
-; Maximum number of persistent links. -1 means no limit.
-; https://php.net/odbc.max-persistent
-odbc.max_persistent = -1
-
-; Maximum number of links (persistent + non-persistent). -1 means no limit.
-; https://php.net/odbc.max-links
-odbc.max_links = -1
-
-; Handling of LONG fields. Returns number of bytes to variables. 0 means
-; passthru.
-; https://php.net/odbc.defaultlrl
-odbc.defaultlrl = 4096
-
-; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
-; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
-; of odbc.defaultlrl and odbc.defaultbinmode
-; https://php.net/odbc.defaultbinmode
-odbc.defaultbinmode = 1
-
-[MySQLi]
-
-; Maximum number of persistent links. -1 means no limit.
-; https://php.net/mysqli.max-persistent
-mysqli.max_persistent = -1
-
-; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
-; https://php.net/mysqli.allow_local_infile
-;mysqli.allow_local_infile = On
-
-; It allows the user to specify a folder where files that can be sent via LOAD DATA
-; LOCAL can exist. It is ignored if mysqli.allow_local_infile is enabled.
-;mysqli.local_infile_directory =
-
-; Allow or prevent persistent links.
-; https://php.net/mysqli.allow-persistent
-mysqli.allow_persistent = On
-
-; Maximum number of links. -1 means no limit.
-; https://php.net/mysqli.max-links
-mysqli.max_links = -1
-
-; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
-; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
-; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
-; at MYSQL_PORT.
-; https://php.net/mysqli.default-port
-mysqli.default_port = 3306
-
-; Default socket name for local MySQL connects. If empty, uses the built-in
-; MySQL defaults.
-; https://php.net/mysqli.default-socket
-mysqli.default_socket =
-
-; Default host for mysqli_connect() (doesn't apply in safe mode).
-; https://php.net/mysqli.default-host
-mysqli.default_host =
-
-; Default user for mysqli_connect() (doesn't apply in safe mode).
-; https://php.net/mysqli.default-user
-mysqli.default_user =
-
-; Default password for mysqli_connect() (doesn't apply in safe mode).
-; Note that this is generally a *bad* idea to store passwords in this file.
-; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
-; and reveal this password! And of course, any users with read access to this
-; file will be able to reveal the password as well.
-; https://php.net/mysqli.default-pw
-mysqli.default_pw =
-
-; If this option is enabled, closing a persistent connection will rollback
-; any pending transactions of this connection, before it is put back
-; into the persistent connection pool.
-;mysqli.rollback_on_cached_plink = Off
-
-[mysqlnd]
-; Enable / Disable collection of general statistics by mysqlnd which can be
-; used to tune and monitor MySQL operations.
-mysqlnd.collect_statistics = On
-
-; Enable / Disable collection of memory usage statistics by mysqlnd which can be
-; used to tune and monitor MySQL operations.
-mysqlnd.collect_memory_statistics = Off
-
-; Records communication from all extensions using mysqlnd to the specified log
-; file.
-; https://php.net/mysqlnd.debug
-;mysqlnd.debug =
-
-; Defines which queries will be logged.
-;mysqlnd.log_mask = 0
-
-; Default size of the mysqlnd memory pool, which is used by result sets.
-;mysqlnd.mempool_default_size = 16000
-
-; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
-;mysqlnd.net_cmd_buffer_size = 2048
-
-; Size of a pre-allocated buffer used for reading data sent by the server in
-; bytes.
-;mysqlnd.net_read_buffer_size = 32768
-
-; Timeout for network requests in seconds.
-;mysqlnd.net_read_timeout = 31536000
-
-; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
-; key.
-;mysqlnd.sha256_server_public_key =
-
-[OCI8]
-
-; Connection: Enables privileged connections using external
-; credentials (OCI_SYSOPER, OCI_SYSDBA)
-; https://php.net/oci8.privileged-connect
-;oci8.privileged_connect = Off
-
-; Connection: The maximum number of persistent OCI8 connections per
-; process. Using -1 means no limit.
-; https://php.net/oci8.max-persistent
-;oci8.max_persistent = -1
-
-; Connection: The maximum number of seconds a process is allowed to
-; maintain an idle persistent connection. Using -1 means idle
-; persistent connections will be maintained forever.
-; https://php.net/oci8.persistent-timeout
-;oci8.persistent_timeout = -1
-
-; Connection: The number of seconds that must pass before issuing a
-; ping during oci_pconnect() to check the connection validity. When
-; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
-; pings completely.
-; https://php.net/oci8.ping-interval
-;oci8.ping_interval = 60
-
-; Connection: Set this to a user chosen connection class to be used
-; for all pooled server requests with Oracle Database Resident
-; Connection Pooling (DRCP). To use DRCP, this value should be set to
-; the same string for all web servers running the same application,
-; the database pool must be configured, and the connection string must
-; specify to use a pooled server.
-;oci8.connection_class =
-
-; High Availability: Using On lets PHP receive Fast Application
-; Notification (FAN) events generated when a database node fails. The
-; database must also be configured to post FAN events.
-;oci8.events = Off
-
-; Tuning: This option enables statement caching, and specifies how
-; many statements to cache. Using 0 disables statement caching.
-; https://php.net/oci8.statement-cache-size
-;oci8.statement_cache_size = 20
-
-; Tuning: Enables row prefetching and sets the default number of
-; rows that will be fetched automatically after statement execution.
-; https://php.net/oci8.default-prefetch
-;oci8.default_prefetch = 100
-
-; Tuning: Sets the amount of LOB data that is internally returned from
-; Oracle Database when an Oracle LOB locator is initially retrieved as
-; part of a query. Setting this can improve performance by reducing
-; round-trips.
-; https://php.net/oci8.prefetch-lob-size
-; oci8.prefetch_lob_size = 0
-
-; Compatibility. Using On means oci_close() will not close
-; oci_connect() and oci_new_connect() connections.
-; https://php.net/oci8.old-oci-close-semantics
-;oci8.old_oci_close_semantics = Off
-
-[PostgreSQL]
-; Allow or prevent persistent links.
-; https://php.net/pgsql.allow-persistent
-pgsql.allow_persistent = On
-
-; Detect broken persistent links always with pg_pconnect().
-; Auto reset feature requires a little overheads.
-; https://php.net/pgsql.auto-reset-persistent
-pgsql.auto_reset_persistent = Off
-
-; Maximum number of persistent links. -1 means no limit.
-; https://php.net/pgsql.max-persistent
-pgsql.max_persistent = -1
-
-; Maximum number of links (persistent+non persistent). -1 means no limit.
-; https://php.net/pgsql.max-links
-pgsql.max_links = -1
-
-; Ignore PostgreSQL backends Notice message or not.
-; Notice message logging require a little overheads.
-; https://php.net/pgsql.ignore-notice
-pgsql.ignore_notice = 0
-
-; Log PostgreSQL backends Notice message or not.
-; Unless pgsql.ignore_notice=0, module cannot log notice message.
-; https://php.net/pgsql.log-notice
-pgsql.log_notice = 0
-
-[bcmath]
-; Number of decimal digits for all bcmath functions.
-; https://php.net/bcmath.scale
-bcmath.scale = 0
-
-[browscap]
-; https://php.net/browscap
-;browscap = extra/browscap.ini
-
-[Session]
-; Handler used to store/retrieve data.
-; https://php.net/session.save-handler
-session.save_handler = files
-
-; Argument passed to save_handler. In the case of files, this is the path
-; where data files are stored. Note: Windows users have to change this
-; variable in order to use PHP's session functions.
-;
-; The path can be defined as:
-;
-; session.save_path = "N;/path"
-;
-; where N is an integer. Instead of storing all the session files in
-; /path, what this will do is use subdirectories N-levels deep, and
-; store the session data in those directories. This is useful if
-; your OS has problems with many files in one directory, and is
-; a more efficient layout for servers that handle many sessions.
-;
-; NOTE 1: PHP will not create this directory structure automatically.
-; You can use the script in the ext/session dir for that purpose.
-; NOTE 2: See the section on garbage collection below if you choose to
-; use subdirectories for session storage
-;
-; The file storage module creates files using mode 600 by default.
-; You can change that by using
-;
-; session.save_path = "N;MODE;/path"
-;
-; where MODE is the octal representation of the mode. Note that this
-; does not overwrite the process's umask.
-; https://php.net/session.save-path
-;session.save_path = "/var/lib/php/sessions"
-
-; Whether to use strict session mode.
-; Strict session mode does not accept an uninitialized session ID, and
-; regenerates the session ID if the browser sends an uninitialized session ID.
-; Strict mode protects applications from session fixation via a session adoption
-; vulnerability. It is disabled by default for maximum compatibility, but
-; enabling it is encouraged.
-; https://wiki.php.net/rfc/strict_sessions
-session.use_strict_mode = 0
-
-; Whether to use cookies.
-; https://php.net/session.use-cookies
-session.use_cookies = 1
-
-; https://php.net/session.cookie-secure
-;session.cookie_secure =
-
-; This option forces PHP to fetch and use a cookie for storing and maintaining
-; the session id. We encourage this operation as it's very helpful in combating
-; session hijacking when not specifying and managing your own session id. It is
-; not the be-all and end-all of session hijacking defense, but it's a good start.
-; https://php.net/session.use-only-cookies
-session.use_only_cookies = 1
-
-; Name of the session (used as cookie name).
-; https://php.net/session.name
-session.name = PHPSESSID
-
-; Initialize session on request startup.
-; https://php.net/session.auto-start
-session.auto_start = 0
-
-; Lifetime in seconds of cookie or, if 0, until browser is restarted.
-; https://php.net/session.cookie-lifetime
-session.cookie_lifetime = 0
-
-; The path for which the cookie is valid.
-; https://php.net/session.cookie-path
-session.cookie_path = /
-
-; The domain for which the cookie is valid.
-; https://php.net/session.cookie-domain
-session.cookie_domain =
-
-; Whether or not to add the httpOnly flag to the cookie, which makes it
-; inaccessible to browser scripting languages such as JavaScript.
-; https://php.net/session.cookie-httponly
-session.cookie_httponly =
-
-; Add SameSite attribute to cookie to help mitigate Cross-Site Request Forgery (CSRF/XSRF)
-; Current valid values are "Strict", "Lax" or "None". When using "None",
-; make sure to include the quotes, as `none` is interpreted like `false` in ini files.
-; https://tools.ietf.org/html/draft-west-first-party-cookies-07
-session.cookie_samesite =
-
-; Handler used to serialize data. php is the standard serializer of PHP.
-; https://php.net/session.serialize-handler
-session.serialize_handler = php
-
-; Defines the probability that the 'garbage collection' process is started on every
-; session initialization. The probability is calculated by using gc_probability/gc_divisor,
-; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
-; Default Value: 1
-; Development Value: 1
-; Production Value: 1
-; https://php.net/session.gc-probability
-; Debian Default Value: 0
-; This is disabled in the Debian packages due to the strict permissions
-; on /var/lib/php. Instead, GC is performed through /etc/cron.d/php,
-; which uses the session.gc_maxlifetime setting. Please, check
-; /usr/share/doc/php8.2-common/README.Debian.gz for further reference.
-session.gc_probability = 0
-
-; Defines the probability that the 'garbage collection' process is started on every
-; session initialization. The probability is calculated by using gc_probability/gc_divisor,
-; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
-; For high volume production servers, using a value of 1000 is a more efficient approach.
-; Default Value: 100
-; Development Value: 1000
-; Production Value: 1000
-; https://php.net/session.gc-divisor
-session.gc_divisor = 1000
-
-; After this number of seconds, stored data will be seen as 'garbage' and
-; cleaned up by the garbage collection process.
-; https://php.net/session.gc-maxlifetime
-session.gc_maxlifetime = 1440
-
-; NOTE: If you are using the subdirectory option for storing session files
-; (see session.save_path above), then garbage collection does *not*
-; happen automatically. You will need to do your own garbage
-; collection through a shell script, cron entry, or some other method.
-; For example, the following script is the equivalent of setting
-; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
-; find /path/to/sessions -cmin +24 -type f | xargs rm
-
-; Check HTTP Referer to invalidate externally stored URLs containing ids.
-; HTTP_REFERER has to contain this substring for the session to be
-; considered as valid.
-; https://php.net/session.referer-check
-session.referer_check =
-
-; Set to {nocache,private,public,} to determine HTTP caching aspects
-; or leave this empty to avoid sending anti-caching headers.
-; https://php.net/session.cache-limiter
-session.cache_limiter = nocache
-
-; Document expires after n minutes.
-; https://php.net/session.cache-expire
-session.cache_expire = 180
-
-; trans sid support is disabled by default.
-; Use of trans sid may risk your users' security.
-; Use this option with caution.
-; - User may send URL contains active session ID
-; to other person via. email/irc/etc.
-; - URL that contains active session ID may be stored
-; in publicly accessible computer.
-; - User may access your site with the same session ID
-; always using URL stored in browser's history or bookmarks.
-; https://php.net/session.use-trans-sid
-session.use_trans_sid = 0
-
-; Set session ID character length. This value could be between 22 to 256.
-; Shorter length than default is supported only for compatibility reason.
-; Users should use 32 or more chars.
-; https://php.net/session.sid-length
-; Default Value: 32
-; Development Value: 26
-; Production Value: 26
-session.sid_length = 26
-
-; The URL rewriter will look for URLs in a defined set of HTML tags.
-; <form> is special; if you include them here, the rewriter will
-; add a hidden <input> field with the info which is otherwise appended
-; to URLs. <form> tag's action attribute URL will not be modified
-; unless it is specified.
-; Note that all valid entries require a "=", even if no value follows.
-; Default Value: "a=href,area=href,frame=src,form="
-; Development Value: "a=href,area=href,frame=src,form="
-; Production Value: "a=href,area=href,frame=src,form="
-; https://php.net/url-rewriter.tags
-session.trans_sid_tags = "a=href,area=href,frame=src,form="
-
-; URL rewriter does not rewrite absolute URLs by default.
-; To enable rewrites for absolute paths, target hosts must be specified
-; at RUNTIME. i.e. use ini_set()
-; <form> tags is special. PHP will check action attribute's URL regardless
-; of session.trans_sid_tags setting.
-; If no host is defined, HTTP_HOST will be used for allowed host.
-; Example value: php.net,www.php.net,wiki.php.net
-; Use "," for multiple hosts. No spaces are allowed.
-; Default Value: ""
-; Development Value: ""
-; Production Value: ""
-;session.trans_sid_hosts=""
-
-; Define how many bits are stored in each character when converting
-; the binary hash data to something readable.
-; Possible values:
-; 4 (4 bits: 0-9, a-f)
-; 5 (5 bits: 0-9, a-v)
-; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
-; Default Value: 4
-; Development Value: 5
-; Production Value: 5
-; https://php.net/session.hash-bits-per-character
-session.sid_bits_per_character = 5
-
-; Enable upload progress tracking in $_SESSION
-; Default Value: On
-; Development Value: On
-; Production Value: On
-; https://php.net/session.upload-progress.enabled
-;session.upload_progress.enabled = On
-
-; Cleanup the progress information as soon as all POST data has been read
-; (i.e. upload completed).
-; Default Value: On
-; Development Value: On
-; Production Value: On
-; https://php.net/session.upload-progress.cleanup
-;session.upload_progress.cleanup = On
-
-; A prefix used for the upload progress key in $_SESSION
-; Default Value: "upload_progress_"
-; Development Value: "upload_progress_"
-; Production Value: "upload_progress_"
-; https://php.net/session.upload-progress.prefix
-;session.upload_progress.prefix = "upload_progress_"
-
-; The index name (concatenated with the prefix) in $_SESSION
-; containing the upload progress information
-; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
-; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
-; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
-; https://php.net/session.upload-progress.name
-;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
-
-; How frequently the upload progress should be updated.
-; Given either in percentages (per-file), or in bytes
-; Default Value: "1%"
-; Development Value: "1%"
-; Production Value: "1%"
-; https://php.net/session.upload-progress.freq
-;session.upload_progress.freq = "1%"
-
-; The minimum delay between updates, in seconds
-; Default Value: 1
-; Development Value: 1
-; Production Value: 1
-; https://php.net/session.upload-progress.min-freq
-;session.upload_progress.min_freq = "1"
-
-; Only write session data when session data is changed. Enabled by default.
-; https://php.net/session.lazy-write
-;session.lazy_write = On
-
-[Assertion]
-; Switch whether to compile assertions at all (to have no overhead at run-time)
-; -1: Do not compile at all
-; 0: Jump over assertion at run-time
-; 1: Execute assertions
-; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1)
-; Default Value: 1
-; Development Value: 1
-; Production Value: -1
-; https://php.net/zend.assertions
-zend.assertions = -1
-
-; Assert(expr); active by default.
-; https://php.net/assert.active
-;assert.active = On
-
-; Throw an AssertionError on failed assertions
-; https://php.net/assert.exception
-;assert.exception = On
-
-; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active)
-; https://php.net/assert.warning
-;assert.warning = On
-
-; Don't bail out by default.
-; https://php.net/assert.bail
-;assert.bail = Off
-
-; User-function to be called if an assertion fails.
-; https://php.net/assert.callback
-;assert.callback = 0
-
-[COM]
-; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
-; https://php.net/com.typelib-file
-;com.typelib_file =
-
-; allow Distributed-COM calls
-; https://php.net/com.allow-dcom
-;com.allow_dcom = true
-
-; autoregister constants of a component's typelib on com_load()
-; https://php.net/com.autoregister-typelib
-;com.autoregister_typelib = true
-
-; register constants casesensitive
-; https://php.net/com.autoregister-casesensitive
-;com.autoregister_casesensitive = false
-
-; show warnings on duplicate constant registrations
-; https://php.net/com.autoregister-verbose
-;com.autoregister_verbose = true
-
-; The default character set code-page to use when passing strings to and from COM objects.
-; Default: system ANSI code page
-;com.code_page=
-
-; The version of the .NET framework to use. The value of the setting are the first three parts
-; of the framework's version number, separated by dots, and prefixed with "v", e.g. "v4.0.30319".
-;com.dotnet_version=
-
-[mbstring]
-; language for internal character representation.
-; This affects mb_send_mail() and mbstring.detect_order.
-; https://php.net/mbstring.language
-;mbstring.language = Japanese
-
-; Use of this INI entry is deprecated, use global internal_encoding instead.
-; internal/script encoding.
-; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*)
-; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
-; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
-;mbstring.internal_encoding =
-
-; Use of this INI entry is deprecated, use global input_encoding instead.
-; http input encoding.
-; mbstring.encoding_translation = On is needed to use this setting.
-; If empty, default_charset or input_encoding or mbstring.input is used.
-; The precedence is: default_charset < input_encoding < mbstring.http_input
-; https://php.net/mbstring.http-input
-;mbstring.http_input =
-
-; Use of this INI entry is deprecated, use global output_encoding instead.
-; http output encoding.
-; mb_output_handler must be registered as output buffer to function.
-; If empty, default_charset or output_encoding or mbstring.http_output is used.
-; The precedence is: default_charset < output_encoding < mbstring.http_output
-; To use an output encoding conversion, mbstring's output handler must be set
-; otherwise output encoding conversion cannot be performed.
-; https://php.net/mbstring.http-output
-;mbstring.http_output =
-
-; enable automatic encoding translation according to
-; mbstring.internal_encoding setting. Input chars are
-; converted to internal encoding by setting this to On.
-; Note: Do _not_ use automatic encoding translation for
-; portable libs/applications.
-; https://php.net/mbstring.encoding-translation
-;mbstring.encoding_translation = Off
-
-; automatic encoding detection order.
-; "auto" detect order is changed according to mbstring.language
-; https://php.net/mbstring.detect-order
-;mbstring.detect_order = auto
-
-; substitute_character used when character cannot be converted
-; one from another
-; https://php.net/mbstring.substitute-character
-;mbstring.substitute_character = none
-
-; Enable strict encoding detection.
-;mbstring.strict_detection = Off
-
-; This directive specifies the regex pattern of content types for which mb_output_handler()
-; is activated.
-; Default: mbstring.http_output_conv_mimetypes=^(text/|application/xhtml\+xml)
-;mbstring.http_output_conv_mimetypes=
-
-; This directive specifies maximum stack depth for mbstring regular expressions. It is similar
-; to the pcre.recursion_limit for PCRE.
-;mbstring.regex_stack_limit=100000
-
-; This directive specifies maximum retry count for mbstring regular expressions. It is similar
-; to the pcre.backtrack_limit for PCRE.
-;mbstring.regex_retry_limit=1000000
-
-[gd]
-; Tell the jpeg decode to ignore warnings and try to create
-; a gd image. The warning will then be displayed as notices
-; disabled by default
-; https://php.net/gd.jpeg-ignore-warning
-;gd.jpeg_ignore_warning = 1
-
-[exif]
-; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
-; With mbstring support this will automatically be converted into the encoding
-; given by corresponding encode setting. When empty mbstring.internal_encoding
-; is used. For the decode settings you can distinguish between motorola and
-; intel byte order. A decode setting cannot be empty.
-; https://php.net/exif.encode-unicode
-;exif.encode_unicode = ISO-8859-15
-
-; https://php.net/exif.decode-unicode-motorola
-;exif.decode_unicode_motorola = UCS-2BE
-
-; https://php.net/exif.decode-unicode-intel
-;exif.decode_unicode_intel = UCS-2LE
-
-; https://php.net/exif.encode-jis
-;exif.encode_jis =
-
-; https://php.net/exif.decode-jis-motorola
-;exif.decode_jis_motorola = JIS
-
-; https://php.net/exif.decode-jis-intel
-;exif.decode_jis_intel = JIS
-
-[Tidy]
-; The path to a default tidy configuration file to use when using tidy
-; https://php.net/tidy.default-config
-;tidy.default_config = /usr/local/lib/php/default.tcfg
-
-; Should tidy clean and repair output automatically?
-; WARNING: Do not use this option if you are generating non-html content
-; such as dynamic images
-; https://php.net/tidy.clean-output
-tidy.clean_output = Off
-
-[soap]
-; Enables or disables WSDL caching feature.
-; https://php.net/soap.wsdl-cache-enabled
-soap.wsdl_cache_enabled=1
-
-; Sets the directory name where SOAP extension will put cache files.
-; https://php.net/soap.wsdl-cache-dir
-soap.wsdl_cache_dir="/tmp"
-
-; (time to live) Sets the number of second while cached file will be used
-; instead of original one.
-; https://php.net/soap.wsdl-cache-ttl
-soap.wsdl_cache_ttl=86400
-
-; Sets the size of the cache limit. (Max. number of WSDL files to cache)
-soap.wsdl_cache_limit = 5
-
-[sysvshm]
-; A default size of the shared memory segment
-;sysvshm.init_mem = 10000
-
-[ldap]
-; Sets the maximum number of open links or -1 for unlimited.
-ldap.max_links = -1
-
-[dba]
-;dba.default_handler=
-
-[opcache]
-; Determines if Zend OPCache is enabled
-;opcache.enable=1
-
-; Determines if Zend OPCache is enabled for the CLI version of PHP
-;opcache.enable_cli=0
-
-; The OPcache shared memory storage size.
-;opcache.memory_consumption=128
-
-; The amount of memory for interned strings in Mbytes.
-;opcache.interned_strings_buffer=8
-
-; The maximum number of keys (scripts) in the OPcache hash table.
-; Only numbers between 200 and 1000000 are allowed.
-;opcache.max_accelerated_files=10000
-
-; The maximum percentage of "wasted" memory until a restart is scheduled.
-;opcache.max_wasted_percentage=5
-
-; When this directive is enabled, the OPcache appends the current working
-; directory to the script key, thus eliminating possible collisions between
-; files with the same name (basename). Disabling the directive improves
-; performance, but may break existing applications.
-;opcache.use_cwd=1
-
-; When disabled, you must reset the OPcache manually or restart the
-; webserver for changes to the filesystem to take effect.
-;opcache.validate_timestamps=1
-
-; How often (in seconds) to check file timestamps for changes to the shared
-; memory storage allocation. ("1" means validate once per second, but only
-; once per request. "0" means always validate)
-;opcache.revalidate_freq=2
-
-; Enables or disables file search in include_path optimization
-;opcache.revalidate_path=0
-
-; If disabled, all PHPDoc comments are dropped from the code to reduce the
-; size of the optimized code.
-;opcache.save_comments=1
-
-; If enabled, compilation warnings (including notices and deprecations) will
-; be recorded and replayed each time a file is included. Otherwise, compilation
-; warnings will only be emitted when the file is first cached.
-;opcache.record_warnings=0
-
-; Allow file existence override (file_exists, etc.) performance feature.
-;opcache.enable_file_override=0
-
-; A bitmask, where each bit enables or disables the appropriate OPcache
-; passes
-;opcache.optimization_level=0x7FFFBFFF
-
-;opcache.dups_fix=0
-
-; The location of the OPcache blacklist file (wildcards allowed).
-; Each OPcache blacklist file is a text file that holds the names of files
-; that should not be accelerated. The file format is to add each filename
-; to a new line. The filename may be a full path or just a file prefix
-; (i.e., /var/www/x blacklists all the files and directories in /var/www
-; that start with 'x'). Line starting with a ; are ignored (comments).
-;opcache.blacklist_filename=
-
-; Allows exclusion of large files from being cached. By default all files
-; are cached.
-;opcache.max_file_size=0
-
-; Check the cache checksum each N requests.
-; The default value of "0" means that the checks are disabled.
-;opcache.consistency_checks=0
-
-; How long to wait (in seconds) for a scheduled restart to begin if the cache
-; is not being accessed.
-;opcache.force_restart_timeout=180
-
-; OPcache error_log file name. Empty string assumes "stderr".
-;opcache.error_log=
-
-; All OPcache errors go to the Web server log.
-; By default, only fatal errors (level 0) or errors (level 1) are logged.
-; You can also enable warnings (level 2), info messages (level 3) or
-; debug messages (level 4).
-;opcache.log_verbosity_level=1
-
-; Preferred Shared Memory back-end. Leave empty and let the system decide.
-;opcache.preferred_memory_model=
-
-; Protect the shared memory from unexpected writing during script execution.
-; Useful for internal debugging only.
-;opcache.protect_memory=0
-
-; Allows calling OPcache API functions only from PHP scripts which path is
-; started from specified string. The default "" means no restriction
-;opcache.restrict_api=
-
-; Mapping base of shared memory segments (for Windows only). All the PHP
-; processes have to map shared memory into the same address space. This
-; directive allows to manually fix the "Unable to reattach to base address"
-; errors.
-;opcache.mmap_base=
-
-; Facilitates multiple OPcache instances per user (for Windows only). All PHP
-; processes with the same cache ID and user share an OPcache instance.
-;opcache.cache_id=
-
-; Enables and sets the second level cache directory.
-; It should improve performance when SHM memory is full, at server restart or
-; SHM reset. The default "" disables file based caching.
-;opcache.file_cache=
-
-; Enables or disables opcode caching in shared memory.
-;opcache.file_cache_only=0
-
-; Enables or disables checksum validation when script loaded from file cache.
-;opcache.file_cache_consistency_checks=1
-
-; Implies opcache.file_cache_only=1 for a certain process that failed to
-; reattach to the shared memory (for Windows only). Explicitly enabled file
-; cache is required.
-;opcache.file_cache_fallback=1
-
-; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
-; Under certain circumstances (if only a single global PHP process is
-; started from which all others fork), this can increase performance
-; by a tiny amount because TLB misses are reduced. On the other hand, this
-; delays PHP startup, increases memory usage and degrades performance
-; under memory pressure - use with care.
-; Requires appropriate OS configuration.
-;opcache.huge_code_pages=0
-
-; Validate cached file permissions.
-;opcache.validate_permission=0
-
-; Prevent name collisions in chroot'ed environment.
-;opcache.validate_root=0
-
-; If specified, it produces opcode dumps for debugging different stages of
-; optimizations.
-;opcache.opt_debug_level=0
-
-; Specifies a PHP script that is going to be compiled and executed at server
-; start-up.
-; https://php.net/opcache.preload
-;opcache.preload=
-
-; Preloading code as root is not allowed for security reasons. This directive
-; facilitates to let the preloading to be run as another user.
-; https://php.net/opcache.preload_user
-;opcache.preload_user=
-
-; Prevents caching files that are less than this number of seconds old. It
-; protects from caching of incompletely updated files. In case all file updates
-; on your site are atomic, you may increase performance by setting it to "0".
-;opcache.file_update_protection=2
-
-; Absolute path used to store shared lockfiles (for *nix only).
-;opcache.lockfile_path=/tmp
-
-[curl]
-; A default value for the CURLOPT_CAINFO option. This is required to be an
-; absolute path.
-;curl.cainfo =
-
-[openssl]
-; The location of a Certificate Authority (CA) file on the local filesystem
-; to use when verifying the identity of SSL/TLS peers. Most users should
-; not specify a value for this directive as PHP will attempt to use the
-; OS-managed cert stores in its absence. If specified, this value may still
-; be overridden on a per-stream basis via the "cafile" SSL stream context
-; option.
-;openssl.cafile=
-
-; If openssl.cafile is not specified or if the CA file is not found, the
-; directory pointed to by openssl.capath is searched for a suitable
-; certificate. This value must be a correctly hashed certificate directory.
-; Most users should not specify a value for this directive as PHP will
-; attempt to use the OS-managed cert stores in its absence. If specified,
-; this value may still be overridden on a per-stream basis via the "capath"
-; SSL stream context option.
-;openssl.capath=
-
-[ffi]
-; FFI API restriction. Possible values:
-; "preload" - enabled in CLI scripts and preloaded files (default)
-; "false" - always disabled
-; "true" - always enabled
-;ffi.enable=preload
-
-; List of headers files to preload, wildcard patterns allowed.
-;ffi.preload=
+++ /dev/null
-deb http://deb.debian.org/debian DEBIANRELEASE main contrib non-free non-free-firmware
-deb-src http://deb.debian.org/debian DEBIANRELEASE main contrib non-free non-free-firmware
-
-deb http://deb.debian.org/debian-security/ DEBIANRELEASE-security main contrib non-free non-free-firmware
-deb-src http://deb.debian.org/debian-security/ DEBIANRELEASE-security main contrib non-free non-free-firmware
-
-deb http://deb.debian.org/debian DEBIANRELEASE-updates main contrib non-free non-free-firmware
-deb-src http://deb.debian.org/debian DEBIANRELEASE-updates main contrib non-free non-free-firmware
+++ /dev/null
-# System-wide .bashrc file for interactive bash(1) shells.
-
-# To enable the settings / commands in this file for login shells as well,
-# this file has to be sourced in /etc/profile.
-
-# If not running interactively, don't do anything
-[ -z "$PS1" ] && return
-
-# check the window size after each command and, if necessary,
-# update the values of LINES and COLUMNS.
-shopt -s checkwinsize
-
-# set variable identifying the chroot you work in (used in the prompt below)
-if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
- debian_chroot=$(cat /etc/debian_chroot)
-fi
-
-# set a fancy prompt (non-color, overwrite the one in /etc/profile)
-PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
-
-# Commented out, don't overwrite xterm -T "title" -n "icontitle" by default.
-# If this is an xterm set the title to user@host:dir
-#case "$TERM" in
-#xterm*|rxvt*)
-# PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
-# ;;
-#*)
-# ;;
-#esac
-
-# enable bash completion in interactive shells
-#if ! shopt -oq posix; then
-# if [ -f /usr/share/bash-completion/bash_completion ]; then
-# . /usr/share/bash-completion/bash_completion
-# elif [ -f /etc/bash_completion ]; then
-# . /etc/bash_completion
-# fi
-#fi
-
-# if the command-not-found package is installed, use it
-if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-not-found ]; then
- function command_not_found_handle {
- # check because c-n-f could've been removed in the meantime
- if [ -x /usr/lib/command-not-found ]; then
- /usr/lib/command-not-found -- "$1"
- return $?
- elif [ -x /usr/share/command-not-found/command-not-found ]; then
- /usr/share/command-not-found/command-not-found -- "$1"
- return $?
- else
- printf "%s: command not found\n" "$1" >&2
- return 127
- fi
- }
-fi
+++ /dev/null
-# Edit this file to introduce tasks to be run by cron.
-#
-# Each task to run has to be defined through a single line
-# indicating with different fields when the task will be run
-# and what command to run for the task
-#
-# To define the time you can provide concrete values for
-# minute (m), hour (h), day of month (dom), month (mon),
-# and day of week (dow) or use '*' in these fields (for 'any').#
-# Notice that tasks will be started based on the cron's system
-# daemon's notion of time and timezones.
-#
-# Output of the crontab jobs (including errors) is sent through
-# email to the user the crontab file belongs to (unless redirected).
-#
-# For example, you can run a backup of all your user accounts
-# at 5 a.m every week with:
-# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
-#
-# For more information see the manual pages of crontab(5) and cron(8)
-#
-# m h dom mon dow command
-PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin
+++ /dev/null
-#!/bin/sh
-#
-# Beschreibung: Server-Firewall
-# Standort: vserver Strato
-# Author: Ole B. Gehrmann
-#
-#
-# Version: 1.0
-# Date Creation: 26.07.2009
-# Date Update: 26.07.2009
-#
-
-set -e
-
-PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
-DESC="local firewallscript"
-NAME=localfw
-COM=/sbin/iptables
-SCRIPTNAME=/etc/init.d/$NAME
-
-TCP_IN_SERVICES="22 25 53 80 443 993 8080"
-TCP_OUT_SERVICES="20 21 22 25 53 80 443 993 8080"
-UDP_SERVICES="53 123"
-
-# Exit, falls iptables entfernt wurde
-test -x $COM || exit 0
-
-# Lade erst mal die noetigen Kernel-Module
-#modprobe ip_tables
-#modprobe ip_conntrack_ftp
-
-#
-# Funktion zum Setzen der FW-Regeln
-#
-fw_start() {
- # Erst mal alles loeschen
- $COM --flush
- $COM --delete-chain
-
- # Policy einstellen
- $COM -P INPUT DROP
- $COM -P FORWARD DROP
- $COM -P OUTPUT DROP
-
- # lokales Interface freigeben
- $COM -A INPUT -i lo -j ACCEPT
- $COM -A OUTPUT -o lo -j ACCEPT
-
- # Antispoofing
- # Eigene Adresse wird schon durch Kernelflag in /etc/sysctl.conf erledigt
- # Adressen fuer den internen Gebrauch
- $COM -A INPUT -s 192.168.0.0/16 -j DROP
- $COM -A INPUT -s 10.0.0.0/8 -j DROP
- $COM -A INPUT -s 169.254.0.0/16 -j DROP
- # seltsame Adressen
- $COM -A INPUT -s 255.0.0.0/8 -j DROP
- $COM -A INPUT -s 0.0.0.0/8 -j DROP
- $COM -A INPUT -s 127.0.0.0/8 -j DROP
- $COM -A INPUT -s 128.0.0.0/8 -j DROP
- $COM -A INPUT -s 191.255.0.0/16 -j DROP
- $COM -A INPUT -s 223.255.255.0/24 -j DROP
- # Pakete mit seltsamen Flags (Anti-Stealth-Scan?)
- $COM -A INPUT -p tcp ! --syn -m state --state NEW -j DROP
-
- # Kernregeln #####################################################################
- # INBOUND
-
- # alles zulassen, was vorher schon ok, Teil einer genehmigten Verbindung war
- $COM -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
- $COM -I OUTPUT 1 -m state --state ESTABLISHED,RELATED -j ACCEPT
-
- # syslog empfangen
- $COM -A INPUT -p udp -m udp --dport 514 -j ACCEPT
-
- for TCP_IN in $TCP_IN_SERVICES ; do
- $COM -A INPUT -p tcp --dport ${TCP_IN} -m state --state NEW -j ACCEPT
- done
-
- for TCP_OUT in $TCP_OUT_SERVICES ; do
- $COM -A OUTPUT -p tcp --dport ${TCP_OUT} -m state --state NEW -j ACCEPT
- done
-
- for UDP in $UDP_SERVICES ; do
- $COM -A INPUT -p udp --dport ${UDP} -m state --state NEW -j ACCEPT
- $COM -A OUTPUT -p udp --dport ${UDP} -m state --state NEW -j ACCEPT
- done
-
-}
-
-#
-# Funktion zum Loeschen der FW-Regeln
-# Default-Policy bleibt auf DROP
-# Loopback offen
-#
-fw_stop() {
- $COM --flush
- $COM --delete-chain
- $COM -P INPUT DROP
- $COM -P FORWARD DROP
- $COM -P OUTPUT DROP
- #loopback darf alles
- $COM -A INPUT -i lo -j ACCEPT
- $COM -A OUTPUT -o lo -j ACCEPT
-
-}
-
-#
-# Funktion zum Loeschen der FW-Regeln
-# Achtung !!!!!! Default-Policy steht dann auf ACCEPT!!!!!!
-#
-fw_open() {
- $COM --flush
- $COM --delete-chain
- $COM -P INPUT ACCEPT
- $COM -P FORWARD ACCEPT
- $COM -P OUTPUT ACCEPT
-}
-
-#
-# FW mit einigen Regeln fuer den Test-Betrieb
-#
-fw_debug() {
- fw_start
- # Pings zulassen
- # INBOUND
- $COM -A INPUT -p icmp --icmp-type echo-request -j ACCEPT
- # OUTBOUND
- $COM -A OUTPUT -p icmp --icmp-type echo-request -j ACCEPT
-}
-
-fw_update() {
- fw_debug
- # initiative Pakete fuer http auf Mirror in /etc/apt/sources.list
- $COM -A OUTPUT -p tcp --dport 21 -d ftp.stratoserver.net -m state --state NEW -j ACCEPT
- $COM -A OUTPUT -p tcp --dport 80 -d ftp.de.debian.org -m state --state NEW -j ACCEPT
- $COM -A OUTPUT -p tcp --dport 80 -d ftp.uni-erlangen.de -m state --state NEW -j ACCEPT
- $COM -A OUTPUT -p tcp --dport 80 -d security.debian.org -m state --state NEW -j ACCEPT
-}
-
-case "$1" in
- start)
- echo -n "Lade $DESC: $NAME"
- fw_start
- echo "."
- ;;
- stop)
- echo "ACHTUNG: DANACH GEHT REMOTE NICHTS MEHR!!!"
- echo -n "Regeln loeschen, lo zulassen, default DROP"
- read -p " Wollen Sie das? (j/N) " ABFRAGE
- if [ ${ABFRAGE:=N} == "j" -o ${ABFRAGE:=N} == "J" ]
- then
- fw_stop
- echo "."
- else
- echo " Abgebrochen und nichts geaendert."
- exit 1
- fi
- ;;
- debug)
- echo -n "Testmodus $DESC: $NAME"
- fw_debug
- logger Firewall Testmodus
- echo "."
- ;;
- restart)
- echo -n "Restart"
- fw_open
- fw_start
- logger Firewall Restart
- echo "."
- ;;
- update)
- echo -n "APT update Modus $DESC: $NAME"
- fw_update
- logger Firewall Update-Modus
- echo "."
- ;;
- open)
- echo -n "Achtung!!! FW wird komplett geoeffnet!"
- read -p " Wollen Sie das? (j/N) " ABFRAGE
- if [ ${ABFRAGE:=N} == "j" -o ${ABFRAGE:=N} == "J" ]
- then
- fw_open
- logger Firewall wide open
- echo "."
- else
- echo " Abgebrochen und nichts geaendert."
- exit 1
- fi
- ;;
- status)
- echo "Status: $NAME"
- $COM --line-numbers -v --list
- ;;
- *)
- echo "Syntax: $SCRIPTNAME {start|stop|debug|restart|update|open|status}" >&2
- exit 1
- ;;
-esac
-
-exit 0
+++ /dev/null
-# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
-# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
-
-if [ "`id -u`" -eq 0 ]; then
- PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
-else
- PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
-fi
-export PATH
-
-if [ "${PS1-}" ]; then
- if [ "${BASH-}" ] && [ "$BASH" != "/bin/sh" ]; then
- # The file bash.bashrc already sets the default PS1.
- # PS1='\h:\w\$ '
- if [ -f /etc/bash.bashrc ]; then
- . /etc/bash.bashrc
- fi
- else
- if [ "`id -u`" -eq 0 ]; then
- PS1='# '
- else
- PS1='$ '
- fi
- fi
-fi
-
-if [ -d /etc/profile.d ]; then
- for i in /etc/profile.d/*.sh; do
- if [ -r $i ]; then
- . $i
- fi
- done
- unset i
-fi
-export LANG="de_DE.utf8"
-export LANGUAGE="de_DE.utf8"
-export LC_ALL="de_DE.utf8"
+++ /dev/null
-# ~/.bashrc: executed by bash(1) for non-login shells.
-# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
-# for examples
-
-# Source global definitions
-if [ -f /etc/bash.bashrc ]; then
- . /etc/bash.bashrc
-fi
-
-# If not running interactively, don't do anything
-case $- in
- *i*) ;;
- *) return;;
-esac
-
-# don't put duplicate lines or lines starting with space in the history.
-# See bash(1) for more options
-HISTCONTROL=ignoreboth
-
-# append to the history file, don't overwrite it
-shopt -s histappend
-
-# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
-HISTSIZE=10000
-HISTFILESIZE=20000
-
-# check the window size after each command and, if necessary,
-# update the values of LINES and COLUMNS.
-shopt -s checkwinsize
-
-# If set, the pattern "**" used in a pathname expansion context will
-# match all files and zero or more directories and subdirectories.
-#shopt -s globstar
-
-# make less more friendly for non-text input files, see lesspipe(1)
-[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
-
-# set variable identifying the chroot you work in (used in the prompt below)
-if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
- debian_chroot=$(cat /etc/debian_chroot)
-fi
-
-# Add an "alert" alias for long running commands. Use like so:
-# sleep 10; alert
-alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
-
-# set a fancy prompt (non-color, unless we know we "want" color)
-case "$TERM" in
- xterm-color|*-256color) color_prompt=yes;;
-esac
-
-# uncomment for a colored prompt, if the terminal has the capability; turned
-# off by default to not distract the user: the focus in a terminal window
-# should be on the output of commands, not on the prompt
-#force_color_prompt=yes
-
-if [ -n "$force_color_prompt" ]; then
- if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
- # We have color support; assume it's compliant with Ecma-48
- # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
- # a case would tend to support setf rather than setaf.)
- color_prompt=yes
- else
- color_prompt=
- fi
-fi
-
-if [ "$color_prompt" = yes ]; then
- PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
-else
- PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
-fi
-unset color_prompt force_color_prompt
-
-# If this is an xterm set the title to user@host:dir
-case "$TERM" in
-xterm*|rxvt*)
- PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
- ;;
-*)
- ;;
-esac
-
-# enable color support of ls and also add handy aliases
-if [ -x /usr/bin/dircolors ]; then
- test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
- alias ls='ls --color=auto'
- #alias dir='dir --color=auto'
- #alias vdir='vdir --color=auto'
-
- #alias grep='grep --color=auto'
- #alias fgrep='fgrep --color=auto'
- #alias egrep='egrep --color=auto'
-fi
-
-# colored GCC warnings and errors
-#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
-
-# Alias definitions.
-# You may want to put all your additions into a separate file like
-# ~/.bash_aliases, instead of adding them here directly.
-# See /usr/share/doc/bash-doc/examples in the bash-doc package.
-
-if [ -f ~/.bash_aliases ]; then
- . ~/.bash_aliases
-fi
-
-# enable programmable completion features (you don't need to enable
-# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
-# sources /etc/bash.bashrc).
-#if [ -f /etc/bash_completion ]; then
-# . /etc/bash_completion
-#fi
-
-
-export LS_OPTIONS='--color=auto'
-eval "`dircolors`"
-alias ls='ls $LS_OPTIONS'
-alias la='ls $LS_OPTIONS -la'
-alias ll='ls $LS_OPTIONS -l'
-
-alias grep='grep $LS_OPTIONS'
-
-# enable programmable completion features (you don't need to enable
-# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
-# sources /etc/bash.bashrc).
-if ! shopt -oq posix; then
- if [ -f /usr/share/bash-completion/bash_completion ]; then
- . /usr/share/bash-completion/bash_completion
- elif [ -f /etc/bash_completion ]; then
- . /etc/bash_completion
- fi
-fi
-
-PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
+++ /dev/null
-J?Uz?bA66wC%dDeG
-
+++ /dev/null
-# Edit this file to introduce tasks to be run by cron.
-#
-# Each task to run has to be defined through a single line
-# indicating with different fields when the task will be run
-# and what command to run for the task
-#
-# To define the time you can provide concrete values for
-# minute (m), hour (h), day of month (dom), month (mon),
-# and day of week (dow) or use '*' in these fields (for 'any').#
-# Notice that tasks will be started based on the cron's system
-# daemon's notion of time and timezones.
-#
-# Output of the crontab jobs (including errors) is sent through
-# email to the user the crontab file belongs to (unless redirected).
-#
-# For example, you can run a backup of all your user accounts
-# at 5 a.m every week with:
-# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
-#
-# For more information see the manual pages of crontab(5) and cron(8)
-#
-# m h dom mon dow command
-PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin
-##################################################
-# Backup
-30 1 * * * backup.sh --git --files --web
-50 */8 * * * backup.sh --mail
-30 */12 * * * backup.sh --db
-5 0 * * * backup2ftp.sh
-
-##################################################
-# EBAY SYNC
-*/5 * * * * rsync -rv --delete /home/oleb/upload/verkaufen/ /var/www/ole-b-rosentreter.de/ebay/ ; chown www-data: /var/www/ole-b-rosentreter.de/ebay/ -R
-
-
-
-##################################################
-# Webalizer
-0 0 * * * for i in /etc/webalizer/*/webalizer.conf; do webalizer -c $i; done
-
-
-# logwatch
-5 0 * * * /usr/sbin/logwatch --range yesterday --format text --detail 10 --mailto "webmaster@laktatnebel.de" 2>&1
-
-##################################################
-# Letsencrypt Zertifikate erneueren
-0 3 1 * * letsencrypt renew && service apache2 reload
-
-##################################################
-
+++ /dev/null
-localhost:5432:*:postgres:B9cr--ZvfF@5cMdu
-*:*:*:oleb:wpj_9+L6ukX+SN2-
-localhost:5432:*:oleb:wpj_9+L6ukX+SN2-
+++ /dev/null
-# ~/.profile: executed by Bourne-compatible login shells.
-
-if [ "$BASH" ]; then
- if [ -f ~/.bashrc ]; then
- . ~/.bashrc
- fi
-fi
-
-mesg n || true
+++ /dev/null
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCFTIRs14XVVR3SVlw9QqNhqwKmKrVL5qiERoNfZyCBzwzYq1Jk7kNbN35dVfz7sTXk8r7vCTEwwNIVBqqX8iZhAK/xigiwzgdXf6JM/VrY7rLl4PJnY0mUuePohUcTBNqpZn0QTByvo+y35h1yPTD+g8T2kH5Hcuc2Ofg0stpbM13miyUPIO9T7l76/66KdNvMA5652TVYWlkFFejE8PUbocyvZHrZXVaKUTo1asKRcKEp/4JxeIMQBkuHENZnaHHzzYZ3jTC3RL//Rm5U6nBOYzv+xCC0hRbFtzP6mP1/QqqX+rJkLel+zcabx4OUyAE6sSwVBl1bRPJjWRnOzIV2AE7QvCemkM5eJIo/XD8EZxM6vwU6UycLTyLV/H3rP7NQMo/waBK9THVFXEzYZnoUsYQFk22viKzMxd/mcFkn3JY+0vy3l6ZSvZUIQ/VXr2ovxtebeX2Vyy7nFbJm9u35aqEGQ8FkBzQzjqkHvV44kfTykj09oTAF81kL2qvUXc= oleb@poseidon
--- /dev/null
+#!/bin/sh
+#
+# Beschreibung: Server-Firewall
+# Standort: vserver Strato
+# Author: Ole B. Gehrmann
+#
+#
+# Version: 1.0
+# Date Creation: 26.07.2009
+# Date Update: 26.07.2009
+#
+
+set -e
+
+PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
+DESC="local firewallscript"
+NAME=localfw
+COM=/sbin/iptables
+SCRIPTNAME=/etc/init.d/$NAME
+
+TCP_IN_SERVICES="22 25 53 80 443 993 8080"
+TCP_OUT_SERVICES="20 21 22 25 53 80 443 993 8080"
+UDP_SERVICES="53 123"
+
+# Exit, falls iptables entfernt wurde
+test -x $COM || exit 0
+
+# Lade erst mal die noetigen Kernel-Module
+#modprobe ip_tables
+#modprobe ip_conntrack_ftp
+
+#
+# Funktion zum Setzen der FW-Regeln
+#
+fw_start() {
+ # Erst mal alles loeschen
+ $COM --flush
+ $COM --delete-chain
+
+ # Policy einstellen
+ $COM -P INPUT DROP
+ $COM -P FORWARD DROP
+ $COM -P OUTPUT DROP
+
+ # lokales Interface freigeben
+ $COM -A INPUT -i lo -j ACCEPT
+ $COM -A OUTPUT -o lo -j ACCEPT
+
+ # Antispoofing
+ # Eigene Adresse wird schon durch Kernelflag in /etc/sysctl.conf erledigt
+ # Adressen fuer den internen Gebrauch
+ $COM -A INPUT -s 192.168.0.0/16 -j DROP
+ $COM -A INPUT -s 10.0.0.0/8 -j DROP
+ $COM -A INPUT -s 169.254.0.0/16 -j DROP
+ # seltsame Adressen
+ $COM -A INPUT -s 255.0.0.0/8 -j DROP
+ $COM -A INPUT -s 0.0.0.0/8 -j DROP
+ $COM -A INPUT -s 127.0.0.0/8 -j DROP
+ $COM -A INPUT -s 128.0.0.0/8 -j DROP
+ $COM -A INPUT -s 191.255.0.0/16 -j DROP
+ $COM -A INPUT -s 223.255.255.0/24 -j DROP
+ # Pakete mit seltsamen Flags (Anti-Stealth-Scan?)
+ $COM -A INPUT -p tcp ! --syn -m state --state NEW -j DROP
+
+ # Kernregeln #####################################################################
+ # INBOUND
+
+ # alles zulassen, was vorher schon ok, Teil einer genehmigten Verbindung war
+ $COM -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
+ $COM -I OUTPUT 1 -m state --state ESTABLISHED,RELATED -j ACCEPT
+
+ # syslog empfangen
+ $COM -A INPUT -p udp -m udp --dport 514 -j ACCEPT
+
+ for TCP_IN in $TCP_IN_SERVICES ; do
+ $COM -A INPUT -p tcp --dport ${TCP_IN} -m state --state NEW -j ACCEPT
+ done
+
+ for TCP_OUT in $TCP_OUT_SERVICES ; do
+ $COM -A OUTPUT -p tcp --dport ${TCP_OUT} -m state --state NEW -j ACCEPT
+ done
+
+ for UDP in $UDP_SERVICES ; do
+ $COM -A INPUT -p udp --dport ${UDP} -m state --state NEW -j ACCEPT
+ $COM -A OUTPUT -p udp --dport ${UDP} -m state --state NEW -j ACCEPT
+ done
+
+}
+
+#
+# Funktion zum Loeschen der FW-Regeln
+# Default-Policy bleibt auf DROP
+# Loopback offen
+#
+fw_stop() {
+ $COM --flush
+ $COM --delete-chain
+ $COM -P INPUT DROP
+ $COM -P FORWARD DROP
+ $COM -P OUTPUT DROP
+ #loopback darf alles
+ $COM -A INPUT -i lo -j ACCEPT
+ $COM -A OUTPUT -o lo -j ACCEPT
+
+}
+
+#
+# Funktion zum Loeschen der FW-Regeln
+# Achtung !!!!!! Default-Policy steht dann auf ACCEPT!!!!!!
+#
+fw_open() {
+ $COM --flush
+ $COM --delete-chain
+ $COM -P INPUT ACCEPT
+ $COM -P FORWARD ACCEPT
+ $COM -P OUTPUT ACCEPT
+}
+
+#
+# FW mit einigen Regeln fuer den Test-Betrieb
+#
+fw_debug() {
+ fw_start
+ # Pings zulassen
+ # INBOUND
+ $COM -A INPUT -p icmp --icmp-type echo-request -j ACCEPT
+ # OUTBOUND
+ $COM -A OUTPUT -p icmp --icmp-type echo-request -j ACCEPT
+}
+
+fw_update() {
+ fw_debug
+ # initiative Pakete fuer http auf Mirror in /etc/apt/sources.list
+ $COM -A OUTPUT -p tcp --dport 21 -d ftp.stratoserver.net -m state --state NEW -j ACCEPT
+ $COM -A OUTPUT -p tcp --dport 80 -d ftp.de.debian.org -m state --state NEW -j ACCEPT
+ $COM -A OUTPUT -p tcp --dport 80 -d ftp.uni-erlangen.de -m state --state NEW -j ACCEPT
+ $COM -A OUTPUT -p tcp --dport 80 -d security.debian.org -m state --state NEW -j ACCEPT
+}
+
+case "$1" in
+ start)
+ echo -n "Lade $DESC: $NAME"
+ fw_start
+ echo "."
+ ;;
+ stop)
+ echo "ACHTUNG: DANACH GEHT REMOTE NICHTS MEHR!!!"
+ echo -n "Regeln loeschen, lo zulassen, default DROP"
+ read -p " Wollen Sie das? (j/N) " ABFRAGE
+ if [ ${ABFRAGE:=N} == "j" -o ${ABFRAGE:=N} == "J" ]
+ then
+ fw_stop
+ echo "."
+ else
+ echo " Abgebrochen und nichts geaendert."
+ exit 1
+ fi
+ ;;
+ debug)
+ echo -n "Testmodus $DESC: $NAME"
+ fw_debug
+ logger Firewall Testmodus
+ echo "."
+ ;;
+ restart)
+ echo -n "Restart"
+ fw_open
+ fw_start
+ logger Firewall Restart
+ echo "."
+ ;;
+ update)
+ echo -n "APT update Modus $DESC: $NAME"
+ fw_update
+ logger Firewall Update-Modus
+ echo "."
+ ;;
+ open)
+ echo -n "Achtung!!! FW wird komplett geoeffnet!"
+ read -p " Wollen Sie das? (j/N) " ABFRAGE
+ if [ ${ABFRAGE:=N} == "j" -o ${ABFRAGE:=N} == "J" ]
+ then
+ fw_open
+ logger Firewall wide open
+ echo "."
+ else
+ echo " Abgebrochen und nichts geaendert."
+ exit 1
+ fi
+ ;;
+ status)
+ echo "Status: $NAME"
+ $COM --line-numbers -v --list
+ ;;
+ *)
+ echo "Syntax: $SCRIPTNAME {start|stop|debug|restart|update|open|status}" >&2
+ exit 1
+ ;;
+esac
+
+exit 0
--- /dev/null
+deb http://deb.debian.org/debian DEBIANRELEASE main contrib non-free non-free-firmware
+deb-src http://deb.debian.org/debian DEBIANRELEASE main contrib non-free non-free-firmware
+
+deb http://deb.debian.org/debian-security/ DEBIANRELEASE-security main contrib non-free non-free-firmware
+deb-src http://deb.debian.org/debian-security/ DEBIANRELEASE-security main contrib non-free non-free-firmware
+
+deb http://deb.debian.org/debian DEBIANRELEASE-updates main contrib non-free non-free-firmware
+deb-src http://deb.debian.org/debian DEBIANRELEASE-updates main contrib non-free non-free-firmware
--- /dev/null
+# System-wide .bashrc file for interactive bash(1) shells.
+
+# To enable the settings / commands in this file for login shells as well,
+# this file has to be sourced in /etc/profile.
+
+# If not running interactively, don't do anything
+[ -z "$PS1" ] && return
+
+# check the window size after each command and, if necessary,
+# update the values of LINES and COLUMNS.
+shopt -s checkwinsize
+
+# set variable identifying the chroot you work in (used in the prompt below)
+if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
+ debian_chroot=$(cat /etc/debian_chroot)
+fi
+
+# set a fancy prompt (non-color, overwrite the one in /etc/profile)
+PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
+
+# Commented out, don't overwrite xterm -T "title" -n "icontitle" by default.
+# If this is an xterm set the title to user@host:dir
+#case "$TERM" in
+#xterm*|rxvt*)
+# PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
+# ;;
+#*)
+# ;;
+#esac
+
+# enable bash completion in interactive shells
+#if ! shopt -oq posix; then
+# if [ -f /usr/share/bash-completion/bash_completion ]; then
+# . /usr/share/bash-completion/bash_completion
+# elif [ -f /etc/bash_completion ]; then
+# . /etc/bash_completion
+# fi
+#fi
+
+# if the command-not-found package is installed, use it
+if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-not-found ]; then
+ function command_not_found_handle {
+ # check because c-n-f could've been removed in the meantime
+ if [ -x /usr/lib/command-not-found ]; then
+ /usr/lib/command-not-found -- "$1"
+ return $?
+ elif [ -x /usr/share/command-not-found/command-not-found ]; then
+ /usr/share/command-not-found/command-not-found -- "$1"
+ return $?
+ else
+ printf "%s: command not found\n" "$1" >&2
+ return 127
+ fi
+ }
+fi
--- /dev/null
+# Edit this file to introduce tasks to be run by cron.
+#
+# Each task to run has to be defined through a single line
+# indicating with different fields when the task will be run
+# and what command to run for the task
+#
+# To define the time you can provide concrete values for
+# minute (m), hour (h), day of month (dom), month (mon),
+# and day of week (dow) or use '*' in these fields (for 'any').#
+# Notice that tasks will be started based on the cron's system
+# daemon's notion of time and timezones.
+#
+# Output of the crontab jobs (including errors) is sent through
+# email to the user the crontab file belongs to (unless redirected).
+#
+# For example, you can run a backup of all your user accounts
+# at 5 a.m every week with:
+# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
+#
+# For more information see the manual pages of crontab(5) and cron(8)
+#
+# m h dom mon dow command
+PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>oleb</owner>
+ <name>laktatnebel</name>
+ <tld>de</tld>
+ <connection>2015-05-18</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>webalizer</name>
+ <descr>Webalizer</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>cal</name>
+ <descr>Davical</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# Davical
+ DirectoryIndex index.php index.html
+
+ Alias /images/ /var/www/laktatnebel.de/cal/images/
+ AcceptPathInfo On
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>wiki</name>
+ <descr>Wiki WackoWiki</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# WackoWiki
+ DirectoryIndex index.php index.html
+
+ LoadModule rewrite_module modules/mod_rewrite.so
+ ]]></virtualhost>
+ <directory><![CDATA[
+ Options FollowSymlinks
+ AllowOverride all
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>repo</name>
+ <descr>Maven-Repository</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>git</name>
+ <descr>GIT</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>ticket</name>
+ <descr>Ticket</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>cloud</name>
+ <descr>Cloudspace</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>phpmyadmin</name>
+ <descr>phpMyAdmin</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>phppgadmin</name>
+ <descr>phpPgAdmin</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>tools</name>
+ <descr>Admin-Tools</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>eval</name>
+ <descr>Evaluation</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>swim</name>
+ <descr>Swim-Tools</descr>
+ <realm>false</realm>
+ <serveralias>swim.triathlon-coaching.com</serveralias>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>oleb</owner>
+ <name>triathlon-coaching</name>
+ <tld>com</tld>
+ <connection>2023-04-30</connection>
+ <dkim>v=DKIM1; h=sha256; k=rsa;
+ p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDJ2QMawri3618NYRR6+O6rPY8MKqbftxYw0IJ8slVX6zzqd4dmq1BmmDt4dNUnXLhnaEK4LiZn63G62EyYMw5MzHYMKD2G4lnsTPYHWX4llcYrEeie73ltKc2wG1V65Qeteay2MrXOIBoGm/v8FW0mQJ227arf+RSwKokd3a/xRwIDAQAB</dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>webalizer</name>
+ <descr>Webalizer</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>cal</name>
+ <descr>Davical</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# Davical
+ DirectoryIndex index.php index.html
+
+ Alias /images/ /var/www/laktatnebel.de/cal/images/
+ AcceptPathInfo On
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>wiki</name>
+ <descr>Wiki WackoWiki</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# WackoWiki
+ DirectoryIndex index.php index.html
+
+ LoadModule rewrite_module modules/mod_rewrite.so
+ ]]></virtualhost>
+ <directory><![CDATA[
+ Options FollowSymlinks
+ AllowOverride all
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>calsheet</name>
+ <descr>AgenDAV</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# AgenDAV
+ DirectoryIndex index.php index.html
+
+ <Location />
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [QSA,L]
+ </Location>
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>phpmyadmin</name>
+ <descr>phpMyAdmin</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>phppgadmin</name>
+ <descr>phpPgAdmin</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>tools</name>
+ <descr>Admin-Tools</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>swim</name>
+ <descr>Swim-Tools</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>oleb</owner>
+ <name>ole-b-rosentreter</name>
+ <tld>de</tld>
+ <connection>2016-12-07</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>calsheet</name>
+ <descr>AgenDAV</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# AgenDAV
+ DirectoryIndex index.php index.html
+
+ <Location />
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [QSA,L]
+ </Location>
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>ebay</name>
+ <descr>Ebay Webspace</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>oleb</owner>
+ <name>wechselzonenluder</name>
+ <tld>de</tld>
+ <connection>2018-09-09</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>webalizer</name>
+ <descr>Webalizer</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>oleb</owner>
+ <name>anita-ole</name>
+ <tld>de</tld>
+ <connection>2022-10-16</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <acls>anita</acls>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>calsheet</name>
+ <descr>AgenDAV</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# AgenDAV
+ DirectoryIndex index.php index.html
+
+ <Location />
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [QSA,L]
+ </Location>
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>cloud</name>
+ <descr>Cloudspace</descr>
+ <realm>true</realm>
+ <acls>anita</acls>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>oleb</owner>
+ <name>coach-4-you</name>
+ <tld>com</tld>
+ <connection>2017-04-14</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <serveralias>www.triathlon-coaching.com</serveralias>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>oleb</owner>
+ <name>coaching-training-triathlon</name>
+ <tld>de</tld>
+ <connection>2022-01-30</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <serveralias>www.triathlon-coaching.com</serveralias>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>oleb</owner>
+ <name>triathlon-online-trainingsplan</name>
+ <tld>de</tld>
+ <connection>2022-01-30</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <serveralias>www.triathlon-coaching.com</serveralias>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>oleb</owner>
+ <name>triathlon-training-coaching</name>
+ <tld>de</tld>
+ <connection>2022-01-30</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <serveralias>www.triathlon-coaching.com</serveralias>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>oleb</owner>
+ <name>triathlon-coaching-training</name>
+ <tld>de</tld>
+ <connection>2022-01-30</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <serveralias>www.triathlon-coaching.com</serveralias>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>oleb</owner>
+ <name>triathlon-coaching-trainingsplan</name>
+ <tld>de</tld>
+ <connection>2022-01-30</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <serveralias>www.triathlon-coaching.com</serveralias>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>anita</owner>
+ <name>anita-meyer</name>
+ <tld>com</tld>
+ <connection>2023-09-30</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>calsheet</name>
+ <descr>AgenDAV</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# AgenDAV
+ DirectoryIndex index.php index.html
+
+ <Location />
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [QSA,L]
+ </Location>
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>lasse</owner>
+ <name>lasse-gehrmann</name>
+ <tld>de</tld>
+ <connection>2015-06-02</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>calsheet</name>
+ <descr>AgenDAV</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# AgenDAV
+ DirectoryIndex index.php index.html
+
+ <Location />
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [QSA,L]
+ </Location>
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>webalizer</name>
+ <descr>Webalizer</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>matthies</owner>
+ <name>matthies-gehrmann</name>
+ <tld>de</tld>
+ <connection>2015-06-02</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>calsheet</name>
+ <descr>AgenDAV</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# AgenDAV
+ DirectoryIndex index.php index.html
+
+ <Location />
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [QSA,L]
+ </Location>
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>webalizer</name>
+ <descr>Webalizer</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>ina</owner>
+ <name>ina-rosentreter</name>
+ <tld>de</tld>
+ <connection>2014-04-04</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>calsheet</name>
+ <descr>AgenDAV</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# AgenDAV
+ DirectoryIndex index.php index.html
+
+ <Location />
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [QSA,L]
+ </Location>
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ </domain>
+ <domain>
+ <owner>ina</owner>
+ <name>little-red-riding-hood</name>
+ <tld>eu</tld>
+ <connection>2017-04-01</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>webalizer</name>
+ <descr>Webalizer</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>anita</owner>
+ <name>anita-meyer</name>
+ <tld>com</tld>
+ <connection>2023-09-30</connection>
+ <dkim>v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsuMu5zgvQCxZlreN3Mb+JaRkntUL8VaLr6/hvw0J9qxyE8WUYpNvYrbGNeXEBWn0p9nglxBztX04ADFGRB1WKHg7we8jRaTpxvRi7cy906nqylc5lun80u7jdj+tViBfCQwCr2WYfQo/EiKZ456+1IObvkQbGNK0SsSxGGGtm0kdgfBgO6LlVOcEYxTO7ycqIlAAIRFqmoDoBcl3MY08ewnwc62zCrcAIxeKVRQ8xF/stdZKjY1SiWBXQuU7BhbM5DssdMBV4oshLWqQcjJwkLT6eolWdQOu4FJLmda6EEahH93H/9ignlLxqSaIUbgcm0qysoll6QDbQsmaQWJl5wIDAQAB</dkim>
+ <subdomain>
+ <name>calsheet</name>
+ <descr>AgenDAV</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# AgenDAV
+ DirectoryIndex index.php index.html
+
+ <Location />
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [QSA,L]
+ </Location>
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ <IfModule mod_rewrite.c>
+ RewriteEngine On
+ RewriteRule ^favicon\.ico$ skins/larry/images/favicon.ico
+ # security rules:
+ # - deny access to files not containing a dot or starting with a dot
+ # in all locations except installer directory
+ RewriteRule ^(?!installer)(\.?[^\.]+)$ - [F]
+ # - deny access to some locations
+ RewriteRule ^/?(\.git|\.tx|SQL|bin|config|logs|temp|tests|program\/(include|lib|localization|steps)) - [F]
+ # - deny access to some documentation files
+ RewriteRule /?(README\.md|composer\.json-dist|composer\.json|package\.xml)$ - [F]
+ </IfModule>
+
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ </Directory>
+
+ <Directory /var/www/roundcube/plugins/enigma/home>
+ Options -FollowSymLinks
+ AllowOverride None
+ Order allow,deny
+ Deny from all
+ </Directory>
+ <Directory /var/www/roundcube/config>
+ Options -FollowSymLinks
+ AllowOverride None
+ Order allow,deny
+ Deny from all
+ </Directory>
+ <Directory /var/www/roundcube/temp>
+ Options -FollowSymLinks
+ AllowOverride None
+ Order allow,deny
+ Deny from all
+ </Directory>
+ <Directory /var/www/roundcube/logs>
+ Options -FollowSymLinks
+ AllowOverride None
+ Order allow,deny
+ Deny from all
+ ]]></directory>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<mailboxes>
+ <mailbox>
+ <mailbox_id alias="privat" name="anita-meyer" tld="com" />
+ <purpose>privat</purpose>
+ <mailbox_password>Haeuschen!Schnecke_181217</mailbox_password>
+ <aliasses>
+ <alias name="anita" descr="privat" />
+ <alias name="meyer" descr="privat" />
+ <alias name="a.meyer" descr="privat" />
+ <alias name="anita.meyer" descr="privat" />
+ <alias name="email" descr="privat" />
+ <alias name="post" descr="privat" />
+ <alias name="mail" descr="privat" />
+ <alias name="schneggi" descr="privat" />
+ <alias name="frau.schneck" descr="privat" />
+ <alias name="haeuschenschnecke" descr="privat" />
+ </aliasses>
+ </mailbox>
+</mailboxes>
+</root>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>oleb</owner>
+ <name>anita-ole</name>
+ <tld>de</tld>
+ <connection>2022-10-16</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <acls>anita</acls>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>calsheet</name>
+ <descr>AgenDAV</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# AgenDAV
+ DirectoryIndex index.php index.html
+
+ <Location />
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [QSA,L]
+ </Location>
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>cloud</name>
+ <descr>Cloudspace</descr>
+ <realm>true</realm>
+ <acls>anita</acls>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<mailboxes>
+
+ <mailbox>
+ <mailbox_id alias="privat" name="anita-ole" tld="de" />
+ <purpose>privat</purpose>
+ <mailbox_password>SchneckenHaus_181217</mailbox_password>
+ <aliasses>
+ <alias name="anita" descr="privat" />
+ <alias name="bank" descr="Bank" />
+ <alias name="e.on" descr="e.on" />
+ <alias name="email" descr="privat" />
+ <alias name="faz" descr="FAZ" />
+ <alias name="freizeit" descr="Freizeit" />
+ <alias name="ing-diba" descr="ING-Diba" />
+ <alias name="kfz" descr="Auto" />
+ <alias name="mail" descr="privat" />
+ <alias name="netflix" descr="Netflix" />
+ <alias name="ole" descr="privat" />
+ <alias name="paypal" descr="Paypal" />
+ <alias name="urlaub" descr="Urlaub" />
+ <alias name="versicherung" descr="Versicherungen" />
+ <alias name="whg" descr="Wohnung" />
+ </aliasses>
+ </mailbox>
+
+
+</mailboxes>
+</root>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>oleb</owner>
+ <name>coach-4-you</name>
+ <tld>com</tld>
+ <connection>2017-04-14</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <serveralias>www.triathlon-coaching.com</serveralias>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>oleb</owner>
+ <name>coaching-training-triathlon</name>
+ <tld>de</tld>
+ <connection>2022-01-30</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <serveralias>www.triathlon-coaching.com</serveralias>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>ina</owner>
+ <name>ina-rosentreter</name>
+ <tld>de</tld>
+ <connection>2014-04-04</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>calsheet</name>
+ <descr>AgenDAV</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# AgenDAV
+ DirectoryIndex index.php index.html
+
+ <Location />
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [QSA,L]
+ </Location>
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<mailboxes>
+
+ <mailbox>
+ <mailbox_id alias="privat" name="ina-rosentreter" tld="de" />
+ <purpose>privat</purpose>
+ <mailbox_password>lieblingsSCHWESTER_76</mailbox_password>
+ <aliasses>
+ <alias name="amazon" descr="Amazon" />
+ <alias name="arzt" descr="Arzt" />
+ <alias name="bahn" descr="Deutsche Bahn" />
+ <alias name="banking" descr="Bank" />
+ <alias name="briefkasten" descr="privat" />
+ <alias name="dav" descr="DAV" />
+ <alias name="e-mail" descr="privat" />
+ <alias name="email" descr="privat" />
+ <alias name="food" descr="Food" />
+ <alias name="foren" descr="Foren" />
+ <alias name="foto" descr="Foto" />
+ <alias name="freizeit" descr="Freizeit" />
+ <alias name="fun" descr="Fun" />
+ <alias name="gesundheit" descr="Gesundheit" />
+ <alias name="hamburg" descr="Hamburg" />
+ <alias name="holiday" descr="Holiday" />
+ <alias name="ina" descr="privat" />
+ <alias name="ina.rosentreter" descr="privat" />
+ <alias name="info" descr="Info" />
+ <alias name="insurance" descr="Versicherung" />
+ <alias name="job" descr="Job" />
+ <alias name="mail" descr="privat" />
+ <alias name="musik" descr="Musik" />
+ <alias name="newsletter" descr="Newsletter" />
+ <alias name="outdoor" descr="Outdoor" />
+ <alias name="post" descr="privat" />
+ <alias name="shopping" descr="shopping" />
+ <alias name="sport" descr="Sport" />
+ <alias name="steuern" descr="Steuern" />
+ <alias name="tchibo" descr="Tchibo" />
+ <alias name="tickets" descr="Tickets" />
+ <alias name="vereine" descr="Vereine" />
+ <alias name="web" descr="web" />
+ <alias name="whg" descr="Wohnung" />
+ </aliasses>
+ </mailbox>
+
+
+</mailboxes>
+</root>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>oleb</owner>
+ <name>laktatnebel</name>
+ <tld>de</tld>
+ <connection>2015-05-18</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>webalizer</name>
+ <descr>Webalizer</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>cal</name>
+ <descr>Davical</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# Davical
+ DirectoryIndex index.php index.html
+
+ Alias /images/ /var/www/laktatnebel.de/cal/images/
+ AcceptPathInfo On
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>wiki</name>
+ <descr>Wiki WackoWiki</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# WackoWiki
+ DirectoryIndex index.php index.html
+
+ LoadModule rewrite_module modules/mod_rewrite.so
+ ]]></virtualhost>
+ <directory><![CDATA[
+ Options FollowSymlinks
+ AllowOverride all
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>repo</name>
+ <descr>Maven-Repository</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>git</name>
+ <descr>GIT</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>ticket</name>
+ <descr>Ticket</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>cloud</name>
+ <descr>Cloudspace</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>phpmyadmin</name>
+ <descr>phpMyAdmin</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>phppgadmin</name>
+ <descr>phpPgAdmin</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>tools</name>
+ <descr>Admin-Tools</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>eval</name>
+ <descr>Evaluation</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<mailboxes>
+
+ <mailbox>
+ <mailbox_id alias="admin" name="laktatnebel" tld="de" />
+ <purpose>Administration</purpose>
+ <mailbox_password>K3ytGfwpQT9QRb2e</mailbox_password>
+ <aliasses>
+ <alias name="accounting" descr="techn. Email" />
+ <alias name="anfrage" descr="techn. Email" />
+ <alias name="bestaetigung" descr="techn. Email" />
+ <alias name="buchung" descr="techn. Email" />
+ <alias name="confirmation" descr="techn. Email" />
+ <alias name="registration" descr="techn. Email" />
+ <alias name="registrierung" descr="techn. Email" />
+ <alias name="request" descr="techn. Email" />
+ <alias name="subscribe" descr="techn. Email" />
+ <alias name="unsubscribe" descr="techn. Email" />
+ <alias name="datenschutz" descr="Datenschutz" />
+ <alias name="noreply" descr="techn. Email" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="einkauf" name="laktatnebel" tld="de" />
+ <purpose>Einkauf</purpose>
+ <mailbox_password>TxfG_p4Ky=h6bruH</mailbox_password>
+ <aliasses>
+ <alias name="hardware" descr="hardware" />
+ <alias name="hosting" descr="hosting" />
+ <alias name="strato" descr="Strato" />
+ <alias name="webtropia" descr=" Webtropia" />
+ <alias name="owayo" descr="Owayo" />
+ <alias name="saxoprint" descr="Saxoprint" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="kontakt" name="laktatnebel" tld="de" />
+ <purpose>Kontakt</purpose>
+ <mailbox_password>MubqcD=N=8CB2Pba</mailbox_password>
+ <aliasses>
+ <alias name="bugs" descr="Bugs" />
+ <alias name="google" descr="Google" />
+ <alias name="ig.socialmedia" descr="Instagram" />
+ <alias name="it" descr="IT" />
+ <alias name="paypal" descr="Paypal" />
+ <alias name="teamviewer" descr=" Teamviewer" />
+ <alias name="zoom" descr="Zoom" />
+ <alias name="support" descr="Support" />
+ </aliasses>
+ </mailbox>
+
+
+</mailboxes>
+</root>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>lasse</owner>
+ <name>lasse-gehrmann</name>
+ <tld>de</tld>
+ <connection>2015-06-02</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>webalizer</name>
+ <descr>Webalizer</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<mailboxes>
+
+ <mailbox>
+ <mailbox_id alias="privat" name="lasse-gehrmann" tld="de" />
+ <purpose>privat</purpose>
+ <mailbox_password>LasSE_09=nF</mailbox_password>
+ <aliasses>
+ <alias name="briefkasten" descr="privat" />
+ <alias name="e-mail" descr="privat" />
+ <alias name="email" descr="privat" />
+ <alias name="frederik" descr="privat" />
+ <alias name="l.g" descr="privat" />
+ <alias name="l.gehrmann" descr="privat" />
+ <alias name="lasse" descr="privat" />
+ <alias name="lasse.gehrmann" descr="privat" />
+ <alias name="lasse.nils.frederik" descr="privat" />
+ <alias name="lasse.nils.frederik.gehrmann" descr="privat" />
+ <alias name="lg" descr="privat" />
+ <alias name="lnf" descr="privat" />
+ <alias name="lnf.gehrmann" descr="privat" />
+ <alias name="lnfg" descr="privat" />
+ <alias name="mail" descr="privat" />
+ <alias name="nils" descr="privat" />
+ <alias name="post" descr="privat" />
+ </aliasses>
+ </mailbox>
+
+
+</mailboxes>
+</root>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>matthies</owner>
+ <name>matthies-gehrmann</name>
+ <tld>de</tld>
+ <connection>2015-06-02</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>calsheet</name>
+ <descr>AgenDAV</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# AgenDAV
+ DirectoryIndex index.php index.html
+
+ <Location />
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [QSA,L]
+ </Location>
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>webalizer</name>
+ <descr>Webalizer</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<mailboxes>
+
+
+ <mailbox>
+ <mailbox_id alias="privat" name="matthies-gehrmann"
+ tld="de" />
+ <purpose>privat</purpose>
+ <mailbox_password>MaTthiES_11=fE</mailbox_password>
+ <aliasses>
+ <alias name="briefkasten" descr="privat" />
+ <alias name="e-mail" descr="privat" />
+ <alias name="email" descr="privat" />
+ <alias name="erik" descr="privat" />
+ <alias name="finn" descr="privat" />
+ <alias name="m.g" descr="privat" />
+ <alias name="m.gehrmann" descr="privat" />
+ <alias name="mail" descr="privat" />
+ <alias name="matthies" descr="privat" />
+ <alias name="matthies.finn.erik" descr="privat" />
+ <alias name="matthies.finn.erik.gehrmann" descr="privat" />
+ <alias name="matthies.gehrmann" descr="privat" />
+ <alias name="mfe" descr="privat" />
+ <alias name="mfe.gehrmann" descr="privat" />
+ <alias name="mfeg" descr="privat" />
+ <alias name="mg" descr="privat" />
+ <alias name="post" descr="privat" />
+ <alias name="pro2000" descr="privat" />
+ </aliasses>
+ </mailbox>
+
+
+</mailboxes>
+</root>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>oleb</owner>
+ <name>ole-b-rosentreter</name>
+ <tld>de</tld>
+ <connection>2016-12-07</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>calsheet</name>
+ <descr>AgenDAV</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# AgenDAV
+ DirectoryIndex index.php index.html
+
+ <Location />
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [QSA,L]
+ </Location>
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<mailboxes>
+
+ <mailbox>
+ <mailbox_id alias="finanzen" name="ole-b-rosentreter"
+ tld="de" />
+ <purpose>Finanzen</purpose>
+ <mailbox_password>dbMWBuXKZ6R+#W7B</mailbox_password>
+ <aliasses>
+ <alias name="bank" descr="Bank" />
+ <alias name="banking" descr="Bank" />
+ <alias name="cash" descr="Bank" />
+ <alias name="comdirect" descr="comdirect" />
+ <alias name="nuernberger.versicherung"
+ descr="Nürnberger Versicherung" />
+ <alias name="insurance" descr="Versicherung" />
+ <alias name="n26" descr="N26" />
+ <alias name="paypal" descr="Paypal" />
+ <alias name="pkv" descr="private KV" />
+ <alias name="steuern" descr="Steuern" />
+ <alias name="versicherung" descr="Versicherungen" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="freizeit" name="ole-b-rosentreter"
+ tld="de" />
+ <purpose>Freizeit</purpose>
+ <mailbox_password>D5p=kz=VehN25E6F</mailbox_password>
+ <aliasses>
+ <alias name="fb.socialmedia" descr="Facebook" />
+ <alias name="fun" descr="Fun" />
+ <alias name="games" descr="Spiele" />
+ <alias name="ig.socialmedia" descr="Instagram" />
+ <alias name="laut.fm" descr="Laut.FM" />
+ <alias name="newsletter" descr="Newsletter" />
+ <alias name="skype" descr="Skype" />
+ <alias name="tipprunden" descr="Tipprunden" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="job" name="ole-b-rosentreter" tld="de" />
+ <purpose>Job</purpose>
+ <mailbox_password>Q+q4CvC8+smT7DVu</mailbox_password>
+ <aliasses>
+ <alias name="indeed" descr="Indeed" />
+ <alias name="it" descr="IT" />
+ <alias name="jobs" descr="Jobs" />
+ <alias name="linkedin" descr="LinkedIN" />
+ <alias name="stepstone" descr="Stepstone" />
+ <alias name="udemy" descr="Udemy" />
+ <alias name="weiterbildung" descr="Weiterbildung" />
+ <alias name="xing" descr="Xing" />
+ <alias name="aos" descr="Academy of Sports" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="privat" name="ole-b-rosentreter"
+ tld="de" />
+ <purpose>privat</purpose>
+ <mailbox_password>JV2Z5+hwv6ntbxR?</mailbox_password>
+ <aliasses>
+ <alias name="arzt" descr="Arzt" />
+ <alias name="briefkasten" descr="privat" />
+ <alias name="email" descr="privat" />
+ <alias name="gesundheit" descr="Gesundheit" />
+ <alias name="mail" descr="privat" />
+ <alias name="med" descr="Medizinisches" />
+ <alias name="o.b.r" descr="privat" />
+ <alias name="o.b.rosentreter" descr="privat" />
+ <alias name="o.r" descr="privat" />
+ <alias name="o.rosentreter" descr="privat" />
+ <alias name="obr" descr="privat" />
+ <alias name="ole" descr="privat" />
+ <alias name="ole.b.rosentreter" descr="privat" />
+ <alias name="ole.rosentreter" descr="privat" />
+ <alias name="or" descr="privat" />
+ <alias name="post" descr="privat" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="sport" name="ole-b-rosentreter" tld="de" />
+ <purpose>Sport</purpose>
+ <mailbox_password>SnuRnt2RdA2+_eR%</mailbox_password>
+ <aliasses>
+ <alias name="16mmol" descr="16mmol" />
+ <alias name="competition" descr="competition" />
+ <alias name="eisenmann" descr="eisenmann" />
+ <alias name="fitx" descr="FitX" />
+ <alias name="garmin" descr="Garmin Connect" />
+ <alias name="ironman" descr="Ironman" />
+ <alias name="laktatnebel" descr="Laktatnebel" />
+ <alias name="running" descr="Running" />
+ <alias name="sports" descr="Sport" />
+ <alias name="swimbikerun" descr="swimbikerun" />
+ <alias name="training" descr="Training" />
+ <alias name="triathlon" descr="Triathlon" />
+ <alias name="trainingpeaks" descr="Trainingpeaks" />
+ <alias name="vo2max" descr="vo2max" />
+ <alias name="wahoo" descr="Wahoo" />
+ <alias name="wettkampf" descr="Wettkampf Anmeldungen" />
+ <alias name="zwift" descr="Zwift" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="commerce" name="ole-b-rosentreter"
+ tld="de" />
+ <purpose>geschäftlich</purpose>
+ <mailbox_password>-Cd8U+BKJpp_8th6</mailbox_password>
+ <aliasses>
+ <alias name="airbnb" descr="Airbnb" />
+ <alias name="amazon" descr="Amazon" />
+ <alias name="auktionen" descr="Ebay" />
+ <alias name="bahn" descr="Deutsche Bahn" />
+ <alias name="bird" descr="Bird Scooter" />
+ <alias name="bolt" descr="Bolt Scooter" />
+ <alias name="booking.com" descr="booking.com" />
+ <alias name="dropbox" descr="Dropbox" />
+ <alias name="gyg" descr="Get Yor Guide" />
+ <alias name="holiday" descr="Holiday" />
+ <alias name="hotel" descr="Hotel" />
+ <alias name="hrs" descr="HRS" />
+ <alias name="kfz" descr="Auto" />
+ <alias name="kleinanzeigen" descr="Kleinanzeigen" />
+ <alias name="lime" descr="Lime Scooter" />
+ <alias name="metro" descr="Metro" />
+ <alias name="packstation" descr="Packstation" />
+ <alias name="phone" descr="Telefon" />
+ <alias name="press" descr="Zeitungen" />
+ <alias name="shopping" descr="shopping" />
+ <alias name="tchibo" descr="Tchibo" />
+ <alias name="terrashop" descr="Terrashop" />
+ <alias name="tickets" descr="Tickets" />
+ <alias name="tier" descr="Tier Scooter" />
+ <alias name="uber" descr="Uber" />
+ <alias name="urlaub" descr="Urlaub" />
+ <alias name="verkaufen" descr="verkaufen" />
+ <alias name="verkaufen.2022.ebay" descr="Ebay" />
+ <alias name="vgn" descr="VGN" />
+ <alias name="voi" descr="VOI Scooter" />
+ <alias name="whg" descr="Wohnung" />
+ <alias name="zoom" descr="Zoom" />
+ <alias name="deutsche.post" descr="Deutsche Post" />
+ </aliasses>
+ </mailbox>
+
+
+</mailboxes>
+</root>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>oleb</owner>
+ <name>triathlon-coaching-training</name>
+ <tld>de</tld>
+ <connection>2022-01-30</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <serveralias>www.triathlon-coaching.com</serveralias>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>oleb</owner>
+ <name>triathlon-coaching-trainingsplan</name>
+ <tld>de</tld>
+ <connection>2022-01-30</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <serveralias>www.triathlon-coaching.com</serveralias>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>oleb</owner>
+ <name>triathlon-coaching</name>
+ <tld>com</tld>
+ <connection>2023-04-30</connection>
+ <dkim>v=DKIM1; h=sha256; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDJ2QMawri3618NYRR6+O6rPY8MKqbftxYw0IJ8slVX6zzqd4dmq1BmmDt4dNUnXLhnaEK4LiZn63G62EyYMw5MzHYMKD2G4lnsTPYHWX4llcYrEeie73ltKc2wG1V65Qeteay2MrXOIBoGm/v8FW0mQJ227arf+RSwKokd3a/xRwIDAQAB</dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>webalizer</name>
+ <descr>Webalizer</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>cal</name>
+ <descr>Davical</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# Davical
+ DirectoryIndex index.php index.html
+
+ Alias /images/ /var/www/laktatnebel.de/cal/images/
+ AcceptPathInfo On
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>wiki</name>
+ <descr>Wiki WackoWiki</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# WackoWiki
+ DirectoryIndex index.php index.html
+
+ LoadModule rewrite_module modules/mod_rewrite.so
+ ]]></virtualhost>
+ <directory><![CDATA[
+ Options FollowSymlinks
+ AllowOverride all
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>calsheet</name>
+ <descr>AgenDAV</descr>
+ <realm>true</realm>
+ <virtualhost><![CDATA[
+# AgenDAV
+ DirectoryIndex index.php index.html
+
+ <Location />
+ RewriteEngine On
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [QSA,L]
+ </Location>
+ ]]></virtualhost>
+ <directory><![CDATA[
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>phpmyadmin</name>
+ <descr>phpMyAdmin</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>phppgadmin</name>
+ <descr>phpPgAdmin</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>tools</name>
+ <descr>Admin-Tools</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>swim</name>
+ <descr>Swim-Tools</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<mailboxes>
+
+ <mailbox>
+ <mailbox_id alias="kontakt" name="triathlon-coaching"
+ tld="com" />
+ <purpose>Kontakt</purpose>
+ <mailbox_password>sH+z9XaY7?Jx9Nzr</mailbox_password>
+ <aliasses>
+ <alias name="ig.socialmedia" descr="Instagram" />
+ <alias name="camp" descr="Camps" />
+ <alias name="paypal" descr="Paypal" />
+ <alias name="bike24" descr="Bike24" />
+ <alias name="einkauf" descr="Einkauf" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="sport" name="triathlon-coaching"
+ tld="com" />
+ <purpose>Sport</purpose>
+ <mailbox_password>§c-fCJce2!6B7eTJ</mailbox_password>
+ <aliasses>
+ <alias name="sports" descr="Sport" />
+ <alias name="swimbikerun" descr="swimbikerun" />
+ <alias name="coaching" descr="Coaching" />
+ <alias name="kurs" descr="Kurse" />
+ <alias name="laufseminar" descr="Laufseminar" />
+ <alias name="schwimmseminar" descr="Schwimmseminar" />
+ <alias name="trainingpeaks" descr="Trainingpeaks" />
+ <alias name="mats" descr="MATS" />
+ <alias name="triathlon" descr="Triathlon" />
+ <alias name="training" descr="Training" />
+ <alias name="running" descr="Running" />
+ </aliasses>
+ </mailbox>
+
+
+</mailboxes>
+</root>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>oleb</owner>
+ <name>triathlon-online-trainingsplan</name>
+ <tld>de</tld>
+ <connection>2022-01-30</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <serveralias>www.triathlon-coaching.com</serveralias>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>oleb</owner>
+ <name>triathlon-training-coaching</name>
+ <tld>de</tld>
+ <connection>2022-01-30</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <serveralias>www.triathlon-coaching.com</serveralias>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<domains>
+ <domain>
+ <owner>oleb</owner>
+ <name>wechselzonenluder</name>
+ <tld>de</tld>
+ <connection>2018-09-09</connection>
+ <dkim></dkim>
+ <subdomain>
+ <name>www</name>
+ <descr>Webseite</descr>
+ <realm>false</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>mail</name>
+ <descr>Webmail</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ Options +FollowSymLinks
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ <subdomain>
+ <name>webalizer</name>
+ <descr>Webalizer</descr>
+ <realm>true</realm>
+ <directory><![CDATA[
+ AllowOverride None
+ ]]></directory>
+ </subdomain>
+ </domain>
+</domains>
+</root>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<mailboxes>
+
+ <mailbox>
+ <mailbox_id alias="kontakt" name="wechselzonenluder"
+ tld="de" />
+ <purpose>Kontakt</purpose>
+ <mailbox_password>4ZeHM8fqHxG-v</mailbox_password>
+ <aliasses>
+ <alias name="einkauf" descr="Einkauf" />
+ <alias name="fb.socialmedia" descr="Facebook" />
+ <alias name="google" descr="Google" />
+ <alias name="ig.socialmedia" descr="Instagram" />
+ <alias name="merchandise" descr="Merchandise" />
+ <alias name="spreadshirt" descr="Spreadshirt" />
+ <alias name="socialmedia" descr="Socialmedia" />
+ <alias name="support" descr="Support" />
+ </aliasses>
+ </mailbox>
+
+
+</mailboxes>
+</root>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<mailboxes>
+
+ <mailbox>
+ <mailbox_id alias="privat" name="anita-meyer" tld="com" />
+ <purpose>privat</purpose>
+ <mailbox_password>Haeuschen!Schnecke_181217</mailbox_password>
+ <aliasses>
+ <alias name="anita" descr="privat" />
+ <alias name="meyer" descr="privat" />
+ <alias name="a.meyer" descr="privat" />
+ <alias name="anita.meyer" descr="privat" />
+ <alias name="email" descr="privat" />
+ <alias name="post" descr="privat" />
+ <alias name="mail" descr="privat" />
+ <alias name="schneggi" descr="privat" />
+ <alias name="frau.schneck" descr="privat" />
+ <alias name="haeuschenschnecke" descr="privat" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="privat" name="anita-ole" tld="de" />
+ <purpose>privat</purpose>
+ <mailbox_password>SchneckenHaus_181217</mailbox_password>
+ <aliasses>
+ <alias name="anita" descr="privat" />
+ <alias name="bank" descr="Bank" />
+ <alias name="e.on" descr="e.on" />
+ <alias name="email" descr="privat" />
+ <alias name="faz" descr="FAZ" />
+ <alias name="freizeit" descr="Freizeit" />
+ <alias name="ing-diba" descr="ING-Diba" />
+ <alias name="kfz" descr="Auto" />
+ <alias name="mail" descr="privat" />
+ <alias name="netflix" descr="Netflix" />
+ <alias name="ole" descr="privat" />
+ <alias name="paypal" descr="Paypal" />
+ <alias name="urlaub" descr="Urlaub" />
+ <alias name="versicherung" descr="Versicherungen" />
+ <alias name="whg" descr="Wohnung" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="privat" name="ina-rosentreter" tld="de" />
+ <purpose>privat</purpose>
+ <mailbox_password>lieblingsSCHWESTER_76</mailbox_password>
+ <aliasses>
+ <alias name="amazon" descr="Amazon" />
+ <alias name="arzt" descr="Arzt" />
+ <alias name="bahn" descr="Deutsche Bahn" />
+ <alias name="banking" descr="Bank" />
+ <alias name="briefkasten" descr="privat" />
+ <alias name="dav" descr="DAV" />
+ <alias name="e-mail" descr="privat" />
+ <alias name="email" descr="privat" />
+ <alias name="food" descr="Food" />
+ <alias name="foren" descr="Foren" />
+ <alias name="foto" descr="Foto" />
+ <alias name="freizeit" descr="Freizeit" />
+ <alias name="fun" descr="Fun" />
+ <alias name="gesundheit" descr="Gesundheit" />
+ <alias name="hamburg" descr="Hamburg" />
+ <alias name="holiday" descr="Holiday" />
+ <alias name="ina" descr="privat" />
+ <alias name="ina.rosentreter" descr="privat" />
+ <alias name="info" descr="Info" />
+ <alias name="insurance" descr="Versicherung" />
+ <alias name="job" descr="Job" />
+ <alias name="mail" descr="privat" />
+ <alias name="musik" descr="Musik" />
+ <alias name="newsletter" descr="Newsletter" />
+ <alias name="outdoor" descr="Outdoor" />
+ <alias name="post" descr="privat" />
+ <alias name="shopping" descr="shopping" />
+ <alias name="sport" descr="Sport" />
+ <alias name="steuern" descr="Steuern" />
+ <alias name="tchibo" descr="Tchibo" />
+ <alias name="tickets" descr="Tickets" />
+ <alias name="vereine" descr="Vereine" />
+ <alias name="web" descr="web" />
+ <alias name="whg" descr="Wohnung" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="kontakt" name="little-red-riding-hood"
+ tld="eu" />
+ <purpose>Kontakt</purpose>
+ <mailbox_password>lieblingsSCHWESTER_76</mailbox_password>
+ <aliasses>
+ <alias name="accounting" descr="techn. Email" />
+ <alias name="anfrage" descr="techn. Email" />
+ <alias name="bestaetigung" descr="techn. Email" />
+ <alias name="buchung" descr="techn. Email" />
+ <alias name="confirmation" descr="techn. Email" />
+ <alias name="registration" descr="techn. Email" />
+ <alias name="registrierung" descr="techn. Email" />
+ <alias name="request" descr="techn. Email" />
+ <alias name="subscribe" descr="techn. Email" />
+ <alias name="unsubscribe" descr="techn. Email" />
+ <alias name="datenschutz" descr="Datenschutz" />
+ <alias name="fb.socialmedia" descr="Facebook" />
+ <alias name="google" descr="Google" />
+ <alias name="info" descr="Info" />
+ <alias name="infos" descr="Infos" />
+ <alias name="ig.socialmedia" descr="Instagram" />
+ <alias name="socialmedia" descr="Socialmedia" />
+ <alias name="support" descr="Support" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="admin" name="laktatnebel" tld="de" />
+ <purpose>Administration</purpose>
+ <mailbox_password>K3ytGfwpQT9QRb2e</mailbox_password>
+ <aliasses>
+ <alias name="accounting" descr="techn. Email" />
+ <alias name="anfrage" descr="techn. Email" />
+ <alias name="bestaetigung" descr="techn. Email" />
+ <alias name="buchung" descr="techn. Email" />
+ <alias name="confirmation" descr="techn. Email" />
+ <alias name="registration" descr="techn. Email" />
+ <alias name="registrierung" descr="techn. Email" />
+ <alias name="request" descr="techn. Email" />
+ <alias name="subscribe" descr="techn. Email" />
+ <alias name="unsubscribe" descr="techn. Email" />
+ <alias name="datenschutz" descr="Datenschutz" />
+ <alias name="noreply" descr="techn. Email" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="einkauf" name="laktatnebel" tld="de" />
+ <purpose>Einkauf</purpose>
+ <mailbox_password>TxfG_p4Ky=h6bruH</mailbox_password>
+ <aliasses>
+ <alias name="hardware" descr="hardware" />
+ <alias name="hosting" descr="hosting" />
+ <alias name="strato" descr="Strato" />
+ <alias name="webtropia" descr=" Webtropia" />
+ <alias name="owayo" descr="Owayo" />
+ <alias name="saxoprint" descr="Saxoprint" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="kontakt" name="laktatnebel" tld="de" />
+ <purpose>Kontakt</purpose>
+ <mailbox_password>MubqcD=N=8CB2Pba</mailbox_password>
+ <aliasses>
+ <alias name="bugs" descr="Bugs" />
+ <alias name="google" descr="Google" />
+ <alias name="ig.socialmedia" descr="Instagram" />
+ <alias name="it" descr="IT" />
+ <alias name="paypal" descr="Paypal" />
+ <alias name="teamviewer" descr=" Teamviewer" />
+ <alias name="zoom" descr="Zoom" />
+ <alias name="support" descr="Support" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="privat" name="lasse-gehrmann" tld="de" />
+ <purpose>privat</purpose>
+ <mailbox_password>LasSE_09=nF</mailbox_password>
+ <aliasses>
+ <alias name="briefkasten" descr="privat" />
+ <alias name="e-mail" descr="privat" />
+ <alias name="email" descr="privat" />
+ <alias name="frederik" descr="privat" />
+ <alias name="l.g" descr="privat" />
+ <alias name="l.gehrmann" descr="privat" />
+ <alias name="lasse" descr="privat" />
+ <alias name="lasse.gehrmann" descr="privat" />
+ <alias name="lasse.nils.frederik" descr="privat" />
+ <alias name="lasse.nils.frederik.gehrmann" descr="privat" />
+ <alias name="lg" descr="privat" />
+ <alias name="lnf" descr="privat" />
+ <alias name="lnf.gehrmann" descr="privat" />
+ <alias name="lnfg" descr="privat" />
+ <alias name="mail" descr="privat" />
+ <alias name="nils" descr="privat" />
+ <alias name="post" descr="privat" />
+ </aliasses>
+ </mailbox>
+
+
+ <mailbox>
+ <mailbox_id alias="privat" name="matthies-gehrmann"
+ tld="de" />
+ <purpose>privat</purpose>
+ <mailbox_password>MaTthiES_11=fE</mailbox_password>
+ <aliasses>
+ <alias name="briefkasten" descr="privat" />
+ <alias name="e-mail" descr="privat" />
+ <alias name="email" descr="privat" />
+ <alias name="erik" descr="privat" />
+ <alias name="finn" descr="privat" />
+ <alias name="m.g" descr="privat" />
+ <alias name="m.gehrmann" descr="privat" />
+ <alias name="mail" descr="privat" />
+ <alias name="matthies" descr="privat" />
+ <alias name="matthies.finn.erik" descr="privat" />
+ <alias name="matthies.finn.erik.gehrmann" descr="privat" />
+ <alias name="matthies.gehrmann" descr="privat" />
+ <alias name="mfe" descr="privat" />
+ <alias name="mfe.gehrmann" descr="privat" />
+ <alias name="mfeg" descr="privat" />
+ <alias name="mg" descr="privat" />
+ <alias name="post" descr="privat" />
+ <alias name="pro2000" descr="privat" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="kontakt" name="triathlon-coaching"
+ tld="com" />
+ <purpose>Kontakt</purpose>
+ <mailbox_password>sH+z9XaY7?Jx9Nzr</mailbox_password>
+ <aliasses>
+ <alias name="ig.socialmedia" descr="Instagram" />
+ <alias name="camp" descr="Camps" />
+ <alias name="paypal" descr="Paypal" />
+ <alias name="bike24" descr="Bike24" />
+ <alias name="einkauf" descr="Einkauf" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="sport" name="triathlon-coaching"
+ tld="com" />
+ <purpose>Sport</purpose>
+ <mailbox_password>§c-fCJce2!6B7eTJ</mailbox_password>
+ <aliasses>
+ <alias name="sports" descr="Sport" />
+ <alias name="swimbikerun" descr="swimbikerun" />
+ <alias name="coaching" descr="Coaching" />
+ <alias name="kurs" descr="Kurse" />
+ <alias name="laufseminar" descr="Laufseminar" />
+ <alias name="schwimmseminar" descr="Schwimmseminar" />
+ <alias name="trainingpeaks" descr="Trainingpeaks" />
+ <alias name="mats" descr="MATS" />
+ <alias name="triathlon" descr="Triathlon" />
+ <alias name="training" descr="Training" />
+ <alias name="running" descr="Running" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="kontakt" name="wechselzonenluder"
+ tld="de" />
+ <purpose>Kontakt</purpose>
+ <mailbox_password>4ZeHM8fqHxG-v</mailbox_password>
+ <aliasses>
+ <alias name="einkauf" descr="Einkauf" />
+ <alias name="fb.socialmedia" descr="Facebook" />
+ <alias name="google" descr="Google" />
+ <alias name="ig.socialmedia" descr="Instagram" />
+ <alias name="merchandise" descr="Merchandise" />
+ <alias name="spreadshirt" descr="Spreadshirt" />
+ <alias name="socialmedia" descr="Socialmedia" />
+ <alias name="support" descr="Support" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="finanzen" name="ole-b-rosentreter"
+ tld="de" />
+ <purpose>Finanzen</purpose>
+ <mailbox_password>dbMWBuXKZ6R+#W7B</mailbox_password>
+ <aliasses>
+ <alias name="bank" descr="Bank" />
+ <alias name="banking" descr="Bank" />
+ <alias name="cash" descr="Bank" />
+ <alias name="comdirect" descr="comdirect" />
+ <alias name="nuernberger.versicherung"
+ descr="Nürnberger Versicherung" />
+ <alias name="insurance" descr="Versicherung" />
+ <alias name="n26" descr="N26" />
+ <alias name="paypal" descr="Paypal" />
+ <alias name="pkv" descr="private KV" />
+ <alias name="steuern" descr="Steuern" />
+ <alias name="versicherung" descr="Versicherungen" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="freizeit" name="ole-b-rosentreter"
+ tld="de" />
+ <purpose>Freizeit</purpose>
+ <mailbox_password>D5p=kz=VehN25E6F</mailbox_password>
+ <aliasses>
+ <alias name="fb.socialmedia" descr="Facebook" />
+ <alias name="fun" descr="Fun" />
+ <alias name="games" descr="Spiele" />
+ <alias name="ig.socialmedia" descr="Instagram" />
+ <alias name="laut.fm" descr="Laut.FM" />
+ <alias name="newsletter" descr="Newsletter" />
+ <alias name="skype" descr="Skype" />
+ <alias name="tipprunden" descr="Tipprunden" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="job" name="ole-b-rosentreter" tld="de" />
+ <purpose>Job</purpose>
+ <mailbox_password>Q+q4CvC8+smT7DVu</mailbox_password>
+ <aliasses>
+ <alias name="indeed" descr="Indeed" />
+ <alias name="it" descr="IT" />
+ <alias name="jobs" descr="Jobs" />
+ <alias name="linkedin" descr="LinkedIN" />
+ <alias name="stepstone" descr="Stepstone" />
+ <alias name="udemy" descr="Udemy" />
+ <alias name="weiterbildung" descr="Weiterbildung" />
+ <alias name="xing" descr="Xing" />
+ <alias name="aos" descr="Academy of Sports" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="privat" name="ole-b-rosentreter"
+ tld="de" />
+ <purpose>privat</purpose>
+ <mailbox_password>JV2Z5+hwv6ntbxR?</mailbox_password>
+ <aliasses>
+ <alias name="arzt" descr="Arzt" />
+ <alias name="briefkasten" descr="privat" />
+ <alias name="email" descr="privat" />
+ <alias name="gesundheit" descr="Gesundheit" />
+ <alias name="mail" descr="privat" />
+ <alias name="med" descr="Medizinisches" />
+ <alias name="o.b.r" descr="privat" />
+ <alias name="o.b.rosentreter" descr="privat" />
+ <alias name="o.r" descr="privat" />
+ <alias name="o.rosentreter" descr="privat" />
+ <alias name="obr" descr="privat" />
+ <alias name="ole" descr="privat" />
+ <alias name="ole.b.rosentreter" descr="privat" />
+ <alias name="ole.rosentreter" descr="privat" />
+ <alias name="or" descr="privat" />
+ <alias name="post" descr="privat" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="sport" name="ole-b-rosentreter" tld="de" />
+ <purpose>Sport</purpose>
+ <mailbox_password>SnuRnt2RdA2+_eR%</mailbox_password>
+ <aliasses>
+ <alias name="16mmol" descr="16mmol" />
+ <alias name="competition" descr="competition" />
+ <alias name="eisenmann" descr="eisenmann" />
+ <alias name="fitx" descr="FitX" />
+ <alias name="garmin" descr="Garmin Connect" />
+ <alias name="ironman" descr="Ironman" />
+ <alias name="laktatnebel" descr="Laktatnebel" />
+ <alias name="running" descr="Running" />
+ <alias name="sports" descr="Sport" />
+ <alias name="swimbikerun" descr="swimbikerun" />
+ <alias name="training" descr="Training" />
+ <alias name="triathlon" descr="Triathlon" />
+ <alias name="trainingpeaks" descr="Trainingpeaks" />
+ <alias name="vo2max" descr="vo2max" />
+ <alias name="wahoo" descr="Wahoo" />
+ <alias name="wettkampf" descr="Wettkampf Anmeldungen" />
+ <alias name="zwift" descr="Zwift" />
+ </aliasses>
+ </mailbox>
+
+ <mailbox>
+ <mailbox_id alias="commerce" name="ole-b-rosentreter"
+ tld="de" />
+ <purpose>geschäftlich</purpose>
+ <mailbox_password>-Cd8U+BKJpp_8th6</mailbox_password>
+ <aliasses>
+ <alias name="airbnb" descr="Airbnb" />
+ <alias name="amazon" descr="Amazon" />
+ <alias name="auktionen" descr="Ebay" />
+ <alias name="bahn" descr="Deutsche Bahn" />
+ <alias name="bird" descr="Bird Scooter" />
+ <alias name="bolt" descr="Bolt Scooter" />
+ <alias name="booking.com" descr="booking.com" />
+ <alias name="dropbox" descr="Dropbox" />
+ <alias name="gyg" descr="Get Yor Guide" />
+ <alias name="holiday" descr="Holiday" />
+ <alias name="hotel" descr="Hotel" />
+ <alias name="hrs" descr="HRS" />
+ <alias name="kfz" descr="Auto" />
+ <alias name="kleinanzeigen" descr="Kleinanzeigen" />
+ <alias name="lime" descr="Lime Scooter" />
+ <alias name="metro" descr="Metro" />
+ <alias name="packstation" descr="Packstation" />
+ <alias name="phone" descr="Telefon" />
+ <alias name="press" descr="Zeitungen" />
+ <alias name="shopping" descr="shopping" />
+ <alias name="tchibo" descr="Tchibo" />
+ <alias name="terrashop" descr="Terrashop" />
+ <alias name="tickets" descr="Tickets" />
+ <alias name="tier" descr="Tier Scooter" />
+ <alias name="uber" descr="Uber" />
+ <alias name="urlaub" descr="Urlaub" />
+ <alias name="verkaufen" descr="verkaufen" />
+ <alias name="verkaufen.2022.ebay" descr="Ebay" />
+ <alias name="vgn" descr="VGN" />
+ <alias name="voi" descr="VOI Scooter" />
+ <alias name="whg" descr="Wohnung" />
+ <alias name="zoom" descr="Zoom" />
+ <alias name="deutsche.post" descr="Deutsche Post" />
+ </aliasses>
+ </mailbox>
+
+
+</mailboxes>
+</root>
\ No newline at end of file
--- /dev/null
+# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
+# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
+
+if [ "`id -u`" -eq 0 ]; then
+ PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
+else
+ PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
+fi
+export PATH
+
+if [ "${PS1-}" ]; then
+ if [ "${BASH-}" ] && [ "$BASH" != "/bin/sh" ]; then
+ # The file bash.bashrc already sets the default PS1.
+ # PS1='\h:\w\$ '
+ if [ -f /etc/bash.bashrc ]; then
+ . /etc/bash.bashrc
+ fi
+ else
+ if [ "`id -u`" -eq 0 ]; then
+ PS1='# '
+ else
+ PS1='$ '
+ fi
+ fi
+fi
+
+if [ -d /etc/profile.d ]; then
+ for i in /etc/profile.d/*.sh; do
+ if [ -r $i ]; then
+ . $i
+ fi
+ done
+ unset i
+fi
+export LANG="de_DE.utf8"
+export LANGUAGE="de_DE.utf8"
+export LC_ALL="de_DE.utf8"
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+<users>
+ <user>
+ <user_name>admin</user_name>
+ <pass_web>Lnf_Mfe@0724</pass_web>
+ <full_name>Administrator</full_name>
+ <email>admin@laktatnebel.de</email>
+ </user>
+ <user>
+ <user_name>oleb</user_name>
+ <pass_web>859im</pass_web>
+ <full_name>Ole Benjamin Rosentreter</full_name>
+ <email>hosting@laktatnebel.de</email>
+ </user>
+ <user>
+ <user_name>ina</user_name>
+ <pass_web>lieblingsSCHWESTER_76</pass_web>
+ <full_name>Ina Rosentreter</full_name>
+ <email>ina@ina-rosentreter.de</email>
+ </user>
+ <user>
+ <user_name>lasse</user_name>
+ <pass_web>Lnf@24_Nbg</pass_web>
+ <full_name>Lasse Gehrmann</full_name>
+ <email>webmaster@laktatnebel.de</email>
+ </user>
+ <user>
+ <user_name>matthies</user_name>
+ <pass_web>Mfe@07_Erl</pass_web>
+ <full_name>Matthies Gehrmann</full_name>
+ <email>webmaster@laktatnebel.de</email>
+ </user>
+ <user>
+ <user_name>anita</user_name>
+ <pass_web>Haeuschen_181217</pass_web>
+ <full_name>Anita Meyer</full_name>
+ <email>anita@anita-meyer.com</email>
+ </user>
+</users>
+</root>
\ No newline at end of file
--- /dev/null
+# ~/.bashrc: executed by bash(1) for non-login shells.
+# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
+# for examples
+
+# Source global definitions
+if [ -f /etc/bash.bashrc ]; then
+ . /etc/bash.bashrc
+fi
+
+# If not running interactively, don't do anything
+case $- in
+ *i*) ;;
+ *) return;;
+esac
+
+# don't put duplicate lines or lines starting with space in the history.
+# See bash(1) for more options
+HISTCONTROL=ignoreboth
+
+# append to the history file, don't overwrite it
+shopt -s histappend
+
+# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
+HISTSIZE=10000
+HISTFILESIZE=20000
+
+# check the window size after each command and, if necessary,
+# update the values of LINES and COLUMNS.
+shopt -s checkwinsize
+
+# If set, the pattern "**" used in a pathname expansion context will
+# match all files and zero or more directories and subdirectories.
+#shopt -s globstar
+
+# make less more friendly for non-text input files, see lesspipe(1)
+[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
+
+# set variable identifying the chroot you work in (used in the prompt below)
+if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
+ debian_chroot=$(cat /etc/debian_chroot)
+fi
+
+# Add an "alert" alias for long running commands. Use like so:
+# sleep 10; alert
+alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
+
+# set a fancy prompt (non-color, unless we know we "want" color)
+case "$TERM" in
+ xterm-color|*-256color) color_prompt=yes;;
+esac
+
+# uncomment for a colored prompt, if the terminal has the capability; turned
+# off by default to not distract the user: the focus in a terminal window
+# should be on the output of commands, not on the prompt
+#force_color_prompt=yes
+
+if [ -n "$force_color_prompt" ]; then
+ if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
+ # We have color support; assume it's compliant with Ecma-48
+ # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
+ # a case would tend to support setf rather than setaf.)
+ color_prompt=yes
+ else
+ color_prompt=
+ fi
+fi
+
+if [ "$color_prompt" = yes ]; then
+ PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
+else
+ PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
+fi
+unset color_prompt force_color_prompt
+
+# If this is an xterm set the title to user@host:dir
+case "$TERM" in
+xterm*|rxvt*)
+ PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
+ ;;
+*)
+ ;;
+esac
+
+# enable color support of ls and also add handy aliases
+if [ -x /usr/bin/dircolors ]; then
+ test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
+ alias ls='ls --color=auto'
+ #alias dir='dir --color=auto'
+ #alias vdir='vdir --color=auto'
+
+ #alias grep='grep --color=auto'
+ #alias fgrep='fgrep --color=auto'
+ #alias egrep='egrep --color=auto'
+fi
+
+# colored GCC warnings and errors
+#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
+
+# Alias definitions.
+# You may want to put all your additions into a separate file like
+# ~/.bash_aliases, instead of adding them here directly.
+# See /usr/share/doc/bash-doc/examples in the bash-doc package.
+
+if [ -f ~/.bash_aliases ]; then
+ . ~/.bash_aliases
+fi
+
+# enable programmable completion features (you don't need to enable
+# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
+# sources /etc/bash.bashrc).
+#if [ -f /etc/bash_completion ]; then
+# . /etc/bash_completion
+#fi
+
+
+export LS_OPTIONS='--color=auto'
+eval "`dircolors`"
+alias ls='ls $LS_OPTIONS'
+alias la='ls $LS_OPTIONS -la'
+alias ll='ls $LS_OPTIONS -l'
+
+alias grep='grep $LS_OPTIONS'
+
+# enable programmable completion features (you don't need to enable
+# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
+# sources /etc/bash.bashrc).
+if ! shopt -oq posix; then
+ if [ -f /usr/share/bash-completion/bash_completion ]; then
+ . /usr/share/bash-completion/bash_completion
+ elif [ -f /etc/bash_completion ]; then
+ . /etc/bash_completion
+ fi
+fi
--- /dev/null
+# ~/.profile: executed by the command interpreter for login shells.
+# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
+# exists.
+# see /usr/share/doc/bash/examples/startup-files for examples.
+# the files are located in the bash-doc package.
+
+# the default umask is set in /etc/profile; for setting the umask
+# for ssh logins, install and configure the libpam-umask package.
+#umask 022
+
+# if running bash
+if [ -n "$BASH_VERSION" ]; then
+ # include .bashrc if it exists
+ if [ -f "$HOME/.bashrc" ]; then
+ . "$HOME/.bashrc"
+ fi
+fi
+
+# set PATH so it includes user's private bin if it exists
+if [ -d "$HOME/bin" ] ; then
+ PATH="$HOME/bin:$PATH"
+fi
+
+export LANG="de_DE.utf8"
+
--- /dev/null
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCFTIRs14XVVR3SVlw9QqNhqwKmKrVL5qiERoNfZyCBzwzYq1Jk7kNbN35dVfz7sTXk8r7vCTEwwNIVBqqX8iZhAK/xigiwzgdXf6JM/VrY7rLl4PJnY0mUuePohUcTBNqpZn0QTByvo+y35h1yPTD+g8T2kH5Hcuc2Ofg0stpbM13miyUPIO9T7l76/66KdNvMA5652TVYWlkFFejE8PUbocyvZHrZXVaKUTo1asKRcKEp/4JxeIMQBkuHENZnaHHzzYZ3jTC3RL//Rm5U6nBOYzv+xCC0hRbFtzP6mP1/QqqX+rJkLel+zcabx4OUyAE6sSwVBl1bRPJjWRnOzIV2AE7QvCemkM5eJIo/XD8EZxM6vwU6UycLTyLV/H3rP7NQMo/waBK9THVFXEzYZnoUsYQFk22viKzMxd/mcFkn3JY+0vy3l6ZSvZUIQ/VXr2ovxtebeX2Vyy7nFbJm9u35aqEGQ8FkBzQzjqkHvV44kfTykj09oTAF81kL2qvUXc= oleb@poseidon
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDtbM0S9xUKRlFFS3ZTMoZhKMwmGRVFdX1kdbRtZUw2lulxjQxbvqo3fJ9xk2ojhV4jy+qnhLqWCFxRvwX89xSj3hvIs8UO/aoIcPcf6jMV7GO8NBdhR4A0yuQH4ySPzC3XCbq/TX2IYX1rp7FpAceAtK3Ht6j2wGy8la98DJoVYuIINgyOBO/lmXYzck3+PSun4ENT5JA2OTLx/VAq3hJL7S4B/t+SHFW85KrziX81lKiPZ0MMOUkkqG7mVLqprLNLabKRmdYYzbGjk3el+H4ZHAAqnqDrTeEgxOZM4ebPAEgNxFfRgbnldlOAZ4GBe+BHYecHH4yXNJWIaydvAA7 oleb@h2410715.stratoserver.net
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDCbPQ/ZgqZdSi/0P/hKodUgJuVootKIlTtoMbc9Ru7RIaA3imyKvj4B7OkINz9CiC7irFtYfSjKMDVdOkhw96ZG97F5gKXQwxAxzQ4yrTjQkknxG8vM4PJvEzAreC1GOIrIw1n/XAA9UowQpC0fzpzXgOL5BOB81td61FvKyKm42c6A88zOyZ5eDCno+VF77LHuGtb2GN9exwKG5v88wvIrPH+iVDj70XkIo3sEd0R4Gjju6ClweXTDmzjULDL4pcdFnaDEc0wrgtJeKC8ZRnyyjpKii6ZQa9TQ+zlI++ERGFg2vmS6XGcL6sqm4eojDFanR5TU7JaTVJHHaMGMZM7 root@h2410715.stratoserver.net
--- /dev/null
+# ~/.bashrc: executed by bash(1) for non-login shells.
+# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
+# for examples
+
+# Source global definitions
+if [ -f /etc/bash.bashrc ]; then
+ . /etc/bash.bashrc
+fi
+
+# If not running interactively, don't do anything
+case $- in
+ *i*) ;;
+ *) return;;
+esac
+
+# don't put duplicate lines or lines starting with space in the history.
+# See bash(1) for more options
+HISTCONTROL=ignoreboth
+
+# append to the history file, don't overwrite it
+shopt -s histappend
+
+# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
+HISTSIZE=10000
+HISTFILESIZE=20000
+
+# check the window size after each command and, if necessary,
+# update the values of LINES and COLUMNS.
+shopt -s checkwinsize
+
+# If set, the pattern "**" used in a pathname expansion context will
+# match all files and zero or more directories and subdirectories.
+#shopt -s globstar
+
+# make less more friendly for non-text input files, see lesspipe(1)
+[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
+
+# set variable identifying the chroot you work in (used in the prompt below)
+if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
+ debian_chroot=$(cat /etc/debian_chroot)
+fi
+
+# Add an "alert" alias for long running commands. Use like so:
+# sleep 10; alert
+alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
+
+# set a fancy prompt (non-color, unless we know we "want" color)
+case "$TERM" in
+ xterm-color|*-256color) color_prompt=yes;;
+esac
+
+# uncomment for a colored prompt, if the terminal has the capability; turned
+# off by default to not distract the user: the focus in a terminal window
+# should be on the output of commands, not on the prompt
+#force_color_prompt=yes
+
+if [ -n "$force_color_prompt" ]; then
+ if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
+ # We have color support; assume it's compliant with Ecma-48
+ # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
+ # a case would tend to support setf rather than setaf.)
+ color_prompt=yes
+ else
+ color_prompt=
+ fi
+fi
+
+if [ "$color_prompt" = yes ]; then
+ PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
+else
+ PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
+fi
+unset color_prompt force_color_prompt
+
+# If this is an xterm set the title to user@host:dir
+case "$TERM" in
+xterm*|rxvt*)
+ PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
+ ;;
+*)
+ ;;
+esac
+
+# enable color support of ls and also add handy aliases
+if [ -x /usr/bin/dircolors ]; then
+ test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
+ alias ls='ls --color=auto'
+ #alias dir='dir --color=auto'
+ #alias vdir='vdir --color=auto'
+
+ #alias grep='grep --color=auto'
+ #alias fgrep='fgrep --color=auto'
+ #alias egrep='egrep --color=auto'
+fi
+
+# colored GCC warnings and errors
+#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
+
+# Alias definitions.
+# You may want to put all your additions into a separate file like
+# ~/.bash_aliases, instead of adding them here directly.
+# See /usr/share/doc/bash-doc/examples in the bash-doc package.
+
+if [ -f ~/.bash_aliases ]; then
+ . ~/.bash_aliases
+fi
+
+# enable programmable completion features (you don't need to enable
+# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
+# sources /etc/bash.bashrc).
+#if [ -f /etc/bash_completion ]; then
+# . /etc/bash_completion
+#fi
+
+
+export LS_OPTIONS='--color=auto'
+eval "`dircolors`"
+alias ls='ls $LS_OPTIONS'
+alias la='ls $LS_OPTIONS -la'
+alias ll='ls $LS_OPTIONS -l'
+
+alias grep='grep $LS_OPTIONS'
+
+# enable programmable completion features (you don't need to enable
+# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
+# sources /etc/bash.bashrc).
+if ! shopt -oq posix; then
+ if [ -f /usr/share/bash-completion/bash_completion ]; then
+ . /usr/share/bash-completion/bash_completion
+ elif [ -f /etc/bash_completion ]; then
+ . /etc/bash_completion
+ fi
+fi
--- /dev/null
+# ~/.profile: executed by the command interpreter for login shells.
+# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
+# exists.
+# see /usr/share/doc/bash/examples/startup-files for examples.
+# the files are located in the bash-doc package.
+
+# the default umask is set in /etc/profile; for setting the umask
+# for ssh logins, install and configure the libpam-umask package.
+#umask 022
+
+# if running bash
+if [ -n "$BASH_VERSION" ]; then
+ # include .bashrc if it exists
+ if [ -f "$HOME/.bashrc" ]; then
+ . "$HOME/.bashrc"
+ fi
+fi
+
+# set PATH so it includes user's private bin if it exists
+if [ -d "$HOME/bin" ] ; then
+ PATH="$HOME/bin:$PATH"
+fi
+
+export LANG="de_DE.utf8"
+
--- /dev/null
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCFTIRs14XVVR3SVlw9QqNhqwKmKrVL5qiERoNfZyCBzwzYq1Jk7kNbN35dVfz7sTXk8r7vCTEwwNIVBqqX8iZhAK/xigiwzgdXf6JM/VrY7rLl4PJnY0mUuePohUcTBNqpZn0QTByvo+y35h1yPTD+g8T2kH5Hcuc2Ofg0stpbM13miyUPIO9T7l76/66KdNvMA5652TVYWlkFFejE8PUbocyvZHrZXVaKUTo1asKRcKEp/4JxeIMQBkuHENZnaHHzzYZ3jTC3RL//Rm5U6nBOYzv+xCC0hRbFtzP6mP1/QqqX+rJkLel+zcabx4OUyAE6sSwVBl1bRPJjWRnOzIV2AE7QvCemkM5eJIo/XD8EZxM6vwU6UycLTyLV/H3rP7NQMo/waBK9THVFXEzYZnoUsYQFk22viKzMxd/mcFkn3JY+0vy3l6ZSvZUIQ/VXr2ovxtebeX2Vyy7nFbJm9u35aqEGQ8FkBzQzjqkHvV44kfTykj09oTAF81kL2qvUXc= oleb@poseidon
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLklgRMuKFTXaTIIVzwlDuK569VeeCJvo5l5fwHt7hOrHs49NBoC6T2kdRebLd58kAEOgB0P1sGE4tjFpCtAMbrhNKRyi3gPmi8LIMkWK6hYu4+QWW/rtmjnERlmTylUzBjjHHB8lWhyq4GRGa1LaiBLtcLC0sKJxCM/hyj28t+ebCl5KoGKQHgJImLz7qcM2TFqYhI/NVi8YZTfYuRhL93J2FyKmaPyDSeQ/rAIbHbQjDNw/nrNOs8xRmluSCuNMO8s6c/LKuSk0OvJjt37oSrDq0Ku2HG2XXETcb5rnA+UgYYSc8S00J0HeDKDxquYk1FaiM0Pe68VgFXxwP/Ys/ lasse@h2410715.stratoserver.net
--- /dev/null
+-----BEGIN RSA PRIVATE KEY-----
+MIIEowIBAAKCAQEAy5JYETLihU12kyCFc8JQ7iuevVXngib6OZeX8B7e4Tqx7OPT
+QaAuk9pHUXmy3efJABDoAdD9bBhOLYxaQrQDG64TSkcot4D5ovCyDJFiuoWLuPkF
+lv67Zo5xEZZk8pVMwY4xxwfJVocquBkRmtS2ogS7XCwtLCicQjP4co9vLfnmwpeS
+qBikB4CSJi8+6nDNkxamISPzVYvGGU32LkYS/dydhcipmj8g0nkP6wCGx20IwzcP
+56zTrPMUZpbkgrjTDvLOnPyyrkpNDryY7d+6Eqw6tCrthxtl1xE3G+a5wPlIGGEn
+PEtNCdB3gyg8armJNRWojND3uvFYBV8cD/2LPwIDAQABAoIBAQCOEMs09XXv4Wdm
+tcNsTad9DyPwrgqqYdkuaAS4plKUjAmvcC72FXtr42DyEyQoiKFVUncXDWpODYhB
+cTlsY4PnxUvhAlf/+Bo/BAq9ipiD4r7nj6G/BnZx0+ZEh9hbEqZGTZ2fcGep4xqE
+77nBe8EYwISghpPfxVeHPA2epUrJoeXA3BFenYxY51d0t3qpb5HrrauQgDWdkbrG
+TD7zUutdUIwB16IoHBXyrlEbQXeyTZSazWwqJ9q/+FlBr+beV+cz7ttKPK8NXUOw
+cbmfiUmWs19l4JBddh8uuAFOlO7C0JjXbDATvxQOicVAZf2zfDJKdYdjuOdizWoM
+dhSf0oqBAoGBAPB9mVVHQJHi0MTFuhuQMRyw2xHiezfVHBcBqYoydf3cLKjpKn4v
+7sj7ZZNUJoyM6SRnlQVnZB4MNDzyRbflyztQ9ZJJKw5zJVvuNTt9SMUkPWZcnPnn
+Pp2W+TE5fGFcIh0x1XgdNOW2Jtlp6n6NgIu47yCgg4t4iS0nIwUqh8cZAoGBANiz
+Omju1+uCB5yAH0GHPSogV9a05guIomqUq4Mi+9a1b2wF9joaqY2gVSfnZN1TP5DX
+7WjOtr+GZfLv5l+3IWpcHR9Zdg/Spr/iHydAH2+gCtllH2ceryvmlfDNMzzPxpQ4
+VAbjW3+QwL85BBPJSRQEJP+FIW7KgeNYkcozvOgXAoGAUNu5+U1KrYJYdUCR8YCK
+sr3X+mxux3f0yNt7OIb82wzzSxuSePj+zT6RiXaqu2kJXn8hQL7hj6TEz5UZ0doG
+efwfhT7qpiIa9oziAw19sSMdLdSHxxJ0ICJJyL4uTsHeinhd8NPJHE8hQsp02HYV
+OWVFqW+uqu8tGCxnfu4s1skCgYAduO+RBvmMrugWWihvV3pXNdp2c5d+C36jecLQ
+mNLMD1S6D1NHgvKwn0Yu0/kstkdouYUxs/Cy8l83ZBpIFJk7umiwLRgZcX43oW8+
+dfgZ2mzChrE49qd2MQlt3udhNup42AUGcNbS92rIj6x0fk5MtYjRl1QPmy0XnsVY
+Y6JMfwKBgG/FulgsnG2HfG1FgcTWokevfSrSNZKeobqgM8xPlQhaYXA8XcrygNUM
+QSqELAlJUDPVpdfdDSBgW6l4UZRnQmfw7SCmVyf5bALwK8nXRHlrprzQ+1YeOwMz
+mTIxW07Jgq5RxHSSe8C3wzUz0HcQQh+WVPlie8BHj4z/VpHID5lU
+-----END RSA PRIVATE KEY-----
--- /dev/null
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDLklgRMuKFTXaTIIVzwlDuK569VeeCJvo5l5fwHt7hOrHs49NBoC6T2kdRebLd58kAEOgB0P1sGE4tjFpCtAMbrhNKRyi3gPmi8LIMkWK6hYu4+QWW/rtmjnERlmTylUzBjjHHB8lWhyq4GRGa1LaiBLtcLC0sKJxCM/hyj28t+ebCl5KoGKQHgJImLz7qcM2TFqYhI/NVi8YZTfYuRhL93J2FyKmaPyDSeQ/rAIbHbQjDNw/nrNOs8xRmluSCuNMO8s6c/LKuSk0OvJjt37oSrDq0Ku2HG2XXETcb5rnA+UgYYSc8S00J0HeDKDxquYk1FaiM0Pe68VgFXxwP/Ys/ lasse@h2410715.stratoserver.net
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <title>moin servus moin</title>
+</head>
+<body>
+<h1>Roblox</h1>
+
+
+
+
+
+
+<h2>All Star Tower Defense</h2>
+
+<img src="Airren.png" height="687" width="1280" alt="Airren" />
+<p> Meinen Zweiter "Mega-Rarer!!" den ich Gesummt habe. Mein erster "Mega-Rare" ist "Wish". Er ist echt OP aber das er nur alle 120sec angreift ist blöd aber die Titanen haben viel HP. Außerdem kann er Powerfulls angreifen ohne ein Upgrade zu haben, das ist echt cool.</p>
+
+<h2> Boku No Roblox Remasttered </h2>
+
+
+
+<p> Es ist ein spiel was von My Hero Academia handelt. <br /> Ich habe Overhoul vom Schaden her ist dieses Guirk das Beste von den Guirks das man durch Spinen bekommen kann. <br /><video src="BokuNoRoblox.mp4" controls>
+<h2>Anime Mania</h2>
\ No newline at end of file
--- /dev/null
+# ~/.bashrc: executed by bash(1) for non-login shells.
+# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
+# for examples
+
+# Source global definitions
+if [ -f /etc/bash.bashrc ]; then
+ . /etc/bash.bashrc
+fi
+
+# If not running interactively, don't do anything
+case $- in
+ *i*) ;;
+ *) return;;
+esac
+
+# don't put duplicate lines or lines starting with space in the history.
+# See bash(1) for more options
+HISTCONTROL=ignoreboth
+
+# append to the history file, don't overwrite it
+shopt -s histappend
+
+# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
+HISTSIZE=10000
+HISTFILESIZE=20000
+
+# check the window size after each command and, if necessary,
+# update the values of LINES and COLUMNS.
+shopt -s checkwinsize
+
+# If set, the pattern "**" used in a pathname expansion context will
+# match all files and zero or more directories and subdirectories.
+#shopt -s globstar
+
+# make less more friendly for non-text input files, see lesspipe(1)
+[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
+
+# set variable identifying the chroot you work in (used in the prompt below)
+if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
+ debian_chroot=$(cat /etc/debian_chroot)
+fi
+
+# Add an "alert" alias for long running commands. Use like so:
+# sleep 10; alert
+alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
+
+# set a fancy prompt (non-color, unless we know we "want" color)
+case "$TERM" in
+ xterm-color|*-256color) color_prompt=yes;;
+esac
+
+# uncomment for a colored prompt, if the terminal has the capability; turned
+# off by default to not distract the user: the focus in a terminal window
+# should be on the output of commands, not on the prompt
+#force_color_prompt=yes
+
+if [ -n "$force_color_prompt" ]; then
+ if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
+ # We have color support; assume it's compliant with Ecma-48
+ # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
+ # a case would tend to support setf rather than setaf.)
+ color_prompt=yes
+ else
+ color_prompt=
+ fi
+fi
+
+if [ "$color_prompt" = yes ]; then
+ PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
+else
+ PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
+fi
+unset color_prompt force_color_prompt
+
+# If this is an xterm set the title to user@host:dir
+case "$TERM" in
+xterm*|rxvt*)
+ PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
+ ;;
+*)
+ ;;
+esac
+
+# enable color support of ls and also add handy aliases
+if [ -x /usr/bin/dircolors ]; then
+ test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
+ alias ls='ls --color=auto'
+ #alias dir='dir --color=auto'
+ #alias vdir='vdir --color=auto'
+
+ #alias grep='grep --color=auto'
+ #alias fgrep='fgrep --color=auto'
+ #alias egrep='egrep --color=auto'
+fi
+
+# colored GCC warnings and errors
+#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
+
+# Alias definitions.
+# You may want to put all your additions into a separate file like
+# ~/.bash_aliases, instead of adding them here directly.
+# See /usr/share/doc/bash-doc/examples in the bash-doc package.
+
+if [ -f ~/.bash_aliases ]; then
+ . ~/.bash_aliases
+fi
+
+# enable programmable completion features (you don't need to enable
+# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
+# sources /etc/bash.bashrc).
+#if [ -f /etc/bash_completion ]; then
+# . /etc/bash_completion
+#fi
+
+
+export LS_OPTIONS='--color=auto'
+eval "`dircolors`"
+alias ls='ls $LS_OPTIONS'
+alias la='ls $LS_OPTIONS -la'
+alias ll='ls $LS_OPTIONS -l'
+
+alias grep='grep $LS_OPTIONS'
+
+# enable programmable completion features (you don't need to enable
+# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
+# sources /etc/bash.bashrc).
+if ! shopt -oq posix; then
+ if [ -f /usr/share/bash-completion/bash_completion ]; then
+ . /usr/share/bash-completion/bash_completion
+ elif [ -f /etc/bash_completion ]; then
+ . /etc/bash_completion
+ fi
+fi
--- /dev/null
+# ~/.profile: executed by the command interpreter for login shells.
+# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
+# exists.
+# see /usr/share/doc/bash/examples/startup-files for examples.
+# the files are located in the bash-doc package.
+
+# the default umask is set in /etc/profile; for setting the umask
+# for ssh logins, install and configure the libpam-umask package.
+#umask 022
+
+# if running bash
+if [ -n "$BASH_VERSION" ]; then
+ # include .bashrc if it exists
+ if [ -f "$HOME/.bashrc" ]; then
+ . "$HOME/.bashrc"
+ fi
+fi
+
+# set PATH so it includes user's private bin if it exists
+if [ -d "$HOME/bin" ] ; then
+ PATH="$HOME/bin:$PATH"
+fi
+
+export LANG="de_DE.utf8"
+
--- /dev/null
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCFTIRs14XVVR3SVlw9QqNhqwKmKrVL5qiERoNfZyCBzwzYq1Jk7kNbN35dVfz7sTXk8r7vCTEwwNIVBqqX8iZhAK/xigiwzgdXf6JM/VrY7rLl4PJnY0mUuePohUcTBNqpZn0QTByvo+y35h1yPTD+g8T2kH5Hcuc2Ofg0stpbM13miyUPIO9T7l76/66KdNvMA5652TVYWlkFFejE8PUbocyvZHrZXVaKUTo1asKRcKEp/4JxeIMQBkuHENZnaHHzzYZ3jTC3RL//Rm5U6nBOYzv+xCC0hRbFtzP6mP1/QqqX+rJkLel+zcabx4OUyAE6sSwVBl1bRPJjWRnOzIV2AE7QvCemkM5eJIo/XD8EZxM6vwU6UycLTyLV/H3rP7NQMo/waBK9THVFXEzYZnoUsYQFk22viKzMxd/mcFkn3JY+0vy3l6ZSvZUIQ/VXr2ovxtebeX2Vyy7nFbJm9u35aqEGQ8FkBzQzjqkHvV44kfTykj09oTAF81kL2qvUXc= oleb@poseidon
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC2bRV5ZGcSEd7ghpgsxdbaywv3vmEaocCHZ2ErWwGl/iFPm5SsSmPXt8fmr/+8+vFnfB/5u3SI55bQM4wvd8RkXNedPya+OQhaBp2jKLgnkfiNOjiroyONmw/QwAOBGxIvYE/5s0aqhXtSJOEBl66Q3DArbEFcLjT1mt3q2vYUM6cVnuGfz6iUPnj4fZWoJ9KU357xHb9J8lVY9zM82dJJ9o5gUHIjjMTSOcnQlgp+HINiQ6Mb6JK0McThVCZlEbwpYfDma17Ts29AbvrO3ho9UW+ie+5HZL2KG2s3EfmGJM1W91VIHsvhqcVOecYeShH04H+HEYbJKsWH14EwduSnx8pqi6ATL8ZtYC4VndjsZQQ0IYkKaYTOAqtJZ2IfWst/VWytgwv4GwMuuH1AKORjFutUCzQsC9exThpE4cB609x2Pc5FoXVrCOgOVzH6AIzYxUTy6ZiJUO1c/vMDPwNllSwePTgLxMFx0ULQF2IEaiHYvFHqc/z+o8hsoLQVYos= matthies@jupiter
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdStYTg3wwWA0pMcvUhATD1C6b7BLCHHD74gQzqA70JR6kGujUbeKGmO3LR/VosdqsxJWNWm5mZZnIyoj8rlzlmjmn2aeUjiCgKJkNYF3Ng+hPvykYPeP17Cq15L+ZVDK41sYIWAsUUlQOCL14IaeracZqAkq9GPflnBP0QCqsQwMDE2xboreHNdD+H1DQIcKGfdj86P2S/9ztSpEbhLRLExcDFmxNRTHk+giAdlh5j7d/ylb9YQoAe3Ev2pI7H4o7VX4U0MQXz1pMAbtAlJBSihi7owL+xK5EtJ0gM7RTCNap64OgaRNRRc4/RyM5+yrEOz6yi7PwarxVd/depg0j matthies@h2410715.stratoserver.net
--- /dev/null
+<?xml version="1.0" encoding="UTF-8">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3c.org/1999/xhtml" lang="de">
+<head>
+
+<title> Coockie</title>
+</head>
+<body>
+<ul><li><a href="#reiseziele">Reiseziele</a></li></ul>
+<h1>Der beste Hund der Welt</h1>
+
+<p>Hallo die Tage die ich mit Coockie verbracht habe waren die besten. ich habe mit ihm sehr viel Quatsch gemacht. er ist mein bester Freund.
+<img src="suess.jpg" alt="coockie ist auf dem bild zu sehen" /> </p>
+
+<h1>Roblox</h1>
+<p>in einem Computerspiel namens roblox hat er mir mal das Leben gerettet , weil er auf meinen stärksten Angriff gekommen ist.</p>
+<video src="RobloX-IcH.mp4" controls> Das ist ei ultra krasses Game das heißt Boku No Roblox remastered schaut auch mal rein. LG Matthies </video>
+<h1>Coronakrise</h1>
+<p>Also ich habe viel Verständnis dafür das Politiker auch mal Mist bauen.</p>
+<p>Dieser Coronaaufstand ist die reinste Hölle. Ich will nicht sagen, dass das Coronavirus ungefährlich ist, aber die Politiker wollen nicht einsehen, dass sie uns in eine Pleitewelle stürzen.
+Sehr viele sind schon pleite gegangen z.B. die Schausteller.
+Angela Merkel grenzt alles ein obwohl, die Zahl der Coronainfizierten sinkt.</p>
+
+<h1>
+<a name="reiseziele" />Coole Reiseziele
+</h1>
+<h2>Serengeti Park</h2>
+<p>In dem Serengeti Park Hodenhagen sollte jeder mal gewesen sein, weil man da so gut wie alles machen kann. Zum Beispiel gibt es dort:
+<ul>
+<li>Eine Achterbahn</li>
+<li>Wildwasserbahn</li>
+<li>Tiere die frei herumlaufen</li>
+</ul></p>
+<a href="https://www.serengeti-park.de/" target="_blank">hier kommst du zur Homepage vom Serengeti Park.</a>
+<p>Geht doch auch mal hin, das macht tierisch Spaß!</p>
+<br />
+<h2>Trier die beste Stadt</h2>
+
+
+In Trier sollte jeder mal gewesn sein, weil es da die Törtchenmanufraktur gibt und die haben sehr gute Minitörtchen.
+<a href="http://www.dietoertchenmanufaktur.de/" target="_blank">Hier kommt ihr zur Websete von der Törtchenmanufraktur.</a>
+Die Törtchen haben da so gut geschmeckt ich hätte mir zehn davon reinziehen können.
+
+<br />
+<br /><br />
+<br />
+<br />
+<a href="impressum.html">Impressum</a>
+
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="UTF-8">
+<title>Insert title here</title>
+<style>
+canvas#leinwand {
+ border: solid 1px Llightgrey;
+ background-color: ivory;
+ display: block;
+}
+</style>
+<script type="text/javascript">
+</script>
+</head>
+<body>
+<script src="geometrie.js"></script>
+
+<form action="#">
+Höhe:<input type="text" name="hoehe" id="hoehe" />
+Breite:<input type="text" name="breite" id="breite" />
+Seite:<input type="text" name="seite" id="seite" /> (Sechseck)
+<br/>
+<input type="button" value="Rechteck zeichnen" name="zeichnen" onclick="draw('Rechteck')" />
+<input type="button" value="Rechteck berechnen" name="berechnen" onclick="calc('Rechteck')" />
+<br/>
+<input type="button" value="Dreieck zeichnen" name="zeichnen" onclick="draw('Dreieck')" />
+<input type="button" value="Dreieck berechnen" name="berechnen" onclick="calc('Dreieck')" />
+<br/>
+<input type="button" value="Sechseck zeichnen" name="zeichnen" onclick="draw('Sechseck')" />
+<input type="button" value="Sechseck berechnen" name="berechnen" onclick="calc('Sechseck')" />
+<br/>
+Umfang:<input type="text" id="umfang" name="umfang" />
+Flaeche:<input type="text" id="flaeche" name="flaeche" />
+</form>
+
+<canvas id="leinwand" width="1400" height="800"></canvas>
+
+
+
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+/**
+ *
+ */
+
+function draw(typ) {
+ alert("Ich zeichne ein " + typ + ".");
+ var leinwand = document.getElementById('leinwand').getContext('2d');
+
+ var start_x=10;
+ var start_y=10;
+
+ var breite=Number(document.getElementById('breite').value);
+ var hoehe=Number(document.getElementById('hoehe').value);
+ var seite=Number(document.getElementById('seite').value);
+
+ leinwand.beginPath();
+ leinwand.lineWidth = 1;
+
+ if (typ == "Dreieck") {
+ leinwand.moveTo(start_x, start_y);
+ leinwand.lineTo(start_x, start_y+hoehe);
+ leinwand.lineTo(start_x+breite, start_y);
+ leinwand.lineTo(start_x, start_y);
+ } else if (typ == "Sechseck") {
+ var delta=20+seite;
+
+ x1=delta;
+ x2=delta+seite/2;
+ x3=delta+seite*3/2;
+ x4=delta+seite*2;
+ y1=delta;
+ y2=delta+seite*Math.sqrt(3)/2;
+ y3=delta+seite*Math.sqrt(3);
+
+ leinwand.moveTo(x2, y1);
+ leinwand.lineTo(x3, y1);
+ leinwand.lineTo(x4, y2);
+ leinwand.lineTo(x3, y3);
+ leinwand.lineTo(x2, y3);
+ leinwand.lineTo(x1, y2);
+ leinwand.lineTo(x2, y1);
+ } else {
+ leinwand.rect(start_x, start_y, breite, hoehe);
+ }
+
+ leinwand.stroke();
+
+}
+
+function calc(typ) {
+ alert("Ich berechne ein " + typ + ".");
+
+ var breite=Number(document.getElementById('breite').value);
+ var hoehe=Number(document.getElementById('hoehe').value);
+ var seite=Number(document.getElementById('seite').value);
+
+ if (typ == "Dreieck") {
+ var umfang = hoehe + breite + Math.sqrt(hoehe*hoehe + breite*breite);
+ var flaeche=(hoehe * breite)/2;
+ } else if (typ == "Sechseck") {
+ var umfang = seite * 6;
+ var flaeche = Math.pow(seite, 2) * Math.sqrt(3) * 3 / 2;
+ } else {
+ var umfang=2 * (hoehe + breite);
+ var flaeche=(hoehe * breite);
+
+ }
+
+ document.getElementById('umfang').value = umfang;
+ document.getElementById('flaeche').value = flaeche;
+
+}
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <title>Impressum</title>
+</head>
+<body>
+<h1>Angaben gemäß §5 TMG:</h1>
+<p>Matthies Gehrmann<br />
+Marienweg 37<br />
+57234 Wilnsdorf<br />
+webmaster@matthies-gehrmann.de</p>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<?php
+
+require ("db/database_functions_pgsql.php");
+require ("db/database_functions_insert.php");
+require ("db/database_functions_select.php");
+require ("db/database_functions_update.php");
+require ("db/database_functions_delete.php");
+
+?>
\ No newline at end of file
--- /dev/null
+<?php
+
+
+function generateDeleteSchema($schema, $table, $col, $value) {
+ $delete_str = "DELETE FROM ".$schema.".".$table." WHERE (".$col."=".$value.");";
+ //echo debugPrint($delete_str);
+ return $delete_str;
+}
+
+function generateDelete($table, $col, $value) {
+ $delete_str = "DELETE FROM ".$table." WHERE (".$col."=".$value.");";
+ //echo debugPrint($delete_str);
+ return $delete_str;
+}
+
+?>
\ No newline at end of file
--- /dev/null
+<?php
+
+
+function generateInsertSchema($schema, $table, $values) {
+ $insert_str = "INSERT INTO ".$schema.".".$table." VALUES (";
+
+ //print_r($values);
+ $anzValues = count($values);
+ for ($i = 0 ; $i < $anzValues; $i++) {
+
+ $value = pg_escape_string($values[$i]);
+
+ if (is_numeric($value) || $value == "DEFAULT") {
+ $insert_str .= $value;
+ } else {
+ $insert_str .= "'".$value."'";
+ }
+
+ if ($i < $anzValues-1) {
+ $insert_str .= ", ";
+ }
+ }
+
+ $insert_str .= ");";
+ //echo $insert_str;
+ //echo debugPrint($insert_str);
+ return $insert_str;
+}
+
+function generateInsert($table, $values) {
+ $insert_str = "INSERT INTO ".SCHMEA.".".$table." VALUES (";
+
+ //print_r($values);
+ $anzValues = count($values);
+ for ($i = 0 ; $i < $anzValues; $i++) {
+
+ $value = pg_escape_string($values[$i]);
+
+ if (is_numeric($val)) {
+ $insert_str .= $value;
+ } else {
+ $insert_str .= "'".$value."'";
+ }
+
+ if ($i < $anzValues-1) {
+ $insert_str .= ", ";
+ }
+ }
+
+ $insert_str .= ");";
+ //echo debugPrint($insert_str);
+ return $insert_str;
+}
+
+?>
\ No newline at end of file
--- /dev/null
+<?php
+
+/**
+ * Mit PostgresSQL verbinden */
+function getDBConnection() {
+
+ $str_connection = "host=".HOST." port=5432 dbname=".DB." user=".USER." password=".PASS." ";
+ // mit DB verbinden
+ $connect_dbms_handle = @pg_connect($str_connection) or die('Verbindungsaufbau fehlgeschlagen: ' . pg_last_error());
+
+ if ($connect_dbms_handle) {
+ return $connect_dbms_handle;
+ } else {
+ echo "Datenbankabfrage fehlgeschlagen!";
+ echo pg_last_error($connect_dbms_handle);
+ return false;
+ }
+}
+
+/**
+ * PostgresSQL-Verbindung schliessen */
+function closeDBConnection($ref_connection) {
+ @pg_close($ref_connection) or die('Verbindungsclose fehlgeschlagen: ');
+ echo pg_last_error($ref_connection);
+}
+
+
+// SQL an DB absetzen
+// Parameter: Tablle, Feld(er), Wert(e)
+// Rückgabewert: boolean
+function getBooleanData ($dbms_connection, $db_query) {
+ // Variablen
+ $return_bool_value = false ;
+
+ // DB Abfage starten
+ //echo $db_query;
+ $res_sql_result = pg_query ($dbms_connection, $db_query);
+ // Gültigkeit der DB Abfage testen
+ if ($res_sql_result) {
+ //echo "<li>".$res_sql_result;
+ $return_bool_value = true;
+ } else {
+ return "Datenbankabfrage fehlgeschlagen!";
+ }
+
+ return $return_bool_value;
+}
+
+
+// SQL an DB absetzen
+// Parameter: Tablle, Feld(er), Wert(e)
+// Rückgabewert: Array
+function getData ($dbms_connection, $db_query) {
+ $return_arr_data = array(); // Rückgabewert als Array
+ //echo "\n<p> SQL:<br>".$ref_str_db_query."</p>";
+
+ // DB Abfage starten
+ //echo $db_query;
+ $res_sql_result = pg_query ($dbms_connection, $db_query);
+ // Gültigkeit der DB Abfage testen
+ if ($res_sql_result) {
+ //echo "<p>".$res_sql_result."</p>";
+ while ($arr_sql_data = pg_fetch_row($res_sql_result)) {
+ //echo debugPrint($arr_sql_data);
+ array_push ($return_arr_data, $arr_sql_data);
+ }
+ //var_dump( $return_arr_data);
+ } else {
+ return "Datenbankabfrage fehlgeschlagen!";
+ }
+
+ return $return_arr_data;
+}
+
+
+?>
\ No newline at end of file
--- /dev/null
+<?php
+function generateSelect ($selectedFields, $table) {
+ $select_str = "SELECT ";
+
+ //print_r($selectedFields);
+ $anzFields = count($selectedFields);
+ for ($i = 0 ; $i < $anzFields; $i++) {
+ $select_str .= $selectedFields[$i];
+ if ($i < $anzFields-1) {
+ $select_str .= ", ";
+ }
+ }
+
+ $select_str .= " FROM ".SCHEMA.".".$table;
+
+ $select_str .= ";";
+
+ //echo $select_str;
+ return $select_str;
+}
+
+
+function generateSelectWhereOrder ($selectedFields, $table, $whereClause, $orderClause) {
+ $select_str = "SELECT ";
+
+ //print_r($selectedFields);
+ $anzFields = count($selectedFields);
+ for ($i = 0 ; $i < $anzFields; $i++) {
+ $select_str .= $selectedFields[$i];
+ if ($i < $anzFields-1) {
+ $select_str .= ", ";
+ }
+ }
+
+ $select_str .= " FROM ".SCHEMA.".".$table;
+
+ if ($whereClause != null) {
+ $select_str .= " WHERE ";
+
+ //print_r($whereClause);
+ $anzWheres = count($whereClause);
+ for ($i = 0 ; $i < $anzWheres; $i++) {
+ $select_str .= $whereClause[$i];
+ if ($i < $anzWheres-1) {
+ $select_str .= " AND ";
+ }
+ }
+ }
+
+ if ($orderClause != null) {
+ $select_str .= " ORDER BY ";
+
+ //print_r($orderClause);
+ $anzOrders = count($orderClause);
+ for ($i = 0 ; $i < $anzOrders; $i++) {
+ $select_str .= $orderClause[$i];
+ if ($i < $anzOrders-1) {
+ $select_str .= ", ";
+ }
+ }
+ }
+
+ $select_str .= ";";
+
+ //echo $select_str;
+ return $select_str;
+}
+
+
+?>
\ No newline at end of file
--- /dev/null
+<?php
+
+
+?>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <title></title>
+</head>
+<body>
+<form action="rechner.php?ctype=base" method="post" enctype="application/x-www-form-urlencoded">
+<h1>Grundrechenarten</h1>
+<table>
+<tr><td>
+<input type="number" name="zahl1" size="6" maxlength="6">
+</td><td>
+<input type="submit" name="operation" value="+" /><br />
+<input type="submit" name="operation" value="-" /><br />
+<input type="submit" name="operation" value="*" /><br />
+<input type="submit" name="operation" value="/" />
+</td><td>
+<input type="number" name="zahl2" size="6" maxlength="6">
+</td></tr>
+</table>
+</form>
+
+<form action="rechner.php?ctype=frac" method="post" enctype="application/x-www-form-urlencoded">
+<h1>Bruchrechnung</h1>
+<table>
+<tr><td>
+<input type="number" name="zaehler1" size="6" maxlength="6">
+<hr />
+<input type="number" name="nenner1" size="6" maxlength="6">
+</td><td>
+<input type="submit" name="operation" value="+" /><br />
+<input type="submit" name="operation" value="-" /><br />
+<input type="submit" name="operation" value="*" /><br />
+<input type="submit" name="operation" value="/" />
+</td><td>
+<input type="number" name="zaehler2" size="6" maxlength="6">
+<hr />
+<input type="number" name="nenner2" size="6" maxlength="6">
+</form>
+</td></tr>
+</table>
+
+<?php
+
+$y="";
+$x="";
+$operation="";
+$result="";
+
+var_dump($_POST);
+var_dump($_GET);
+
+if(!empty($_POST)) {
+
+ $y=$_POST['zahl1'];
+ $x=$_POST['zahl2'];
+ $operation=$_POST['operation'];
+
+}
+
+if(!empty($_POST)) {
+
+ $ctype=$_GET['ctype'];
+}
+
+
+echo "<p>operation: ".$x." ".$operation." ".$y."</p>";
+
+if(strlen($x) > 0 && strlen($y) > 0) {
+
+ switch($operation) {
+ case '+' : $result=(float)$y+(float)$x;
+ break;
+ case '-' : $result=(float)$y-(float)$x;
+ break;
+ case '*' : $result=(float)$y*(float)$x;
+ break;
+ case '/' : if($x != 0) {
+ $result=(float)$y/(float)$x;
+ } else {
+ echo "nice try - Du hast versucht durch null zu teilen....";
+ }
+ break;
+ default : echo "I am in ur house";
+ }
+
+ echo "<p>Ergebnis: ".$result."</p>";
+} else {
+ echo "Beide Eingabefelder müssen gefüllt sein and I am in ur house.";
+}
+
+
+
+?>
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <title>Sportprotokoll</title>
+ <link rel="stylesheet" href="sporttabelle.css">
+</head>
+<body>
+<form action="sporttabelle.php" method="post" enctype="application/x-www-form-urlencoded">
+
+Datum: <label for="tag">Tag:</label><input type="number" name="tag" size="2" />
+
+Monat: <select name="monat" size="1">
+<option>1</option>
+<option>2</option>
+<option>3</option>
+<option>4</option>
+<option>5</option>
+<option>6</option>
+<option>7</option>
+<option>8</option>
+<option>9</option>
+<option>10</option>
+<option>11</option>
+<option>12</option>
+</select>
+
+
+Jahr: <input type="number" name="jahr" size="4" />
+
+<br /><br />
+
+Person: <input type="text" name="person" size="15" maxlength="25" />
+
+<br /><br />
+
+Aktivität: <input type="text" name="aktivitaet" size="15" maxlength="30" />
+
+<br /><br />
+
+Uhrzeit: <input type="number" name="stunde" size="2" /> : <input type="number" name="minute" size="2" />
+
+<br /><br />
+
+Grund: <textarea name="grund" rows="4" cols="50"></textarea>
+
+<br /><br />
+
+Strecke: <input type="number" name="strecke" size="3" maxlength="3" /> Kilometer ps: schau da vorbei: <a href="geometrie.html" >Geometrie</a>
+
+<br /><br />
+
+Leistung: <input type="text" name="leistung" size="15" maxlength="15" />
+
+<br /><br />
+
+verbrauchte Kalorien: <input type="number" name="leistung" size="5" /> kcal
+
+<br /><br />
+
+Dauer: <input type="number" name="dauer_std" size="2" />:<input type="number" name="dauer_min" size="2" /> hh:mm
+
+<br /><br />
+Anstrengung <select name="anstrengung">
+
+
+<option>1</option>
+<option>2</option>
+<option>3</option>
+<option>4</option>
+<option>5</option>
+<option>6</option>
+<option>7</option>
+<option>8</option>
+<option>9</option>
+<option>10</option>
+</select>
+
+<h5> 10=schwer, 1=einfach </h5>
+<br /><br />
+Ort:<input type="text" name="ort" size="5" maxlength="100" />
+
+
+Bemerkung: <textarea name="bemerkung" rows="25" cols="50" >Hallo hier kannst du den ort wo du warst beschreiben. </textarea>
+<br /><br />
+
+Wetter:<input type="text" name="wetter" size="20" maxlength="30" />
+
+Temperatur:<input type="number" name="temperatur" size="2" />
+
+<br /><br />
+<input type="submit" name="speichern" value="speichern" />
+
+</form>
+
+
+<h1>Regeln sind:</h1>
+
+
+ 1. Nicht mehr als fünf Einträge pro Tag u. Person.
+<br /><br />
+ 2. Max 3h pro Einheit.
+<br /><br />
+ 3. Max 10 h pro Tag (Erwachsene)
+<br /><br />
+ 4. Max 6-7 h pro Tag (Kind)
+<br /><br />
+ 5. Keine Einträge für die Zukunft
+ <br /><br />
+ ps:viel spaß beim Sport.
+ <br /><br />
+ pps:Ich bin erst elf u. habe alles selbst gemacht.
+
+</body>
+</html>
\ No newline at end of file
--- /dev/null
+
+body {
+ background-color: #ed00ae;
+}
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <title>Sportprotokoll</title>
+ <link rel="stylesheet" href="sporttabelle.css">
+</head>
+<body>
+
+
+<?php
+
+echo "speichere Daten:\t$_POST\n";
+
+foreach($_POST as $key => $value)
+{
+echo $key . " => " . $value;
+}
+
+
+
+
+
+
+
+?>
+
+
+<form action="sporttabelle.php" method="post" enctype="application/x-www-form-urlencoded">
+
+Datum: <label for="tag">Tag:</label><input type="number" name="tag" size="2" />
+
+Monat: <select name="monat" size="1">
+<option>1</option>
+<option>2</option>
+<option>3</option>
+<option>4</option>
+<option>5</option>
+<option>6</option>
+<option>7</option>
+<option>8</option>
+<option>9</option>
+<option>10</option>
+<option>11</option>
+<option>12</option>
+</select>
+
+
+Jahr: <input type="number" name="jahr" size="4" />
+
+<br /><br />
+
+Person: <input type="text" name="person" size="15" maxlength="25" />
+
+<br /><br />
+
+Aktivität: <input type="text" name="aktivitaet" size="15" maxlength="30" />
+
+<br /><br />
+
+Uhrzeit: <input type="number" name="stunde" size="2" /> : <input type="number" name="minute" size="2" />
+
+<br /><br />
+
+Grund: <textarea name="grund" rows="4" cols="50"></textarea>
+
+<br /><br />
+
+Strecke: <input type="number" name="strecke" size="3" maxlength="3" /> Kilometer ps: schau da vorbei: <a href="geometrie.html" >Geometrie</a>
+
+<br /><br />
+
+Leistung: <input type="text" name="leistung" size="15" maxlength="15" />
+
+<br /><br />
+
+verbrauchte Kalorien: <input type="number" name="leistung" size="5" /> kcal
+
+<br /><br />
+
+Dauer: <input type="number" name="dauer_std" size="2" />:<input type="number" name="dauer_min" size="2" /> hh:mm
+
+<br /><br />
+Anstrengung <select name="anstrengung">
+
+
+<option>1</option>
+<option>2</option>
+<option>3</option>
+<option>4</option>
+<option>5</option>
+<option>6</option>
+<option>7</option>
+<option>8</option>
+<option>9</option>
+<option>10</option>
+</select>
+
+<h5> 10=schwer, 1=einfach </h5>
+<br /><br />
+Ort:<input type="text" name="ort" size="5" maxlength="100" />
+
+
+Bemerkung: <textarea name="bemerkung" rows="25" cols="50" >Hallo hier kannst du den ort wo du warst beschreiben. </textarea>
+<br /><br />
+
+Wetter:<input type="text" name="wetter" size="20" maxlength="30" />
+
+Temperatur:<input type="number" name="temperatur" size="2" />
+
+<br /><br />
+<input type="submit" name="speichern" value="speichern" />
+
+</form>
+
+
+<h1>Regeln sind:</h1>
+
+
+ 1. Nicht mehr als fünf Einträge pro Tag u. Person.
+<br /><br />
+ 2. Max 3h pro Einheit.
+<br /><br />
+ 3. Max 10 h pro Tag (Erwachsene)
+<br /><br />
+ 4. Max 6-7 h pro Tag (Kind)
+<br /><br />
+ 5. Keine Einträge für die Zukunft
+ <br /><br />
+ ps:viel spaß beim Sport.
+ <br /><br />
+ pps:Ich bin erst elf u. habe alles selbst gemacht.
+
+</body>
+</html>
--- /dev/null
+# ~/.bashrc: executed by bash(1) for non-login shells.
+# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
+# for examples
+
+# Source global definitions
+if [ -f /etc/bash.bashrc ]; then
+ . /etc/bash.bashrc
+fi
+
+# If not running interactively, don't do anything
+case $- in
+ *i*) ;;
+ *) return;;
+esac
+
+# don't put duplicate lines or lines starting with space in the history.
+# See bash(1) for more options
+HISTCONTROL=ignoreboth
+
+# append to the history file, don't overwrite it
+shopt -s histappend
+
+# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
+HISTSIZE=10000
+HISTFILESIZE=20000
+
+# check the window size after each command and, if necessary,
+# update the values of LINES and COLUMNS.
+shopt -s checkwinsize
+
+# If set, the pattern "**" used in a pathname expansion context will
+# match all files and zero or more directories and subdirectories.
+#shopt -s globstar
+
+# make less more friendly for non-text input files, see lesspipe(1)
+[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
+
+# set variable identifying the chroot you work in (used in the prompt below)
+if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
+ debian_chroot=$(cat /etc/debian_chroot)
+fi
+
+# Add an "alert" alias for long running commands. Use like so:
+# sleep 10; alert
+alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
+
+# set a fancy prompt (non-color, unless we know we "want" color)
+case "$TERM" in
+ xterm-color|*-256color) color_prompt=yes;;
+esac
+
+# uncomment for a colored prompt, if the terminal has the capability; turned
+# off by default to not distract the user: the focus in a terminal window
+# should be on the output of commands, not on the prompt
+#force_color_prompt=yes
+
+if [ -n "$force_color_prompt" ]; then
+ if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
+ # We have color support; assume it's compliant with Ecma-48
+ # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
+ # a case would tend to support setf rather than setaf.)
+ color_prompt=yes
+ else
+ color_prompt=
+ fi
+fi
+
+if [ "$color_prompt" = yes ]; then
+ PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
+else
+ PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
+fi
+unset color_prompt force_color_prompt
+
+# If this is an xterm set the title to user@host:dir
+case "$TERM" in
+xterm*|rxvt*)
+ PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
+ ;;
+*)
+ ;;
+esac
+
+# enable color support of ls and also add handy aliases
+if [ -x /usr/bin/dircolors ]; then
+ test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
+ alias ls='ls --color=auto'
+ #alias dir='dir --color=auto'
+ #alias vdir='vdir --color=auto'
+
+ #alias grep='grep --color=auto'
+ #alias fgrep='fgrep --color=auto'
+ #alias egrep='egrep --color=auto'
+fi
+
+# colored GCC warnings and errors
+#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
+
+# Alias definitions.
+# You may want to put all your additions into a separate file like
+# ~/.bash_aliases, instead of adding them here directly.
+# See /usr/share/doc/bash-doc/examples in the bash-doc package.
+
+if [ -f ~/.bash_aliases ]; then
+ . ~/.bash_aliases
+fi
+
+# enable programmable completion features (you don't need to enable
+# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
+# sources /etc/bash.bashrc).
+#if [ -f /etc/bash_completion ]; then
+# . /etc/bash_completion
+#fi
+
+
+export LS_OPTIONS='--color=auto'
+eval "`dircolors`"
+alias ls='ls $LS_OPTIONS'
+alias la='ls $LS_OPTIONS -la'
+alias ll='ls $LS_OPTIONS -l'
+
+alias grep='grep $LS_OPTIONS'
+
+# enable programmable completion features (you don't need to enable
+# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
+# sources /etc/bash.bashrc).
+if ! shopt -oq posix; then
+ if [ -f /usr/share/bash-completion/bash_completion ]; then
+ . /usr/share/bash-completion/bash_completion
+ elif [ -f /etc/bash_completion ]; then
+ . /etc/bash_completion
+ fi
+fi
--- /dev/null
+localhost:5432:*:postgres:B9cr--ZvfF@5cMdu
+*:*:*:oleb:wpj_9+L6ukX+SN2-
+localhost:5432:*:oleb:wpj_9+L6ukX+SN2-
--- /dev/null
+# ~/.profile: executed by the command interpreter for login shells.
+# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
+# exists.
+# see /usr/share/doc/bash/examples/startup-files for examples.
+# the files are located in the bash-doc package.
+
+# the default umask is set in /etc/profile; for setting the umask
+# for ssh logins, install and configure the libpam-umask package.
+#umask 022
+
+# if running bash
+if [ -n "$BASH_VERSION" ]; then
+ # include .bashrc if it exists
+ if [ -f "$HOME/.bashrc" ]; then
+ . "$HOME/.bashrc"
+ fi
+fi
+
+# set PATH so it includes user's private bin if it exists
+if [ -d "$HOME/bin" ] ; then
+ PATH="$HOME/bin:$PATH"
+fi
+
+export LANG="de_DE.utf8"
+
--- /dev/null
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCFTIRs14XVVR3SVlw9QqNhqwKmKrVL5qiERoNfZyCBzwzYq1Jk7kNbN35dVfz7sTXk8r7vCTEwwNIVBqqX8iZhAK/xigiwzgdXf6JM/VrY7rLl4PJnY0mUuePohUcTBNqpZn0QTByvo+y35h1yPTD+g8T2kH5Hcuc2Ofg0stpbM13miyUPIO9T7l76/66KdNvMA5652TVYWlkFFejE8PUbocyvZHrZXVaKUTo1asKRcKEp/4JxeIMQBkuHENZnaHHzzYZ3jTC3RL//Rm5U6nBOYzv+xCC0hRbFtzP6mP1/QqqX+rJkLel+zcabx4OUyAE6sSwVBl1bRPJjWRnOzIV2AE7QvCemkM5eJIo/XD8EZxM6vwU6UycLTyLV/H3rP7NQMo/waBK9THVFXEzYZnoUsYQFk22viKzMxd/mcFkn3JY+0vy3l6ZSvZUIQ/VXr2ovxtebeX2Vyy7nFbJm9u35aqEGQ8FkBzQzjqkHvV44kfTykj09oTAF81kL2qvUXc= oleb@poseidon
--- /dev/null
+<?php
+
+ $i=0;
+ $adresses = array("sport@triathlon-coaching.com","kontakt@triathlon-coaching.com","kontakt@laktatnebel.de");
+
+ foreach ($adresses as $row) {
+
+
+ echo ++$i."\t".$row."\n";
+
+ $mail_recipient = $row;
+ $mail_subject = "Testmaili an: ".$row;
+ $mail_str = $mail_subject;
+ $mail_header = "From: kontakt@triathlon-coaching.com <kontakt@triathlon-coaching.com>\r\nMIME-Version: 1.0\r\nContent-type: text/plain; charset=utf-8\r\n";
+
+ $res_mail = mail($mail_recipient, $mail_subject, $mail_str, $mail_header);
+
+ if ($res_mail) {
+ echo "\t\tGesendet\n";
+ } else {
+ echo "\t\tNicht gesendet\n";
+ }
+
+ }
+
+?>
--- /dev/null
+#!/bin/sh
+
+BACKUPDIR=/var/bckp
+
+# Datum
+TODAY=`date +%Y%m%d`
+YESTERDAY=`date --date='-1 day' +%Y%m%d`
+DAYBEFOREYESTERDAY=`date --date='-2 day' +%Y%m%d`
+
+GLOBAL_LOG=/var/log/bckp2ftp.${TODAY}.log
+
+echo "START Backup ${TODAY}" >> ${GLOBAL_LOG} 2>&1
+date >> ${GLOBAL_LOG} 2>&1
+
+TARFILE=${BACKUPDIR}/sync/${YESTERDAY}.tar.gz
+tar -czf ${TARFILE} ${BACKUPDIR}/sync/${YESTERDAY} >> ${GLOBAL_LOG} 2>&1
+
+ENCFILE=${BACKUPDIR}/sync/${YESTERDAY}.tar.gz.enc
+openssl enc -e -aes256 -in ${TARFILE} -out ${ENCFILE} -pass file:/root/.bckp_passwd >> ${GLOBAL_LOG} 2>&1
+
+mv -v ${ENCFILE} ${BACKUPDIR}/ftpsyncdir/ >> ${GLOBAL_LOG} 2>&1
+rm -v ${TARFILE} >> ${GLOBAL_LOG} 2>&1
+rm -Rfv ${BACKUPDIR}/sync/${DAYBEFOREYESTERDAY} >> ${GLOBAL_LOG} 2>&1
+
+SIZE=`du -s ${BACKUPDIR}/ftpsyncdir/ | sed "s/[a-z\/]//g" | tr -d [:space:]`
+echo "${SIZE} in FTP-Space" >> ${GLOBAL_LOG} 2>&1
+while [ 450000000 -le ${SIZE} ] ; do
+ OLDESTFILE=`find ${BACKUPDIR}/ftpsyncdir/ -name "*enc" | head -1`
+
+ rm -v ${OLDESTFILE} >> ${GLOBAL_LOG} 2>&1
+
+ SIZE=`du -s ${BACKUPDIR}/ftpsyncdir/ | sed "s/[a-z\/]//g" | tr -d [:space:]`
+done
+
+echo "END Backup ${TODAY}" >> ${GLOBAL_LOG} 2>&1
+date >> ${GLOBAL_LOG} 2>&1
+
+exit 0
--- /dev/null
+# ~/.bashrc: executed by bash(1) for non-login shells.
+# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
+# for examples
+
+# Source global definitions
+if [ -f /etc/bash.bashrc ]; then
+ . /etc/bash.bashrc
+fi
+
+# If not running interactively, don't do anything
+case $- in
+ *i*) ;;
+ *) return;;
+esac
+
+# don't put duplicate lines or lines starting with space in the history.
+# See bash(1) for more options
+HISTCONTROL=ignoreboth
+
+# append to the history file, don't overwrite it
+shopt -s histappend
+
+# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
+HISTSIZE=10000
+HISTFILESIZE=20000
+
+# check the window size after each command and, if necessary,
+# update the values of LINES and COLUMNS.
+shopt -s checkwinsize
+
+# If set, the pattern "**" used in a pathname expansion context will
+# match all files and zero or more directories and subdirectories.
+#shopt -s globstar
+
+# make less more friendly for non-text input files, see lesspipe(1)
+[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
+
+# set variable identifying the chroot you work in (used in the prompt below)
+if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
+ debian_chroot=$(cat /etc/debian_chroot)
+fi
+
+# Add an "alert" alias for long running commands. Use like so:
+# sleep 10; alert
+alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
+
+# set a fancy prompt (non-color, unless we know we "want" color)
+case "$TERM" in
+ xterm-color|*-256color) color_prompt=yes;;
+esac
+
+# uncomment for a colored prompt, if the terminal has the capability; turned
+# off by default to not distract the user: the focus in a terminal window
+# should be on the output of commands, not on the prompt
+#force_color_prompt=yes
+
+if [ -n "$force_color_prompt" ]; then
+ if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
+ # We have color support; assume it's compliant with Ecma-48
+ # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
+ # a case would tend to support setf rather than setaf.)
+ color_prompt=yes
+ else
+ color_prompt=
+ fi
+fi
+
+if [ "$color_prompt" = yes ]; then
+ PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
+else
+ PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
+fi
+unset color_prompt force_color_prompt
+
+# If this is an xterm set the title to user@host:dir
+case "$TERM" in
+xterm*|rxvt*)
+ PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
+ ;;
+*)
+ ;;
+esac
+
+# enable color support of ls and also add handy aliases
+if [ -x /usr/bin/dircolors ]; then
+ test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
+ alias ls='ls --color=auto'
+ #alias dir='dir --color=auto'
+ #alias vdir='vdir --color=auto'
+
+ #alias grep='grep --color=auto'
+ #alias fgrep='fgrep --color=auto'
+ #alias egrep='egrep --color=auto'
+fi
+
+# colored GCC warnings and errors
+#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
+
+# Alias definitions.
+# You may want to put all your additions into a separate file like
+# ~/.bash_aliases, instead of adding them here directly.
+# See /usr/share/doc/bash-doc/examples in the bash-doc package.
+
+if [ -f ~/.bash_aliases ]; then
+ . ~/.bash_aliases
+fi
+
+# enable programmable completion features (you don't need to enable
+# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
+# sources /etc/bash.bashrc).
+#if [ -f /etc/bash_completion ]; then
+# . /etc/bash_completion
+#fi
+
+
+export LS_OPTIONS='--color=auto'
+eval "`dircolors`"
+alias ls='ls $LS_OPTIONS'
+alias la='ls $LS_OPTIONS -la'
+alias ll='ls $LS_OPTIONS -l'
+
+alias grep='grep $LS_OPTIONS'
+
+# enable programmable completion features (you don't need to enable
+# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
+# sources /etc/bash.bashrc).
+if ! shopt -oq posix; then
+ if [ -f /usr/share/bash-completion/bash_completion ]; then
+ . /usr/share/bash-completion/bash_completion
+ elif [ -f /etc/bash_completion ]; then
+ . /etc/bash_completion
+ fi
+fi
+
+PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
--- /dev/null
+J?Uz?bA66wC%dDeG
+
--- /dev/null
+# Edit this file to introduce tasks to be run by cron.
+#
+# Each task to run has to be defined through a single line
+# indicating with different fields when the task will be run
+# and what command to run for the task
+#
+# To define the time you can provide concrete values for
+# minute (m), hour (h), day of month (dom), month (mon),
+# and day of week (dow) or use '*' in these fields (for 'any').#
+# Notice that tasks will be started based on the cron's system
+# daemon's notion of time and timezones.
+#
+# Output of the crontab jobs (including errors) is sent through
+# email to the user the crontab file belongs to (unless redirected).
+#
+# For example, you can run a backup of all your user accounts
+# at 5 a.m every week with:
+# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
+#
+# For more information see the manual pages of crontab(5) and cron(8)
+#
+# m h dom mon dow command
+PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin
+##################################################
+# Backup
+30 1 * * * backup.sh --git --files --web
+50 */8 * * * backup.sh --mail
+30 */12 * * * backup.sh --db
+5 0 * * * backup2ftp.sh
+
+##################################################
+# EBAY SYNC
+*/5 * * * * rsync -rv --delete /home/oleb/upload/verkaufen/ /var/www/ole-b-rosentreter.de/ebay/ ; chown www-data: /var/www/ole-b-rosentreter.de/ebay/ -R
+
+
+
+##################################################
+# Webalizer
+0 0 * * * for i in /etc/webalizer/*/webalizer.conf; do webalizer -c $i; done
+
+
+# logwatch
+5 0 * * * /usr/sbin/logwatch --range yesterday --format text --detail 10 --mailto "webmaster@laktatnebel.de" 2>&1
+
+##################################################
+# Letsencrypt Zertifikate erneueren
+0 3 1 * * letsencrypt renew && service apache2 reload
+
+##################################################
+
--- /dev/null
+localhost:5432:*:postgres:B9cr--ZvfF@5cMdu
+*:*:*:oleb:wpj_9+L6ukX+SN2-
+localhost:5432:*:oleb:wpj_9+L6ukX+SN2-
--- /dev/null
+# ~/.profile: executed by Bourne-compatible login shells.
+
+if [ "$BASH" ]; then
+ if [ -f ~/.bashrc ]; then
+ . ~/.bashrc
+ fi
+fi
+
+mesg n || true
--- /dev/null
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCFTIRs14XVVR3SVlw9QqNhqwKmKrVL5qiERoNfZyCBzwzYq1Jk7kNbN35dVfz7sTXk8r7vCTEwwNIVBqqX8iZhAK/xigiwzgdXf6JM/VrY7rLl4PJnY0mUuePohUcTBNqpZn0QTByvo+y35h1yPTD+g8T2kH5Hcuc2Ofg0stpbM13miyUPIO9T7l76/66KdNvMA5652TVYWlkFFejE8PUbocyvZHrZXVaKUTo1asKRcKEp/4JxeIMQBkuHENZnaHHzzYZ3jTC3RL//Rm5U6nBOYzv+xCC0hRbFtzP6mP1/QqqX+rJkLel+zcabx4OUyAE6sSwVBl1bRPJjWRnOzIV2AE7QvCemkM5eJIo/XD8EZxM6vwU6UycLTyLV/H3rP7NQMo/waBK9THVFXEzYZnoUsYQFk22viKzMxd/mcFkn3JY+0vy3l6ZSvZUIQ/VXr2ovxtebeX2Vyy7nFbJm9u35aqEGQ8FkBzQzjqkHvV44kfTykj09oTAF81kL2qvUXc= oleb@poseidon
--- /dev/null
+# PostgreSQL Client Authentication Configuration File
+# ===================================================
+#
+# Refer to the "Client Authentication" section in the PostgreSQL
+# documentation for a complete description of this file. A short
+# synopsis follows.
+#
+# This file controls: which hosts are allowed to connect, how clients
+# are authenticated, which PostgreSQL user names they can use, which
+# databases they can access. Records take one of these forms:
+#
+# local DATABASE USER METHOD [OPTIONS]
+# host DATABASE USER ADDRESS METHOD [OPTIONS]
+# hostssl DATABASE USER ADDRESS METHOD [OPTIONS]
+# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS]
+# hostgssenc DATABASE USER ADDRESS METHOD [OPTIONS]
+# hostnogssenc DATABASE USER ADDRESS METHOD [OPTIONS]
+#
+# (The uppercase items must be replaced by actual values.)
+#
+# The first field is the connection type: "local" is a Unix-domain
+# socket, "host" is either a plain or SSL-encrypted TCP/IP socket,
+# "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a
+# non-SSL TCP/IP socket. Similarly, "hostgssenc" uses a
+# GSSAPI-encrypted TCP/IP socket, while "hostnogssenc" uses a
+# non-GSSAPI socket.
+#
+# DATABASE can be "all", "sameuser", "samerole", "replication", a
+# database name, or a comma-separated list thereof. The "all"
+# keyword does not match "replication". Access to replication
+# must be enabled in a separate record (see example below).
+#
+# USER can be "all", a user name, a group name prefixed with "+", or a
+# comma-separated list thereof. In both the DATABASE and USER fields
+# you can also write a file name prefixed with "@" to include names
+# from a separate file.
+#
+# ADDRESS specifies the set of hosts the record matches. It can be a
+# host name, or it is made up of an IP address and a CIDR mask that is
+# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that
+# specifies the number of significant bits in the mask. A host name
+# that starts with a dot (.) matches a suffix of the actual host name.
+# Alternatively, you can write an IP address and netmask in separate
+# columns to specify the set of hosts. Instead of a CIDR-address, you
+# can write "samehost" to match any of the server's own IP addresses,
+# or "samenet" to match any address in any subnet that the server is
+# directly connected to.
+#
+# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256",
+# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert".
+# Note that "password" sends passwords in clear text; "md5" or
+# "scram-sha-256" are preferred since they send encrypted passwords.
+#
+# OPTIONS are a set of options for the authentication in the format
+# NAME=VALUE. The available options depend on the different
+# authentication methods -- refer to the "Client Authentication"
+# section in the documentation for a list of which options are
+# available for which authentication methods.
+#
+# Database and user names containing spaces, commas, quotes and other
+# special characters must be quoted. Quoting one of the keywords
+# "all", "sameuser", "samerole" or "replication" makes the name lose
+# its special character, and just match a database or username with
+# that name.
+#
+# This file is read on server startup and when the server receives a
+# SIGHUP signal. If you edit the file on a running system, you have to
+# SIGHUP the server for the changes to take effect, run "pg_ctl reload",
+# or execute "SELECT pg_reload_conf()".
+#
+# Put your actual configuration here
+# ----------------------------------
+#
+# If you want to allow non-local connections, you need to add more
+# "host" records. In that case you will also need to make PostgreSQL
+# listen on a non-local interface via the listen_addresses
+# configuration parameter, or via the -i or -h command line switches.
+
+
+
+
+# DO NOT DISABLE!
+# If you change this first entry you will need to make sure that the
+# database superuser can access the database using some other method.
+# Noninteractive access to all databases is required during automatic
+# maintenance (custom daily cronjobs, replication, and similar tasks).
+#
+
+
+# Database administrative login by Unix domain socket
+#local all postgres peer
+#local all postgres trust
+local all postgres md5
+
+# TYPE DATABASE USER ADDRESS METHOD
+
+# DAVICAL
+# for local davical users
+local davical davical_app trust
+local davical davical_dba trust
+# for davical web-application
+host davical davical_app ::1/128 md5
+
+
+# AGENDAV - Kalender-WebUI
+# for local agendav user
+local agendav agendav md5
+# for agendav web-ui
+host agendav agendav ::1/128 md5
+
+
+# TICKET
+host tickets oleb ::1/128 md5
+
+
+# WEBMAIL
+host rainloop rainloop ::1/128 md5
+
+
+# PHPPGADMIN
+# host all all 127.0.0.1/32 trust
+host all all 127.0.0.1/32 md5
+
+
+# PROFTPD
+host serveradmin proftp ::1/128 md5
+
+
+# MAILSERVER
+host serveradmin mailserver_manage ::1/128 md5
+
+
+# ANWENDUNGEN
+host laktatnebel laktatnebel ::1/128 md5
+host home matthies ::1/128 md5
+
+
+
+
+# "local" is for Unix domain socket connections only
+local all all peer
+# IPv4 local connections:
+host all postgres 127.0.0.1/32 md5
+# IPv6 local connections:
+host all postgres ::1/128 md5
+# Allow replication connections from localhost, by a user with the
+# replication privilege.
+local replication all peer
+host replication all 127.0.0.1/32 md5
+host replication all ::1/128 md5
--- /dev/null
+# PostgreSQL Client Authentication Configuration File
+# ===================================================
+#
+# Refer to the "Client Authentication" section in the PostgreSQL
+# documentation for a complete description of this file. A short
+# synopsis follows.
+#
+# This file controls: which hosts are allowed to connect, how clients
+# are authenticated, which PostgreSQL user names they can use, which
+# databases they can access. Records take one of these forms:
+#
+# local DATABASE USER METHOD [OPTIONS]
+# host DATABASE USER ADDRESS METHOD [OPTIONS]
+# hostssl DATABASE USER ADDRESS METHOD [OPTIONS]
+# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS]
+# hostgssenc DATABASE USER ADDRESS METHOD [OPTIONS]
+# hostnogssenc DATABASE USER ADDRESS METHOD [OPTIONS]
+#
+# (The uppercase items must be replaced by actual values.)
+#
+# The first field is the connection type: "local" is a Unix-domain
+# socket, "host" is either a plain or SSL-encrypted TCP/IP socket,
+# "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a
+# non-SSL TCP/IP socket. Similarly, "hostgssenc" uses a
+# GSSAPI-encrypted TCP/IP socket, while "hostnogssenc" uses a
+# non-GSSAPI socket.
+#
+# DATABASE can be "all", "sameuser", "samerole", "replication", a
+# database name, or a comma-separated list thereof. The "all"
+# keyword does not match "replication". Access to replication
+# must be enabled in a separate record (see example below).
+#
+# USER can be "all", a user name, a group name prefixed with "+", or a
+# comma-separated list thereof. In both the DATABASE and USER fields
+# you can also write a file name prefixed with "@" to include names
+# from a separate file.
+#
+# ADDRESS specifies the set of hosts the record matches. It can be a
+# host name, or it is made up of an IP address and a CIDR mask that is
+# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that
+# specifies the number of significant bits in the mask. A host name
+# that starts with a dot (.) matches a suffix of the actual host name.
+# Alternatively, you can write an IP address and netmask in separate
+# columns to specify the set of hosts. Instead of a CIDR-address, you
+# can write "samehost" to match any of the server's own IP addresses,
+# or "samenet" to match any address in any subnet that the server is
+# directly connected to.
+#
+# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256",
+# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert".
+# Note that "password" sends passwords in clear text; "md5" or
+# "scram-sha-256" are preferred since they send encrypted passwords.
+#
+# OPTIONS are a set of options for the authentication in the format
+# NAME=VALUE. The available options depend on the different
+# authentication methods -- refer to the "Client Authentication"
+# section in the documentation for a list of which options are
+# available for which authentication methods.
+#
+# Database and user names containing spaces, commas, quotes and other
+# special characters must be quoted. Quoting one of the keywords
+# "all", "sameuser", "samerole" or "replication" makes the name lose
+# its special character, and just match a database or username with
+# that name.
+#
+# This file is read on server startup and when the server receives a
+# SIGHUP signal. If you edit the file on a running system, you have to
+# SIGHUP the server for the changes to take effect, run "pg_ctl reload",
+# or execute "SELECT pg_reload_conf()".
+#
+# Put your actual configuration here
+# ----------------------------------
+#
+# If you want to allow non-local connections, you need to add more
+# "host" records. In that case you will also need to make PostgreSQL
+# listen on a non-local interface via the listen_addresses
+# configuration parameter, or via the -i or -h command line switches.
+
+
+
+
+# DO NOT DISABLE!
+# If you change this first entry you will need to make sure that the
+# database superuser can access the database using some other method.
+# Noninteractive access to all databases is required during automatic
+# maintenance (custom daily cronjobs, replication, and similar tasks).
+#
+
+
+# Database administrative login by Unix domain socket
+#local all postgres peer
+#local all postgres trust
+local all postgres md5
+
+# TYPE DATABASE USER ADDRESS METHOD
+
+# "local" is for Unix domain socket connections only
+local all all peer
+# IPv4 local connections:
+host all postgres 127.0.0.1/32 md5
+# IPv6 local connections:
+host all postgres ::1/128 md5
+# Allow replication connections from localhost, by a user with the
+# replication privilege.
+local replication all peer
+host replication all 127.0.0.1/32 md5
+host replication all ::1/128 md5
--- /dev/null
+# see "man logrotate" for details
+
+# global options do not affect preceding include directives
+
+# rotate log files weekly
+weekly
+
+# keep 4 weeks worth of backlogs
+rotate 4
+
+# create new (empty) log files after rotating old ones
+create
+
+# use date as a suffix of the rotated file
+#dateext
+
+# uncomment this if you want your log files compressed
+#compress
+
+# packages drop log rotation information into this directory
+include /etc/logrotate.d
+
+# system-specific logs may also be configured here.
--- /dev/null
+/var/log/alternatives.log {
+ monthly
+ rotate 12
+ compress
+ delaycompress
+ missingok
+ notifempty
+ create 644 root root
+}
--- /dev/null
+/var/log/apache2/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/ole-b-rosentreter.de/ebay.*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/coach-4-you.com/mail/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/ina-rosentreter.de/mail/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/laktatnebel.de/mail/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/lasse-gehrmann.de/mail/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/laufen-in-franken.de/mail/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/little-red-riding-hood.eu/mail/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/matthies-gehrmann.de/mail/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/ole-b-rosentreter.de/mail/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/wechselzonenluder.de/mail/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/coach-4-you.com/www/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/ina-rosentreter.de/www/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/laktatnebel.de/www/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/lasse-gehrmann.de/www/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/laufen-in-franken.de/www/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/little-red-riding-hood.eu/www/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/matthies-gehrmann.de/www/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/ole-b-rosentreter.de/www/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apache2/wechselzonenluder.de/www/*.log {
+ daily
+ missingok
+ rotate 28
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ if /etc/init.d/apache2 status > /dev/null ; then \
+ /etc/init.d/apache2 reload > /dev/null; \
+ fi;
+ endscript
+ prerotate
+ if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
+ run-parts /etc/logrotate.d/httpd-prerotate; \
+ fi; \
+ endscript
+}
--- /dev/null
+/var/log/apt/term.log {
+ rotate 12
+ monthly
+ compress
+ missingok
+ notifempty
+}
+
+/var/log/apt/history.log {
+ rotate 12
+ monthly
+ compress
+ missingok
+ notifempty
+}
+
--- /dev/null
+/var/log/aptitude {
+ rotate 6
+ monthly
+ compress
+ missingok
+ notifempty
+}
--- /dev/null
+# no packages own btmp -- we'll rotate it here
+/var/log/btmp {
+ missingok
+ monthly
+ create 0660 root utmp
+ rotate 1
+}
--- /dev/null
+/var/log/letsencrypt/*.log {
+ rotate 12
+ weekly
+ compress
+ missingok
+}
\ No newline at end of file
--- /dev/null
+/var/log/dpkg.log {
+ monthly
+ rotate 12
+ compress
+ delaycompress
+ missingok
+ notifempty
+ create 644 root root
+}
+/var/log/alternatives.log {
+ monthly
+ rotate 12
+ compress
+ delaycompress
+ missingok
+ notifempty
+ create 644 root root
+}
--- /dev/null
+/var/log/exim4/mainlog /var/log/exim4/rejectlog {
+ daily
+ missingok
+ rotate 10
+ compress
+ delaycompress
+ notifempty
+ create 640 Debian-exim adm
+}
--- /dev/null
+/var/log/exim4/paniclog {
+ size 10M
+ missingok
+ rotate 10
+ compress
+ delaycompress
+ notifempty
+ create 640 Debian-exim adm
+}
+
--- /dev/null
+/var/log/fail2ban.log {
+
+ weekly
+ rotate 4
+ compress
+
+ delaycompress
+ missingok
+ postrotate
+ fail2ban-client flushlogs 1>/dev/null
+ endscript
+
+ # If fail2ban runs as non-root it still needs to have write access
+ # to logfiles.
+ # create 640 fail2ban adm
+ create 640 root adm
+}
--- /dev/null
+# This is the MariaDB configuration for the logrotate utility
+#
+# Note that on most Linux systems logs are written to journald, which has its
+# own rotation scheme.
+#
+# Read https://mariadb.com/kb/en/error-log/ to learn more about logging and
+# https://mariadb.com/kb/en/rotating-logs-on-unix-and-linux/ about rotating logs.
+
+/var/lib/mysql/mysqld.log /var/log/mysql/mysql.log /var/lib/mysql/mariadb.log /var/log/mysql/mysql-slow.log /var/log/mysql/mariadb-slow.log /var/log/mysql/error.log {
+
+ # If any of the files listed above is missing, skip them silently without
+ # emitting any errors
+ missingok
+
+ # If file exists but is empty, don't rotate it
+ notifempty
+
+ # Run monthly
+ monthly
+
+ # Keep 6 months of logs
+ rotate 6
+
+ # If file is growing too big, rotate immediately
+ maxsize 500M
+
+ # If file size is too small, don't rotate at all
+ minsize 50M
+
+ # Compress logs, as they are text and compression will save a lot of disk space
+ compress
+
+ # Don't compress the log immediately to avoid errors about "file size changed while zipping"
+ delaycompress
+
+ # Don't run the postrotate script for each file configured in this file, but
+ # run it only once if one or more files were rotated
+ sharedscripts
+
+ # After each rotation, run this custom script to flush the logs. Note that
+ # this assumes that the mariadb-admin command has database access, which it
+ # has thanks to the default use of Unix socket authentication for the 'root'
+ # account used everywhere since MariaDB 10.4.
+ postrotate
+ if test -r /etc/mysql/debian.cnf
+ then
+ EXTRAPARAM='--defaults-file=/etc/mysql/debian.cnf'
+ fi
+
+ if test -x /usr/bin/mariadb-admin
+ then
+ /usr/bin/mariadb-admin $EXTRAPARAM --local flush-error-log \
+ flush-engine-log flush-general-log flush-slow-log
+ fi
+ endscript
+}
--- /dev/null
+/var/log/postgresql/*.log {
+ weekly
+ rotate 10
+ copytruncate
+ delaycompress
+ compress
+ notifempty
+ missingok
+ su root root
+}
--- /dev/null
+/var/log/proftpd/proftpd.log
+/var/log/proftpd/controls.log
+{
+ weekly
+ missingok
+ rotate 7
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ postrotate
+ # reload could be not sufficient for all logs, a restart is safer
+ invoke-rc.d proftpd restart 2>/dev/null >/dev/null || true
+ endscript
+}
+
+/var/log/proftpd/xferlog
+/var/log/proftpd/xferreport
+{
+ monthly
+ missingok
+ rotate 7
+ compress
+ delaycompress
+ notifempty
+ create 640 root adm
+ sharedscripts
+ prerotate
+ endscript
+ postrotate
+ # reload could be not sufficient for all logs, a restart is safer
+ invoke-rc.d proftpd restart 2>/dev/null >/dev/null || true
+ # run ftpstats on past transfer log
+ ftpstats -a -r -l 2 -d -h -f /var/log/proftpd/xferlog.0 2>/dev/null >/var/log/proftpd/xferreport || true
+ endscript
+}
--- /dev/null
+/var/log/syslog
+{
+ rotate 7
+ daily
+ missingok
+ notifempty
+ delaycompress
+ compress
+ postrotate
+ invoke-rc.d rsyslog rotate > /dev/null
+ endscript
+}
+
+/var/log/mail.info
+/var/log/mail.warn
+/var/log/mail.err
+/var/log/mail.log
+/var/log/daemon.log
+/var/log/kern.log
+/var/log/auth.log
+/var/log/user.log
+/var/log/lpr.log
+/var/log/cron.log
+/var/log/debug
+/var/log/messages
+{
+ rotate 4
+ weekly
+ missingok
+ notifempty
+ compress
+ delaycompress
+ sharedscripts
+ postrotate
+ invoke-rc.d rsyslog rotate > /dev/null
+ endscript
+}
--- /dev/null
+# no packages own wtmp -- we'll rotate it here
+/var/log/wtmp {
+ missingok
+ monthly
+ create 0664 root utmp
+ minsize 1M
+ rotate 1
+}
--- /dev/null
+##
+## Authentication processes
+##
+
+#auth_debug=yes
+#auth_debug_passwords=yes
+
+# Disable LOGIN command and all other plaintext authentications unless
+# SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP
+# matches the local IP (ie. you're connecting from the same computer), the
+# connection is considered secure and plaintext authentication is allowed.
+# See also ssl=required setting.
+#disable_plaintext_auth = yes
+
+# Authentication cache size (e.g. 10M). 0 means it's disabled. Note that
+# bsdauth, PAM and vpopmail require cache_key to be set for caching to be used.
+#auth_cache_size = 0
+# Time to live for cached data. After TTL expires the cached record is no
+# longer used, *except* if the main database lookup returns internal failure.
+# We also try to handle password changes automatically: If user's previous
+# authentication was successful, but this one wasn't, the cache isn't used.
+# For now this works only with plaintext authentication.
+#auth_cache_ttl = 1 hour
+# TTL for negative hits (user not found, password mismatch).
+# 0 disables caching them completely.
+#auth_cache_negative_ttl = 1 hour
+
+# Space separated list of realms for SASL authentication mechanisms that need
+# them. You can leave it empty if you don't want to support multiple realms.
+# Many clients simply use the first one listed here, so keep the default realm
+# first.
+#auth_realms =
+
+# Default realm/domain to use if none was specified. This is used for both
+# SASL realms and appending @domain to username in plaintext logins.
+#auth_default_realm =
+
+# List of allowed characters in username. If the user-given username contains
+# a character not listed in here, the login automatically fails. This is just
+# an extra check to make sure user can't exploit any potential quote escaping
+# vulnerabilities with SQL/LDAP databases. If you want to allow all characters,
+# set this value to empty.
+#auth_username_chars = abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@
+
+# Username character translations before it's looked up from databases. The
+# value contains series of from -> to characters. For example "#@/@" means
+# that '#' and '/' characters are translated to '@'.
+#auth_username_translation =
+
+# Username formatting before it's looked up from databases. You can use
+# the standard variables here, eg. %Lu would lowercase the username, %n would
+# drop away the domain if it was given, or "%n-AT-%d" would change the '@' into
+# "-AT-". This translation is done after auth_username_translation changes.
+#auth_username_format = %Lu
+
+# If you want to allow master users to log in by specifying the master
+# username within the normal username string (ie. not using SASL mechanism's
+# support for it), you can specify the separator character here. The format
+# is then <username><separator><master username>. UW-IMAP uses "*" as the
+# separator, so that could be a good choice.
+#auth_master_user_separator =
+
+# Username to use for users logging in with ANONYMOUS SASL mechanism
+#auth_anonymous_username = anonymous
+
+# Maximum number of dovecot-auth worker processes. They're used to execute
+# blocking passdb and userdb queries (eg. MySQL and PAM). They're
+# automatically created and destroyed as needed.
+#auth_worker_max_count = 30
+
+# Host name to use in GSSAPI principal names. The default is to use the
+# name returned by gethostname(). Use "$ALL" (with quotes) to allow all keytab
+# entries.
+#auth_gssapi_hostname =
+
+# Kerberos keytab to use for the GSSAPI mechanism. Will use the system
+# default (usually /etc/krb5.keytab) if not specified. You may need to change
+# the auth service to run as root to be able to read this file.
+#auth_krb5_keytab =
+
+# Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon and
+# ntlm_auth helper. <doc/wiki/Authentication/Mechanisms/Winbind.txt>
+#auth_use_winbind = no
+
+# Path for Samba's ntlm_auth helper binary.
+#auth_winbind_helper_path = /usr/bin/ntlm_auth
+
+# Time to delay before replying to failed authentications.
+#auth_failure_delay = 2 secs
+
+# Require a valid SSL client certificate or the authentication fails.
+#auth_ssl_require_client_cert = no
+
+# Take the username from client's SSL certificate, using
+# X509_NAME_get_text_by_NID() which returns the subject's DN's
+# CommonName.
+#auth_ssl_username_from_cert = no
+
+# Space separated list of wanted authentication mechanisms:
+# plain login digest-md5 cram-md5 ntlm rpa apop anonymous gssapi otp skey
+# gss-spnego
+# NOTE: See also disable_plaintext_auth setting.
+auth_mechanisms = plain login
+
+##
+## Password and user databases
+##
+
+#
+# Password database is used to verify user's password (and nothing more).
+# You can have multiple passdbs and userdbs. This is useful if you want to
+# allow both system users (/etc/passwd) and virtual users to login without
+# duplicating the system users into virtual database.
+#
+# <doc/wiki/PasswordDatabase.txt>
+#
+# User database specifies where mails are located and what user/group IDs
+# own them. For single-UID configuration use "static" userdb.
+#
+# <doc/wiki/UserDatabase.txt>
+
+#!include auth-deny.conf.ext
+#!include auth-master.conf.ext
+
+#!include auth-system.conf.ext
+!include auth-sql.conf.ext
+#!include auth-ldap.conf.ext
+#!include auth-passwdfile.conf.ext
+#!include auth-checkpassword.conf.ext
+#!include auth-vpopmail.conf.ext
+#!include auth-static.conf.ext
--- /dev/null
+##
+## Director-specific settings.
+##
+
+# Director can be used by Dovecot proxy to keep a temporary user -> mail server
+# mapping. As long as user has simultaneous connections, the user is always
+# redirected to the same server. Each proxy server is running its own director
+# process, and the directors are communicating the state to each others.
+# Directors are mainly useful with NFS-like setups.
+
+# List of IPs or hostnames to all director servers, including ourself.
+# Ports can be specified as ip:port. The default port is the same as
+# what director service's inet_listener is using.
+#director_servers =
+
+# List of IPs or hostnames to all backend mail servers. Ranges are allowed
+# too, like 10.0.0.10-10.0.0.30.
+#director_mail_servers =
+
+# How long to redirect users to a specific server after it no longer has
+# any connections.
+#director_user_expire = 15 min
+
+# TCP/IP port that accepts doveadm connections (instead of director connections)
+# If you enable this, you'll also need to add inet_listener for the port.
+#director_doveadm_port = 0
+
+# How the username is translated before being hashed. Useful values include
+# %Ln if user can log in with or without @domain, %Ld if mailboxes are shared
+# within domain.
+#director_username_hash = %Lu
+
+# To enable director service, uncomment the modes and assign a port.
+service director {
+ unix_listener login/director {
+ #mode = 0666
+ }
+ fifo_listener login/proxy-notify {
+ #mode = 0666
+ }
+ unix_listener director-userdb {
+ #mode = 0600
+ }
+ inet_listener {
+ #port =
+ }
+}
+
+# Enable director for the wanted login services by telling them to
+# connect to director socket instead of the default login socket:
+service imap-login {
+ #executable = imap-login director
+}
+service pop3-login {
+ #executable = pop3-login director
+}
+
+# Enable director for LMTP proxying:
+protocol lmtp {
+ #auth_socket_path = director-userdb
+}
--- /dev/null
+##
+## Log destination.
+##
+
+info_log_path = /var/log/dovecot-info.log
+
+# Log file to use for error messages. "syslog" logs to syslog,
+# /dev/stderr logs to stderr.
+#log_path = syslog
+
+# Log file to use for informational messages. Defaults to log_path.
+#info_log_path =
+# Log file to use for debug messages. Defaults to info_log_path.
+#debug_log_path =
+
+# Syslog facility to use if you're logging to syslog. Usually if you don't
+# want to use "mail", you'll use local0..local7. Also other standard
+# facilities are supported.
+#syslog_facility = mail
+
+##
+## Logging verbosity and debugging.
+##
+
+# Log unsuccessful authentication attempts and the reasons why they failed.
+#auth_verbose = no
+
+# In case of password mismatches, log the attempted password. Valid values are
+# no, plain and sha1. sha1 can be useful for detecting brute force password
+# attempts vs. user simply trying the same password over and over again.
+# You can also truncate the value to n chars by appending ":n" (e.g. sha1:6).
+#auth_verbose_passwords = no
+
+# Even more verbose logging for debugging purposes. Shows for example SQL
+# queries.
+#auth_debug = no
+
+# In case of password mismatches, log the passwords and used scheme so the
+# problem can be debugged. Enabling this also enables auth_debug.
+#auth_debug_passwords = no
+
+# Enable mail process debugging. This can help you figure out why Dovecot
+# isn't finding your mails.
+#mail_debug = no
+
+# Show protocol level SSL errors.
+#verbose_ssl = no
+
+# mail_log plugin provides more event logging for mail processes.
+plugin {
+ # Events to log. Also available: flag_change append
+ #mail_log_events = delete undelete expunge copy mailbox_delete mailbox_rename
+ # Available fields: uid, box, msgid, from, subject, size, vsize, flags
+ # size and vsize are available only for expunge and copy events.
+ #mail_log_fields = uid box msgid size
+}
+
+##
+## Log formatting.
+##
+
+# Prefix for each line written to log file. % codes are in strftime(3)
+# format.
+#log_timestamp = "%b %d %H:%M:%S "
+
+# Space-separated list of elements we want to log. The elements which have
+# a non-empty variable value are joined together to form a comma-separated
+# string.
+#login_log_format_elements = user=<%u> method=%m rip=%r lip=%l mpid=%e %c
+
+# Login log format. %s contains login_log_format_elements string, %$ contains
+# the data we want to log.
+#login_log_format = %$: %s
+
+# Log prefix for mail processes. See doc/wiki/Variables.txt for list of
+# possible variables you can use.
+#mail_log_prefix = "%s(%u): "
+
+# Format to use for logging mail deliveries. You can use variables:
+# %$ - Delivery status message (e.g. "saved to INBOX")
+# %m - Message-ID
+# %s - Subject
+# %f - From address
+# %p - Physical size
+# %w - Virtual size
+#deliver_log_format = msgid=%m: %$
--- /dev/null
+##
+## Mailbox locations and namespaces
+##
+
+# Location for users' mailboxes. The default is empty, which means that Dovecot
+# tries to find the mailboxes automatically. This won't work if the user
+# doesn't yet have any mail, so you should explicitly tell Dovecot the full
+# location.
+#
+# If you're using mbox, giving a path to the INBOX file (eg. /var/mail/%u)
+# isn't enough. You'll also need to tell Dovecot where the other mailboxes are
+# kept. This is called the "root mail directory", and it must be the first
+# path given in the mail_location setting.
+#
+# There are a few special variables you can use, eg.:
+#
+# %u - username
+# %n - user part in user@domain, same as %u if there's no domain
+# %d - domain part in user@domain, empty if there's no domain
+# %h - home directory
+#
+# See doc/wiki/Variables.txt for full list. Some examples:
+#
+# mail_location = maildir:~/Maildir
+# mail_location = mbox:~/mail:INBOX=/var/mail/%u
+# mail_location = mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%n
+#
+# <doc/wiki/MailLocation.txt>
+#
+mail_location = maildir:/var/vmail/%d/%n
+
+# If you need to set multiple mailbox locations or want to change default
+# namespace settings, you can do it by defining namespace sections.
+#
+# You can have private, shared and public namespaces. Private namespaces
+# are for user's personal mails. Shared namespaces are for accessing other
+# users' mailboxes that have been shared. Public namespaces are for shared
+# mailboxes that are managed by sysadmin. If you create any shared or public
+# namespaces you'll typically want to enable ACL plugin also, otherwise all
+# users can access all the shared mailboxes, assuming they have permissions
+# on filesystem level to do so.
+namespace inbox {
+ # Namespace type: private, shared or public
+ #type = private
+
+ # Hierarchy separator to use. You should use the same separator for all
+ # namespaces or some clients get confused. '/' is usually a good one.
+ # The default however depends on the underlying mail storage format.
+ separator = /
+
+ # Prefix required to access this namespace. This needs to be different for
+ # all namespaces. For example "Public/".
+ #prefix =
+
+ # Physical location of the mailbox. This is in same format as
+ # mail_location, which is also the default for it.
+ #location =
+
+ # There can be only one INBOX, and this setting defines which namespace
+ # has it.
+ inbox = yes
+
+ # If namespace is hidden, it's not advertised to clients via NAMESPACE
+ # extension. You'll most likely also want to set list=no. This is mostly
+ # useful when converting from another server with different namespaces which
+ # you want to deprecate but still keep working. For example you can create
+ # hidden namespaces with prefixes "~/mail/", "~%u/mail/" and "mail/".
+ #hidden = no
+
+ # Show the mailboxes under this namespace with LIST command. This makes the
+ # namespace visible for clients that don't support NAMESPACE extension.
+ # "children" value lists child mailboxes, but hides the namespace prefix.
+ #list = yes
+
+ # Namespace handles its own subscriptions. If set to "no", the parent
+ # namespace handles them (empty prefix should always have this as "yes")
+ #subscriptions = yes
+
+}
+
+# Example shared namespace configuration
+#namespace {
+ #type = shared
+ #separator = /
+
+ # Mailboxes are visible under "shared/user@domain/"
+ # %%n, %%d and %%u are expanded to the destination user.
+ #prefix = shared/%%u/
+
+ # Mail location for other users' mailboxes. Note that %variables and ~/
+ # expands to the logged in user's data. %%n, %%d, %%u and %%h expand to the
+ # destination user's data.
+ #location = maildir:%%h/Maildir:INDEX=~/Maildir/shared/%%u
+
+ # Use the default namespace for saving subscriptions.
+ #subscriptions = no
+
+ # List the shared/ namespace only if there are visible shared mailboxes.
+ #list = children
+#}
+# Should shared INBOX be visible as "shared/user" or "shared/user/INBOX"?
+#mail_shared_explicit_inbox = no
+
+# System user and group used to access mails. If you use multiple, userdb
+# can override these by returning uid or gid fields. You can use either numbers
+# or names. <doc/wiki/UserIds.txt>
+mail_uid = 5000
+mail_gid = 5000
+
+# Group to enable temporarily for privileged operations. Currently this is
+# used only with INBOX when either its initial creation or dotlocking fails.
+# Typically this is set to "mail" to give access to /var/mail.
+#mail_privileged_group =
+
+# Grant access to these supplementary groups for mail processes. Typically
+# these are used to set up access to shared mailboxes. Note that it may be
+# dangerous to set these if users can create symlinks (e.g. if "mail" group is
+# set here, ln -s /var/mail ~/mail/var could allow a user to delete others'
+# mailboxes, or ln -s /secret/shared/box ~/mail/mybox would allow reading it).
+#mail_access_groups =
+
+# Allow full filesystem access to clients. There's no access checks other than
+# what the operating system does for the active UID/GID. It works with both
+# maildir and mboxes, allowing you to prefix mailboxes names with eg. /path/
+# or ~user/.
+#mail_full_filesystem_access = no
+
+# Dictionary for key=value mailbox attributes. Currently used by URLAUTH, but
+# soon intended to be used by METADATA as well.
+#mail_attribute_dict =
+
+##
+## Mail processes
+##
+
+# Don't use mmap() at all. This is required if you store indexes to shared
+# filesystems (NFS or clustered filesystem).
+#mmap_disable = no
+
+# Rely on O_EXCL to work when creating dotlock files. NFS supports O_EXCL
+# since version 3, so this should be safe to use nowadays by default.
+#dotlock_use_excl = yes
+
+# When to use fsync() or fdatasync() calls:
+# optimized (default): Whenever necessary to avoid losing important data
+# always: Useful with e.g. NFS when write()s are delayed
+# never: Never use it (best performance, but crashes can lose data)
+#mail_fsync = optimized
+
+# Locking method for index files. Alternatives are fcntl, flock and dotlock.
+# Dotlocking uses some tricks which may create more disk I/O than other locking
+# methods. NFS users: flock doesn't work, remember to change mmap_disable.
+#lock_method = fcntl
+
+# Directory in which LDA/LMTP temporarily stores incoming mails >128 kB.
+#mail_temp_dir = /tmp
+
+# Valid UID range for users, defaults to 500 and above. This is mostly
+# to make sure that users can't log in as daemons or other system users.
+# Note that denying root logins is hardcoded to dovecot binary and can't
+# be done even if first_valid_uid is set to 0.
+#first_valid_uid = 500
+#last_valid_uid = 0
+
+# Valid GID range for users, defaults to non-root/wheel. Users having
+# non-valid GID as primary group ID aren't allowed to log in. If user
+# belongs to supplementary groups with non-valid GIDs, those groups are
+# not set.
+#first_valid_gid = 1
+#last_valid_gid = 0
+
+# Maximum allowed length for mail keyword name. It's only forced when trying
+# to create new keywords.
+#mail_max_keyword_length = 50
+
+# ':' separated list of directories under which chrooting is allowed for mail
+# processes (ie. /var/mail will allow chrooting to /var/mail/foo/bar too).
+# This setting doesn't affect login_chroot, mail_chroot or auth chroot
+# settings. If this setting is empty, "/./" in home dirs are ignored.
+# WARNING: Never add directories here which local users can modify, that
+# may lead to root exploit. Usually this should be done only if you don't
+# allow shell access for users. <doc/wiki/Chrooting.txt>
+#valid_chroot_dirs =
+
+# Default chroot directory for mail processes. This can be overridden for
+# specific users in user database by giving /./ in user's home directory
+# (eg. /home/./user chroots into /home). Note that usually there is no real
+# need to do chrooting, Dovecot doesn't allow users to access files outside
+# their mail directory anyway. If your home directories are prefixed with
+# the chroot directory, append "/." to mail_chroot. <doc/wiki/Chrooting.txt>
+#mail_chroot =
+
+# UNIX socket path to master authentication server to find users.
+# This is used by imap (for shared users) and lda.
+#auth_socket_path = /var/run/dovecot/auth-userdb
+
+# Directory where to look up mail plugins.
+#mail_plugin_dir = /usr/lib/dovecot/modules
+
+# Space separated list of plugins to load for all services. Plugins specific to
+# IMAP, LDA, etc. are added to this list in their own .conf files.
+#mail_plugins =
+
+##
+## Mailbox handling optimizations
+##
+
+# Mailbox list indexes can be used to optimize IMAP STATUS commands. They are
+# also required for IMAP NOTIFY extension to be enabled.
+#mailbox_list_index = no
+
+# The minimum number of mails in a mailbox before updates are done to cache
+# file. This allows optimizing Dovecot's behavior to do less disk writes at
+# the cost of more disk reads.
+#mail_cache_min_mail_count = 0
+
+# When IDLE command is running, mailbox is checked once in a while to see if
+# there are any new mails or other changes. This setting defines the minimum
+# time to wait between those checks. Dovecot can also use dnotify, inotify and
+# kqueue to find out immediately when changes occur.
+#mailbox_idle_check_interval = 30 secs
+
+# Save mails with CR+LF instead of plain LF. This makes sending those mails
+# take less CPU, especially with sendfile() syscall with Linux and FreeBSD.
+# But it also creates a bit more disk I/O which may just make it slower.
+# Also note that if other software reads the mboxes/maildirs, they may handle
+# the extra CRs wrong and cause problems.
+#mail_save_crlf = no
+
+# Max number of mails to keep open and prefetch to memory. This only works with
+# some mailbox formats and/or operating systems.
+#mail_prefetch_count = 0
+
+# How often to scan for stale temporary files and delete them (0 = never).
+# These should exist only after Dovecot dies in the middle of saving mails.
+#mail_temp_scan_interval = 1w
+
+##
+## Maildir-specific settings
+##
+
+# By default LIST command returns all entries in maildir beginning with a dot.
+# Enabling this option makes Dovecot return only entries which are directories.
+# This is done by stat()ing each entry, so it causes more disk I/O.
+# (For systems setting struct dirent->d_type, this check is free and it's
+# done always regardless of this setting)
+#maildir_stat_dirs = no
+
+# When copying a message, do it with hard links whenever possible. This makes
+# the performance much better, and it's unlikely to have any side effects.
+#maildir_copy_with_hardlinks = yes
+
+# Assume Dovecot is the only MUA accessing Maildir: Scan cur/ directory only
+# when its mtime changes unexpectedly or when we can't find the mail otherwise.
+#maildir_very_dirty_syncs = no
+
+# If enabled, Dovecot doesn't use the S=<size> in the Maildir filenames for
+# getting the mail's physical size, except when recalculating Maildir++ quota.
+# This can be useful in systems where a lot of the Maildir filenames have a
+# broken size. The performance hit for enabling this is very small.
+#maildir_broken_filename_sizes = no
+
+# Always move mails from new/ directory to cur/, even when the \Recent flags
+# aren't being reset.
+#maildir_empty_new = no
+
+##
+## mbox-specific settings
+##
+
+# Which locking methods to use for locking mbox. There are four available:
+# dotlock: Create <mailbox>.lock file. This is the oldest and most NFS-safe
+# solution. If you want to use /var/mail/ like directory, the users
+# will need write access to that directory.
+# dotlock_try: Same as dotlock, but if it fails because of permissions or
+# because there isn't enough disk space, just skip it.
+# fcntl : Use this if possible. Works with NFS too if lockd is used.
+# flock : May not exist in all systems. Doesn't work with NFS.
+# lockf : May not exist in all systems. Doesn't work with NFS.
+#
+# You can use multiple locking methods; if you do the order they're declared
+# in is important to avoid deadlocks if other MTAs/MUAs are using multiple
+# locking methods as well. Some operating systems don't allow using some of
+# them simultaneously.
+#
+# The Debian value for mbox_write_locks differs from upstream Dovecot. It is
+# changed to be compliant with Debian Policy (section 11.6) for NFS safety.
+# Dovecot: mbox_write_locks = dotlock fcntl
+# Debian: mbox_write_locks = fcntl dotlock
+#
+#mbox_read_locks = fcntl
+#mbox_write_locks = fcntl dotlock
+
+# Maximum time to wait for lock (all of them) before aborting.
+#mbox_lock_timeout = 5 mins
+
+# If dotlock exists but the mailbox isn't modified in any way, override the
+# lock file after this much time.
+#mbox_dotlock_change_timeout = 2 mins
+
+# When mbox changes unexpectedly we have to fully read it to find out what
+# changed. If the mbox is large this can take a long time. Since the change
+# is usually just a newly appended mail, it'd be faster to simply read the
+# new mails. If this setting is enabled, Dovecot does this but still safely
+# fallbacks to re-reading the whole mbox file whenever something in mbox isn't
+# how it's expected to be. The only real downside to this setting is that if
+# some other MUA changes message flags, Dovecot doesn't notice it immediately.
+# Note that a full sync is done with SELECT, EXAMINE, EXPUNGE and CHECK
+# commands.
+#mbox_dirty_syncs = yes
+
+# Like mbox_dirty_syncs, but don't do full syncs even with SELECT, EXAMINE,
+# EXPUNGE or CHECK commands. If this is set, mbox_dirty_syncs is ignored.
+#mbox_very_dirty_syncs = no
+
+# Delay writing mbox headers until doing a full write sync (EXPUNGE and CHECK
+# commands and when closing the mailbox). This is especially useful for POP3
+# where clients often delete all mails. The downside is that our changes
+# aren't immediately visible to other MUAs.
+#mbox_lazy_writes = yes
+
+# If mbox size is smaller than this (e.g. 100k), don't write index files.
+# If an index file already exists it's still read, just not updated.
+#mbox_min_index_size = 0
+
+# Mail header selection algorithm to use for MD5 POP3 UIDLs when
+# pop3_uidl_format=%m. For backwards compatibility we use apop3d inspired
+# algorithm, but it fails if the first Received: header isn't unique in all
+# mails. An alternative algorithm is "all" that selects all headers.
+#mbox_md5 = apop3d
+
+##
+## mdbox-specific settings
+##
+
+# Maximum dbox file size until it's rotated.
+#mdbox_rotate_size = 2M
+
+# Maximum dbox file age until it's rotated. Typically in days. Day begins
+# from midnight, so 1d = today, 2d = yesterday, etc. 0 = check disabled.
+#mdbox_rotate_interval = 0
+
+# When creating new mdbox files, immediately preallocate their size to
+# mdbox_rotate_size. This setting currently works only in Linux with some
+# filesystems (ext4, xfs).
+#mdbox_preallocate_space = no
+
+##
+## Mail attachments
+##
+
+# sdbox and mdbox support saving mail attachments to external files, which
+# also allows single instance storage for them. Other backends don't support
+# this for now.
+
+# Directory root where to store mail attachments. Disabled, if empty.
+#mail_attachment_dir =
+
+# Attachments smaller than this aren't saved externally. It's also possible to
+# write a plugin to disable saving specific attachments externally.
+#mail_attachment_min_size = 128k
+
+# Filesystem backend to use for saving attachments:
+# posix : No SiS done by Dovecot (but this might help FS's own deduplication)
+# sis posix : SiS with immediate byte-by-byte comparison during saving
+# sis-queue posix : SiS with delayed comparison and deduplication
+#mail_attachment_fs = sis posix
+
+# Hash format to use in attachment filenames. You can add any text and
+# variables: %{md4}, %{md5}, %{sha1}, %{sha256}, %{sha512}, %{size}.
+# Variables can be truncated, e.g. %{sha256:80} returns only first 80 bits
+#mail_attachment_hash = %{sha1}
--- /dev/null
+
+
+#default_process_limit = 100
+#default_client_limit = 1000
+
+# Default VSZ (virtual memory size) limit for service processes. This is mainly
+# intended to catch and kill processes that leak memory before they eat up
+# everything.
+#default_vsz_limit = 256M
+
+# Login user is internally used by login processes. This is the most untrusted
+# user in Dovecot system. It shouldn't have access to anything at all.
+#default_login_user = dovenull
+
+# Internal user is used by unprivileged processes. It should be separate from
+# login user, so that login processes can't disturb other processes.
+#default_internal_user = dovecot
+
+service imap-login {
+ inet_listener imap {
+ port = 143
+ }
+ inet_listener imaps {
+ port = 993
+ ssl = yes
+ }
+
+ # Number of connections to handle before starting a new process. Typically
+ # the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0
+ # is faster. <doc/wiki/LoginProcess.txt>
+ #service_count = 1
+
+ # Number of processes to always keep waiting for more connections.
+ #process_min_avail = 0
+
+ # If you set service_count=0, you probably need to grow this.
+ #vsz_limit = $default_vsz_limit
+}
+
+#service pop3-login {
+# inet_listener pop3 {
+# #port = 110
+# }
+# inet_listener pop3s {
+# #port = 995
+# #ssl = yes
+# }
+#}
+
+service lmtp {
+ unix_listener /var/spool/postfix/private/dovecot-lmtp {
+ group = postfix
+ mode = 0666
+ user = postfix
+ }
+ unix_listener lmtp {
+ mode = 0666
+ }
+ user = vmail
+ executable = lmtp -L
+
+ # Create inet listener only if you can't use the above UNIX socket
+ #inet_listener lmtp {
+ # Avoid making LMTP visible for the entire internet
+ #address =
+ #port =
+ #}
+}
+
+service imap {
+ # Most of the memory goes to mmap()ing files. You may need to increase this
+ # limit if you have huge mailboxes.
+ #vsz_limit = $default_vsz_limit
+
+ # Max. number of IMAP processes (connections)
+ #process_limit = 1024
+}
+
+service pop3 {
+ # Max. number of POP3 processes (connections)
+ #process_limit = 1024
+}
+
+service auth {
+ # auth_socket_path points to this userdb socket by default. It's typically
+ # used by dovecot-lda, doveadm, possibly imap process, etc. Users that have
+ # full permissions to this socket are able to get a list of all usernames and
+ # get the results of everyone's userdb lookups.
+ #
+ # The default 0666 mode allows anyone to connect to the socket, but the
+ # userdb lookups will succeed only if the userdb returns an "uid" field that
+ # matches the caller process's UID. Also if caller's uid or gid matches the
+ # socket's uid or gid the lookup succeeds. Anything else causes a failure.
+ #
+ # To give the caller full permissions to lookup all users, set the mode to
+ # something else than 0666 and Dovecot lets the kernel enforce the
+ # permissions (e.g. 0777 allows everyone full permissions).
+ unix_listener auth-userdb {
+ #mode = 0666
+ #user =
+ #group =
+ }
+
+# Postfix smtp-auth
+ unix_listener /var/spool/postfix/private/auth_dovecot {
+ mode = 0660
+ user = postfix
+ group = postfix
+ }
+
+ # Auth process is run as this user.
+ #user = $default_internal_user
+}
+
+service auth-worker {
+ # Auth worker process is run as root by default, so that it can access
+ # /etc/shadow. If this isn't necessary, the user should be changed to
+ # $default_internal_user.
+ #user = root
+}
+
+service dict {
+ # If dict proxy is used, mail processes should have access to its socket.
+ # For example: mode=0660, group=vmail and global mail_access_groups=vmail
+ unix_listener dict {
+ #mode = 0600
+ #user =
+ #group =
+ }
+}
+
+# Postfix smtp-auth
+#unix_listener /var/spool/postfix/private/auth_dovecot {
+# mode = 0660
+# user = postfix
+# group = postfix
+#}
\ No newline at end of file
--- /dev/null
+##
+## SSL settings
+##
+
+# SSL/TLS support: yes, no, required. <doc/wiki/SSL.txt>
+ssl = yes
+
+# PEM encoded X.509 SSL/TLS certificate and private key. They're opened before
+# dropping root privileges, so keep the key file unreadable by anyone but
+# root. Included doc/mkcert.sh can be used to easily generate self-signed
+# certificate, just make sure to update the domains in dovecot-openssl.cnf
+ssl_cert = </etc/letsencrypt/live/mail.triathlon-coaching.com/fullchain.pem
+ssl_key = </etc/letsencrypt/live/mail.triathlon-coaching.com/privkey.pem
+
+# If key file is password protected, give the password here. Alternatively
+# give it when starting dovecot with -p parameter. Since this file is often
+# world-readable, you may want to place this setting instead to a different
+# root owned 0600 file by using ssl_key_password = <path.
+#ssl_key_password =
+
+# PEM encoded trusted certificate authority. Set this only if you intend to use
+# ssl_verify_client_cert=yes. The file should contain the CA certificate(s)
+# followed by the matching CRL(s). (e.g. ssl_ca = </etc/ssl/certs/ca.pem)
+#ssl_ca =
+
+# Require that CRL check succeeds for client certificates.
+#ssl_require_crl = yes
+
+# Directory and/or file for trusted SSL CA certificates. These are used only
+# when Dovecot needs to act as an SSL client (e.g. imapc backend or
+# submission service). The directory is usually /etc/ssl/certs in
+# Debian-based systems and the file is /etc/pki/tls/cert.pem in
+# RedHat-based systems. Note that ssl_client_ca_file isn't recommended with
+# large CA bundles, because it leads to excessive memory usage.
+#ssl_client_ca_dir =
+ssl_client_ca_dir = /etc/ssl/certs
+#ssl_client_ca_file =
+
+# Require valid cert when connecting to a remote server
+#ssl_client_require_valid_cert = yes
+
+# Request client to send a certificate. If you also want to require it, set
+# auth_ssl_require_client_cert=yes in auth section.
+#ssl_verify_client_cert = no
+
+# Which field from certificate to use for username. commonName and
+# x500UniqueIdentifier are the usual choices. You'll also need to set
+# auth_ssl_username_from_cert=yes.
+#ssl_cert_username_field = commonName
+
+# SSL DH parameters
+# Generate new params with `openssl dhparam -out /etc/dovecot/dh.pem 4096`
+# Or migrate from old ssl-parameters.dat file with the command dovecot
+# gives on startup when ssl_dh is unset.
+ssl_dh = </usr/share/dovecot/dh.pem
+
+# Minimum SSL protocol version to use. Potentially recognized values are SSLv3,
+# TLSv1, TLSv1.1, and TLSv1.2, depending on the OpenSSL version used.
+#ssl_min_protocol = TLSv1
+
+# SSL ciphers to use, the default is:
+#ssl_cipher_list = ALL:!kRSA:!SRP:!kDHd:!DSS:!aNULL:!eNULL:!EXPORT:!DES:!3DES:!MD5:!PSK:!RC4:!ADH:!LOW@STRENGTH
+# To disable non-EC DH, use:
+#ssl_cipher_list = ALL:!DH:!kRSA:!SRP:!kDHd:!DSS:!aNULL:!eNULL:!EXPORT:!DES:!3DES:!MD5:!PSK:!RC4:!ADH:!LOW@STRENGTH
+
+# Colon separated list of elliptic curves to use. Empty value (the default)
+# means use the defaults from the SSL library. P-521:P-384:P-256 would be an
+# example of a valid value.
+#ssl_curve_list =
+
+# Prefer the server's order of ciphers over client's.
+#ssl_prefer_server_ciphers = no
+
+# SSL crypto device to use, for valid values run "openssl engine"
+#ssl_crypto_device =
+
+# SSL extra options. Currently supported options are:
+# compression - Enable compression.
+# no_ticket - Disable SSL session tickets.
+#ssl_options =
--- /dev/null
+##
+## LDA specific settings (also used by LMTP)
+##
+
+# Address to use when sending rejection mails.
+# Default is postmaster@<your domain>. %d expands to recipient domain.
+postmaster_address = postmaster@laktatnebel.de
+
+# Hostname to use in various parts of sent mails (e.g. in Message-Id) and
+# in LMTP replies. Default is the system's real hostname@domain.
+#hostname =
+
+# If user is over quota, return with temporary failure instead of
+# bouncing the mail.
+#quota_full_tempfail = no
+
+# Binary to use for sending mails.
+#sendmail_path = /usr/sbin/sendmail
+
+# If non-empty, send mails via this SMTP host[:port] instead of sendmail.
+#submission_host =
+
+# Subject: header to use for rejection mails. You can use the same variables
+# as for rejection_reason below.
+#rejection_subject = Rejected: %s
+
+# Human readable error message for rejection mails. You can use variables:
+# %n = CRLF, %r = reason, %s = original subject, %t = recipient
+#rejection_reason = Your message to <%t> was automatically rejected:%n%r
+
+# Delimiter character between local-part and detail in email address.
+recipient_delimiter = +
+
+# Header where the original recipient address (SMTP's RCPT TO: address) is taken
+# from if not available elsewhere. With dovecot-lda -a parameter overrides this.
+# A commonly used header for this is X-Original-To.
+#lda_original_recipient_header =
+
+# Should saving a mail to a nonexistent mailbox automatically create it?
+lda_mailbox_autocreate = yes
+
+# Should automatically created mailboxes be also automatically subscribed?
+lda_mailbox_autosubscribe = yes
+
+protocol lda {
+ # Space separated list of plugins to load (default is global mail_plugins).
+ #mail_plugins = $mail_plugins
+}
--- /dev/null
+##
+## Mailbox definitions
+##
+
+# NOTE: Assumes "namespace inbox" has been defined in 10-mail.conf.
+namespace inbox {
+
+ mailbox Trash {
+ auto = subscribe
+ special_use = \Trash
+ }
+ mailbox "Deleted Messages" {
+ special_use = \Trash
+ }
+ mailbox "Gelöschte Objekte" {
+ special_use = \Trash
+ }
+ mailbox "Papierkorb" {
+ special_use = \Trash
+ }
+ mailbox Archive {
+ auto = subscribe
+ special_use = \Archive
+ }
+ mailbox Archiv {
+ special_use = \Archive
+ }
+ mailbox Archives {
+ special_use = \Archive
+ }
+ mailbox Sent {
+ auto = subscribe
+ special_use = \Sent
+ }
+ mailbox "Sent Messages" {
+ special_use = \Sent
+ }
+ mailbox "Gesendet" {
+ special_use = \Sent
+ }
+ mailbox "Gesendete Objekte" {
+ special_use = \Sent
+ }
+ mailbox Drafts {
+ auto = subscribe
+ special_use = \Drafts
+ }
+ mailbox Entwürfe {
+ special_use = \Drafts
+ }
+ mailbox Junk {
+ auto = subscribe
+ special_use = \Junk
+ }
+
+ #########################
+
+ #mailbox name {
+ # auto=create will automatically create this mailbox.
+ # auto=subscribe will both create and subscribe to the mailbox.
+ #auto = no
+
+ # Space separated list of IMAP SPECIAL-USE attributes as specified by
+ # RFC 6154: \All \Archive \Drafts \Flagged \Junk \Sent \Trash
+ #special_use =
+ #}
+
+ # These mailboxes are widely used and could perhaps be created automatically:
+# mailbox Drafts {
+# special_use = \Drafts
+# }
+# mailbox Junk {
+# special_use = \Junk
+# }
+# mailbox Trash {
+# special_use = \Trash
+# }
+
+ # For \Sent mailboxes there are two widely used names. We'll mark both of
+ # them as \Sent. User typically deletes one of them if duplicates are created.
+# mailbox Sent {
+# special_use = \Sent
+# }
+# mailbox "Sent Messages" {
+# special_use = \Sent
+# }
+
+ # If you have a virtual "All messages" mailbox:
+ #mailbox virtual/All {
+ # special_use = \All
+ #}
+
+ # If you have a virtual "Flagged" mailbox:
+ #mailbox virtual/Flagged {
+ # special_use = \Flagged
+ #}
+}
--- /dev/null
+##
+## IMAP specific settings
+##
+
+# Maximum IMAP command line length. Some clients generate very long command
+# lines with huge mailboxes, so you may need to raise this if you get
+# "Too long argument" or "IMAP command line too large" errors often.
+#imap_max_line_length = 64k
+
+# IMAP logout format string:
+# %i - total number of bytes read from client
+# %o - total number of bytes sent to client
+#imap_logout_format = in=%i out=%o
+
+# Override the IMAP CAPABILITY response. If the value begins with '+',
+# add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
+#imap_capability =
+
+# How long to wait between "OK Still here" notifications when client is
+# IDLEing.
+#imap_idle_notify_interval = 2 mins
+
+# ID field names and values to send to clients. Using * as the value makes
+# Dovecot use the default value. The following fields have default values
+# currently: name, version, os, os-version, support-url, support-email.
+#imap_id_send =
+
+# ID fields sent by client to log. * means everything.
+#imap_id_log =
+
+# Workarounds for various client bugs:
+# delay-newmail:
+# Send EXISTS/RECENT new mail notifications only when replying to NOOP
+# and CHECK commands. Some clients ignore them otherwise, for example OSX
+# Mail (<v2.1). Outlook Express breaks more badly though, without this it
+# may show user "Message no longer in server" errors. Note that OE6 still
+# breaks even with this workaround if synchronization is set to
+# "Headers Only".
+# tb-extra-mailbox-sep:
+# Thunderbird gets somehow confused with LAYOUT=fs (mbox and dbox) and
+# adds extra '/' suffixes to mailbox names. This option causes Dovecot to
+# ignore the extra '/' instead of treating it as invalid mailbox name.
+# tb-lsub-flags:
+# Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
+# This makes Thunderbird realize they aren't selectable and show them
+# greyed out, instead of only later giving "not selectable" popup error.
+#
+# The list is space-separated.
+#imap_client_workarounds =
+
+# Host allowed in URLAUTH URLs sent by client. "*" allows all.
+#imap_urlauth_host =
+
+protocol imap {
+ # Space separated list of plugins to load (default is global mail_plugins).
+ #mail_plugins = $mail_plugins
+
+ # Maximum number of IMAP connections allowed for a user from each IP address.
+ # NOTE: The username is compared case-sensitively.
+ #mail_max_userip_connections = 10
+}
--- /dev/null
+##
+## IMAP specific settings
+##
+
+# If nothing happens for this long while client is IDLEing, move the connection
+# to imap-hibernate process and close the old imap process. This saves memory,
+# because connections use very little memory in imap-hibernate process. The
+# downside is that recreating the imap process back uses some resources.
+#imap_hibernate_timeout = 0
+
+# Maximum IMAP command line length. Some clients generate very long command
+# lines with huge mailboxes, so you may need to raise this if you get
+# "Too long argument" or "IMAP command line too large" errors often.
+#imap_max_line_length = 64k
+
+# IMAP logout format string:
+# %i - total number of bytes read from client
+# %o - total number of bytes sent to client
+# %{fetch_hdr_count} - Number of mails with mail header data sent to client
+# %{fetch_hdr_bytes} - Number of bytes with mail header data sent to client
+# %{fetch_body_count} - Number of mails with mail body data sent to client
+# %{fetch_body_bytes} - Number of bytes with mail body data sent to client
+# %{deleted} - Number of mails where client added \Deleted flag
+# %{expunged} - Number of mails that client expunged, which does not
+# include automatically expunged mails
+# %{autoexpunged} - Number of mails that were automatically expunged after
+# client disconnected
+# %{trashed} - Number of mails that client copied/moved to the
+# special_use=\Trash mailbox.
+# %{appended} - Number of mails saved during the session
+#imap_logout_format = in=%i out=%o deleted=%{deleted} expunged=%{expunged} \
+# trashed=%{trashed} hdr_count=%{fetch_hdr_count} \
+# hdr_bytes=%{fetch_hdr_bytes} body_count=%{fetch_body_count} \
+# body_bytes=%{fetch_body_bytes}
+
+# Override the IMAP CAPABILITY response. If the value begins with '+',
+# add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
+#imap_capability =
+
+# How long to wait between "OK Still here" notifications when client is
+# IDLEing.
+#imap_idle_notify_interval = 2 mins
+
+# ID field names and values to send to clients. Using * as the value makes
+# Dovecot use the default value. The following fields have default values
+# currently: name, version, os, os-version, support-url, support-email,
+# revision.
+#imap_id_send =
+
+# ID fields sent by client to log. * means everything.
+#imap_id_log =
+
+# Workarounds for various client bugs:
+# delay-newmail:
+# Send EXISTS/RECENT new mail notifications only when replying to NOOP
+# and CHECK commands. Some clients ignore them otherwise, for example OSX
+# Mail (<v2.1). Outlook Express breaks more badly though, without this it
+# may show user "Message no longer in server" errors. Note that OE6 still
+# breaks even with this workaround if synchronization is set to
+# "Headers Only".
+# tb-extra-mailbox-sep:
+# Thunderbird gets somehow confused with LAYOUT=fs (mbox and dbox) and
+# adds extra '/' suffixes to mailbox names. This option causes Dovecot to
+# ignore the extra '/' instead of treating it as invalid mailbox name.
+# tb-lsub-flags:
+# Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
+# This makes Thunderbird realize they aren't selectable and show them
+# greyed out, instead of only later giving "not selectable" popup error.
+#
+# The list is space-separated.
+#imap_client_workarounds =
+
+# Host allowed in URLAUTH URLs sent by client. "*" allows all.
+#imap_urlauth_host =
+
+# Enable IMAP LITERAL- extension (replaces LITERAL+)
+#imap_literal_minus = no
+
+# What happens when FETCH fails due to some internal error:
+# disconnect-immediately:
+# The FETCH is aborted immediately and the IMAP client is disconnected.
+# disconnect-after:
+# The FETCH runs for all the requested mails returning as much data as
+# possible. The client is finally disconnected without a tagged reply.
+# no-after:
+# Same as disconnect-after, but tagged NO reply is sent instead of
+# disconnecting the client. If the client attempts to FETCH the same failed
+# mail more than once, the client is disconnected. This is to avoid clients
+# from going into infinite loops trying to FETCH a broken mail.
+#imap_fetch_failure = disconnect-immediately
+
+protocol imap {
+ # Space separated list of plugins to load (default is global mail_plugins).
+ #mail_plugins = $mail_plugins
+
+ # Maximum number of IMAP connections allowed for a user from each IP address.
+ # NOTE: The username is compared case-sensitively.
+ #mail_max_userip_connections = 10
+}
--- /dev/null
+##
+## LMTP specific settings
+##
+
+info_log_path = /var/log/dovecot-lmtp.log
+
+# Support proxying to other LMTP/SMTP servers by performing passdb lookups.
+#lmtp_proxy = no
+
+# When recipient address includes the detail (e.g. user+detail), try to save
+# the mail to the detail mailbox. See also recipient_delimiter and
+# lda_mailbox_autocreate settings.
+#lmtp_save_to_detail_mailbox = no
+
+# Verify quota before replying to RCPT TO. This adds a small overhead.
+#lmtp_rcpt_check_quota = no
+
+protocol lmtp {
+ # Space separated list of plugins to load (default is global mail_plugins).
+ mail_plugins = $mail_plugins sieve
+ postmaster_address = postmaster@laktatnebel.de
+}
+
\ No newline at end of file
--- /dev/null
+##
+## LMTP specific settings
+##
+
+# Support proxying to other LMTP/SMTP servers by performing passdb lookups.
+#lmtp_proxy = no
+
+# When recipient address includes the detail (e.g. user+detail), try to save
+# the mail to the detail mailbox. See also recipient_delimiter and
+# lda_mailbox_autocreate settings.
+#lmtp_save_to_detail_mailbox = no
+
+# Verify quota before replying to RCPT TO. This adds a small overhead.
+#lmtp_rcpt_check_quota = no
+
+# Add "Received:" header to mails delivered.
+#lmtp_add_received_header = yes
+
+# Which recipient address to use for Delivered-To: header and Received:
+# header. The default is "final", which is the same as the one given to
+# RCPT TO command. "original" uses the address given in RCPT TO's ORCPT
+# parameter, "none" uses nothing. Note that "none" is currently always used
+# when a mail has multiple recipients.
+#lmtp_hdr_delivery_address = final
+
+# Workarounds for various client bugs:
+# whitespace-before-path:
+# Allow one or more spaces or tabs between `MAIL FROM:' and path and between
+# `RCPT TO:' and path.
+# mailbox-for-path:
+# Allow using bare Mailbox syntax (i.e., without <...>) instead of full path
+# syntax.
+#
+# The list is space-separated.
+#lmtp_client_workarounds =
+
+protocol lmtp {
+ # Space separated list of plugins to load (default is global mail_plugins).
+ #mail_plugins = $mail_plugins
+}
--- /dev/null
+##
+## ManageSieve specific settings
+##
+
+# Uncomment to enable managesieve protocol:
+#protocols = $protocols sieve
+
+# Service definitions
+
+#service managesieve-login {
+ #inet_listener sieve {
+ # port = 4190
+ #}
+
+ #inet_listener sieve_deprecated {
+ # port = 2000
+ #}
+
+ # Number of connections to handle before starting a new process. Typically
+ # the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0
+ # is faster. <doc/wiki/LoginProcess.txt>
+ #service_count = 1
+
+ # Number of processes to always keep waiting for more connections.
+ #process_min_avail = 0
+
+ # If you set service_count=0, you probably need to grow this.
+ #vsz_limit = 64M
+#}
+
+#service managesieve {
+ # Max. number of ManageSieve processes (connections)
+ #process_limit = 1024
+#}
+
+# Service configuration
+
+protocol sieve {
+ # Maximum ManageSieve command line length in bytes. ManageSieve usually does
+ # not involve overly long command lines, so this setting will not normally
+ # need adjustment
+ #managesieve_max_line_length = 65536
+
+ # Maximum number of ManageSieve connections allowed for a user from each IP
+ # address.
+ # NOTE: The username is compared case-sensitively.
+ #mail_max_userip_connections = 10
+
+ # Space separated list of plugins to load (none known to be useful so far).
+ # Do NOT try to load IMAP plugins here.
+ #mail_plugins =
+
+ # MANAGESIEVE logout format string:
+ # %i - total number of bytes read from client
+ # %o - total number of bytes sent to client
+ #managesieve_logout_format = bytes=%i/%o
+
+ # To fool ManageSieve clients that are focused on CMU's timesieved you can
+ # specify the IMPLEMENTATION capability that Dovecot reports to clients.
+ # For example: 'Cyrus timsieved v2.2.13'
+ #managesieve_implementation_string = Dovecot Pigeonhole
+
+ # Explicitly specify the SIEVE and NOTIFY capability reported by the server
+ # before login. If left unassigned these will be reported dynamically
+ # according to what the Sieve interpreter supports by default (after login
+ # this may differ depending on the user).
+ #managesieve_sieve_capability =
+ #managesieve_notify_capability =
+
+ # The maximum number of compile errors that are returned to the client upon
+ # script upload or script verification.
+ #managesieve_max_compile_errors = 5
+
+ # Refer to 90-sieve.conf for script quota configuration and configuration of
+ # Sieve execution limits.
+}
--- /dev/null
+##
+## POP3 specific settings
+##
+
+# Don't try to set mails non-recent or seen with POP3 sessions. This is
+# mostly intended to reduce disk I/O. With maildir it doesn't move files
+# from new/ to cur/, with mbox it doesn't write Status-header.
+#pop3_no_flag_updates = no
+
+# Support LAST command which exists in old POP3 specs, but has been removed
+# from new ones. Some clients still wish to use this though. Enabling this
+# makes RSET command clear all \Seen flags from messages.
+#pop3_enable_last = no
+
+# If mail has X-UIDL header, use it as the mail's UIDL.
+#pop3_reuse_xuidl = no
+
+# Allow only one POP3 session to run simultaneously for the same user.
+#pop3_lock_session = no
+
+# POP3 requires message sizes to be listed as if they had CR+LF linefeeds.
+# Many POP3 servers violate this by returning the sizes with LF linefeeds,
+# because it's faster to get. When this setting is enabled, Dovecot still
+# tries to do the right thing first, but if that requires opening the
+# message, it fallbacks to the easier (but incorrect) size.
+#pop3_fast_size_lookups = no
+
+# POP3 UIDL (unique mail identifier) format to use. You can use following
+# variables, along with the variable modifiers described in
+# doc/wiki/Variables.txt (e.g. %Uf for the filename in uppercase)
+#
+# %v - Mailbox's IMAP UIDVALIDITY
+# %u - Mail's IMAP UID
+# %m - MD5 sum of the mailbox headers in hex (mbox only)
+# %f - filename (maildir only)
+# %g - Mail's GUID
+#
+# If you want UIDL compatibility with other POP3 servers, use:
+# UW's ipop3d : %08Xv%08Xu
+# Courier : %f or %v-%u (both might be used simultaneosly)
+# Cyrus (<= 2.1.3) : %u
+# Cyrus (>= 2.1.4) : %v.%u
+# Dovecot v0.99.x : %v.%u
+# tpop3d : %Mf
+#
+# Note that Outlook 2003 seems to have problems with %v.%u format which was
+# Dovecot's default, so if you're building a new server it would be a good
+# idea to change this. %08Xu%08Xv should be pretty fail-safe.
+#
+#pop3_uidl_format = %08Xu%08Xv
+
+# Permanently save UIDLs sent to POP3 clients, so pop3_uidl_format changes
+# won't change those UIDLs. Currently this works only with Maildir.
+#pop3_save_uidl = no
+
+# What to do about duplicate UIDLs if they exist?
+# allow: Show duplicates to clients.
+# rename: Append a temporary -2, -3, etc. counter after the UIDL.
+#pop3_uidl_duplicates = allow
+
+# This option changes POP3 behavior so that it's not possible to actually
+# delete mails via POP3, only hide them from future POP3 sessions. The mails
+# will still be counted towards user's quota until actually deleted via IMAP.
+# Use e.g. "$POP3Deleted" as the value (it will be visible as IMAP keyword).
+# Make sure you can legally archive mails before enabling this setting.
+#pop3_deleted_flag =
+
+# POP3 logout format string:
+# %i - total number of bytes read from client
+# %o - total number of bytes sent to client
+# %t - number of TOP commands
+# %p - number of bytes sent to client as a result of TOP command
+# %r - number of RETR commands
+# %b - number of bytes sent to client as a result of RETR command
+# %d - number of deleted messages
+# %m - number of messages (before deletion)
+# %s - mailbox size in bytes (before deletion)
+# %u - old/new UIDL hash. may help finding out if UIDLs changed unexpectedly
+#pop3_logout_format = top=%t/%p, retr=%r/%b, del=%d/%m, size=%s
+
+# Workarounds for various client bugs:
+# outlook-no-nuls:
+# Outlook and Outlook Express hang if mails contain NUL characters.
+# This setting replaces them with 0x80 character.
+# oe-ns-eoh:
+# Outlook Express and Netscape Mail breaks if end of headers-line is
+# missing. This option simply sends it if it's missing.
+# The list is space-separated.
+#pop3_client_workarounds =
+
+protocol pop3 {
+ # Space separated list of plugins to load (default is global mail_plugins).
+ #mail_plugins = $mail_plugins
+
+ # Maximum number of POP3 connections allowed for a user from each IP address.
+ # NOTE: The username is compared case-sensitively.
+ #mail_max_userip_connections = 10
+}
--- /dev/null
+##
+## Quota configuration.
+##
+
+# Note that you also have to enable quota plugin in mail_plugins setting.
+# <doc/wiki/Quota.txt>
+
+##
+## Quota limits
+##
+
+# Quota limits are set using "quota_rule" parameters. To get per-user quota
+# limits, you can set/override them by returning "quota_rule" extra field
+# from userdb. It's also possible to give mailbox-specific limits, for example
+# to give additional 100 MB when saving to Trash:
+
+plugin {
+ #quota_rule = *:storage=1G
+ #quota_rule2 = Trash:storage=+100M
+
+ # LDA/LMTP allows saving the last mail to bring user from under quota to
+ # over quota, if the quota doesn't grow too high. Default is to allow as
+ # long as quota will stay under 10% above the limit. Also allowed e.g. 10M.
+ #quota_grace = 10%%
+}
+
+##
+## Quota warnings
+##
+
+# You can execute a given command when user exceeds a specified quota limit.
+# Each quota root has separate limits. Only the command for the first
+# exceeded limit is excecuted, so put the highest limit first.
+# The commands are executed via script service by connecting to the named
+# UNIX socket (quota-warning below).
+# Note that % needs to be escaped as %%, otherwise "% " expands to empty.
+
+plugin {
+ #quota_warning = storage=95%% quota-warning 95 %u
+ #quota_warning2 = storage=80%% quota-warning 80 %u
+}
+
+# Example quota-warning service. The unix listener's permissions should be
+# set in a way that mail processes can connect to it. Below example assumes
+# that mail processes run as vmail user. If you use mode=0666, all system users
+# can generate quota warnings to anyone.
+#service quota-warning {
+# executable = script /usr/local/bin/quota-warning.sh
+# user = dovecot
+# unix_listener quota-warning {
+# user = vmail
+# }
+#}
+
+##
+## Quota backends
+##
+
+# Multiple backends are supported:
+# dirsize: Find and sum all the files found from mail directory.
+# Extremely SLOW with Maildir. It'll eat your CPU and disk I/O.
+# dict: Keep quota stored in dictionary (eg. SQL)
+# maildir: Maildir++ quota
+# fs: Read-only support for filesystem quota
+
+plugin {
+ #quota = dirsize:User quota
+ #quota = maildir:User quota
+ #quota = dict:User quota::proxy::quota
+ #quota = fs:User quota
+}
+
+# Multiple quota roots are also possible, for example this gives each user
+# their own 100MB quota and one shared 1GB quota within the domain:
+plugin {
+ #quota = dict:user::proxy::quota
+ #quota2 = dict:domain:%d:proxy::quota_domain
+ #quota_rule = *:storage=102400
+ #quota2_rule = *:storage=1048576
+}
--- /dev/null
+# Sieve Extprograms plugin configuration
+
+# Don't forget to add the sieve_extprograms plugin to the sieve_plugins setting.
+# Also enable the extensions you need (one or more of vnd.dovecot.pipe,
+# vnd.dovecot.filter and vnd.dovecot.execute) by adding these to the
+# sieve_extensions or sieve_global_extensions settings. Restricting these
+# extensions to a global context using sieve_global_extensions is recommended.
+
+plugin {
+
+ # The directory where the program sockets are located for the
+ # vnd.dovecot.pipe, vnd.dovecot.filter and vnd.dovecot.execute extension
+ # respectively. The name of each unix socket contained in that directory
+ # directly maps to a program-name referenced from the Sieve script.
+ #sieve_pipe_socket_dir = sieve-pipe
+ #sieve_filter_socket_dir = sieve-filter
+ #sieve_execute_socket_dir = sieve-execute
+
+ # The directory where the scripts are located for direct execution by the
+ # vnd.dovecot.pipe, vnd.dovecot.filter and vnd.dovecot.execute extension
+ # respectively. The name of each script contained in that directory
+ # directly maps to a program-name referenced from the Sieve script.
+ #sieve_pipe_bin_dir = /usr/lib/dovecot/sieve-pipe
+ #sieve_filter_bin_dir = /usr/lib/dovecot/sieve-filter
+ #sieve_execute_bin_dir = /usr/lib/dovecot/sieve-execute
+}
+
+# An example program service called 'do-something' to pipe messages to
+#service do-something {
+ # Define the executed script as parameter to the sieve service
+ #executable = script /usr/lib/dovecot/sieve-pipe/do-something.sh
+
+ # Use some unprivileged user for executing the program
+ #user = dovenull
+
+ # The unix socket located in the sieve_pipe_socket_dir (as defined in the
+ # plugin {} section above)
+ #unix_listener sieve-pipe/do-something {
+ # LDA/LMTP must have access
+ # user = vmail
+ # mode = 0600
+ #}
+#}
+
--- /dev/null
+##
+## Settings for the Sieve interpreter
+##
+
+# Do not forget to enable the Sieve plugin in 15-lda.conf and 20-lmtp.conf
+# by adding it to the respective mail_plugins= settings.
+
+plugin {
+ # The path to the user's main active script. If ManageSieve is used, this the
+ # location of the symbolic link controlled by ManageSieve.
+ sieve = ~/.dovecot.sieve
+
+ # The default Sieve script when the user has none. This is a path to a global
+ # sieve script file, which gets executed ONLY if user's private Sieve script
+ # doesn't exist. Be sure to pre-compile this script manually using the sievec
+ # command line tool.
+ # --> See sieve_before fore executing scripts before the user's personal
+ # script.
+ #sieve_default = /var/lib/dovecot/sieve/default.sieve
+
+ # Directory for :personal include scripts for the include extension. This
+ # is also where the ManageSieve service stores the user's scripts.
+ sieve_dir = ~/sieve
+
+ # Directory for :global include scripts for the include extension.
+ #sieve_global_dir =
+
+ # Path to a script file or a directory containing script files that need to be
+ # executed before the user's script. If the path points to a directory, all
+ # the Sieve scripts contained therein (with the proper .sieve extension) are
+ # executed. The order of execution within a directory is determined by the
+ # file names, using a normal 8bit per-character comparison. Multiple script
+ # file or directory paths can be specified by appending an increasing number.
+ #sieve_before =
+ #sieve_before2 =
+ #sieve_before3 = (etc...)
+
+ # Identical to sieve_before, only the specified scripts are executed after the
+ # user's script (only when keep is still in effect!). Multiple script file or
+ # directory paths can be specified by appending an increasing number.
+ #sieve_after =
+ #sieve_after2 =
+ #sieve_after2 = (etc...)
+
+ # Which Sieve language extensions are available to users. By default, all
+ # supported extensions are available, except for deprecated extensions or
+ # those that are still under development. Some system administrators may want
+ # to disable certain Sieve extensions or enable those that are not available
+ # by default. This setting can use '+' and '-' to specify differences relative
+ # to the default. For example `sieve_extensions = +imapflags' will enable the
+ # deprecated imapflags extension in addition to all extensions were already
+ # enabled by default.
+ #sieve_extensions = +notify +imapflags
+
+ # Which Sieve language extensions are ONLY available in global scripts. This
+ # can be used to restrict the use of certain Sieve extensions to administrator
+ # control, for instance when these extensions can cause security concerns.
+ # This setting has higher precedence than the `sieve_extensions' setting
+ # (above), meaning that the extensions enabled with this setting are never
+ # available to the user's personal script no matter what is specified for the
+ # `sieve_extensions' setting. The syntax of this setting is similar to the
+ # `sieve_extensions' setting, with the difference that extensions are
+ # enabled or disabled for exclusive use in global scripts. Currently, no
+ # extensions are marked as such by default.
+ #sieve_global_extensions =
+
+ # The Pigeonhole Sieve interpreter can have plugins of its own. Using this
+ # setting, the used plugins can be specified. Check the Dovecot wiki
+ # (wiki2.dovecot.org) or the pigeonhole website
+ # (http://pigeonhole.dovecot.org) for available plugins.
+ # The sieve_extprograms plugin is included in this release.
+ #sieve_plugins =
+
+ # The separator that is expected between the :user and :detail
+ # address parts introduced by the subaddress extension. This may
+ # also be a sequence of characters (e.g. '--'). The current
+ # implementation looks for the separator from the left of the
+ # localpart and uses the first one encountered. The :user part is
+ # left of the separator and the :detail part is right. This setting
+ # is also used by Dovecot's LMTP service.
+ #recipient_delimiter = +
+
+ # The maximum size of a Sieve script. The compiler will refuse to compile any
+ # script larger than this limit. If set to 0, no limit on the script size is
+ # enforced.
+ #sieve_max_script_size = 1M
+
+ # The maximum number of actions that can be performed during a single script
+ # execution. If set to 0, no limit on the total number of actions is enforced.
+ #sieve_max_actions = 32
+
+ # The maximum number of redirect actions that can be performed during a single
+ # script execution. If set to 0, no redirect actions are allowed.
+ #sieve_max_redirects = 4
+
+ # The maximum number of personal Sieve scripts a single user can have. If set
+ # to 0, no limit on the number of scripts is enforced.
+ # (Currently only relevant for ManageSieve)
+ #sieve_quota_max_scripts = 0
+
+ # The maximum amount of disk storage a single user's scripts may occupy. If
+ # set to 0, no limit on the used amount of disk storage is enforced.
+ # (Currently only relevant for ManageSieve)
+ #sieve_quota_max_storage = 0
+}
--- /dev/null
+##
+## Settings for the Sieve interpreter
+##
+
+# Do not forget to enable the Sieve plugin in 15-lda.conf and 20-lmtp.conf
+# by adding it to the respective mail_plugins= settings.
+
+# The Sieve interpreter can retrieve Sieve scripts from several types of
+# locations. The default `file' location type is a local filesystem path
+# pointing to a Sieve script file or a directory containing multiple Sieve
+# script files. More complex setups can use other location types such as
+# `ldap' or `dict' to fetch Sieve scripts from remote databases.
+#
+# All settings that specify the location of one ore more Sieve scripts accept
+# the following syntax:
+#
+# location = [<type>:]path[;<option>[=<value>][;...]]
+#
+# If the type prefix is omitted, the script location type is 'file' and the
+# location is interpreted as a local filesystem path pointing to a Sieve script
+# file or directory. Refer to Pigeonhole wiki or INSTALL file for more
+# information.
+
+plugin {
+ # The location of the user's main Sieve script or script storage. The LDA
+ # Sieve plugin uses this to find the active script for Sieve filtering at
+ # delivery. The "include" extension uses this location for retrieving
+ # :personal" scripts. This is also where the ManageSieve service will store
+ # the user's scripts, if supported.
+ #
+ # Currently only the 'file:' location type supports ManageSieve operation.
+ # Other location types like 'dict:' and 'ldap:' can currently only
+ # be used as a read-only script source ().
+ #
+ # For the 'file:' type: use the ';active=' parameter to specify where the
+ # active script symlink is located.
+ # For other types: use the ';name=' parameter to specify the name of the
+ # default/active script.
+ sieve = file:~/sieve;active=~/.dovecot.sieve
+
+ # The default Sieve script when the user has none. This is the location of a
+ # global sieve script file, which gets executed ONLY if user's personal Sieve
+ # script doesn't exist. Be sure to pre-compile this script manually using the
+ # sievec command line tool if the binary is not stored in a global location.
+ # --> See sieve_before for executing scripts before the user's personal
+ # script.
+ #sieve_default = /var/lib/dovecot/sieve/default.sieve
+
+ # The name by which the default Sieve script (as configured by the
+ # sieve_default setting) is visible to the user through ManageSieve.
+ #sieve_default_name =
+
+ # Location for ":global" include scripts as used by the "include" extension.
+ #sieve_global =
+
+ # The location of a Sieve script that is run for any message that is about to
+ # be discarded; i.e., it is not delivered anywhere by the normal Sieve
+ # execution. This only happens when the "implicit keep" is canceled, by e.g.
+ # the "discard" action, and no actions that deliver the message are executed.
+ # This "discard script" can prevent discarding the message, by executing
+ # alternative actions. If the discard script does nothing, the message is
+ # still discarded as it would be when no discard script is configured.
+ #sieve_discard =
+
+ # Location Sieve of scripts that need to be executed before the user's
+ # personal script. If a 'file' location path points to a directory, all the
+ # Sieve scripts contained therein (with the proper `.sieve' extension) are
+ # executed. The order of execution within that directory is determined by the
+ # file names, using a normal 8bit per-character comparison.
+ #
+ # Multiple script locations can be specified by appending an increasing number
+ # to the setting name. The Sieve scripts found from these locations are added
+ # to the script execution sequence in the specified order. Reading the
+ # numbered sieve_before settings stops at the first missing setting, so no
+ # numbers may be skipped.
+ #sieve_before = /var/lib/dovecot/sieve.d/
+ #sieve_before2 = ldap:/etc/sieve-ldap.conf;name=ldap-domain
+ #sieve_before3 = (etc...)
+
+ # Identical to sieve_before, only the specified scripts are executed after the
+ # user's script (only when keep is still in effect!). Multiple script
+ # locations can be specified by appending an increasing number.
+ #sieve_after =
+ #sieve_after2 =
+ #sieve_after2 = (etc...)
+
+ # Which Sieve language extensions are available to users. By default, all
+ # supported extensions are available, except for deprecated extensions or
+ # those that are still under development. Some system administrators may want
+ # to disable certain Sieve extensions or enable those that are not available
+ # by default. This setting can use '+' and '-' to specify differences relative
+ # to the default. For example `sieve_extensions = +imapflags' will enable the
+ # deprecated imapflags extension in addition to all extensions were already
+ # enabled by default.
+ #sieve_extensions = +notify +imapflags
+
+ # Which Sieve language extensions are ONLY available in global scripts. This
+ # can be used to restrict the use of certain Sieve extensions to administrator
+ # control, for instance when these extensions can cause security concerns.
+ # This setting has higher precedence than the `sieve_extensions' setting
+ # (above), meaning that the extensions enabled with this setting are never
+ # available to the user's personal script no matter what is specified for the
+ # `sieve_extensions' setting. The syntax of this setting is similar to the
+ # `sieve_extensions' setting, with the difference that extensions are
+ # enabled or disabled for exclusive use in global scripts. Currently, no
+ # extensions are marked as such by default.
+ #sieve_global_extensions =
+
+ # The Pigeonhole Sieve interpreter can have plugins of its own. Using this
+ # setting, the used plugins can be specified. Check the Dovecot wiki
+ # (wiki2.dovecot.org) or the pigeonhole website
+ # (http://pigeonhole.dovecot.org) for available plugins.
+ # The sieve_extprograms plugin is included in this release.
+ #sieve_plugins =
+
+ # The maximum size of a Sieve script. The compiler will refuse to compile any
+ # script larger than this limit. If set to 0, no limit on the script size is
+ # enforced.
+ #sieve_max_script_size = 1M
+
+ # The maximum number of actions that can be performed during a single script
+ # execution. If set to 0, no limit on the total number of actions is enforced.
+ #sieve_max_actions = 32
+
+ # The maximum number of redirect actions that can be performed during a single
+ # script execution. If set to 0, no redirect actions are allowed.
+ #sieve_max_redirects = 4
+
+ # The maximum number of personal Sieve scripts a single user can have. If set
+ # to 0, no limit on the number of scripts is enforced.
+ # (Currently only relevant for ManageSieve)
+ #sieve_quota_max_scripts = 0
+
+ # The maximum amount of disk storage a single user's scripts may occupy. If
+ # set to 0, no limit on the used amount of disk storage is enforced.
+ # (Currently only relevant for ManageSieve)
+ #sieve_quota_max_storage = 0
+
+ # The primary e-mail address for the user. This is used as a default when no
+ # other appropriate address is available for sending messages. If this setting
+ # is not configured, either the postmaster or null "<>" address is used as a
+ # sender, depending on the action involved. This setting is important when
+ # there is no message envelope to extract addresses from, such as when the
+ # script is executed in IMAP.
+ #sieve_user_email =
+
+ # The path to the file where the user log is written. If not configured, a
+ # default location is used. If the main user's personal Sieve (as configured
+ # with sieve=) is a file, the logfile is set to <filename>.log by default. If
+ # it is not a file, the default user log file is ~/.dovecot.sieve.log.
+ #sieve_user_log =
+
+ # Specifies what envelope sender address is used for redirected messages.
+ # The following values are supported for this setting:
+ #
+ # "sender" - The sender address is used (default).
+ # "recipient" - The final recipient address is used.
+ # "orig_recipient" - The original recipient is used.
+ # "user_email" - The user's primary address is used. This is
+ # configured with the "sieve_user_email" setting. If
+ # that setting is unconfigured, "user_mail" is equal to
+ # "recipient".
+ # "postmaster" - The postmaster_address configured for the LDA.
+ # "<user@domain>" - Redirected messages are always sent from user@domain.
+ # The angle brackets are mandatory. The null "<>" address
+ # is also supported.
+ #
+ # This setting is ignored when the envelope sender is "<>". In that case the
+ # sender of the redirected message is also always "<>".
+ #sieve_redirect_envelope_from = sender
+
+ ## TRACE DEBUGGING
+ # Trace debugging provides detailed insight in the operations performed by
+ # the Sieve script. These settings apply to both the LDA Sieve plugin and the
+ # IMAPSIEVE plugin.
+ #
+ # WARNING: On a busy server, this functionality can quickly fill up the trace
+ # directory with a lot of trace files. Enable this only temporarily and as
+ # selective as possible.
+
+ # The directory where trace files are written. Trace debugging is disabled if
+ # this setting is not configured or if the directory does not exist. If the
+ # path is relative or it starts with "~/" it is interpreted relative to the
+ # current user's home directory.
+ #sieve_trace_dir =
+
+ # The verbosity level of the trace messages. Trace debugging is disabled if
+ # this setting is not configured. Possible values are:
+ #
+ # "actions" - Only print executed action commands, like keep,
+ # fileinto, reject and redirect.
+ # "commands" - Print any executed command, excluding test commands.
+ # "tests" - Print all executed commands and performed tests.
+ # "matching" - Print all executed commands, performed tests and the
+ # values matched in those tests.
+ #sieve_trace_level =
+
+ # Enables highly verbose debugging messages that are usually only useful for
+ # developers.
+ #sieve_trace_debug = no
+
+ # Enables showing byte code addresses in the trace output, rather than only
+ # the source line numbers.
+ #sieve_trace_addresses = no
+}
--- /dev/null
+# Authentication for SQL users. Included from 10-auth.conf.
+#
+# <doc/wiki/AuthDatabase.SQL.txt>
+
+passdb {
+ driver = sql
+ # Path for SQL configuration file, see example-config/dovecot-sql.conf.ext
+ args = /etc/dovecot/dovecot-sql.conf.ext
+}
+
+# "prefetch" user database means that the passdb already provided the
+# needed information and there's no need to do a separate userdb lookup.
+# <doc/wiki/UserDatabase.Prefetch.txt>
+userdb {
+ driver = prefetch
+}
+
+userdb {
+ driver = sql
+ args = /etc/dovecot/dovecot-sql.conf.ext
+}
+
+# If you don't have any user-specific settings, you can avoid the user_query
+# by using userdb static instead of userdb sql, for example:
+# <doc/wiki/UserDatabase.Static.txt>
+userdb {
+ driver = static
+ args = uid=vmail gid=vmail home=/var/vmail/%d/%n
+}
--- /dev/null
+# Authentication for system users. Included from 10-auth.conf.
+#
+# <doc/wiki/PasswordDatabase.txt>
+# <doc/wiki/UserDatabase.txt>
+
+# PAM authentication. Preferred nowadays by most systems.
+# PAM is typically used with either userdb passwd or userdb static.
+# REMEMBER: You'll need /etc/pam.d/dovecot file created for PAM
+# authentication to actually work. <doc/wiki/PasswordDatabase.PAM.txt>
+passdb {
+ driver = pam
+ # [session=yes] [setcred=yes] [failure_show_msg=yes] [max_requests=<n>]
+ # [cache_key=<key>] [<service name>]
+ #args = dovecot
+}
+
+# System users (NSS, /etc/passwd, or similiar).
+# In many systems nowadays this uses Name Service Switch, which is
+# configured in /etc/nsswitch.conf. <doc/wiki/AuthDatabase.Passwd.txt>
+#passdb {
+ #driver = passwd
+ # [blocking=no]
+ #args =
+#}
+
+# Shadow passwords for system users (NSS, /etc/shadow or similiar).
+# Deprecated by PAM nowadays.
+# <doc/wiki/PasswordDatabase.Shadow.txt>
+#passdb {
+ #driver = shadow
+ # [blocking=no]
+ #args =
+#}
+
+# PAM-like authentication for OpenBSD.
+# <doc/wiki/PasswordDatabase.BSDAuth.txt>
+#passdb {
+ #driver = bsdauth
+ # [blocking=no] [cache_key=<key>]
+ #args =
+#}
+
+##
+## User databases
+##
+
+# System users (NSS, /etc/passwd, or similiar). In many systems nowadays this
+# uses Name Service Switch, which is configured in /etc/nsswitch.conf.
+userdb {
+ # <doc/wiki/AuthDatabase.Passwd.txt>
+ driver = passwd
+ # [blocking=no]
+ #args =
+
+ # Override fields from passwd
+ #override_fields = home=/home/virtual/%u
+}
+
+# Static settings generated from template <doc/wiki/UserDatabase.Static.txt>
+#userdb {
+ #driver = static
+ # Can return anything a userdb could normally return. For example:
+ #
+ # args = uid=500 gid=500 home=/var/mail/%u
+ #
+ # LDA and LMTP needs to look up users only from the userdb. This of course
+ # doesn't work with static userdb because there is no list of users.
+ # Normally static userdb handles this by doing a passdb lookup. This works
+ # with most passdbs, with PAM being the most notable exception. If you do
+ # the user verification another way, you can add allow_all_users=yes to
+ # the args in which case the passdb lookup is skipped.
+ #
+ #args =
+#}
--- /dev/null
+# Authentication for vpopmail users. Included from 10-auth.conf.
+#
+# <doc/wiki/AuthDatabase.VPopMail.txt>
+
+passdb {
+ driver = vpopmail
+
+ # [cache_key=<key>] [webmail=<ip>]
+ args =
+}
+
+userdb {
+ driver = vpopmail
+
+ # [quota_template=<template>] - %q expands to Maildir++ quota
+ args = quota_template=quota_rule=*:backend=%q
+}
--- /dev/null
+# This file is commonly accessed via passdb {} or userdb {} section in
+# conf.d/auth-sql.conf.ext
+
+# This file is opened as root, so it should be owned by root and mode 0600.
+#
+# http://wiki2.dovecot.org/AuthDatabase/SQL
+#
+# For the sql passdb module, you'll need a database with a table that
+# contains fields for at least the username and password. If you want to
+# use the user@domain syntax, you might want to have a separate domain
+# field as well.
+#
+# If your users all have the same uig/gid, and have predictable home
+# directories, you can use the static userdb module to generate the home
+# dir based on the username and domain. In this case, you won't need fields
+# for home, uid, or gid in the database.
+#
+# If you prefer to use the sql userdb module, you'll want to add fields
+# for home, uid, and gid. Here is an example table:
+#
+# CREATE TABLE users (
+# username VARCHAR(128) NOT NULL,
+# domain VARCHAR(128) NOT NULL,
+# password VARCHAR(64) NOT NULL,
+# home VARCHAR(255) NOT NULL,
+# uid INTEGER NOT NULL,
+# gid INTEGER NOT NULL,
+# active CHAR(1) DEFAULT 'Y' NOT NULL
+# );
+
+# Database driver: mysql, pgsql, sqlite
+driver = pgsql
+
+# Database connection string. This is driver-specific setting.
+#
+# HA / round-robin load-balancing is supported by giving multiple host
+# settings, like: host=sql1.host.org host=sql2.host.org
+#
+# pgsql:
+# For available options, see the PostgreSQL documention for the
+# PQconnectdb function of libpq.
+# Use maxconns=n (default 5) to change how many connections Dovecot can
+# create to pgsql.
+#
+# mysql:
+# Basic options emulate PostgreSQL option names:
+# host, port, user, password, dbname
+#
+# But also adds some new settings:
+# client_flags - See MySQL manual
+# ssl_ca, ssl_ca_path - Set either one or both to enable SSL
+# ssl_cert, ssl_key - For sending client-side certificates to server
+# ssl_cipher - Set minimum allowed cipher security (default: HIGH)
+# ssl_verify_server_cert - Verify that the name in the server SSL certificate
+# matches the host (default: no)
+# option_file - Read options from the given file instead of
+# the default my.cnf location
+# option_group - Read options from the given group (default: client)
+#
+# You can connect to UNIX sockets by using host: host=/var/run/mysql.sock
+# Note that currently you can't use spaces in parameters.
+#
+# sqlite:
+# The path to the database file.
+#
+# Examples:
+# connect = host=192.168.1.1 dbname=users
+# connect = host=sql.example.com dbname=virtual user=virtual password=blarg
+# connect = /etc/dovecot/authdb.sqlite
+#
+#connect =
+connect = "host=localhost dbname=serveradmin user=mailserver_manage password=pUn6ZUzqctC2z3Lq"
+
+# Default password scheme.
+#
+# List of supported schemes is in
+# http://wiki2.dovecot.org/Authentication/PasswordSchemes
+#
+#default_pass_scheme = MD5
+default_pass_scheme = SHA512
+
+
+# passdb query to retrieve the password. It can return fields:
+# password - The user's password. This field must be returned.
+# user - user@domain from the database. Needed with case-insensitive lookups.
+# username and domain - An alternative way to represent the "user" field.
+#
+# The "user" field is often necessary with case-insensitive lookups to avoid
+# e.g. "name" and "nAme" logins creating two different mail directories. If
+# your user and domain names are in separate fields, you can return "username"
+# and "domain" fields instead of "user".
+#
+# The query can also return other fields which have a special meaning, see
+# http://wiki2.dovecot.org/PasswordDatabase/ExtraFields
+#
+# Commonly used available substitutions (see http://wiki2.dovecot.org/Variables
+# for full list):
+# %u = entire user@domain
+# %n = user part of user@domain
+# %d = domain part of user@domain
+#
+# Note that these can be used only as input to SQL query. If the query outputs
+# any of these substitutions, they're not touched. Otherwise it would be
+# difficult to have eg. usernames containing '%' characters.
+#
+# Example:
+# password_query = SELECT userid AS user, pw AS password \
+# FROM users WHERE userid = '%u' AND active = 'Y'
+#
+#password_query = \
+# SELECT username, domain, password \
+# FROM users WHERE username = '%n' AND domain = '%d'
+
+password_query = SELECT pass AS password, username AS user, 'maildir:' || maildir_home AS userdb_mail, maildir_home AS userdb_home, 5000 AS userdb_uid, 5000 AS userdb_gid FROM mail.mail_view_users_maildir WHERE username = '%u'
+
+
+# userdb query to retrieve the user information. It can return fields:
+# uid - System UID (overrides mail_uid setting)
+# gid - System GID (overrides mail_gid setting)
+# home - Home directory
+# mail - Mail location (overrides mail_location setting)
+#
+# None of these are strictly required. If you use a single UID and GID, and
+# home or mail directory fits to a template string, you could use userdb static
+# instead. For a list of all fields that can be returned, see
+# http://wiki2.dovecot.org/UserDatabase/ExtraFields
+#
+# Examples:
+# user_query = SELECT home, uid, gid FROM users WHERE userid = '%u'
+# user_query = SELECT dir AS home, user AS uid, group AS gid FROM users where userid = '%u'
+# user_query = SELECT home, 501 AS uid, 501 AS gid FROM users WHERE userid = '%u'
+#
+#user_query = \
+# SELECT home, uid, gid \
+# FROM users WHERE username = '%n' AND domain = '%d'
+
+user_query = SELECT maildir_home AS home, 5000 AS uid, 5000 AS gid FROM mail.mail_view_users_maildir WHERE username = '%u'
+
+
+# If you wish to avoid two SQL lookups (passdb + userdb), you can use
+# userdb prefetch instead of userdb sql in dovecot.conf. In that case you'll
+# also have to return userdb fields in password_query prefixed with "userdb_"
+# string. For example:
+#password_query = \
+# SELECT userid AS user, password, \
+# home AS userdb_home, uid AS userdb_uid, gid AS userdb_gid \
+# FROM users WHERE userid = '%u'
+
+# Query to get a list of all usernames.
+#iterate_query = SELECT username AS user FROM users
--- /dev/null
+## Dovecot configuration file
+
+# If you're in a hurry, see http://wiki2.dovecot.org/QuickConfiguration
+
+# "doveconf -n" command gives a clean output of the changed settings. Use it
+# instead of copy&pasting files when posting to the Dovecot mailing list.
+
+# '#' character and everything after it is treated as comments. Extra spaces
+# and tabs are ignored. If you want to use either of these explicitly, put the
+# value inside quotes, eg.: key = "# char and trailing whitespace "
+
+# Most (but not all) settings can be overridden by different protocols and/or
+# source/destination IPs by placing the settings inside sections, for example:
+# protocol imap { }, local 127.0.0.1 { }, remote 10.0.0.0/8 { }
+
+# Default values are shown for each setting, it's not required to uncomment
+# those. These are exceptions to this though: No sections (e.g. namespace {})
+# or plugin settings are added by default, they're listed only as examples.
+# Paths are also just examples with the real defaults being based on configure
+# options. The paths listed here are for configure --prefix=/usr
+# --sysconfdir=/etc --localstatedir=/var
+
+# Enable installed protocols
+!include_try /usr/share/dovecot/protocols.d/*.protocol
+
+protocols = imap lmtp
+
+# A comma separated list of IPs or hosts where to listen in for connections.
+# "*" listens in all IPv4 interfaces, "::" listens in all IPv6 interfaces.
+# If you want to specify non-default ports or anything more complex,
+# edit conf.d/master.conf.
+#listen = *, ::
+
+# Base directory where to store runtime data.
+#base_dir = /var/run/dovecot/
+
+# Name of this instance. In multi-instance setup doveadm and other commands
+# can use -i <instance_name> to select which instance is used (an alternative
+# to -c <config_path>). The instance name is also added to Dovecot processes
+# in ps output.
+#instance_name = dovecot
+
+# Greeting message for clients.
+login_greeting = Dovecot ready.
+
+# Space separated list of trusted network ranges. Connections from these
+# IPs are allowed to override their IP addresses and ports (for logging and
+# for authentication checks). disable_plaintext_auth is also ignored for
+# these networks. Typically you'd specify your IMAP proxy servers here.
+#login_trusted_networks =
+
+# Space separated list of login access check sockets (e.g. tcpwrap)
+#login_access_sockets =
+
+# With proxy_maybe=yes if proxy destination matches any of these IPs, don't do
+# proxying. This isn't necessary normally, but may be useful if the destination
+# IP is e.g. a load balancer's IP.
+#auth_proxy_self =
+
+# Show more verbose process titles (in ps). Currently shows user name and
+# IP address. Useful for seeing who are actually using the IMAP processes
+# (eg. shared mailboxes or if same uid is used for multiple accounts).
+#verbose_proctitle = no
+
+# Should all processes be killed when Dovecot master process shuts down.
+# Setting this to "no" means that Dovecot can be upgraded without
+# forcing existing client connections to close (although that could also be
+# a problem if the upgrade is e.g. because of a security fix).
+#shutdown_clients = yes
+
+# If non-zero, run mail commands via this many connections to doveadm server,
+# instead of running them directly in the same process.
+#doveadm_worker_count = 0
+# UNIX socket or host:port used for connecting to doveadm server
+#doveadm_socket_path = doveadm-server
+
+# Space separated list of environment variables that are preserved on Dovecot
+# startup and passed down to all of its child processes. You can also give
+# key=value pairs to always set specific settings.
+#import_environment = TZ
+
+##
+## Dictionary server settings
+##
+
+# Dictionary can be used to store key=value lists. This is used by several
+# plugins. The dictionary can be accessed either directly or though a
+# dictionary server. The following dict block maps dictionary names to URIs
+# when the server is used. These can then be referenced using URIs in format
+# "proxy::<name>".
+
+dict {
+ #quota = mysql:/etc/dovecot/dovecot-dict-sql.conf.ext
+ #expire = sqlite:/etc/dovecot/dovecot-dict-sql.conf.ext
+}
+
+# Most of the actual configuration gets included below. The filenames are
+# first sorted by their ASCII value and parsed in that order. The 00-prefixes
+# in filenames are intended to make it easier to understand the ordering.
+!include conf.d/*.conf
+
+# A config file can also tried to be included without giving an error if
+# it's not found:
+!include_try local.conf
--- /dev/null
+127.0.0.1
+::1
+localhost
--- /dev/null
+# This is a basic configuration for signing and verifying. It can easily be
+# adapted to suit a basic installation. See opendkim.conf(5) and
+# /usr/share/doc/opendkim/examples/opendkim.conf.sample for complete
+# documentation of available configuration parameters.
+
+Syslog yes
+SyslogSuccess yes
+LogWhy yes
+
+AutoRestart yes
+AutoRestartRate 10/1h
+
+# Common signing and verification parameters. In Debian, the "From" header is
+# oversigned, because it is often the identity key used by reputation systems
+# and thus somewhat security sensitive.
+Canonicalization relaxed/relaxed
+
+Mode sv
+
+#SubDomains no
+
+OversignHeaders From
+
+# Signing domain, selector, and key (required). For example, perform signing
+# for domain "example.com" with selector "2020" (2020._domainkey.example.com),
+# using the private key stored in /etc/dkimkeys/example.private. More granular
+# setup options can be found in /usr/share/doc/opendkim/README.opendkim.
+#Domain triathlon-coaching.com
+Domain *
+
+#Selector 2020
+Selector mail
+
+KeyFile /etc/opendkim/keys/triathlon-coaching.com/dkim1.private
+SigningTable refile:/etc/opendkim/signing.table
+KeyTable /etc/opendkim/key.table
+
+ExternalIgnoreList refile:/etc/opendkim/TrustedHosts
+
+# In Debian, opendkim runs as user "opendkim". A umask of 007 is required when
+# using a local socket with MTAs that access the socket as a non-privileged
+# user (for example, Postfix). You may need to add user "postfix" to group
+# "opendkim" in that case.
+UserID opendkim
+UMask 007
+
+# Socket for the MTA connection (required). If the MTA is inside a chroot jail,
+# it must be ensured that the socket is accessible. In Debian, Postfix runs in
+# a chroot in /var/spool/postfix, therefore a Unix socket would have to be
+# configured as shown on the last line below.
+#Socket local:/run/opendkim/opendkim.sock
+#Socket inet:8891@localhost
+#Socket inet:8891
+#Socket local:/var/spool/postfix/opendkim/opendkim.sock
+Socket inet:8891@127.0.0.1
+
+PidFile /run/opendkim/opendkim.pid
+
+# Hosts for which to sign rather than verify, default is 127.0.0.1. See the
+# OPERATION section of opendkim(8) for more information.
+#InternalHosts 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12
+InternalHosts refile:/etc/opendkim/TrustedHosts
+
+
+# The trust anchor enables DNSSEC. In Debian, the trust anchor file is provided
+# by the package dns-root-data.
+TrustAnchorFile /usr/share/dns/root.key
+#Nameservers 127.0.0.1
+
+RequireSafeKeys False
+
--- /dev/null
+# This is a basic configuration that can easily be adapted to suit a standard
+# installation. For more advanced options, see openmarc.conf(5) and/or
+# /usr/share/doc/opendmarc/examples/opendmarc.conf.sample.
+
+## AuthservID (string)
+## defaults to MTA name
+AuthservID mail.triathlon-coaching.com
+
+
+##
+## Sets the "authserv-id" to use when generating the Authentication-Results:
+## header field after verifying a message. If the string "HOSTNAME" is
+## provided, the name of the host running the filter (as returned by the
+## gethostname(3) function) will be used.
+#
+# AuthservID name
+
+## FailureReports { true | false }
+## default "false"
+##
+## Enables generation of failure reports when the DMARC test fails and the
+## purported sender of the message has requested such reports. Reports are
+## formatted per RFC6591.
+#
+# FailureReports false
+FailureReports true
+FailureReportsSentBy postmaster@triathlon-coaching.com
+
+
+## PidFile path
+## default (none)
+##
+## Specifies the path to a file that should be created at process start
+## containing the process ID.
+#
+
+BaseDirectory /run/opendmarc
+PidFile /run/opendmarc/opendmarc.pid
+HistoryFile /run/opendmarc/opendmarc.dat
+
+## PublicSuffixList path
+## default (none)
+##
+## Specifies the path to a file that contains top-level domains (TLDs) that
+## will be used to compute the Organizational Domain for a given domain name,
+## as described in the DMARC specification. If not provided, the filter will
+## not be able to determine the Organizational Domain and only the presented
+## domain will be evaluated.
+#
+PublicSuffixList /etc/opendmarc/public_suffix_list.dat
+
+## RejectFailures { true | false }
+## default "false"
+##
+## If set, messages will be rejected if they fail the DMARC evaluation, or
+## temp-failed if evaluation could not be completed. By default, no message
+## will be rejected or temp-failed regardless of the outcome of the DMARC
+## evaluation of the message. Instead, an Authentication-Results header
+## field will be added.
+#
+# RejectFailures false
+RejectFailures true
+
+
+IgnoreMailFrom example.com
+IgnoreHosts /etc/opendmarc/ignore.hosts
+PublicSuffixList /etc/opendmarc/public_suffix_list.dat
+
+SoftwareHeader false
+
+
+## Socket socketspec
+## default (none)
+##
+## Specifies the socket that should be established by the filter to receive
+## connections from sendmail(8) in order to provide service. socketspec is
+## in one of two forms: local:path, which creates a UNIX domain socket at
+## the specified path, or inet:port[@host] or inet6:port[@host] which creates
+## a TCP socket on the specified port for the appropriate protocol family.
+## If the host is not given as either a hostname or an IP address, the
+## socket will be listening on all interfaces. This option is mandatory
+## either in the configuration file or on the command line. If an IP
+## address is used, it must be enclosed in square brackets.
+#
+AutoRestart true
+
+# Socket local:/run/opendmarc/opendmarc.sock
+Socket inet:8893@127.0.0.1
+
+## Syslog { true | false }
+## default "false"
+##
+## Log via calls to syslog(3) any interesting activity.
+#
+Syslog true
+## SyslogFacility facility-name
+## default "mail"
+##
+## Log via calls to syslog(3) using the named facility. The facility names
+## are the same as the ones allowed in syslog.conf(5).
+#
+ SyslogFacility mail
+
+## TrustedAuthservIDs string
+## default HOSTNAME
+##
+## Specifies one or more "authserv-id" values to trust as relaying true
+## upstream DKIM and SPF results. The default is to use the name of
+## the MTA processing the message. To specify a list, separate each entry
+## with a comma. The key word "HOSTNAME" will be replaced by the name of
+## the host running the filter as reported by the gethostname(3) function.
+#
+# TrustedAuthservIDs HOSTNAME
+TrustedAuthservIDs mail.triathlon-coaching.com
+
+## UMask mask
+## default (none)
+##
+## Requests a specific permissions mask to be used for file creation. This
+## only really applies to creation of the socket when Socket specifies a
+## UNIX domain socket, and to the HistoryFile and PidFile (if any); temporary
+## files are normally created by the mkstemp(3) function that enforces a
+## specific file mode on creation regardless of the process umask. See
+## umask(2) for more information.
+#
+UMask 0002
+
+## UserID user[:group]
+## default (none)
+##
+## Attempts to become the specified userid before starting operations.
+## The process will be assigned all of the groups and primary group ID of
+## the named userid unless an alternate group is specified.
+#
+UserID opendmarc
+
+~
+~
+~
+~
\ No newline at end of file
--- /dev/null
+# SMTPd greeting banner: You MUST specify $myhostname at the start of the text. This is required by the SMTP protocol.
+smtpd_banner = $myhostname
+
+# Disable local biff service
+biff = no
+
+# Do not append the string $mydomain to -locally- submitted email.
+append_dot_mydomain = no
+
+# Readme directory
+# readme_directory = /usr/share/doc/postfix
+readme_directory = no
+
+# HTML directory
+# html_directory = /usr/share/doc/postfix/html
+html_directory = no
+
+# Alias maps and database for -local- delivery only
+alias_maps = hash:/etc/aliases
+alias_database = hash:/etc/aliases
+
+# The domain name that locally-posted mail appears to come from, and that locally posted mail is delivered to.
+myorigin = /etc/mailname
+
+# The list of domains that are delivered via the -local- mail delivery transport. No external domains like "stratoserver.net" belong here! "h2410715.stratoserver.net" is fine.
+mydestination = vps2462554.fastwebserver.de, localhost.fastwebserver.de, localhost
+
+# Trusted SMTP clients with more privileges. Trusted clients can relay mail.
+mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
+
+# Use the FQDN for the local hostname!
+myhostname = vps2462554.fastwebserver.de
+
+#################################################################
+# TLS
+# Certificates
+smtpd_tls_key_file = /etc/letsencrypt/live/mail.triathlon-coaching.com/privkey.pem
+smtpd_tls_cert_file = /etc/letsencrypt/live/mail.triathlon-coaching.com/fullchain.pem
+
+# Opportunistic TLS. TLS auth only.
+smtpd_tls_security_level=may
+smtpd_tls_auth_only=yes
+
+#################################################################
+# SYSTEM USERS, PATH
+# vmail-user
+virtual_uid_maps = static:5000
+virtual_gid_maps = static:5000
+
+# The minimum user ID value that the virtual delivery agent accepts
+virtual_minimum_uid = 5000
+
+
+virtual_mailbox_base = /var/vmail
+
+# Handle Postfix-style extensions
+recipient_delimiter = +
+
+#################################################################
+# LOOKUP, TRANSPORT, LDA
+
+virtual_mailbox_maps = pgsql:/etc/postfix/sql/psql_virtual_mailbox_maps.cf
+virtual_mailbox_domains = pgsql:/etc/postfix/sql/psql_virtual_mailbox_domains.cf
+virtual_alias_maps = pgsql:/etc/postfix/sql/psql_virtual_alias_maps.cf
+
+local_recipient_maps =
+
+# The default mail delivery transport and next-hop destination for final delivery to domains listed with "virtual_mailbox_domains"
+virtual_transport = lmtp:unix:private/dovecot-lmtp
+
+dovecot_destination_recipient_limit = 1
+
+mailbox_command = /usr/lib/dovecot/deliver -f “$SENDER” -a “$RECIPIENT”
+
+#################################################################
+# MAIL RESTRICTIONS
+# Maximum mail size
+message_size_limit = 0
+
+# The maximal size of any -local- individual mailbox
+mailbox_size_limit = 0
+
+#################################################################
+
+# The network interface addresses that this mail system receives mail on.
+inet_interfaces = all
+
+#################################################################
+# AUTH PER DOVECOT
+# The SASL plug-in type that the Postfix SMTP server should use for authentication.
+smtpd_sasl_type=dovecot
+
+# Where to passthrough our authentication information for the above plug-in
+smtpd_sasl_path=private/auth_dovecot
+
+# Enable SASL authentication in the Postfix SMTP server.
+smtpd_sasl_auth_enable = yes
+
+# Report the SASL authenticated user name in the smtpd Received message header.
+##smtpd_sasl_authenticated_header = yes
+# -------------------- ?
+
+#################################################################
+
+
+# Sender, recipient, client and data restrictions
+smtpd_sender_restrictions =
+ permit_sasl_authenticated,
+ permit_mynetworks,
+ reject_non_fqdn_sender,
+ reject_unknown_sender_domain,
+ permit
+
+## reject_authenticated_sender_login_mismatch,
+## reject_sender_login_mismatch,
+## reject_unlisted_sender,
+
+smtpd_recipient_restrictions =
+ # wenn der client, ohne rueckmeldung, smtp commands abschickt (spam)
+ reject_unauth_pipelining,
+
+ # RCPT TO: feld muss FQDN haben
+## reject_non_fqdn_recipient
+
+ # email muss fuer unsere domains gelten (keine weiterleitungen)
+## reject_unknown_recipient_domain,
+ permit_sasl_authenticated,
+ reject_unknown_reverse_client_hostname,
+ permit_mynetworks,
+
+ # RCPT TO: user@domain hat ein postfach bei uns
+ # um nicht preiszugegen ob der user in postfach hat, koennte man die abfrage auch nach den RBL machen
+ reject_unauth_destination,
+ check_policy_service unix:private/policy-spf,
+
+ # real time blacklist abfrage
+ #reject_rbl_client dnsbl.njabl.org,
+ reject_rbl_client sbl-xbl.spamhaus.org,
+
+ # greylisting ?
+ #check_policy_service inet:127.0.0.1:60000
+
+ permit
+
+## check_recipient_access proxy:mysql:/etc/postfix/sql/mysql_tls_enforce_in_policy.cf,
+## reject_invalid_helo_hostname,
+
+smtpd_data_restrictions =
+ reject_unauth_pipelining,
+ permit
+
+
+#################################################################
+# Please say hello first...
+smtpd_helo_required = yes
+
+# We lookup MX records to send non-local mail, so this stays empty
+relayhost =
+
+# VRFY command is not really needed anymore
+disable_vrfy_command = yes
+
+
+
+#################################################################
+# Disallow SSLv2 and SSLv3, only accept secure ciphers
+smtpd_tls_mandatory_protocols=!SSLv2,!SSLv3
+smtpd_tls_protocols = !SSLv2, !SSLv3
+#smtpd_tls_mandatory_ciphers=high
+#smtpd_tls_exclude_ciphers = ECDHE-RSA-RC4-SHA
+#smtpd_tls_mandatory_exclude_ciphers = ECDHE-RSA-RC4-SHA
+
+debug_peer_list = 127.0.0.1
+debug_peer_level = 2
+
+#################################################################
+#################################################################
+
+
+# DH parameters, actually 2048 bit long
+#smtpd_tls_dh1024_param_file = /etc/ssl/mail/dhparams.pem
+
+# CA path for SMTP client connections to external servers
+#smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt
+
+# TLS session cache for SMTPd
+#smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
+
+
+# Log TLS handling
+#smtpd_tls_loglevel = 1
+#smtp_tls_loglevel = 1
+
+# Delay reject until RCPT TO
+#smtpd_delay_reject = yes
+
+# Enable elliptic curve cryptography, "ultra" needs more cpu time
+#smtpd_tls_eecdh_grade = strong
+
+# Default: Anonymize outgoing mail headers
+#smtp_header_checks = pcre:/etc/postfix/anonymize_headers.pcre
+
+
+##smtpd_restriction_classes = greylist
+
+##greylist = permit_dnswl_client list.dnswl.org, check_policy_service inet:127.0.0.1:10023
+
+# Determine valid MAIL FROM addresses for a SASL authenticated user.
+##smtpd_sender_login_maps = proxy:mysql:/etc/postfix/sql/mysql_virtual_sender_acl.cf
+
+# Sender dependent smtp service for TLS enforced connections
+##sender_dependent_default_transport_maps = proxy:mysql:/etc/postfix/sql/mysql_tls_enforce_out_policy.cf
+
+# Set a higher timeout for connecting, sending and receiving information from/to a proxy (FuGlu)
+##smtpd_proxy_timeout = 600s
+
+# TLS session cache for SMTP
+#smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
+
+# A custom list with secure ciphers.
+#tls_high_cipherlist=EDH+CAMELLIA:EDH+aRSA:EECDH+aRSA+AESGCM:EECDH+aRSA+SHA384:EECDH+aRSA+SHA256:EECDH:+CAMELLIA256:+AES256:+CAMELLIA128:+AES128:+SSLv3:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!PSK:!DSS:!RC4:!SEED:!ECDSA:CAMELLIA256-SHA:AES256-SHA:CAMELLIA128-SHA:AES128-SHA
+
+# We relay for these domains
+##relay_domains= proxy:mysql:/etc/postfix/sql/mysql_virtual_mxdomain_maps.cf
+
+# Relay only for these accounts
+##relay_recipient_maps = proxy:mysql:/etc/postfix/sql/mysql_relay_recipient_maps.cf
+
+
+
+# Have Postfix advertise AUTH support in a non-standard way.
+##broken_sasl_auth_clients = yes
+broken_sasl_auth_clients = no
+
+# The lookup tables that the proxymap server is allowed to access for the read-only service.
+## proxy_read_maps = proxy:mysql:/etc/postfix/sql/mysql_virtual_sender_acl.cf, proxy:mysql:/etc/postfix/sql/mysql_tls_enforce_out_policy.cf, proxy:mysql:/etc/postfix/sql/mysql_tls_enforce_in_policy.cf, $local_recipient_maps $mydestination $virtual_alias_maps $virtual_alias_domains $virtual_mailbox_maps $virtual_mailbox_domains $relay_recipient_maps $relay_domains $canonical_maps $sender_canonical_maps $recipient_canonical_maps $relocated_maps $transport_maps $mynetworks $smtpd_sender_login_maps
+
+
+## Queue configuration
+# Consider a message as undeliverable, when delivery fails with a temporary error, and the time in the queue has reached this limit.
+maximal_queue_lifetime = 1d
+
+# Consider a bounce message as undeliverable, when delivery fails with a temporary error, and the time in the queue has reached this limit.
+bounce_queue_lifetime = 1d
+
+# The time between deferred queue scans by the queue manager.
+queue_run_delay = 300s
+
+# The maximal/minimal time between attempts to deliver a deferred message.
+maximal_backoff_time = 1800s
+minimal_backoff_time = 300s
+
+
+
+# This tarpits a client after 3 erroneous commands for 10s
+smtpd_soft_error_limit = 3
+smtpd_error_sleep_time = 10s
+smtpd_hard_error_limit = ${stress?1}${stress:5}
+
+# Feel free to maintain a white-/blacklist for Postscreen
+#postscreen_access_list = permit_mynetworks, cidr:/etc/postfix/postscreen_access.cidr
+
+# Drop connections from blacklisted servers with a 521 reply
+#postscreen_blacklist_action = drop
+
+# Clean Postscreen cache after 24h
+#postscreen_cache_cleanup_interval = 24h
+
+#postscreen_dnsbl_ttl = 5m
+#postscreen_dnsbl_threshold = 8
+#postscreen_dnsbl_action = enforce
+#postscreen_dnsbl_sites =
+# b.barracudacentral.org=127.0.0.2*7
+# dnsbl.inps.de=127.0.0.2*7
+# bl.mailspike.net=127.0.0.2*5
+# bl.mailspike.net=127.0.0.[10;11;12]*4
+# dnsbl.sorbs.net=127.0.0.10*8
+# dnsbl.sorbs.net=127.0.0.5*6
+# dnsbl.sorbs.net=127.0.0.7*3
+# dnsbl.sorbs.net=127.0.0.8*2
+# dnsbl.sorbs.net=127.0.0.6*2
+# dnsbl.sorbs.net=127.0.0.9*2
+# zen.spamhaus.org=127.0.0.[10;11]*8
+# zen.spamhaus.org=127.0.0.[4..7]*6
+# zen.spamhaus.org=127.0.0.3*4
+# zen.spamhaus.org=127.0.0.2*3
+# hostkarma.junkemailfilter.com=127.0.0.2*3
+# hostkarma.junkemailfilter.com=127.0.0.4*1
+# hostkarma.junkemailfilter.com=127.0.1.2*1
+# wl.mailspike.net=127.0.0.[18;19;20]*-2
+# hostkarma.junkemailfilter.com=127.0.0.1*-2
+#postscreen_greet_banner = $smtpd_banner
+#postscreen_greet_action = enforce
+#postscreen_greet_wait = 3s
+#postscreen_greet_ttl = 2d
+#postscreen_bare_newline_enable = no
+#postscreen_non_smtp_command_enable = no
+#postscreen_pipelining_enable = no
+#postscreen_cache_map = proxy:btree:$data_directory/postscreen_cache
+
+# We need milter support for OpenDKIM
+smtpd_milters =
+ inet:127.0.0.1:8891
+ inet:127.0.0.1:8893
+# smtpd_milters = unix:/run/opendkim/opendkim.sock
+non_smtpd_milters = $smtpd_milters
+milter_protocol = 6
+
+# To avoid losing any mail, accept if the milter fails
+milter_default_action = accept
+
+# Hard-fail missing TLS when enabled for a user
+plaintext_reject_code = 550
+
+policy-spf_time_limit = 3600s
+
+
--- /dev/null
+# Postfix master process configuration file. For details on the format
+# of the file, see the master(5) manual page (command: "man 5 master").
+#
+# Do not forget to execute "postfix reload" after editing this file.
+#
+# ==========================================================================
+# service type private unpriv chroot wakeup maxproc command + args
+# (yes) (yes) (yes) (never) (100)
+# ==========================================================================
+smtp inet n - y - - smtpd
+submission inet n - y - - smtpd
+# -o smtpd_tls_security_level=encrypt
+ -o smtpd_sasl_auth_enable=yes
+ -o smtpd_client_restrictions=permit_sasl_authenticated,reject
+# -o milter_macro_daemon_name=ORIGINATING
+#
+smtps inet n - y - - smtpd
+ -o smtpd_tls_wrappermode=yes
+ -o smtpd_sasl_auth_enable=yes
+ -o smtpd_client_restrictions=permit_sasl_authenticated,reject
+# -o milter_macro_daemon_name=ORIGINATING
+#628 inet n - y - - qmqpd
+pickup fifo n - y 60 1 pickup
+cleanup unix n - y - 0 cleanup
+qmgr fifo n - n 300 1 qmgr
+#qmgr fifo n - n 300 1 oqmgr
+tlsmgr unix - - y 1000? 1 tlsmgr
+rewrite unix - - y - - trivial-rewrite
+bounce unix - - y - 0 bounce
+defer unix - - y - 0 bounce
+trace unix - - y - 0 bounce
+verify unix - - y - 1 verify
+flush unix n - y 1000? 0 flush
+proxymap unix - - n - - proxymap
+proxywrite unix - - n - 1 proxymap
+smtp unix - - y - - smtp
+# When relaying mail as backup MX, disable fallback_relay to avoid MX loops
+relay unix - - y - - smtp
+ -o smtp_fallback_relay=
+# -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
+showq unix n - y - - showq
+error unix - - y - - error
+retry unix - - y - - error
+discard unix - - y - - discard
+local unix - n n - - local
+virtual unix - n n - - virtual
+lmtp unix - - y - - lmtp
+anvil unix - - y - 1 anvil
+scache unix - - y - 1 scache
+#
+# ====================================================================
+# Interfaces to non-Postfix software. Be sure to examine the manual
+# pages of the non-Postfix software to find out what options it wants.
+#
+# Many of the following services use the Postfix pipe(8) delivery
+# agent. See the pipe(8) man page for information about ${recipient}
+# and other message envelope options.
+# ====================================================================
+#
+dovecot unix - n n - - pipe
+ flags=DRhu user=vmail:vmail argv=/usr/lib/dovecot/deliver -f ${sender} -d ${recipient}
+maildrop unix - n n - - pipe
+ flags=DRhu user=vmail argv=/usr/bin/maildrop -d ${recipient}
+policy-spf unix - n n - - spawn
+ user=nobody argv=/usr/bin/policyd-spf
+
\ No newline at end of file
--- /dev/null
+$shlib_directory/postfix-pgsql.so:f:root:-:755
+$manpage_directory/man5/pgsql_table.5.gz:f:root:-:644
--- /dev/null
+# /etc/postfix/sql/pqsl_virtual_mailbox_domains.cf
+# Modified by: Ole B. Rosentreter <postmaster@laktatnebel.dee>
+# Last modified: Fr, 18.02.2017 - 18:00:00
+
+# host
+hosts = 127.0.0.1
+
+# user name and password to log into the pgsql server.
+user = mailserver_manage
+password = pUn6ZUzqctC2z3Lq
+
+# database
+dbname = serveradmin
+
+# SQL query
+# Maildir des Users (Emailadresse, die das Postfach bezeichnet) finden
+#query = select username FROM mail.mail_view_users_maildir where username='%s'
+query = select username as destination FROM mail.mail_view_users_maildir where username='%s' union select destination FROM mail.mail_view_forwardings where source='%s'
+#query = SELECT username FROM mail.mail_view_users_maildir WHERE username='%s'
--- /dev/null
+# /etc/postfix/sql/pqsl_virtual_mailbox_domains.cf
+# Modified by: Ole B. Rosentreter <postmaster@laktatnebel.dee>
+# Last modified: Fr, 18.02.2017 - 18:00:00
+
+# host
+hosts = 127.0.0.1
+
+# user name and password to log into the pgsql server.
+user = mailserver_manage
+password = pUn6ZUzqctC2z3Lq
+
+# database
+dbname = serveradmin
+
+# SQL query
+# Liste der verfügbaren Domains ausgeben
+query = SELECT DISTINCT domain FROM mail.mail_view_users_maildir WHERE domain='%s'
+#query = SELECT DISTINCT regdomain as domain FROM mail.mail_view_alias_domain WHERE regdomain='%s'
--- /dev/null
+# /etc/postfix/sql/pqsl_virtual_mailbox_domains.cf
+# Modified by: Ole B. Rosentreter <postmaster@laktatnebel.dee>
+# Last modified: Fr, 18.02.2017 - 18:00:00
+
+
+
+# host
+hosts = 127.0.0.1
+
+# user name and password to log into the pgsql server.
+user = mailserver_manage
+password = pUn6ZUzqctC2z3Lq
+
+# database
+dbname = serveradmin
+
+# SQL query
+# Weiterleitungsadresse zu einer Email finden.
+query = SELECT destination FROM mail.mail_view_forwardings WHERE source='%s'
--- /dev/null
+# $OpenBSD: sshd_config,v 1.103 2018/04/09 20:41:22 tj Exp $
+
+# This is the sshd server system-wide configuration file. See
+# sshd_config(5) for more information.
+
+# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
+
+# The strategy used for options in the default sshd_config shipped with
+# OpenSSH is to specify options with their default value where
+# possible, but leave them commented. Uncommented options override the
+# default value.
+
+Include /etc/ssh/sshd_config.d/*.conf
+
+Port 22
+#AddressFamily any
+#ListenAddress 0.0.0.0
+#ListenAddress ::
+
+Protocol 2
+
+HostKey /etc/ssh/ssh_host_rsa_key
+HostKey /etc/ssh/ssh_host_ecdsa_key
+HostKey /etc/ssh/ssh_host_ed25519_key
+
+UsePrivilegeSeparation yes
+
+# Ciphers and keying
+#RekeyLimit default none
+
+# Logging
+SyslogFacility AUTH
+LogLevel INFO
+
+# Authentication:
+
+LoginGraceTime 2m
+PermitRootLogin yes
+StrictModes yes
+#MaxAuthTries 6
+#MaxSessions 10
+
+RSAAuthentication yes
+PubkeyAuthentication yes
+
+# Expect .ssh/authorized_keys2 to be disregarded by default in future.
+#AuthorizedKeysFile .ssh/authorized_keys .ssh/authorized_keys2
+
+#AuthorizedPrincipalsFile none
+
+#AuthorizedKeysCommand none
+#AuthorizedKeysCommandUser nobody
+
+# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
+HostbasedAuthentication no
+# Change to yes if you don't trust ~/.ssh/known_hosts for
+HostbasedAuthentication no
+#IgnoreUserKnownHosts no
+# Don't read the user's ~/.rhosts and ~/.shosts files
+IgnoreRhosts yes
+
+# To disable tunneled clear text passwords, change to no here!
+PasswordAuthentication no
+PermitEmptyPasswords no
+
+# Change to yes to enable challenge-response passwords (beware issues with
+# some PAM modules and threads)
+ChallengeResponseAuthentication no
+
+# Kerberos options
+#KerberosAuthentication no
+#KerberosOrLocalPasswd yes
+#KerberosTicketCleanup yes
+#KerberosGetAFSToken no
+
+# GSSAPI options
+#GSSAPIAuthentication no
+#GSSAPICleanupCredentials yes
+#GSSAPIStrictAcceptorCheck yes
+#GSSAPIKeyExchange no
+
+# Set this to 'yes' to enable PAM authentication, account processing,
+# and session processing. If this is enabled, PAM authentication will
+# be allowed through the ChallengeResponseAuthentication and
+# PasswordAuthentication. Depending on your PAM configuration,
+# PAM authentication via ChallengeResponseAuthentication may bypass
+# the setting of "PermitRootLogin without-password".
+# If you just want the PAM account and session checks to run without
+# PAM authentication, then enable this but set PasswordAuthentication
+# and ChallengeResponseAuthentication to 'no'.
+UsePAM yes
+
+#AllowAgentForwarding yes
+#AllowTcpForwarding yes
+#GatewayPorts no
+X11Forwarding no
+X11DisplayOffset 10
+#X11UseLocalhost yes
+#PermitTTY yes
+PrintMotd no
+PrintLastLog yes
+TCPKeepAlive yes
+#PermitUserEnvironment no
+Compression yes
+#ClientAliveInterval 0
+#ClientAliveCountMax 3
+UseDNS yes
+#PidFile /var/run/sshd.pid
+#MaxStartups 10:30:100
+#PermitTunnel no
+#ChrootDirectory none
+#VersionAddendum none
+
+# no default banner path
+#Banner none
+
+# Allow client to pass locale environment variables
+AcceptEnv LANG LC_*
+
+# override default of no subsystems
+Subsystem sftp /usr/lib/openssh/sftp-server
+
+# Example of overriding settings on a per-user basis
+#Match User anoncvs
+# X11Forwarding no
+# AllowTcpForwarding no
+# PermitTTY no
+
--- /dev/null
+# $OpenBSD: sshd_config,v 1.103 2018/04/09 20:41:22 tj Exp $
+
+# This is the sshd server system-wide configuration file. See
+# sshd_config(5) for more information.
+
+# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
+
+# The strategy used for options in the default sshd_config shipped with
+# OpenSSH is to specify options with their default value where
+# possible, but leave them commented. Uncommented options override the
+# default value.
+
+Include /etc/ssh/sshd_config.d/*.conf
+
+Port 22
+#AddressFamily any
+#ListenAddress 0.0.0.0
+#ListenAddress ::
+
+Protocol 2
+
+HostKey /etc/ssh/ssh_host_rsa_key
+HostKey /etc/ssh/ssh_host_ecdsa_key
+HostKey /etc/ssh/ssh_host_ed25519_key
+
+UsePrivilegeSeparation yes
+
+# Ciphers and keying
+#RekeyLimit default none
+
+# Logging
+SyslogFacility AUTH
+LogLevel INFO
+
+# Authentication:
+
+LoginGraceTime 2m
+PermitRootLogin no
+StrictModes yes
+#MaxAuthTries 6
+#MaxSessions 10
+
+RSAAuthentication yes
+PubkeyAuthentication yes
+
+# Expect .ssh/authorized_keys2 to be disregarded by default in future.
+#AuthorizedKeysFile .ssh/authorized_keys .ssh/authorized_keys2
+
+#AuthorizedPrincipalsFile none
+
+#AuthorizedKeysCommand none
+#AuthorizedKeysCommandUser nobody
+
+# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
+HostbasedAuthentication no
+# Change to yes if you don't trust ~/.ssh/known_hosts for
+HostbasedAuthentication no
+#IgnoreUserKnownHosts no
+# Don't read the user's ~/.rhosts and ~/.shosts files
+IgnoreRhosts yes
+
+# To disable tunneled clear text passwords, change to no here!
+PasswordAuthentication no
+PermitEmptyPasswords no
+
+# Change to yes to enable challenge-response passwords (beware issues with
+# some PAM modules and threads)
+ChallengeResponseAuthentication no
+
+# Kerberos options
+#KerberosAuthentication no
+#KerberosOrLocalPasswd yes
+#KerberosTicketCleanup yes
+#KerberosGetAFSToken no
+
+# GSSAPI options
+#GSSAPIAuthentication no
+#GSSAPICleanupCredentials yes
+#GSSAPIStrictAcceptorCheck yes
+#GSSAPIKeyExchange no
+
+# Set this to 'yes' to enable PAM authentication, account processing,
+# and session processing. If this is enabled, PAM authentication will
+# be allowed through the ChallengeResponseAuthentication and
+# PasswordAuthentication. Depending on your PAM configuration,
+# PAM authentication via ChallengeResponseAuthentication may bypass
+# the setting of "PermitRootLogin without-password".
+# If you just want the PAM account and session checks to run without
+# PAM authentication, then enable this but set PasswordAuthentication
+# and ChallengeResponseAuthentication to 'no'.
+UsePAM yes
+
+#AllowAgentForwarding yes
+#AllowTcpForwarding yes
+#GatewayPorts no
+X11Forwarding no
+X11DisplayOffset 10
+#X11UseLocalhost yes
+#PermitTTY yes
+PrintMotd no
+PrintLastLog yes
+TCPKeepAlive yes
+#PermitUserEnvironment no
+Compression yes
+#ClientAliveInterval 0
+#ClientAliveCountMax 3
+UseDNS yes
+#PidFile /var/run/sshd.pid
+#MaxStartups 10:30:100
+#PermitTunnel no
+#ChrootDirectory none
+#VersionAddendum none
+
+# no default banner path
+#Banner none
+
+# Allow client to pass locale environment variables
+AcceptEnv LANG LC_*
+
+# override default of no subsystems
+Subsystem sftp /usr/lib/openssh/sftp-server
+
+# Example of overriding settings on a per-user basis
+#Match User anoncvs
+# X11Forwarding no
+# AllowTcpForwarding no
+# PermitTTY no
+
--- /dev/null
+access_compat
+alias
+auth_basic
+authn_core
+authn_dbd
+authn_file
+authz_core
+authz_dbd
+authz_host
+authz_user
+autoindex
+dbd
+deflate
+dir
+env
+filter
+jk
+mime
+mpm_prefork
+negotiation
+phpPHPVERSION
+reqtimeout
+rewrite
+setenvif
+socache_shmcb
+ssl
+status
+authn_socache
+expires
+headers
--- /dev/null
+# Because we are using logrotate for greater flexibility, disable the
+# internal certbot logrotation.
+max-log-backups = 0
\ No newline at end of file
--- /dev/null
+# This file contains important security parameters. If you modify this file
+# manually, Certbot will be unable to automatically provide future security
+# updates. Instead, Certbot will print and log an error message with a path to
+# the up-to-date file that you will need to refer to when manually updating
+# this file.
+
+SSLEngine on
+
+# Intermediate configuration, tweak to your needs
+SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
+SSLCipherSuite ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384
+SSLHonorCipherOrder off
+SSLSessionTickets off
+
+SSLOptions +StrictRequire
+
+# Add vhost name to log entries:
+LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" vhost_combined
+LogFormat "%v %h %l %u %t \"%r\" %>s %b" vhost_common
--- /dev/null
+[PHP]
+
+;;;;;;;;;;;;;;;;;;;
+; About php.ini ;
+;;;;;;;;;;;;;;;;;;;
+; PHP's initialization file, generally called php.ini, is responsible for
+; configuring many of the aspects of PHP's behavior.
+
+; PHP attempts to find and load this configuration from a number of locations.
+; The following is a summary of its search order:
+; 1. SAPI module specific location.
+; 2. The PHPRC environment variable.
+; 3. A number of predefined registry keys on Windows
+; 4. Current working directory (except CLI)
+; 5. The web server's directory (for SAPI modules), or directory of PHP
+; (otherwise in Windows)
+; 6. The directory from the --with-config-file-path compile time option, or the
+; Windows directory (usually C:\windows)
+; See the PHP docs for more specific information.
+; https://php.net/configuration.file
+
+; The syntax of the file is extremely simple. Whitespace and lines
+; beginning with a semicolon are silently ignored (as you probably guessed).
+; Section headers (e.g. [Foo]) are also silently ignored, even though
+; they might mean something in the future.
+
+; Directives following the section heading [PATH=/www/mysite] only
+; apply to PHP files in the /www/mysite directory. Directives
+; following the section heading [HOST=www.example.com] only apply to
+; PHP files served from www.example.com. Directives set in these
+; special sections cannot be overridden by user-defined INI files or
+; at runtime. Currently, [PATH=] and [HOST=] sections only work under
+; CGI/FastCGI.
+; https://php.net/ini.sections
+
+; Directives are specified using the following syntax:
+; directive = value
+; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
+; Directives are variables used to configure PHP or PHP extensions.
+; There is no name validation. If PHP can't find an expected
+; directive because it is not set or is mistyped, a default value will be used.
+
+; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
+; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
+; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
+; previously set variable or directive (e.g. ${foo})
+
+; Expressions in the INI file are limited to bitwise operators and parentheses:
+; | bitwise OR
+; ^ bitwise XOR
+; & bitwise AND
+; ~ bitwise NOT
+; ! boolean NOT
+
+; Boolean flags can be turned on using the values 1, On, True or Yes.
+; They can be turned off using the values 0, Off, False or No.
+
+; An empty string can be denoted by simply not writing anything after the equal
+; sign, or by using the None keyword:
+
+; foo = ; sets foo to an empty string
+; foo = None ; sets foo to an empty string
+; foo = "None" ; sets foo to the string 'None'
+
+; If you use constants in your value, and these constants belong to a
+; dynamically loaded extension (either a PHP extension or a Zend extension),
+; you may only use these constants *after* the line that loads the extension.
+
+;;;;;;;;;;;;;;;;;;;
+; About this file ;
+;;;;;;;;;;;;;;;;;;;
+; PHP comes packaged with two INI files. One that is recommended to be used
+; in production environments and one that is recommended to be used in
+; development environments.
+
+; php.ini-production contains settings which hold security, performance and
+; best practices at its core. But please be aware, these settings may break
+; compatibility with older or less security-conscious applications. We
+; recommending using the production ini in production and testing environments.
+
+; php.ini-development is very similar to its production variant, except it is
+; much more verbose when it comes to errors. We recommend using the
+; development version only in development environments, as errors shown to
+; application users can inadvertently leak otherwise secure information.
+
+; This is the php.ini-production INI file.
+
+;;;;;;;;;;;;;;;;;;;
+; Quick Reference ;
+;;;;;;;;;;;;;;;;;;;
+
+; The following are all the settings which are different in either the production
+; or development versions of the INIs with respect to PHP's default behavior.
+; Please see the actual settings later in the document for more details as to why
+; we recommend these changes in PHP's behavior.
+
+; display_errors
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+
+; display_startup_errors
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+
+; error_reporting
+; Default Value: E_ALL
+; Development Value: E_ALL
+; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
+
+; log_errors
+; Default Value: Off
+; Development Value: On
+; Production Value: On
+
+; max_input_time
+; Default Value: -1 (Unlimited)
+; Development Value: 60 (60 seconds)
+; Production Value: 60 (60 seconds)
+
+; output_buffering
+; Default Value: Off
+; Development Value: 4096
+; Production Value: 4096
+
+; register_argc_argv
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+
+; request_order
+; Default Value: None
+; Development Value: "GP"
+; Production Value: "GP"
+
+; session.gc_divisor
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+
+; session.sid_bits_per_character
+; Default Value: 4
+; Development Value: 5
+; Production Value: 5
+
+; short_open_tag
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+
+; variables_order
+; Default Value: "EGPCS"
+; Development Value: "GPCS"
+; Production Value: "GPCS"
+
+; zend.exception_ignore_args
+; Default Value: Off
+; Development Value: Off
+; Production Value: On
+
+; zend.exception_string_param_max_len
+; Default Value: 15
+; Development Value: 15
+; Production Value: 0
+
+;;;;;;;;;;;;;;;;;;;;
+; php.ini Options ;
+;;;;;;;;;;;;;;;;;;;;
+; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
+;user_ini.filename = ".user.ini"
+
+; To disable this feature set this option to an empty value
+;user_ini.filename =
+
+; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
+;user_ini.cache_ttl = 300
+
+;;;;;;;;;;;;;;;;;;;;
+; Language Options ;
+;;;;;;;;;;;;;;;;;;;;
+
+; Enable the PHP scripting language engine under Apache.
+; https://php.net/engine
+engine = On
+
+; This directive determines whether or not PHP will recognize code between
+; <? and ?> tags as PHP source which should be processed as such. It is
+; generally recommended that <?php and ?> should be used and that this feature
+; should be disabled, as enabling it may result in issues when generating XML
+; documents, however this remains supported for backward compatibility reasons.
+; Note that this directive does not control the <?= shorthand tag, which can be
+; used regardless of this directive.
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+; https://php.net/short-open-tag
+short_open_tag = Off
+
+; The number of significant digits displayed in floating point numbers.
+; https://php.net/precision
+precision = 14
+
+; Output buffering is a mechanism for controlling how much output data
+; (excluding headers and cookies) PHP should keep internally before pushing that
+; data to the client. If your application's output exceeds this setting, PHP
+; will send that data in chunks of roughly the size you specify.
+; Turning on this setting and managing its maximum buffer size can yield some
+; interesting side-effects depending on your application and web server.
+; You may be able to send headers and cookies after you've already sent output
+; through print or echo. You also may see performance benefits if your server is
+; emitting less packets due to buffered output versus PHP streaming the output
+; as it gets it. On production servers, 4096 bytes is a good setting for performance
+; reasons.
+; Note: Output buffering can also be controlled via Output Buffering Control
+; functions.
+; Possible Values:
+; On = Enabled and buffer is unlimited. (Use with caution)
+; Off = Disabled
+; Integer = Enables the buffer and sets its maximum size in bytes.
+; Note: This directive is hardcoded to Off for the CLI SAPI
+; Default Value: Off
+; Development Value: 4096
+; Production Value: 4096
+; https://php.net/output-buffering
+output_buffering = 4096
+
+; You can redirect all of the output of your scripts to a function. For
+; example, if you set output_handler to "mb_output_handler", character
+; encoding will be transparently converted to the specified encoding.
+; Setting any output handler automatically turns on output buffering.
+; Note: People who wrote portable scripts should not depend on this ini
+; directive. Instead, explicitly set the output handler using ob_start().
+; Using this ini directive may cause problems unless you know what script
+; is doing.
+; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
+; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
+; Note: output_handler must be empty if this is set 'On' !!!!
+; Instead you must use zlib.output_handler.
+; https://php.net/output-handler
+;output_handler =
+
+; URL rewriter function rewrites URL on the fly by using
+; output buffer. You can set target tags by this configuration.
+; "form" tag is special tag. It will add hidden input tag to pass values.
+; Refer to session.trans_sid_tags for usage.
+; Default Value: "form="
+; Development Value: "form="
+; Production Value: "form="
+;url_rewriter.tags
+
+; URL rewriter will not rewrite absolute URL nor form by default. To enable
+; absolute URL rewrite, allowed hosts must be defined at RUNTIME.
+; Refer to session.trans_sid_hosts for more details.
+; Default Value: ""
+; Development Value: ""
+; Production Value: ""
+;url_rewriter.hosts
+
+; Transparent output compression using the zlib library
+; Valid values for this option are 'off', 'on', or a specific buffer size
+; to be used for compression (default is 4KB)
+; Note: Resulting chunk size may vary due to nature of compression. PHP
+; outputs chunks that are few hundreds bytes each as a result of
+; compression. If you prefer a larger chunk size for better
+; performance, enable output_buffering in addition.
+; Note: You need to use zlib.output_handler instead of the standard
+; output_handler, or otherwise the output will be corrupted.
+; https://php.net/zlib.output-compression
+zlib.output_compression = Off
+
+; https://php.net/zlib.output-compression-level
+;zlib.output_compression_level = -1
+
+; You cannot specify additional output handlers if zlib.output_compression
+; is activated here. This setting does the same as output_handler but in
+; a different order.
+; https://php.net/zlib.output-handler
+;zlib.output_handler =
+
+; Implicit flush tells PHP to tell the output layer to flush itself
+; automatically after every output block. This is equivalent to calling the
+; PHP function flush() after each and every call to print() or echo() and each
+; and every HTML block. Turning this option on has serious performance
+; implications and is generally recommended for debugging purposes only.
+; https://php.net/implicit-flush
+; Note: This directive is hardcoded to On for the CLI SAPI
+implicit_flush = Off
+
+; The unserialize callback function will be called (with the undefined class'
+; name as parameter), if the unserializer finds an undefined class
+; which should be instantiated. A warning appears if the specified function is
+; not defined, or if the function doesn't include/implement the missing class.
+; So only set this entry, if you really want to implement such a
+; callback-function.
+unserialize_callback_func =
+
+; The unserialize_max_depth specifies the default depth limit for unserialized
+; structures. Setting the depth limit too high may result in stack overflows
+; during unserialization. The unserialize_max_depth ini setting can be
+; overridden by the max_depth option on individual unserialize() calls.
+; A value of 0 disables the depth limit.
+;unserialize_max_depth = 4096
+
+; When floats & doubles are serialized, store serialize_precision significant
+; digits after the floating point. The default value ensures that when floats
+; are decoded with unserialize, the data will remain the same.
+; The value is also used for json_encode when encoding double values.
+; If -1 is used, then dtoa mode 0 is used which automatically select the best
+; precision.
+serialize_precision = -1
+
+; open_basedir, if set, limits all file operations to the defined directory
+; and below. This directive makes most sense if used in a per-directory
+; or per-virtualhost web server configuration file.
+; Note: disables the realpath cache
+; https://php.net/open-basedir
+;open_basedir =
+
+; This directive allows you to disable certain functions.
+; It receives a comma-delimited list of function names.
+; https://php.net/disable-functions
+disable_functions =
+
+; This directive allows you to disable certain classes.
+; It receives a comma-delimited list of class names.
+; https://php.net/disable-classes
+disable_classes =
+
+; Colors for Syntax Highlighting mode. Anything that's acceptable in
+; <span style="color: ???????"> would work.
+; https://php.net/syntax-highlighting
+;highlight.string = #DD0000
+;highlight.comment = #FF9900
+;highlight.keyword = #007700
+;highlight.default = #0000BB
+;highlight.html = #000000
+
+; If enabled, the request will be allowed to complete even if the user aborts
+; the request. Consider enabling it if executing long requests, which may end up
+; being interrupted by the user or a browser timing out. PHP's default behavior
+; is to disable this feature.
+; https://php.net/ignore-user-abort
+;ignore_user_abort = On
+
+; Determines the size of the realpath cache to be used by PHP. This value should
+; be increased on systems where PHP opens many files to reflect the quantity of
+; the file operations performed.
+; Note: if open_basedir is set, the cache is disabled
+; https://php.net/realpath-cache-size
+;realpath_cache_size = 4096k
+
+; Duration of time, in seconds for which to cache realpath information for a given
+; file or directory. For systems with rarely changing files, consider increasing this
+; value.
+; https://php.net/realpath-cache-ttl
+;realpath_cache_ttl = 120
+
+; Enables or disables the circular reference collector.
+; https://php.net/zend.enable-gc
+zend.enable_gc = On
+
+; If enabled, scripts may be written in encodings that are incompatible with
+; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
+; encodings. To use this feature, mbstring extension must be enabled.
+;zend.multibyte = Off
+
+; Allows to set the default encoding for the scripts. This value will be used
+; unless "declare(encoding=...)" directive appears at the top of the script.
+; Only affects if zend.multibyte is set.
+;zend.script_encoding =
+
+; Allows to include or exclude arguments from stack traces generated for exceptions.
+; In production, it is recommended to turn this setting on to prohibit the output
+; of sensitive information in stack traces
+; Default Value: Off
+; Development Value: Off
+; Production Value: On
+zend.exception_ignore_args = On
+
+; Allows setting the maximum string length in an argument of a stringified stack trace
+; to a value between 0 and 1000000.
+; This has no effect when zend.exception_ignore_args is enabled.
+; Default Value: 15
+; Development Value: 15
+; Production Value: 0
+; In production, it is recommended to set this to 0 to reduce the output
+; of sensitive information in stack traces.
+zend.exception_string_param_max_len = 0
+
+;;;;;;;;;;;;;;;;;
+; Miscellaneous ;
+;;;;;;;;;;;;;;;;;
+
+; Decides whether PHP may expose the fact that it is installed on the server
+; (e.g. by adding its signature to the Web server header). It is no security
+; threat in any way, but it makes it possible to determine whether you use PHP
+; on your server or not.
+; https://php.net/expose-php
+expose_php = Off
+
+;;;;;;;;;;;;;;;;;;;
+; Resource Limits ;
+;;;;;;;;;;;;;;;;;;;
+
+; Maximum execution time of each script, in seconds
+; https://php.net/max-execution-time
+; Note: This directive is hardcoded to 0 for the CLI SAPI
+max_execution_time = 30
+
+; Maximum amount of time each script may spend parsing request data. It's a good
+; idea to limit this time on productions servers in order to eliminate unexpectedly
+; long running scripts.
+; Note: This directive is hardcoded to -1 for the CLI SAPI
+; Default Value: -1 (Unlimited)
+; Development Value: 60 (60 seconds)
+; Production Value: 60 (60 seconds)
+; https://php.net/max-input-time
+max_input_time = 60
+
+; Maximum input variable nesting level
+; https://php.net/max-input-nesting-level
+;max_input_nesting_level = 64
+
+; How many GET/POST/COOKIE input variables may be accepted
+;max_input_vars = 1000
+
+; How many multipart body parts (combined input variable and file uploads) may
+; be accepted.
+; Default Value: -1 (Sum of max_input_vars and max_file_uploads)
+;max_multipart_body_parts = 1500
+
+; Maximum amount of memory a script may consume
+; https://php.net/memory-limit
+memory_limit = 128M
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+; Error handling and logging ;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+; This directive informs PHP of which errors, warnings and notices you would like
+; it to take action for. The recommended way of setting values for this
+; directive is through the use of the error level constants and bitwise
+; operators. The error level constants are below here for convenience as well as
+; some common settings and their meanings.
+; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
+; those related to E_NOTICE and E_STRICT, which together cover best practices and
+; recommended coding standards in PHP. For performance reasons, this is the
+; recommend error reporting setting. Your production server shouldn't be wasting
+; resources complaining about best practices and coding standards. That's what
+; development servers and development settings are for.
+; Note: The php.ini-development file has this setting as E_ALL. This
+; means it pretty much reports everything which is exactly what you want during
+; development and early testing.
+;
+; Error Level Constants:
+; E_ALL - All errors and warnings
+; E_ERROR - fatal run-time errors
+; E_RECOVERABLE_ERROR - almost fatal run-time errors
+; E_WARNING - run-time warnings (non-fatal errors)
+; E_PARSE - compile-time parse errors
+; E_NOTICE - run-time notices (these are warnings which often result
+; from a bug in your code, but it's possible that it was
+; intentional (e.g., using an uninitialized variable and
+; relying on the fact it is automatically initialized to an
+; empty string)
+; E_STRICT - run-time notices, enable to have PHP suggest changes
+; to your code which will ensure the best interoperability
+; and forward compatibility of your code
+; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
+; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
+; initial startup
+; E_COMPILE_ERROR - fatal compile-time errors
+; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
+; E_USER_ERROR - user-generated error message
+; E_USER_WARNING - user-generated warning message
+; E_USER_NOTICE - user-generated notice message
+; E_DEPRECATED - warn about code that will not work in future versions
+; of PHP
+; E_USER_DEPRECATED - user-generated deprecation warnings
+;
+; Common Values:
+; E_ALL (Show all errors, warnings and notices including coding standards.)
+; E_ALL & ~E_NOTICE (Show all errors, except for notices)
+; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
+; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
+; Default Value: E_ALL
+; Development Value: E_ALL
+; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
+; https://php.net/error-reporting
+error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
+
+; This directive controls whether or not and where PHP will output errors,
+; notices and warnings too. Error output is very useful during development, but
+; it could be very dangerous in production environments. Depending on the code
+; which is triggering the error, sensitive information could potentially leak
+; out of your application such as database usernames and passwords or worse.
+; For production environments, we recommend logging errors rather than
+; sending them to STDOUT.
+; Possible Values:
+; Off = Do not display any errors
+; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
+; On or stdout = Display errors to STDOUT
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+; https://php.net/display-errors
+display_errors = Off
+
+; The display of errors which occur during PHP's startup sequence are handled
+; separately from display_errors. We strongly recommend you set this to 'off'
+; for production servers to avoid leaking configuration details.
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+; https://php.net/display-startup-errors
+display_startup_errors = Off
+
+; Besides displaying errors, PHP can also log errors to locations such as a
+; server-specific log, STDERR, or a location specified by the error_log
+; directive found below. While errors should not be displayed on productions
+; servers they should still be monitored and logging is a great way to do that.
+; Default Value: Off
+; Development Value: On
+; Production Value: On
+; https://php.net/log-errors
+log_errors = On
+
+; Do not log repeated messages. Repeated errors must occur in same file on same
+; line unless ignore_repeated_source is set true.
+; https://php.net/ignore-repeated-errors
+ignore_repeated_errors = Off
+
+; Ignore source of message when ignoring repeated messages. When this setting
+; is On you will not log errors with repeated messages from different files or
+; source lines.
+; https://php.net/ignore-repeated-source
+ignore_repeated_source = Off
+
+; If this parameter is set to Off, then memory leaks will not be shown (on
+; stdout or in the log). This is only effective in a debug compile, and if
+; error reporting includes E_WARNING in the allowed list
+; https://php.net/report-memleaks
+report_memleaks = On
+
+; This setting is off by default.
+;report_zend_debug = 0
+
+; Turn off normal error reporting and emit XML-RPC error XML
+; https://php.net/xmlrpc-errors
+;xmlrpc_errors = 0
+
+; An XML-RPC faultCode
+;xmlrpc_error_number = 0
+
+; When PHP displays or logs an error, it has the capability of formatting the
+; error message as HTML for easier reading. This directive controls whether
+; the error message is formatted as HTML or not.
+; Note: This directive is hardcoded to Off for the CLI SAPI
+; https://php.net/html-errors
+;html_errors = On
+
+; If html_errors is set to On *and* docref_root is not empty, then PHP
+; produces clickable error messages that direct to a page describing the error
+; or function causing the error in detail.
+; You can download a copy of the PHP manual from https://php.net/docs
+; and change docref_root to the base URL of your local copy including the
+; leading '/'. You must also specify the file extension being used including
+; the dot. PHP's default behavior is to leave these settings empty, in which
+; case no links to documentation are generated.
+; Note: Never use this feature for production boxes.
+; https://php.net/docref-root
+; Examples
+;docref_root = "/phpmanual/"
+
+; https://php.net/docref-ext
+;docref_ext = .html
+
+; String to output before an error message. PHP's default behavior is to leave
+; this setting blank.
+; https://php.net/error-prepend-string
+; Example:
+;error_prepend_string = "<span style='color: #ff0000'>"
+
+; String to output after an error message. PHP's default behavior is to leave
+; this setting blank.
+; https://php.net/error-append-string
+; Example:
+;error_append_string = "</span>"
+
+; Log errors to specified file. PHP's default behavior is to leave this value
+; empty.
+; https://php.net/error-log
+; Example:
+;error_log = php_errors.log
+; Log errors to syslog (Event Log on Windows).
+;error_log = syslog
+
+; The syslog ident is a string which is prepended to every message logged
+; to syslog. Only used when error_log is set to syslog.
+;syslog.ident = php
+
+; The syslog facility is used to specify what type of program is logging
+; the message. Only used when error_log is set to syslog.
+;syslog.facility = user
+
+; Set this to disable filtering control characters (the default).
+; Some loggers only accept NVT-ASCII, others accept anything that's not
+; control characters. If your logger accepts everything, then no filtering
+; is needed at all.
+; Allowed values are:
+; ascii (all printable ASCII characters and NL)
+; no-ctrl (all characters except control characters)
+; all (all characters)
+; raw (like "all", but messages are not split at newlines)
+; https://php.net/syslog.filter
+;syslog.filter = ascii
+
+;windows.show_crt_warning
+; Default value: 0
+; Development value: 0
+; Production value: 0
+
+;;;;;;;;;;;;;;;;;
+; Data Handling ;
+;;;;;;;;;;;;;;;;;
+
+; The separator used in PHP generated URLs to separate arguments.
+; PHP's default setting is "&".
+; https://php.net/arg-separator.output
+; Example:
+;arg_separator.output = "&"
+
+; List of separator(s) used by PHP to parse input URLs into variables.
+; PHP's default setting is "&".
+; NOTE: Every character in this directive is considered as separator!
+; https://php.net/arg-separator.input
+; Example:
+;arg_separator.input = ";&"
+
+; This directive determines which super global arrays are registered when PHP
+; starts up. G,P,C,E & S are abbreviations for the following respective super
+; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
+; paid for the registration of these arrays and because ENV is not as commonly
+; used as the others, ENV is not recommended on productions servers. You
+; can still get access to the environment variables through getenv() should you
+; need to.
+; Default Value: "EGPCS"
+; Development Value: "GPCS"
+; Production Value: "GPCS";
+; https://php.net/variables-order
+variables_order = "GPCS"
+
+; This directive determines which super global data (G,P & C) should be
+; registered into the super global array REQUEST. If so, it also determines
+; the order in which that data is registered. The values for this directive
+; are specified in the same manner as the variables_order directive,
+; EXCEPT one. Leaving this value empty will cause PHP to use the value set
+; in the variables_order directive. It does not mean it will leave the super
+; globals array REQUEST empty.
+; Default Value: None
+; Development Value: "GP"
+; Production Value: "GP"
+; https://php.net/request-order
+request_order = "GP"
+
+; This directive determines whether PHP registers $argv & $argc each time it
+; runs. $argv contains an array of all the arguments passed to PHP when a script
+; is invoked. $argc contains an integer representing the number of arguments
+; that were passed when the script was invoked. These arrays are extremely
+; useful when running scripts from the command line. When this directive is
+; enabled, registering these variables consumes CPU cycles and memory each time
+; a script is executed. For performance reasons, this feature should be disabled
+; on production servers.
+; Note: This directive is hardcoded to On for the CLI SAPI
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+; https://php.net/register-argc-argv
+register_argc_argv = Off
+
+; When enabled, the ENV, REQUEST and SERVER variables are created when they're
+; first used (Just In Time) instead of when the script starts. If these
+; variables are not used within a script, having this directive on will result
+; in a performance gain. The PHP directive register_argc_argv must be disabled
+; for this directive to have any effect.
+; https://php.net/auto-globals-jit
+auto_globals_jit = On
+
+; Whether PHP will read the POST data.
+; This option is enabled by default.
+; Most likely, you won't want to disable this option globally. It causes $_POST
+; and $_FILES to always be empty; the only way you will be able to read the
+; POST data will be through the php://input stream wrapper. This can be useful
+; to proxy requests or to process the POST data in a memory efficient fashion.
+; https://php.net/enable-post-data-reading
+;enable_post_data_reading = Off
+
+; Maximum size of POST data that PHP will accept.
+; Its value may be 0 to disable the limit. It is ignored if POST data reading
+; is disabled through enable_post_data_reading.
+; https://php.net/post-max-size
+post_max_size = 16M
+
+; Automatically add files before PHP document.
+; https://php.net/auto-prepend-file
+auto_prepend_file =
+
+; Automatically add files after PHP document.
+; https://php.net/auto-append-file
+auto_append_file =
+
+; By default, PHP will output a media type using the Content-Type header. To
+; disable this, simply set it to be empty.
+;
+; PHP's built-in default media type is set to text/html.
+; https://php.net/default-mimetype
+default_mimetype = "text/html"
+
+; PHP's default character set is set to UTF-8.
+; https://php.net/default-charset
+default_charset = "UTF-8"
+
+; PHP internal character encoding is set to empty.
+; If empty, default_charset is used.
+; https://php.net/internal-encoding
+;internal_encoding =
+
+; PHP input character encoding is set to empty.
+; If empty, default_charset is used.
+; https://php.net/input-encoding
+;input_encoding =
+
+; PHP output character encoding is set to empty.
+; If empty, default_charset is used.
+; See also output_buffer.
+; https://php.net/output-encoding
+;output_encoding =
+
+;;;;;;;;;;;;;;;;;;;;;;;;;
+; Paths and Directories ;
+;;;;;;;;;;;;;;;;;;;;;;;;;
+
+; UNIX: "/path1:/path2"
+;include_path = ".:/usr/share/php"
+;
+; Windows: "\path1;\path2"
+;include_path = ".;c:\php\includes"
+;
+; PHP's default setting for include_path is ".;/path/to/php/pear"
+; https://php.net/include-path
+
+; The root of the PHP pages, used only if nonempty.
+; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
+; if you are running php as a CGI under any web server (other than IIS)
+; see documentation for security issues. The alternate is to use the
+; cgi.force_redirect configuration below
+; https://php.net/doc-root
+doc_root =
+
+; The directory under which PHP opens the script using /~username used only
+; if nonempty.
+; https://php.net/user-dir
+user_dir =
+
+; Directory in which the loadable extensions (modules) reside.
+; https://php.net/extension-dir
+;extension_dir = "./"
+; On windows:
+;extension_dir = "ext"
+
+; Directory where the temporary files should be placed.
+; Defaults to the system default (see sys_get_temp_dir)
+;sys_temp_dir = "/tmp"
+
+; Whether or not to enable the dl() function. The dl() function does NOT work
+; properly in multithreaded servers, such as IIS or Zeus, and is automatically
+; disabled on them.
+; https://php.net/enable-dl
+enable_dl = Off
+
+; cgi.force_redirect is necessary to provide security running PHP as a CGI under
+; most web servers. Left undefined, PHP turns this on by default. You can
+; turn it off here AT YOUR OWN RISK
+; **You CAN safely turn this off for IIS, in fact, you MUST.**
+; https://php.net/cgi.force-redirect
+;cgi.force_redirect = 1
+
+; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
+; every request. PHP's default behavior is to disable this feature.
+;cgi.nph = 1
+
+; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
+; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
+; will look for to know it is OK to continue execution. Setting this variable MAY
+; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
+; https://php.net/cgi.redirect-status-env
+;cgi.redirect_status_env =
+
+; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
+; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
+; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
+; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
+; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
+; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
+; https://php.net/cgi.fix-pathinfo
+;cgi.fix_pathinfo=1
+
+; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside
+; of the web tree and people will not be able to circumvent .htaccess security.
+;cgi.discard_path=1
+
+; FastCGI under IIS supports the ability to impersonate
+; security tokens of the calling client. This allows IIS to define the
+; security context that the request runs under. mod_fastcgi under Apache
+; does not currently support this feature (03/17/2002)
+; Set to 1 if running under IIS. Default is zero.
+; https://php.net/fastcgi.impersonate
+;fastcgi.impersonate = 1
+
+; Disable logging through FastCGI connection. PHP's default behavior is to enable
+; this feature.
+;fastcgi.logging = 0
+
+; cgi.rfc2616_headers configuration option tells PHP what type of headers to
+; use when sending HTTP response code. If set to 0, PHP sends Status: header that
+; is supported by Apache. When this option is set to 1, PHP will send
+; RFC2616 compliant header.
+; Default is zero.
+; https://php.net/cgi.rfc2616-headers
+;cgi.rfc2616_headers = 0
+
+; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #!
+; (shebang) at the top of the running script. This line might be needed if the
+; script support running both as stand-alone script and via PHP CGI<. PHP in CGI
+; mode skips this line and ignores its content if this directive is turned on.
+; https://php.net/cgi.check-shebang-line
+;cgi.check_shebang_line=1
+
+;;;;;;;;;;;;;;;;
+; File Uploads ;
+;;;;;;;;;;;;;;;;
+
+; Whether to allow HTTP file uploads.
+; https://php.net/file-uploads
+file_uploads = On
+
+; Temporary directory for HTTP uploaded files (will use system default if not
+; specified).
+; https://php.net/upload-tmp-dir
+;upload_tmp_dir =
+
+; Maximum allowed size for uploaded files.
+; https://php.net/upload-max-filesize
+upload_max_filesize = 32M
+
+; Maximum number of files that can be uploaded via a single request
+max_file_uploads = 20
+
+;;;;;;;;;;;;;;;;;;
+; Fopen wrappers ;
+;;;;;;;;;;;;;;;;;;
+
+; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
+; https://php.net/allow-url-fopen
+allow_url_fopen = On
+
+; Whether to allow include/require to open URLs (like https:// or ftp://) as files.
+; https://php.net/allow-url-include
+allow_url_include = Off
+
+; Define the anonymous ftp password (your email address). PHP's default setting
+; for this is empty.
+; https://php.net/from
+;from="john@doe.com"
+
+; Define the User-Agent string. PHP's default setting for this is empty.
+; https://php.net/user-agent
+;user_agent="PHP"
+
+; Default timeout for socket based streams (seconds)
+; https://php.net/default-socket-timeout
+default_socket_timeout = 60
+
+; If your scripts have to deal with files from Macintosh systems,
+; or you are running on a Mac and need to deal with files from
+; unix or win32 systems, setting this flag will cause PHP to
+; automatically detect the EOL character in those files so that
+; fgets() and file() will work regardless of the source of the file.
+; https://php.net/auto-detect-line-endings
+;auto_detect_line_endings = Off
+
+;;;;;;;;;;;;;;;;;;;;;;
+; Dynamic Extensions ;
+;;;;;;;;;;;;;;;;;;;;;;
+
+; If you wish to have an extension loaded automatically, use the following
+; syntax:
+;
+; extension=modulename
+;
+; For example:
+;
+; extension=mysqli
+;
+; When the extension library to load is not located in the default extension
+; directory, You may specify an absolute path to the library file:
+;
+; extension=/path/to/extension/mysqli.so
+;
+; Note : The syntax used in previous PHP versions ('extension=<ext>.so' and
+; 'extension='php_<ext>.dll') is supported for legacy reasons and may be
+; deprecated in a future PHP major version. So, when it is possible, please
+; move to the new ('extension=<ext>) syntax.
+;
+; Notes for Windows environments :
+;
+; - Many DLL files are located in the ext/
+; extension folders as well as the separate PECL DLL download.
+; Be sure to appropriately set the extension_dir directive.
+;
+;extension=bz2
+
+; The ldap extension must be before curl if OpenSSL 1.0.2 and OpenLDAP is used
+; otherwise it results in segfault when unloading after using SASL.
+; See https://github.com/php/php-src/issues/8620 for more info.
+;extension=ldap
+
+;extension=curl
+;extension=ffi
+;extension=ftp
+;extension=fileinfo
+;extension=gd
+;extension=gettext
+;extension=gmp
+;extension=intl
+;extension=imap
+;extension=mbstring
+;extension=exif ; Must be after mbstring as it depends on it
+;extension=mysqli
+;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
+;extension=oci8_19 ; Use with Oracle Database 19 Instant Client
+;extension=odbc
+;extension=openssl
+;extension=pdo_firebird
+;extension=pdo_mysql
+;extension=pdo_oci
+;extension=pdo_odbc
+;extension=pdo_pgsql
+;extension=pdo_sqlite
+;extension=pgsql
+;extension=shmop
+
+; The MIBS data available in the PHP distribution must be installed.
+; See https://www.php.net/manual/en/snmp.installation.php
+;extension=snmp
+
+;extension=soap
+;extension=sockets
+;extension=sodium
+;extension=sqlite3
+;extension=tidy
+;extension=xsl
+;extension=zip
+
+;zend_extension=opcache
+
+;;;;;;;;;;;;;;;;;;;
+; Module Settings ;
+;;;;;;;;;;;;;;;;;;;
+
+[CLI Server]
+; Whether the CLI web server uses ANSI color coding in its terminal output.
+cli_server.color = On
+
+[Date]
+; Defines the default timezone used by the date functions
+; https://php.net/date.timezone
+;date.timezone =
+
+; https://php.net/date.default-latitude
+;date.default_latitude = 31.7667
+
+; https://php.net/date.default-longitude
+;date.default_longitude = 35.2333
+
+; https://php.net/date.sunrise-zenith
+;date.sunrise_zenith = 90.833333
+
+; https://php.net/date.sunset-zenith
+;date.sunset_zenith = 90.833333
+
+[filter]
+; https://php.net/filter.default
+;filter.default = unsafe_raw
+
+; https://php.net/filter.default-flags
+;filter.default_flags =
+
+[iconv]
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; If empty, default_charset or input_encoding or iconv.input_encoding is used.
+; The precedence is: default_charset < input_encoding < iconv.input_encoding
+;iconv.input_encoding =
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;iconv.internal_encoding =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; If empty, default_charset or output_encoding or iconv.output_encoding is used.
+; The precedence is: default_charset < output_encoding < iconv.output_encoding
+; To use an output encoding conversion, iconv's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+;iconv.output_encoding =
+
+[imap]
+; rsh/ssh logins are disabled by default. Use this INI entry if you want to
+; enable them. Note that the IMAP library does not filter mailbox names before
+; passing them to rsh/ssh command, thus passing untrusted data to this function
+; with rsh/ssh enabled is insecure.
+;imap.enable_insecure_rsh=0
+
+[intl]
+;intl.default_locale =
+; This directive allows you to produce PHP errors when some error
+; happens within intl functions. The value is the level of the error produced.
+; Default is 0, which does not produce any errors.
+;intl.error_level = E_WARNING
+;intl.use_exceptions = 0
+
+[sqlite3]
+; Directory pointing to SQLite3 extensions
+; https://php.net/sqlite3.extension-dir
+;sqlite3.extension_dir =
+
+; SQLite defensive mode flag (only available from SQLite 3.26+)
+; When the defensive flag is enabled, language features that allow ordinary
+; SQL to deliberately corrupt the database file are disabled. This forbids
+; writing directly to the schema, shadow tables (eg. FTS data tables), or
+; the sqlite_dbpage virtual table.
+; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html
+; (for older SQLite versions, this flag has no use)
+;sqlite3.defensive = 1
+
+[Pcre]
+; PCRE library backtracking limit.
+; https://php.net/pcre.backtrack-limit
+;pcre.backtrack_limit=100000
+
+; PCRE library recursion limit.
+; Please note that if you set this value to a high number you may consume all
+; the available process stack and eventually crash PHP (due to reaching the
+; stack size limit imposed by the Operating System).
+; https://php.net/pcre.recursion-limit
+;pcre.recursion_limit=100000
+
+; Enables or disables JIT compilation of patterns. This requires the PCRE
+; library to be compiled with JIT support.
+;pcre.jit=1
+
+[Pdo]
+; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
+; https://php.net/pdo-odbc.connection-pooling
+;pdo_odbc.connection_pooling=strict
+
+[Pdo_mysql]
+; Default socket name for local MySQL connects. If empty, uses the built-in
+; MySQL defaults.
+pdo_mysql.default_socket=
+
+[Phar]
+; https://php.net/phar.readonly
+;phar.readonly = On
+
+; https://php.net/phar.require-hash
+;phar.require_hash = On
+
+;phar.cache_list =
+
+[mail function]
+; For Win32 only.
+; https://php.net/smtp
+SMTP = localhost
+; https://php.net/smtp-port
+smtp_port = 25
+
+; For Win32 only.
+; https://php.net/sendmail-from
+;sendmail_from = me@example.com
+
+; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
+; https://php.net/sendmail-path
+;sendmail_path =
+
+; Force the addition of the specified parameters to be passed as extra parameters
+; to the sendmail binary. These parameters will always replace the value of
+; the 5th parameter to mail().
+;mail.force_extra_parameters =
+
+; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
+mail.add_x_header = Off
+
+; Use mixed LF and CRLF line separators to keep compatibility with some
+; RFC 2822 non conformant MTA.
+mail.mixed_lf_and_crlf = Off
+
+; The path to a log file that will log all mail() calls. Log entries include
+; the full path of the script, line number, To address and headers.
+;mail.log =
+; Log mail to syslog (Event Log on Windows).
+;mail.log = syslog
+
+[ODBC]
+; https://php.net/odbc.default-db
+;odbc.default_db = Not yet implemented
+
+; https://php.net/odbc.default-user
+;odbc.default_user = Not yet implemented
+
+; https://php.net/odbc.default-pw
+;odbc.default_pw = Not yet implemented
+
+; Controls the ODBC cursor model.
+; Default: SQL_CURSOR_STATIC (default).
+;odbc.default_cursortype
+
+; Allow or prevent persistent links.
+; https://php.net/odbc.allow-persistent
+odbc.allow_persistent = On
+
+; Check that a connection is still valid before reuse.
+; https://php.net/odbc.check-persistent
+odbc.check_persistent = On
+
+; Maximum number of persistent links. -1 means no limit.
+; https://php.net/odbc.max-persistent
+odbc.max_persistent = -1
+
+; Maximum number of links (persistent + non-persistent). -1 means no limit.
+; https://php.net/odbc.max-links
+odbc.max_links = -1
+
+; Handling of LONG fields. Returns number of bytes to variables. 0 means
+; passthru.
+; https://php.net/odbc.defaultlrl
+odbc.defaultlrl = 4096
+
+; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
+; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
+; of odbc.defaultlrl and odbc.defaultbinmode
+; https://php.net/odbc.defaultbinmode
+odbc.defaultbinmode = 1
+
+[MySQLi]
+
+; Maximum number of persistent links. -1 means no limit.
+; https://php.net/mysqli.max-persistent
+mysqli.max_persistent = -1
+
+; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
+; https://php.net/mysqli.allow_local_infile
+;mysqli.allow_local_infile = On
+
+; It allows the user to specify a folder where files that can be sent via LOAD DATA
+; LOCAL can exist. It is ignored if mysqli.allow_local_infile is enabled.
+;mysqli.local_infile_directory =
+
+; Allow or prevent persistent links.
+; https://php.net/mysqli.allow-persistent
+mysqli.allow_persistent = On
+
+; Maximum number of links. -1 means no limit.
+; https://php.net/mysqli.max-links
+mysqli.max_links = -1
+
+; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
+; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
+; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
+; at MYSQL_PORT.
+; https://php.net/mysqli.default-port
+mysqli.default_port = 3306
+
+; Default socket name for local MySQL connects. If empty, uses the built-in
+; MySQL defaults.
+; https://php.net/mysqli.default-socket
+mysqli.default_socket =
+
+; Default host for mysqli_connect() (doesn't apply in safe mode).
+; https://php.net/mysqli.default-host
+mysqli.default_host =
+
+; Default user for mysqli_connect() (doesn't apply in safe mode).
+; https://php.net/mysqli.default-user
+mysqli.default_user =
+
+; Default password for mysqli_connect() (doesn't apply in safe mode).
+; Note that this is generally a *bad* idea to store passwords in this file.
+; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
+; and reveal this password! And of course, any users with read access to this
+; file will be able to reveal the password as well.
+; https://php.net/mysqli.default-pw
+mysqli.default_pw =
+
+; If this option is enabled, closing a persistent connection will rollback
+; any pending transactions of this connection, before it is put back
+; into the persistent connection pool.
+;mysqli.rollback_on_cached_plink = Off
+
+[mysqlnd]
+; Enable / Disable collection of general statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+mysqlnd.collect_statistics = On
+
+; Enable / Disable collection of memory usage statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+mysqlnd.collect_memory_statistics = Off
+
+; Records communication from all extensions using mysqlnd to the specified log
+; file.
+; https://php.net/mysqlnd.debug
+;mysqlnd.debug =
+
+; Defines which queries will be logged.
+;mysqlnd.log_mask = 0
+
+; Default size of the mysqlnd memory pool, which is used by result sets.
+;mysqlnd.mempool_default_size = 16000
+
+; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
+;mysqlnd.net_cmd_buffer_size = 2048
+
+; Size of a pre-allocated buffer used for reading data sent by the server in
+; bytes.
+;mysqlnd.net_read_buffer_size = 32768
+
+; Timeout for network requests in seconds.
+;mysqlnd.net_read_timeout = 31536000
+
+; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
+; key.
+;mysqlnd.sha256_server_public_key =
+
+[OCI8]
+
+; Connection: Enables privileged connections using external
+; credentials (OCI_SYSOPER, OCI_SYSDBA)
+; https://php.net/oci8.privileged-connect
+;oci8.privileged_connect = Off
+
+; Connection: The maximum number of persistent OCI8 connections per
+; process. Using -1 means no limit.
+; https://php.net/oci8.max-persistent
+;oci8.max_persistent = -1
+
+; Connection: The maximum number of seconds a process is allowed to
+; maintain an idle persistent connection. Using -1 means idle
+; persistent connections will be maintained forever.
+; https://php.net/oci8.persistent-timeout
+;oci8.persistent_timeout = -1
+
+; Connection: The number of seconds that must pass before issuing a
+; ping during oci_pconnect() to check the connection validity. When
+; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
+; pings completely.
+; https://php.net/oci8.ping-interval
+;oci8.ping_interval = 60
+
+; Connection: Set this to a user chosen connection class to be used
+; for all pooled server requests with Oracle Database Resident
+; Connection Pooling (DRCP). To use DRCP, this value should be set to
+; the same string for all web servers running the same application,
+; the database pool must be configured, and the connection string must
+; specify to use a pooled server.
+;oci8.connection_class =
+
+; High Availability: Using On lets PHP receive Fast Application
+; Notification (FAN) events generated when a database node fails. The
+; database must also be configured to post FAN events.
+;oci8.events = Off
+
+; Tuning: This option enables statement caching, and specifies how
+; many statements to cache. Using 0 disables statement caching.
+; https://php.net/oci8.statement-cache-size
+;oci8.statement_cache_size = 20
+
+; Tuning: Enables row prefetching and sets the default number of
+; rows that will be fetched automatically after statement execution.
+; https://php.net/oci8.default-prefetch
+;oci8.default_prefetch = 100
+
+; Tuning: Sets the amount of LOB data that is internally returned from
+; Oracle Database when an Oracle LOB locator is initially retrieved as
+; part of a query. Setting this can improve performance by reducing
+; round-trips.
+; https://php.net/oci8.prefetch-lob-size
+; oci8.prefetch_lob_size = 0
+
+; Compatibility. Using On means oci_close() will not close
+; oci_connect() and oci_new_connect() connections.
+; https://php.net/oci8.old-oci-close-semantics
+;oci8.old_oci_close_semantics = Off
+
+[PostgreSQL]
+; Allow or prevent persistent links.
+; https://php.net/pgsql.allow-persistent
+pgsql.allow_persistent = On
+
+; Detect broken persistent links always with pg_pconnect().
+; Auto reset feature requires a little overheads.
+; https://php.net/pgsql.auto-reset-persistent
+pgsql.auto_reset_persistent = Off
+
+; Maximum number of persistent links. -1 means no limit.
+; https://php.net/pgsql.max-persistent
+pgsql.max_persistent = -1
+
+; Maximum number of links (persistent+non persistent). -1 means no limit.
+; https://php.net/pgsql.max-links
+pgsql.max_links = -1
+
+; Ignore PostgreSQL backends Notice message or not.
+; Notice message logging require a little overheads.
+; https://php.net/pgsql.ignore-notice
+pgsql.ignore_notice = 0
+
+; Log PostgreSQL backends Notice message or not.
+; Unless pgsql.ignore_notice=0, module cannot log notice message.
+; https://php.net/pgsql.log-notice
+pgsql.log_notice = 0
+
+[bcmath]
+; Number of decimal digits for all bcmath functions.
+; https://php.net/bcmath.scale
+bcmath.scale = 0
+
+[browscap]
+; https://php.net/browscap
+;browscap = extra/browscap.ini
+
+[Session]
+; Handler used to store/retrieve data.
+; https://php.net/session.save-handler
+session.save_handler = files
+
+; Argument passed to save_handler. In the case of files, this is the path
+; where data files are stored. Note: Windows users have to change this
+; variable in order to use PHP's session functions.
+;
+; The path can be defined as:
+;
+; session.save_path = "N;/path"
+;
+; where N is an integer. Instead of storing all the session files in
+; /path, what this will do is use subdirectories N-levels deep, and
+; store the session data in those directories. This is useful if
+; your OS has problems with many files in one directory, and is
+; a more efficient layout for servers that handle many sessions.
+;
+; NOTE 1: PHP will not create this directory structure automatically.
+; You can use the script in the ext/session dir for that purpose.
+; NOTE 2: See the section on garbage collection below if you choose to
+; use subdirectories for session storage
+;
+; The file storage module creates files using mode 600 by default.
+; You can change that by using
+;
+; session.save_path = "N;MODE;/path"
+;
+; where MODE is the octal representation of the mode. Note that this
+; does not overwrite the process's umask.
+; https://php.net/session.save-path
+;session.save_path = "/var/lib/php/sessions"
+
+; Whether to use strict session mode.
+; Strict session mode does not accept an uninitialized session ID, and
+; regenerates the session ID if the browser sends an uninitialized session ID.
+; Strict mode protects applications from session fixation via a session adoption
+; vulnerability. It is disabled by default for maximum compatibility, but
+; enabling it is encouraged.
+; https://wiki.php.net/rfc/strict_sessions
+session.use_strict_mode = 0
+
+; Whether to use cookies.
+; https://php.net/session.use-cookies
+session.use_cookies = 1
+
+; https://php.net/session.cookie-secure
+;session.cookie_secure =
+
+; This option forces PHP to fetch and use a cookie for storing and maintaining
+; the session id. We encourage this operation as it's very helpful in combating
+; session hijacking when not specifying and managing your own session id. It is
+; not the be-all and end-all of session hijacking defense, but it's a good start.
+; https://php.net/session.use-only-cookies
+session.use_only_cookies = 1
+
+; Name of the session (used as cookie name).
+; https://php.net/session.name
+session.name = PHPSESSID
+
+; Initialize session on request startup.
+; https://php.net/session.auto-start
+session.auto_start = 0
+
+; Lifetime in seconds of cookie or, if 0, until browser is restarted.
+; https://php.net/session.cookie-lifetime
+session.cookie_lifetime = 0
+
+; The path for which the cookie is valid.
+; https://php.net/session.cookie-path
+session.cookie_path = /
+
+; The domain for which the cookie is valid.
+; https://php.net/session.cookie-domain
+session.cookie_domain =
+
+; Whether or not to add the httpOnly flag to the cookie, which makes it
+; inaccessible to browser scripting languages such as JavaScript.
+; https://php.net/session.cookie-httponly
+session.cookie_httponly =
+
+; Add SameSite attribute to cookie to help mitigate Cross-Site Request Forgery (CSRF/XSRF)
+; Current valid values are "Strict", "Lax" or "None". When using "None",
+; make sure to include the quotes, as `none` is interpreted like `false` in ini files.
+; https://tools.ietf.org/html/draft-west-first-party-cookies-07
+session.cookie_samesite =
+
+; Handler used to serialize data. php is the standard serializer of PHP.
+; https://php.net/session.serialize-handler
+session.serialize_handler = php
+
+; Defines the probability that the 'garbage collection' process is started on every
+; session initialization. The probability is calculated by using gc_probability/gc_divisor,
+; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; https://php.net/session.gc-probability
+; Debian Default Value: 0
+; This is disabled in the Debian packages due to the strict permissions
+; on /var/lib/php. Instead, GC is performed through /etc/cron.d/php,
+; which uses the session.gc_maxlifetime setting. Please, check
+; /usr/share/doc/php8.2-common/README.Debian.gz for further reference.
+session.gc_probability = 0
+
+; Defines the probability that the 'garbage collection' process is started on every
+; session initialization. The probability is calculated by using gc_probability/gc_divisor,
+; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
+; For high volume production servers, using a value of 1000 is a more efficient approach.
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+; https://php.net/session.gc-divisor
+session.gc_divisor = 1000
+
+; After this number of seconds, stored data will be seen as 'garbage' and
+; cleaned up by the garbage collection process.
+; https://php.net/session.gc-maxlifetime
+session.gc_maxlifetime = 1440
+
+; NOTE: If you are using the subdirectory option for storing session files
+; (see session.save_path above), then garbage collection does *not*
+; happen automatically. You will need to do your own garbage
+; collection through a shell script, cron entry, or some other method.
+; For example, the following script is the equivalent of setting
+; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
+; find /path/to/sessions -cmin +24 -type f | xargs rm
+
+; Check HTTP Referer to invalidate externally stored URLs containing ids.
+; HTTP_REFERER has to contain this substring for the session to be
+; considered as valid.
+; https://php.net/session.referer-check
+session.referer_check =
+
+; Set to {nocache,private,public,} to determine HTTP caching aspects
+; or leave this empty to avoid sending anti-caching headers.
+; https://php.net/session.cache-limiter
+session.cache_limiter = nocache
+
+; Document expires after n minutes.
+; https://php.net/session.cache-expire
+session.cache_expire = 180
+
+; trans sid support is disabled by default.
+; Use of trans sid may risk your users' security.
+; Use this option with caution.
+; - User may send URL contains active session ID
+; to other person via. email/irc/etc.
+; - URL that contains active session ID may be stored
+; in publicly accessible computer.
+; - User may access your site with the same session ID
+; always using URL stored in browser's history or bookmarks.
+; https://php.net/session.use-trans-sid
+session.use_trans_sid = 0
+
+; Set session ID character length. This value could be between 22 to 256.
+; Shorter length than default is supported only for compatibility reason.
+; Users should use 32 or more chars.
+; https://php.net/session.sid-length
+; Default Value: 32
+; Development Value: 26
+; Production Value: 26
+session.sid_length = 26
+
+; The URL rewriter will look for URLs in a defined set of HTML tags.
+; <form> is special; if you include them here, the rewriter will
+; add a hidden <input> field with the info which is otherwise appended
+; to URLs. <form> tag's action attribute URL will not be modified
+; unless it is specified.
+; Note that all valid entries require a "=", even if no value follows.
+; Default Value: "a=href,area=href,frame=src,form="
+; Development Value: "a=href,area=href,frame=src,form="
+; Production Value: "a=href,area=href,frame=src,form="
+; https://php.net/url-rewriter.tags
+session.trans_sid_tags = "a=href,area=href,frame=src,form="
+
+; URL rewriter does not rewrite absolute URLs by default.
+; To enable rewrites for absolute paths, target hosts must be specified
+; at RUNTIME. i.e. use ini_set()
+; <form> tags is special. PHP will check action attribute's URL regardless
+; of session.trans_sid_tags setting.
+; If no host is defined, HTTP_HOST will be used for allowed host.
+; Example value: php.net,www.php.net,wiki.php.net
+; Use "," for multiple hosts. No spaces are allowed.
+; Default Value: ""
+; Development Value: ""
+; Production Value: ""
+;session.trans_sid_hosts=""
+
+; Define how many bits are stored in each character when converting
+; the binary hash data to something readable.
+; Possible values:
+; 4 (4 bits: 0-9, a-f)
+; 5 (5 bits: 0-9, a-v)
+; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
+; Default Value: 4
+; Development Value: 5
+; Production Value: 5
+; https://php.net/session.hash-bits-per-character
+session.sid_bits_per_character = 5
+
+; Enable upload progress tracking in $_SESSION
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; https://php.net/session.upload-progress.enabled
+;session.upload_progress.enabled = On
+
+; Cleanup the progress information as soon as all POST data has been read
+; (i.e. upload completed).
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; https://php.net/session.upload-progress.cleanup
+;session.upload_progress.cleanup = On
+
+; A prefix used for the upload progress key in $_SESSION
+; Default Value: "upload_progress_"
+; Development Value: "upload_progress_"
+; Production Value: "upload_progress_"
+; https://php.net/session.upload-progress.prefix
+;session.upload_progress.prefix = "upload_progress_"
+
+; The index name (concatenated with the prefix) in $_SESSION
+; containing the upload progress information
+; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; https://php.net/session.upload-progress.name
+;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
+
+; How frequently the upload progress should be updated.
+; Given either in percentages (per-file), or in bytes
+; Default Value: "1%"
+; Development Value: "1%"
+; Production Value: "1%"
+; https://php.net/session.upload-progress.freq
+;session.upload_progress.freq = "1%"
+
+; The minimum delay between updates, in seconds
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; https://php.net/session.upload-progress.min-freq
+;session.upload_progress.min_freq = "1"
+
+; Only write session data when session data is changed. Enabled by default.
+; https://php.net/session.lazy-write
+;session.lazy_write = On
+
+[Assertion]
+; Switch whether to compile assertions at all (to have no overhead at run-time)
+; -1: Do not compile at all
+; 0: Jump over assertion at run-time
+; 1: Execute assertions
+; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1)
+; Default Value: 1
+; Development Value: 1
+; Production Value: -1
+; https://php.net/zend.assertions
+zend.assertions = -1
+
+; Assert(expr); active by default.
+; https://php.net/assert.active
+;assert.active = On
+
+; Throw an AssertionError on failed assertions
+; https://php.net/assert.exception
+;assert.exception = On
+
+; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active)
+; https://php.net/assert.warning
+;assert.warning = On
+
+; Don't bail out by default.
+; https://php.net/assert.bail
+;assert.bail = Off
+
+; User-function to be called if an assertion fails.
+; https://php.net/assert.callback
+;assert.callback = 0
+
+[COM]
+; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
+; https://php.net/com.typelib-file
+;com.typelib_file =
+
+; allow Distributed-COM calls
+; https://php.net/com.allow-dcom
+;com.allow_dcom = true
+
+; autoregister constants of a component's typelib on com_load()
+; https://php.net/com.autoregister-typelib
+;com.autoregister_typelib = true
+
+; register constants casesensitive
+; https://php.net/com.autoregister-casesensitive
+;com.autoregister_casesensitive = false
+
+; show warnings on duplicate constant registrations
+; https://php.net/com.autoregister-verbose
+;com.autoregister_verbose = true
+
+; The default character set code-page to use when passing strings to and from COM objects.
+; Default: system ANSI code page
+;com.code_page=
+
+; The version of the .NET framework to use. The value of the setting are the first three parts
+; of the framework's version number, separated by dots, and prefixed with "v", e.g. "v4.0.30319".
+;com.dotnet_version=
+
+[mbstring]
+; language for internal character representation.
+; This affects mb_send_mail() and mbstring.detect_order.
+; https://php.net/mbstring.language
+;mbstring.language = Japanese
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; internal/script encoding.
+; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*)
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;mbstring.internal_encoding =
+
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; http input encoding.
+; mbstring.encoding_translation = On is needed to use this setting.
+; If empty, default_charset or input_encoding or mbstring.input is used.
+; The precedence is: default_charset < input_encoding < mbstring.http_input
+; https://php.net/mbstring.http-input
+;mbstring.http_input =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; http output encoding.
+; mb_output_handler must be registered as output buffer to function.
+; If empty, default_charset or output_encoding or mbstring.http_output is used.
+; The precedence is: default_charset < output_encoding < mbstring.http_output
+; To use an output encoding conversion, mbstring's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+; https://php.net/mbstring.http-output
+;mbstring.http_output =
+
+; enable automatic encoding translation according to
+; mbstring.internal_encoding setting. Input chars are
+; converted to internal encoding by setting this to On.
+; Note: Do _not_ use automatic encoding translation for
+; portable libs/applications.
+; https://php.net/mbstring.encoding-translation
+;mbstring.encoding_translation = Off
+
+; automatic encoding detection order.
+; "auto" detect order is changed according to mbstring.language
+; https://php.net/mbstring.detect-order
+;mbstring.detect_order = auto
+
+; substitute_character used when character cannot be converted
+; one from another
+; https://php.net/mbstring.substitute-character
+;mbstring.substitute_character = none
+
+; Enable strict encoding detection.
+;mbstring.strict_detection = Off
+
+; This directive specifies the regex pattern of content types for which mb_output_handler()
+; is activated.
+; Default: mbstring.http_output_conv_mimetypes=^(text/|application/xhtml\+xml)
+;mbstring.http_output_conv_mimetypes=
+
+; This directive specifies maximum stack depth for mbstring regular expressions. It is similar
+; to the pcre.recursion_limit for PCRE.
+;mbstring.regex_stack_limit=100000
+
+; This directive specifies maximum retry count for mbstring regular expressions. It is similar
+; to the pcre.backtrack_limit for PCRE.
+;mbstring.regex_retry_limit=1000000
+
+[gd]
+; Tell the jpeg decode to ignore warnings and try to create
+; a gd image. The warning will then be displayed as notices
+; disabled by default
+; https://php.net/gd.jpeg-ignore-warning
+;gd.jpeg_ignore_warning = 1
+
+[exif]
+; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
+; With mbstring support this will automatically be converted into the encoding
+; given by corresponding encode setting. When empty mbstring.internal_encoding
+; is used. For the decode settings you can distinguish between motorola and
+; intel byte order. A decode setting cannot be empty.
+; https://php.net/exif.encode-unicode
+;exif.encode_unicode = ISO-8859-15
+
+; https://php.net/exif.decode-unicode-motorola
+;exif.decode_unicode_motorola = UCS-2BE
+
+; https://php.net/exif.decode-unicode-intel
+;exif.decode_unicode_intel = UCS-2LE
+
+; https://php.net/exif.encode-jis
+;exif.encode_jis =
+
+; https://php.net/exif.decode-jis-motorola
+;exif.decode_jis_motorola = JIS
+
+; https://php.net/exif.decode-jis-intel
+;exif.decode_jis_intel = JIS
+
+[Tidy]
+; The path to a default tidy configuration file to use when using tidy
+; https://php.net/tidy.default-config
+;tidy.default_config = /usr/local/lib/php/default.tcfg
+
+; Should tidy clean and repair output automatically?
+; WARNING: Do not use this option if you are generating non-html content
+; such as dynamic images
+; https://php.net/tidy.clean-output
+tidy.clean_output = Off
+
+[soap]
+; Enables or disables WSDL caching feature.
+; https://php.net/soap.wsdl-cache-enabled
+soap.wsdl_cache_enabled=1
+
+; Sets the directory name where SOAP extension will put cache files.
+; https://php.net/soap.wsdl-cache-dir
+soap.wsdl_cache_dir="/tmp"
+
+; (time to live) Sets the number of second while cached file will be used
+; instead of original one.
+; https://php.net/soap.wsdl-cache-ttl
+soap.wsdl_cache_ttl=86400
+
+; Sets the size of the cache limit. (Max. number of WSDL files to cache)
+soap.wsdl_cache_limit = 5
+
+[sysvshm]
+; A default size of the shared memory segment
+;sysvshm.init_mem = 10000
+
+[ldap]
+; Sets the maximum number of open links or -1 for unlimited.
+ldap.max_links = -1
+
+[dba]
+;dba.default_handler=
+
+[opcache]
+; Determines if Zend OPCache is enabled
+;opcache.enable=1
+
+; Determines if Zend OPCache is enabled for the CLI version of PHP
+;opcache.enable_cli=0
+
+; The OPcache shared memory storage size.
+;opcache.memory_consumption=128
+
+; The amount of memory for interned strings in Mbytes.
+;opcache.interned_strings_buffer=8
+
+; The maximum number of keys (scripts) in the OPcache hash table.
+; Only numbers between 200 and 1000000 are allowed.
+;opcache.max_accelerated_files=10000
+
+; The maximum percentage of "wasted" memory until a restart is scheduled.
+;opcache.max_wasted_percentage=5
+
+; When this directive is enabled, the OPcache appends the current working
+; directory to the script key, thus eliminating possible collisions between
+; files with the same name (basename). Disabling the directive improves
+; performance, but may break existing applications.
+;opcache.use_cwd=1
+
+; When disabled, you must reset the OPcache manually or restart the
+; webserver for changes to the filesystem to take effect.
+;opcache.validate_timestamps=1
+
+; How often (in seconds) to check file timestamps for changes to the shared
+; memory storage allocation. ("1" means validate once per second, but only
+; once per request. "0" means always validate)
+;opcache.revalidate_freq=2
+
+; Enables or disables file search in include_path optimization
+;opcache.revalidate_path=0
+
+; If disabled, all PHPDoc comments are dropped from the code to reduce the
+; size of the optimized code.
+;opcache.save_comments=1
+
+; If enabled, compilation warnings (including notices and deprecations) will
+; be recorded and replayed each time a file is included. Otherwise, compilation
+; warnings will only be emitted when the file is first cached.
+;opcache.record_warnings=0
+
+; Allow file existence override (file_exists, etc.) performance feature.
+;opcache.enable_file_override=0
+
+; A bitmask, where each bit enables or disables the appropriate OPcache
+; passes
+;opcache.optimization_level=0x7FFFBFFF
+
+;opcache.dups_fix=0
+
+; The location of the OPcache blacklist file (wildcards allowed).
+; Each OPcache blacklist file is a text file that holds the names of files
+; that should not be accelerated. The file format is to add each filename
+; to a new line. The filename may be a full path or just a file prefix
+; (i.e., /var/www/x blacklists all the files and directories in /var/www
+; that start with 'x'). Line starting with a ; are ignored (comments).
+;opcache.blacklist_filename=
+
+; Allows exclusion of large files from being cached. By default all files
+; are cached.
+;opcache.max_file_size=0
+
+; Check the cache checksum each N requests.
+; The default value of "0" means that the checks are disabled.
+;opcache.consistency_checks=0
+
+; How long to wait (in seconds) for a scheduled restart to begin if the cache
+; is not being accessed.
+;opcache.force_restart_timeout=180
+
+; OPcache error_log file name. Empty string assumes "stderr".
+;opcache.error_log=
+
+; All OPcache errors go to the Web server log.
+; By default, only fatal errors (level 0) or errors (level 1) are logged.
+; You can also enable warnings (level 2), info messages (level 3) or
+; debug messages (level 4).
+;opcache.log_verbosity_level=1
+
+; Preferred Shared Memory back-end. Leave empty and let the system decide.
+;opcache.preferred_memory_model=
+
+; Protect the shared memory from unexpected writing during script execution.
+; Useful for internal debugging only.
+;opcache.protect_memory=0
+
+; Allows calling OPcache API functions only from PHP scripts which path is
+; started from specified string. The default "" means no restriction
+;opcache.restrict_api=
+
+; Mapping base of shared memory segments (for Windows only). All the PHP
+; processes have to map shared memory into the same address space. This
+; directive allows to manually fix the "Unable to reattach to base address"
+; errors.
+;opcache.mmap_base=
+
+; Facilitates multiple OPcache instances per user (for Windows only). All PHP
+; processes with the same cache ID and user share an OPcache instance.
+;opcache.cache_id=
+
+; Enables and sets the second level cache directory.
+; It should improve performance when SHM memory is full, at server restart or
+; SHM reset. The default "" disables file based caching.
+;opcache.file_cache=
+
+; Enables or disables opcode caching in shared memory.
+;opcache.file_cache_only=0
+
+; Enables or disables checksum validation when script loaded from file cache.
+;opcache.file_cache_consistency_checks=1
+
+; Implies opcache.file_cache_only=1 for a certain process that failed to
+; reattach to the shared memory (for Windows only). Explicitly enabled file
+; cache is required.
+;opcache.file_cache_fallback=1
+
+; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
+; Under certain circumstances (if only a single global PHP process is
+; started from which all others fork), this can increase performance
+; by a tiny amount because TLB misses are reduced. On the other hand, this
+; delays PHP startup, increases memory usage and degrades performance
+; under memory pressure - use with care.
+; Requires appropriate OS configuration.
+;opcache.huge_code_pages=0
+
+; Validate cached file permissions.
+;opcache.validate_permission=0
+
+; Prevent name collisions in chroot'ed environment.
+;opcache.validate_root=0
+
+; If specified, it produces opcode dumps for debugging different stages of
+; optimizations.
+;opcache.opt_debug_level=0
+
+; Specifies a PHP script that is going to be compiled and executed at server
+; start-up.
+; https://php.net/opcache.preload
+;opcache.preload=
+
+; Preloading code as root is not allowed for security reasons. This directive
+; facilitates to let the preloading to be run as another user.
+; https://php.net/opcache.preload_user
+;opcache.preload_user=
+
+; Prevents caching files that are less than this number of seconds old. It
+; protects from caching of incompletely updated files. In case all file updates
+; on your site are atomic, you may increase performance by setting it to "0".
+;opcache.file_update_protection=2
+
+; Absolute path used to store shared lockfiles (for *nix only).
+;opcache.lockfile_path=/tmp
+
+[curl]
+; A default value for the CURLOPT_CAINFO option. This is required to be an
+; absolute path.
+;curl.cainfo =
+
+[openssl]
+; The location of a Certificate Authority (CA) file on the local filesystem
+; to use when verifying the identity of SSL/TLS peers. Most users should
+; not specify a value for this directive as PHP will attempt to use the
+; OS-managed cert stores in its absence. If specified, this value may still
+; be overridden on a per-stream basis via the "cafile" SSL stream context
+; option.
+;openssl.cafile=
+
+; If openssl.cafile is not specified or if the CA file is not found, the
+; directory pointed to by openssl.capath is searched for a suitable
+; certificate. This value must be a correctly hashed certificate directory.
+; Most users should not specify a value for this directive as PHP will
+; attempt to use the OS-managed cert stores in its absence. If specified,
+; this value may still be overridden on a per-stream basis via the "capath"
+; SSL stream context option.
+;openssl.capath=
+
+[ffi]
+; FFI API restriction. Possible values:
+; "preload" - enabled in CLI scripts and preloaded files (default)
+; "false" - always disabled
+; "true" - always enabled
+;ffi.enable=preload
+
+; List of headers files to preload, wildcard patterns allowed.
+;ffi.preload=