linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* (unknown), 
@ 2010-06-21 20:30 Bob Eggers
  2010-06-21 21:05 ` bill o gallmeister
  0 siblings, 1 reply; 22+ messages in thread
From: Bob Eggers @ 2010-06-21 20:30 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

I noticed an error in and example on the man page for strncpy(). The page is http://www.kernel.org/doc/man-pages/online/pages/man3/strncpy.3.html

The error is in the section, "NOTES", specifically in the code example after the text:

      If there is no terminating null byte in the first n characters of src,
       strncpy() produces an unterminated string in dest.  Programmers often prevent
       this mistake by forcing termination as follows:

           strncpy(buf, str, n);
           if (n > 0)
               buf[n - 1]= '\0';

Substituting 1 for n and "123" for str, this would equate to:

           strncpy(buf, "123", 1);  // buf is now "1"
           if (1 > 0)
               buf[1 - 1]= '\0';                // buf is now ""

Bob Eggers--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown)
@ 2012-07-03 20:18 Elie De Brauwer
  0 siblings, 0 replies; 22+ messages in thread
From: Elie De Brauwer @ 2012-07-03 20:18 UTC (permalink / raw)
  To: linux-man-u79uwXL29TY76Z2rM5mHXA

subscribe linux-man
-- 
Elie De Brauwer

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread
* [PATCH] man2 : syscall.2 : add notes
@ 2013-03-27  5:11 ch0.han-Hm3cg6mZ9cc
       [not found] ` <1364361092-5948-1-git-send-email-ch0.han-Hm3cg6mZ9cc@public.gmane.org>
  0 siblings, 1 reply; 22+ messages in thread
From: ch0.han-Hm3cg6mZ9cc @ 2013-03-27  5:11 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, gunho.lee-Hm3cg6mZ9cc, Changhee Han

From: Changhee Han <gyulkkajo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

Add notes that caution users when passing arguments to syscall.2.

Signed-off-by: Changhee Han <gyulkkajo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
 man2/syscall.2 |    9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/man2/syscall.2 b/man2/syscall.2
index 0675943..2c823b6 100644
--- a/man2/syscall.2
+++ b/man2/syscall.2
@@ -79,6 +79,15 @@ and an error code is stored in
 .BR syscall ()
 first appeared in
 4BSD.
