From owner-freebsd-doc@freebsd.org Sun Apr 21 04:16:38 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B671C1580E32 for ; Sun, 21 Apr 2019 04:16:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 383338A04D for ; Sun, 21 Apr 2019 04:16:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id ED4621580E31; Sun, 21 Apr 2019 04:16:37 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C92311580E30 for ; Sun, 21 Apr 2019 04:16:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 646B98A04C for ; Sun, 21 Apr 2019 04:16:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 9D9B5DC8A for ; Sun, 21 Apr 2019 04:16:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x3L4Ga9q002786 for ; Sun, 21 Apr 2019 04:16:36 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x3L4Ga7t002785 for doc@FreeBSD.org; Sun, 21 Apr 2019 04:16:36 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: doc@FreeBSD.org Subject: [Bug 123484] [patch] teach pxeboot.8 about ISC DHCP v3 Date: Sun, 21 Apr 2019 04:16:35 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Manual Pages X-Bugzilla-Version: Latest X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: ygy@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Apr 2019 04:16:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D123484 --- Comment #8 from commit-hook@freebsd.org --- A commit references this bug: Author: kevans Date: Sun Apr 21 04:15:58 UTC 2019 New revision: 346480 URL: https://svnweb.freebsd.org/changeset/base/346480 Log: MFC r338262, r339334, r339796, r340240, r340857, r340917, r341007 r338262: stand: fdt: Drop some write-only assignments/variables and leaked bits Generally straightforward enough; a copy of argv[1] was being made in command_fdt_internal, solely used for a comparison within the handler-search, then promptly leaked. r339334: loader.efi: add poweroff command Add poweroff command to make life a bit easier. r339796: Simplify the EFI delay() function by calling BS->Stall() r340240: loader: ptable_open() check for ptable_cd9660read result is wrong The ptable_*read() functions return NULL on read errors (and partition ta= ble closed as an side effect). The ptable_open must check the return value and act properly. r340857: Nuke out buffer overflow safety marker code, it duplicates similar code in the malloc()/free() as well as having potential of softening the handling in case error is detected down to a mere warning as compared to hard panic in free(). r340917: Update pxeboot(8) manual page to reflect the next-server change in the ISC DHCP v3 server. r341007: Bump the date of pxeboot(8) manual page for r340917. PR: 123484, 232483 Changes: _U stable/11/ stable/11/stand/common/bcache.c stable/11/stand/common/part.c stable/11/stand/efi/libefi/delay.c stable/11/stand/efi/loader/main.c stable/11/stand/fdt/fdt_loader_cmd.c stable/11/stand/i386/pxeldr/pxeboot.8 --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-doc@freebsd.org Sun Apr 21 14:10:53 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4EA1C158E0B0 for ; Sun, 21 Apr 2019 14:10:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id DE36E73022 for ; Sun, 21 Apr 2019 14:10:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 9C3AD158E0AD; Sun, 21 Apr 2019 14:10:52 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A108158E0AC for ; Sun, 21 Apr 2019 14:10:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2154D7301D for ; Sun, 21 Apr 2019 14:10:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 6183B13159 for ; Sun, 21 Apr 2019 14:10:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x3LEApp7083711 for ; Sun, 21 Apr 2019 14:10:51 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x3LEApHW083708 for doc@FreeBSD.org; Sun, 21 Apr 2019 14:10:51 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: doc@FreeBSD.org Subject: [Bug 237438] typo in man page for ipfw(8) (amd should be and) Date: Sun, 21 Apr 2019 14:10:51 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Manual Pages X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: michael@galassi.us X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Apr 2019 14:10:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D237438 Bug ID: 237438 Summary: typo in man page for ipfw(8) (amd should be and) Product: Documentation Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Manual Pages Assignee: bugs@FreeBSD.org Reporter: michael@galassi.us CC: doc@FreeBSD.org In the line: Please, note, that keep-state amd limit imply implicit check-state for The word amd should be and. --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-doc@freebsd.org Sun Apr 21 18:27:53 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9E7615809AA for ; Sun, 21 Apr 2019 18:27:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 5F4FE834C5 for ; Sun, 21 Apr 2019 18:27:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 1FC8315809A5; Sun, 21 Apr 2019 18:27:53 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D5A915809A3 for ; Sun, 21 Apr 2019 18:27:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C1533834C0 for ; Sun, 21 Apr 2019 18:27:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id D60D0156BD for ; Sun, 21 Apr 2019 18:27:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x3LIRpKp037049 for ; Sun, 21 Apr 2019 18:27:51 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x3LIRpPp037047 for doc@FreeBSD.org; Sun, 21 Apr 2019 18:27:51 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: doc@FreeBSD.org Subject: [Bug 237438] typo in man page for ipfw(8) (amd should be and) Date: Sun, 21 Apr 2019 18:27:51 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Manual Pages X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Apr 2019 18:27:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D237438 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: bcr Date: Sun Apr 21 18:27:13 UTC 2019 New revision: 346490 URL: https://svnweb.freebsd.org/changeset/base/346490 Log: Typo fix in ipfw.8: amd -> and There is an (obvious) typo in the following sentence: "Please note, that keep-state amd limit imply implicit check-state for ..= ." Replace the "amd" with "and", bump .Dd. PR: 237438 Submitted by: michael@galassi.us MFC after: 3 days Changes: head/sbin/ipfw/ipfw.8 --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-doc@freebsd.org Sun Apr 21 18:29:47 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28CA11580B48 for ; Sun, 21 Apr 2019 18:29:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id B74DD8363C for ; Sun, 21 Apr 2019 18:29:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 7B3631580B45; Sun, 21 Apr 2019 18:29:46 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 69CB41580B43 for ; Sun, 21 Apr 2019 18:29:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 05A4A83637 for ; Sun, 21 Apr 2019 18:29:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 23B58156C2 for ; Sun, 21 Apr 2019 18:29:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x3LITjF4039032 for ; Sun, 21 Apr 2019 18:29:45 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x3LITjtb039031 for doc@FreeBSD.org; Sun, 21 Apr 2019 18:29:45 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: doc@FreeBSD.org Subject: [Bug 237438] typo in man page for ipfw(8) (amd should be and) Date: Sun, 21 Apr 2019 18:29:45 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Manual Pages X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bcr@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Apr 2019 18:29:47 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D237438 Benedict Reuschling changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bcr@FreeBSD.org Status|New |In Progress --- Comment #2 from Benedict Reuschling --- Good catch, Michael. Thanks for filing the PR. I've just committed a fix to HEAD. Set state of this PR to "in Progress" until the MFC is done. --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-doc@freebsd.org Tue Apr 23 07:20:15 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A0F01590B4A for ; Tue, 23 Apr 2019 07:20:15 +0000 (UTC) (envelope-from campaign-indiatradedata-14483-291-1627237-doc=freebsd.org@email.indiatradedata.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id A8E9592B64 for ; Tue, 23 Apr 2019 07:20:14 +0000 (UTC) (envelope-from campaign-indiatradedata-14483-291-1627237-doc=freebsd.org@email.indiatradedata.com) Received: by mailman.ysv.freebsd.org (Postfix) id 69E561590B49; Tue, 23 Apr 2019 07:20:14 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 459751590B48 for ; Tue, 23 Apr 2019 07:20:14 +0000 (UTC) (envelope-from campaign-indiatradedata-14483-291-1627237-doc=freebsd.org@email.indiatradedata.com) Received: from email124.mjinn.com (email124.mjinn.com [202.162.252.124]) by mx1.freebsd.org (Postfix) with ESMTP id 7B9A092B60 for ; Tue, 23 Apr 2019 07:20:13 +0000 (UTC) (envelope-from campaign-indiatradedata-14483-291-1627237-doc=freebsd.org@email.indiatradedata.com) To: doc@freebsd.org From: Krati - trade data Reply-To: marketing@indiatradedata.com Subject: Import Export trade data Message-ID: <65189428321627237@email.indiatradedata.com> Feedback-ID: 291:14483:20190423123529:nczc MIME-Version: 1.0 Date: Tue, 23 Apr 2019 12:50:13 +0530 X-Rspamd-Queue-Id: 7B9A092B60 X-Spamd-Bar: +++++++++ Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of campaign-indiatradedata-14483-291-1627237-doc=freebsd.org@email.indiatradedata.com designates 202.162.252.124 as permitted sender) smtp.mailfrom=campaign-indiatradedata-14483-291-1627237-doc=freebsd.org@email.indiatradedata.com X-Spamd-Result: default: False [9.63 / 15.00]; HAS_REPLYTO(0.00)[marketing@indiatradedata.com]; R_SPF_ALLOW(0.00)[+ip4:202.162.224.0/19]; REPLYTO_ADDR_EQ_FROM(0.00)[]; TO_DN_NONE(0.00)[]; URI_COUNT_ODD(1.00)[1]; MX_GOOD(-0.01)[cached: mx1.ncfp.asia]; FORGED_SENDER(0.00)[marketing@indiatradedata.com,campaign-indiatradedata-14483-291-1627237-doc=freebsd.org@email.indiatradedata.com]; RCVD_COUNT_ZERO(0.00)[0]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+,1:+]; ASN(0.00)[asn:33480, ipnet:202.162.252.0/24, country:US]; FROM_NEQ_ENVFROM(0.00)[marketing@indiatradedata.com,campaign-indiatradedata-14483-291-1627237-doc=freebsd.org@email.indiatradedata.com]; ARC_NA(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_SPAM_SHORT(0.93)[0.929,0]; R_BAD_CTE_7BIT(1.05)[7bit,utf8]; HAS_PHPMAILER_SIG(0.00)[]; RBL_BLOCKLISTDE(4.00)[124.252.162.202.bl.blocklist.de]; HAS_LIST_UNSUB(-0.01)[]; RCPT_COUNT_ONE(0.00)[1]; BAD_REP_POLICIES(0.10)[]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; DMARC_NA(0.00)[indiatradedata.com]; FORGED_SENDER_VERP_SRS(0.00)[]; NEURAL_SPAM_MEDIUM(1.00)[0.996,0]; NEURAL_SPAM_LONG(1.00)[1.000,0]; ENVFROM_VERP(0.00)[]; IP_SCORE(0.68)[asn: 33480(3.46), country: US(-0.06)]; RCVD_TLS_ALL(0.00)[]; GREYLIST(0.00)[pass,body] X-Spam: Yes Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Apr 2019 07:20:15 -0000 Hello , I would like to mention that We provides 50+ Countries Reports & track each Shipment as reported by customs and tell you Who is importing, Who is exporting, at What price, How much quantity and from Where. Database is available for Import and Export based on Custom’s actual shipping bills and details for countries like: Asia -- India, Pakistan, Sri Lanka, China, Vietnam, Indonesia, Philippines South America -- Argentina, Brazil, Columbia, Ecuador, Peru, Paraguay, Uruguay, Venezuela North America -- USA and Mexico Central America -- Panama, Costa Rica Europe -- Russia, Ukraine, CIS Countries -- Kazakhstan, Kyrgyzstan, Uzbekistan African Country -- Ethiopia, Uganda So basically if you are looking for Importers/Exporters List of any particular Product/Commodity then we can provide the same thru Customs Report. Charges/Format/Features of Each Country Report is different. “In case of a your requirement of any database kindly send your details :- Name, Your requirement (HS Code or product), Company name, Mail id & contact details” so that I can assist you accordingly. GOOD DAY! Thanks & Regards Krati jain Business Development Officer Dir. Mob – 8586926599,Tel. Ph. - +91-11-47048012 Ext. no. 105 Skype : krati@exportgenius.in From owner-freebsd-doc@freebsd.org Tue Apr 23 10:51:48 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5CD221596220 for ; Tue, 23 Apr 2019 10:51:48 +0000 (UTC) (envelope-from jthompson@mastersindatascience.de) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id BF9806C171 for ; Tue, 23 Apr 2019 10:51:47 +0000 (UTC) (envelope-from jthompson@mastersindatascience.de) Received: by mailman.ysv.freebsd.org (Postfix) id 8366C159621F; Tue, 23 Apr 2019 10:51:47 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 60F8D159621E for ; Tue, 23 Apr 2019 10:51:47 +0000 (UTC) (envelope-from jthompson@mastersindatascience.de) Received: from mail-qt1-x844.google.com (mail-qt1-x844.google.com [IPv6:2607:f8b0:4864:20::844]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0B4506C16C for ; Tue, 23 Apr 2019 10:51:45 +0000 (UTC) (envelope-from jthompson@mastersindatascience.de) Received: by mail-qt1-x844.google.com with SMTP id g7so8043685qtc.0 for ; Tue, 23 Apr 2019 03:51:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mastersindatascience.de; s=google; h=date:to:from:reply-to:subject:message-id:mime-version :content-transfer-encoding; bh=20dgGXgwx3ANKi2BZu16Hb3JCKdSmA4rzfPIVPgoe94=; b=TH0EWXGI/W9phNZgRj3L2SCKo9hRhrIkGd5NfW9bBHE2j4KY1oRZuiE8peUBmUmYMX sWEodKuiTE1d7OS21e0lq37NzZ07psRyVNtQ4Z9jniIEw1woa37uISVijnLynYtuyYCJ +iLF8Al6kKCtjAbB2EKPmt+JFPsB+/Wqau2ug= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:to:from:reply-to:subject:message-id :mime-version:content-transfer-encoding; bh=20dgGXgwx3ANKi2BZu16Hb3JCKdSmA4rzfPIVPgoe94=; b=H/vZkSipBn2DOwazV1CxCmGS/KVqDZ7EDvEKJL+y0VvsiF1ZXUCe4HawuJA+DQND8T sTgx2A9ch0zqy4kyQ4jLpL8sf0KOsFWN91cgwT8tYVKFoOoe9nVJQN992Gi5URzR/SpW pjjvRkrf0SpNghN4hGQurTxXApyBMmSDNcBMKBIOsjtsw/rCHeEwULYgGiasbzilK2FI 4tw59r9ysLGCvgVGOCmVMSjSJDoDU8NC3uuTWcOPIqv4Xj3mVPPW8S0fFhOPApbsEuwt /t9kCngvvCJdOM1baFvyPLjh81lB3Re+aHg+DLTkgjmWqMPT8paChEMGuQ6U+atfPtyh tCmQ== X-Gm-Message-State: APjAAAVtCT1fiaNO0uys6gnWAJne8LzEeSwtSoYuPZhf70Pcdssb5ore YCO3KdbLvyLRY544iUIqsMMvm8BOgB4= X-Google-Smtp-Source: APXvYqyo7qcmiJnnDGf+0l2H0TYmGnjeEHnmT4qr9S39G6LY3hPWznNCyquknkrZa8A8VmnY6IARGA== X-Received: by 2002:aed:2307:: with SMTP id h7mr19772143qtc.87.1556016704987; Tue, 23 Apr 2019 03:51:44 -0700 (PDT) Received: from mastersindatascience.de (ec2-34-197-137-135.compute-1.amazonaws.com. [34.197.137.135]) by smtp.gmail.com with ESMTPSA id w20sm7350739qkj.31.2019.04.23.03.51.44 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 23 Apr 2019 03:51:44 -0700 (PDT) Date: Tue, 23 Apr 2019 10:51:44 +0000 To: doc@freebsd.org From: Josh Thompson Reply-To: Josh Thompson Subject: are you the right person for this? Message-ID: <31798493.or_mail@mastersindatascience.de> X-Priority: 3 MIME-Version: 1.0 X-Rspamd-Queue-Id: 0B4506C16C X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org; dkim=pass header.d=mastersindatascience.de header.s=google header.b=TH0EWXGI; spf=pass (mx1.freebsd.org: domain of jthompson@mastersindatascience.de designates 2607:f8b0:4864:20::844 as permitted sender) smtp.mailfrom=jthompson@mastersindatascience.de X-Spamd-Result: default: False [-1.09 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; HAS_REPLYTO(0.00)[jthompson@mastersindatascience.de]; R_SPF_ALLOW(-0.20)[+ip6:2607:f8b0:4000::/36]; TO_DN_NONE(0.00)[]; URI_COUNT_ODD(1.00)[1]; RCVD_COUNT_THREE(0.00)[3]; DKIM_TRACE(0.00)[mastersindatascience.de:+]; MX_GOOD(-0.01)[alt1.aspmx.l.google.com,aspmx.l.google.com,aspmx2.googlemail.com,alt2.aspmx.l.google.com,aspmx3.googlemail.com]; HAS_X_PRIO_THREE(0.00)[3]; NEURAL_HAM_SHORT(-0.93)[-0.926,0]; FROM_EQ_ENVFROM(0.00)[]; RCVD_TLS_LAST(0.00)[]; SUBJECT_ENDS_QUESTION(1.00)[]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US]; MIME_TRACE(0.00)[0:+,1:+]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.99)[-0.992,0]; R_DKIM_ALLOW(-0.20)[mastersindatascience.de:s=google]; REPLYTO_EQ_FROM(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; PREVIOUSLY_DELIVERED(0.00)[doc@freebsd.org]; HAS_PHPMAILER_SIG(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; DMARC_NA(0.00)[mastersindatascience.de]; RCVD_IN_DNSWL_NONE(0.00)[4.4.8.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.b.8.f.7.0.6.2.list.dnswl.org : 127.0.5.0]; AUTOGEN_PHP_SPAMMY(1.00)[]; IP_SCORE(-0.66)[ip: (2.12), ipnet: 2607:f8b0::/32(-3.11), asn: 15169(-2.25), country: US(-0.06)] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Apr 2019 10:51:48 -0000 Hello, Would you be the right person to talk to regarding this resource page - http://www.math.nsc.ru/AP/ScientificDiscovery/pages/Links.html? Kind Regards, Josh Thompson Content Manager (MIDS) Masters In Data ScienceWrong email? Reply with "not interested" to unsubscribe. From owner-freebsd-doc@freebsd.org Wed Apr 24 06:02:09 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D06A158D98B for ; Wed, 24 Apr 2019 06:02:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 24958750AF for ; Wed, 24 Apr 2019 06:02:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id DCC60158D98A; Wed, 24 Apr 2019 06:02:08 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB35C158D989 for ; Wed, 24 Apr 2019 06:02:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 66332750AB for ; Wed, 24 Apr 2019 06:02:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id A5C0E15ED5 for ; Wed, 24 Apr 2019 06:02:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x3O627Av024841 for ; Wed, 24 Apr 2019 06:02:07 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x3O627MG024832 for doc@FreeBSD.org; Wed, 24 Apr 2019 06:02:07 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: doc@FreeBSD.org Subject: [Bug 237514] ZFS(8) Section "SUBCOMMANDS" does not contain names of sub-commands Date: Wed, 24 Apr 2019 06:02:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Website X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: mikhail.maximov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: doc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Apr 2019 06:02:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D237514 Bug ID: 237514 Summary: ZFS(8) Section "SUBCOMMANDS" does not contain names of sub-commands Product: Documentation Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: Website Assignee: doc@FreeBSD.org Reporter: mikhail.maximov@gmail.com Bug report for FreeBSD documentation in HTML format Page ZFS(8) Section "SUBCOMMANDS" does not contain names of sub-commands before their descriptions. Incorrect: https://www.freebsd.org/cgi/man.cgi?query=3Dzfs&manpath=3DFreeBSD+13-current https://www.freebsd.org/cgi/man.cgi?query=3Dzfs&manpath=3DFreeBSD+12.0-RELE= ASE Last correct: https://www.freebsd.org/cgi/man.cgi?query=3Dzfs&manpath=3DFreeBSD+11.2-RELE= ASE --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-doc@freebsd.org Wed Apr 24 06:42:52 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CDCE0158E839 for ; Wed, 24 Apr 2019 06:42:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 6A38676977 for ; Wed, 24 Apr 2019 06:42:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 2E0A1158E836; Wed, 24 Apr 2019 06:42:52 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1BA81158E835 for ; Wed, 24 Apr 2019 06:42:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ACD0876973 for ; Wed, 24 Apr 2019 06:42:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id D8E421649A for ; Wed, 24 Apr 2019 06:42:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x3O6gogK002178 for ; Wed, 24 Apr 2019 06:42:50 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x3O6goD2002177 for doc@FreeBSD.org; Wed, 24 Apr 2019 06:42:50 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: doc@FreeBSD.org Subject: [Bug 237438] typo in man page for ipfw(8) (amd should be and) Date: Wed, 24 Apr 2019 06:42:51 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Manual Pages X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Apr 2019 06:42:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D237438 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: bcr Date: Wed Apr 24 06:41:52 UTC 2019 New revision: 346629 URL: https://svnweb.freebsd.org/changeset/base/346629 Log: MFC r346490: Typo fix in ipfw.8: amd -> and There is an (obvious) typo in the following sentence: "Please note, that keep-state amd limit imply implicit check-state for ..= ." Replace the "amd" with "and", bump .Dd. PR: 237438 Submitted by: michael@galassi.us Changes: _U stable/12/ stable/12/sbin/ipfw/ipfw.8 --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-doc@freebsd.org Wed Apr 24 06:44:50 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8A90158E95F for ; Wed, 24 Apr 2019 06:44:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 3282576A92 for ; Wed, 24 Apr 2019 06:44:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id E6D8C158E95B; Wed, 24 Apr 2019 06:44:49 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D58D8158E95A for ; Wed, 24 Apr 2019 06:44:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7193A76A90 for ; Wed, 24 Apr 2019 06:44:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id A8E48164A8 for ; Wed, 24 Apr 2019 06:44:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x3O6im2J004298 for ; Wed, 24 Apr 2019 06:44:48 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x3O6imxQ004297 for doc@FreeBSD.org; Wed, 24 Apr 2019 06:44:48 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: doc@FreeBSD.org Subject: [Bug 237438] typo in man page for ipfw(8) (amd should be and) Date: Wed, 24 Apr 2019 06:44:48 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Manual Pages X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bcr@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Apr 2019 06:44:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D237438 Benedict Reuschling changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|In Progress |Closed --- Comment #4 from Benedict Reuschling --- MFC to stable/12 done. PR closed. --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-doc@freebsd.org Wed Apr 24 14:39:32 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D6C6E159A807 for ; Wed, 24 Apr 2019 14:39:31 +0000 (UTC) (envelope-from tom.marcoen@gmail.com) Received: from mail-lj1-x22e.google.com (mail-lj1-x22e.google.com [IPv6:2a00:1450:4864:20::22e]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D93008F722 for ; Wed, 24 Apr 2019 14:39:30 +0000 (UTC) (envelope-from tom.marcoen@gmail.com) Received: by mail-lj1-x22e.google.com with SMTP id f23so17162390ljc.0 for ; Wed, 24 Apr 2019 07:39:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=d+HqjdlU2fh86KvpEnOuIRKAE2gdQl40wd9MIToZFOI=; b=BqGXFiDoYA/r8WEQIUdGufKo147MrAF79nY/dYJrg8TW9uz4EgkiBjJ9jpZHn8tp47 6Q6RwprIKMMeCdhE1SB3NfL54eISJGIOpV8D3BJCSC2un6ju9d1JWAdlf7uny41RipPG SDJKkrzkfRUfKJVENjghVre481o9PzUVwFc5S5CLovZ6Ok2wJ/jXzpWEbwCBUB0Tq1xQ zT7+bK/sU/p6itCyMsOXFIk43s2LlEtl/pmB0AipdX36UJoJa0UrpS3cEOtCPK5R/2KH F5JxJx7ziQjBGsohBn5WQF0j9r53JMbd7sy3aoUBy8Tpc2vdb4g4ltYnULJ8hYdaQant kCZA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=d+HqjdlU2fh86KvpEnOuIRKAE2gdQl40wd9MIToZFOI=; b=YZgZUHPM4Gc8OJKPXy7qqtV1ikjt5X7giTAt3SjxckL/itWG5/b8CD1cGn47t5hi05 bOmx4QJpckN/J2vvK3g7hm5VT1lqcofmwcUJHDPOK6vn8JIfO2nuXZnTZAbUfLT35OFB yp462Rqtjs1p5rBewqIMszW6DPWkgo3uY9kLJdGegNxhsxEepOvJZ9OIuuk67vaGhWn9 q5jR343UvusL3VUwDYnpb88JZzkgI+mypbF27Bt2jUqPN30QgW84NdcQG5bAvd5wOS3o uVvC5ljVVSGb1/LYUEgihZSqgX5IQ1oxevIHatKiv12qs73hBSRxeFhGjmmAlHuWVG2R w+Pg== X-Gm-Message-State: APjAAAWWyY57MAPiTk5tkBpuMWK2Fn948sEOWyNitMiKiefmNnVHzeMT 8hdhtO7yVvtE1YjsyICB2xOLRQXjUkGPnu+Rj0E2ZGkN09s= X-Google-Smtp-Source: APXvYqyuwayi37L7sHreS01Wyqo9iUMqV62spx195tUuNSxhHGWlZY6zGeJ4GXqfJrX9eQDprTSpwnvlkLQMeIVUq+4= X-Received: by 2002:a2e:9a46:: with SMTP id k6mr17412852ljj.119.1556116769212; Wed, 24 Apr 2019 07:39:29 -0700 (PDT) MIME-Version: 1.0 From: Tom Marcoen Date: Wed, 24 Apr 2019 16:39:19 +0200 Message-ID: Subject: FreeBSD man page for traceroute(8) To: freebsd-doc@freebsd.org X-Rspamd-Queue-Id: D93008F722 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20161025 header.b=BqGXFiDo; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of tommarcoen@gmail.com designates 2a00:1450:4864:20::22e as permitted sender) smtp.mailfrom=tommarcoen@gmail.com X-Spamd-Result: default: False [-6.72 / 15.00]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; FREEMAIL_FROM(0.00)[gmail.com]; TO_DN_NONE(0.00)[]; DKIM_TRACE(0.00)[gmail.com:+]; MX_GOOD(-0.01)[cached: alt3.gmail-smtp-in.l.google.com]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; NEURAL_HAM_SHORT(-0.86)[-0.859,0]; FROM_EQ_ENVFROM(0.00)[]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+,1:+]; FREEMAIL_ENVFROM(0.00)[gmail.com]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; TAGGED_FROM(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com.dwl.dnswl.org : 127.0.5.0]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20161025]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-doc@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; IP_SCORE(-2.85)[ip: (-9.53), ipnet: 2a00:1450::/32(-2.37), asn: 15169(-2.26), country: US(-0.06)]; RCVD_IN_DNSWL_NONE(0.00)[e.2.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.5.4.1.0.0.a.2.list.dnswl.org : 127.0.5.0]; RCVD_COUNT_TWO(0.00)[2] Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Apr 2019 14:39:32 -0000 The "-p" option states that the formula for calculating the port range equals base + 1 to base + nhops * nprobes. However, the parameters "nhops" and "nprobes" are called differently in their respective options to change them. "nprobes" is changed using the option "-q" which names the parameter "nqueries" instead of "nprobes" and "-m" specifies the parameter as "max_ttl" instead of "nhops". I suggest modifying the formula to use the correct parameter names: 123 - number used in probes (default is 33434). 130 - .Em base + nhops + nprobes 123 + number used in queries (default is 33434). 130 + .Em base + max_ttl + nqueries Best regards, Tom Marcoen From owner-freebsd-doc@freebsd.org Wed Apr 24 17:23:55 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F37D3159E807 for ; Wed, 24 Apr 2019 17:23:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 7BEFE6FB5E for ; Wed, 24 Apr 2019 17:23:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 38AAE159E806; Wed, 24 Apr 2019 17:23:54 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2663C159E805 for ; Wed, 24 Apr 2019 17:23:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B760F6FB5B for ; Wed, 24 Apr 2019 17:23:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id F3ED11C0AA for ; Wed, 24 Apr 2019 17:23:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x3OHNq3K070956 for ; Wed, 24 Apr 2019 17:23:52 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x3OHNquL070955 for doc@FreeBSD.org; Wed, 24 Apr 2019 17:23:52 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: doc@FreeBSD.org Subject: [Bug 237514] ZFS(8) Section "SUBCOMMANDS" does not contain names of sub-commands Date: Wed, 24 Apr 2019 17:23:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Website X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: allanjude@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: doc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Apr 2019 17:23:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D237514 Allan Jude changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |allanjude@FreeBSD.org --- Comment #1 from Allan Jude --- The subcommands are there in the man page code, it is a problem with the website rendering. If you view the man page on FreeBSD with the man command, you will see them correctly. We should fix this, I just want to note that the issue is man.cgi and not t= he man page itself. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-doc@freebsd.org Wed Apr 24 17:36:07 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 132F5159EAFD for ; Wed, 24 Apr 2019 17:36:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 9C4C770321 for ; Wed, 24 Apr 2019 17:36:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 59624159EAFC; Wed, 24 Apr 2019 17:36:06 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4535E159EAFB for ; Wed, 24 Apr 2019 17:36:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CDB987031F for ; Wed, 24 Apr 2019 17:36:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 183DA1C231 for ; Wed, 24 Apr 2019 17:36:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x3OHa4R0093757 for ; Wed, 24 Apr 2019 17:36:04 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x3OHa4PZ093755 for doc@FreeBSD.org; Wed, 24 Apr 2019 17:36:04 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: doc@FreeBSD.org Subject: [Bug 237514] ZFS(8) Section "SUBCOMMANDS" does not contain names of sub-commands Date: Wed, 24 Apr 2019 17:36:04 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Website X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bcr@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: doc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Apr 2019 17:36:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D237514 Benedict Reuschling changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Open --- Comment #2 from Benedict Reuschling --- Hey wosch@, can you take a look at man.cgi and fix it? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-doc@freebsd.org Wed Apr 24 23:51:02 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57B4E1584A8F for ; Wed, 24 Apr 2019 23:51:02 +0000 (UTC) (envelope-from larrowe.semaj11@gmail.com) Received: from mail-ed1-x52b.google.com (mail-ed1-x52b.google.com [IPv6:2a00:1450:4864:20::52b]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1C32886465 for ; Wed, 24 Apr 2019 23:51:01 +0000 (UTC) (envelope-from larrowe.semaj11@gmail.com) Received: by mail-ed1-x52b.google.com with SMTP id f53so17575467ede.4 for ; Wed, 24 Apr 2019 16:51:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=xaPgz5lPFLn2Me8Wo/PdPubrMJUbZzI6eXfwb6qbbGw=; b=h62eI+3x92nfQi0WQWjkrb76n+cBRMHjhtvg2NqrKXeXcAD2z1rbI1Z3ACYP7lkf5B wGEXpuBRclAUVxuui9M6UodFXGYoxxFNHv2dgwfYc5bjEm2EWLa7wSIaRsjM92U6Llww Ohzor3MRDSUlRvJCA7yL/Zs6VnxAPY9jqG2XuU512x9uToimtaf+Xv++5OosNrJpsofM GwJgCPfYO24HFvJaLCELC8YuNYBWLrTHZaeppGEg9DnsP4A3qTR58i+UGzQCUjTl+nLc XvSBqrhEMOu9ombPA9xOqq6xwiUU7u/716oN87v9weiW9+B9dS7BC0h67OYC9xzYDJzX dIMw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=xaPgz5lPFLn2Me8Wo/PdPubrMJUbZzI6eXfwb6qbbGw=; b=tofUBho6DYJbcH782BheBO3GwhlL3b0LR9WtOhsKbJHgHhCRAz2N2AjgVggzoZOo93 u5bWkNQk0AgPNSciM0iUiK4AuvPTPKW9+hVcsfO215dir1Hvu6zUkCqigRgIX7vYwoZ5 injXYqcoMOnMaDGISfgI1SZDdJbmr7I/ee266UbdGrQeOXtaFxOPQ9jtNhhdt1OPXwUS 9769nWKtJ8U80jhDy1Rit54BppTQfGZwuDWYXaHuOr11B+AqD4jpjzvQBBV5t//H77Cl wcbLOTkDyvYiV6hIJ6OWUqr2bNI0RXfxS2WWNEJ4C68g8QYAAkNnVNE/hu8cIcEawO8Q 8ZEg== X-Gm-Message-State: APjAAAUgAXQIFlmCZzyzkYUz2WyjvJk4xbVREfYdvshQ+jH1n6mZNMIc iyf9aUi8dybZzl/DXzzmSzmg+di3bOo9F7G7AyKrzOc6m14= X-Google-Smtp-Source: APXvYqwdvDfhKpspSg0oR5F8J7l/d1X17eu+YqLjb0kkjdFFhdRSdF6UNIvn8OlLlnXw2NACpqx8aps2tZbJ1zq006c= X-Received: by 2002:aa7:c90f:: with SMTP id b15mr14072289edt.122.1556149859990; Wed, 24 Apr 2019 16:50:59 -0700 (PDT) MIME-Version: 1.0 From: James Larrowe Date: Wed, 24 Apr 2019 19:50:47 -0400 Message-ID: Subject: Incorrect information To: freebsd-doc@freebsd.org X-Rspamd-Queue-Id: 1C32886465 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20161025 header.b=h62eI+3x; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of larrowesemaj11@gmail.com designates 2a00:1450:4864:20::52b as permitted sender) smtp.mailfrom=larrowesemaj11@gmail.com X-Spamd-Result: default: False [-6.69 / 15.00]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; FREEMAIL_FROM(0.00)[gmail.com]; TO_DN_NONE(0.00)[]; DKIM_TRACE(0.00)[gmail.com:+]; MX_GOOD(-0.01)[cached: alt3.gmail-smtp-in.l.google.com]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; FROM_EQ_ENVFROM(0.00)[]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+,1:+]; FREEMAIL_ENVFROM(0.00)[gmail.com]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; TAGGED_FROM(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com.dwl.dnswl.org : 127.0.5.0]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20161025]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-doc@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; IP_SCORE(-2.73)[ip: (-8.95), ipnet: 2a00:1450::/32(-2.37), asn: 15169(-2.26), country: US(-0.06)]; RCVD_IN_DNSWL_NONE(0.00)[b.2.5.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.5.4.1.0.0.a.2.list.dnswl.org : 127.0.5.0]; RCVD_COUNT_TWO(0.00)[2] Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Apr 2019 23:51:02 -0000 This page contains invalid information. The correct version is included below. While the commercial Unix wars raged, the Linux kernel was developed as a PC Unix clone. Linus Torvalds credits the existence of the GNU C compiler and the associated GNU tools for the existence of Linux. He put the Linux kernel under the GPLv2. Remember that the GPL requires anything that statically links to any code under the GPL also be placed under the GPL. The source for this code must thus be made available to the user of the program. Pressure to put proprietary applications on Linux became overwhelming. Such applications often must link with system libraries. This resulted in a modified version of the GPL called the LGPL ("Library", since renamed to "Lesser", GPL). The LGPL allows proprietary code to be linked to the GNU C library, glibc. Dynamic linking is not considered a violation of the LGPL. You do not have to release the source to code which has been dynamically linked to an LGPLed library. If you statically link an application with glibc, such as is often required in embedded systems, either the source or linkable object files must be released. Both the GPL and LGPL require any modifications to the code directly under the license to be released. From owner-freebsd-doc@freebsd.org Thu Apr 25 00:41:02 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2AB861586225 for ; Thu, 25 Apr 2019 00:41:02 +0000 (UTC) (envelope-from bounce_mcocfmj_o-freebsd+2Ddoc=freebsd.org@me-ss2-ieksw9.mailengine1.com) Received: from me-ss2-ieksw9.mailengine1.com (me-ss2-ieksw9.mailengine1.com [72.19.210.94]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 943B487FED for ; Thu, 25 Apr 2019 00:41:00 +0000 (UTC) (envelope-from bounce_mcocfmj_o-freebsd+2Ddoc=freebsd.org@me-ss2-ieksw9.mailengine1.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=k1; d=wdsearch.com; h=List-Unsubscribe:Message-ID:Date:Subject:To:From:Reply-To:MIME-Version: Content-Type; i=nickm@wdsearch.com; bh=lWk8ah0qyvbUi8adhThDcccM5eaUQfE8rd/+Zqc3C3g=; b=wf0gk/wvZUtnXetESYmdMada8p1q99edjnPqJHZnQzpj6UHjfJLFlgQ8QmBslPdPbMxmR5WgynWP AsPn34HkaaOdV/pxM6ubO19qXGuGw2X4WsCluY9/uyBl1zRxFZrjXAGC0sEubTWZcB1pIPUkQcDs 15CpBZ0vHub8BGEGoOw= Received: by me-ss2-ieksw9.mailengine1.com id ho411q2g118d for ; Wed, 24 Apr 2019 20:30:26 -0400 (envelope-from ) X-Campaign-Shard: 1 Bounces-To: bounce_hwzrny_epmrluql_o@me-ss2-ieksw9.mailengine1.com Message-ID: <1556152184582.34483346.63033142.21114374194@me-ss2-ieksw9.mailengine1.com> X-Campaign: 34483346/63033142/21114374194 Errors-To: bounce_hwzrny_epmrluql_o@me-ss2-ieksw9.mailengine1.com Date: Wed, 24 Apr 2019 20:30:26 -0400 Subject: Great Synthetic Diamond Opportunities in SF Bay and Wenatchee, WA To: From: "Wingate Dunross, Inc." Reply-To: "Wingate Dunross, Inc." X-Rspamd-Queue-Id: 943B487FED X-Spamd-Bar: +++++ Authentication-Results: mx1.freebsd.org; dkim=pass header.d=wdsearch.com header.s=k1 header.b=wf0gk/wv; spf=pass (mx1.freebsd.org: domain of bounce_mcocfmj_o-freebsd@me-ss2-ieksw9.mailengine1.com designates 72.19.210.94 as permitted sender) smtp.mailfrom=bounce_mcocfmj_o-freebsd@me-ss2-ieksw9.mailengine1.com X-Spamd-Result: default: False [5.22 / 15.00]; HAS_REPLYTO(0.00)[nickm@wdsearch.com]; R_SPF_ALLOW(-0.20)[+ip4:72.19.192.0/18]; TO_DN_NONE(0.00)[]; MX_GOOD(-0.01)[bouncer.streamsend.com]; DKIM_TRACE(0.00)[wdsearch.com:+]; FORGED_SENDER(0.30)[nickm@wdsearch.com,bounce_mcocfmj_o-freebsd@me-ss2-ieksw9.mailengine1.com]; RCVD_TLS_LAST(0.00)[]; IP_SCORE(1.05)[ip: (2.23), ipnet: 72.19.192.0/18(1.03), asn: 17358(2.08), country: CA(-0.09)]; ASN(0.00)[asn:17358, ipnet:72.19.192.0/18, country:CA]; TAGGED_FROM(0.00)[2Ddoc=freebsd.org]; FROM_NEQ_ENVFROM(0.00)[nickm@wdsearch.com,bounce_mcocfmj_o-freebsd@me-ss2-ieksw9.mailengine1.com]; ARC_NA(0.00)[]; R_DKIM_ALLOW(-0.20)[wdsearch.com:s=k1]; REPLYTO_EQ_FROM(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_SPAM_SHORT(0.99)[0.993,0]; R_BAD_CTE_7BIT(1.05)[7bit,utf8]; PREVIOUSLY_DELIVERED(0.00)[freebsd-doc@freebsd.org]; DMARC_NA(0.00)[wdsearch.com]; HAS_LIST_UNSUB(-0.01)[]; RCPT_COUNT_ONE(0.00)[1]; MANY_INVISIBLE_PARTS(0.05)[1]; NEURAL_SPAM_MEDIUM(1.00)[0.998,0]; NEURAL_SPAM_LONG(1.00)[1.000,0]; RCVD_IN_DNSWL_NONE(0.00)[94.210.19.72.list.dnswl.org : 127.0.15.0]; MIME_HTML_ONLY(0.20)[]; RCVD_COUNT_TWO(0.00)[2] MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Apr 2019 00:41:02 -0000 From owner-freebsd-doc@freebsd.org Thu Apr 25 05:33:48 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8BC3158CF67 for ; Thu, 25 Apr 2019 05:33:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 6A6056AF61 for ; Thu, 25 Apr 2019 05:33:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 27097158CF66; Thu, 25 Apr 2019 05:33:48 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1516C158CF65 for ; Thu, 25 Apr 2019 05:33:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 943206AF60 for ; Thu, 25 Apr 2019 05:33:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id D911529FA for ; Thu, 25 Apr 2019 05:33:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x3P5XkhD045006 for ; Thu, 25 Apr 2019 05:33:46 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x3P5XkOW045003 for doc@FreeBSD.org; Thu, 25 Apr 2019 05:33:46 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: doc@FreeBSD.org Subject: [Bug 237546] Handbook ch. 5.5.2, references outdated package Date: Thu, 25 Apr 2019 05:33:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: nmingotti@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: doc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Apr 2019 05:33:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D237546 Bug ID: 237546 Summary: Handbook ch. 5.5.2, references outdated package Product: Documentation Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: Documentation Assignee: doc@FreeBSD.org Reporter: nmingotti@gmail.com At this page:=20 https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-fonts.html It is suggested to install package "pkg install mkfontdir". Such package does not exist anymore, it has been merged into=20 "mkfontscale", according to:=20 http://freebsd.1045724.x6.nabble.com/HEADS-UP-mkfontscale-updated-and-mkfon= tdir-removed-td6319578.html bye n. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-doc@freebsd.org Fri Apr 26 08:38:11 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C45F158D4A4 for ; Fri, 26 Apr 2019 08:38:11 +0000 (UTC) (envelope-from jthompson@mastersindatascience.de) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 86912896A4 for ; Fri, 26 Apr 2019 08:38:10 +0000 (UTC) (envelope-from jthompson@mastersindatascience.de) Received: by mailman.ysv.freebsd.org (Postfix) id 48116158D4A0; Fri, 26 Apr 2019 08:38:10 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 258C2158D49E for ; Fri, 26 Apr 2019 08:38:10 +0000 (UTC) (envelope-from jthompson@mastersindatascience.de) Received: from mail-qt1-x844.google.com (mail-qt1-x844.google.com [IPv6:2607:f8b0:4864:20::844]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 593D48969D for ; Fri, 26 Apr 2019 08:38:08 +0000 (UTC) (envelope-from jthompson@mastersindatascience.de) Received: by mail-qt1-x844.google.com with SMTP id s10so3167470qtc.11 for ; Fri, 26 Apr 2019 01:38:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mastersindatascience.de; s=google; h=date:to:from:reply-to:subject:message-id:mime-version :content-transfer-encoding; bh=ZBZVYtW0yjOQKxFYleykIy3pYEis0XrDzT4dUogULbA=; b=oq+UyM8DDzOGJgu9lf0d04LB0sqkPx8PrZOCmLKsCTenNakJK2o5PZ2VhStxV9HIn1 /XvUSnIjFoO3R4G8QRoPiZko+NeLVot27kDFGACgDIo7uj9Q9Bc3darxlwyQw+vYtn3h NclNkLrPMZkU0qMBmkwzPEi/ag5pJQ2GccON4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:to:from:reply-to:subject:message-id :mime-version:content-transfer-encoding; bh=ZBZVYtW0yjOQKxFYleykIy3pYEis0XrDzT4dUogULbA=; b=sqD/DNOL6NtNFuP8dul1WNVTLC9t1ENrQloHgtKTne+vYFcwfQ/c5LUzFwfrwcTsag B1p4AROJ4lvZjBXUFMwjzWEIAIv7AXKRHZVi4fJYrorbb4kGS/EvRbz92FVdpnHCry3P /MDOzD1KSgzPy+9GT5ZJT4fbrQ1rSD3eLsNIqq2vWB5QkmATH2ekkB2pBafyT1J+2wRr 3mj0okTABYcBIUfGDbUcd/MJTQ9OuenR9OpkcurL9fuDV0RGu0p/ymZ12zYaCjN1E71+ W9Of4X8ZMYHyn33JuBDQhgCWuAENvGIWlDmw0gTqDNWt9XrwWqpnUGhqJbm6zdTPOUwC JYpw== X-Gm-Message-State: APjAAAUTkIyyljnkaJ6kJEkgHdIJ22HVRJbkDYzFzAkjfbH42GjObDsU qKrjKlr5f9KfpuyvloisoucuPEcqwv0= X-Google-Smtp-Source: APXvYqwNL6HmhLCZ/kGBsbwfpW6Lp1qR9Ch5eA9iDVkWo64EdvuxgP28CpmLYb4nvLFwDPF3lAFa5Q== X-Received: by 2002:a0c:d2fa:: with SMTP id x55mr35601127qvh.161.1556267887472; Fri, 26 Apr 2019 01:38:07 -0700 (PDT) Received: from mastersindatascience.de (ec2-3-213-113-87.compute-1.amazonaws.com. [3.213.113.87]) by smtp.gmail.com with ESMTPSA id i33sm13708047qtb.64.2019.04.26.01.38.06 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 26 Apr 2019 01:38:06 -0700 (PDT) Date: Fri, 26 Apr 2019 08:38:06 +0000 To: doc@freebsd.org From: Josh Thompson Reply-To: Josh Thompson Subject: re: are you the right person for this? (follow-up) Message-ID: <31946968.or_mail@mastersindatascience.de> X-Priority: 3 MIME-Version: 1.0 X-Rspamd-Queue-Id: 593D48969D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=mastersindatascience.de header.s=google header.b=oq+UyM8D; spf=pass (mx1.freebsd.org: domain of jthompson@mastersindatascience.de designates 2607:f8b0:4864:20::844 as permitted sender) smtp.mailfrom=jthompson@mastersindatascience.de X-Spamd-Result: default: False [-2.97 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; HAS_REPLYTO(0.00)[jthompson@mastersindatascience.de]; R_SPF_ALLOW(-0.20)[+ip6:2607:f8b0:4000::/36]; TO_DN_NONE(0.00)[]; RCVD_COUNT_THREE(0.00)[3]; DKIM_TRACE(0.00)[mastersindatascience.de:+]; MX_GOOD(-0.01)[alt1.aspmx.l.google.com,aspmx.l.google.com,aspmx3.googlemail.com,alt2.aspmx.l.google.com,aspmx2.googlemail.com]; HAS_X_PRIO_THREE(0.00)[3]; NEURAL_HAM_SHORT(-0.78)[-0.783,0]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US]; MID_RHS_MATCH_FROM(0.00)[]; SUBJECT_HAS_QUESTION(0.00)[]; ARC_NA(0.00)[]; FAKE_REPLY(1.00)[]; R_DKIM_ALLOW(-0.20)[mastersindatascience.de:s=google]; REPLYTO_EQ_FROM(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; PREVIOUSLY_DELIVERED(0.00)[doc@freebsd.org]; HAS_PHPMAILER_SIG(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; DMARC_NA(0.00)[mastersindatascience.de]; RCVD_IN_DNSWL_NONE(0.00)[4.4.8.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.b.8.f.7.0.6.2.list.dnswl.org : 127.0.5.0]; NEURAL_HAM_MEDIUM(-0.99)[-0.993,0]; IP_SCORE(-0.68)[ip: (2.05), ipnet: 2607:f8b0::/32(-3.15), asn: 15169(-2.25), country: US(-0.06)] Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Apr 2019 08:38:11 -0000 Hello again, You probably get a ton of emails like that so I'll keep my follow-up short. Your resource page is super helpful. We, on our end, put together a really comprehensive resource about Data Science as a career choice. It has already been featured by South Eastern, Purdue, Amstat and a good few others - it is useful for students and others looking for a career in this field. It has some first-hand insights (like an interview from a real data scientist working in Airbnb) and useful data (e.g. average salary, qualification etc). If this sounds valuable for your community, here it is for your consideration: - mastersindatascience.org/careers/data-scientist/ We put some real effort into this and hearing back from you would make this Friday really nice. P.S. I will follow-up one last time...but if you didn't like my pitch, please free to reply with "not interested". On Tue, Apr 23, 2019 at 10:51 AM, Josh Thompson wrote: Hello, Would you be the right person to talk to regarding this resource page - http://www.math.nsc.ru/AP/ScientificDiscovery/pages/Links.html? Kind Regards, Josh Thompson Content Manager (MIDS) Masters In Data ScienceWrong email? Reply with "not interested" to unsubscribe. Kind Regards, Josh Thompson Content Manager (MIDS) Masters In Data ScienceIf you didn't like this email, you can unsubscribe be replying with "not interested". From owner-freebsd-doc@freebsd.org Fri Apr 26 16:44:39 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88D711598625 for ; Fri, 26 Apr 2019 16:44:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 1FC96742E6 for ; Fri, 26 Apr 2019 16:44:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id D15AA1598620; Fri, 26 Apr 2019 16:44:38 +0000 (UTC) Delivered-To: doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BEB52159861F for ; Fri, 26 Apr 2019 16:44:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5888A742E3 for ; Fri, 26 Apr 2019 16:44:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 7903E15D12 for ; Fri, 26 Apr 2019 16:44:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id x3QGibA6027203 for ; Fri, 26 Apr 2019 16:44:37 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id x3QGibR7027202 for doc@FreeBSD.org; Fri, 26 Apr 2019 16:44:37 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: doc@FreeBSD.org Subject: [Bug 237514] ZFS(8) Section "SUBCOMMANDS" does not contain names of sub-commands Date: Fri, 26 Apr 2019 16:44:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Website X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: wosch@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: wosch@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Apr 2019 16:44:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D237514 Wolfram Schneider changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|doc@FreeBSD.org |wosch@FreeBSD.org Status|Open |In Progress --- Comment #3 from Wolfram Schneider --- I can confirm the report. The latest manpages itself looks good, there are = no major changes. I will investigate whats wrong. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-doc@freebsd.org Sat Apr 27 22:03:23 2019 Return-Path: Delivered-To: freebsd-doc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A2C43159E667 for ; Sat, 27 Apr 2019 22:03:23 +0000 (UTC) (envelope-from dgray.cosma@gmail.com) Received: from mail-wm1-x32d.google.com (mail-wm1-x32d.google.com [IPv6:2a00:1450:4864:20::32d]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6CCE470500 for ; Sat, 27 Apr 2019 22:03:22 +0000 (UTC) (envelope-from dgray.cosma@gmail.com) Received: by mail-wm1-x32d.google.com with SMTP id h11so9537984wmb.5 for ; Sat, 27 Apr 2019 15:03:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=leguTeDWGJhK+7cZn2X3LXsmd9CQTCiydnxkqZFDg8A=; b=SQqa6hwauO9aTicHjQHxzal7lvgZ24QuF9CGcElitFnu0LvwE1ZiU9Z+KyuN1iN7CX Y46ug6ifKm96odDrjcxewZTCBw4ruV5yKmAbT8gCXVUuhm0qOFW9cPo7P8mtySDkr7MN x4s4fdAWJm0RN5WjwL77jMiysOazYixI2Wm9HTtL6hqzmPBsGCSlshSDGC9CuyiHcvYo BWl+U9Ku+ks6SUdw2JNXmA0+ySmTuz4CgxNJB6loZTH1+Zpa/FSTJL1I0DvFHFx94tJ8 Xkyf4Iz12P185EJc8KIeIPi40GxJWRAt8p2C2CKaLn37h39A8RGHpbpjMkkBD5UI368Y lRNQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=leguTeDWGJhK+7cZn2X3LXsmd9CQTCiydnxkqZFDg8A=; b=sCyJnfa9PLv036z9Pl4CNDMCXcJ0khAMTbIjDN2KsuHwU73votHWJolmAqNMYtpykr smOuXeCamJwtP32C8koWkRNeLFH+MLr5d1DYZWElrYV1YNLWWjeFXqDvi3wrMpPc9u7X P4nchn5uNW/BOjWWljMAa9YoGmhDLjHwbjz0JXxCjOJYFMhKj/Rtfrgmj+paoiO9SA/D /dcbo9DwVd2wEQPN00icczOf0fAh6mtSdgBBTNuOWWlZBNqPEkdaalligvLF2LG+K6si Lu2V1dTfnrh3a1VP3C08mYEGa0cR36OfUeVweQI4DSloYRe9Aly8VQ+PSNeWDiuUyBKK KzLw== X-Gm-Message-State: APjAAAWO6sQsxfB5U6jU0uSyyPkf9WLexLxpX+fsLQFbyEbvaMEH1DSU oq4yEvhaTf2GeF/AOe0GkDWwYww6qvBQa9Y5WerqEUPW X-Google-Smtp-Source: APXvYqzCMfPFxS/WpZShTs4FNLFAbgnyJQooOM12SLLiGYjfD6ltT9iNhT2Tr0JW4I+xmhXoRQx+xCfxryV5eMLr6Fo= X-Received: by 2002:a7b:cd07:: with SMTP id f7mr12245001wmj.43.1556402601353; Sat, 27 Apr 2019 15:03:21 -0700 (PDT) MIME-Version: 1.0 From: DL Gray Date: Sat, 27 Apr 2019 18:02:38 -0400 Message-ID: Subject: Small correction on handbook page To: freebsd-doc@freebsd.org X-Rspamd-Queue-Id: 6CCE470500 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20161025 header.b=SQqa6hwa; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of dgraycosma@gmail.com designates 2a00:1450:4864:20::32d as permitted sender) smtp.mailfrom=dgraycosma@gmail.com X-Spamd-Result: default: False [-6.81 / 15.00]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; FREEMAIL_FROM(0.00)[gmail.com]; TO_DN_NONE(0.00)[]; MX_GOOD(-0.01)[cached: alt3.gmail-smtp-in.l.google.com]; DKIM_TRACE(0.00)[gmail.com:+]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; FROM_EQ_ENVFROM(0.00)[]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+,1:+]; FREEMAIL_ENVFROM(0.00)[gmail.com]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; TAGGED_FROM(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com.dwl.dnswl.org : 127.0.5.0]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20161025]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-doc@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; IP_SCORE(-2.82)[ip: (-9.47), ipnet: 2a00:1450::/32(-2.32), asn: 15169(-2.27), country: US(-0.06)]; RCVD_IN_DNSWL_NONE(0.00)[d.2.3.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.5.4.1.0.0.a.2.list.dnswl.org : 127.0.5.0]; RCVD_COUNT_TWO(0.00)[2] Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Apr 2019 22:03:24 -0000 Hi On this webpage https://www.freebsd.org/doc/handbook/virtualization-guest-virtualbox.html at the bottom, there is a command to mount the share # mount_vboxfs -w *myshare* */mnt* This is not correct, missing a "v" in the mount_vbox... command # mount_vboxvfs -w *myshare* */mnt* I verified that the program exists in /usr/local/sbin HTH Dennis