S 01,S=2! аU pU ! U /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1718697490.M258238P2388418.cs01,S=22578,W=22918:2,S cket! U 0U ! PU /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1719404293.M5435P1915411.cs01,S=2819,W=2877:2,S 2,S mes/! PU U ! U /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1718812864.M637788P4037741.cs01,S=2871,W=2934:2,S 1,S=28! U U ! бU /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1718813009.M460146P4038591.cs01,S=5203,W=5315:2,S t/cur/! гU pU ! U /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1719404348.M869292P1915943.cs01,S=22556,W=22896:2,S /msp! U 0U ! PU /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1718812332.M528159P4034222.cs01,S=5202,W=5314:2,S S 636,! PU U ! U /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1718813419.M756970P4041685.cs01,S=5203,W=5315:2,S cur/17! U U .cs01,S=! дU mail/mai /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1718813072.M574111P4039163.cs01,S=5203,W=5315:2,S sp-con! жU pU .Ticket/! U 79029.cs /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1718813063.M646517P4039074.cs01,S=5202,W=5314:2,S 8,W=41! U 0U mes/msp-! PU ir/.Tick /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1718814333.M576715P4047675.cs01,S=5204,W=5316:2,S 732116! PU U ,S=22554! U mailname /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1719813163.M213024P1407294.cs01,S=8011,W=8236:2,S ncept.! U U ݵU ! зU U 1 @ U U p ! @4U @U 0?U U Rinaldi% /var/qmail/mailnames/msp-concept.de/product-service-pm/Maildir/.PROBANDEN + UROLOGEN.FEEDBACK PMPRO.FEEDBACK neue Latexteile% /var/qmail/mailnames/msp-concept.de/product-service-pm/Maildir/.PROBANDEN + UROLOGEN.FEEDBACK PMPRO.Robert Jarczyk% /var/qmail/mailnames/msp-concept.de/product U a U 0, U il/mailnames/suchy.com/celina/Maildir/./cur/1745781524.MP /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1742295634.M76817P838379.cs01,S=2803,W=2860:2,S ket/cur/1742295634.M76817P838379.cs01,S=2803,W=2860:2,S /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1724344641.M449990P2480687.cs01,S=8695,W=8938:2,S /var/q! ིU U ! U /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1723530008.M781483P2774005.cs01,S=9864,W=10097:2,S 49769! U @U ! `U /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1720336310.M59920P3501449.cs01,S=5163,W=5274:2,S S k/Mai! `U U ! U /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1720336332.M426256P3501629.cs01,S=5164,W=5275:2,S qmail/! U U ! ྲU /var/qmail/mailnames/msp-concept.de/technik/Maildir/.Ticket/cur/1722223110.M109314P2829634.cs01,es = is_int( $data['expires'] ) ? $data['expires'] : strtotime( $data['expires'] ); } else { $this->expires = null; } } } /** * Confirms that it's OK to send this cookie to the URL checked against. * * Decision is based on RFC 2109/2965, so look there for details on validity. * * @since 2.8.0 * * @param string $url URL you intend to send this cookie to * @return bool true if allowed, false otherwise. */ public function test( $url ) { if ( is_null( $this->name ) ) { return false; } // Expires - if expired then nothing else matters. if ( isset( $this->expires ) && time() > $this->expires ) { return false; } // Get details on the URL we're thinking about sending to. $url = parse_url( $url ); $url['port'] = isset( $url['port'] ) ? $url['port'] : ( 'https' === $url['scheme'] ? 443 : 80 ); $url['path'] = isset( $url['path'] ) ? $url['path'] : '/'; // Values to use for comparison against the URL. $path = isset( $this->path ) ? $this->path : '/'; $port = isset( $this->port ) ? $this->port : null; $domain = isset( $this->domain ) ? strtolower( $this->domain ) : strtolower( $url['host'] ); if ( false === stripos( $domain, '.' ) ) { $domain .= '.local'; } // Host - very basic check that the request URL ends with the domain restriction (minus leading dot). $domain = ( '.' === substr( $domain, 0, 1 ) ) ? substr( $domain, 1 ) : $domain; if ( substr( $url['host'], -strlen( $domain ) ) !== $domain ) { return false; } // Port - supports "port-lists" in the format: "80,8000,8080". if ( ! empty( $port ) && ! in_array( $url['port'], array_map( 'intval', explode( ',', $port ) ), true ) ) { return false; } // Path - request path must start with path restriction. if ( substr( $url['path'], 0, strlen( $path ) ) !== $path ) { return false; } return true; } /** * Convert cookie name and value back to header string. * * @since 2.8.0 * * @return string Header encoded cookie name and value. */ public function getHeaderValue() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid if ( ! isset( $this->name ) || ! isset( $this->value ) ) { return ''; } /** * Filters the header-encoded cookie value. * * @since 3.4.0 * * @param string $value The cookie value. * @param string $name The cookie name. */ return $this->name . '=' . apply_filters( 'wp_http_cookie_value', $this->value, $this->name ); } /** * Retrieve cookie header for usage in the rest of the WordPress HTTP API. * * @since 2.8.0 * * @return string */ public function getFullHeader() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid return 'Cookie: ' . $this->getHeaderValue(); } /** * Retrieves cookie attributes. * * @since 4.6.0 * * @return array { * List of attributes. * * @type string|int|null $expires When the cookie expires. Unix timestamp or formatted date. * @type string $path Cookie URL path. * @type string $domain Cookie domain. * } */ public function get_attributes() { return array( 'expires' => $this->expires, 'path' => $this->path, 'domain' => $this->domain, ); } }