+
+On some architecture arguments should be passed with an appropriate way.
+The glibc wrapper function, described in
+.BR syscalls (2),
+copies arguments to the right registers denpend on the architecture but
+.BR syscall (2)
+needs arguments following ABI, which its architecture describes, to be passed manually by a user.
+For example, on ARM architecture, a long long type of argument is considered to be 8-byte aligned and to be split into two 4-byte arguments.
+
 .SH EXAMPLE
 .nf
 #define _GNU_SOURCE
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 22+ messages in thread
* Re: [PATCH 1/3] perf_event_open.2: tfix
@ 2013-11-17 18:26 Andre Majorel
       [not found] ` <20131117182608.GB20757-956IwFboN44acnK+F/IuxqxOck334EZe@public.gmane.org>
  0 siblings, 1 reply; 22+ messages in thread
From: Andre Majorel @ 2013-11-17 18:26 UTC (permalink / raw)
  To: David Prévot
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

On 2013-11-17 12:16 -0400, David Prévot wrote:
> ---
>  man2/perf_event_open.2 | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/man2/perf_event_open.2 b/man2/perf_event_open.2
> index 1889689..584d9d5 100644
> --- a/man2/perf_event_open.2
> +++ b/man2/perf_event_open.2
> @@ -700,6 +700,7 @@ settings.
>  Parsing the event stream properly was not possible because the
>  format of the record was needed to find SAMPLE_ID, but
>  the the format could not be found without knowing what
> +the format could not be found without knowing what
>  event the sample belonged to (causing a circular
>  dependency).
>  
> -- 
> 1.8.4.3

Shouldn't there be a "-" before "the the format" ?

-- 
André Majorel http://www.teaser.fr/~amajorel/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread
[parent not found: <1570038211.167595.1414613146892.JavaMail.yahoo@jws10056.mail.ne1.yahoo.com>]
* (unknown)
@ 2015-02-26 18:00 Stéphane Aulery
  0 siblings, 0 replies; 22+ messages in thread
From: Stéphane Aulery @ 2015-02-26 18:00 UTC (permalink / raw)
  To: Michael Kerrisk (man-pages); +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

Hi Michael,

I see lost but useful links in the comments. In getrlimit.2 (line 667) for
example, and I wonder if we could not incorporate there in BUGS section.

Cheers,

-- 
Stéphane Aulery
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown), 
@ 2015-07-01 11:53 Sasnett_Karen
  0 siblings, 0 replies; 22+ messages in thread
From: Sasnett_Karen @ 2015-07-01 11:53 UTC (permalink / raw)





Haben Sie einen Investor brauchen?

Haben Sie geschäftliche oder persönliche Darlehen benötigen?

Wir geben Darlehen an eine natürliche Person und Unternehmen bei 3% Zinsen jährlich. Weitere Informationen Kontaktieren Sie uns per E-Mail: omfcreditspa-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org<mailto:omfcreditspa-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org>



HINWEIS: Leiten Sie Ihre Antwort nur an diese E-Mail: omfcreditspa@hotmail.com<mailto:omfcreditspa-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org>
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown), 
@ 2015-08-20  7:12 Mark Singer
  0 siblings, 0 replies; 22+ messages in thread
From: Mark Singer @ 2015-08-20  7:12 UTC (permalink / raw)





Do you need an investor?
Our investors fund project and business. We also give out loan/credit to any individual and company at 3% interest rate yearly. For more information, Contact us via Email: devonfps-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 

If you need an investor or quick funding, forward your response ONLY to this E-mail: devonfps-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 
....
Haben Sie einen Investor brauchen?
Unsere Investoren Fonds Projekt- und Geschäfts. Wir geben auch Darlehen / Kredite an jeden einzelnen und Unternehmen bei 3% Zinsen jährlich. Für weitere Informationen, kontaktieren Sie uns per E-Mail: devonfps-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 

Wenn Sie ein Investor oder schnelle Finanzierung benötigen, senden Sie Ihre Antwort nur auf diese E-mail: devonfps-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org --
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown), 
@ 2015-12-05  4:05 Don Boyer
  0 siblings, 0 replies; 22+ messages in thread
From: Don Boyer @ 2015-12-05  4:05 UTC (permalink / raw)




My name is Brett McCorriston a merchant of Paris but currently base in Nevada Las Vegas Cartgate Ct United states, I have been diagnosed with esophageal cancer which has defiled all forms of medical treatment i have only few weeks to live here on earth.My condition is really deteriorating. i have decided to divide part of my fortune,by contributing to the Charities & Motherless. I am willing to donate the sum of US$ 5 Million to the poor through you.Can you help me? contact me on my private email ( brettmccorriston88-/E1597aS9LQAvxtiuMwx3w@public.gmane.org ) I really need you to help me.
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown), 
@ 2016-02-28  0:11 David and Carol Martin
  0 siblings, 0 replies; 22+ messages in thread
From: David and Carol Martin @ 2016-02-28  0:11 UTC (permalink / raw)




-- 
We are donating to you 1,500,000 GBP, from David and Carol Martin £33million lottery, contact : davidcarolm-/E1597aS9LTXPF5Rlphj1Q@public.gmane.org 
view link: http://www.ibtimes.co.uk/lotto-winners-david-carol-martin-want-blast-into-space-after-buying-new-shoes-1537851
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown)
@ 2016-07-05 10:56 Quentin Rameau
  0 siblings, 0 replies; 22+ messages in thread
From: Quentin Rameau @ 2016-07-05 10:56 UTC (permalink / raw)
  To: linux-man-u79uwXL29TY76Z2rM5mHXA

index
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown)
@ 2017-01-15 19:56 Sergey Polovko
  0 siblings, 0 replies; 22+ messages in thread
From: Sergey Polovko @ 2017-01-15 19:56 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA

Hi,

It seems that unix(7) and recv(2) man pages have different information about using MSG_TRUNC flag with UNIX domain sockets. 
Unix(7) man page says that this flag is not supported by UNIX domain sockets but actually it does. I wrote a simple program to 
check usage of this flag. Recv(2) man pages says that it supports since linux 3.4. Unfortunately I have no such old kernel near me
but on 3.11, 3.13, 3.18 and 4.4 that I have this flag works with AF_UNIX sockets.

Could you please fix that?

Thanks,
Sergey Polovko
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown), 
@ 2017-03-20  2:25 Rick Lee
  0 siblings, 0 replies; 22+ messages in thread
From: Rick Lee @ 2017-03-20  2:25 UTC (permalink / raw)
  To: Michael Kerrisk-manpages; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

Hi There.

I sent this message a few hours ago but was rejected by Carbon Copy
recipient because it was in HTML and not plain text format. So I'm
sending it again.

Ubuntu 16.04.2, Kernel 4.9.13, default installation command `yad`.

The word "Vaule" on line 578 should be replaced with "Value".

Thanks :)
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown), 
@ 2017-04-08 19:20 jbmplupus-Mmb7MZpHnFY
  0 siblings, 0 replies; 22+ messages in thread
From: jbmplupus-Mmb7MZpHnFY @ 2017-04-08 19:20 UTC (permalink / raw)
  To: linux-man

[-- Attachment #1: 06153.zip --]
[-- Type: application/zip, Size: 3741 bytes --]

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown), 
@ 2017-04-15 15:00 jbmplupus-Mmb7MZpHnFY
  0 siblings, 0 replies; 22+ messages in thread
From: jbmplupus-Mmb7MZpHnFY @ 2017-04-15 15:00 UTC (permalink / raw)
  To: linux-man

[-- Attachment #1: REPORT_28110741209342_linux-man.zip --]
[-- Type: application/zip, Size: 2109 bytes --]

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown), 
@ 2017-04-26  7:36 glolariu
  0 siblings, 0 replies; 22+ messages in thread
From: glolariu @ 2017-04-26  7:36 UTC (permalink / raw)
  To: linux man

Good afternoon Linux



http://www.noeliavega.com/fonts/pt-sans/license.php?interest=rzm260ek0w9


Glolariu
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown), 
@ 2017-09-02  2:35 jbmplupus-Mmb7MZpHnFY
  0 siblings, 0 replies; 22+ messages in thread
From: jbmplupus-Mmb7MZpHnFY @ 2017-09-02  2:35 UTC (permalink / raw)
  To: linux-man-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: 787132618586608.doc --]
[-- Type: application/msword, Size: 40147 bytes --]

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown), 
@ 2017-09-22 19:34 John Michael
  0 siblings, 0 replies; 22+ messages in thread
From: John Michael @ 2017-09-22 19:34 UTC (permalink / raw)


how are you doing,is me John Michael i have a personal reason of
writing you now.write to me ok.
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown), 
@ 2017-10-03  0:55 jbmplupus-Mmb7MZpHnFY
  0 siblings, 0 replies; 22+ messages in thread
From: jbmplupus-Mmb7MZpHnFY @ 2017-10-03  0:55 UTC (permalink / raw)
  To: linux-man-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: 04825923229.zip --]
[-- Type: application/zip, Size: 7337 bytes --]

^ permalink raw reply	[flat|nested] 22+ messages in thread
* (unknown), 
@ 2018-02-11 16:07 glolariu
  0 siblings, 0 replies; 22+ messages in thread
From: glolariu @ 2018-02-11 16:07 UTC (permalink / raw)
  To: linux man

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=utf-8, Size: 183 bytes --]

Hello Linux  https://goo.gl/54LwKT     

GlolariuN‹§²æìr¸›yúèšØb²X¬¶Ç§vØ^–)Þº{.nÇ+‰·¥Š{±™©âžØ^n‡r¡ö¦zË\x1aëh™¨è­Ú&¢îý»\x05ËÛÔØï¦v¬Îf\x1dp)¹¹br	šê+€Ê+zf£¢·hšˆ§~†­†Ûiÿûàz¹\x1e®w¥¢¸?™¨è­Ú&¢)ߢ^[f

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2018-02-11 16:07 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-06-21 20:30 (unknown), Bob Eggers
2010-06-21 21:05 ` bill o gallmeister
     [not found]   ` <4C1FD431.6030505-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2010-06-26 12:52     ` Re: Michael Kerrisk
2012-07-03 20:18 (unknown) Elie De Brauwer
2013-03-27  5:11 [PATCH] man2 : syscall.2 : add notes ch0.han-Hm3cg6mZ9cc
     [not found] ` <1364361092-5948-1-git-send-email-ch0.han-Hm3cg6mZ9cc@public.gmane.org>
2013-03-27  7:53   ` (unknown), Changhee Han
2013-11-17 18:26 [PATCH 1/3] perf_event_open.2: tfix Andre Majorel
     [not found] ` <20131117182608.GB20757-956IwFboN44acnK+F/IuxqxOck334EZe@public.gmane.org>
2013-11-17 19:38   ` (unknown), David Prévot
     [not found] <1570038211.167595.1414613146892.JavaMail.yahoo@jws10056.mail.ne1.yahoo.com>
     [not found] ` <1835234304.171617.1414613165674.JavaMail.yahoo@jws10089.mail.ne1.yahoo.com>
     [not found]   ` <1938862685.172387.1414613200459.JavaMail.yahoo@jws100180.mail.ne1.yahoo.com>
     [not found]     ` <705402329.170339.1414613213653.JavaMail.yahoo@jws10087.mail.ne1.yahoo.com>
     [not found]       ` <760168749.169371.1414613227586.JavaMail.yahoo@jws10082.mail.ne1.yahoo.com>
     [not found]         ` <1233923671.167957.1414613439879.JavaMail.yahoo@jws10091.mail.ne1.yahoo.com>
     [not found]           ` <925985882.172122.1414613520734.JavaMail.yahoo@jws100207.mail.ne1.yahoo.com>
     [not found]             ` <1216694778.172990.1414613570775.JavaMail.yahoo@jws100152.mail.ne1.yahoo.com>
     [not found]               ` <1213035306.169838.1414613612716.JavaMail.yahoo@jws10097.mail.ne1.yahoo.com>
     [not found]                 ` <2058591563.172973.1414613668636.JavaMail.yahoo@jws10089.mail.ne1.yahoo.com>
     [not found]                   ` <1202030640.175493 .1414613712352.JavaMail.yahoo@jws10036.mail.ne1.yahoo.com>
     [not found]                     ` <1111049042.175610.1414613739099.JavaMail.yahoo@jws100165.mail.ne1.yahoo.com>
     [not found]                       ` <574125160.175950.1414613784216.JavaMail.yahoo@jws100158.mail.ne1.yahoo.com>
     [not found]                         ` <1726966600.175552.1414613846198.JavaMail.yahoo@jws100190.mail.ne1.yahoo.com>
     [not found]                           ` <976499752.219775.1414613888129.JavaMail.yahoo@jws100101.mail.ne1.yahoo.com>
     [not found]                             ` <1400960529.171566.1414613936238.JavaMail.yahoo@jws10059.mail.ne1.yahoo.com>
     [not found]                               ` <1333619289.175040.1414613999304.JavaMail.yahoo@jws100196.mail.ne1.yahoo.com>
     [not found]                                 ` <1038759122.176173.1414614054070.JavaMail.yahoo@jws100138.mail.ne1.yahoo.com>
     [not found]                                   ` <1109995533.176150.1414614101940.JavaMail.yahoo@jws100140.mail.ne1.yahoo.com>
     [not found]                                     ` <809474730.174920.1414614143971.JavaMail.yahoo@jws100154.mail.ne1.yahoo.com>
     [not found]                                       ` <1234226428.170349.1414614189490.JavaMail .yahoo@jws10056.mail.ne1.yahoo.com>
     [not found]                                         ` <1122464611.177103.1414614228916.JavaMail.yahoo@jws100161.mail.ne1.yahoo.com>
     [not found]                                           ` <1350859260.174219.1414614279095.JavaMail.yahoo@jws100176.mail.ne1.yahoo.com>
     [not found]                                             ` <1730751880.171557.1414614322033.JavaMail.yahoo@jws10060.mail.ne1.yahoo.com>
     [not found]                                               ` <642429550.177328.1414614367628.JavaMail.yahoo@jws100165.mail.ne1.yahoo.com>
     [not found]                                                 ` <1400780243.20511.1414614418178.JavaMail.yahoo@jws100162.mail.ne1.yahoo.com>
     [not found]                                                   ` <2025652090.173204.1414614462119.JavaMail.yahoo@jws10087.mail.ne1.yahoo.com>
     [not found]                                                     ` <859211720.180077.1414614521867.JavaMail.yahoo@jws100147.mail.ne1.yahoo.com>
     [not found]                                                       ` <258705675.173585.1414614563057.JavaMail.yahoo@jws10078.mail.ne1.yahoo.com>
     [not found]                                                         ` <1773234186.173687.1414614613736.JavaMail.yahoo@jws10078.mail.ne1.yahoo.com>
     [not found]                                                           ` <1132079010.173033.1414614645153.JavaMail.yahoo@jws10066.mail.ne1.ya hoo.com>
     [not found]                                                             ` <1972302405.176488.1414614708676.JavaMail.yahoo@jws100166.mail.ne1.yahoo.com>
     [not found]                                                               ` <1713123000.176308.1414614771694.JavaMail.yahoo@jws10045.mail.ne1.yahoo.com>
     [not found]                                                                 ` <299800233.173413.1414614817575.JavaMail.yahoo@jws10066.mail.ne1.yahoo.com>
     [not found]                                                                   ` <494469968.179875.1414614903152.JavaMail.yahoo@jws100144.mail.ne1.yahoo.com>
     [not found]                                                                     ` <2136945987.171995.1414614942776.JavaMail.yahoo@jws10091.mail.ne1.yahoo.com>
     [not found]                                                                       ` <257674219.177708.1414615022592.JavaMail.yahoo@jws100181.mail.ne1.yahoo.com>
     [not found]                                                                         ` <716927833.181664.1414615075308.JavaMail.yahoo@jws100145.mail.ne1.yahoo.com>
     [not found]                                                                           ` <874940984.178797.1414615132802.JavaMail.yahoo@jws100157.mail.ne1.yahoo.com>
     [not found]                                                                             ` <1283488887.176736.1414615187657.JavaMail.yahoo@jws100183.mail.ne1.yahoo.com>
     [not found]                                                                               ` <777665713.175887.1414615236293.JavaMail.yahoo@jws10083.mail.ne1.yahoo.com>
     [not found]                                                                                 ` <585395776.176325.1 414615298260.JavaMail.yahoo@jws10033.mail.ne1.yahoo.com>
     [not found]                                                                                   ` <178352191.221832.1414615355071.JavaMail.yahoo@jws100104.mail.ne1.yahoo.com>
     [not found]                                                                                     ` <108454213.176606.1414615522058.JavaMail.yahoo@jws10053.mail.ne1.yahoo.com>
     [not found]                                                                                       ` <1617229176.177502.1414615563724.JavaMail.yahoo@jws10030.mail.ne1.yahoo.com>
     [not found]                                                                                         ` <324334617.178254.1414615625247.JavaMail.yahoo@jws10089.mail.ne1.yahoo.com>
     [not found]                                                                                           ` <567135865.82376.1414615664442.JavaMail.yahoo@jws100136.mail.ne1.yahoo.com>
     [not found]                                                                                             ` <764758300.179669.1414615711821.JavaMail.yahoo@jws100107.mail.ne1.yahoo.com>
     [not found]                                                                                               ` <1072855470.183388.1414615775798.JavaMail.yahoo@jws100147.mail.ne1.yahoo.com>
     [not found]                                                                                                 ` <2134283632.173314.1414615831322.JavaMail.yahoo@jws10094.mail.ne1.yahoo.com>
     [not found]                                                                                                   ` <1454491902.178612.1414615875076.JavaMail.yahoo@jws100209.mail.ne1.yahoo.com>
     [not found]                                                                                                     ` <1480763910.146593.1414958012342.JavaMail.yahoo-o8Yl8dfWkGi9yjMHE8D8k1Z8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
2014-11-02 19:54                                                                                                       ` (unknown) MRS GRACE MANDA
2015-02-26 18:00 (unknown) Stéphane Aulery
2015-07-01 11:53 (unknown), Sasnett_Karen
2015-08-20  7:12 (unknown), Mark Singer
2015-12-05  4:05 (unknown), Don Boyer
2016-02-28  0:11 (unknown), David and Carol Martin
2016-07-05 10:56 (unknown) Quentin Rameau
2017-01-15 19:56 (unknown) Sergey Polovko
2017-03-20  2:25 (unknown), Rick Lee
2017-04-08 19:20 (unknown), jbmplupus-Mmb7MZpHnFY
2017-04-15 15:00 (unknown), jbmplupus-Mmb7MZpHnFY
2017-04-26  7:36 (unknown), glolariu
2017-09-02  2:35 (unknown), jbmplupus-Mmb7MZpHnFY
2017-09-22 19:34 (unknown), John Michael
2017-10-03  0:55 (unknown), jbmplupus-Mmb7MZpHnFY
2018-02-11 16:07 (unknown), glolariu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).