D
disruptivesolutionsnl@gmail.com
Fri, Jul 2, 2021 2:26 PM
Hello,
I am new to his forum/mailing list, so thank you for having me!
I want to make an octagonal shape (8 sides) where I could change the angle
of each corner, so the lengths of the "lines" between them is not
equivalent. How could I do this?
I hope my question is clear enough without presenting an example picture.
With kind regards,
Ben
Hello,
I am new to his forum/mailing list, so thank you for having me!
I want to make an octagonal shape (8 sides) where I could change the angle
of each corner, so the lengths of the "lines" between them is not
equivalent. How could I do this?
I hope my question is clear enough without presenting an example picture.
With kind regards,
Ben
MM
Michael Möller
Fri, Jul 2, 2021 2:30 PM
Hello,
I am new to his forum/mailing list, so thank you for having me!
I want to make an octagonal shape (8 sides) where I could change the angle
of each corner, so the lengths of the “lines” between them is not
equivalent. How could I do this?
I hope my question is clear enough without presenting an example picture.
With kind regards,
Ben
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
That is just a regular polyhedron, with 8 points.
https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Using_the_2D_Subsystem#polygon
You just need the list of xy points. This is a 2D shape, so remember to
extrude it.
Msquare
On Fri, 2 Jul 2021 at 16:26, <disruptivesolutionsnl@gmail.com> wrote:
> Hello,
>
>
>
> I am new to his forum/mailing list, so thank you for having me!
>
>
>
> I want to make an octagonal shape (8 sides) where I could change the angle
> of each corner, so the lengths of the “lines” between them is not
> equivalent. How could I do this?
>
>
>
> I hope my question is clear enough without presenting an example picture.
>
>
>
> With kind regards,
>
> Ben
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
NH
nop head
Fri, Jul 2, 2021 2:33 PM
You can make an arbitrary 8 sided shape by giving a list of vertices to
polygon(). If you want to specify the angles you would need to use some
trigonometry to work out the vertex positions, or perhaps use a library
with turtle mode paths.
On Fri, 2 Jul 2021 at 15:26, disruptivesolutionsnl@gmail.com wrote:
Hello,
I am new to his forum/mailing list, so thank you for having me!
I want to make an octagonal shape (8 sides) where I could change the angle
of each corner, so the lengths of the “lines” between them is not
equivalent. How could I do this?
I hope my question is clear enough without presenting an example picture.
With kind regards,
Ben
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
You can make an arbitrary 8 sided shape by giving a list of vertices to
polygon(). If you want to specify the angles you would need to use some
trigonometry to work out the vertex positions, or perhaps use a library
with turtle mode paths.
On Fri, 2 Jul 2021 at 15:26, <disruptivesolutionsnl@gmail.com> wrote:
> Hello,
>
>
>
> I am new to his forum/mailing list, so thank you for having me!
>
>
>
> I want to make an octagonal shape (8 sides) where I could change the angle
> of each corner, so the lengths of the “lines” between them is not
> equivalent. How could I do this?
>
>
>
> I hope my question is clear enough without presenting an example picture.
>
>
>
> With kind regards,
>
> Ben
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
T
Terry
Fri, Jul 2, 2021 7:26 PM
On Fri, 2 Jul 2021 16:26:09 +0200, you wrote:
Hello,
I am new to his forum/mailing list, so thank you for having me!
I want to make an octagonal shape (8 sides) where I could change the angle
of each corner, so the lengths of the "lines" between them is not
equivalent. How could I do this?
I hope my question is clear enough without presenting an example picture.
With kind regards,
Ben
On Fri, 2 Jul 2021 16:26:09 +0200, you wrote:
Hello,
I am new to his forum/mailing list, so thank you for having me!
I want to make an octagonal shape (8 sides) where I could change the angle
of each corner, so the lengths of the "lines" between them is not
equivalent. How could I do this?
I hope my question is clear enough without presenting an example picture.
With kind regards,
Ben
Hi Ben,
I'm newish here too, and an OS novice, but one of the books I've bought
has some examples from which I've extracted the following. Although it's
not a close match, with a revised function it might be a start.
function cartesian(radius,angle)=
[radiuscos(angle),radiussin(angle)];
module triangle(p1,p2,p3) {
polygon([p1,p2,p3]);
}
module regular_polygon(poly_edges,poly_radius) {
for(n=[0:poly_edges-1]) {
p1 = cartesian(poly_radius,n*360/poly_edges);
p2 = cartesian(poly_radius,(n+1)*360/poly_edges);
triangle([0,0],p1,p2);
}
}
// Octagon example
poly_edges = 8;
poly_radius = 20;
poly_height = 3;
linear_extrude(poly_height)
regular_polygon(poly_edges,poly_radius);
On Fri, 2 Jul 2021 16:26:09 +0200, you wrote:
>Hello,
>
>
>
>I am new to his forum/mailing list, so thank you for having me!
>
>
>
>I want to make an octagonal shape (8 sides) where I could change the angle
>of each corner, so the lengths of the "lines" between them is not
>equivalent. How could I do this?
>
>
>
>I hope my question is clear enough without presenting an example picture.
>
>
>
>With kind regards,
>
>Ben
On Fri, 2 Jul 2021 16:26:09 +0200, you wrote:
>Hello,
>
>
>
>I am new to his forum/mailing list, so thank you for having me!
>
>
>
>I want to make an octagonal shape (8 sides) where I could change the angle
>of each corner, so the lengths of the "lines" between them is not
>equivalent. How could I do this?
>
>
>
>I hope my question is clear enough without presenting an example picture.
>
>
>
>With kind regards,
>
>Ben
Hi Ben,
I'm newish here too, and an OS novice, but one of the books I've bought
has some examples from which I've extracted the following. Although it's
not a close match, with a revised function it might be a start.
function cartesian(radius,angle)=
[radius*cos(angle),radius*sin(angle)];
module triangle(p1,p2,p3) {
polygon([p1,p2,p3]);
}
module regular_polygon(poly_edges,poly_radius) {
for(n=[0:poly_edges-1]) {
p1 = cartesian(poly_radius,n*360/poly_edges);
p2 = cartesian(poly_radius,(n+1)*360/poly_edges);
triangle([0,0],p1,p2);
}
}
// Octagon example
poly_edges = 8;
poly_radius = 20;
poly_height = 3;
linear_extrude(poly_height)
regular_polygon(poly_edges,poly_radius);
T
Terry
Fri, Jul 2, 2021 7:36 PM
It's odd that my post is accessible in the forum but I haven't yet
received it as an email. Anyway, in the forum somehow the pasted code
has been corrupted (as you see from the accompanying screenshot.
Hopefully the email will be correct. Here's another paste:
function cartesian(radius,angle)=
[radiuscos(angle),radiussin(angle)];
module triangle(p1,p2,p3) {
polygon([p1,p2,p3]);
}
module regular_polygon(poly_edges,poly_radius) {
for(n=[0:poly_edges-1]) {
p1 = cartesian(poly_radius,n*360/poly_edges);
p2 = cartesian(poly_radius,(n+1)*360/poly_edges);
triangle([0,0],p1,p2);
}
}
// Octagon example
poly_edges = 8;
poly_radius = 20;
poly_height = 3;
linear_extrude(poly_height)
regular_polygon(poly_edges,poly_radius);
It's odd that my post is accessible in the forum but I haven't yet
received it as an email. Anyway, in the forum somehow the pasted code
has been corrupted (as you see from the accompanying screenshot.
Hopefully the email will be correct. Here's another paste:
function cartesian(radius,angle)=
[radius*cos(angle),radius*sin(angle)];
module triangle(p1,p2,p3) {
polygon([p1,p2,p3]);
}
module regular_polygon(poly_edges,poly_radius) {
for(n=[0:poly_edges-1]) {
p1 = cartesian(poly_radius,n*360/poly_edges);
p2 = cartesian(poly_radius,(n+1)*360/poly_edges);
triangle([0,0],p1,p2);
}
}
// Octagon example
poly_edges = 8;
poly_radius = 20;
poly_height = 3;
linear_extrude(poly_height)
regular_polygon(poly_edges,poly_radius);
JB
Jordan Brown
Fri, Jul 2, 2021 8:10 PM
module regular_polygon(poly_edges,poly_radius) {
It's not super-obvious, but OpenSCAD has a built-in way to do this:
circle(r=poly_radius, $fn=poly_edges);
Additional regular polygon tips:
Note that OpenSCAD measures the "radius" of the polygon from the center
to the vertices.
function adjustr(r, n) = r / cos(360/n/2);
will give you an "adjusted" radius, such that circle(r=adjustr(r, n),
$fn=n) will give you a polygon where "r" is the distance from the center
to the middle of the edges.
Also note that OpenSCAD circle() behavior puts one vertex at [r, 0], so
that a square ends up diamond-oriented. That's not wrong, but sometimes
it's more convenient to have an edge there. For that, you want
rotate(360/n/2) circle(...);
If you combine those:
rotate(360/n/2) circle(r=adjustr(r, n), $fn=n);
then you end up with a polygon where one edge is aligned with the Y axis
and has its center at [r, 0]. If the number of sides is even, another
Y-aligned edge is at [-r,0], and if it's divisible by four then there
will be X-aligned edges at [0,r] and [0,-r].
> module regular_polygon(poly_edges,poly_radius) {
It's not super-obvious, but OpenSCAD has a built-in way to do this:
circle(r=poly_radius, $fn=poly_edges);
Additional regular polygon tips:
Note that OpenSCAD measures the "radius" of the polygon from the center
to the vertices.
function adjustr(r, n) = r / cos(360/n/2);
will give you an "adjusted" radius, such that circle(r=adjustr(r, n),
$fn=n) will give you a polygon where "r" is the distance from the center
to the middle of the edges.
Also note that OpenSCAD circle() behavior puts one vertex at [r, 0], so
that a square ends up diamond-oriented. That's not wrong, but sometimes
it's more convenient to have an edge there. For that, you want
rotate(360/n/2) circle(...);
If you combine those:
rotate(360/n/2) circle(r=adjustr(r, n), $fn=n);
then you end up with a polygon where one edge is aligned with the Y axis
and has its center at [r, 0]. If the number of sides is even, another
Y-aligned edge is at [-r,0], and if it's divisible by four then there
will be X-aligned edges at [0,r] and [0,-r].
JB
Jordan Brown
Fri, Jul 2, 2021 8:24 PM
On 7/2/2021 1:10 PM, Jordan Brown wrote:
rotate(360/n/2) circle(r=adjustr(r, n), $fn=n);
Perhaps circle (and cylinder and sphere) should get additional options
so that these adjustments are built in, rather than everybody needing to
layer adjustments on top.
For the radius adjustment, there could be "ir", "or", "id", and "od"
parameters. "or" and "od" would be aliases for the current "r" and "d"
and specify to-vertex dimensions, while "ir" and "id" would specify
to-edge dimensions.
I don't know about the rotation adjustment, but perhaps it would be a
boolean or perhaps it would be an "align" parameter with options
"vertex" and "edge".
It's hard to tell when adding these small tweaks to the base (thus
cluttering the base more) is a win over having people or libraries
invent new names for new operations that are almost the same as the
existing operations.
On 7/2/2021 1:10 PM, Jordan Brown wrote:
>
> rotate(360/n/2) circle(r=adjustr(r, n), $fn=n);
>
Perhaps circle (and cylinder and sphere) should get additional options
so that these adjustments are built in, rather than everybody needing to
layer adjustments on top.
For the radius adjustment, there could be "ir", "or", "id", and "od"
parameters. "or" and "od" would be aliases for the current "r" and "d"
and specify to-vertex dimensions, while "ir" and "id" would specify
to-edge dimensions.
I don't know about the rotation adjustment, but perhaps it would be a
boolean or perhaps it would be an "align" parameter with options
"vertex" and "edge".
It's hard to tell when adding these small tweaks to the base (thus
cluttering the base more) is a win over having people or libraries
invent new names for new operations that are almost the same as the
existing operations.
DG
David Gustavson
Fri, Jul 2, 2021 8:36 PM
It’s because you use Gmail.
Gmail has a policy that it will never show you an email that it can tell was sent by yourself.
Makes me crazy when testing groups.
I guess they think it would insult your memory?
--
David Gustavson
dbg@SCIzzL.com
On Fri, Jul 2, 2021, at 12:36 PM, Terry wrote:
It's odd that my post is accessible in the forum but I haven't yet
received it as an email. Anyway, in the forum somehow the pasted code
has been corrupted (as you see from the accompanying screenshot.
Hopefully the email will be correct. Here's another paste:
function cartesian(radius,angle)=
[radiuscos(angle),radiussin(angle)];
module triangle(p1,p2,p3) {
polygon([p1,p2,p3]);
}
module regular_polygon(poly_edges,poly_radius) {
for(n=[0:poly_edges-1]) {
p1 = cartesian(poly_radius,n*360/poly_edges);
p2 = cartesian(poly_radius,(n+1)*360/poly_edges);
triangle([0,0],p1,p2);
}
}
// Octagon example
poly_edges = 8;
poly_radius = 20;
poly_height = 3;
linear_extrude(poly_height)
regular_polygon(poly_edges,poly_radius);
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
It’s because you use Gmail.
Gmail has a policy that it will never show you an email that it can tell was sent by yourself.
Makes me crazy when testing groups.
I guess they think it would insult your memory?
--
David Gustavson
dbg@SCIzzL.com
On Fri, Jul 2, 2021, at 12:36 PM, Terry wrote:
> It's odd that my post is accessible in the forum but I haven't yet
> received it as an email. Anyway, in the forum somehow the pasted code
> has been corrupted (as you see from the accompanying screenshot.
> Hopefully the email will be correct. Here's another paste:
>
>
> function cartesian(radius,angle)=
> [radius*cos(angle),radius*sin(angle)];
>
> module triangle(p1,p2,p3) {
> polygon([p1,p2,p3]);
> }
>
>
> module regular_polygon(poly_edges,poly_radius) {
> for(n=[0:poly_edges-1]) {
> p1 = cartesian(poly_radius,n*360/poly_edges);
> p2 = cartesian(poly_radius,(n+1)*360/poly_edges);
> triangle([0,0],p1,p2);
> }
> }
>
> // Octagon example
> poly_edges = 8;
> poly_radius = 20;
> poly_height = 3;
> linear_extrude(poly_height)
> regular_polygon(poly_edges,poly_radius);
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
RD
Revar Desmera
Fri, Jul 2, 2021 10:58 PM
Something like this?
r=50; sides=8; small_ang=30;
poly = [
for (a=[0:90:359],b=[-0.5,0.5])
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
]
polygon(poly);
Or do you need specific interior angles on the polygon?
Something like this?
r=50; sides=8; small_ang=30;
poly = [
for (a=[0:90:359],b=[-0.5,0.5])
let(ang=a+b*small_ang)
r*[cos(ang), sin(ang)]
]
polygon(poly);
Or do you need specific interior angles on the polygon?
- Revar
> On Jul 2, 2021, at 7:26 AM, <disruptivesolutionsnl@gmail.com> <disruptivesolutionsnl@gmail.com> wrote:
>
> Hello,
>
> I am new to his forum/mailing list, so thank you for having me!
>
> I want to make an octagonal shape (8 sides) where I could change the angle of each corner, so the lengths of the “lines” between them is not equivalent. How could I do this?
>
> I hope my question is clear enough without presenting an example picture.
>
> With kind regards,
> Ben
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org <mailto:discuss-leave@lists.openscad.org>
MM
Michael Marx
Sat, Jul 3, 2021 12:49 AM
I'm newish here too, and an OS novice, but one of the books I've bought
has some examples
Terry,
Firstly we do not use OS as an abbreviation for OpenSCAD it gets confused for Operating System,
which is a more common term. What version of the OS are you running?
So what books??
BTW, people have missed the subtlety of the original request; different angles/lengths.
I want to make an octagonal shape (8 sides) where I could change the angle
of each corner, so the lengths of the "lines" between them is not
equivalent. How could I do this?
> -----Original Message-----
> From: Terry [mailto:terrypingm@gmail.com]
> Sent: Sat, 3 Jul 2021 05:26
> I'm newish here too, and an OS novice, but one of the books I've bought
> has some examples
Terry,
Firstly we do not use OS as an abbreviation for OpenSCAD it gets confused for Operating System,
which is a more common term. What version of the OS are you running?
So what books??
BTW, people have missed the subtlety of the original request; different angles/lengths.
> >I want to make an octagonal shape (8 sides) where I could change the angle
> >of each corner, so the lengths of the "lines" between them is not
> >equivalent. How could I do this?
--
This email has been checked for viruses by AVG.
https://www.avg.com
FH
Father Horton
Sat, Jul 3, 2021 1:03 AM
If what you're after is an arbitrary eight-sided polygon, then you're stuck
with doing a lot of messy trig. If there are regularities in it (e.g., the
figure remains symmetric), there's still trig, but less of it.
If what you're after is an arbitrary eight-sided polygon, then you're stuck
with doing a lot of messy trig. If there are regularities in it (e.g., the
figure remains symmetric), there's still trig, but less of it.
M
MichaelAtOz
Sat, Jul 3, 2021 1:24 AM
Terry,
The Mailing-list Archive is not a Forum, I presume you are referring to it.
To save confusion, call it Empathy. (THE Forum is not dead yet, it's Schrodinger)
I did mention posting via Empathy had limitations. Gmail via web is probably your better option
(with your previously mentioned considerations).
Note that the format of the Empathy post/email is actually stored correctly for posterity,
it is just badly displayed.
But as I've said, things are not likely to get fixed in a hurry,
so for now it is probably not worth noting such things, unless they are critical.
Michael
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sat, 3 Jul 2021 05:36
To: OpenSCAD general discussion
Cc: Terry (GMail)
Subject: [OpenSCAD] Re: New and a question
It's odd that my post is accessible in the forum but I haven't yet
received it as an email. Anyway, in the forum somehow the pasted code
has been corrupted (as you see from the accompanying screenshot.
Hopefully the email will be correct.
Terry,
The Mailing-list Archive is not a Forum, I presume you are referring to it.
To save confusion, call it Empathy. (THE Forum is not dead yet, it's Schrodinger)
I did mention posting via Empathy had limitations. Gmail via web is probably your better option
(with your previously mentioned considerations).
Note that the format of the Empathy post/email is actually stored correctly for posterity,
it is just badly displayed.
But as I've said, things are not likely to get fixed in a hurry,
so for now it is probably not worth noting such things, unless they are critical.
Michael
> -----Original Message-----
> From: Terry [mailto:terrypingm@gmail.com]
> Sent: Sat, 3 Jul 2021 05:36
> To: OpenSCAD general discussion
> Cc: Terry (GMail)
> Subject: [OpenSCAD] Re: New and a question
>
> It's odd that my post is accessible in the forum but I haven't yet
> received it as an email. Anyway, in the forum somehow the pasted code
> has been corrupted (as you see from the accompanying screenshot.
> Hopefully the email will be correct.
--
This email has been checked for viruses by AVG.
https://www.avg.com
M
MichaelAtOz
Sat, Jul 3, 2021 1:33 AM
Well, as the Admin, I suffer for you all and actually get three copies of all your prose,
via different avenues to make sure things are working. (Plus three versions of Digests...)
So if you want to see your Gmail posts, subscribe another email address (#2) and set up
some email rules, either just throw away all the gmails, or remove all #2's emails except your gmails.
-----Original Message-----
From: David Gustavson [mailto:dbg@SCIzzL.com]
Sent: Sat, 3 Jul 2021 06:37
To: Hans L via Discuss
Subject: [OpenSCAD] Re: New and a question
It’s because you use Gmail.
Gmail has a policy that it will never show you an email that it can tell was sent by
yourself.
Makes me crazy when testing groups.
I guess they think it would insult your memory?
--
David Gustavson
dbg@SCIzzL.com
On Fri, Jul 2, 2021, at 12:36 PM, Terry wrote:
It's odd that my post is accessible in the forum but I haven't yet
received it as an email. Anyway, in the forum somehow the pasted code
has been corrupted (as you see from the accompanying screenshot.
Hopefully the email will be correct. Here's another paste:
function cartesian(radius,angle)=
[radiuscos(angle),radiussin(angle)];
module triangle(p1,p2,p3) {
polygon([p1,p2,p3]);
}
module regular_polygon(poly_edges,poly_radius) {
for(n=[0:poly_edges-1]) {
p1 = cartesian(poly_radius,n*360/poly_edges);
p2 = cartesian(poly_radius,(n+1)*360/poly_edges);
triangle([0,0],p1,p2);
}
}
// Octagon example
poly_edges = 8;
poly_radius = 20;
poly_height = 3;
linear_extrude(poly_height)
regular_polygon(poly_edges,poly_radius);
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
Well, as the Admin, I suffer for you all and actually get three copies of all your prose,
via different avenues to make sure things are working. (Plus three versions of Digests...)
So if you want to see your Gmail posts, subscribe another email address (#2) and set up
some email rules, either just throw away all the gmails, or remove all #2's emails except your gmails.
> -----Original Message-----
> From: David Gustavson [mailto:dbg@SCIzzL.com]
> Sent: Sat, 3 Jul 2021 06:37
> To: Hans L via Discuss
> Subject: [OpenSCAD] Re: New and a question
>
> It’s because you use Gmail.
> Gmail has a policy that it will never show you an email that it can tell was sent by
> yourself.
> Makes me crazy when testing groups.
> I guess they think it would insult your memory?
>
> --
> David Gustavson
> dbg@SCIzzL.com
>
> On Fri, Jul 2, 2021, at 12:36 PM, Terry wrote:
> > It's odd that my post is accessible in the forum but I haven't yet
> > received it as an email. Anyway, in the forum somehow the pasted code
> > has been corrupted (as you see from the accompanying screenshot.
> > Hopefully the email will be correct. Here's another paste:
> >
> >
> > function cartesian(radius,angle)=
> > [radius*cos(angle),radius*sin(angle)];
> >
> > module triangle(p1,p2,p3) {
> > polygon([p1,p2,p3]);
> > }
> >
> >
> > module regular_polygon(poly_edges,poly_radius) {
> > for(n=[0:poly_edges-1]) {
> > p1 = cartesian(poly_radius,n*360/poly_edges);
> > p2 = cartesian(poly_radius,(n+1)*360/poly_edges);
> > triangle([0,0],p1,p2);
> > }
> > }
> >
> > // Octagon example
> > poly_edges = 8;
> > poly_radius = 20;
> > poly_height = 3;
> > linear_extrude(poly_height)
> > regular_polygon(poly_edges,poly_radius);
> > _______________________________________________
> > OpenSCAD mailing list
> > To unsubscribe send an email to discuss-leave@lists.openscad.org
> >
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
--
This email has been checked for viruses by AVG.
https://www.avg.com
L
larry
Sat, Jul 3, 2021 3:28 AM
On Fri, 2021-07-02 at 20:26 +0100, Terry wrote:
I want to make an octagonal shape (8 sides) where I could change
the angle of each corner, so the lengths of the "lines" between
them is not equivalent. How could I do this?
function cartesian(radius,angle)=
[radiuscos(angle),radiussin(angle)];
module triangle(p1,p2,p3) {
polygon([p1,p2,p3]);
}
module regular_polygon(poly_edges,poly_radius) {
for(n=[0:poly_edges-1]) {
p1 = cartesian(poly_radius,n*360/poly_edges);
p2 = cartesian(poly_radius,(n+1)*360/poly_edges);
triangle([0,0],p1,p2);
}
}
// Octagon example
poly_edges = 8;
poly_radius = 20;
poly_height = 3;
linear_extrude(poly_height)
regular_polygon(poly_edges,poly_radius);
Apart from that not having unequal sides and angles, There is a FAR
easier way to draw a polygonal figure as a regular polygon.
Give this a try:
cylinder(h=3,d=40,$fn=8);
On Fri, 2021-07-02 at 20:26 +0100, Terry wrote:
> > I want to make an octagonal shape (8 sides) where I could change
> > the angle of each corner, so the lengths of the "lines" between
> > them is not equivalent. How could I do this?
> function cartesian(radius,angle)=
> [radius*cos(angle),radius*sin(angle)];
> module triangle(p1,p2,p3) {
> polygon([p1,p2,p3]);
> }
> module regular_polygon(poly_edges,poly_radius) {
> for(n=[0:poly_edges-1]) {
> p1 = cartesian(poly_radius,n*360/poly_edges);
> p2 = cartesian(poly_radius,(n+1)*360/poly_edges);
> triangle([0,0],p1,p2);
> }
> }
>
> // Octagon example
> poly_edges = 8;
> poly_radius = 20;
> poly_height = 3;
> linear_extrude(poly_height)
> regular_polygon(poly_edges,poly_radius);
Apart from that not having unequal sides and angles, There is a FAR
easier way to draw a polygonal figure as a regular polygon.
Give this a try:
cylinder(h=3,d=40,$fn=8);
RW
Ray West
Sat, Jul 3, 2021 10:08 AM
Sorry, not a clear enough description. Is it a simple or complex
polygon, is concave acceptable? How will you refer to the specific
corners? How will you ensure that all the angles are valid, or are you
just changing one or two, and hoping the rest will sort themselves out,
and whatever the result is, it doesn't matter?. Any 7 random x,y
coordinates can generate an 8 sided polygon. What have you tried? Is a
Mk 1 eyeball good enough, or are you looking for precision, involving
doing some sums? https://www.mathsisfun.com/geometry/octagon.html
On 02/07/2021 15:26, disruptivesolutionsnl@gmail.com wrote:
Hello,
I am new to his forum/mailing list, so thank you for having me!
I want to make an octagonal shape (8 sides) where I could change the
angle of each corner, so the lengths of the “lines” between them is
not equivalent. How could I do this?
I hope my question is clear enough without presenting an example picture.
With kind regards,
Ben
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
Sorry, not a clear enough description. Is it a simple or complex
polygon, is concave acceptable? How will you refer to the specific
corners? How will you ensure that all the angles are valid, or are you
just changing one or two, and hoping the rest will sort themselves out,
and whatever the result is, it doesn't matter?. Any 7 random x,y
coordinates can generate an 8 sided polygon. What have you tried? Is a
Mk 1 eyeball good enough, or are you looking for precision, involving
doing some sums? https://www.mathsisfun.com/geometry/octagon.html
On 02/07/2021 15:26, disruptivesolutionsnl@gmail.com wrote:
>
> Hello,
>
> I am new to his forum/mailing list, so thank you for having me!
>
> I want to make an octagonal shape (8 sides) where I could change the
> angle of each corner, so the lengths of the “lines” between them is
> not equivalent. How could I do this?
>
> I hope my question is clear enough without presenting an example picture.
>
> With kind regards,
>
> Ben
>
>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
T
Terry
Sat, Jul 3, 2021 10:14 AM
Hardly 'critical' but the corruption of code in Empathy was serious
enough to get a warning mention IMO.
I see it occurs again in Revar's post. Empathy clearly doesn't like the
asterisk symbol. Sometimes treating it as a signal to switch on italics.
Who knows what other symbols are wrongly handled?
Original:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
Empathy corruption:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
So using its impressively large archive to search and use helpful code
from years before I became a subscriber is no longer sensible.
Terry
====================
On Sat, 3 Jul 2021 11:24:40 +1000, you wrote:
Terry,
The Mailing-list Archive is not a Forum, I presume you are referring to it.
To save confusion, call it Empathy. (THE Forum is not dead yet, it's Schrodinger)
I did mention posting via Empathy had limitations. Gmail via web is probably your better option
(with your previously mentioned considerations).
Note that the format of the Empathy post/email is actually stored correctly for posterity,
it is just badly displayed.
But as I've said, things are not likely to get fixed in a hurry,
so for now it is probably not worth noting such things, unless they are critical.
Michael
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sat, 3 Jul 2021 05:36
To: OpenSCAD general discussion
Cc: Terry (GMail)
Subject: [OpenSCAD] Re: New and a question
It's odd that my post is accessible in the forum but I haven't yet
received it as an email. Anyway, in the forum somehow the pasted code
has been corrupted (as you see from the accompanying screenshot.
Hopefully the email will be correct.
Hardly 'critical' but the corruption of code in Empathy was serious
enough to get a warning mention IMO.
I see it occurs again in Revar's post. Empathy clearly doesn't like the
asterisk symbol. Sometimes treating it as a signal to switch on italics.
Who knows what other symbols are wrongly handled?
Original:
let(ang=a+b*small_ang)
r*[cos(ang), sin(ang)]
Empathy corruption:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
So using its impressively large archive to search and use helpful code
from years before I became a subscriber is no longer sensible.
Terry
====================
On Sat, 3 Jul 2021 11:24:40 +1000, you wrote:
>Terry,
>
>The Mailing-list Archive is not a Forum, I presume you are referring to it.
>To save confusion, call it Empathy. (THE Forum is not dead yet, it's Schrodinger)
>
>I did mention posting via Empathy had limitations. Gmail via web is probably your better option
>(with your previously mentioned considerations).
>
>Note that the format of the Empathy post/email is actually stored correctly for posterity,
>it is just badly displayed.
>
>But as I've said, things are not likely to get fixed in a hurry,
>so for now it is probably not worth noting such things, unless they are critical.
>
>Michael
>
>> -----Original Message-----
>> From: Terry [mailto:terrypingm@gmail.com]
>> Sent: Sat, 3 Jul 2021 05:36
>> To: OpenSCAD general discussion
>> Cc: Terry (GMail)
>> Subject: [OpenSCAD] Re: New and a question
>>
>> It's odd that my post is accessible in the forum but I haven't yet
>> received it as an email. Anyway, in the forum somehow the pasted code
>> has been corrupted (as you see from the accompanying screenshot.
>> Hopefully the email will be correct.
T
Terry
Sat, Jul 3, 2021 10:37 AM
That particular book was John Craig's "OpenSCAD Cookbook".
I didn't interpret Ben's "... where I could change the angle of each
corner, so the lengths of the 'lines' between them is not equivalent,"
as you seem to have done. I assumed the lines between the corners could
vary in length, as Ben said, but not the RADII too. But until we hear
back from Ben, I guess we won't know. ;-)
In my post I was also careful to add: "Although it's not a close match,
with a revised function it might be a start."
Terry
====================
On Sat, 3 Jul 2021 10:49:09 +1000, you wrote:
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sat, 3 Jul 2021 05:26
I'm newish here too, and an OS novice, but one of the books I've bought
has some examples
Terry,
Firstly we do not use OS as an abbreviation for OpenSCAD it gets confused for Operating System,
which is a more common term. What version of the OS are you running?
So what books??
BTW, people have missed the subtlety of the original request; different angles/lengths.
I want to make an octagonal shape (8 sides) where I could change the angle
of each corner, so the lengths of the "lines" between them is not
equivalent. How could I do this?
That particular book was John Craig's "OpenSCAD Cookbook".
I didn't interpret Ben's "... where I could change the angle of each
corner, so the lengths of the 'lines' between them is not equivalent,"
as you seem to have done. I assumed the lines between the corners could
vary in length, as Ben said, but not the RADII too. But until we hear
back from Ben, I guess we won't know. ;-)
In my post I was also careful to add: "Although it's not a close match,
with a revised function it might be a start."
Terry
====================
On Sat, 3 Jul 2021 10:49:09 +1000, you wrote:
>
>> -----Original Message-----
>> From: Terry [mailto:terrypingm@gmail.com]
>> Sent: Sat, 3 Jul 2021 05:26
>
>> I'm newish here too, and an OS novice, but one of the books I've bought
>> has some examples
>
>Terry,
>
>Firstly we do not use OS as an abbreviation for OpenSCAD it gets confused for Operating System,
>which is a more common term. What version of the OS are you running?
>
>So what books??
>
>BTW, people have missed the subtlety of the original request; different angles/lengths.
>
>> >I want to make an octagonal shape (8 sides) where I could change the angle
>> >of each corner, so the lengths of the "lines" between them is not
>> >equivalent. How could I do this?
T
Terry
Sat, Jul 3, 2021 2:10 PM
I posted a reply at 11:14 and it promptly appeared in Empathy. (Actually
an hour before, according to the time stamp!) But nearly five hours
later I've still have not received it in my mail (nor another reply
posted at 11:37).
I'll try again. Here's a copy/paste from my Sent folder
Hardly 'critical' but the corruption of code in Empathy was serious
enough to get a warning mention IMO.
I see it occurs again in Revar's post. Empathy clearly doesn't like the
asterisk symbol. Sometimes treating it as a signal to switch on italics.
Who knows what other symbols are wrongly handled?
Original:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
Empathy corruption:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
So using its impressively large archive to search and use helpful code
from years before I became a subscriber is no longer sensible.
Terry
On Sat, 3 Jul 2021 11:24:40 +1000, you wrote:
Terry,
The Mailing-list Archive is not a Forum, I presume you are referring to it.
To save confusion, call it Empathy. (THE Forum is not dead yet, it's Schrodinger)
I did mention posting via Empathy had limitations. Gmail via web is probably your better option
(with your previously mentioned considerations).
Note that the format of the Empathy post/email is actually stored correctly for posterity,
it is just badly displayed.
But as I've said, things are not likely to get fixed in a hurry,
so for now it is probably not worth noting such things, unless they are critical.
Michael
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sat, 3 Jul 2021 05:36
To: OpenSCAD general discussion
Cc: Terry (GMail)
Subject: [OpenSCAD] Re: New and a question
It's odd that my post is accessible in the forum but I haven't yet
received it as an email. Anyway, in the forum somehow the pasted code
has been corrupted (as you see from the accompanying screenshot.
Hopefully the email will be correct.
I posted a reply at 11:14 and it promptly appeared in Empathy. (Actually
an hour before, according to the time stamp!) But nearly five hours
later I've still have not received it in my mail (nor another reply
posted at 11:37).
I'll try again. Here's a copy/paste from my Sent folder
-------------------------------------------------------
Hardly 'critical' but the corruption of code in Empathy was serious
enough to get a warning mention IMO.
I see it occurs again in Revar's post. Empathy clearly doesn't like the
asterisk symbol. Sometimes treating it as a signal to switch on italics.
Who knows what other symbols are wrongly handled?
Original:
let(ang=a+b*small_ang)
r*[cos(ang), sin(ang)]
Empathy corruption:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
So using its impressively large archive to search and use helpful code
from years before I became a subscriber is no longer sensible.
Terry
====================
On Sat, 3 Jul 2021 11:24:40 +1000, you wrote:
>Terry,
>
>The Mailing-list Archive is not a Forum, I presume you are referring to it.
>To save confusion, call it Empathy. (THE Forum is not dead yet, it's Schrodinger)
>
>I did mention posting via Empathy had limitations. Gmail via web is probably your better option
>(with your previously mentioned considerations).
>
>Note that the format of the Empathy post/email is actually stored correctly for posterity,
>it is just badly displayed.
>
>But as I've said, things are not likely to get fixed in a hurry,
>so for now it is probably not worth noting such things, unless they are critical.
>
>Michael
>
>> -----Original Message-----
>> From: Terry [mailto:terrypingm@gmail.com]
>> Sent: Sat, 3 Jul 2021 05:36
>> To: OpenSCAD general discussion
>> Cc: Terry (GMail)
>> Subject: [OpenSCAD] Re: New and a question
>>
>> It's odd that my post is accessible in the forum but I haven't yet
>> received it as an email. Anyway, in the forum somehow the pasted code
>> has been corrupted (as you see from the accompanying screenshot.
>> Hopefully the email will be correct.
M
MichaelAtOz
Sat, Jul 3, 2021 2:21 PM
I received your previous email "From: Terry terrypingm@gmail.com"
As previously explained gmail does not send emails from you to you.
Please do not report anything further re Empathy.
It is no longer supported. It is available for people to use as a convenience.
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sun, 4 Jul 2021 00:11
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: New and a question
I posted a reply at 11:14 and it promptly appeared in Empathy. (Actually
an hour before, according to the time stamp!) But nearly five hours
later I've still have not received it in my mail (nor another reply
posted at 11:37).
I'll try again. Here's a copy/paste from my Sent folder
Hardly 'critical' but the corruption of code in Empathy was serious
enough to get a warning mention IMO.
I see it occurs again in Revar's post. Empathy clearly doesn't like the
asterisk symbol. Sometimes treating it as a signal to switch on italics.
Who knows what other symbols are wrongly handled?
Original:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
Empathy corruption:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
So using its impressively large archive to search and use helpful code
from years before I became a subscriber is no longer sensible.
Terry
On Sat, 3 Jul 2021 11:24:40 +1000, you wrote:
Terry,
The Mailing-list Archive is not a Forum, I presume you are referring to it.
To save confusion, call it Empathy. (THE Forum is not dead yet, it's Schrodinger)
I did mention posting via Empathy had limitations. Gmail via web is probably your better
(with your previously mentioned considerations).
Note that the format of the Empathy post/email is actually stored correctly for
it is just badly displayed.
But as I've said, things are not likely to get fixed in a hurry,
so for now it is probably not worth noting such things, unless they are critical.
Michael
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sat, 3 Jul 2021 05:36
To: OpenSCAD general discussion
Cc: Terry (GMail)
Subject: [OpenSCAD] Re: New and a question
It's odd that my post is accessible in the forum but I haven't yet
received it as an email. Anyway, in the forum somehow the pasted code
has been corrupted (as you see from the accompanying screenshot.
Hopefully the email will be correct.
I received your previous email "From: Terry <terrypingm@gmail.com>"
As previously explained gmail does not send emails from you to you.
Please do not report anything further re Empathy.
It is no longer supported. It is available for people to use as a convenience.
> -----Original Message-----
> From: Terry [mailto:terrypingm@gmail.com]
> Sent: Sun, 4 Jul 2021 00:11
> To: OpenSCAD general discussion
> Subject: [OpenSCAD] Re: New and a question
>
> I posted a reply at 11:14 and it promptly appeared in Empathy. (Actually
> an hour before, according to the time stamp!) But nearly five hours
> later I've still have not received it in my mail (nor another reply
> posted at 11:37).
>
> I'll try again. Here's a copy/paste from my Sent folder
> -------------------------------------------------------
>
> Hardly 'critical' but the corruption of code in Empathy was serious
> enough to get a warning mention IMO.
>
> I see it occurs again in Revar's post. Empathy clearly doesn't like the
> asterisk symbol. Sometimes treating it as a signal to switch on italics.
> Who knows what other symbols are wrongly handled?
>
> Original:
> let(ang=a+b*small_ang)
> r*[cos(ang), sin(ang)]
>
> Empathy corruption:
> let(ang=a+bsmall_ang)
> r[cos(ang), sin(ang)]
>
> So using its impressively large archive to search and use helpful code
> from years before I became a subscriber is no longer sensible.
>
> Terry
> ====================
>
> On Sat, 3 Jul 2021 11:24:40 +1000, you wrote:
>
> >Terry,
> >
> >The Mailing-list Archive is not a Forum, I presume you are referring to it.
> >To save confusion, call it Empathy. (THE Forum is not dead yet, it's Schrodinger)
> >
> >I did mention posting via Empathy had limitations. Gmail via web is probably your better
> option
> >(with your previously mentioned considerations).
> >
> >Note that the format of the Empathy post/email is actually stored correctly for
> posterity,
> >it is just badly displayed.
> >
> >But as I've said, things are not likely to get fixed in a hurry,
> >so for now it is probably not worth noting such things, unless they are critical.
> >
> >Michael
> >
> >> -----Original Message-----
> >> From: Terry [mailto:terrypingm@gmail.com]
> >> Sent: Sat, 3 Jul 2021 05:36
> >> To: OpenSCAD general discussion
> >> Cc: Terry (GMail)
> >> Subject: [OpenSCAD] Re: New and a question
> >>
> >> It's odd that my post is accessible in the forum but I haven't yet
> >> received it as an email. Anyway, in the forum somehow the pasted code
> >> has been corrupted (as you see from the accompanying screenshot.
> >> Hopefully the email will be correct.
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
--
This email has been checked for viruses by AVG.
https://www.avg.com
T
Terry
Sat, Jul 3, 2021 2:29 PM
Posted this at 11:37, promptly appeared in Empathy (at 10:37!) but five
hours later still not received the email. This is not an initiating
first post, but a reply, so not subject to the Gmail 'feature' already
discussed. I DID get the 'Discuss post acknowledgment'. I am getting
other emails to my gmail ID. So most likely culprit appears to be some
setting or filter in my email client (Forte's Agent). I'll focus on that
but would welcome any other ideas.
Anyway, I'll try again, but not optimistic.
That particular book was John Craig's "OpenSCAD Cookbook".
I didn't interpret Ben's "... where I could change the angle of each
corner, so the lengths of the 'lines' between them is not equivalent,"
as you seem to have done. I assumed the lines between the corners could
vary in length, as Ben said, but not the RADII too. But until we hear
back from Ben, I guess we won't know. ;-)
In my post I was also careful to add: "Although it's not a close match,
with a revised function it might be a start."
Terry
On Sat, 3 Jul 2021 10:49:09 +1000, you wrote:
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sat, 3 Jul 2021 05:26
I'm newish here too, and an OS novice, but one of the books I've bought
has some examples
Terry,
Firstly we do not use OS as an abbreviation for OpenSCAD it gets confused for Operating System,
which is a more common term. What version of the OS are you running?
So what books??
BTW, people have missed the subtlety of the original request; different angles/lengths.
I want to make an octagonal shape (8 sides) where I could change the angle
of each corner, so the lengths of the "lines" between them is not
equivalent. How could I do this?
Posted this at 11:37, promptly appeared in Empathy (at 10:37!) but five
hours later still not received the email. This is not an initiating
first post, but a reply, so not subject to the Gmail 'feature' already
discussed. I DID get the 'Discuss post acknowledgment'. I am getting
other emails to my gmail ID. So most likely culprit appears to be some
setting or filter in my email client (Forte's Agent). I'll focus on that
but would welcome any other ideas.
Anyway, I'll try again, but not optimistic.
-------------------------------------------
That particular book was John Craig's "OpenSCAD Cookbook".
I didn't interpret Ben's "... where I could change the angle of each
corner, so the lengths of the 'lines' between them is not equivalent,"
as you seem to have done. I assumed the lines between the corners could
vary in length, as Ben said, but not the RADII too. But until we hear
back from Ben, I guess we won't know. ;-)
In my post I was also careful to add: "Although it's not a close match,
with a revised function it might be a start."
Terry
On Sat, 3 Jul 2021 10:49:09 +1000, you wrote:
>
>> -----Original Message-----
>> From: Terry [mailto:terrypingm@gmail.com]
>> Sent: Sat, 3 Jul 2021 05:26
>
>> I'm newish here too, and an OS novice, but one of the books I've bought
>> has some examples
>
>Terry,
>
>Firstly we do not use OS as an abbreviation for OpenSCAD it gets confused for Operating System,
>which is a more common term. What version of the OS are you running?
>
>So what books??
>
>BTW, people have missed the subtlety of the original request; different angles/lengths.
>
>> >I want to make an octagonal shape (8 sides) where I could change the angle
>> >of each corner, so the lengths of the "lines" between them is not
>> >equivalent. How could I do this?
T
Terry
Sat, Jul 3, 2021 2:49 PM
OK, my misunderstanding. I thought that (daft) Gmail restriction applied
only to an initial post to the mailing list, not to replies to others'
posts. So it makes the thread confusing to follow in my client, and for
me at least it makes Empathy more than a convenience!
Terry
On Sun, 4 Jul 2021 00:21:46 +1000, you wrote:
I received your previous email "From: Terry terrypingm@gmail.com"
As previously explained gmail does not send emails from you to you.
Please do not report anything further re Empathy.
It is no longer supported. It is available for people to use as a convenience.
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sun, 4 Jul 2021 00:11
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: New and a question
I posted a reply at 11:14 and it promptly appeared in Empathy. (Actually
an hour before, according to the time stamp!) But nearly five hours
later I've still have not received it in my mail (nor another reply
posted at 11:37).
I'll try again. Here's a copy/paste from my Sent folder
Hardly 'critical' but the corruption of code in Empathy was serious
enough to get a warning mention IMO.
I see it occurs again in Revar's post. Empathy clearly doesn't like the
asterisk symbol. Sometimes treating it as a signal to switch on italics.
Who knows what other symbols are wrongly handled?
Original:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
Empathy corruption:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
So using its impressively large archive to search and use helpful code
from years before I became a subscriber is no longer sensible.
Terry
On Sat, 3 Jul 2021 11:24:40 +1000, you wrote:
Terry,
The Mailing-list Archive is not a Forum, I presume you are referring to it.
To save confusion, call it Empathy. (THE Forum is not dead yet, it's Schrodinger)
I did mention posting via Empathy had limitations. Gmail via web is probably your better
option
(with your previously mentioned considerations).
Note that the format of the Empathy post/email is actually stored correctly for
posterity,
it is just badly displayed.
But as I've said, things are not likely to get fixed in a hurry,
so for now it is probably not worth noting such things, unless they are critical.
Michael
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sat, 3 Jul 2021 05:36
To: OpenSCAD general discussion
Cc: Terry (GMail)
Subject: [OpenSCAD] Re: New and a question
It's odd that my post is accessible in the forum but I haven't yet
received it as an email. Anyway, in the forum somehow the pasted code
has been corrupted (as you see from the accompanying screenshot.
Hopefully the email will be correct.
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
OK, my misunderstanding. I thought that (daft) Gmail restriction applied
only to an initial post to the mailing list, not to replies to others'
posts. So it makes the thread confusing to follow in my client, and for
me at least it makes Empathy more than a convenience!
Terry
On Sun, 4 Jul 2021 00:21:46 +1000, you wrote:
>I received your previous email "From: Terry <terrypingm@gmail.com>"
>As previously explained gmail does not send emails from you to you.
>
>Please do not report anything further re Empathy.
>It is no longer supported. It is available for people to use as a convenience.
>
>
>> -----Original Message-----
>> From: Terry [mailto:terrypingm@gmail.com]
>> Sent: Sun, 4 Jul 2021 00:11
>> To: OpenSCAD general discussion
>> Subject: [OpenSCAD] Re: New and a question
>>
>> I posted a reply at 11:14 and it promptly appeared in Empathy. (Actually
>> an hour before, according to the time stamp!) But nearly five hours
>> later I've still have not received it in my mail (nor another reply
>> posted at 11:37).
>>
>> I'll try again. Here's a copy/paste from my Sent folder
>> -------------------------------------------------------
>>
>> Hardly 'critical' but the corruption of code in Empathy was serious
>> enough to get a warning mention IMO.
>>
>> I see it occurs again in Revar's post. Empathy clearly doesn't like the
>> asterisk symbol. Sometimes treating it as a signal to switch on italics.
>> Who knows what other symbols are wrongly handled?
>>
>> Original:
>> let(ang=a+b*small_ang)
>> r*[cos(ang), sin(ang)]
>>
>> Empathy corruption:
>> let(ang=a+bsmall_ang)
>> r[cos(ang), sin(ang)]
>>
>> So using its impressively large archive to search and use helpful code
>> from years before I became a subscriber is no longer sensible.
>>
>> Terry
>> ====================
>>
>> On Sat, 3 Jul 2021 11:24:40 +1000, you wrote:
>>
>> >Terry,
>> >
>> >The Mailing-list Archive is not a Forum, I presume you are referring to it.
>> >To save confusion, call it Empathy. (THE Forum is not dead yet, it's Schrodinger)
>> >
>> >I did mention posting via Empathy had limitations. Gmail via web is probably your better
>> option
>> >(with your previously mentioned considerations).
>> >
>> >Note that the format of the Empathy post/email is actually stored correctly for
>> posterity,
>> >it is just badly displayed.
>> >
>> >But as I've said, things are not likely to get fixed in a hurry,
>> >so for now it is probably not worth noting such things, unless they are critical.
>> >
>> >Michael
>> >
>> >> -----Original Message-----
>> >> From: Terry [mailto:terrypingm@gmail.com]
>> >> Sent: Sat, 3 Jul 2021 05:36
>> >> To: OpenSCAD general discussion
>> >> Cc: Terry (GMail)
>> >> Subject: [OpenSCAD] Re: New and a question
>> >>
>> >> It's odd that my post is accessible in the forum but I haven't yet
>> >> received it as an email. Anyway, in the forum somehow the pasted code
>> >> has been corrupted (as you see from the accompanying screenshot.
>> >> Hopefully the email will be correct.
>> _______________________________________________
>> OpenSCAD mailing list
>> To unsubscribe send an email to discuss-leave@lists.openscad.org
NH
nop head
Sat, Jul 3, 2021 3:09 PM
I use the gmail web client and I see my own posts inserted into the thread.
If I start a new thread it will just be in my sent folder but when there
are replies it becomes a single thread in my inbox. I don't think it comes
from the mailing list.
So it looks to me like your email client isn't totally compatible with
gmail.
On Sat, 3 Jul 2021 at 15:49, Terry terrypingm@gmail.com wrote:
OK, my misunderstanding. I thought that (daft) Gmail restriction applied
only to an initial post to the mailing list, not to replies to others'
posts. So it makes the thread confusing to follow in my client, and for
me at least it makes Empathy more than a convenience!
Terry
On Sun, 4 Jul 2021 00:21:46 +1000, you wrote:
I received your previous email "From: Terry terrypingm@gmail.com"
As previously explained gmail does not send emails from you to you.
Please do not report anything further re Empathy.
It is no longer supported. It is available for people to use as a
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sun, 4 Jul 2021 00:11
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: New and a question
I posted a reply at 11:14 and it promptly appeared in Empathy. (Actually
an hour before, according to the time stamp!) But nearly five hours
later I've still have not received it in my mail (nor another reply
posted at 11:37).
I'll try again. Here's a copy/paste from my Sent folder
Hardly 'critical' but the corruption of code in Empathy was serious
enough to get a warning mention IMO.
I see it occurs again in Revar's post. Empathy clearly doesn't like the
asterisk symbol. Sometimes treating it as a signal to switch on italics.
Who knows what other symbols are wrongly handled?
Original:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
Empathy corruption:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
So using its impressively large archive to search and use helpful code
from years before I became a subscriber is no longer sensible.
Terry
On Sat, 3 Jul 2021 11:24:40 +1000, you wrote:
Terry,
The Mailing-list Archive is not a Forum, I presume you are referring
To save confusion, call it Empathy. (THE Forum is not dead yet, it's
I did mention posting via Empathy had limitations. Gmail via web is
(with your previously mentioned considerations).
Note that the format of the Empathy post/email is actually stored
it is just badly displayed.
But as I've said, things are not likely to get fixed in a hurry,
so for now it is probably not worth noting such things, unless they
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sat, 3 Jul 2021 05:36
To: OpenSCAD general discussion
Cc: Terry (GMail)
Subject: [OpenSCAD] Re: New and a question
It's odd that my post is accessible in the forum but I haven't yet
received it as an email. Anyway, in the forum somehow the pasted code
has been corrupted (as you see from the accompanying screenshot.
Hopefully the email will be correct.
I use the gmail web client and I see my own posts inserted into the thread.
If I start a new thread it will just be in my sent folder but when there
are replies it becomes a single thread in my inbox. I don't think it comes
from the mailing list.
So it looks to me like your email client isn't totally compatible with
gmail.
On Sat, 3 Jul 2021 at 15:49, Terry <terrypingm@gmail.com> wrote:
> OK, my misunderstanding. I thought that (daft) Gmail restriction applied
> only to an initial post to the mailing list, not to replies to others'
> posts. So it makes the thread confusing to follow in my client, and for
> me at least it makes Empathy more than a convenience!
>
> Terry
>
>
> On Sun, 4 Jul 2021 00:21:46 +1000, you wrote:
>
> >I received your previous email "From: Terry <terrypingm@gmail.com>"
> >As previously explained gmail does not send emails from you to you.
> >
> >Please do not report anything further re Empathy.
> >It is no longer supported. It is available for people to use as a
> convenience.
> >
> >
> >> -----Original Message-----
> >> From: Terry [mailto:terrypingm@gmail.com]
> >> Sent: Sun, 4 Jul 2021 00:11
> >> To: OpenSCAD general discussion
> >> Subject: [OpenSCAD] Re: New and a question
> >>
> >> I posted a reply at 11:14 and it promptly appeared in Empathy. (Actually
> >> an hour before, according to the time stamp!) But nearly five hours
> >> later I've still have not received it in my mail (nor another reply
> >> posted at 11:37).
> >>
> >> I'll try again. Here's a copy/paste from my Sent folder
> >> -------------------------------------------------------
> >>
> >> Hardly 'critical' but the corruption of code in Empathy was serious
> >> enough to get a warning mention IMO.
> >>
> >> I see it occurs again in Revar's post. Empathy clearly doesn't like the
> >> asterisk symbol. Sometimes treating it as a signal to switch on italics.
> >> Who knows what other symbols are wrongly handled?
> >>
> >> Original:
> >> let(ang=a+b*small_ang)
> >> r*[cos(ang), sin(ang)]
> >>
> >> Empathy corruption:
> >> let(ang=a+bsmall_ang)
> >> r[cos(ang), sin(ang)]
> >>
> >> So using its impressively large archive to search and use helpful code
> >> from years before I became a subscriber is no longer sensible.
> >>
> >> Terry
> >> ====================
> >>
> >> On Sat, 3 Jul 2021 11:24:40 +1000, you wrote:
> >>
> >> >Terry,
> >> >
> >> >The Mailing-list Archive is not a Forum, I presume you are referring
> to it.
> >> >To save confusion, call it Empathy. (THE Forum is not dead yet, it's
> Schrodinger)
> >> >
> >> >I did mention posting via Empathy had limitations. Gmail via web is
> probably your better
> >> option
> >> >(with your previously mentioned considerations).
> >> >
> >> >Note that the format of the Empathy post/email is actually stored
> correctly for
> >> posterity,
> >> >it is just badly displayed.
> >> >
> >> >But as I've said, things are not likely to get fixed in a hurry,
> >> >so for now it is probably not worth noting such things, unless they
> are critical.
> >> >
> >> >Michael
> >> >
> >> >> -----Original Message-----
> >> >> From: Terry [mailto:terrypingm@gmail.com]
> >> >> Sent: Sat, 3 Jul 2021 05:36
> >> >> To: OpenSCAD general discussion
> >> >> Cc: Terry (GMail)
> >> >> Subject: [OpenSCAD] Re: New and a question
> >> >>
> >> >> It's odd that my post is accessible in the forum but I haven't yet
> >> >> received it as an email. Anyway, in the forum somehow the pasted code
> >> >> has been corrupted (as you see from the accompanying screenshot.
> >> >> Hopefully the email will be correct.
> >> _______________________________________________
> >> OpenSCAD mailing list
> >> To unsubscribe send an email to discuss-leave@lists.openscad.org
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
T
Terry
Sat, Jul 3, 2021 4:41 PM
Michael,
Do you (anyone) also have insights as to what might be causing the
following:
-
Replies I see from others have subjects prefixed (automatically I
assume) with '[OpenSCAD]'. But the few I see from me start with 'Re:'
And subsequently this becomes, for example, 'Re: [OpenSCAD] Re: New and
a question'.
-
Why is the Author of my last reply shown in my client as 'To:
OpenSCAD general discussion' ?
-
I can send emails to myself successfully. Here's the full header of
an example, for possible clues.
Return-Path: terrypingm@gmail.com
Received: from Terry-2016.home ([5.80.203.36])
by smtp.gmail.com with ESMTPSA id
f62sm6743541wmf.22.2021.07.03.09.36.18
for terrypingm@gmail.com
(version=TLS1 cipher=ECDHE-ECDSA-AES128-SHA bits=128/128);
Sat, 03 Jul 2021 09:36:18 -0700 (PDT)
From: Terry terrypingm@gmail.com
To: terrypingm@gmail.com
Subject: Test from gmail to gmail with Agent
Date: Sat, 03 Jul 2021 17:36:18 +0100
Message-ID: uf41eghqdp79d68kfmgpf0l93iqfh7hqmo@4ax.com
X-Mailer: Forte Agent 4.2/32.1118
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Agent-Received: from Gmail (POP) (pop.gmail.com); Sat, 03 Jul 2021
17:36:53 +0100
X-Agent-Junk-Probability: 0
Terry
====================
On Sun, 4 Jul 2021 00:21:46 +1000, you wrote:
I received your previous email "From: Terry terrypingm@gmail.com"
As previously explained gmail does not send emails from you to you.
Please do not report anything further re Empathy.
It is no longer supported. It is available for people to use as a convenience.
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sun, 4 Jul 2021 00:11
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: New and a question
I posted a reply at 11:14 and it promptly appeared in Empathy. (Actually
an hour before, according to the time stamp!) But nearly five hours
later I've still have not received it in my mail (nor another reply
posted at 11:37).
I'll try again. Here's a copy/paste from my Sent folder
Hardly 'critical' but the corruption of code in Empathy was serious
enough to get a warning mention IMO.
I see it occurs again in Revar's post. Empathy clearly doesn't like the
asterisk symbol. Sometimes treating it as a signal to switch on italics.
Who knows what other symbols are wrongly handled?
Original:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
Empathy corruption:
let(ang=a+bsmall_ang)
r[cos(ang), sin(ang)]
So using its impressively large archive to search and use helpful code
from years before I became a subscriber is no longer sensible.
Terry
On Sat, 3 Jul 2021 11:24:40 +1000, you wrote:
Terry,
The Mailing-list Archive is not a Forum, I presume you are referring to it.
To save confusion, call it Empathy. (THE Forum is not dead yet, it's Schrodinger)
I did mention posting via Empathy had limitations. Gmail via web is probably your better
option
(with your previously mentioned considerations).
Note that the format of the Empathy post/email is actually stored correctly for
posterity,
it is just badly displayed.
But as I've said, things are not likely to get fixed in a hurry,
so for now it is probably not worth noting such things, unless they are critical.
Michael
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sat, 3 Jul 2021 05:36
To: OpenSCAD general discussion
Cc: Terry (GMail)
Subject: [OpenSCAD] Re: New and a question
It's odd that my post is accessible in the forum but I haven't yet
received it as an email. Anyway, in the forum somehow the pasted code
has been corrupted (as you see from the accompanying screenshot.
Hopefully the email will be correct.
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
Michael,
Do you (anyone) also have insights as to what might be causing the
following:
1. Replies I see from others have subjects prefixed (automatically I
assume) with '[OpenSCAD]'. But the few I see from me start with 'Re:'
And subsequently this becomes, for example, 'Re: [OpenSCAD] Re: New and
a question'.
2. Why is the Author of my last reply shown in my client as 'To:
OpenSCAD general discussion' ?
3. I can send emails to myself successfully. Here's the full header of
an example, for possible clues.
Return-Path: <terrypingm@gmail.com>
Received: from Terry-2016.home ([5.80.203.36])
by smtp.gmail.com with ESMTPSA id
f62sm6743541wmf.22.2021.07.03.09.36.18
for <terrypingm@gmail.com>
(version=TLS1 cipher=ECDHE-ECDSA-AES128-SHA bits=128/128);
Sat, 03 Jul 2021 09:36:18 -0700 (PDT)
From: Terry <terrypingm@gmail.com>
To: terrypingm@gmail.com
Subject: Test from gmail to gmail with Agent
Date: Sat, 03 Jul 2021 17:36:18 +0100
Message-ID: <uf41eghqdp79d68kfmgpf0l93iqfh7hqmo@4ax.com>
X-Mailer: Forte Agent 4.2/32.1118
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Agent-Received: from Gmail (POP) (pop.gmail.com); Sat, 03 Jul 2021
17:36:53 +0100
X-Agent-Junk-Probability: 0
Terry
====================
On Sun, 4 Jul 2021 00:21:46 +1000, you wrote:
>I received your previous email "From: Terry <terrypingm@gmail.com>"
>As previously explained gmail does not send emails from you to you.
>
>Please do not report anything further re Empathy.
>It is no longer supported. It is available for people to use as a convenience.
>
>
>> -----Original Message-----
>> From: Terry [mailto:terrypingm@gmail.com]
>> Sent: Sun, 4 Jul 2021 00:11
>> To: OpenSCAD general discussion
>> Subject: [OpenSCAD] Re: New and a question
>>
>> I posted a reply at 11:14 and it promptly appeared in Empathy. (Actually
>> an hour before, according to the time stamp!) But nearly five hours
>> later I've still have not received it in my mail (nor another reply
>> posted at 11:37).
>>
>> I'll try again. Here's a copy/paste from my Sent folder
>> -------------------------------------------------------
>>
>> Hardly 'critical' but the corruption of code in Empathy was serious
>> enough to get a warning mention IMO.
>>
>> I see it occurs again in Revar's post. Empathy clearly doesn't like the
>> asterisk symbol. Sometimes treating it as a signal to switch on italics.
>> Who knows what other symbols are wrongly handled?
>>
>> Original:
>> let(ang=a+b*small_ang)
>> r*[cos(ang), sin(ang)]
>>
>> Empathy corruption:
>> let(ang=a+bsmall_ang)
>> r[cos(ang), sin(ang)]
>>
>> So using its impressively large archive to search and use helpful code
>> from years before I became a subscriber is no longer sensible.
>>
>> Terry
>> ====================
>>
>> On Sat, 3 Jul 2021 11:24:40 +1000, you wrote:
>>
>> >Terry,
>> >
>> >The Mailing-list Archive is not a Forum, I presume you are referring to it.
>> >To save confusion, call it Empathy. (THE Forum is not dead yet, it's Schrodinger)
>> >
>> >I did mention posting via Empathy had limitations. Gmail via web is probably your better
>> option
>> >(with your previously mentioned considerations).
>> >
>> >Note that the format of the Empathy post/email is actually stored correctly for
>> posterity,
>> >it is just badly displayed.
>> >
>> >But as I've said, things are not likely to get fixed in a hurry,
>> >so for now it is probably not worth noting such things, unless they are critical.
>> >
>> >Michael
>> >
>> >> -----Original Message-----
>> >> From: Terry [mailto:terrypingm@gmail.com]
>> >> Sent: Sat, 3 Jul 2021 05:36
>> >> To: OpenSCAD general discussion
>> >> Cc: Terry (GMail)
>> >> Subject: [OpenSCAD] Re: New and a question
>> >>
>> >> It's odd that my post is accessible in the forum but I haven't yet
>> >> received it as an email. Anyway, in the forum somehow the pasted code
>> >> has been corrupted (as you see from the accompanying screenshot.
>> >> Hopefully the email will be correct.
>> _______________________________________________
>> OpenSCAD mailing list
>> To unsubscribe send an email to discuss-leave@lists.openscad.org
T
Terry
Sat, Jul 3, 2021 4:54 PM
nop head,
Very likely. Perhaps because no version of Agent supports IMAP. See also
my reply to Michael. Particularly my confirmation that (as I'd expect) I
can send myself emails to myself with my gmail address as both To and
From. Yet that seems to be contradicted by the behaviour I see with the
mailing list.
Yet hey, as must be obvious, email in general is largely a black art to
me. But I've only encountered so many puzzling issues since subscribing!
(I'll make sure I receive this by a BCC to myself. Tedious...)
Terry
====================
On Sat, 3 Jul 2021 16:09:10 +0100, you wrote:
I use the gmail web client and I see my own posts inserted into the thread.
If I start a new thread it will just be in my sent folder but when there
are replies it becomes a single thread in my inbox. I don't think it comes
from the mailing list.
So it looks to me like your email client isn't totally compatible with
gmail.
nop head,
Very likely. Perhaps because no version of Agent supports IMAP. See also
my reply to Michael. Particularly my confirmation that (as I'd expect) I
can send myself emails to myself with my gmail address as both To and
From. Yet that seems to be contradicted by the behaviour I see with the
mailing list.
Yet hey, as must be obvious, email in general is largely a black art to
me. But I've only encountered so many puzzling issues since subscribing!
(I'll make sure I receive this by a BCC to myself. Tedious...)
Terry
====================
On Sat, 3 Jul 2021 16:09:10 +0100, you wrote:
>I use the gmail web client and I see my own posts inserted into the thread.
>If I start a new thread it will just be in my sent folder but when there
>are replies it becomes a single thread in my inbox. I don't think it comes
>from the mailing list.
>
>So it looks to me like your email client isn't totally compatible with
>gmail.
>
RW
Ray West
Sat, Jul 3, 2021 5:23 PM
Is it not possible for folk to start a new subject for the fun that they
seem to have with email clients, instead of cluttering up other threads?
Is it not possible for folk to start a new subject for the fun that they
seem to have with email clients, instead of cluttering up other threads?
NH
nop head
Sat, Jul 3, 2021 7:12 PM
Yes I can send emails to myself but the mailing list doesn't send my own
emails back to me. Gmail has a record of what I sent and puts it in the
thread in between the emails from the mailing list.
On Sat, 3 Jul 2021 at 17:54, Terry terrypingm@gmail.com wrote:
nop head,
Very likely. Perhaps because no version of Agent supports IMAP. See also
my reply to Michael. Particularly my confirmation that (as I'd expect) I
can send myself emails to myself with my gmail address as both To and
From. Yet that seems to be contradicted by the behaviour I see with the
mailing list.
Yet hey, as must be obvious, email in general is largely a black art to
me. But I've only encountered so many puzzling issues since subscribing!
(I'll make sure I receive this by a BCC to myself. Tedious...)
Terry
====================
On Sat, 3 Jul 2021 16:09:10 +0100, you wrote:
I use the gmail web client and I see my own posts inserted into the
If I start a new thread it will just be in my sent folder but when there
are replies it becomes a single thread in my inbox. I don't think it comes
from the mailing list.
So it looks to me like your email client isn't totally compatible with
gmail.
Yes I can send emails to myself but the mailing list doesn't send my own
emails back to me. Gmail has a record of what I sent and puts it in the
thread in between the emails from the mailing list.
On Sat, 3 Jul 2021 at 17:54, Terry <terrypingm@gmail.com> wrote:
> nop head,
>
> Very likely. Perhaps because no version of Agent supports IMAP. See also
> my reply to Michael. Particularly my confirmation that (as I'd expect) I
> can send myself emails to myself with my gmail address as both To and
> From. Yet that seems to be contradicted by the behaviour I see with the
> mailing list.
>
> Yet hey, as must be obvious, email in general is largely a black art to
> me. But I've only encountered so many puzzling issues since subscribing!
>
> (I'll make sure I receive this by a BCC to myself. Tedious...)
>
> Terry
>
> ====================
>
> On Sat, 3 Jul 2021 16:09:10 +0100, you wrote:
>
> >I use the gmail web client and I see my own posts inserted into the
> thread.
> >If I start a new thread it will just be in my sent folder but when there
> >are replies it becomes a single thread in my inbox. I don't think it comes
> >from the mailing list.
> >
> >So it looks to me like your email client isn't totally compatible with
> >gmail.
> >
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
M
MichaelAtOz
Sun, Jul 4, 2021 1:16 AM
Ray, yeh, one off-thread comment & it spreads like weeds...
Terry,
The ONE person who developed "Empathy" (software), which is fairly new (=bugs),
and who had provided support, DIED.
Empathy has no support. It will not change anytime soon.
Don't report Empathy things, unless it is down or you can't logon.
IMAP has nothing to do with this.
gmail web client and I see my own posts inserted into the thread.
If I start a new thread it will just be in my sent folder but when there are replies it
becomes a single thread in my inbox. I don't think it comes from the mailing list.
Gmail does https://support.google.com/mail/answer/6588?hl=en it's own thing, it is not a
plain-old-email-forwarder. Try Gmail's All-mail.
When they say 'to save you time and prevent clutter', they mean save them megabucks.
Some.member's replies are not to you. Your replies are not to some.member.
Everything is to/from the Mailing-list.
Replies (usually - unless someone specifically does something else) come to you from the
Mailing-list.
Because when some.member of the List received an email, some.member gets it from the List.
It is configured so the Return-To path is to the List.
So some.member's reply, is to the List not to you (notionally to everyone),
the List then sends it to everyone, including you@gmail, you get it from the List.
The List is configured, by default, with:
Receive own postings: Do you want to receive a copy of every message you post to the list? YES
so it sends your own Gmail post to you@gmail, but see above.
- Replies I see from others have subjects prefixed
The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ', yours does whatever,
the Mailing-list cleans it up,
ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no 'Re:' for a new thread)
- Why is the Author of my last reply shown in my client as
'To: OpenSCAD general discussion' ?
'Author' is not an internet mail term. When you reply, you reply to the Mailing-list.
- I can send emails to myself successfully.
Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to Mailing-lists.
NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
THE FORUM is not operational for new emails ATM.
Empathy is not a Forum, it has limitations which will not get fixed.
Life sux. Sorry.
We are looking at options, including whether Nabble changes back or other options,
but for now it is what it is. Changes will not happen quickly.
Michael
-----Original Message-----
Sent: Sun, 4 Jul 2021 03:24
Subject: [OpenSCAD] problems that folk have with emails
Is it not possible for folk to start a new subject for the fun that they
seem to have with email clients, instead of cluttering up other threads?
Ray, yeh, one off-thread comment & it spreads like weeds...
Terry,
The ONE person who developed "Empathy" (software), which is fairly new (=bugs),
and who had provided support, DIED.
Empathy has no support. It will not change anytime soon.
Don't report Empathy things, unless it is down or you can't logon.
IMAP has nothing to do with this.
> gmail web client and I see my own posts inserted into the thread.
> If I start a new thread it will just be in my sent folder but when there are replies it
> becomes a single thread in my inbox. I don't think it comes from the mailing list.
Gmail does <https://support.google.com/mail/answer/6588?hl=en> it's own thing, it is not a
plain-old-email-forwarder. Try Gmail's All-mail.
When they say 'to save you time and prevent clutter', they mean save them megabucks.
Some.member's replies are not to you. Your replies are not to some.member.
Everything is to/from the Mailing-list.
Replies (usually - unless someone specifically does something else) come to you from the
Mailing-list.
Because when some.member of the List received an email, some.member gets it from the List.
It is configured so the Return-To path is to the List.
So some.member's reply, is to the List not to you (notionally to everyone),
the List then sends it to everyone, including you@gmail, you get it from the List.
The List is configured, by default, with:
Receive own postings: Do you want to receive a copy of every message you post to the list? YES
so it sends your own Gmail post to you@gmail, but see above.
> 1. Replies I see from others have subjects prefixed
The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ', yours does whatever,
the Mailing-list cleans it up,
ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no 'Re:' for a new thread)
> 2. Why is the Author of my last reply shown in my client as
> 'To: OpenSCAD general discussion' ?
'Author' is not an internet mail term. When you reply, you reply to the Mailing-list.
> 3. I can send emails to myself successfully.
Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to Mailing-lists.
NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
THE FORUM is not operational for new emails ATM.
Empathy is not a Forum, it has limitations which will not get fixed.
Life sux. Sorry.
We are looking at options, including whether Nabble changes back or other options,
but for now it is what it is. Changes will not happen quickly.
Michael
> -----Original Message-----
> From: Ray West [mailto:raywest@raywest.com]
> Sent: Sun, 4 Jul 2021 03:24
> To: discuss@lists.openscad.org
> Subject: [OpenSCAD] problems that folk have with emails
>
> Is it not possible for folk to start a new subject for the fun that they
> seem to have with email clients, instead of cluttering up other threads?
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
--
This email has been checked for viruses by AVG.
https://www.avg.com
M
MichaelAtOz
Sun, Jul 4, 2021 8:14 AM
The ONE person who developed "Empathy" (software), which is fairly new (=bugs),
and who had provided support, DIED.
Empathy is not a Forum, it has limitations which will not get fixed.
We inherited Empathy when we were forced to migrate from Mailman2 to Mailman3 in Mid March.
The provider was no longer supporting Mailman2. It was inevitable, but we were pushed with little
notice.
Mailman3 was not specifically supported by Nabble. It took some Nabble customisation to get it to
function.
At the time Nabble, the Forum host, was acting normally, although we had previous problems and knew
we
probably would want to migrate away from Nabble, it was very niche, and support was waning.
I tested Empathy at that time to see whether it could replace Nabble.
It had potential, but there were significant limitations, with improvements it may be better.
There was Git based issues support and the developer was responsive to change.
We did not need people to access Empathy, because the Nabble hosted Forum was THE email archive.
Then in Mid May the developer DIED, and it became obvious the company was mostly a one man band.
Dear EMWD Clients:
With great sadness we report the death of our founder and president Brian Carpenter. With this
tragedy comes questions regarding the future operations of EMWD. We want to assure you that we are
working on continuing the level of service to which you are accustomed. We are considering several
offers for the company and are hoping to have all issues resolved soon.
Thank you for your patience as we work through this transition.
On behalf of Barbara Carpenter and Brian's family, we thank you for your business.
--EMWD Customer Support
Then in early June Nabble posted on their Forum, without sending it to administrators:
The feature which allows users to post by email probably will be removed.
Then in mid June, without informing administrators, they chopped Mailing-list support, including
all customisation
implemented for Mailman3. Nabble no longer accepted emails from the Mailing-List, and Forum posts
were not sent to the List.
The Forum was effectively defunct.
We were not alone, all the screams from many Administrators, did not seem to matter.
I won't go into further details, but I sent my 'IMPORTANT!...'
https://lists.openscad.org/empathy/thread/EAAMMV6J6NW3WFRSWQ7MINOSBEYDQ6XH email. Which
included:
In the interim, I recommend you use the Mailing-list and do not post to the Forum.
Basically nobody will see your post unless they specifically go looking on the Forum.
If you are desperate to see messages via a Web page, use the Mailing-list Archive:
https://lists.openscad.org/empathy/list/discuss.lists.openscad.org
If you are also desperate to post new messages via a Web page you can also use the Archive,
but you will need to https://lists.openscad.org/register to create a password for the email address
that
you subscribed with, then you can logon to the Archive and post.
Note the editor there has limitations.
So today, we have a Mailing-list. We do not have a Forum (that gets updated).
The Empathy front-end to the Mailing-list archive, is not a Forum, it has bugs, is not ideal and
won't get fixed soon.
I don't recommend posting via Empathy, but if you make them vanilla, it sort of works, muchly.
We are considering the future, but it will not be screaming into resolution any time soon.
This is where we are at.
We will have to live within its limitations.
Your perseverance will be appreciated.
MichaelAtOz,
I used to say 'Forum Admin'
We appreciate all the feedback provided on future requirements, options and desires, we do not need
to repeat that exercise.
From: MichaelAtOz [mailto:oz.at.michael@gmail.com]
Sent: Sun, 4 Jul 2021 11:17
To: 'OpenSCAD general discussion'
Subject: [OpenSCAD] Re: problems that folk have with emails
Ray, yeh, one off-thread comment & it spreads like weeds...
Terry,
The ONE person who developed "Empathy" (software), which is fairly new (=bugs),
and who had provided support, DIED.
Empathy has no support. It will not change anytime soon.
Don't report Empathy things, unless it is down or you can't logon.
IMAP has nothing to do with this.
gmail web client and I see my own posts inserted into the thread.
If I start a new thread it will just be in my sent folder but when there are replies it
becomes a single thread in my inbox. I don't think it comes from the mailing list.
Gmail does https://support.google.com/mail/answer/6588?hl=en it's own thing, it is not a
plain-old-email-forwarder. Try Gmail's All-mail.
When they say 'to save you time and prevent clutter', they mean save them megabucks.
Some.member's replies are not to you. Your replies are not to some.member.
Everything is to/from the Mailing-list.
Replies (usually - unless someone specifically does something else) come to you from the
Mailing-list.
Because when some.member of the List received an email, some.member gets it from the List.
It is configured so the Return-To path is to the List.
So some.member's reply, is to the List not to you (notionally to everyone),
the List then sends it to everyone, including you@gmail, you get it from the List.
The List is configured, by default, with:
Receive own postings: Do you want to receive a copy of every message you post to the list? YES
so it sends your own Gmail post to you@gmail, but see above.
- Replies I see from others have subjects prefixed
The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ', yours does whatever,
the Mailing-list cleans it up,
ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no 'Re:' for a new thread)
- Why is the Author of my last reply shown in my client as
'To: OpenSCAD general discussion' ?
'Author' is not an internet mail term. When you reply, you reply to the Mailing-list.
- I can send emails to myself successfully.
Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to Mailing-lists.
NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
THE FORUM is not operational for new emails ATM.
Empathy is not a Forum, it has limitations which will not get fixed.
Life sux. Sorry.
We are looking at options, including whether Nabble changes back or other options,
but for now it is what it is. Changes will not happen quickly.
Michael
-----Original Message-----
Sent: Sun, 4 Jul 2021 03:24
Subject: [OpenSCAD] problems that folk have with emails
Is it not possible for folk to start a new subject for the fun that they
seem to have with email clients, instead of cluttering up other threads?
<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_con
tent=emailclient>
Virus-free.
<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_con
tent=emailclient> www.avg.com
--
This email has been checked for viruses by AVG.
https://www.avg.com
Note for everyone:
> The ONE person who developed "Empathy" (software), which is fairly new (=bugs),
> and who had provided support, DIED.
&
> Empathy is not a Forum, it has limitations which will not get fixed.
We inherited Empathy when we were forced to migrate from Mailman2 to Mailman3 in Mid March.
The provider was no longer supporting Mailman2. It was inevitable, but we were pushed with little
notice.
Mailman3 was not specifically supported by Nabble. It took some Nabble customisation to get it to
function.
At the time Nabble, the Forum host, was acting normally, although we had previous problems and knew
we
probably would want to migrate away from Nabble, it was very niche, and support was waning.
I tested Empathy at that time to see whether it could replace Nabble.
It had potential, but there were significant limitations, with improvements it may be better.
There was Git based issues support and the developer was responsive to change.
We did not need people to access Empathy, because the Nabble hosted Forum was THE email archive.
Then in Mid May the developer DIED, and it became obvious the company was mostly a one man band.
Dear EMWD Clients:
With great sadness we report the death of our founder and president Brian Carpenter. With this
tragedy comes questions regarding the future operations of EMWD. We want to assure you that we are
working on continuing the level of service to which you are accustomed. We are considering several
offers for the company and are hoping to have all issues resolved soon.
Thank you for your patience as we work through this transition.
On behalf of Barbara Carpenter and Brian's family, we thank you for your business.
--EMWD Customer Support
Then in early June Nabble posted on their Forum, without sending it to administrators:
The feature which allows users to post by email probably will be removed.
Then in mid June, without informing administrators, they chopped Mailing-list support, including
all customisation
implemented for Mailman3. Nabble no longer accepted emails from the Mailing-List, and Forum posts
were not sent to the List.
The Forum was effectively defunct.
We were not alone, all the screams from many Administrators, did not seem to matter.
I won't go into further details, but I sent my 'IMPORTANT!...'
<https://lists.openscad.org/empathy/thread/EAAMMV6J6NW3WFRSWQ7MINOSBEYDQ6XH> email. Which
included:
In the interim, I recommend you use the Mailing-list and do not post to the Forum.
Basically nobody will see your post unless they specifically go looking on the Forum.
If you are desperate to see messages via a Web page, use the Mailing-list Archive:
https://lists.openscad.org/empathy/list/discuss.lists.openscad.org
If you are also desperate to post new messages via a Web page you can also use the Archive,
but you will need to https://lists.openscad.org/register to create a password for the email address
that
you subscribed with, then you can logon to the Archive and post.
Note the editor there has limitations.
So today, we have a Mailing-list. We do not have a Forum (that gets updated).
The Empathy front-end to the Mailing-list archive, is not a Forum, it has bugs, is not ideal and
won't get fixed soon.
I don't recommend posting via Empathy, but if you make them vanilla, it sort of works, muchly.
We are considering the future, but it will not be screaming into resolution any time soon.
This is where we are at.
We will have to live within its limitations.
Your perseverance will be appreciated.
MichaelAtOz,
I used to say 'Forum Admin'
We appreciate all the feedback provided on future requirements, options and desires, we do not need
to repeat that exercise.
_____
From: MichaelAtOz [mailto:oz.at.michael@gmail.com]
Sent: Sun, 4 Jul 2021 11:17
To: 'OpenSCAD general discussion'
Subject: [OpenSCAD] Re: problems that folk have with emails
Ray, yeh, one off-thread comment & it spreads like weeds...
Terry,
The ONE person who developed "Empathy" (software), which is fairly new (=bugs),
and who had provided support, DIED.
Empathy has no support. It will not change anytime soon.
Don't report Empathy things, unless it is down or you can't logon.
IMAP has nothing to do with this.
> gmail web client and I see my own posts inserted into the thread.
> If I start a new thread it will just be in my sent folder but when there are replies it
> becomes a single thread in my inbox. I don't think it comes from the mailing list.
Gmail does <https://support.google.com/mail/answer/6588?hl=en> it's own thing, it is not a
plain-old-email-forwarder. Try Gmail's All-mail.
When they say 'to save you time and prevent clutter', they mean save them megabucks.
Some.member's replies are not to you. Your replies are not to some.member.
Everything is to/from the Mailing-list.
Replies (usually - unless someone specifically does something else) come to you from the
Mailing-list.
Because when some.member of the List received an email, some.member gets it from the List.
It is configured so the Return-To path is to the List.
So some.member's reply, is to the List not to you (notionally to everyone),
the List then sends it to everyone, including you@gmail, you get it from the List.
The List is configured, by default, with:
Receive own postings: Do you want to receive a copy of every message you post to the list? YES
so it sends your own Gmail post to you@gmail, but see above.
> 1. Replies I see from others have subjects prefixed
The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ', yours does whatever,
the Mailing-list cleans it up,
ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no 'Re:' for a new thread)
> 2. Why is the Author of my last reply shown in my client as
> 'To: OpenSCAD general discussion' ?
'Author' is not an internet mail term. When you reply, you reply to the Mailing-list.
> 3. I can send emails to myself successfully.
Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to Mailing-lists.
NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
THE FORUM is not operational for new emails ATM.
Empathy is not a Forum, it has limitations which will not get fixed.
Life sux. Sorry.
We are looking at options, including whether Nabble changes back or other options,
but for now it is what it is. Changes will not happen quickly.
Michael
> -----Original Message-----
> From: Ray West [mailto:raywest@raywest.com]
> Sent: Sun, 4 Jul 2021 03:24
> To: discuss@lists.openscad.org
> Subject: [OpenSCAD] problems that folk have with emails
>
> Is it not possible for folk to start a new subject for the fun that they
> seem to have with email clients, instead of cluttering up other threads?
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_con
tent=emailclient>
Virus-free.
<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_con
tent=emailclient> www.avg.com
--
This email has been checked for viruses by AVG.
https://www.avg.com
GC
Gareth Chen
Sun, Jul 4, 2021 8:51 AM
FWIW I've noticed that emails from this list seem to be frequently picked
up by Gmail's spam filter, and it sometimes doesn't get to my inbox at all
until a couple of people have replied (nophead in particular seems to have
been deemed trustworthy).
On Sun, Jul 4, 2021 at 1:14 AM MichaelAtOz oz.at.michael@gmail.com wrote:
The ONE person who developed "Empathy" (software), which is fairly
and who had provided support, DIED.
Empathy is not a Forum, it has limitations which will not get fixed.
We inherited Empathy when we were forced to migrate from Mailman2 to
Mailman3 in Mid March.
The provider was no longer supporting Mailman2. It was inevitable, but we
were pushed with little notice.
Mailman3 was not specifically supported by Nabble. It took some Nabble
customisation to get it to function.
At the time Nabble, the Forum host, was acting normally, although we had
previous problems and knew we
probably would want to migrate away from Nabble, it was very niche, and
support was waning.
I tested Empathy at that time to see whether it could replace Nabble.
It had potential, but there were significant limitations, with
improvements it may be better.
There was Git based issues support and the developer was responsive to
change.
We did not need people to access Empathy, because the Nabble hosted Forum
was THE email archive.
Then in Mid May the developer DIED, and it became obvious the company was
mostly a one man band.
Dear EMWD Clients:
With great sadness we report the death of our founder and president Brian
Carpenter. With this tragedy comes questions regarding the future
operations of EMWD. We want to assure you that we are working on continuing
the level of service to which you are accustomed. We are considering
several offers for the company and are hoping to have all issues resolved
soon.
Thank you for your patience as we work through this transition.
On behalf of Barbara Carpenter and Brian's family, we thank you for your
business.
--EMWD Customer Support
Then in early June Nabble posted on their Forum, without sending it to
administrators:
The feature which allows users to post by email probably will be removed.
Then in mid June, without informing administrators, they chopped
Mailing-list support, including all customisation
implemented for Mailman3. Nabble no longer accepted emails from the
Mailing-List, and Forum posts were not sent to the List.
The Forum was effectively defunct.
We were not alone, all the screams from many Administrators, did not seem
to matter.
I won't go into further details, but I sent my 'IMPORTANT!...' email
https://lists.openscad.org/empathy/thread/EAAMMV6J6NW3WFRSWQ7MINOSBEYDQ6XH.
Which included:
In the interim, I recommend you use the Mailing-list and do not post to
the Forum.
Basically nobody will see your post unless they specifically go looking on
the Forum.
If you are desperate to see messages via a Web page, use the Mailing-list
Archive:
https://lists.openscad.org/empathy/list/discuss.lists.openscad.org
If you are also desperate to post new messages via a Web page you can also
use the Archive,
but you will need to https://lists.openscad.org/register to create a
password for the email address that
you subscribed with, then you can logon to the Archive and post.
Note the editor there has limitations.
So today, we have a Mailing-list. We do not have a Forum (that gets
updated).
The Empathy front-end to the Mailing-list archive, is not a Forum, it has
bugs, is not ideal and won't get fixed soon.
I don't recommend posting via Empathy, but if you make them vanilla, it
sort of works, muchly.
We are considering the future, but it will not be screaming into
resolution any time soon.
This is where we are at.
We will have to live within its limitations.
Your perseverance will be appreciated.
MichaelAtOz,
I used to say 'Forum Admin'
We appreciate all the feedback provided on future requirements, options
and desires, we do not need to repeat that exercise.
From: MichaelAtOz [mailto:oz.at.michael@gmail.com]
Sent: Sun, 4 Jul 2021 11:17
To: 'OpenSCAD general discussion'
Subject: [OpenSCAD] Re: problems that folk have with emails
Ray, yeh, one off-thread comment & it spreads like weeds...
Terry,
The ONE person who developed "Empathy" (software), which is fairly new
(=bugs),
and who had provided support, DIED.
Empathy has no support. It will not change anytime soon.
Don't report Empathy things, unless it is down or you can't logon.
IMAP has nothing to do with this.
gmail web client and I see my own posts inserted into the thread.
If I start a new thread it will just be in my sent folder but when there
becomes a single thread in my inbox. I don't think it comes from the
mailing list.
Gmail does it's own thing
https://support.google.com/mail/answer/6588?hl=en, it is not a
plain-old-email-forwarder. Try Gmail's All-mail.
When they say 'to save you time and prevent clutter', they mean save them
megabucks.
Some.member's replies are not to you. Your replies are not to
some.member.
Everything is to/from the Mailing-list.
Replies (usually - unless someone specifically does something else)
come to you from the Mailing-list.
Because when some.member of the List received an email, some.member
gets it from the List.
It is configured so the Return-To path is to the List.
So some.member's reply, is to the List not to you (notionally to
everyone),
the List then sends it to everyone, including you@gmail, you get it from
the List.
The List is configured, by default, with:
Receive own postings: Do you want to receive a copy of every message you
post to the list? YES
so it sends your own Gmail post to you@gmail, but see above.
- Replies I see from others have subjects prefixed
The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ',
yours does whatever,
the Mailing-list cleans it up,
ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no
'Re:' for a new thread)
- Why is the Author of my last reply shown in my client as
'To: OpenSCAD general discussion' ?
'Author' is not an internet mail term. When you reply, you reply to the
Mailing-list.
- I can send emails to myself successfully.
Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to
Mailing-lists.
NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
THE FORUM is not operational for new emails ATM.
Empathy is not a Forum, it has limitations which will not get fixed.
Life sux. Sorry.
We are looking at options, including whether Nabble changes back or other
options,
but for now it is what it is. Changes will not happen quickly.
Michael
-----Original Message-----
Sent: Sun, 4 Jul 2021 03:24
Subject: [OpenSCAD] problems that folk have with emails
Is it not possible for folk to start a new subject for the fun that they
seem to have with email clients, instead of cluttering up other threads?
FWIW I've noticed that emails from this list seem to be frequently picked
up by Gmail's spam filter, and it sometimes doesn't get to my inbox at all
until a couple of people have replied (nophead in particular seems to have
been deemed trustworthy).
On Sun, Jul 4, 2021 at 1:14 AM MichaelAtOz <oz.at.michael@gmail.com> wrote:
> Note for everyone:
>
>
>
> > The *ONE* person who developed "Empathy" (software), which is fairly
> new (=bugs),
>
> > and who had provided support, *DIED*.
>
> &
>
> > Empathy is not a Forum, it has limitations which will not get fixed.
>
>
>
> We inherited Empathy when we were forced to migrate from Mailman2 to
> Mailman3 in Mid March.
>
> The provider was no longer supporting Mailman2. It was inevitable, but we
> were pushed with little notice.
>
>
>
> Mailman3 was not specifically supported by Nabble. It took some Nabble
> customisation to get it to function.
>
>
>
> At the time Nabble, the Forum host, was acting normally, although we had
> previous problems and knew we
>
> probably would want to migrate away from Nabble, it was very niche, and
> support was waning.
>
>
>
> I tested Empathy at that time to see whether it could replace Nabble.
>
> It had potential, but there were significant limitations, with
> improvements it may be better.
>
> There was Git based issues support and the developer was responsive to
> change.
>
>
>
> We did not need people to access Empathy, because the Nabble hosted Forum
> was THE email archive.
>
>
>
> Then in Mid May the developer DIED, and it became obvious the company was
> mostly a one man band.
>
> Dear EMWD Clients:
>
> With great sadness we report the death of our founder and president Brian
> Carpenter. With this tragedy comes questions regarding the future
> operations of EMWD. We want to assure you that we are working on continuing
> the level of service to which you are accustomed. We are considering
> several offers for the company and are hoping to have all issues resolved
> soon.
>
> Thank you for your patience as we work through this transition.
>
> On behalf of Barbara Carpenter and Brian's family, we thank you for your
> business.
>
> --EMWD Customer Support
>
> Then in early June Nabble posted on their Forum, without sending it to
> administrators:
>
>
>
> The feature which allows users to post by email probably will be removed.
>
>
>
> Then in mid June, without informing administrators, they chopped
> Mailing-list support, including all customisation
>
> implemented for Mailman3. Nabble no longer accepted emails from the
> Mailing-List, and Forum posts were not sent to the List.
>
> The Forum was effectively defunct.
>
>
>
> We were not alone, all the screams from many Administrators, did not seem
> to matter.
>
>
>
> I won't go into further details, but I sent my 'IMPORTANT!...' email
> <https://lists.openscad.org/empathy/thread/EAAMMV6J6NW3WFRSWQ7MINOSBEYDQ6XH>.
> Which included:
>
>
>
> In the interim, I recommend you use the Mailing-list and do not post to
> the Forum.
>
> Basically nobody will see your post unless they specifically go looking on
> the Forum.
>
>
>
> If you are desperate to see messages via a Web page, use the Mailing-list
> Archive:
>
> https://lists.openscad.org/empathy/list/discuss.lists.openscad.org
>
>
>
> If you are also desperate to post new messages via a Web page you can also
> use the Archive,
>
> but you will need to https://lists.openscad.org/register to create a
> password for the email address that
>
> you subscribed with, then you can logon to the Archive and post.
>
> Note the editor there has limitations.
>
>
>
> So today, we have a Mailing-list. We do not have a Forum (that gets
> updated).
>
> The Empathy front-end to the Mailing-list archive, is not a Forum, it has
> bugs, is not ideal and won't get fixed soon.
>
> I don't recommend posting via Empathy, but if you make them vanilla, it
> sort of works, muchly.
>
>
>
> We are considering the future, but it will not be screaming into
> resolution any time soon.
>
>
>
> This is where we are at.
>
> We will have to live within its limitations.
>
> Your perseverance will be appreciated.
>
>
>
>
>
> MichaelAtOz,
>
> I used to say 'Forum Admin'
>
>
>
> We appreciate all the feedback provided on future requirements, options
> and desires, we do not need to repeat that exercise.
>
>
> ------------------------------
>
> *From:* MichaelAtOz [mailto:oz.at.michael@gmail.com]
> *Sent:* Sun, 4 Jul 2021 11:17
> *To:* 'OpenSCAD general discussion'
> *Subject:* [OpenSCAD] Re: problems that folk have with emails
>
>
>
> Ray, yeh, one off-thread comment & it spreads like weeds...
>
>
>
> Terry,
>
>
>
> The *ONE* person who developed "Empathy" (software), which is fairly new
> (=bugs),
>
> and who had provided support, *DIED*.
>
>
>
> Empathy has no support. It will not change anytime soon.
>
> Don't report Empathy things, unless it is down or you can't logon.
>
>
>
> IMAP has nothing to do with this.
>
>
>
> > gmail web client and I see my own posts inserted into the thread.
>
> > If I start a new thread it will just be in my sent folder but when there
> are replies it
>
> > becomes a single thread in my inbox. I don't think it comes from the
> mailing list.
>
>
>
> Gmail does it's own thing
> <https://support.google.com/mail/answer/6588?hl=en>, it is not a
> plain-old-email-forwarder. Try Gmail's All-mail.
>
> When they say 'to save you time and prevent clutter', they mean save them
> megabucks.
>
>
>
> Some.member's replies are *not to you*. Your replies are *not to*
> some.member.
>
> Everything is *to/from* the Mailing-list.
>
>
>
> Replies (*usually - unless someone specifically does something else*)
> come *to you* *from the Mailing-list*.
>
> Because when some.member of the List *received an email*, some.member
> gets it *from the List*.
>
> It is configured so the Return-To path is *to the List*.
>
> So some.member's reply, is *to the List* *not to you (notionally to
> everyone)*,
>
> the List then sends it to everyone, including you@gmail, you get it *from
> the List*.
>
>
>
> The List is configured, by default, with:
>
> Receive own postings: Do you want to receive a copy of every message you
> post to the list? YES
>
> so it sends your own Gmail post to you@gmail, but see above.
>
>
>
>
>
> > 1. Replies I see from others have subjects prefixed
>
>
>
> The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ',
> yours does whatever,
>
> the Mailing-list cleans it up,
>
> ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no
> 'Re:' for a new thread)
>
>
>
> > 2. Why is the Author of my last reply shown in my client as
>
> > 'To: OpenSCAD general discussion' ?
>
>
>
> 'Author' is not an internet mail term. When you reply, you reply *to* the
> Mailing-list.
>
>
>
> > 3. I can send emails to myself successfully.
>
>
>
> Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN *POSTS* *to
> Mailing-lists*.
>
>
>
> NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
>
> THE FORUM is not operational for new emails ATM.
>
> Empathy is not a Forum, it has limitations which will not get fixed.
>
>
>
> Life sux. Sorry.
>
>
>
> We are looking at options, including whether Nabble changes back or other
> options,
>
> but for now it is what it is. Changes will not happen quickly.
>
>
>
>
>
> Michael
>
>
>
> > -----Original Message-----
>
> > From: Ray West [mailto:raywest@raywest.com]
>
> > Sent: Sun, 4 Jul 2021 03:24
>
> > To: discuss@lists.openscad.org
>
> > Subject: [OpenSCAD] problems that folk have with emails
>
> >
>
> > Is it not possible for folk to start a new subject for the fun that they
>
> > seem to have with email clients, instead of cluttering up other threads?
>
> > _______________________________________________
>
> > OpenSCAD mailing list
>
> > To unsubscribe send an email to discuss-leave@lists.openscad.org
>
>
>
>
> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
>
> Virus-free. www.avg.com
> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
>
>
> <#m_5676437580064471014_m_-217394248020370984_m_-9052645809223018282_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
D
disruptivesolutionsnl@gmail.com
Sun, Jul 4, 2021 9:27 AM
https://pasteboard.co/K9AE8AS.png
https://pasteboard.co/K9AEnGF.png
With letter:
https://pasteboard.co/K9AEEJK.png
a and b have tob e parameterized and c is the "extrude" going from say
larger a and b values to smaller?
I hope this clears more up from?
I now did it like:
[code]
poly_n = 8;
gripin_w = 32.0;
gripin_h = 28.0;
grip_ob = 19.0;
grip_lr = 16.0;
l_mid = 138.0;
l_back = 30.0;
r_factor = 1.25;
dikte = 2.0; //deelt door 2 in uiteindelijke model!
rotate([90,90,180])
{
translate([0,0,-1*(l_mid/2)])
rotate([180,0,0])
{
difference(){
baseHandle();
baseHandleCut();
}
}
}
module gripInHandle(wid,height){
hull(){
cube([grip_lr,gripin_w,l_back],center = true);
cube([gripin_h,grip_ob,l_back],center = true);
}
}
module gripOutHandle(wid,height){
hull(){
cube([grip_lr, gripin_w + dikte,l_back],center = true);
cube([gripin_h + dikte,grip_ob,l_back],center = true);
}
}
module baseHandle()
{
linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
twist=0)
projection() gripOutHandle();
}
module baseHandleCut()
{
linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
twist=0)
projection() gripInHandle();
}
[/code]
Ben
Van: Ray West raywest@raywest.com
Verzonden: zaterdag 3 juli 2021 12:09
Aan: discuss@lists.openscad.org
Onderwerp: [OpenSCAD] Re: New and a question
Sorry, not a clear enough description. Is it a simple or complex polygon, is
concave acceptable? How will you refer to the specific corners? How will you
ensure that all the angles are valid, or are you just changing one or two,
and hoping the rest will sort themselves out, and whatever the result is, it
doesn't matter?. Any 7 random x,y coordinates can generate an 8 sided
polygon. What have you tried? Is a Mk 1 eyeball good enough, or are you
looking for precision, involving doing some sums?
https://www.mathsisfun.com/geometry/octagon.html
On 02/07/2021 15:26, disruptivesolutionsnl@gmail.com
mailto:disruptivesolutionsnl@gmail.com wrote:
Hello,
I am new to his forum/mailing list, so thank you for having me!
I want to make an octagonal shape (8 sides) where I could change the angle
of each corner, so the lengths of the "lines" between them is not
equivalent. How could I do this?
I hope my question is clear enough without presenting an example picture.
With kind regards,
Ben
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
mailto:discuss-leave@lists.openscad.org
https://pasteboard.co/K9AE8AS.png
https://pasteboard.co/K9AEnGF.png
With letter:
https://pasteboard.co/K9AEEJK.png
a and b have tob e parameterized and c is the "extrude" going from say
larger a and b values to smaller?
I hope this clears more up from?
I now did it like:
[code]
poly_n = 8;
gripin_w = 32.0;
gripin_h = 28.0;
grip_ob = 19.0;
grip_lr = 16.0;
l_mid = 138.0;
l_back = 30.0;
r_factor = 1.25;
dikte = 2.0; //deelt door 2 in uiteindelijke model!
rotate([90,90,180])
{
translate([0,0,-1*(l_mid/2)])
rotate([180,0,0])
{
difference(){
baseHandle();
baseHandleCut();
}
}
}
module gripInHandle(wid,height){
hull(){
cube([grip_lr,gripin_w,l_back],center = true);
cube([gripin_h,grip_ob,l_back],center = true);
}
}
module gripOutHandle(wid,height){
hull(){
cube([grip_lr, gripin_w + dikte,l_back],center = true);
cube([gripin_h + dikte,grip_ob,l_back],center = true);
}
}
module baseHandle()
{
linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
twist=0)
projection() gripOutHandle();
}
module baseHandleCut()
{
linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
twist=0)
projection() gripInHandle();
}
[/code]
Ben
Van: Ray West <raywest@raywest.com>
Verzonden: zaterdag 3 juli 2021 12:09
Aan: discuss@lists.openscad.org
Onderwerp: [OpenSCAD] Re: New and a question
Sorry, not a clear enough description. Is it a simple or complex polygon, is
concave acceptable? How will you refer to the specific corners? How will you
ensure that all the angles are valid, or are you just changing one or two,
and hoping the rest will sort themselves out, and whatever the result is, it
doesn't matter?. Any 7 random x,y coordinates can generate an 8 sided
polygon. What have you tried? Is a Mk 1 eyeball good enough, or are you
looking for precision, involving doing some sums?
https://www.mathsisfun.com/geometry/octagon.html
On 02/07/2021 15:26, disruptivesolutionsnl@gmail.com
<mailto:disruptivesolutionsnl@gmail.com> wrote:
Hello,
I am new to his forum/mailing list, so thank you for having me!
I want to make an octagonal shape (8 sides) where I could change the angle
of each corner, so the lengths of the "lines" between them is not
equivalent. How could I do this?
I hope my question is clear enough without presenting an example picture.
With kind regards,
Ben
_______________________________________________
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
<mailto:discuss-leave@lists.openscad.org>
MA
Michael AtOz
Sun, Jul 4, 2021 9:27 AM
Thanks for the report.
I mentioned I have three addresses subscribed as Admin. Sometimes I get two
emails, and the third turns up an hour or more later, always the Gmail
address.
It is a small subset of posters though. I have yet to get a correlation to
a specific cause.
That will be THE Gmail algorithm at work.
On Sun, 4 Jul 2021 at 18:52, Gareth Chen garethenator@gmail.com wrote:
FWIW I've noticed that emails from this list seem to be frequently picked
up by Gmail's spam filter, and it sometimes doesn't get to my inbox at all
until a couple of people have replied (nophead in particular seems to have
been deemed trustworthy).
On Sun, Jul 4, 2021 at 1:14 AM MichaelAtOz oz.at.michael@gmail.com
wrote:
The ONE person who developed "Empathy" (software), which is fairly
and who had provided support, DIED.
Empathy is not a Forum, it has limitations which will not get fixed.
We inherited Empathy when we were forced to migrate from Mailman2 to
Mailman3 in Mid March.
The provider was no longer supporting Mailman2. It was inevitable, but we
were pushed with little notice.
Mailman3 was not specifically supported by Nabble. It took some Nabble
customisation to get it to function.
At the time Nabble, the Forum host, was acting normally, although we had
previous problems and knew we
probably would want to migrate away from Nabble, it was very niche, and
support was waning.
I tested Empathy at that time to see whether it could replace Nabble.
It had potential, but there were significant limitations, with
improvements it may be better.
There was Git based issues support and the developer was responsive to
change.
We did not need people to access Empathy, because the Nabble hosted Forum
was THE email archive.
Then in Mid May the developer DIED, and it became obvious the company was
mostly a one man band.
Dear EMWD Clients:
With great sadness we report the death of our founder and president Brian
Carpenter. With this tragedy comes questions regarding the future
operations of EMWD. We want to assure you that we are working on continuing
the level of service to which you are accustomed. We are considering
several offers for the company and are hoping to have all issues resolved
soon.
Thank you for your patience as we work through this transition.
On behalf of Barbara Carpenter and Brian's family, we thank you for your
business.
--EMWD Customer Support
Then in early June Nabble posted on their Forum, without sending it to
administrators:
The feature which allows users to post by email probably will be removed.
Then in mid June, without informing administrators, they chopped
Mailing-list support, including all customisation
implemented for Mailman3. Nabble no longer accepted emails from the
Mailing-List, and Forum posts were not sent to the List.
The Forum was effectively defunct.
We were not alone, all the screams from many Administrators, did not seem
to matter.
I won't go into further details, but I sent my 'IMPORTANT!...' email
https://lists.openscad.org/empathy/thread/EAAMMV6J6NW3WFRSWQ7MINOSBEYDQ6XH.
Which included:
In the interim, I recommend you use the Mailing-list and do not post to
the Forum.
Basically nobody will see your post unless they specifically go looking
on the Forum.
If you are desperate to see messages via a Web page, use the Mailing-list
Archive:
https://lists.openscad.org/empathy/list/discuss.lists.openscad.org
If you are also desperate to post new messages via a Web page you can
also use the Archive,
but you will need to https://lists.openscad.org/register to create a
password for the email address that
you subscribed with, then you can logon to the Archive and post.
Note the editor there has limitations.
So today, we have a Mailing-list. We do not have a Forum (that gets
updated).
The Empathy front-end to the Mailing-list archive, is not a Forum, it has
bugs, is not ideal and won't get fixed soon.
I don't recommend posting via Empathy, but if you make them vanilla, it
sort of works, muchly.
We are considering the future, but it will not be screaming into
resolution any time soon.
This is where we are at.
We will have to live within its limitations.
Your perseverance will be appreciated.
MichaelAtOz,
I used to say 'Forum Admin'
We appreciate all the feedback provided on future requirements, options
and desires, we do not need to repeat that exercise.
From: MichaelAtOz [mailto:oz.at.michael@gmail.com]
Sent: Sun, 4 Jul 2021 11:17
To: 'OpenSCAD general discussion'
Subject: [OpenSCAD] Re: problems that folk have with emails
Ray, yeh, one off-thread comment & it spreads like weeds...
Terry,
The ONE person who developed "Empathy" (software), which is fairly new
(=bugs),
and who had provided support, DIED.
Empathy has no support. It will not change anytime soon.
Don't report Empathy things, unless it is down or you can't logon.
IMAP has nothing to do with this.
gmail web client and I see my own posts inserted into the thread.
If I start a new thread it will just be in my sent folder but when
becomes a single thread in my inbox. I don't think it comes from the
mailing list.
Gmail does it's own thing
https://support.google.com/mail/answer/6588?hl=en, it is not a
plain-old-email-forwarder. Try Gmail's All-mail.
When they say 'to save you time and prevent clutter', they mean save them
megabucks.
Some.member's replies are not to you. Your replies are not to
some.member.
Everything is to/from the Mailing-list.
Replies (usually - unless someone specifically does something else)
come to you from the Mailing-list.
Because when some.member of the List received an email, some.member
gets it from the List.
It is configured so the Return-To path is to the List.
So some.member's reply, is to the List not to you (notionally to
everyone),
the List then sends it to everyone, including you@gmail, you get it from
the List.
The List is configured, by default, with:
Receive own postings: Do you want to receive a copy of every message you
post to the list? YES
so it sends your own Gmail post to you@gmail, but see above.
- Replies I see from others have subjects prefixed
The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ',
yours does whatever,
the Mailing-list cleans it up,
ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no
'Re:' for a new thread)
- Why is the Author of my last reply shown in my client as
'To: OpenSCAD general discussion' ?
'Author' is not an internet mail term. When you reply, you reply to
the Mailing-list.
- I can send emails to myself successfully.
Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to
Mailing-lists.
NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
THE FORUM is not operational for new emails ATM.
Empathy is not a Forum, it has limitations which will not get fixed.
Life sux. Sorry.
We are looking at options, including whether Nabble changes back or other
options,
but for now it is what it is. Changes will not happen quickly.
Michael
-----Original Message-----
Sent: Sun, 4 Jul 2021 03:24
Subject: [OpenSCAD] problems that folk have with emails
Is it not possible for folk to start a new subject for the fun that they
seem to have with email clients, instead of cluttering up other threads?
Thanks for the report.
I mentioned I have three addresses subscribed as Admin. Sometimes I get two
emails, and the third turns up an hour or more later, always the Gmail
address.
It is a small subset of posters though. I have yet to get a correlation to
a specific cause.
That will be THE Gmail algorithm at work.
On Sun, 4 Jul 2021 at 18:52, Gareth Chen <garethenator@gmail.com> wrote:
> FWIW I've noticed that emails from this list seem to be frequently picked
> up by Gmail's spam filter, and it sometimes doesn't get to my inbox at all
> until a couple of people have replied (nophead in particular seems to have
> been deemed trustworthy).
>
>
> On Sun, Jul 4, 2021 at 1:14 AM MichaelAtOz <oz.at.michael@gmail.com>
> wrote:
>
>> Note for everyone:
>>
>>
>>
>> > The *ONE* person who developed "Empathy" (software), which is fairly
>> new (=bugs),
>>
>> > and who had provided support, *DIED*.
>>
>> &
>>
>> > Empathy is not a Forum, it has limitations which will not get fixed.
>>
>>
>>
>> We inherited Empathy when we were forced to migrate from Mailman2 to
>> Mailman3 in Mid March.
>>
>> The provider was no longer supporting Mailman2. It was inevitable, but we
>> were pushed with little notice.
>>
>>
>>
>> Mailman3 was not specifically supported by Nabble. It took some Nabble
>> customisation to get it to function.
>>
>>
>>
>> At the time Nabble, the Forum host, was acting normally, although we had
>> previous problems and knew we
>>
>> probably would want to migrate away from Nabble, it was very niche, and
>> support was waning.
>>
>>
>>
>> I tested Empathy at that time to see whether it could replace Nabble.
>>
>> It had potential, but there were significant limitations, with
>> improvements it may be better.
>>
>> There was Git based issues support and the developer was responsive to
>> change.
>>
>>
>>
>> We did not need people to access Empathy, because the Nabble hosted Forum
>> was THE email archive.
>>
>>
>>
>> Then in Mid May the developer DIED, and it became obvious the company was
>> mostly a one man band.
>>
>> Dear EMWD Clients:
>>
>> With great sadness we report the death of our founder and president Brian
>> Carpenter. With this tragedy comes questions regarding the future
>> operations of EMWD. We want to assure you that we are working on continuing
>> the level of service to which you are accustomed. We are considering
>> several offers for the company and are hoping to have all issues resolved
>> soon.
>>
>> Thank you for your patience as we work through this transition.
>>
>> On behalf of Barbara Carpenter and Brian's family, we thank you for your
>> business.
>>
>> --EMWD Customer Support
>>
>> Then in early June Nabble posted on their Forum, without sending it to
>> administrators:
>>
>>
>>
>> The feature which allows users to post by email probably will be removed.
>>
>>
>>
>> Then in mid June, without informing administrators, they chopped
>> Mailing-list support, including all customisation
>>
>> implemented for Mailman3. Nabble no longer accepted emails from the
>> Mailing-List, and Forum posts were not sent to the List.
>>
>> The Forum was effectively defunct.
>>
>>
>>
>> We were not alone, all the screams from many Administrators, did not seem
>> to matter.
>>
>>
>>
>> I won't go into further details, but I sent my 'IMPORTANT!...' email
>> <https://lists.openscad.org/empathy/thread/EAAMMV6J6NW3WFRSWQ7MINOSBEYDQ6XH>.
>> Which included:
>>
>>
>>
>> In the interim, I recommend you use the Mailing-list and do not post to
>> the Forum.
>>
>> Basically nobody will see your post unless they specifically go looking
>> on the Forum.
>>
>>
>>
>> If you are desperate to see messages via a Web page, use the Mailing-list
>> Archive:
>>
>> https://lists.openscad.org/empathy/list/discuss.lists.openscad.org
>>
>>
>>
>> If you are also desperate to post new messages via a Web page you can
>> also use the Archive,
>>
>> but you will need to https://lists.openscad.org/register to create a
>> password for the email address that
>>
>> you subscribed with, then you can logon to the Archive and post.
>>
>> Note the editor there has limitations.
>>
>>
>>
>> So today, we have a Mailing-list. We do not have a Forum (that gets
>> updated).
>>
>> The Empathy front-end to the Mailing-list archive, is not a Forum, it has
>> bugs, is not ideal and won't get fixed soon.
>>
>> I don't recommend posting via Empathy, but if you make them vanilla, it
>> sort of works, muchly.
>>
>>
>>
>> We are considering the future, but it will not be screaming into
>> resolution any time soon.
>>
>>
>>
>> This is where we are at.
>>
>> We will have to live within its limitations.
>>
>> Your perseverance will be appreciated.
>>
>>
>>
>>
>>
>> MichaelAtOz,
>>
>> I used to say 'Forum Admin'
>>
>>
>>
>> We appreciate all the feedback provided on future requirements, options
>> and desires, we do not need to repeat that exercise.
>>
>>
>> ------------------------------
>>
>> *From:* MichaelAtOz [mailto:oz.at.michael@gmail.com]
>> *Sent:* Sun, 4 Jul 2021 11:17
>> *To:* 'OpenSCAD general discussion'
>> *Subject:* [OpenSCAD] Re: problems that folk have with emails
>>
>>
>>
>> Ray, yeh, one off-thread comment & it spreads like weeds...
>>
>>
>>
>> Terry,
>>
>>
>>
>> The *ONE* person who developed "Empathy" (software), which is fairly new
>> (=bugs),
>>
>> and who had provided support, *DIED*.
>>
>>
>>
>> Empathy has no support. It will not change anytime soon.
>>
>> Don't report Empathy things, unless it is down or you can't logon.
>>
>>
>>
>> IMAP has nothing to do with this.
>>
>>
>>
>> > gmail web client and I see my own posts inserted into the thread.
>>
>> > If I start a new thread it will just be in my sent folder but when
>> there are replies it
>>
>> > becomes a single thread in my inbox. I don't think it comes from the
>> mailing list.
>>
>>
>>
>> Gmail does it's own thing
>> <https://support.google.com/mail/answer/6588?hl=en>, it is not a
>> plain-old-email-forwarder. Try Gmail's All-mail.
>>
>> When they say 'to save you time and prevent clutter', they mean save them
>> megabucks.
>>
>>
>>
>> Some.member's replies are *not to you*. Your replies are *not to*
>> some.member.
>>
>> Everything is *to/from* the Mailing-list.
>>
>>
>>
>> Replies (*usually - unless someone specifically does something else*)
>> come *to you* *from the Mailing-list*.
>>
>> Because when some.member of the List *received an email*, some.member
>> gets it *from the List*.
>>
>> It is configured so the Return-To path is *to the List*.
>>
>> So some.member's reply, is *to the List* *not to you (notionally to
>> everyone)*,
>>
>> the List then sends it to everyone, including you@gmail, you get it *from
>> the List*.
>>
>>
>>
>> The List is configured, by default, with:
>>
>> Receive own postings: Do you want to receive a copy of every message you
>> post to the list? YES
>>
>> so it sends your own Gmail post to you@gmail, but see above.
>>
>>
>>
>>
>>
>> > 1. Replies I see from others have subjects prefixed
>>
>>
>>
>> The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ',
>> yours does whatever,
>>
>> the Mailing-list cleans it up,
>>
>> ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no
>> 'Re:' for a new thread)
>>
>>
>>
>> > 2. Why is the Author of my last reply shown in my client as
>>
>> > 'To: OpenSCAD general discussion' ?
>>
>>
>>
>> 'Author' is not an internet mail term. When you reply, you reply *to*
>> the Mailing-list.
>>
>>
>>
>> > 3. I can send emails to myself successfully.
>>
>>
>>
>> Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN *POSTS* *to
>> Mailing-lists*.
>>
>>
>>
>> NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
>>
>> THE FORUM is not operational for new emails ATM.
>>
>> Empathy is not a Forum, it has limitations which will not get fixed.
>>
>>
>>
>> Life sux. Sorry.
>>
>>
>>
>> We are looking at options, including whether Nabble changes back or other
>> options,
>>
>> but for now it is what it is. Changes will not happen quickly.
>>
>>
>>
>>
>>
>> Michael
>>
>>
>>
>> > -----Original Message-----
>>
>> > From: Ray West [mailto:raywest@raywest.com]
>>
>> > Sent: Sun, 4 Jul 2021 03:24
>>
>> > To: discuss@lists.openscad.org
>>
>> > Subject: [OpenSCAD] problems that folk have with emails
>>
>> >
>>
>> > Is it not possible for folk to start a new subject for the fun that they
>>
>> > seem to have with email clients, instead of cluttering up other threads?
>>
>> > _______________________________________________
>>
>> > OpenSCAD mailing list
>>
>> > To unsubscribe send an email to discuss-leave@lists.openscad.org
>>
>>
>>
>>
>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
>>
>> Virus-free. www.avg.com
>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
>>
>>
>> <#m_8992275414145430755_m_5676437580064471014_m_-217394248020370984_m_-9052645809223018282_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>> _______________________________________________
>> OpenSCAD mailing list
>> To unsubscribe send an email to discuss-leave@lists.openscad.org
>>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
RW
Rogier Wolff
Sun, Jul 4, 2021 11:07 AM
On Sun, Jul 04, 2021 at 07:27:29PM +1000, Michael AtOz wrote:
Thanks for the report.
I mentioned I have three addresses subscribed as Admin. Sometimes I get two
emails, and the third turns up an hour or more later, always the Gmail
address.
It is a small subset of posters though. I have yet to get a correlation to
a specific cause.
Could it be that they are greylisting based on sender address? Or
maybe they accept the Email, tag it as "fishy", and postpone
delivering it into your mailbox for a while, waiting if they end up
seeing lots more of these similar-in-content fishy mails, indicating a
spam run.
Roger.
FWIW I've noticed that emails from this list seem to be frequently picked
up by Gmail's spam filter, and it sometimes doesn't get to my inbox at all
until a couple of people have replied (nophead in particular seems to have
been deemed trustworthy).
On Sun, Jul 4, 2021 at 1:14 AM MichaelAtOz oz.at.michael@gmail.com
wrote:
The ONE person who developed "Empathy" (software), which is fairly
and who had provided support, DIED.
Empathy is not a Forum, it has limitations which will not get fixed.
We inherited Empathy when we were forced to migrate from Mailman2 to
Mailman3 in Mid March.
The provider was no longer supporting Mailman2. It was inevitable, but we
were pushed with little notice.
Mailman3 was not specifically supported by Nabble. It took some Nabble
customisation to get it to function.
At the time Nabble, the Forum host, was acting normally, although we had
previous problems and knew we
probably would want to migrate away from Nabble, it was very niche, and
support was waning.
I tested Empathy at that time to see whether it could replace Nabble.
It had potential, but there were significant limitations, with
improvements it may be better.
There was Git based issues support and the developer was responsive to
change.
We did not need people to access Empathy, because the Nabble hosted Forum
was THE email archive.
Then in Mid May the developer DIED, and it became obvious the company was
mostly a one man band.
Dear EMWD Clients:
With great sadness we report the death of our founder and president Brian
Carpenter. With this tragedy comes questions regarding the future
operations of EMWD. We want to assure you that we are working on continuing
the level of service to which you are accustomed. We are considering
several offers for the company and are hoping to have all issues resolved
soon.
Thank you for your patience as we work through this transition.
On behalf of Barbara Carpenter and Brian's family, we thank you for your
business.
--EMWD Customer Support
Then in early June Nabble posted on their Forum, without sending it to
administrators:
The feature which allows users to post by email probably will be removed.
Then in mid June, without informing administrators, they chopped
Mailing-list support, including all customisation
implemented for Mailman3. Nabble no longer accepted emails from the
Mailing-List, and Forum posts were not sent to the List.
The Forum was effectively defunct.
We were not alone, all the screams from many Administrators, did not seem
to matter.
I won't go into further details, but I sent my 'IMPORTANT!...' email
https://lists.openscad.org/empathy/thread/EAAMMV6J6NW3WFRSWQ7MINOSBEYDQ6XH.
Which included:
In the interim, I recommend you use the Mailing-list and do not post to
the Forum.
Basically nobody will see your post unless they specifically go looking
on the Forum.
If you are desperate to see messages via a Web page, use the Mailing-list
Archive:
https://lists.openscad.org/empathy/list/discuss.lists.openscad.org
If you are also desperate to post new messages via a Web page you can
also use the Archive,
but you will need to https://lists.openscad.org/register to create a
password for the email address that
you subscribed with, then you can logon to the Archive and post.
Note the editor there has limitations.
So today, we have a Mailing-list. We do not have a Forum (that gets
updated).
The Empathy front-end to the Mailing-list archive, is not a Forum, it has
bugs, is not ideal and won't get fixed soon.
I don't recommend posting via Empathy, but if you make them vanilla, it
sort of works, muchly.
We are considering the future, but it will not be screaming into
resolution any time soon.
This is where we are at.
We will have to live within its limitations.
Your perseverance will be appreciated.
MichaelAtOz,
I used to say 'Forum Admin'
We appreciate all the feedback provided on future requirements, options
and desires, we do not need to repeat that exercise.
From: MichaelAtOz [mailto:oz.at.michael@gmail.com]
Sent: Sun, 4 Jul 2021 11:17
To: 'OpenSCAD general discussion'
Subject: [OpenSCAD] Re: problems that folk have with emails
Ray, yeh, one off-thread comment & it spreads like weeds...
Terry,
The ONE person who developed "Empathy" (software), which is fairly new
(=bugs),
and who had provided support, DIED.
Empathy has no support. It will not change anytime soon.
Don't report Empathy things, unless it is down or you can't logon.
IMAP has nothing to do with this.
gmail web client and I see my own posts inserted into the thread.
If I start a new thread it will just be in my sent folder but when
becomes a single thread in my inbox. I don't think it comes from the
mailing list.
Gmail does it's own thing
https://support.google.com/mail/answer/6588?hl=en, it is not a
plain-old-email-forwarder. Try Gmail's All-mail.
When they say 'to save you time and prevent clutter', they mean save them
megabucks.
Some.member's replies are not to you. Your replies are not to
some.member.
Everything is to/from the Mailing-list.
Replies (usually - unless someone specifically does something else)
come to you from the Mailing-list.
Because when some.member of the List received an email, some.member
gets it from the List.
It is configured so the Return-To path is to the List.
So some.member's reply, is to the List not to you (notionally to
everyone),
the List then sends it to everyone, including you@gmail, you get it from
the List.
The List is configured, by default, with:
Receive own postings: Do you want to receive a copy of every message you
post to the list? YES
so it sends your own Gmail post to you@gmail, but see above.
- Replies I see from others have subjects prefixed
The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ',
yours does whatever,
the Mailing-list cleans it up,
ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no
'Re:' for a new thread)
- Why is the Author of my last reply shown in my client as
'To: OpenSCAD general discussion' ?
'Author' is not an internet mail term. When you reply, you reply to
the Mailing-list.
- I can send emails to myself successfully.
Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to
Mailing-lists.
NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
THE FORUM is not operational for new emails ATM.
Empathy is not a Forum, it has limitations which will not get fixed.
Life sux. Sorry.
We are looking at options, including whether Nabble changes back or other
options,
but for now it is what it is. Changes will not happen quickly.
Michael
-----Original Message-----
Sent: Sun, 4 Jul 2021 03:24
Subject: [OpenSCAD] problems that folk have with emails
Is it not possible for folk to start a new subject for the fun that they
seem to have with email clients, instead of cluttering up other threads?
--
** R.E.Wolff@BitWizard.nl ** https://www.BitWizard.nl/ ** +31-15-2049110 **
** Delftechpark 11 2628 XJ Delft, The Netherlands. KVK: 27239233 **
f equals m times a. When your f is steady, and your m is going down
your a is going up. -- Chris Hadfield about flying up the space shuttle.
On Sun, Jul 04, 2021 at 07:27:29PM +1000, Michael AtOz wrote:
> Thanks for the report.
> I mentioned I have three addresses subscribed as Admin. Sometimes I get two
> emails, and the third turns up an hour or more later, always the Gmail
> address.
> It is a small subset of posters though. I have yet to get a correlation to
> a specific cause.
Could it be that they are greylisting based on sender address? Or
maybe they accept the Email, tag it as "fishy", and postpone
delivering it into your mailbox for a while, waiting if they end up
seeing lots more of these similar-in-content fishy mails, indicating a
spam run.
Roger.
>
>
> On Sun, 4 Jul 2021 at 18:52, Gareth Chen <garethenator@gmail.com> wrote:
>
> > FWIW I've noticed that emails from this list seem to be frequently picked
> > up by Gmail's spam filter, and it sometimes doesn't get to my inbox at all
> > until a couple of people have replied (nophead in particular seems to have
> > been deemed trustworthy).
> >
> >
> > On Sun, Jul 4, 2021 at 1:14 AM MichaelAtOz <oz.at.michael@gmail.com>
> > wrote:
> >
> >> Note for everyone:
> >>
> >>
> >>
> >> > The *ONE* person who developed "Empathy" (software), which is fairly
> >> new (=bugs),
> >>
> >> > and who had provided support, *DIED*.
> >>
> >> &
> >>
> >> > Empathy is not a Forum, it has limitations which will not get fixed.
> >>
> >>
> >>
> >> We inherited Empathy when we were forced to migrate from Mailman2 to
> >> Mailman3 in Mid March.
> >>
> >> The provider was no longer supporting Mailman2. It was inevitable, but we
> >> were pushed with little notice.
> >>
> >>
> >>
> >> Mailman3 was not specifically supported by Nabble. It took some Nabble
> >> customisation to get it to function.
> >>
> >>
> >>
> >> At the time Nabble, the Forum host, was acting normally, although we had
> >> previous problems and knew we
> >>
> >> probably would want to migrate away from Nabble, it was very niche, and
> >> support was waning.
> >>
> >>
> >>
> >> I tested Empathy at that time to see whether it could replace Nabble.
> >>
> >> It had potential, but there were significant limitations, with
> >> improvements it may be better.
> >>
> >> There was Git based issues support and the developer was responsive to
> >> change.
> >>
> >>
> >>
> >> We did not need people to access Empathy, because the Nabble hosted Forum
> >> was THE email archive.
> >>
> >>
> >>
> >> Then in Mid May the developer DIED, and it became obvious the company was
> >> mostly a one man band.
> >>
> >> Dear EMWD Clients:
> >>
> >> With great sadness we report the death of our founder and president Brian
> >> Carpenter. With this tragedy comes questions regarding the future
> >> operations of EMWD. We want to assure you that we are working on continuing
> >> the level of service to which you are accustomed. We are considering
> >> several offers for the company and are hoping to have all issues resolved
> >> soon.
> >>
> >> Thank you for your patience as we work through this transition.
> >>
> >> On behalf of Barbara Carpenter and Brian's family, we thank you for your
> >> business.
> >>
> >> --EMWD Customer Support
> >>
> >> Then in early June Nabble posted on their Forum, without sending it to
> >> administrators:
> >>
> >>
> >>
> >> The feature which allows users to post by email probably will be removed.
> >>
> >>
> >>
> >> Then in mid June, without informing administrators, they chopped
> >> Mailing-list support, including all customisation
> >>
> >> implemented for Mailman3. Nabble no longer accepted emails from the
> >> Mailing-List, and Forum posts were not sent to the List.
> >>
> >> The Forum was effectively defunct.
> >>
> >>
> >>
> >> We were not alone, all the screams from many Administrators, did not seem
> >> to matter.
> >>
> >>
> >>
> >> I won't go into further details, but I sent my 'IMPORTANT!...' email
> >> <https://lists.openscad.org/empathy/thread/EAAMMV6J6NW3WFRSWQ7MINOSBEYDQ6XH>.
> >> Which included:
> >>
> >>
> >>
> >> In the interim, I recommend you use the Mailing-list and do not post to
> >> the Forum.
> >>
> >> Basically nobody will see your post unless they specifically go looking
> >> on the Forum.
> >>
> >>
> >>
> >> If you are desperate to see messages via a Web page, use the Mailing-list
> >> Archive:
> >>
> >> https://lists.openscad.org/empathy/list/discuss.lists.openscad.org
> >>
> >>
> >>
> >> If you are also desperate to post new messages via a Web page you can
> >> also use the Archive,
> >>
> >> but you will need to https://lists.openscad.org/register to create a
> >> password for the email address that
> >>
> >> you subscribed with, then you can logon to the Archive and post.
> >>
> >> Note the editor there has limitations.
> >>
> >>
> >>
> >> So today, we have a Mailing-list. We do not have a Forum (that gets
> >> updated).
> >>
> >> The Empathy front-end to the Mailing-list archive, is not a Forum, it has
> >> bugs, is not ideal and won't get fixed soon.
> >>
> >> I don't recommend posting via Empathy, but if you make them vanilla, it
> >> sort of works, muchly.
> >>
> >>
> >>
> >> We are considering the future, but it will not be screaming into
> >> resolution any time soon.
> >>
> >>
> >>
> >> This is where we are at.
> >>
> >> We will have to live within its limitations.
> >>
> >> Your perseverance will be appreciated.
> >>
> >>
> >>
> >>
> >>
> >> MichaelAtOz,
> >>
> >> I used to say 'Forum Admin'
> >>
> >>
> >>
> >> We appreciate all the feedback provided on future requirements, options
> >> and desires, we do not need to repeat that exercise.
> >>
> >>
> >> ------------------------------
> >>
> >> *From:* MichaelAtOz [mailto:oz.at.michael@gmail.com]
> >> *Sent:* Sun, 4 Jul 2021 11:17
> >> *To:* 'OpenSCAD general discussion'
> >> *Subject:* [OpenSCAD] Re: problems that folk have with emails
> >>
> >>
> >>
> >> Ray, yeh, one off-thread comment & it spreads like weeds...
> >>
> >>
> >>
> >> Terry,
> >>
> >>
> >>
> >> The *ONE* person who developed "Empathy" (software), which is fairly new
> >> (=bugs),
> >>
> >> and who had provided support, *DIED*.
> >>
> >>
> >>
> >> Empathy has no support. It will not change anytime soon.
> >>
> >> Don't report Empathy things, unless it is down or you can't logon.
> >>
> >>
> >>
> >> IMAP has nothing to do with this.
> >>
> >>
> >>
> >> > gmail web client and I see my own posts inserted into the thread.
> >>
> >> > If I start a new thread it will just be in my sent folder but when
> >> there are replies it
> >>
> >> > becomes a single thread in my inbox. I don't think it comes from the
> >> mailing list.
> >>
> >>
> >>
> >> Gmail does it's own thing
> >> <https://support.google.com/mail/answer/6588?hl=en>, it is not a
> >> plain-old-email-forwarder. Try Gmail's All-mail.
> >>
> >> When they say 'to save you time and prevent clutter', they mean save them
> >> megabucks.
> >>
> >>
> >>
> >> Some.member's replies are *not to you*. Your replies are *not to*
> >> some.member.
> >>
> >> Everything is *to/from* the Mailing-list.
> >>
> >>
> >>
> >> Replies (*usually - unless someone specifically does something else*)
> >> come *to you* *from the Mailing-list*.
> >>
> >> Because when some.member of the List *received an email*, some.member
> >> gets it *from the List*.
> >>
> >> It is configured so the Return-To path is *to the List*.
> >>
> >> So some.member's reply, is *to the List* *not to you (notionally to
> >> everyone)*,
> >>
> >> the List then sends it to everyone, including you@gmail, you get it *from
> >> the List*.
> >>
> >>
> >>
> >> The List is configured, by default, with:
> >>
> >> Receive own postings: Do you want to receive a copy of every message you
> >> post to the list? YES
> >>
> >> so it sends your own Gmail post to you@gmail, but see above.
> >>
> >>
> >>
> >>
> >>
> >> > 1. Replies I see from others have subjects prefixed
> >>
> >>
> >>
> >> The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ',
> >> yours does whatever,
> >>
> >> the Mailing-list cleans it up,
> >>
> >> ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no
> >> 'Re:' for a new thread)
> >>
> >>
> >>
> >> > 2. Why is the Author of my last reply shown in my client as
> >>
> >> > 'To: OpenSCAD general discussion' ?
> >>
> >>
> >>
> >> 'Author' is not an internet mail term. When you reply, you reply *to*
> >> the Mailing-list.
> >>
> >>
> >>
> >> > 3. I can send emails to myself successfully.
> >>
> >>
> >>
> >> Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN *POSTS* *to
> >> Mailing-lists*.
> >>
> >>
> >>
> >> NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
> >>
> >> THE FORUM is not operational for new emails ATM.
> >>
> >> Empathy is not a Forum, it has limitations which will not get fixed.
> >>
> >>
> >>
> >> Life sux. Sorry.
> >>
> >>
> >>
> >> We are looking at options, including whether Nabble changes back or other
> >> options,
> >>
> >> but for now it is what it is. Changes will not happen quickly.
> >>
> >>
> >>
> >>
> >>
> >> Michael
> >>
> >>
> >>
> >> > -----Original Message-----
> >>
> >> > From: Ray West [mailto:raywest@raywest.com]
> >>
> >> > Sent: Sun, 4 Jul 2021 03:24
> >>
> >> > To: discuss@lists.openscad.org
> >>
> >> > Subject: [OpenSCAD] problems that folk have with emails
> >>
> >> >
> >>
> >> > Is it not possible for folk to start a new subject for the fun that they
> >>
> >> > seem to have with email clients, instead of cluttering up other threads?
> >>
> >> > _______________________________________________
> >>
> >> > OpenSCAD mailing list
> >>
> >> > To unsubscribe send an email to discuss-leave@lists.openscad.org
> >>
> >>
> >>
> >>
> >> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
> >>
> >> Virus-free. www.avg.com
> >> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
> >>
> >>
> >> <#m_8992275414145430755_m_5676437580064471014_m_-217394248020370984_m_-9052645809223018282_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
> >> _______________________________________________
> >> OpenSCAD mailing list
> >> To unsubscribe send an email to discuss-leave@lists.openscad.org
> >>
> > _______________________________________________
> > OpenSCAD mailing list
> > To unsubscribe send an email to discuss-leave@lists.openscad.org
> >
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
--
** R.E.Wolff@BitWizard.nl ** https://www.BitWizard.nl/ ** +31-15-2049110 **
** Delftechpark 11 2628 XJ Delft, The Netherlands. KVK: 27239233 **
f equals m times a. When your f is steady, and your m is going down
your a is going up. -- Chris Hadfield about flying up the space shuttle.
NH
nop head
Sun, Jul 4, 2021 12:00 PM
Yes I just found two OpenSCAD emails in my spam folder. Previously it was
just a few people consistently but now it seems to be random since the
mailing list changed.
On Sun, 4 Jul 2021 at 12:07, Rogier Wolff R.E.Wolff@bitwizard.nl wrote:
On Sun, Jul 04, 2021 at 07:27:29PM +1000, Michael AtOz wrote:
Thanks for the report.
I mentioned I have three addresses subscribed as Admin. Sometimes I get
emails, and the third turns up an hour or more later, always the Gmail
address.
It is a small subset of posters though. I have yet to get a correlation
Could it be that they are greylisting based on sender address? Or
maybe they accept the Email, tag it as "fishy", and postpone
delivering it into your mailbox for a while, waiting if they end up
seeing lots more of these similar-in-content fishy mails, indicating a
spam run.
Roger.
FWIW I've noticed that emails from this list seem to be frequently
up by Gmail's spam filter, and it sometimes doesn't get to my inbox at
until a couple of people have replied (nophead in particular seems to
The ONE person who developed "Empathy" (software), which is fairly
and who had provided support, DIED.
Empathy is not a Forum, it has limitations which will not get fixed.
We inherited Empathy when we were forced to migrate from Mailman2 to
Mailman3 in Mid March.
The provider was no longer supporting Mailman2. It was inevitable,
were pushed with little notice.
Mailman3 was not specifically supported by Nabble. It took some Nabble
customisation to get it to function.
At the time Nabble, the Forum host, was acting normally, although we
previous problems and knew we
probably would want to migrate away from Nabble, it was very niche,
support was waning.
I tested Empathy at that time to see whether it could replace Nabble.
It had potential, but there were significant limitations, with
improvements it may be better.
There was Git based issues support and the developer was responsive to
change.
We did not need people to access Empathy, because the Nabble hosted
was THE email archive.
Then in Mid May the developer DIED, and it became obvious the company
mostly a one man band.
Dear EMWD Clients:
With great sadness we report the death of our founder and president
Carpenter. With this tragedy comes questions regarding the future
operations of EMWD. We want to assure you that we are working on
the level of service to which you are accustomed. We are considering
several offers for the company and are hoping to have all issues
soon.
Thank you for your patience as we work through this transition.
On behalf of Barbara Carpenter and Brian's family, we thank you for
business.
--EMWD Customer Support
Then in early June Nabble posted on their Forum, without sending it to
administrators:
The feature which allows users to post by email probably will be
Then in mid June, without informing administrators, they chopped
Mailing-list support, including all customisation
implemented for Mailman3. Nabble no longer accepted emails from the
Mailing-List, and Forum posts were not sent to the List.
The Forum was effectively defunct.
We were not alone, all the screams from many Administrators, did not
to matter.
I won't go into further details, but I sent my 'IMPORTANT!...' email
<
Which included:
In the interim, I recommend you use the Mailing-list and do not post
the Forum.
Basically nobody will see your post unless they specifically go
on the Forum.
If you are desperate to see messages via a Web page, use the
Archive:
https://lists.openscad.org/empathy/list/discuss.lists.openscad.org
If you are also desperate to post new messages via a Web page you can
also use the Archive,
but you will need to https://lists.openscad.org/register to create a
password for the email address that
you subscribed with, then you can logon to the Archive and post.
Note the editor there has limitations.
So today, we have a Mailing-list. We do not have a Forum (that gets
updated).
The Empathy front-end to the Mailing-list archive, is not a Forum, it
bugs, is not ideal and won't get fixed soon.
I don't recommend posting via Empathy, but if you make them vanilla,
sort of works, muchly.
We are considering the future, but it will not be screaming into
resolution any time soon.
This is where we are at.
We will have to live within its limitations.
Your perseverance will be appreciated.
MichaelAtOz,
I used to say 'Forum Admin'
We appreciate all the feedback provided on future requirements,
and desires, we do not need to repeat that exercise.
From: MichaelAtOz [mailto:oz.at.michael@gmail.com]
Sent: Sun, 4 Jul 2021 11:17
To: 'OpenSCAD general discussion'
Subject: [OpenSCAD] Re: problems that folk have with emails
Ray, yeh, one off-thread comment & it spreads like weeds...
Terry,
The ONE person who developed "Empathy" (software), which is fairly
(=bugs),
and who had provided support, DIED.
Empathy has no support. It will not change anytime soon.
Don't report Empathy things, unless it is down or you can't logon.
IMAP has nothing to do with this.
gmail web client and I see my own posts inserted into the thread.
If I start a new thread it will just be in my sent folder but when
becomes a single thread in my inbox. I don't think it comes from the
megabucks.
Some.member's replies are not to you. Your replies are not to
some.member.
Everything is to/from the Mailing-list.
Replies (usually - unless someone specifically does something else)
come to you from the Mailing-list.
Because when some.member of the List received an email, some.member
gets it from the List.
It is configured so the Return-To path is to the List.
So some.member's reply, is to the List not to you (notionally to
everyone),
the List then sends it to everyone, including you@gmail, you get it
the List*.
The List is configured, by default, with:
Receive own postings: Do you want to receive a copy of every message
post to the list? YES
so it sends your own Gmail post to you@gmail, but see above.
- Replies I see from others have subjects prefixed
The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE:
yours does whatever,
the Mailing-list cleans it up,
ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no
'Re:' for a new thread)
- Why is the Author of my last reply shown in my client as
'To: OpenSCAD general discussion' ?
'Author' is not an internet mail term. When you reply, you reply to
the Mailing-list.
- I can send emails to myself successfully.
Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to
Mailing-lists.
NO you cannot configure your PC Agent & IOS & Gmail to get what you
THE FORUM is not operational for new emails ATM.
Empathy is not a Forum, it has limitations which will not get fixed.
Life sux. Sorry.
We are looking at options, including whether Nabble changes back or
options,
but for now it is what it is. Changes will not happen quickly.
Michael
-----Original Message-----
Sent: Sun, 4 Jul 2021 03:24
Subject: [OpenSCAD] problems that folk have with emails
Is it not possible for folk to start a new subject for the fun that
seem to have with email clients, instead of cluttering up other
<#m_8992275414145430755_m_5676437580064471014_m_-217394248020370984_m_-9052645809223018282_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
Yes I just found two OpenSCAD emails in my spam folder. Previously it was
just a few people consistently but now it seems to be random since the
mailing list changed.
On Sun, 4 Jul 2021 at 12:07, Rogier Wolff <R.E.Wolff@bitwizard.nl> wrote:
> On Sun, Jul 04, 2021 at 07:27:29PM +1000, Michael AtOz wrote:
> > Thanks for the report.
> > I mentioned I have three addresses subscribed as Admin. Sometimes I get
> two
> > emails, and the third turns up an hour or more later, always the Gmail
> > address.
> > It is a small subset of posters though. I have yet to get a correlation
> to
> > a specific cause.
>
> Could it be that they are greylisting based on sender address? Or
> maybe they accept the Email, tag it as "fishy", and postpone
> delivering it into your mailbox for a while, waiting if they end up
> seeing lots more of these similar-in-content fishy mails, indicating a
> spam run.
>
> Roger.
>
>
> >
> >
> > On Sun, 4 Jul 2021 at 18:52, Gareth Chen <garethenator@gmail.com> wrote:
> >
> > > FWIW I've noticed that emails from this list seem to be frequently
> picked
> > > up by Gmail's spam filter, and it sometimes doesn't get to my inbox at
> all
> > > until a couple of people have replied (nophead in particular seems to
> have
> > > been deemed trustworthy).
> > >
> > >
> > > On Sun, Jul 4, 2021 at 1:14 AM MichaelAtOz <oz.at.michael@gmail.com>
> > > wrote:
> > >
> > >> Note for everyone:
> > >>
> > >>
> > >>
> > >> > The *ONE* person who developed "Empathy" (software), which is fairly
> > >> new (=bugs),
> > >>
> > >> > and who had provided support, *DIED*.
> > >>
> > >> &
> > >>
> > >> > Empathy is not a Forum, it has limitations which will not get fixed.
> > >>
> > >>
> > >>
> > >> We inherited Empathy when we were forced to migrate from Mailman2 to
> > >> Mailman3 in Mid March.
> > >>
> > >> The provider was no longer supporting Mailman2. It was inevitable,
> but we
> > >> were pushed with little notice.
> > >>
> > >>
> > >>
> > >> Mailman3 was not specifically supported by Nabble. It took some Nabble
> > >> customisation to get it to function.
> > >>
> > >>
> > >>
> > >> At the time Nabble, the Forum host, was acting normally, although we
> had
> > >> previous problems and knew we
> > >>
> > >> probably would want to migrate away from Nabble, it was very niche,
> and
> > >> support was waning.
> > >>
> > >>
> > >>
> > >> I tested Empathy at that time to see whether it could replace Nabble.
> > >>
> > >> It had potential, but there were significant limitations, with
> > >> improvements it may be better.
> > >>
> > >> There was Git based issues support and the developer was responsive to
> > >> change.
> > >>
> > >>
> > >>
> > >> We did not need people to access Empathy, because the Nabble hosted
> Forum
> > >> was THE email archive.
> > >>
> > >>
> > >>
> > >> Then in Mid May the developer DIED, and it became obvious the company
> was
> > >> mostly a one man band.
> > >>
> > >> Dear EMWD Clients:
> > >>
> > >> With great sadness we report the death of our founder and president
> Brian
> > >> Carpenter. With this tragedy comes questions regarding the future
> > >> operations of EMWD. We want to assure you that we are working on
> continuing
> > >> the level of service to which you are accustomed. We are considering
> > >> several offers for the company and are hoping to have all issues
> resolved
> > >> soon.
> > >>
> > >> Thank you for your patience as we work through this transition.
> > >>
> > >> On behalf of Barbara Carpenter and Brian's family, we thank you for
> your
> > >> business.
> > >>
> > >> --EMWD Customer Support
> > >>
> > >> Then in early June Nabble posted on their Forum, without sending it to
> > >> administrators:
> > >>
> > >>
> > >>
> > >> The feature which allows users to post by email probably will be
> removed.
> > >>
> > >>
> > >>
> > >> Then in mid June, without informing administrators, they chopped
> > >> Mailing-list support, including all customisation
> > >>
> > >> implemented for Mailman3. Nabble no longer accepted emails from the
> > >> Mailing-List, and Forum posts were not sent to the List.
> > >>
> > >> The Forum was effectively defunct.
> > >>
> > >>
> > >>
> > >> We were not alone, all the screams from many Administrators, did not
> seem
> > >> to matter.
> > >>
> > >>
> > >>
> > >> I won't go into further details, but I sent my 'IMPORTANT!...' email
> > >> <
> https://lists.openscad.org/empathy/thread/EAAMMV6J6NW3WFRSWQ7MINOSBEYDQ6XH
> >.
> > >> Which included:
> > >>
> > >>
> > >>
> > >> In the interim, I recommend you use the Mailing-list and do not post
> to
> > >> the Forum.
> > >>
> > >> Basically nobody will see your post unless they specifically go
> looking
> > >> on the Forum.
> > >>
> > >>
> > >>
> > >> If you are desperate to see messages via a Web page, use the
> Mailing-list
> > >> Archive:
> > >>
> > >> https://lists.openscad.org/empathy/list/discuss.lists.openscad.org
> > >>
> > >>
> > >>
> > >> If you are also desperate to post new messages via a Web page you can
> > >> also use the Archive,
> > >>
> > >> but you will need to https://lists.openscad.org/register to create a
> > >> password for the email address that
> > >>
> > >> you subscribed with, then you can logon to the Archive and post.
> > >>
> > >> Note the editor there has limitations.
> > >>
> > >>
> > >>
> > >> So today, we have a Mailing-list. We do not have a Forum (that gets
> > >> updated).
> > >>
> > >> The Empathy front-end to the Mailing-list archive, is not a Forum, it
> has
> > >> bugs, is not ideal and won't get fixed soon.
> > >>
> > >> I don't recommend posting via Empathy, but if you make them vanilla,
> it
> > >> sort of works, muchly.
> > >>
> > >>
> > >>
> > >> We are considering the future, but it will not be screaming into
> > >> resolution any time soon.
> > >>
> > >>
> > >>
> > >> This is where we are at.
> > >>
> > >> We will have to live within its limitations.
> > >>
> > >> Your perseverance will be appreciated.
> > >>
> > >>
> > >>
> > >>
> > >>
> > >> MichaelAtOz,
> > >>
> > >> I used to say 'Forum Admin'
> > >>
> > >>
> > >>
> > >> We appreciate all the feedback provided on future requirements,
> options
> > >> and desires, we do not need to repeat that exercise.
> > >>
> > >>
> > >> ------------------------------
> > >>
> > >> *From:* MichaelAtOz [mailto:oz.at.michael@gmail.com]
> > >> *Sent:* Sun, 4 Jul 2021 11:17
> > >> *To:* 'OpenSCAD general discussion'
> > >> *Subject:* [OpenSCAD] Re: problems that folk have with emails
> > >>
> > >>
> > >>
> > >> Ray, yeh, one off-thread comment & it spreads like weeds...
> > >>
> > >>
> > >>
> > >> Terry,
> > >>
> > >>
> > >>
> > >> The *ONE* person who developed "Empathy" (software), which is fairly
> new
> > >> (=bugs),
> > >>
> > >> and who had provided support, *DIED*.
> > >>
> > >>
> > >>
> > >> Empathy has no support. It will not change anytime soon.
> > >>
> > >> Don't report Empathy things, unless it is down or you can't logon.
> > >>
> > >>
> > >>
> > >> IMAP has nothing to do with this.
> > >>
> > >>
> > >>
> > >> > gmail web client and I see my own posts inserted into the thread.
> > >>
> > >> > If I start a new thread it will just be in my sent folder but when
> > >> there are replies it
> > >>
> > >> > becomes a single thread in my inbox. I don't think it comes from the
> > >> mailing list.
> > >>
> > >>
> > >>
> > >> Gmail does it's own thing
> > >> <https://support.google.com/mail/answer/6588?hl=en>, it is not a
> > >> plain-old-email-forwarder. Try Gmail's All-mail.
> > >>
> > >> When they say 'to save you time and prevent clutter', they mean save
> them
> > >> megabucks.
> > >>
> > >>
> > >>
> > >> Some.member's replies are *not to you*. Your replies are *not to*
> > >> some.member.
> > >>
> > >> Everything is *to/from* the Mailing-list.
> > >>
> > >>
> > >>
> > >> Replies (*usually - unless someone specifically does something else*)
> > >> come *to you* *from the Mailing-list*.
> > >>
> > >> Because when some.member of the List *received an email*, some.member
> > >> gets it *from the List*.
> > >>
> > >> It is configured so the Return-To path is *to the List*.
> > >>
> > >> So some.member's reply, is *to the List* *not to you (notionally to
> > >> everyone)*,
> > >>
> > >> the List then sends it to everyone, including you@gmail, you get it
> *from
> > >> the List*.
> > >>
> > >>
> > >>
> > >> The List is configured, by default, with:
> > >>
> > >> Receive own postings: Do you want to receive a copy of every message
> you
> > >> post to the list? YES
> > >>
> > >> so it sends your own Gmail post to you@gmail, but see above.
> > >>
> > >>
> > >>
> > >>
> > >>
> > >> > 1. Replies I see from others have subjects prefixed
> > >>
> > >>
> > >>
> > >> The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE:
> ',
> > >> yours does whatever,
> > >>
> > >> the Mailing-list cleans it up,
> > >>
> > >> ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no
> > >> 'Re:' for a new thread)
> > >>
> > >>
> > >>
> > >> > 2. Why is the Author of my last reply shown in my client as
> > >>
> > >> > 'To: OpenSCAD general discussion' ?
> > >>
> > >>
> > >>
> > >> 'Author' is not an internet mail term. When you reply, you reply *to*
> > >> the Mailing-list.
> > >>
> > >>
> > >>
> > >> > 3. I can send emails to myself successfully.
> > >>
> > >>
> > >>
> > >> Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN *POSTS* *to
> > >> Mailing-lists*.
> > >>
> > >>
> > >>
> > >> NO you cannot configure your PC Agent & IOS & Gmail to get what you
> want.
> > >>
> > >> THE FORUM is not operational for new emails ATM.
> > >>
> > >> Empathy is not a Forum, it has limitations which will not get fixed.
> > >>
> > >>
> > >>
> > >> Life sux. Sorry.
> > >>
> > >>
> > >>
> > >> We are looking at options, including whether Nabble changes back or
> other
> > >> options,
> > >>
> > >> but for now it is what it is. Changes will not happen quickly.
> > >>
> > >>
> > >>
> > >>
> > >>
> > >> Michael
> > >>
> > >>
> > >>
> > >> > -----Original Message-----
> > >>
> > >> > From: Ray West [mailto:raywest@raywest.com]
> > >>
> > >> > Sent: Sun, 4 Jul 2021 03:24
> > >>
> > >> > To: discuss@lists.openscad.org
> > >>
> > >> > Subject: [OpenSCAD] problems that folk have with emails
> > >>
> > >> >
> > >>
> > >> > Is it not possible for folk to start a new subject for the fun that
> they
> > >>
> > >> > seem to have with email clients, instead of cluttering up other
> threads?
> > >>
> > >> > _______________________________________________
> > >>
> > >> > OpenSCAD mailing list
> > >>
> > >> > To unsubscribe send an email to discuss-leave@lists.openscad.org
> > >>
> > >>
> > >>
> > >>
> > >> <
> http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient
> >
> > >>
> > >> Virus-free. www.avg.com
> > >> <
> http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient
> >
> > >>
> > >>
> > >>
> <#m_8992275414145430755_m_5676437580064471014_m_-217394248020370984_m_-9052645809223018282_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
> > >> _______________________________________________
> > >> OpenSCAD mailing list
> > >> To unsubscribe send an email to discuss-leave@lists.openscad.org
> > >>
> > > _______________________________________________
> > > OpenSCAD mailing list
> > > To unsubscribe send an email to discuss-leave@lists.openscad.org
> > >
>
> > _______________________________________________
> > OpenSCAD mailing list
> > To unsubscribe send an email to discuss-leave@lists.openscad.org
>
>
> --
> ** R.E.Wolff@BitWizard.nl ** https://www.BitWizard.nl/ ** +31-15-2049110
> **
> ** Delftechpark 11 2628 XJ Delft, The Netherlands. KVK: 27239233 **
> f equals m times a. When your f is steady, and your m is going down
> your a is going up. -- Chris Hadfield about flying up the space shuttle.
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
T
Terry
Sun, Jul 4, 2021 12:28 PM
https://pasteboard.co/K9AE8AS.png
https://pasteboard.co/K9AEnGF.png
With letter:
https://pasteboard.co/K9AEEJK.png
a and b have tob e parameterized and c is the "extrude" going from say
larger a and b values to smaller?
I hope this clears more up from?
I now did it like:
[code]
poly_n = 8;
gripin_w = 32.0;
gripin_h = 28.0;
grip_ob = 19.0;
grip_lr = 16.0;
l_mid = 138.0;
l_back = 30.0;
r_factor = 1.25;
dikte = 2.0; //deelt door 2 in uiteindelijke model!
rotate([90,90,180])
{
translate([0,0,-1*(l_mid/2)])
rotate([180,0,0])
{
difference(){
baseHandle();
baseHandleCut();
}
}
}
module gripInHandle(wid,height){
hull(){
cube([grip_lr,gripin_w,l_back],center = true);
cube([gripin_h,grip_ob,l_back],center = true);
}
}
module gripOutHandle(wid,height){
hull(){
cube([grip_lr, gripin_w + dikte,l_back],center = true);
cube([gripin_h + dikte,grip_ob,l_back],center = true);
}
}
module baseHandle()
{
linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
twist=0)
projection() gripOutHandle();
}
module baseHandleCut()
{
linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
twist=0)
projection() gripInHandle();
}
[/code]
Ben
Van: Ray West raywest@raywest.com
Verzonden: zaterdag 3 juli 2021 12:09
Aan: discuss@lists.openscad.org
Onderwerp: [OpenSCAD] Re: New and a question
Sorry, not a clear enough description. Is it a simple or complex polygon, is
concave acceptable? How will you refer to the specific corners? How will you
ensure that all the angles are valid, or are you just changing one or two,
and hoping the rest will sort themselves out, and whatever the result is, it
doesn't matter?. Any 7 random x,y coordinates can generate an 8 sided
polygon. What have you tried? Is a Mk 1 eyeball good enough, or are you
looking for precision, involving doing some sums?
https://www.mathsisfun.com/geometry/octagon.html
On 02/07/2021 15:26, disruptivesolutionsnl@gmail.com
mailto:disruptivesolutionsnl@gmail.com wrote:
Hello,
I am new to his forum/mailing list, so thank you for having me!
I want to make an octagonal shape (8 sides) where I could change the angle
of each corner, so the lengths of the "lines" between them is not
equivalent. How could I do this?
I hope my question is clear enough without presenting an example picture.
With kind regards,
Ben
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
mailto:discuss-leave@lists.openscad.org
I drew this to help me understand the parameters and follow the code
more easily. So may be helpful to others. Attached or here:
https://www.dropbox.com/s/mvuathppe8a1z3o/BenOctagonParameters.jpg?raw=1
Terry
====================
On Sun, 4 Jul 2021 11:27:07 +0200, you wrote:
>https://pasteboard.co/K9AE8AS.png
>
>https://pasteboard.co/K9AEnGF.png
>
>
>
>With letter:
>
>https://pasteboard.co/K9AEEJK.png
>
>
>
>a and b have tob e parameterized and c is the "extrude" going from say
>larger a and b values to smaller?
>
>
>
>I hope this clears more up from?
>
>
>
>I now did it like:
>
>[code]
>
>poly_n = 8;
>
>gripin_w = 32.0;
>
>gripin_h = 28.0;
>
>grip_ob = 19.0;
>
>grip_lr = 16.0;
>
>l_mid = 138.0;
>
>
>
>l_back = 30.0;
>
>r_factor = 1.25;
>
>
>
>dikte = 2.0; //deelt door 2 in uiteindelijke model!
>
>
>
>rotate([90,90,180])
>
>{
>
>translate([0,0,-1*(l_mid/2)])
>
> rotate([180,0,0])
>
> {
>
> difference(){
>
> baseHandle();
>
> baseHandleCut();
>
> }
>
> }
>
> }
>
>
>
>module gripInHandle(wid,height){
>
>
>
> hull(){
>
> cube([grip_lr,gripin_w,l_back],center = true);
>
> cube([gripin_h,grip_ob,l_back],center = true);
>
> }
>
>}
>
>
>
>module gripOutHandle(wid,height){
>
> hull(){
>
> cube([grip_lr, gripin_w + dikte,l_back],center = true);
>
> cube([gripin_h + dikte,grip_ob,l_back],center = true);
>
> }
>
>}
>
>
>
>module baseHandle()
>
>{
>
> linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
>twist=0)
>
> projection() gripOutHandle();
>
>}
>
>
>
>module baseHandleCut()
>
>{
>
> linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
>twist=0)
>
> projection() gripInHandle();
>
>}
>
>[/code]
>
>
>
>Ben
>
>
>
>Van: Ray West <raywest@raywest.com>
>Verzonden: zaterdag 3 juli 2021 12:09
>Aan: discuss@lists.openscad.org
>Onderwerp: [OpenSCAD] Re: New and a question
>
>
>
>Sorry, not a clear enough description. Is it a simple or complex polygon, is
>concave acceptable? How will you refer to the specific corners? How will you
>ensure that all the angles are valid, or are you just changing one or two,
>and hoping the rest will sort themselves out, and whatever the result is, it
>doesn't matter?. Any 7 random x,y coordinates can generate an 8 sided
>polygon. What have you tried? Is a Mk 1 eyeball good enough, or are you
>looking for precision, involving doing some sums?
>https://www.mathsisfun.com/geometry/octagon.html
>
>On 02/07/2021 15:26, disruptivesolutionsnl@gmail.com
><mailto:disruptivesolutionsnl@gmail.com> wrote:
>
>Hello,
>
>
>
>I am new to his forum/mailing list, so thank you for having me!
>
>
>
>I want to make an octagonal shape (8 sides) where I could change the angle
>of each corner, so the lengths of the "lines" between them is not
>equivalent. How could I do this?
>
>
>
>I hope my question is clear enough without presenting an example picture.
>
>
>
>With kind regards,
>
>Ben
>
>
>
>
>
>_______________________________________________
>OpenSCAD mailing list
>To unsubscribe send an email to discuss-leave@lists.openscad.org
><mailto:discuss-leave@lists.openscad.org>
FH
Father Horton
Sun, Jul 4, 2021 1:03 PM
If that’s what you want, then create a regular octagon and scale it along
the x-axis (or shrink it along y, I guess). No trig needed.
On Sun, Jul 4, 2021 at 7:28 AM Terry terrypingm@gmail.com wrote:
https://pasteboard.co/K9AE8AS.png
https://pasteboard.co/K9AEnGF.png
With letter:
https://pasteboard.co/K9AEEJK.png
a and b have tob e parameterized and c is the "extrude" going from say
larger a and b values to smaller?
I hope this clears more up from?
I now did it like:
[code]
poly_n = 8;
gripin_w = 32.0;
gripin_h = 28.0;
grip_ob = 19.0;
grip_lr = 16.0;
l_mid = 138.0;
l_back = 30.0;
r_factor = 1.25;
dikte = 2.0; //deelt door 2 in uiteindelijke model!
rotate([90,90,180])
{
translate([0,0,-1*(l_mid/2)])
rotate([180,0,0])
{
difference(){
baseHandle();
baseHandleCut();
}
}
}
module gripInHandle(wid,height){
hull(){
cube([grip_lr,gripin_w,l_back],center = true);
cube([gripin_h,grip_ob,l_back],center = true);
}
}
module gripOutHandle(wid,height){
hull(){
cube([grip_lr, gripin_w + dikte,l_back],center = true);
cube([gripin_h + dikte,grip_ob,l_back],center = true);
}
}
module baseHandle()
{
linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
twist=0)
projection() gripOutHandle();
}
module baseHandleCut()
{
linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
twist=0)
projection() gripInHandle();
}
[/code]
Ben
Van: Ray West raywest@raywest.com
Verzonden: zaterdag 3 juli 2021 12:09
Aan: discuss@lists.openscad.org
Onderwerp: [OpenSCAD] Re: New and a question
Sorry, not a clear enough description. Is it a simple or complex polygon,
concave acceptable? How will you refer to the specific corners? How will
ensure that all the angles are valid, or are you just changing one or two,
and hoping the rest will sort themselves out, and whatever the result is,
If that’s what you want, then create a regular octagon and scale it along
the x-axis (or shrink it along y, I guess). No trig needed.
On Sun, Jul 4, 2021 at 7:28 AM Terry <terrypingm@gmail.com> wrote:
> I drew this to help me understand the parameters and follow the code
> more easily. So may be helpful to others. Attached or here:
> https://www.dropbox.com/s/mvuathppe8a1z3o/BenOctagonParameters.jpg?raw=1
>
> Terry
>
> ====================
>
>
>
>
> On Sun, 4 Jul 2021 11:27:07 +0200, you wrote:
>
> >https://pasteboard.co/K9AE8AS.png
> >
> >https://pasteboard.co/K9AEnGF.png
> >
> >
> >
> >With letter:
> >
> >https://pasteboard.co/K9AEEJK.png
> >
> >
> >
> >a and b have tob e parameterized and c is the "extrude" going from say
> >larger a and b values to smaller?
> >
> >
> >
> >I hope this clears more up from?
> >
> >
> >
> >I now did it like:
> >
> >[code]
> >
> >poly_n = 8;
> >
> >gripin_w = 32.0;
> >
> >gripin_h = 28.0;
> >
> >grip_ob = 19.0;
> >
> >grip_lr = 16.0;
> >
> >l_mid = 138.0;
> >
> >
> >
> >l_back = 30.0;
> >
> >r_factor = 1.25;
> >
> >
> >
> >dikte = 2.0; //deelt door 2 in uiteindelijke model!
> >
> >
> >
> >rotate([90,90,180])
> >
> >{
> >
> >translate([0,0,-1*(l_mid/2)])
> >
> > rotate([180,0,0])
> >
> > {
> >
> > difference(){
> >
> > baseHandle();
> >
> > baseHandleCut();
> >
> > }
> >
> > }
> >
> > }
> >
> >
> >
> >module gripInHandle(wid,height){
> >
> >
> >
> > hull(){
> >
> > cube([grip_lr,gripin_w,l_back],center = true);
> >
> > cube([gripin_h,grip_ob,l_back],center = true);
> >
> > }
> >
> >}
> >
> >
> >
> >module gripOutHandle(wid,height){
> >
> > hull(){
> >
> > cube([grip_lr, gripin_w + dikte,l_back],center = true);
> >
> > cube([gripin_h + dikte,grip_ob,l_back],center = true);
> >
> > }
> >
> >}
> >
> >
> >
> >module baseHandle()
> >
> >{
> >
> > linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
> >twist=0)
> >
> > projection() gripOutHandle();
> >
> >}
> >
> >
> >
> >module baseHandleCut()
> >
> >{
> >
> > linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
> >twist=0)
> >
> > projection() gripInHandle();
> >
> >}
> >
> >[/code]
> >
> >
> >
> >Ben
> >
> >
> >
> >Van: Ray West <raywest@raywest.com>
> >Verzonden: zaterdag 3 juli 2021 12:09
> >Aan: discuss@lists.openscad.org
> >Onderwerp: [OpenSCAD] Re: New and a question
> >
> >
> >
> >Sorry, not a clear enough description. Is it a simple or complex polygon,
> is
> >concave acceptable? How will you refer to the specific corners? How will
> you
> >ensure that all the angles are valid, or are you just changing one or two,
> >and hoping the rest will sort themselves out, and whatever the result is,
> it
> >doesn't matter?. Any 7 random x,y coordinates can generate an 8 sided
> >polygon. What have you tried? Is a Mk 1 eyeball good enough, or are you
> >looking for precision, involving doing some sums?
> >https://www.mathsisfun.com/geometry/octagon.html
> >
> >On 02/07/2021 15:26, disruptivesolutionsnl@gmail.com
> ><mailto:disruptivesolutionsnl@gmail.com> wrote:
> >
> >Hello,
> >
> >
> >
> >I am new to his forum/mailing list, so thank you for having me!
> >
> >
> >
> >I want to make an octagonal shape (8 sides) where I could change the angle
> >of each corner, so the lengths of the "lines" between them is not
> >equivalent. How could I do this?
> >
> >
> >
> >I hope my question is clear enough without presenting an example picture.
> >
> >
> >
> >With kind regards,
> >
> >Ben
> >
> >
> >
> >
> >
> >_______________________________________________
> >OpenSCAD mailing list
> >To unsubscribe send an email to discuss-leave@lists.openscad.org
> ><mailto:discuss-leave@lists.openscad.org>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
FH
Father Horton
Sun, Jul 4, 2021 1:07 PM
My mistake, that won't work. Gotta run now, but as long as the angles are
all 45 degrees, it's still easy enough to do. If no one beats me to it,
I'll do it this afternoon.
On Sun, Jul 4, 2021 at 7:28 AM Terry terrypingm@gmail.com wrote:
https://pasteboard.co/K9AE8AS.png
https://pasteboard.co/K9AEnGF.png
With letter:
https://pasteboard.co/K9AEEJK.png
a and b have tob e parameterized and c is the "extrude" going from say
larger a and b values to smaller?
I hope this clears more up from?
I now did it like:
[code]
poly_n = 8;
gripin_w = 32.0;
gripin_h = 28.0;
grip_ob = 19.0;
grip_lr = 16.0;
l_mid = 138.0;
l_back = 30.0;
r_factor = 1.25;
dikte = 2.0; //deelt door 2 in uiteindelijke model!
rotate([90,90,180])
{
translate([0,0,-1*(l_mid/2)])
rotate([180,0,0])
{
difference(){
baseHandle();
baseHandleCut();
}
}
}
module gripInHandle(wid,height){
hull(){
cube([grip_lr,gripin_w,l_back],center = true);
cube([gripin_h,grip_ob,l_back],center = true);
}
}
module gripOutHandle(wid,height){
hull(){
cube([grip_lr, gripin_w + dikte,l_back],center = true);
cube([gripin_h + dikte,grip_ob,l_back],center = true);
}
}
module baseHandle()
{
linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
twist=0)
projection() gripOutHandle();
}
module baseHandleCut()
{
linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
twist=0)
projection() gripInHandle();
}
[/code]
Ben
Van: Ray West raywest@raywest.com
Verzonden: zaterdag 3 juli 2021 12:09
Aan: discuss@lists.openscad.org
Onderwerp: [OpenSCAD] Re: New and a question
Sorry, not a clear enough description. Is it a simple or complex polygon,
concave acceptable? How will you refer to the specific corners? How will
ensure that all the angles are valid, or are you just changing one or two,
and hoping the rest will sort themselves out, and whatever the result is,
My mistake, that won't work. Gotta run now, but as long as the angles are
all 45 degrees, it's still easy enough to do. If no one beats me to it,
I'll do it this afternoon.
On Sun, Jul 4, 2021 at 7:28 AM Terry <terrypingm@gmail.com> wrote:
> I drew this to help me understand the parameters and follow the code
> more easily. So may be helpful to others. Attached or here:
> https://www.dropbox.com/s/mvuathppe8a1z3o/BenOctagonParameters.jpg?raw=1
>
> Terry
>
> ====================
>
>
>
>
> On Sun, 4 Jul 2021 11:27:07 +0200, you wrote:
>
> >https://pasteboard.co/K9AE8AS.png
> >
> >https://pasteboard.co/K9AEnGF.png
> >
> >
> >
> >With letter:
> >
> >https://pasteboard.co/K9AEEJK.png
> >
> >
> >
> >a and b have tob e parameterized and c is the "extrude" going from say
> >larger a and b values to smaller?
> >
> >
> >
> >I hope this clears more up from?
> >
> >
> >
> >I now did it like:
> >
> >[code]
> >
> >poly_n = 8;
> >
> >gripin_w = 32.0;
> >
> >gripin_h = 28.0;
> >
> >grip_ob = 19.0;
> >
> >grip_lr = 16.0;
> >
> >l_mid = 138.0;
> >
> >
> >
> >l_back = 30.0;
> >
> >r_factor = 1.25;
> >
> >
> >
> >dikte = 2.0; //deelt door 2 in uiteindelijke model!
> >
> >
> >
> >rotate([90,90,180])
> >
> >{
> >
> >translate([0,0,-1*(l_mid/2)])
> >
> > rotate([180,0,0])
> >
> > {
> >
> > difference(){
> >
> > baseHandle();
> >
> > baseHandleCut();
> >
> > }
> >
> > }
> >
> > }
> >
> >
> >
> >module gripInHandle(wid,height){
> >
> >
> >
> > hull(){
> >
> > cube([grip_lr,gripin_w,l_back],center = true);
> >
> > cube([gripin_h,grip_ob,l_back],center = true);
> >
> > }
> >
> >}
> >
> >
> >
> >module gripOutHandle(wid,height){
> >
> > hull(){
> >
> > cube([grip_lr, gripin_w + dikte,l_back],center = true);
> >
> > cube([gripin_h + dikte,grip_ob,l_back],center = true);
> >
> > }
> >
> >}
> >
> >
> >
> >module baseHandle()
> >
> >{
> >
> > linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
> >twist=0)
> >
> > projection() gripOutHandle();
> >
> >}
> >
> >
> >
> >module baseHandleCut()
> >
> >{
> >
> > linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
> >twist=0)
> >
> > projection() gripInHandle();
> >
> >}
> >
> >[/code]
> >
> >
> >
> >Ben
> >
> >
> >
> >Van: Ray West <raywest@raywest.com>
> >Verzonden: zaterdag 3 juli 2021 12:09
> >Aan: discuss@lists.openscad.org
> >Onderwerp: [OpenSCAD] Re: New and a question
> >
> >
> >
> >Sorry, not a clear enough description. Is it a simple or complex polygon,
> is
> >concave acceptable? How will you refer to the specific corners? How will
> you
> >ensure that all the angles are valid, or are you just changing one or two,
> >and hoping the rest will sort themselves out, and whatever the result is,
> it
> >doesn't matter?. Any 7 random x,y coordinates can generate an 8 sided
> >polygon. What have you tried? Is a Mk 1 eyeball good enough, or are you
> >looking for precision, involving doing some sums?
> >https://www.mathsisfun.com/geometry/octagon.html
> >
> >On 02/07/2021 15:26, disruptivesolutionsnl@gmail.com
> ><mailto:disruptivesolutionsnl@gmail.com> wrote:
> >
> >Hello,
> >
> >
> >
> >I am new to his forum/mailing list, so thank you for having me!
> >
> >
> >
> >I want to make an octagonal shape (8 sides) where I could change the angle
> >of each corner, so the lengths of the "lines" between them is not
> >equivalent. How could I do this?
> >
> >
> >
> >I hope my question is clear enough without presenting an example picture.
> >
> >
> >
> >With kind regards,
> >
> >Ben
> >
> >
> >
> >
> >
> >_______________________________________________
> >OpenSCAD mailing list
> >To unsubscribe send an email to discuss-leave@lists.openscad.org
> ><mailto:discuss-leave@lists.openscad.org>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
L
larry
Sun, Jul 4, 2021 1:24 PM
On Sun, 2021-07-04 at 13:00 +0100, nop head wrote:
Yes I just found two OpenSCAD emails in my spam folder. Previously it
was just a few people consistently but now it seems to be random
since the mailing list changed.
Are they there because of headers indicating spam, and are they all
from gmail accounts? The reason I ask is that I have yet to have any
emails from this list show up in junk. FWIW, my email client is
Evolution.
On Sun, 4 Jul 2021 at 12:07, Rogier Wolff R.E.Wolff@bitwizard.nl
wrote:
On Sun, Jul 04, 2021 at 07:27:29PM +1000, Michael AtOz wrote:
I mentioned I have three addresses subscribed as Admin. Sometimes
emails, and the third turns up an hour or more later, always the
It is a small subset of posters though. I have yet to get a
Could it be that they are greylisting based on sender address? Or
maybe they accept the Email, tag it as "fishy", and postpone
delivering it into your mailbox for a while, waiting if they end up
seeing lots more of these similar-in-content fishy mails,
indicating a
spam run.
Roger.
FWIW I've noticed that emails from this list seem to be
up by Gmail's spam filter, and it sometimes doesn't get to my
until a couple of people have replied (nophead in particular
been deemed trustworthy).
On Sun, Jul 4, 2021 at 1:14 AM MichaelAtOz <
The ONE person who developed "Empathy" (software), which
and who had provided support, DIED.
Empathy is not a Forum, it has limitations which will not
We inherited Empathy when we were forced to migrate from
The provider was no longer supporting Mailman2. It was
were pushed with little notice.
Mailman3 was not specifically supported by Nabble. It took
customisation to get it to function.
At the time Nabble, the Forum host, was acting normally,
previous problems and knew we
probably would want to migrate away from Nabble, it was very
I tested Empathy at that time to see whether it could replace
It had potential, but there were significant limitations, with
improvements it may be better.
There was Git based issues support and the developer was
We did not need people to access Empathy, because the Nabble
Then in Mid May the developer DIED, and it became obvious the
With great sadness we report the death of our founder and
Carpenter. With this tragedy comes questions regarding the
operations of EMWD. We want to assure you that we are working
the level of service to which you are accustomed. We are
several offers for the company and are hoping to have all
Thank you for your patience as we work through this
On behalf of Barbara Carpenter and Brian's family, we thank
Then in early June Nabble posted on their Forum, without
The feature which allows users to post by email probably will
Then in mid June, without informing administrators, they
Mailing-list support, including all customisation
implemented for Mailman3. Nabble no longer accepted emails
Mailing-List, and Forum posts were not sent to the List.
The Forum was effectively defunct.
We were not alone, all the screams from many Administrators,
I won't go into further details, but I sent my 'IMPORTANT!...'
In the interim, I recommend you use the Mailing-list and do
Basically nobody will see your post unless they specifically
If you are desperate to see messages via a Web page, use the
If you are also desperate to post new messages via a Web page
password for the email address that
you subscribed with, then you can logon to the Archive and
Note the editor there has limitations.
So today, we have a Mailing-list. We do not have a Forum (that
The Empathy front-end to the Mailing-list archive, is not a
bugs, is not ideal and won't get fixed soon.
I don't recommend posting via Empathy, but if you make them
We are considering the future, but it will not be screaming
resolution any time soon.
We will have to live within its limitations.
Your perseverance will be appreciated.
I used to say 'Forum Admin'
We appreciate all the feedback provided on future
and desires, we do not need to repeat that exercise.
Sent: Sun, 4 Jul 2021 11:17
To: 'OpenSCAD general discussion'
Subject: [OpenSCAD] Re: problems that folk have with emails
Ray, yeh, one off-thread comment & it spreads like weeds...
The ONE person who developed "Empathy" (software), which is
and who had provided support, DIED.
Empathy has no support. It will not change anytime soon.
Don't report Empathy things, unless it is down or you can't
IMAP has nothing to do with this.
gmail web client and I see my own posts inserted into the
If I start a new thread it will just be in my sent folder
becomes a single thread in my inbox. I don't think it comes
Gmail does it's own thing
plain-old-email-forwarder. Try Gmail's All-mail.
When they say 'to save you time and prevent clutter', they
Some.member's replies are not to you. Your replies are *not
Everything is to/from the Mailing-list.
Replies (*usually - unless someone specifically does something
come to you from the Mailing-list.
Because when some.member of the List received an email,
It is configured so the Return-To path is to the List.
So some.member's reply, is to the List *not to you
the List then sends it to everyone, including you@gmail, you
The List is configured, by default, with:
Receive own postings: Do you want to receive a copy of every
so it sends your own Gmail post to you@gmail, but see above.
- Replies I see from others have subjects prefixed
The Mailing-list prepends '[OpenSCAD]'. My Email client
the Mailing-list cleans it up,
ALL Emails, including yours, in my inbox have '[OpenSCAD] Re:
- Why is the Author of my last reply shown in my client as
'To: OpenSCAD general discussion' ?
'Author' is not an internet mail term. When you reply, you
- I can send emails to myself successfully.
Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS
NO you cannot configure your PC Agent & IOS & Gmail to get
THE FORUM is not operational for new emails ATM.
Empathy is not a Forum, it has limitations which will not get
We are looking at options, including whether Nabble changes
but for now it is what it is. Changes will not happen quickly.
-----Original Message-----
Sent: Sun, 4 Jul 2021 03:24
Subject: [OpenSCAD] problems that folk have with emails
Is it not possible for folk to start a new subject for the
seem to have with email clients, instead of cluttering up
To unsubscribe send an email to
<#m_8992275414145430755_m_5676437580064471014_m_-
217394248020370984_m_-9052645809223018282_DAB4FAD8-2DD7-40BB-A1B8-
4E2AA1F9FDF2>
To unsubscribe send an email to
To unsubscribe send an email to
On Sun, 2021-07-04 at 13:00 +0100, nop head wrote:
> Yes I just found two OpenSCAD emails in my spam folder. Previously it
> was just a few people consistently but now it seems to be random
> since the mailing list changed.
Are they there because of headers indicating spam, and are they all
from gmail accounts? The reason I ask is that I have yet to have any
emails from this list show up in junk. FWIW, my email client is
Evolution.
On Sun, 4 Jul 2021 at 12:07, Rogier Wolff <R.E.Wolff@bitwizard.nl>
wrote:
> > On Sun, Jul 04, 2021 at 07:27:29PM +1000, Michael AtOz wrote:
> >
> > > Thanks for the report.
> >
> > > I mentioned I have three addresses subscribed as Admin. Sometimes
> > I get two
> >
> > > emails, and the third turns up an hour or more later, always the
> > Gmail
> >
> > > address.
> >
> > > It is a small subset of posters though. I have yet to get a
> > correlation to
> >
> > > a specific cause.
> >
> >
> >
> > Could it be that they are greylisting based on sender address? Or
> >
> > maybe they accept the Email, tag it as "fishy", and postpone
> >
> > delivering it into your mailbox for a while, waiting if they end up
> >
> > seeing lots more of these similar-in-content fishy mails,
> > indicating a
> >
> > spam run.
> >
> >
> >
> > Roger.
> >
> >
> >
> >
> >
> > >
> >
> > >
> >
> > > On Sun, 4 Jul 2021 at 18:52, Gareth Chen <garethenator@gmail.com>
> > wrote:
> >
> > >
> >
> > > > FWIW I've noticed that emails from this list seem to be
> > frequently picked
> >
> > > > up by Gmail's spam filter, and it sometimes doesn't get to my
> > inbox at all
> >
> > > > until a couple of people have replied (nophead in particular
> > seems to have
> >
> > > > been deemed trustworthy).
> >
> > > >
> >
> > > >
> >
> > > > On Sun, Jul 4, 2021 at 1:14 AM MichaelAtOz <
> > oz.at.michael@gmail.com>
> >
> > > > wrote:
> >
> > > >
> >
> > > >> Note for everyone:
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> > The *ONE* person who developed "Empathy" (software), which
> > is fairly
> >
> > > >> new (=bugs),
> >
> > > >>
> >
> > > >> > and who had provided support, *DIED*.
> >
> > > >>
> >
> > > >> &
> >
> > > >>
> >
> > > >> > Empathy is not a Forum, it has limitations which will not
> > get fixed.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> We inherited Empathy when we were forced to migrate from
> > Mailman2 to
> >
> > > >> Mailman3 in Mid March.
> >
> > > >>
> >
> > > >> The provider was no longer supporting Mailman2. It was
> > inevitable, but we
> >
> > > >> were pushed with little notice.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> Mailman3 was not specifically supported by Nabble. It took
> > some Nabble
> >
> > > >> customisation to get it to function.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> At the time Nabble, the Forum host, was acting normally,
> > although we had
> >
> > > >> previous problems and knew we
> >
> > > >>
> >
> > > >> probably would want to migrate away from Nabble, it was very
> > niche, and
> >
> > > >> support was waning.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> I tested Empathy at that time to see whether it could replace
> > Nabble.
> >
> > > >>
> >
> > > >> It had potential, but there were significant limitations, with
> >
> > > >> improvements it may be better.
> >
> > > >>
> >
> > > >> There was Git based issues support and the developer was
> > responsive to
> >
> > > >> change.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> We did not need people to access Empathy, because the Nabble
> > hosted Forum
> >
> > > >> was THE email archive.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> Then in Mid May the developer DIED, and it became obvious the
> > company was
> >
> > > >> mostly a one man band.
> >
> > > >>
> >
> > > >> Dear EMWD Clients:
> >
> > > >>
> >
> > > >> With great sadness we report the death of our founder and
> > president Brian
> >
> > > >> Carpenter. With this tragedy comes questions regarding the
> > future
> >
> > > >> operations of EMWD. We want to assure you that we are working
> > on continuing
> >
> > > >> the level of service to which you are accustomed. We are
> > considering
> >
> > > >> several offers for the company and are hoping to have all
> > issues resolved
> >
> > > >> soon.
> >
> > > >>
> >
> > > >> Thank you for your patience as we work through this
> > transition.
> >
> > > >>
> >
> > > >> On behalf of Barbara Carpenter and Brian's family, we thank
> > you for your
> >
> > > >> business.
> >
> > > >>
> >
> > > >> --EMWD Customer Support
> >
> > > >>
> >
> > > >> Then in early June Nabble posted on their Forum, without
> > sending it to
> >
> > > >> administrators:
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> The feature which allows users to post by email probably will
> > be removed.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> Then in mid June, without informing administrators, they
> > chopped
> >
> > > >> Mailing-list support, including all customisation
> >
> > > >>
> >
> > > >> implemented for Mailman3. Nabble no longer accepted emails
> > from the
> >
> > > >> Mailing-List, and Forum posts were not sent to the List.
> >
> > > >>
> >
> > > >> The Forum was effectively defunct.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> We were not alone, all the screams from many Administrators,
> > did not seem
> >
> > > >> to matter.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> I won't go into further details, but I sent my 'IMPORTANT!...'
> > email
> >
> > > >> <
> > https://lists.openscad.org/empathy/thread/EAAMMV6J6NW3WFRSWQ7MINOSBEYDQ6XH>
> > ;.
> >
> > > >> Which included:
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> In the interim, I recommend you use the Mailing-list and do
> > not post to
> >
> > > >> the Forum.
> >
> > > >>
> >
> > > >> Basically nobody will see your post unless they specifically
> > go looking
> >
> > > >> on the Forum.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> If you are desperate to see messages via a Web page, use the
> > Mailing-list
> >
> > > >> Archive:
> >
> > > >>
> >
> > > >>
> > https://lists.openscad.org/empathy/list/discuss.lists.openscad.org
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> If you are also desperate to post new messages via a Web page
> > you can
> >
> > > >> also use the Archive,
> >
> > > >>
> >
> > > >> but you will need to https://lists.openscad.org/register to
> > create a
> >
> > > >> password for the email address that
> >
> > > >>
> >
> > > >> you subscribed with, then you can logon to the Archive and
> > post.
> >
> > > >>
> >
> > > >> Note the editor there has limitations.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> So today, we have a Mailing-list. We do not have a Forum (that
> > gets
> >
> > > >> updated).
> >
> > > >>
> >
> > > >> The Empathy front-end to the Mailing-list archive, is not a
> > Forum, it has
> >
> > > >> bugs, is not ideal and won't get fixed soon.
> >
> > > >>
> >
> > > >> I don't recommend posting via Empathy, but if you make them
> > vanilla, it
> >
> > > >> sort of works, muchly.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> We are considering the future, but it will not be screaming
> > into
> >
> > > >> resolution any time soon.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> This is where we are at.
> >
> > > >>
> >
> > > >> We will have to live within its limitations.
> >
> > > >>
> >
> > > >> Your perseverance will be appreciated.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> MichaelAtOz,
> >
> > > >>
> >
> > > >> I used to say 'Forum Admin'
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> We appreciate all the feedback provided on future
> > requirements, options
> >
> > > >> and desires, we do not need to repeat that exercise.
> >
> > > >>
> >
> > > >>
> >
> > > >> ------------------------------
> >
> > > >>
> >
> > > >> *From:* MichaelAtOz [mailto:oz.at.michael@gmail.com]
> >
> > > >> *Sent:* Sun, 4 Jul 2021 11:17
> >
> > > >> *To:* 'OpenSCAD general discussion'
> >
> > > >> *Subject:* [OpenSCAD] Re: problems that folk have with emails
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> Ray, yeh, one off-thread comment & it spreads like weeds...
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> Terry,
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> The *ONE* person who developed "Empathy" (software), which is
> > fairly new
> >
> > > >> (=bugs),
> >
> > > >>
> >
> > > >> and who had provided support, *DIED*.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> Empathy has no support. It will not change anytime soon.
> >
> > > >>
> >
> > > >> Don't report Empathy things, unless it is down or you can't
> > logon.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> IMAP has nothing to do with this.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> > gmail web client and I see my own posts inserted into the
> > thread.
> >
> > > >>
> >
> > > >> > If I start a new thread it will just be in my sent folder
> > but when
> >
> > > >> there are replies it
> >
> > > >>
> >
> > > >> > becomes a single thread in my inbox. I don't think it comes
> > from the
> >
> > > >> mailing list.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> Gmail does it's own thing
> >
> > > >> <https://support.google.com/mail/answer/6588?hl=en>;, it is
> > not a
> >
> > > >> plain-old-email-forwarder. Try Gmail's All-mail.
> >
> > > >>
> >
> > > >> When they say 'to save you time and prevent clutter', they
> > mean save them
> >
> > > >> megabucks.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> Some.member's replies are *not to you*. Your replies are *not
> > to*
> >
> > > >> some.member.
> >
> > > >>
> >
> > > >> Everything is *to/from* the Mailing-list.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> Replies (*usually - unless someone specifically does something
> > else*)
> >
> > > >> come *to you* *from the Mailing-list*.
> >
> > > >>
> >
> > > >> Because when some.member of the List *received an email*,
> > some.member
> >
> > > >> gets it *from the List*.
> >
> > > >>
> >
> > > >> It is configured so the Return-To path is *to the List*.
> >
> > > >>
> >
> > > >> So some.member's reply, is *to the List* *not to you
> > (notionally to
> >
> > > >> everyone)*,
> >
> > > >>
> >
> > > >> the List then sends it to everyone, including you@gmail, you
> > get it *from
> >
> > > >> the List*.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> The List is configured, by default, with:
> >
> > > >>
> >
> > > >> Receive own postings: Do you want to receive a copy of every
> > message you
> >
> > > >> post to the list? YES
> >
> > > >>
> >
> > > >> so it sends your own Gmail post to you@gmail, but see above.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> > 1. Replies I see from others have subjects prefixed
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> The Mailing-list prepends '[OpenSCAD]'. My Email client
> > prepends 'RE: ',
> >
> > > >> yours does whatever,
> >
> > > >>
> >
> > > >> the Mailing-list cleans it up,
> >
> > > >>
> >
> > > >> ALL Emails, including yours, in my inbox have '[OpenSCAD] Re:
> > ' (or no
> >
> > > >> 'Re:' for a new thread)
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> > 2. Why is the Author of my last reply shown in my client as
> >
> > > >>
> >
> > > >> > 'To: OpenSCAD general discussion' ?
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> 'Author' is not an internet mail term. When you reply, you
> > reply *to*
> >
> > > >> the Mailing-list.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> > 3. I can send emails to myself successfully.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN *POSTS*
> > *to
> >
> > > >> Mailing-lists*.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> NO you cannot configure your PC Agent & IOS & Gmail to get
> > what you want.
> >
> > > >>
> >
> > > >> THE FORUM is not operational for new emails ATM.
> >
> > > >>
> >
> > > >> Empathy is not a Forum, it has limitations which will not get
> > fixed.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> Life sux. Sorry.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> We are looking at options, including whether Nabble changes
> > back or other
> >
> > > >> options,
> >
> > > >>
> >
> > > >> but for now it is what it is. Changes will not happen quickly.
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> Michael
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> > -----Original Message-----
> >
> > > >>
> >
> > > >> > From: Ray West [mailto:raywest@raywest.com]
> >
> > > >>
> >
> > > >> > Sent: Sun, 4 Jul 2021 03:24
> >
> > > >>
> >
> > > >> > To: discuss@lists.openscad.org
> >
> > > >>
> >
> > > >> > Subject: [OpenSCAD] problems that folk have with emails
> >
> > > >>
> >
> > > >> >
> >
> > > >>
> >
> > > >> > Is it not possible for folk to start a new subject for the
> > fun that they
> >
> > > >>
> >
> > > >> > seem to have with email clients, instead of cluttering up
> > other threads?
> >
> > > >>
> >
> > > >> > _______________________________________________
> >
> > > >>
> >
> > > >> > OpenSCAD mailing list
> >
> > > >>
> >
> > > >> > To unsubscribe send an email to
> > discuss-leave@lists.openscad.org
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >>
> >
> > > >> <
> > http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient
> > >
> >
> > > >>
> >
> > > >> Virus-free. www.avg.com
> >
> > > >> <
> > http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient
> > >
> >
> > > >>
> >
> > > >>
> >
> > > >> <#m_8992275414145430755_m_5676437580064471014_m_-
> > 217394248020370984_m_-9052645809223018282_DAB4FAD8-2DD7-40BB-A1B8-
> > 4E2AA1F9FDF2>
> >
> > > >> _______________________________________________
> >
> > > >> OpenSCAD mailing list
> >
> > > >> To unsubscribe send an email to
> > discuss-leave@lists.openscad.org
> >
> > > >>
> >
> > > > _______________________________________________
> >
> > > > OpenSCAD mailing list
> >
> > > > To unsubscribe send an email to
> > discuss-leave@lists.openscad.org
> >
> > > >
> >
> >
> >
> > > _______________________________________________
> >
> > > OpenSCAD mailing list
> >
> > > To unsubscribe send an email to discuss-leave@lists.openscad.org
> >
> >
> >
> >
> >
> > _______________________________________________OpenSCAD mailing
> > listTo unsubscribe send an email to
> > discuss-leave@lists.openscad.org
J
jon
Sun, Jul 4, 2021 1:30 PM
I agree: no OpenSCAD emails in my SPAM folder; I use Thunderbird
On 7/4/2021 9:24 AM, larry wrote:
On Sun, 2021-07-04 at 13:00 +0100, nop head wrote:
Yes I just found two OpenSCAD emails in my spam folder. Previously it
was just a few people consistently but now it seems to be random
since the mailing list changed.
Are they there because of headers indicating spam, and are they all
from gmail accounts? The reason I ask is that I have yet to have any
emails from this list show up in junk. FWIW, my email client is Evolution.
subscribe send an email to discuss-leave@lists.openscad.org
I agree: no OpenSCAD emails in my SPAM folder; I use Thunderbird
On 7/4/2021 9:24 AM, larry wrote:
> On Sun, 2021-07-04 at 13:00 +0100, nop head wrote:
>> Yes I just found two OpenSCAD emails in my spam folder. Previously it
>> was just a few people consistently but now it seems to be random
>> since the mailing list changed.
>>
> Are they there because of headers indicating spam, and are they all
> from gmail accounts? The reason I ask is that I have yet to have any
> emails from this list show up in junk. FWIW, my email client is Evolution.
> subscribe send an email to discuss-leave@lists.openscad.org
GC
Gareth Chen
Sun, Jul 4, 2021 1:39 PM
Email providers like Gmail filter spam on the server side. Your email
client could have additional filtering on top of that, but I think this is
a provider-side issue, which is probably why those of your running your own
email servers are seeing different behavior.
Relatedly, Gmail spam filters are apparently sensitive to misconfigured
mail servers, which may also be part of the issue.
On Sun, Jul 4, 2021, 6:31 AM jon jon@jonbondy.com wrote:
I agree: no OpenSCAD emails in my SPAM folder; I use Thunderbird
On 7/4/2021 9:24 AM, larry wrote:
On Sun, 2021-07-04 at 13:00 +0100, nop head wrote:
Yes I just found two OpenSCAD emails in my spam folder. Previously it was
just a few people consistently but now it seems to be random since the
mailing list changed.
Are they there because of headers indicating spam, and are they all from
gmail accounts? The reason I ask is that I have yet to have any emails from
this list show up in junk. FWIW, my email client is Evolution.
subscribe send an email to discuss-leave@lists.openscad.org
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
Email providers like Gmail filter spam on the server side. Your email
client could have additional filtering on top of that, but I think this is
a provider-side issue, which is probably why those of your running your own
email servers are seeing different behavior.
Relatedly, Gmail spam filters are apparently sensitive to misconfigured
mail servers, which may also be part of the issue.
On Sun, Jul 4, 2021, 6:31 AM jon <jon@jonbondy.com> wrote:
> I agree: no OpenSCAD emails in my SPAM folder; I use Thunderbird
> On 7/4/2021 9:24 AM, larry wrote:
>
> On Sun, 2021-07-04 at 13:00 +0100, nop head wrote:
>
> Yes I just found two OpenSCAD emails in my spam folder. Previously it was
> just a few people consistently but now it seems to be random since the
> mailing list changed.
>
> Are they there because of headers indicating spam, and are they all from
> gmail accounts? The reason I ask is that I have yet to have any emails from
> this list show up in junk. FWIW, my email client is Evolution.
> subscribe send an email to discuss-leave@lists.openscad.org
>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
T
Terry
Sun, Jul 4, 2021 1:40 PM
As the dimensions change the angles won't all be 45 degs. For example
with gripin_h changed from 28 to 18, see attached or here:
https://www.dropbox.com/s/qmb560gz2yuo252/BenOctagonHeight18.jpg?raw=1
Terry
As the dimensions change the angles won't all be 45 degs. For example
with gripin_h changed from 28 to 18, see attached or here:
https://www.dropbox.com/s/qmb560gz2yuo252/BenOctagonHeight18.jpg?raw=1
Terry
FH
Father Horton
Sun, Jul 4, 2021 3:25 PM
Then it's trig time. I will look later.
On Sun, Jul 4, 2021 at 8:41 AM Terry terrypingm@gmail.com wrote:
Then it's trig time. I will look later.
On Sun, Jul 4, 2021 at 8:41 AM Terry <terrypingm@gmail.com> wrote:
> As the dimensions change the angles won't all be 45 degs. For example
> with gripin_h changed from 28 to 18, see attached or here:
> https://www.dropbox.com/s/qmb560gz2yuo252/BenOctagonHeight18.jpg?raw=1
>
> Terry
>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
FH
Father Horton
Sun, Jul 4, 2021 3:41 PM
But it's always symmetric along both x and y axes, right?
On Sun, Jul 4, 2021 at 10:25 AM Father Horton fatherhorton@gmail.com
wrote:
Then it's trig time. I will look later.
On Sun, Jul 4, 2021 at 8:41 AM Terry terrypingm@gmail.com wrote:
But it's always symmetric along both x and y axes, right?
On Sun, Jul 4, 2021 at 10:25 AM Father Horton <fatherhorton@gmail.com>
wrote:
> Then it's trig time. I will look later.
>
> On Sun, Jul 4, 2021 at 8:41 AM Terry <terrypingm@gmail.com> wrote:
>
>> As the dimensions change the angles won't all be 45 degs. For example
>> with gripin_h changed from 28 to 18, see attached or here:
>> https://www.dropbox.com/s/qmb560gz2yuo252/BenOctagonHeight18.jpg?raw=1
>>
>> Terry
>>
>> _______________________________________________
>> OpenSCAD mailing list
>> To unsubscribe send an email to discuss-leave@lists.openscad.org
>>
>
T
Terry
Sun, Jul 4, 2021 4:39 PM
Yes, based on my understanding of Ben's code.
Terry
====================
On Sun, 4 Jul 2021 10:41:24 -0500, you wrote:
Yes, based on my understanding of Ben's code.
Terry
====================
On Sun, 4 Jul 2021 10:41:24 -0500, you wrote:
>But it's always symmetric along both x and y axes, right?
>
>On Sun, Jul 4, 2021 at 10:25 AM Father Horton <fatherhorton@gmail.com>
>wrote:
>
>> Then it's trig time. I will look later.
>>
>> On Sun, Jul 4, 2021 at 8:41 AM Terry <terrypingm@gmail.com> wrote:
>>
>>> As the dimensions change the angles won't all be 45 degs. For example
>>> with gripin_h changed from 28 to 18, see attached or here:
>>> https://www.dropbox.com/s/qmb560gz2yuo252/BenOctagonHeight18.jpg?raw=1
>>>
>>> Terry
>>>
>>> _______________________________________________
>>> OpenSCAD mailing list
>>> To unsubscribe send an email to discuss-leave@lists.openscad.org
>>>
>>
MM
Michael Möller
Sun, Jul 4, 2021 7:10 PM
Hi Ben,
seems you go the long way round. First you construct the "stretched"
octagon from two cubes and hull (nice idea!) , then you turn that 3D shape
into 2D with projection and then Linear extrude it back to 3D. Lastly you
do the difference. I decided to create it in 2D, do the difference in 2D
and then use your linear_extrude. This is easier/faster (not noticeable in
this msall model) and the code is shorter and a lot less repeats.
For the octagon creation, as I now see that your "squeeze requirements" I
have just used the symmetry and "mirrored" the to corners of a quadrant
Hopefully it might inspire you to continue from her onwards!
// the two corners in a quadrant are +/- combinations of
XL = gripin_w/2 ;
XS = grip_ob/2 ;
YL = gripin_h/2 ;
YS = grip_lr/2 ;
module octagon() {
polygon([
[XL,YS], [XS,YL],
[-XS,YL], [-XL,YS],
[-XL,-YS], [-XS,-YL],
[XS,-YL], [XL,-YS],
]) ;
}
rotate([90,90,180]) translate([0,0,-1*(l_mid/2)]) rotate([180,0,0])
linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
twist=0) {
difference() {
octagon() ;
offset(-dikte/2) octagon() ;
}
}
M²
On Sun, 4 Jul 2021 at 18:39, Terry terrypingm@gmail.com wrote:
Yes, based on my understanding of Ben's code.
Terry
====================
On Sun, 4 Jul 2021 10:41:24 -0500, you wrote:
But it's always symmetric along both x and y axes, right?
On Sun, Jul 4, 2021 at 10:25 AM Father Horton fatherhorton@gmail.com
wrote:
Then it's trig time. I will look later.
On Sun, Jul 4, 2021 at 8:41 AM Terry terrypingm@gmail.com wrote:
Hi Ben,
seems you go the long way round. First you construct the "stretched"
octagon from two cubes and hull (nice idea!) , then you turn that 3D shape
into 2D with projection and then Linear extrude it back to 3D. Lastly you
do the difference. I decided to create it in 2D, do the difference in 2D
and then use your linear_extrude. This is easier/faster (not noticeable in
this msall model) and the code is shorter and a lot less repeats.
For the octagon creation, as I now see that your "squeeze requirements" I
have just used the symmetry and "mirrored" the to corners of a quadrant
Hopefully it might inspire you to continue from her onwards!
// the two corners in a quadrant are +/- combinations of
XL = gripin_w/2 ;
XS = grip_ob/2 ;
YL = gripin_h/2 ;
YS = grip_lr/2 ;
module octagon() {
polygon([
[XL,YS], [XS,YL],
[-XS,YL], [-XL,YS],
[-XL,-YS], [-XS,-YL],
[XS,-YL], [XL,-YS],
]) ;
}
rotate([90,90,180]) translate([0,0,-1*(l_mid/2)]) rotate([180,0,0])
linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
twist=0) {
difference() {
octagon() ;
offset(-dikte/2) octagon() ;
}
}
M²
On Sun, 4 Jul 2021 at 18:39, Terry <terrypingm@gmail.com> wrote:
> Yes, based on my understanding of Ben's code.
>
> Terry
>
> ====================
>
>
>
> On Sun, 4 Jul 2021 10:41:24 -0500, you wrote:
>
> >But it's always symmetric along both x and y axes, right?
> >
> >On Sun, Jul 4, 2021 at 10:25 AM Father Horton <fatherhorton@gmail.com>
> >wrote:
> >
> >> Then it's trig time. I will look later.
> >>
> >> On Sun, Jul 4, 2021 at 8:41 AM Terry <terrypingm@gmail.com> wrote:
> >>
> >>> As the dimensions change the angles won't all be 45 degs. For example
> >>> with gripin_h changed from 28 to 18, see attached or here:
> >>> https://www.dropbox.com/s/qmb560gz2yuo252/BenOctagonHeight18.jpg?raw=1
> >>>
> >>> Terry
> >>>
> >>> _______________________________________________
> >>> OpenSCAD mailing list
> >>> To unsubscribe send an email to discuss-leave@lists.openscad.org
> >>>
> >>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
FH
Father Horton
Sun, Jul 4, 2021 8:11 PM
Hi Ben,
seems you go the long way round. First you construct the "stretched"
octagon from two cubes and hull (nice idea!) , then you turn that 3D shape
into 2D with projection and then Linear extrude it back to 3D. Lastly you
do the difference. I decided to create it in 2D, do the difference in 2D
and then use your linear_extrude. This is easier/faster (not noticeable in
this msall model) and the code is shorter and a lot less repeats.
For the octagon creation, as I now see that your "squeeze requirements" I
have just used the symmetry and "mirrored" the to corners of a quadrant
Hopefully it might inspire you to continue from her onwards!
// the two corners in a quadrant are +/- combinations of
XL = gripin_w/2 ;
XS = grip_ob/2 ;
YL = gripin_h/2 ;
YS = grip_lr/2 ;
module octagon() {
polygon([
[XL,YS], [XS,YL],
[-XS,YL], [-XL,YS],
[-XL,-YS], [-XS,-YL],
[XS,-YL], [XL,-YS],
]) ;
}
rotate([90,90,180]) translate([0,0,-1*(l_mid/2)]) rotate([180,0,0])
linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
twist=0) {
difference() {
octagon() ;
offset(-dikte/2) octagon() ;
}
}
M²
On Sun, 4 Jul 2021 at 18:39, Terry terrypingm@gmail.com wrote:
Yes, based on my understanding of Ben's code.
Terry
====================
On Sun, 4 Jul 2021 10:41:24 -0500, you wrote:
But it's always symmetric along both x and y axes, right?
On Sun, Jul 4, 2021 at 10:25 AM Father Horton fatherhorton@gmail.com
wrote:
Then it's trig time. I will look later.
On Sun, Jul 4, 2021 at 8:41 AM Terry terrypingm@gmail.com wrote:
As the dimensions change the angles won't all be 45 degs. For example
with gripin_h changed from 28 to 18, see attached or here:
Nice! And trig-free!
On Sun, Jul 4, 2021 at 2:10 PM Michael Möller <private2michael@gmail.com>
wrote:
> Hi Ben,
>
> seems you go the long way round. First you construct the "stretched"
> octagon from two cubes and hull (nice idea!) , then you turn that 3D shape
> into 2D with projection and then Linear extrude it back to 3D. Lastly you
> do the difference. I decided to create it in 2D, do the difference in 2D
> and then use your linear_extrude. This is easier/faster (not noticeable in
> this msall model) and the code is shorter and a lot less repeats.
>
> For the octagon creation, as I now see that your "squeeze requirements" I
> have just used the symmetry and "mirrored" the to corners of a quadrant
>
> Hopefully it might inspire you to continue from her onwards!
>
> // the two corners in a quadrant are +/- combinations of
> XL = gripin_w/2 ;
> XS = grip_ob/2 ;
> YL = gripin_h/2 ;
> YS = grip_lr/2 ;
>
> module octagon() {
> polygon([
> [XL,YS], [XS,YL],
> [-XS,YL], [-XL,YS],
> [-XL,-YS], [-XS,-YL],
> [XS,-YL], [XL,-YS],
> ]) ;
> }
> rotate([90,90,180]) translate([0,0,-1*(l_mid/2)]) rotate([180,0,0])
> linear_extrude(height=l_back, scale=[r_factor,r_factor], slices=1,
> twist=0) {
> difference() {
> octagon() ;
> offset(-dikte/2) octagon() ;
> }
> }
>
> M²
>
> On Sun, 4 Jul 2021 at 18:39, Terry <terrypingm@gmail.com> wrote:
>
>> Yes, based on my understanding of Ben's code.
>>
>> Terry
>>
>> ====================
>>
>>
>>
>> On Sun, 4 Jul 2021 10:41:24 -0500, you wrote:
>>
>> >But it's always symmetric along both x and y axes, right?
>> >
>> >On Sun, Jul 4, 2021 at 10:25 AM Father Horton <fatherhorton@gmail.com>
>> >wrote:
>> >
>> >> Then it's trig time. I will look later.
>> >>
>> >> On Sun, Jul 4, 2021 at 8:41 AM Terry <terrypingm@gmail.com> wrote:
>> >>
>> >>> As the dimensions change the angles won't all be 45 degs. For example
>> >>> with gripin_h changed from 28 to 18, see attached or here:
>> >>>
>> https://www.dropbox.com/s/qmb560gz2yuo252/BenOctagonHeight18.jpg?raw=1
>> >>>
>> >>> Terry
>> >>>
>> >>> _______________________________________________
>> >>> OpenSCAD mailing list
>> >>> To unsubscribe send an email to discuss-leave@lists.openscad.org
>> >>>
>> >>
>> _______________________________________________
>> OpenSCAD mailing list
>> To unsubscribe send an email to discuss-leave@lists.openscad.org
>>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
M
MichaelAtOz
Thu, Jul 8, 2021 11:01 PM
Terry,
Please stop polluting every thread with email issues.
At least this tell me that my post this morning exists; I see no sign of
I said previously further below:
Gmail does it's own thing, it is not a plain-old-email-forwarder. Try Gmail's All-mail***.
One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to Mailing-lists.
They will never be in your inbox.
Those 'me' are my sent emails. Or
I've just had a look at gmail settings, maybe you want:
I've not used it before, it may have other effects.
Michael
From: MichaelAtOz [mailto:oz.at.michael@gmail.com]
Sent: Sun, 4 Jul 2021 11:17
To: 'OpenSCAD general discussion'
Subject: [OpenSCAD] Re: problems that folk have with emails
Ray, yeh, one off-thread comment & it spreads like weeds...
Terry,
The ONE person who developed "Empathy" (software), which is fairly new (=bugs),
and who had provided support, DIED.
Empathy has no support. It will not change anytime soon.
Don't report Empathy things, unless it is down or you can't logon.
IMAP has nothing to do with this.
gmail web client and I see my own posts inserted into the thread.
If I start a new thread it will just be in my sent folder but when there are replies it
becomes a single thread in my inbox. I don't think it comes from the mailing list.
Gmail does https://support.google.com/mail/answer/6588?hl=en it's own thing, it is not a
plain-old-email-forwarder. Try Gmail's All-mail.
When they say 'to save you time and prevent clutter', they mean save them megabucks.
Some.member's replies are not to you. Your replies are not to some.member.
Everything is to/from the Mailing-list.
Replies (usually - unless someone specifically does something else) come to you from the
Mailing-list.
Because when some.member of the List received an email, some.member gets it from the List.
It is configured so the Return-To path is to the List.
So some.member's reply, is to the List not to you (notionally to everyone),
the List then sends it to everyone, including you@gmail, you get it from the List.
The List is configured, by default, with:
Receive own postings: Do you want to receive a copy of every message you post to the list? YES
so it sends your own Gmail post to you@gmail, but see above.
- Replies I see from others have subjects prefixed
The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ', yours does whatever,
the Mailing-list cleans it up,
ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no 'Re:' for a new thread)
- Why is the Author of my last reply shown in my client as
'To: OpenSCAD general discussion' ?
'Author' is not an internet mail term. When you reply, you reply to the Mailing-list.
- I can send emails to myself successfully.
Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to Mailing-lists.
NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
THE FORUM is not operational for new emails ATM.
Empathy is not a Forum, it has limitations which will not get fixed.
Life sux. Sorry.
We are looking at options, including whether Nabble changes back or other options,
but for now it is what it is. Changes will not happen quickly.
Michael
-----Original Message-----
Sent: Sun, 4 Jul 2021 03:24
Subject: [OpenSCAD] problems that folk have with emails
Is it not possible for folk to start a new subject for the fun that they
seem to have with email clients, instead of cluttering up other threads?
<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_con
tent=emailclient>
Virus-free.
<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_con
tent=emailclient> www.avg.com
--
This email has been checked for viruses by AVG.
https://www.avg.com
Terry,
Please stop polluting every thread with email issues.
> At least this tell me that my post this morning exists; I see no sign of
> it in my incoming mail!
I said previously further below:
Gmail does it's own thing, it is not a plain-old-email-forwarder. Try Gmail's All-mail***.
One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to Mailing-lists.
They will never be in your inbox.
***
Those 'me' are my sent emails. Or
I've just had a look at gmail settings, maybe you want:
I've not used it before, it may have other effects.
Michael
_____
From: MichaelAtOz [mailto:oz.at.michael@gmail.com]
Sent: Sun, 4 Jul 2021 11:17
To: 'OpenSCAD general discussion'
Subject: [OpenSCAD] Re: problems that folk have with emails
Ray, yeh, one off-thread comment & it spreads like weeds...
Terry,
The ONE person who developed "Empathy" (software), which is fairly new (=bugs),
and who had provided support, DIED.
Empathy has no support. It will not change anytime soon.
Don't report Empathy things, unless it is down or you can't logon.
IMAP has nothing to do with this.
> gmail web client and I see my own posts inserted into the thread.
> If I start a new thread it will just be in my sent folder but when there are replies it
> becomes a single thread in my inbox. I don't think it comes from the mailing list.
Gmail does <https://support.google.com/mail/answer/6588?hl=en> it's own thing, it is not a
plain-old-email-forwarder. Try Gmail's All-mail.
When they say 'to save you time and prevent clutter', they mean save them megabucks.
Some.member's replies are not to you. Your replies are not to some.member.
Everything is to/from the Mailing-list.
Replies (usually - unless someone specifically does something else) come to you from the
Mailing-list.
Because when some.member of the List received an email, some.member gets it from the List.
It is configured so the Return-To path is to the List.
So some.member's reply, is to the List not to you (notionally to everyone),
the List then sends it to everyone, including you@gmail, you get it from the List.
The List is configured, by default, with:
Receive own postings: Do you want to receive a copy of every message you post to the list? YES
so it sends your own Gmail post to you@gmail, but see above.
> 1. Replies I see from others have subjects prefixed
The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ', yours does whatever,
the Mailing-list cleans it up,
ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no 'Re:' for a new thread)
> 2. Why is the Author of my last reply shown in my client as
> 'To: OpenSCAD general discussion' ?
'Author' is not an internet mail term. When you reply, you reply to the Mailing-list.
> 3. I can send emails to myself successfully.
Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to Mailing-lists.
NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
THE FORUM is not operational for new emails ATM.
Empathy is not a Forum, it has limitations which will not get fixed.
Life sux. Sorry.
We are looking at options, including whether Nabble changes back or other options,
but for now it is what it is. Changes will not happen quickly.
Michael
> -----Original Message-----
> From: Ray West [mailto:raywest@raywest.com]
> Sent: Sun, 4 Jul 2021 03:24
> To: discuss@lists.openscad.org
> Subject: [OpenSCAD] problems that folk have with emails
>
> Is it not possible for folk to start a new subject for the fun that they
> seem to have with email clients, instead of cluttering up other threads?
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_con
tent=emailclient>
Virus-free.
<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_con
tent=emailclient> www.avg.com
--
This email has been checked for viruses by AVG.
https://www.avg.com
M
MichaelAtOz
Thu, Jul 8, 2021 11:14 PM
Note that either All-mail view or Conversation view, they are still NOT from the Mailing-list, they
are your sent emails.
it does not mean your post got there. It would be rare for them not to get there.
Also as I previously mentioned, if you really want actual email from the Mailing-list, like I need
as Admin,
you subscribe another address forwarded to your usual address, then you could use email rules to
manage them,
or as I do just delete the extras.
From: MichaelAtOz [mailto:oz.at.michael@gmail.com]
Sent: Fri, 9 Jul 2021 09:02
To: 'OpenSCAD general discussion'
Subject: [OpenSCAD] Re: problems that folk have with emails
Terry,
Please stop polluting every thread with email issues.
At least this tell me that my post this morning exists; I see no sign of
I said previously further below:
Gmail does it's own thing, it is not a plain-old-email-forwarder. Try Gmail's All-mail***.
One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to Mailing-lists.
They will never be in your inbox.
Those 'me' are my sent emails. Or
I've just had a look at gmail settings, maybe you want:
I've not used it before, it may have other effects.
Michael
From: MichaelAtOz [mailto:oz.at.michael@gmail.com]
Sent: Sun, 4 Jul 2021 11:17
To: 'OpenSCAD general discussion'
Subject: [OpenSCAD] Re: problems that folk have with emails
Ray, yeh, one off-thread comment & it spreads like weeds...
Terry,
The ONE person who developed "Empathy" (software), which is fairly new (=bugs),
and who had provided support, DIED.
Empathy has no support. It will not change anytime soon.
Don't report Empathy things, unless it is down or you can't logon.
IMAP has nothing to do with this.
gmail web client and I see my own posts inserted into the thread.
If I start a new thread it will just be in my sent folder but when there are replies it
becomes a single thread in my inbox. I don't think it comes from the mailing list.
Gmail does https://support.google.com/mail/answer/6588?hl=en it's own thing, it is not a
plain-old-email-forwarder. Try Gmail's All-mail.
When they say 'to save you time and prevent clutter', they mean save them megabucks.
Some.member's replies are not to you. Your replies are not to some.member.
Everything is to/from the Mailing-list.
Replies (usually - unless someone specifically does something else) come to you from the
Mailing-list.
Because when some.member of the List received an email, some.member gets it from the List.
It is configured so the Return-To path is to the List.
So some.member's reply, is to the List not to you (notionally to everyone),
the List then sends it to everyone, including you@gmail, you get it from the List.
The List is configured, by default, with:
Receive own postings: Do you want to receive a copy of every message you post to the list? YES
so it sends your own Gmail post to you@gmail, but see above.
- Replies I see from others have subjects prefixed
The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ', yours does whatever,
the Mailing-list cleans it up,
ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no 'Re:' for a new thread)
- Why is the Author of my last reply shown in my client as
'To: OpenSCAD general discussion' ?
'Author' is not an internet mail term. When you reply, you reply to the Mailing-list.
- I can send emails to myself successfully.
Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to Mailing-lists.
NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
THE FORUM is not operational for new emails ATM.
Empathy is not a Forum, it has limitations which will not get fixed.
Life sux. Sorry.
We are looking at options, including whether Nabble changes back or other options,
but for now it is what it is. Changes will not happen quickly.
Michael
-----Original Message-----
Sent: Sun, 4 Jul 2021 03:24
Subject: [OpenSCAD] problems that folk have with emails
Is it not possible for folk to start a new subject for the fun that they
seem to have with email clients, instead of cluttering up other threads?
<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_con
tent=emailclient>
Virus-free.
<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_con
tent=emailclient> www.avg.com
--
This email has been checked for viruses by AVG.
https://www.avg.com
Note that either All-mail view or Conversation view, they are still NOT from the Mailing-list, they
are your sent emails.
it does not mean your post got there. It would be rare for them not to get there.
Also as I previously mentioned, if you really want actual email from the Mailing-list, like I need
as Admin,
you subscribe another address forwarded to your usual address, then you could use email rules to
manage them,
or as I do just delete the extras.
_____
From: MichaelAtOz [mailto:oz.at.michael@gmail.com]
Sent: Fri, 9 Jul 2021 09:02
To: 'OpenSCAD general discussion'
Subject: [OpenSCAD] Re: problems that folk have with emails
Terry,
Please stop polluting every thread with email issues.
> At least this tell me that my post this morning exists; I see no sign of
> it in my incoming mail!
I said previously further below:
Gmail does it's own thing, it is not a plain-old-email-forwarder. Try Gmail's All-mail***.
One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to Mailing-lists.
They will never be in your inbox.
***
Those 'me' are my sent emails. Or
I've just had a look at gmail settings, maybe you want:
I've not used it before, it may have other effects.
Michael
_____
From: MichaelAtOz [mailto:oz.at.michael@gmail.com]
Sent: Sun, 4 Jul 2021 11:17
To: 'OpenSCAD general discussion'
Subject: [OpenSCAD] Re: problems that folk have with emails
Ray, yeh, one off-thread comment & it spreads like weeds...
Terry,
The ONE person who developed "Empathy" (software), which is fairly new (=bugs),
and who had provided support, DIED.
Empathy has no support. It will not change anytime soon.
Don't report Empathy things, unless it is down or you can't logon.
IMAP has nothing to do with this.
> gmail web client and I see my own posts inserted into the thread.
> If I start a new thread it will just be in my sent folder but when there are replies it
> becomes a single thread in my inbox. I don't think it comes from the mailing list.
Gmail does <https://support.google.com/mail/answer/6588?hl=en> it's own thing, it is not a
plain-old-email-forwarder. Try Gmail's All-mail.
When they say 'to save you time and prevent clutter', they mean save them megabucks.
Some.member's replies are not to you. Your replies are not to some.member.
Everything is to/from the Mailing-list.
Replies (usually - unless someone specifically does something else) come to you from the
Mailing-list.
Because when some.member of the List received an email, some.member gets it from the List.
It is configured so the Return-To path is to the List.
So some.member's reply, is to the List not to you (notionally to everyone),
the List then sends it to everyone, including you@gmail, you get it from the List.
The List is configured, by default, with:
Receive own postings: Do you want to receive a copy of every message you post to the list? YES
so it sends your own Gmail post to you@gmail, but see above.
> 1. Replies I see from others have subjects prefixed
The Mailing-list prepends '[OpenSCAD]'. My Email client prepends 'RE: ', yours does whatever,
the Mailing-list cleans it up,
ALL Emails, including yours, in my inbox have '[OpenSCAD] Re: ' (or no 'Re:' for a new thread)
> 2. Why is the Author of my last reply shown in my client as
> 'To: OpenSCAD general discussion' ?
'Author' is not an internet mail term. When you reply, you reply to the Mailing-list.
> 3. I can send emails to myself successfully.
Yes. One more time, Gmail DOES NOT SEND YOU YOUR OWN POSTS to Mailing-lists.
NO you cannot configure your PC Agent & IOS & Gmail to get what you want.
THE FORUM is not operational for new emails ATM.
Empathy is not a Forum, it has limitations which will not get fixed.
Life sux. Sorry.
We are looking at options, including whether Nabble changes back or other options,
but for now it is what it is. Changes will not happen quickly.
Michael
> -----Original Message-----
> From: Ray West [mailto:raywest@raywest.com]
> Sent: Sun, 4 Jul 2021 03:24
> To: discuss@lists.openscad.org
> Subject: [OpenSCAD] problems that folk have with emails
>
> Is it not possible for folk to start a new subject for the fun that they
> seem to have with email clients, instead of cluttering up other threads?
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_con
tent=emailclient>
Virus-free.
<http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_con
tent=emailclient> www.avg.com
--
This email has been checked for viruses by AVG.
https://www.avg.com
GC
Gareth Chen
Thu, Jul 8, 2021 11:24 PM
I can see my own emails in my Gmail inbox, though not reflected to my by
the mailing list. They just show up as messages in a thread, as it would
for a normal conversation. I think Terry is using a standalone client to
read his mail, and I'm guessing it doesn't recognize his messages as part
of the same thread.
[image: chrome_ZLIa896jtK.png]
I can see my own emails in my Gmail inbox, though not reflected to my by
the mailing list. They just show up as messages in a thread, as it would
for a normal conversation. I think Terry is using a standalone client to
read his mail, and I'm guessing it doesn't recognize his messages as part
of the same thread.
[image: chrome_ZLIa896jtK.png]
I
info@hjcreations.nl
Fri, Jul 9, 2021 5:59 AM
Hi all,
I think it would be more nice to just got a link to the related
discussion.
Now my (and yours of course) are full of replies and just using space
specially when pictures are included.
So I would be more then happy with 'only' link to discussion.
Gareth Chen schreef op 2021-07-09 01:24:
I can see my own emails in my Gmail inbox, though not reflected to my
by the mailing list. They just show up as messages in a thread, as it
would for a normal conversation. I think Terry is using a standalone
client to read his mail, and I'm guessing it doesn't recognize his
messages as part of the same thread.
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
Hi all,
I think it would be more nice to just got a link to the related
discussion.
Now my (and yours of course) are full of replies and just using space
specially when pictures are included.
So I would be more then happy with 'only' link to discussion.
Gareth Chen schreef op 2021-07-09 01:24:
> I can see my own emails in my Gmail inbox, though not reflected to my
> by the mailing list. They just show up as messages in a thread, as it
> would for a normal conversation. I think Terry is using a standalone
> client to read his mail, and I'm guessing it doesn't recognize his
> messages as part of the same thread.
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
M
MichaelAtOz
Fri, Jul 9, 2021 6:20 AM
I think it would be more nice to just got a link to the related
discussion. There is no option to do that for individual messages.
If you are happy with daily-ish delivery, you can get a Digest email.
Either a plain text all on one (no attachments/photos).
Or where each MIME message as an attachment (with internal attachments, images etc), but not
threaded. That doesn't solve your space problem, but is only one email to delete.
Neither has links, so you would need to go to the Empathy archive site to look.
[I didn't write it! Don't blame me.]
I'll email you examples of the two, if you want that daily-ish, let me know which.
-----Original Message-----
From: info@hjcreations.nl [mailto:info@hjcreations.nl]
Sent: Fri, 9 Jul 2021 16:00
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
Hi all,
I think it would be more nice to just got a link to the related
discussion.
Now my (and yours of course) are full of replies and just using space
specially when pictures are included.
So I would be more then happy with 'only' link to discussion.
Gareth Chen schreef op 2021-07-09 01:24:
I can see my own emails in my Gmail inbox, though not reflected to my
by the mailing list. They just show up as messages in a thread, as it
would for a normal conversation. I think Terry is using a standalone
client to read his mail, and I'm guessing it doesn't recognize his
messages as part of the same thread.
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
> I think it would be more nice to just got a link to the related
> discussion. There is no option to do that for individual messages.
If you are happy with daily-ish delivery, you can get a Digest email.
Either a plain text all on one (no attachments/photos).
Or where each MIME message as an attachment (with internal attachments, images etc), but not
threaded. That doesn't solve your space problem, but is only one email to delete.
Neither has links, so you would need to go to the Empathy archive site to look.
[I didn't write it! Don't blame me.]
I'll email you examples of the two, if you want that daily-ish, let me know which.
> -----Original Message-----
> From: info@hjcreations.nl [mailto:info@hjcreations.nl]
> Sent: Fri, 9 Jul 2021 16:00
> To: OpenSCAD general discussion
> Subject: [OpenSCAD] Re: problems that folk have with emails
>
> Hi all,
>
> I think it would be more nice to just got a link to the related
> discussion.
> Now my (and yours of course) are full of replies and just using space
> specially when pictures are included.
>
> So I would be more then happy with 'only' link to discussion.
>
>
>
> Gareth Chen schreef op 2021-07-09 01:24:
> > I can see my own emails in my Gmail inbox, though not reflected to my
> > by the mailing list. They just show up as messages in a thread, as it
> > would for a normal conversation. I think Terry is using a standalone
> > client to read his mail, and I'm guessing it doesn't recognize his
> > messages as part of the same thread.
> > _______________________________________________
> > OpenSCAD mailing list
> > To unsubscribe send an email to discuss-leave@lists.openscad.org
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
--
This email has been checked for viruses by AVG.
https://www.avg.com
I
info@hjcreations.nl
Fri, Jul 9, 2021 8:50 AM
It would be very nice to got a link to that discussion, so not to
individual messages.
MichaelAtOz schreef op 2021-07-09 08:20:
I think it would be more nice to just got a link to the related
discussion. There is no option to do that for individual messages.
If you are happy with daily-ish delivery, you can get a Digest email.
Either a plain text all on one (no attachments/photos).
Or where each MIME message as an attachment (with internal
attachments, images etc), but not
threaded. That doesn't solve your space problem, but is only one email
to delete.
Neither has links, so you would need to go to the Empathy archive site
to look.
[I didn't write it! Don't blame me.]
I'll email you examples of the two, if you want that daily-ish, let me
know which.
-----Original Message-----
From: info@hjcreations.nl [mailto:info@hjcreations.nl]
Sent: Fri, 9 Jul 2021 16:00
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
Hi all,
I think it would be more nice to just got a link to the related
discussion.
Now my (and yours of course) are full of replies and just using space
specially when pictures are included.
So I would be more then happy with 'only' link to discussion.
Gareth Chen schreef op 2021-07-09 01:24:
I can see my own emails in my Gmail inbox, though not reflected to my
by the mailing list. They just show up as messages in a thread, as it
would for a normal conversation. I think Terry is using a standalone
client to read his mail, and I'm guessing it doesn't recognize his
messages as part of the same thread.
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
It would be very nice to got a link to that discussion, so not to
individual messages.
MichaelAtOz schreef op 2021-07-09 08:20:
>> I think it would be more nice to just got a link to the related
>> discussion. There is no option to do that for individual messages.
>
> If you are happy with daily-ish delivery, you can get a Digest email.
> Either a plain text all on one (no attachments/photos).
> Or where each MIME message as an attachment (with internal
> attachments, images etc), but not
> threaded. That doesn't solve your space problem, but is only one email
> to delete.
>
> Neither has links, so you would need to go to the Empathy archive site
> to look.
>
> [I didn't write it! Don't blame me.]
>
> I'll email you examples of the two, if you want that daily-ish, let me
> know which.
>
>> -----Original Message-----
>> From: info@hjcreations.nl [mailto:info@hjcreations.nl]
>> Sent: Fri, 9 Jul 2021 16:00
>> To: OpenSCAD general discussion
>> Subject: [OpenSCAD] Re: problems that folk have with emails
>>
>> Hi all,
>>
>> I think it would be more nice to just got a link to the related
>> discussion.
>> Now my (and yours of course) are full of replies and just using space
>> specially when pictures are included.
>>
>> So I would be more then happy with 'only' link to discussion.
>>
>>
>>
>> Gareth Chen schreef op 2021-07-09 01:24:
>> > I can see my own emails in my Gmail inbox, though not reflected to my
>> > by the mailing list. They just show up as messages in a thread, as it
>> > would for a normal conversation. I think Terry is using a standalone
>> > client to read his mail, and I'm guessing it doesn't recognize his
>> > messages as part of the same thread.
>> > _______________________________________________
>> > OpenSCAD mailing list
>> > To unsubscribe send an email to discuss-leave@lists.openscad.org
>> _______________________________________________
>> OpenSCAD mailing list
>> To unsubscribe send an email to discuss-leave@lists.openscad.org
RW
Ray West
Fri, Jul 9, 2021 10:45 AM
fwiw,
I've been subscribed to another unrelated mailing list for some time.
I'm one of the decreasing number of web users who uses Pop mail server,
I have virtually all the digests for that group back to 1998 - local
storage is very cheap. There are probably only two or three posts a day,
on average, on that group, and the digest works OK. If an image needs to
be sent, then it has to be linked, if not it is stripped out, and
sometimes the link is shown automatically. My email client is
thunderbird and I can filter things however I want, and search through
however I like, the emails text being stored as plain text. However,
with the digest, and wanting to keep them, the emails need to be
trimmed, but since the users of the group have been there a long time,
then most of them comply, occasionally the list owner sends out a reminder.
I recently wanted to start a similar group, and the owner of that group
suggested google groups, which was easy to set up, and there were few
problems for the dozen or so new members there. However, i would not
suggest google groups for this openscad group.
For folk used to the new fangled forum idea, it must be a bit of a shock
trying to get to grips with a mailing list, I guess it is similar if you
have only used an automatic transmission in a car, and having to go back
to a stick shift.
At the moment, I have no problems with this mailing list, other than my
own making (e.g. forgetting to post to group due to the order in
thunderbird) but this all depends on how important this stuff is to you.
Personally I never liked the idea of a mailing list linked to a forum,
although it is difficult to explain why, in particular to those who
prefer the forum type of discussion.
I have no need to access emails on different devices, which simplifies
things for me, so I'm not suggesting that what works for me would work
for others, but I'm quite happy with how things are now.
On 09/07/2021 07:20, MichaelAtOz wrote:
I think it would be more nice to just got a link to the related
discussion. There is no option to do that for individual messages.
If you are happy with daily-ish delivery, you can get a Digest email.
Either a plain text all on one (no attachments/photos).
Or where each MIME message as an attachment (with internal attachments, images etc), but not
threaded. That doesn't solve your space problem, but is only one email to delete.
Neither has links, so you would need to go to the Empathy archive site to look.
[I didn't write it! Don't blame me.]
I'll email you examples of the two, if you want that daily-ish, let me know which.
fwiw,
I've been subscribed to another unrelated mailing list for some time.
I'm one of the decreasing number of web users who uses Pop mail server,
I have virtually all the digests for that group back to 1998 - local
storage is very cheap. There are probably only two or three posts a day,
on average, on that group, and the digest works OK. If an image needs to
be sent, then it has to be linked, if not it is stripped out, and
sometimes the link is shown automatically. My email client is
thunderbird and I can filter things however I want, and search through
however I like, the emails text being stored as plain text. However,
with the digest, and wanting to keep them, the emails need to be
trimmed, but since the users of the group have been there a long time,
then most of them comply, occasionally the list owner sends out a reminder.
I recently wanted to start a similar group, and the owner of that group
suggested google groups, which was easy to set up, and there were few
problems for the dozen or so new members there. However, i would not
suggest google groups for this openscad group.
For folk used to the new fangled forum idea, it must be a bit of a shock
trying to get to grips with a mailing list, I guess it is similar if you
have only used an automatic transmission in a car, and having to go back
to a stick shift.
At the moment, I have no problems with this mailing list, other than my
own making (e.g. forgetting to post to group due to the order in
thunderbird) but this all depends on how important this stuff is to you.
Personally I never liked the idea of a mailing list linked to a forum,
although it is difficult to explain why, in particular to those who
prefer the forum type of discussion.
I have no need to access emails on different devices, which simplifies
things for me, so I'm not suggesting that what works for me would work
for others, but I'm quite happy with how things are now.
On 09/07/2021 07:20, MichaelAtOz wrote:
>> I think it would be more nice to just got a link to the related
>> discussion. There is no option to do that for individual messages.
> If you are happy with daily-ish delivery, you can get a Digest email.
> Either a plain text all on one (no attachments/photos).
> Or where each MIME message as an attachment (with internal attachments, images etc), but not
> threaded. That doesn't solve your space problem, but is only one email to delete.
>
> Neither has links, so you would need to go to the Empathy archive site to look.
>
> [I didn't write it! Don't blame me.]
>
> I'll email you examples of the two, if you want that daily-ish, let me know which.
>
>
T
Terry
Fri, Jul 9, 2021 2:43 PM
Thanks Michael, I'll persevere as it stands, following up your and
others' suggestions. I'll probably handle it using the filters in my
offline email app, Agent, after BCC'ing myself on posts to the list. But
other gmail users such as nop head and Gareth have clearly sorted it, so
I'll get there eventually...
Sorry about the 'corruption', I'll desist! Although not to the extent of
NOW switching to another thread (e.g to reply to your reply) as
info@hjcreations seems to suggest?
Perhaps a thread, say 'Email issues', could be used for any future
discussion on such topics?
Terry
====================
On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
I think it would be more nice to just got a link to the related
discussion. There is no option to do that for individual messages.
If you are happy with daily-ish delivery, you can get a Digest email.
Either a plain text all on one (no attachments/photos).
Or where each MIME message as an attachment (with internal attachments, images etc), but not
threaded. That doesn't solve your space problem, but is only one email to delete.
Neither has links, so you would need to go to the Empathy archive site to look.
[I didn't write it! Don't blame me.]
I'll email you examples of the two, if you want that daily-ish, let me know which.
-----Original Message-----
From: info@hjcreations.nl [mailto:info@hjcreations.nl]
Sent: Fri, 9 Jul 2021 16:00
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
Hi all,
I think it would be more nice to just got a link to the related
discussion.
Now my (and yours of course) are full of replies and just using space
specially when pictures are included.
So I would be more then happy with 'only' link to discussion.
Gareth Chen schreef op 2021-07-09 01:24:
I can see my own emails in my Gmail inbox, though not reflected to my
by the mailing list. They just show up as messages in a thread, as it
would for a normal conversation. I think Terry is using a standalone
client to read his mail, and I'm guessing it doesn't recognize his
messages as part of the same thread.
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
Thanks Michael, I'll persevere as it stands, following up your and
others' suggestions. I'll probably handle it using the filters in my
offline email app, Agent, after BCC'ing myself on posts to the list. But
other gmail users such as nop head and Gareth have clearly sorted it, so
I'll get there eventually...
Sorry about the 'corruption', I'll desist! Although not to the extent of
NOW switching to another thread (e.g to reply to your reply) as
info@hjcreations seems to suggest?
Perhaps a thread, say 'Email issues', could be used for any future
discussion on such topics?
Terry
====================
On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
>> I think it would be more nice to just got a link to the related
>> discussion. There is no option to do that for individual messages.
>
>If you are happy with daily-ish delivery, you can get a Digest email.
>Either a plain text all on one (no attachments/photos).
>Or where each MIME message as an attachment (with internal attachments, images etc), but not
>threaded. That doesn't solve your space problem, but is only one email to delete.
>
>Neither has links, so you would need to go to the Empathy archive site to look.
>
>[I didn't write it! Don't blame me.]
>
>I'll email you examples of the two, if you want that daily-ish, let me know which.
>
>> -----Original Message-----
>> From: info@hjcreations.nl [mailto:info@hjcreations.nl]
>> Sent: Fri, 9 Jul 2021 16:00
>> To: OpenSCAD general discussion
>> Subject: [OpenSCAD] Re: problems that folk have with emails
>>
>> Hi all,
>>
>> I think it would be more nice to just got a link to the related
>> discussion.
>> Now my (and yours of course) are full of replies and just using space
>> specially when pictures are included.
>>
>> So I would be more then happy with 'only' link to discussion.
>>
>>
>>
>> Gareth Chen schreef op 2021-07-09 01:24:
>> > I can see my own emails in my Gmail inbox, though not reflected to my
>> > by the mailing list. They just show up as messages in a thread, as it
>> > would for a normal conversation. I think Terry is using a standalone
>> > client to read his mail, and I'm guessing it doesn't recognize his
>> > messages as part of the same thread.
>> > _______________________________________________
>> > OpenSCAD mailing list
>> > To unsubscribe send an email to discuss-leave@lists.openscad.org
>> _______________________________________________
>> OpenSCAD mailing list
>> To unsubscribe send an email to discuss-leave@lists.openscad.org
M
MichaelAtOz
Sat, Jul 10, 2021 2:52 AM
Perhaps a thread, say 'Email issues'
Each problem usually has its own set of issues.
Old threads deserve to get older, die and fade away.
It is NOT a good idea to resurrect an old thread UNLESS it is still
directly relevant and you have new relevant information.
Just because an old thread seems similar, DON'T use it,
it will bring along all the old baggage.
-----Original Message-----
Sent: Sat, 10 Jul 2021 00:44
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
Thanks Michael, I'll persevere as it stands, following up your and
others' suggestions. I'll probably handle it using the filters in my
offline email app, Agent, after BCC'ing myself on posts to the list. But
other gmail users such as nop head and Gareth have clearly sorted it, so
I'll get there eventually...
Sorry about the 'corruption', I'll desist! Although not to the extent of
NOW switching to another thread (e.g to reply to your reply) as
info@hjcreations seems to suggest?
Perhaps a thread, say 'Email issues', could be used for any future
discussion on such topics?
On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
I think it would be more nice to just got a link to the related
discussion. There is no option to do that for individual messages.
If you are happy with daily-ish delivery, you can get a Digest email.
Either a plain text all on one (no attachments/photos).
Or where each MIME message as an attachment (with internal attachments, images etc), but
threaded. That doesn't solve your space problem, but is only one email to delete.
Neither has links, so you would need to go to the Empathy archive site to look.
[I didn't write it! Don't blame me.]
I'll email you examples of the two, if you want that daily-ish, let me know which.
-----Original Message-----
Sent: Fri, 9 Jul 2021 16:00
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
I think it would be more nice to just got a link to the related
Now my (and yours of course) are full of replies and just using space
specially when pictures are included.
So I would be more then happy with 'only' link to discussion.
Gareth Chen schreef op 2021-07-09 01:24:
I can see my own emails in my Gmail inbox, though not reflected to my
by the mailing list. They just show up as messages in a thread, as it
would for a normal conversation. I think Terry is using a standalone
client to read his mail, and I'm guessing it doesn't recognize his
messages as part of the same thread.
> Perhaps a thread, say 'Email issues'
Each problem usually has its own set of issues.
Old threads deserve to get older, die and fade away.
It is NOT a good idea to resurrect an old thread UNLESS it is still
directly relevant and you have new relevant information.
Just because an old thread seems similar, DON'T use it,
it will bring along all the old baggage.
> -----Original Message-----
> From: Terry [mailto:terrypingm@gmail.com]
> Sent: Sat, 10 Jul 2021 00:44
> To: OpenSCAD general discussion
> Subject: [OpenSCAD] Re: problems that folk have with emails
>
> Thanks Michael, I'll persevere as it stands, following up your and
> others' suggestions. I'll probably handle it using the filters in my
> offline email app, Agent, after BCC'ing myself on posts to the list. But
> other gmail users such as nop head and Gareth have clearly sorted it, so
> I'll get there eventually...
>
> Sorry about the 'corruption', I'll desist! Although not to the extent of
> NOW switching to another thread (e.g to reply to your reply) as
> info@hjcreations seems to suggest?
>
> Perhaps a thread, say 'Email issues', could be used for any future
> discussion on such topics?
>
> Terry
>
> ====================
>
> On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
>
> >> I think it would be more nice to just got a link to the related
> >> discussion. There is no option to do that for individual messages.
> >
> >If you are happy with daily-ish delivery, you can get a Digest email.
> >Either a plain text all on one (no attachments/photos).
> >Or where each MIME message as an attachment (with internal attachments, images etc), but
> not
> >threaded. That doesn't solve your space problem, but is only one email to delete.
> >
> >Neither has links, so you would need to go to the Empathy archive site to look.
> >
> >[I didn't write it! Don't blame me.]
> >
> >I'll email you examples of the two, if you want that daily-ish, let me know which.
> >
> >> -----Original Message-----
> >> From: info@hjcreations.nl [mailto:info@hjcreations.nl]
> >> Sent: Fri, 9 Jul 2021 16:00
> >> To: OpenSCAD general discussion
> >> Subject: [OpenSCAD] Re: problems that folk have with emails
> >>
> >> Hi all,
> >>
> >> I think it would be more nice to just got a link to the related
> >> discussion.
> >> Now my (and yours of course) are full of replies and just using space
> >> specially when pictures are included.
> >>
> >> So I would be more then happy with 'only' link to discussion.
> >>
> >>
> >>
> >> Gareth Chen schreef op 2021-07-09 01:24:
> >> > I can see my own emails in my Gmail inbox, though not reflected to my
> >> > by the mailing list. They just show up as messages in a thread, as it
> >> > would for a normal conversation. I think Terry is using a standalone
> >> > client to read his mail, and I'm guessing it doesn't recognize his
> >> > messages as part of the same thread.
> >> > _______________________________________________
> >> > OpenSCAD mailing list
> >> > To unsubscribe send an email to discuss-leave@lists.openscad.org
> >> _______________________________________________
> >> OpenSCAD mailing list
> >> To unsubscribe send an email to discuss-leave@lists.openscad.org
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
--
This email has been checked for viruses by AVG.
https://www.avg.com
NH
nop head
Sat, Jul 10, 2021 7:42 AM
Note that I haven't sorted anything. It just works with the gmail web
client. There is no difference between sending an email to an individual
and getting a reply or sending it to the discussion group and getting a
reply. My own sent emails get shown interspersed with the replies. It has
been many years since I used a stand alone email client, Thunderbird, but I
think it did the same. An email client that doesn't show your own posts in
between replies would be very confusing I think. Why would a discussion
group be any different to a normal conversation?
On Sat, 10 Jul 2021 at 03:53, MichaelAtOz oz.at.michael@gmail.com wrote:
Perhaps a thread, say 'Email issues'
Each problem usually has its own set of issues.
Old threads deserve to get older, die and fade away.
It is NOT a good idea to resurrect an old thread UNLESS it is still
directly relevant and you have new relevant information.
Just because an old thread seems similar, DON'T use it,
it will bring along all the old baggage.
-----Original Message-----
Sent: Sat, 10 Jul 2021 00:44
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
Thanks Michael, I'll persevere as it stands, following up your and
others' suggestions. I'll probably handle it using the filters in my
offline email app, Agent, after BCC'ing myself on posts to the list. But
other gmail users such as nop head and Gareth have clearly sorted it, so
I'll get there eventually...
Sorry about the 'corruption', I'll desist! Although not to the extent of
NOW switching to another thread (e.g to reply to your reply) as
info@hjcreations seems to suggest?
Perhaps a thread, say 'Email issues', could be used for any future
discussion on such topics?
On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
I think it would be more nice to just got a link to the related
discussion. There is no option to do that for individual messages.
If you are happy with daily-ish delivery, you can get a Digest email.
Either a plain text all on one (no attachments/photos).
Or where each MIME message as an attachment (with internal attachments,
threaded. That doesn't solve your space problem, but is only one email
Neither has links, so you would need to go to the Empathy archive site
[I didn't write it! Don't blame me.]
I'll email you examples of the two, if you want that daily-ish, let me
-----Original Message-----
Sent: Fri, 9 Jul 2021 16:00
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
I think it would be more nice to just got a link to the related
Now my (and yours of course) are full of replies and just using space
specially when pictures are included.
So I would be more then happy with 'only' link to discussion.
Gareth Chen schreef op 2021-07-09 01:24:
I can see my own emails in my Gmail inbox, though not reflected to
by the mailing list. They just show up as messages in a thread, as
would for a normal conversation. I think Terry is using a standalone
client to read his mail, and I'm guessing it doesn't recognize his
messages as part of the same thread.
Note that I haven't sorted anything. It just works with the gmail web
client. There is no difference between sending an email to an individual
and getting a reply or sending it to the discussion group and getting a
reply. My own sent emails get shown interspersed with the replies. It has
been many years since I used a stand alone email client, Thunderbird, but I
think it did the same. An email client that doesn't show your own posts in
between replies would be very confusing I think. Why would a discussion
group be any different to a normal conversation?
On Sat, 10 Jul 2021 at 03:53, MichaelAtOz <oz.at.michael@gmail.com> wrote:
> > Perhaps a thread, say 'Email issues'
>
>
>
> Each problem usually has its own set of issues.
>
>
>
> Old threads deserve to get older, die and fade away.
>
>
>
> It is NOT a good idea to resurrect an old thread UNLESS it is still
>
> *directly* relevant and you have new relevant information.
>
>
>
> Just because an old thread seems similar, DON'T use it,
>
> it will bring along all the old baggage.
>
>
>
>
>
>
>
> > -----Original Message-----
>
> > From: Terry [mailto:terrypingm@gmail.com]
>
> > Sent: Sat, 10 Jul 2021 00:44
>
> > To: OpenSCAD general discussion
>
> > Subject: [OpenSCAD] Re: problems that folk have with emails
>
> >
>
> > Thanks Michael, I'll persevere as it stands, following up your and
>
> > others' suggestions. I'll probably handle it using the filters in my
>
> > offline email app, Agent, after BCC'ing myself on posts to the list. But
>
> > other gmail users such as nop head and Gareth have clearly sorted it, so
>
> > I'll get there eventually...
>
> >
>
> > Sorry about the 'corruption', I'll desist! Although not to the extent of
>
> > NOW switching to another thread (e.g to reply to your reply) as
>
> > info@hjcreations seems to suggest?
>
> >
>
> > Perhaps a thread, say 'Email issues', could be used for any future
>
> > discussion on such topics?
>
> >
>
> > Terry
>
> >
>
> > ====================
>
> >
>
> > On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
>
> >
>
> > >> I think it would be more nice to just got a link to the related
>
> > >> discussion. There is no option to do that for individual messages.
>
> > >
>
> > >If you are happy with daily-ish delivery, you can get a Digest email.
>
> > >Either a plain text all on one (no attachments/photos).
>
> > >Or where each MIME message as an attachment (with internal attachments,
> images etc), but
>
> > not
>
> > >threaded. That doesn't solve your space problem, but is only one email
> to delete.
>
> > >
>
> > >Neither has links, so you would need to go to the Empathy archive site
> to look.
>
> > >
>
> > >[I didn't write it! Don't blame me.]
>
> > >
>
> > >I'll email you examples of the two, if you want that daily-ish, let me
> know which.
>
> > >
>
> > >> -----Original Message-----
>
> > >> From: info@hjcreations.nl [mailto:info@hjcreations.nl]
>
> > >> Sent: Fri, 9 Jul 2021 16:00
>
> > >> To: OpenSCAD general discussion
>
> > >> Subject: [OpenSCAD] Re: problems that folk have with emails
>
> > >>
>
> > >> Hi all,
>
> > >>
>
> > >> I think it would be more nice to just got a link to the related
>
> > >> discussion.
>
> > >> Now my (and yours of course) are full of replies and just using space
>
> > >> specially when pictures are included.
>
> > >>
>
> > >> So I would be more then happy with 'only' link to discussion.
>
> > >>
>
> > >>
>
> > >>
>
> > >> Gareth Chen schreef op 2021-07-09 01:24:
>
> > >> > I can see my own emails in my Gmail inbox, though not reflected to
> my
>
> > >> > by the mailing list. They just show up as messages in a thread, as
> it
>
> > >> > would for a normal conversation. I think Terry is using a standalone
>
> > >> > client to read his mail, and I'm guessing it doesn't recognize his
>
> > >> > messages as part of the same thread.
>
> > >> > _______________________________________________
>
> > >> > OpenSCAD mailing list
>
> > >> > To unsubscribe send an email to discuss-leave@lists.openscad.org
>
> > >> _______________________________________________
>
> > >> OpenSCAD mailing list
>
> > >> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
> > _______________________________________________
>
> > OpenSCAD mailing list
>
> > To unsubscribe send an email to discuss-leave@lists.openscad.org
>
>
> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient> Virus-free.
> www.avg.com
> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
> <#m_-4447582474516396158_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
TP
Terry Pinnell
Sat, Jul 10, 2021 10:51 AM
OK, understood. I'll reply this time from my browser's Gmail page, where
I'm reading incoming mail, to see the result here and my preferred Agent,
On Sat, 10 Jul 2021 at 08:43, nop head nop.head@gmail.com wrote:
Note that I haven't sorted anything. It just works with the gmail web
client. There is no difference between sending an email to an individual
and getting a reply or sending it to the discussion group and getting a
reply. My own sent emails get shown interspersed with the replies. It has
been many years since I used a stand alone email client, Thunderbird, but I
think it did the same. An email client that doesn't show your own posts in
between replies would be very confusing I think. Why would a discussion
group be any different to a normal conversation?
On Sat, 10 Jul 2021 at 03:53, MichaelAtOz oz.at.michael@gmail.com wrote:
Perhaps a thread, say 'Email issues'
Each problem usually has its own set of issues.
Old threads deserve to get older, die and fade away.
It is NOT a good idea to resurrect an old thread UNLESS it is still
directly relevant and you have new relevant information.
Just because an old thread seems similar, DON'T use it,
it will bring along all the old baggage.
-----Original Message-----
Sent: Sat, 10 Jul 2021 00:44
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
Thanks Michael, I'll persevere as it stands, following up your and
others' suggestions. I'll probably handle it using the filters in my
offline email app, Agent, after BCC'ing myself on posts to the list. But
other gmail users such as nop head and Gareth have clearly sorted it, so
I'll get there eventually...
Sorry about the 'corruption', I'll desist! Although not to the extent of
NOW switching to another thread (e.g to reply to your reply) as
info@hjcreations seems to suggest?
Perhaps a thread, say 'Email issues', could be used for any future
discussion on such topics?
On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
I think it would be more nice to just got a link to the related
discussion. There is no option to do that for individual messages.
If you are happy with daily-ish delivery, you can get a Digest email.
Either a plain text all on one (no attachments/photos).
Or where each MIME message as an attachment (with internal
attachments, images etc), but
threaded. That doesn't solve your space problem, but is only one email
Neither has links, so you would need to go to the Empathy archive site
[I didn't write it! Don't blame me.]
I'll email you examples of the two, if you want that daily-ish, let me
-----Original Message-----
Sent: Fri, 9 Jul 2021 16:00
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
I think it would be more nice to just got a link to the related
Now my (and yours of course) are full of replies and just using space
specially when pictures are included.
So I would be more then happy with 'only' link to discussion.
Gareth Chen schreef op 2021-07-09 01:24:
I can see my own emails in my Gmail inbox, though not reflected to
by the mailing list. They just show up as messages in a thread, as
would for a normal conversation. I think Terry is using a
client to read his mail, and I'm guessing it doesn't recognize his
messages as part of the same thread.
OK, understood. I'll reply this time from my browser's Gmail page, where
I'm reading incoming mail, to see the result here and my preferred Agent,
On Sat, 10 Jul 2021 at 08:43, nop head <nop.head@gmail.com> wrote:
> Note that I haven't sorted anything. It just works with the gmail web
> client. There is no difference between sending an email to an individual
> and getting a reply or sending it to the discussion group and getting a
> reply. My own sent emails get shown interspersed with the replies. It has
> been many years since I used a stand alone email client, Thunderbird, but I
> think it did the same. An email client that doesn't show your own posts in
> between replies would be very confusing I think. Why would a discussion
> group be any different to a normal conversation?
>
> On Sat, 10 Jul 2021 at 03:53, MichaelAtOz <oz.at.michael@gmail.com> wrote:
>
>> > Perhaps a thread, say 'Email issues'
>>
>>
>>
>> Each problem usually has its own set of issues.
>>
>>
>>
>> Old threads deserve to get older, die and fade away.
>>
>>
>>
>> It is NOT a good idea to resurrect an old thread UNLESS it is still
>>
>> *directly* relevant and you have new relevant information.
>>
>>
>>
>> Just because an old thread seems similar, DON'T use it,
>>
>> it will bring along all the old baggage.
>>
>>
>>
>>
>>
>>
>>
>> > -----Original Message-----
>>
>> > From: Terry [mailto:terrypingm@gmail.com]
>>
>> > Sent: Sat, 10 Jul 2021 00:44
>>
>> > To: OpenSCAD general discussion
>>
>> > Subject: [OpenSCAD] Re: problems that folk have with emails
>>
>> >
>>
>> > Thanks Michael, I'll persevere as it stands, following up your and
>>
>> > others' suggestions. I'll probably handle it using the filters in my
>>
>> > offline email app, Agent, after BCC'ing myself on posts to the list. But
>>
>> > other gmail users such as nop head and Gareth have clearly sorted it, so
>>
>> > I'll get there eventually...
>>
>> >
>>
>> > Sorry about the 'corruption', I'll desist! Although not to the extent of
>>
>> > NOW switching to another thread (e.g to reply to your reply) as
>>
>> > info@hjcreations seems to suggest?
>>
>> >
>>
>> > Perhaps a thread, say 'Email issues', could be used for any future
>>
>> > discussion on such topics?
>>
>> >
>>
>> > Terry
>>
>> >
>>
>> > ====================
>>
>> >
>>
>> > On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
>>
>> >
>>
>> > >> I think it would be more nice to just got a link to the related
>>
>> > >> discussion. There is no option to do that for individual messages.
>>
>> > >
>>
>> > >If you are happy with daily-ish delivery, you can get a Digest email.
>>
>> > >Either a plain text all on one (no attachments/photos).
>>
>> > >Or where each MIME message as an attachment (with internal
>> attachments, images etc), but
>>
>> > not
>>
>> > >threaded. That doesn't solve your space problem, but is only one email
>> to delete.
>>
>> > >
>>
>> > >Neither has links, so you would need to go to the Empathy archive site
>> to look.
>>
>> > >
>>
>> > >[I didn't write it! Don't blame me.]
>>
>> > >
>>
>> > >I'll email you examples of the two, if you want that daily-ish, let me
>> know which.
>>
>> > >
>>
>> > >> -----Original Message-----
>>
>> > >> From: info@hjcreations.nl [mailto:info@hjcreations.nl]
>>
>> > >> Sent: Fri, 9 Jul 2021 16:00
>>
>> > >> To: OpenSCAD general discussion
>>
>> > >> Subject: [OpenSCAD] Re: problems that folk have with emails
>>
>> > >>
>>
>> > >> Hi all,
>>
>> > >>
>>
>> > >> I think it would be more nice to just got a link to the related
>>
>> > >> discussion.
>>
>> > >> Now my (and yours of course) are full of replies and just using space
>>
>> > >> specially when pictures are included.
>>
>> > >>
>>
>> > >> So I would be more then happy with 'only' link to discussion.
>>
>> > >>
>>
>> > >>
>>
>> > >>
>>
>> > >> Gareth Chen schreef op 2021-07-09 01:24:
>>
>> > >> > I can see my own emails in my Gmail inbox, though not reflected to
>> my
>>
>> > >> > by the mailing list. They just show up as messages in a thread, as
>> it
>>
>> > >> > would for a normal conversation. I think Terry is using a
>> standalone
>>
>> > >> > client to read his mail, and I'm guessing it doesn't recognize his
>>
>> > >> > messages as part of the same thread.
>>
>> > >> > _______________________________________________
>>
>> > >> > OpenSCAD mailing list
>>
>> > >> > To unsubscribe send an email to discuss-leave@lists.openscad.org
>>
>> > >> _______________________________________________
>>
>> > >> OpenSCAD mailing list
>>
>> > >> To unsubscribe send an email to discuss-leave@lists.openscad.org
>>
>> > _______________________________________________
>>
>> > OpenSCAD mailing list
>>
>> > To unsubscribe send an email to discuss-leave@lists.openscad.org
>>
>>
>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient> Virus-free.
>> www.avg.com
>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
>> <#m_-6408830850539072284_m_-4447582474516396158_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>> _______________________________________________
>> OpenSCAD mailing list
>> To unsubscribe send an email to discuss-leave@lists.openscad.org
>>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
T
Terry
Sat, Jul 10, 2021 3:26 PM
Pleased to say that I did promptly receive my earlier reply. And happily
also in Agent, apparently by using my recently added filter.
I'm posting THIS reply from my Agent email app. But this time without
sending myself a CC or BCC, which I may have done previously.
If I switch off 'Conversation view (shown in my screenshot), I do NOT
see my reply. Can you reproduce?
Albeit on very brief usage, one advantage of Gmail seems to be this: if
a subject title is changed, as it was in this thread, Gmail recognises
that. Agent does not. It has no thread called
'[OpenSCAD] problems that folk have with emails'. Instead, the posts
remain in '[OpenSCAD] New and a question', hard to find.
Terry
====================
On Sat, 10 Jul 2021 08:42:01 +0100, you wrote:
Note that I haven't sorted anything. It just works with the gmail web
client. There is no difference between sending an email to an individual
and getting a reply or sending it to the discussion group and getting a
reply. My own sent emails get shown interspersed with the replies. It has
been many years since I used a stand alone email client, Thunderbird, but I
think it did the same. An email client that doesn't show your own posts in
between replies would be very confusing I think. Why would a discussion
group be any different to a normal conversation?
On Sat, 10 Jul 2021 at 03:53, MichaelAtOz oz.at.michael@gmail.com wrote:
Perhaps a thread, say 'Email issues'
Each problem usually has its own set of issues.
Old threads deserve to get older, die and fade away.
It is NOT a good idea to resurrect an old thread UNLESS it is still
directly relevant and you have new relevant information.
Just because an old thread seems similar, DON'T use it,
it will bring along all the old baggage.
-----Original Message-----
From: Terry [mailto:terrypingm@gmail.com]
Sent: Sat, 10 Jul 2021 00:44
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
Thanks Michael, I'll persevere as it stands, following up your and
others' suggestions. I'll probably handle it using the filters in my
offline email app, Agent, after BCC'ing myself on posts to the list. But
other gmail users such as nop head and Gareth have clearly sorted it, so
I'll get there eventually...
Sorry about the 'corruption', I'll desist! Although not to the extent of
NOW switching to another thread (e.g to reply to your reply) as
info@hjcreations seems to suggest?
Perhaps a thread, say 'Email issues', could be used for any future
discussion on such topics?
Terry
====================
On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
I think it would be more nice to just got a link to the related
discussion. There is no option to do that for individual messages.
If you are happy with daily-ish delivery, you can get a Digest email.
Either a plain text all on one (no attachments/photos).
Or where each MIME message as an attachment (with internal attachments,
images etc), but
not
threaded. That doesn't solve your space problem, but is only one email
to delete.
Neither has links, so you would need to go to the Empathy archive site
to look.
[I didn't write it! Don't blame me.]
I'll email you examples of the two, if you want that daily-ish, let me
know which.
-----Original Message-----
From: info@hjcreations.nl [mailto:info@hjcreations.nl]
Sent: Fri, 9 Jul 2021 16:00
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
Hi all,
I think it would be more nice to just got a link to the related
discussion.
Now my (and yours of course) are full of replies and just using space
specially when pictures are included.
So I would be more then happy with 'only' link to discussion.
Gareth Chen schreef op 2021-07-09 01:24:
I can see my own emails in my Gmail inbox, though not reflected to
my
by the mailing list. They just show up as messages in a thread, as
it
would for a normal conversation. I think Terry is using a standalone
client to read his mail, and I'm guessing it doesn't recognize his
messages as part of the same thread.
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient Virus-free.
www.avg.com
http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient
<#m_-4447582474516396158_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
OpenSCAD mailing list
To unsubscribe send an email to discuss-leave@lists.openscad.org
Pleased to say that I did promptly receive my earlier reply. And happily
also in Agent, apparently by using my recently added filter.
I'm posting THIS reply from my Agent email app. But this time without
sending myself a CC or BCC, which I may have done previously.
If I switch off 'Conversation view (shown in my screenshot), I do NOT
see my reply. Can you reproduce?
Albeit on very brief usage, one advantage of Gmail seems to be this: if
a subject title is changed, as it was in this thread, Gmail recognises
that. Agent does not. It has no thread called
'[OpenSCAD] problems that folk have with emails'. Instead, the posts
remain in '[OpenSCAD] New and a question', hard to find.
Terry
====================
On Sat, 10 Jul 2021 08:42:01 +0100, you wrote:
>Note that I haven't sorted anything. It just works with the gmail web
>client. There is no difference between sending an email to an individual
>and getting a reply or sending it to the discussion group and getting a
>reply. My own sent emails get shown interspersed with the replies. It has
>been many years since I used a stand alone email client, Thunderbird, but I
>think it did the same. An email client that doesn't show your own posts in
>between replies would be very confusing I think. Why would a discussion
>group be any different to a normal conversation?
>
>On Sat, 10 Jul 2021 at 03:53, MichaelAtOz <oz.at.michael@gmail.com> wrote:
>
>> > Perhaps a thread, say 'Email issues'
>>
>>
>>
>> Each problem usually has its own set of issues.
>>
>>
>>
>> Old threads deserve to get older, die and fade away.
>>
>>
>>
>> It is NOT a good idea to resurrect an old thread UNLESS it is still
>>
>> *directly* relevant and you have new relevant information.
>>
>>
>>
>> Just because an old thread seems similar, DON'T use it,
>>
>> it will bring along all the old baggage.
>>
>>
>>
>>
>>
>>
>>
>> > -----Original Message-----
>>
>> > From: Terry [mailto:terrypingm@gmail.com]
>>
>> > Sent: Sat, 10 Jul 2021 00:44
>>
>> > To: OpenSCAD general discussion
>>
>> > Subject: [OpenSCAD] Re: problems that folk have with emails
>>
>> >
>>
>> > Thanks Michael, I'll persevere as it stands, following up your and
>>
>> > others' suggestions. I'll probably handle it using the filters in my
>>
>> > offline email app, Agent, after BCC'ing myself on posts to the list. But
>>
>> > other gmail users such as nop head and Gareth have clearly sorted it, so
>>
>> > I'll get there eventually...
>>
>> >
>>
>> > Sorry about the 'corruption', I'll desist! Although not to the extent of
>>
>> > NOW switching to another thread (e.g to reply to your reply) as
>>
>> > info@hjcreations seems to suggest?
>>
>> >
>>
>> > Perhaps a thread, say 'Email issues', could be used for any future
>>
>> > discussion on such topics?
>>
>> >
>>
>> > Terry
>>
>> >
>>
>> > ====================
>>
>> >
>>
>> > On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
>>
>> >
>>
>> > >> I think it would be more nice to just got a link to the related
>>
>> > >> discussion. There is no option to do that for individual messages.
>>
>> > >
>>
>> > >If you are happy with daily-ish delivery, you can get a Digest email.
>>
>> > >Either a plain text all on one (no attachments/photos).
>>
>> > >Or where each MIME message as an attachment (with internal attachments,
>> images etc), but
>>
>> > not
>>
>> > >threaded. That doesn't solve your space problem, but is only one email
>> to delete.
>>
>> > >
>>
>> > >Neither has links, so you would need to go to the Empathy archive site
>> to look.
>>
>> > >
>>
>> > >[I didn't write it! Don't blame me.]
>>
>> > >
>>
>> > >I'll email you examples of the two, if you want that daily-ish, let me
>> know which.
>>
>> > >
>>
>> > >> -----Original Message-----
>>
>> > >> From: info@hjcreations.nl [mailto:info@hjcreations.nl]
>>
>> > >> Sent: Fri, 9 Jul 2021 16:00
>>
>> > >> To: OpenSCAD general discussion
>>
>> > >> Subject: [OpenSCAD] Re: problems that folk have with emails
>>
>> > >>
>>
>> > >> Hi all,
>>
>> > >>
>>
>> > >> I think it would be more nice to just got a link to the related
>>
>> > >> discussion.
>>
>> > >> Now my (and yours of course) are full of replies and just using space
>>
>> > >> specially when pictures are included.
>>
>> > >>
>>
>> > >> So I would be more then happy with 'only' link to discussion.
>>
>> > >>
>>
>> > >>
>>
>> > >>
>>
>> > >> Gareth Chen schreef op 2021-07-09 01:24:
>>
>> > >> > I can see my own emails in my Gmail inbox, though not reflected to
>> my
>>
>> > >> > by the mailing list. They just show up as messages in a thread, as
>> it
>>
>> > >> > would for a normal conversation. I think Terry is using a standalone
>>
>> > >> > client to read his mail, and I'm guessing it doesn't recognize his
>>
>> > >> > messages as part of the same thread.
>>
>> > >> > _______________________________________________
>>
>> > >> > OpenSCAD mailing list
>>
>> > >> > To unsubscribe send an email to discuss-leave@lists.openscad.org
>>
>> > >> _______________________________________________
>>
>> > >> OpenSCAD mailing list
>>
>> > >> To unsubscribe send an email to discuss-leave@lists.openscad.org
>>
>> > _______________________________________________
>>
>> > OpenSCAD mailing list
>>
>> > To unsubscribe send an email to discuss-leave@lists.openscad.org
>>
>>
>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient> Virus-free.
>> www.avg.com
>> <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
>> <#m_-4447582474516396158_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>> _______________________________________________
>> OpenSCAD mailing list
>> To unsubscribe send an email to discuss-leave@lists.openscad.org
>>
TP
Terry Pinnell
Sat, Jul 10, 2021 3:32 PM
Pleased to say that I did promptly receive my earlier reply. And happily
also in Agent, apparently by using my recently added filter.
I'm posting THIS reply from my Agent email app. But this time without
sending myself a CC or BCC, which I may have done previously.
If I switch off 'Conversation view (shown in my screenshot), I do NOT
see my reply. Can you reproduce?
Albeit on very brief usage, one advantage of Gmail seems to be this: if
a subject title is changed, as it was in this thread, Gmail recognises
that. Agent does not. It has no thread called
'[OpenSCAD] problems that folk have with emails'. Instead, the posts
remain in '[OpenSCAD] New and a question', hard to find.
Terry
====================
On Sat, 10 Jul 2021 08:42:01 +0100, you wrote:
Note that I haven't sorted anything. It just works with the gmail web
client. There is no difference between sending an email to an individual
and getting a reply or sending it to the discussion group and getting a
reply. My own sent emails get shown interspersed with the replies. It has
been many years since I used a stand alone email client, Thunderbird, but
think it did the same. An email client that doesn't show your own posts in
between replies would be very confusing I think. Why would a discussion
group be any different to a normal conversation?
On Sat, 10 Jul 2021 at 03:53, MichaelAtOz oz.at.michael@gmail.com
Perhaps a thread, say 'Email issues'
Each problem usually has its own set of issues.
Old threads deserve to get older, die and fade away.
It is NOT a good idea to resurrect an old thread UNLESS it is still
directly relevant and you have new relevant information.
Just because an old thread seems similar, DON'T use it,
it will bring along all the old baggage.
-----Original Message-----
Sent: Sat, 10 Jul 2021 00:44
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
Thanks Michael, I'll persevere as it stands, following up your and
others' suggestions. I'll probably handle it using the filters in my
offline email app, Agent, after BCC'ing myself on posts to the list.
other gmail users such as nop head and Gareth have clearly sorted it,
I'll get there eventually...
Sorry about the 'corruption', I'll desist! Although not to the extent
NOW switching to another thread (e.g to reply to your reply) as
info@hjcreations seems to suggest?
Perhaps a thread, say 'Email issues', could be used for any future
discussion on such topics?
On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
I think it would be more nice to just got a link to the related
discussion. There is no option to do that for individual messages.
If you are happy with daily-ish delivery, you can get a Digest email.
Either a plain text all on one (no attachments/photos).
Or where each MIME message as an attachment (with internal
threaded. That doesn't solve your space problem, but is only one
Neither has links, so you would need to go to the Empathy archive
[I didn't write it! Don't blame me.]
I'll email you examples of the two, if you want that daily-ish, let
-----Original Message-----
Sent: Fri, 9 Jul 2021 16:00
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
I think it would be more nice to just got a link to the related
Now my (and yours of course) are full of replies and just using
specially when pictures are included.
So I would be more then happy with 'only' link to discussion.
Gareth Chen schreef op 2021-07-09 01:24:
I can see my own emails in my Gmail inbox, though not reflected
by the mailing list. They just show up as messages in a thread,
would for a normal conversation. I think Terry is using a
client to read his mail, and I'm guessing it doesn't recognize
messages as part of the same thread.
Forgot the screenshot:
On Sat, 10 Jul 2021 at 16:26, Terry <terrypingm@gmail.com> wrote:
> Pleased to say that I did promptly receive my earlier reply. And happily
> also in Agent, apparently by using my recently added filter.
>
> I'm posting THIS reply from my Agent email app. But this time without
> sending myself a CC or BCC, which I may have done previously.
>
> If I switch off 'Conversation view (shown in my screenshot), I do NOT
> see my reply. Can you reproduce?
>
> Albeit on very brief usage, one advantage of Gmail seems to be this: if
> a subject title is changed, as it was in this thread, Gmail recognises
> that. Agent does not. It has no thread called
> '[OpenSCAD] problems that folk have with emails'. Instead, the posts
> remain in '[OpenSCAD] New and a question', hard to find.
>
> Terry
>
> ====================
>
>
> On Sat, 10 Jul 2021 08:42:01 +0100, you wrote:
>
> >Note that I haven't sorted anything. It just works with the gmail web
> >client. There is no difference between sending an email to an individual
> >and getting a reply or sending it to the discussion group and getting a
> >reply. My own sent emails get shown interspersed with the replies. It has
> >been many years since I used a stand alone email client, Thunderbird, but
> I
> >think it did the same. An email client that doesn't show your own posts in
> >between replies would be very confusing I think. Why would a discussion
> >group be any different to a normal conversation?
> >
> >On Sat, 10 Jul 2021 at 03:53, MichaelAtOz <oz.at.michael@gmail.com>
> wrote:
> >
> >> > Perhaps a thread, say 'Email issues'
> >>
> >>
> >>
> >> Each problem usually has its own set of issues.
> >>
> >>
> >>
> >> Old threads deserve to get older, die and fade away.
> >>
> >>
> >>
> >> It is NOT a good idea to resurrect an old thread UNLESS it is still
> >>
> >> *directly* relevant and you have new relevant information.
> >>
> >>
> >>
> >> Just because an old thread seems similar, DON'T use it,
> >>
> >> it will bring along all the old baggage.
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >> > -----Original Message-----
> >>
> >> > From: Terry [mailto:terrypingm@gmail.com]
> >>
> >> > Sent: Sat, 10 Jul 2021 00:44
> >>
> >> > To: OpenSCAD general discussion
> >>
> >> > Subject: [OpenSCAD] Re: problems that folk have with emails
> >>
> >> >
> >>
> >> > Thanks Michael, I'll persevere as it stands, following up your and
> >>
> >> > others' suggestions. I'll probably handle it using the filters in my
> >>
> >> > offline email app, Agent, after BCC'ing myself on posts to the list.
> But
> >>
> >> > other gmail users such as nop head and Gareth have clearly sorted it,
> so
> >>
> >> > I'll get there eventually...
> >>
> >> >
> >>
> >> > Sorry about the 'corruption', I'll desist! Although not to the extent
> of
> >>
> >> > NOW switching to another thread (e.g to reply to your reply) as
> >>
> >> > info@hjcreations seems to suggest?
> >>
> >> >
> >>
> >> > Perhaps a thread, say 'Email issues', could be used for any future
> >>
> >> > discussion on such topics?
> >>
> >> >
> >>
> >> > Terry
> >>
> >> >
> >>
> >> > ====================
> >>
> >> >
> >>
> >> > On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
> >>
> >> >
> >>
> >> > >> I think it would be more nice to just got a link to the related
> >>
> >> > >> discussion. There is no option to do that for individual messages.
> >>
> >> > >
> >>
> >> > >If you are happy with daily-ish delivery, you can get a Digest email.
> >>
> >> > >Either a plain text all on one (no attachments/photos).
> >>
> >> > >Or where each MIME message as an attachment (with internal
> attachments,
> >> images etc), but
> >>
> >> > not
> >>
> >> > >threaded. That doesn't solve your space problem, but is only one
> email
> >> to delete.
> >>
> >> > >
> >>
> >> > >Neither has links, so you would need to go to the Empathy archive
> site
> >> to look.
> >>
> >> > >
> >>
> >> > >[I didn't write it! Don't blame me.]
> >>
> >> > >
> >>
> >> > >I'll email you examples of the two, if you want that daily-ish, let
> me
> >> know which.
> >>
> >> > >
> >>
> >> > >> -----Original Message-----
> >>
> >> > >> From: info@hjcreations.nl [mailto:info@hjcreations.nl]
> >>
> >> > >> Sent: Fri, 9 Jul 2021 16:00
> >>
> >> > >> To: OpenSCAD general discussion
> >>
> >> > >> Subject: [OpenSCAD] Re: problems that folk have with emails
> >>
> >> > >>
> >>
> >> > >> Hi all,
> >>
> >> > >>
> >>
> >> > >> I think it would be more nice to just got a link to the related
> >>
> >> > >> discussion.
> >>
> >> > >> Now my (and yours of course) are full of replies and just using
> space
> >>
> >> > >> specially when pictures are included.
> >>
> >> > >>
> >>
> >> > >> So I would be more then happy with 'only' link to discussion.
> >>
> >> > >>
> >>
> >> > >>
> >>
> >> > >>
> >>
> >> > >> Gareth Chen schreef op 2021-07-09 01:24:
> >>
> >> > >> > I can see my own emails in my Gmail inbox, though not reflected
> to
> >> my
> >>
> >> > >> > by the mailing list. They just show up as messages in a thread,
> as
> >> it
> >>
> >> > >> > would for a normal conversation. I think Terry is using a
> standalone
> >>
> >> > >> > client to read his mail, and I'm guessing it doesn't recognize
> his
> >>
> >> > >> > messages as part of the same thread.
> >>
> >> > >> > _______________________________________________
> >>
> >> > >> > OpenSCAD mailing list
> >>
> >> > >> > To unsubscribe send an email to discuss-leave@lists.openscad.org
> >>
> >> > >> _______________________________________________
> >>
> >> > >> OpenSCAD mailing list
> >>
> >> > >> To unsubscribe send an email to discuss-leave@lists.openscad.org
> >>
> >> > _______________________________________________
> >>
> >> > OpenSCAD mailing list
> >>
> >> > To unsubscribe send an email to discuss-leave@lists.openscad.org
> >>
> >>
> >> <
> http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
> Virus-free.
> >> www.avg.com
> >> <
> http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient
> >
> >> <#m_-4447582474516396158_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
> >> _______________________________________________
> >> OpenSCAD mailing list
> >> To unsubscribe send an email to discuss-leave@lists.openscad.org
> >>
>
NH
nop head
Sat, Jul 10, 2021 4:25 PM
If I turn off conversation mode then I don't see my own emails in my inbox
but I do see them in All Mail and in my Sent items.
On Sat, 10 Jul 2021 at 16:32, Terry Pinnell terrypingm@gmail.com wrote:
Pleased to say that I did promptly receive my earlier reply. And happily
also in Agent, apparently by using my recently added filter.
I'm posting THIS reply from my Agent email app. But this time without
sending myself a CC or BCC, which I may have done previously.
If I switch off 'Conversation view (shown in my screenshot), I do NOT
see my reply. Can you reproduce?
Albeit on very brief usage, one advantage of Gmail seems to be this: if
a subject title is changed, as it was in this thread, Gmail recognises
that. Agent does not. It has no thread called
'[OpenSCAD] problems that folk have with emails'. Instead, the posts
remain in '[OpenSCAD] New and a question', hard to find.
Terry
====================
On Sat, 10 Jul 2021 08:42:01 +0100, you wrote:
Note that I haven't sorted anything. It just works with the gmail web
client. There is no difference between sending an email to an individual
and getting a reply or sending it to the discussion group and getting a
reply. My own sent emails get shown interspersed with the replies. It has
been many years since I used a stand alone email client, Thunderbird,
think it did the same. An email client that doesn't show your own posts
between replies would be very confusing I think. Why would a discussion
group be any different to a normal conversation?
On Sat, 10 Jul 2021 at 03:53, MichaelAtOz oz.at.michael@gmail.com
Perhaps a thread, say 'Email issues'
Each problem usually has its own set of issues.
Old threads deserve to get older, die and fade away.
It is NOT a good idea to resurrect an old thread UNLESS it is still
directly relevant and you have new relevant information.
Just because an old thread seems similar, DON'T use it,
it will bring along all the old baggage.
-----Original Message-----
Sent: Sat, 10 Jul 2021 00:44
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
Thanks Michael, I'll persevere as it stands, following up your and
others' suggestions. I'll probably handle it using the filters in my
offline email app, Agent, after BCC'ing myself on posts to the list.
other gmail users such as nop head and Gareth have clearly sorted
I'll get there eventually...
Sorry about the 'corruption', I'll desist! Although not to the
NOW switching to another thread (e.g to reply to your reply) as
info@hjcreations seems to suggest?
Perhaps a thread, say 'Email issues', could be used for any future
discussion on such topics?
On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
I think it would be more nice to just got a link to the related
discussion. There is no option to do that for individual messages.
If you are happy with daily-ish delivery, you can get a Digest
Either a plain text all on one (no attachments/photos).
Or where each MIME message as an attachment (with internal
threaded. That doesn't solve your space problem, but is only one
Neither has links, so you would need to go to the Empathy archive
[I didn't write it! Don't blame me.]
I'll email you examples of the two, if you want that daily-ish, let
-----Original Message-----
Sent: Fri, 9 Jul 2021 16:00
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
I think it would be more nice to just got a link to the related
Now my (and yours of course) are full of replies and just using
specially when pictures are included.
So I would be more then happy with 'only' link to discussion.
Gareth Chen schreef op 2021-07-09 01:24:
I can see my own emails in my Gmail inbox, though not reflected
by the mailing list. They just show up as messages in a thread,
would for a normal conversation. I think Terry is using a
client to read his mail, and I'm guessing it doesn't recognize
messages as part of the same thread.
To unsubscribe send an email to
If I turn off conversation mode then I don't see my own emails in my inbox
but I do see them in All Mail and in my Sent items.
On Sat, 10 Jul 2021 at 16:32, Terry Pinnell <terrypingm@gmail.com> wrote:
> Forgot the screenshot:
>
> On Sat, 10 Jul 2021 at 16:26, Terry <terrypingm@gmail.com> wrote:
>
>> Pleased to say that I did promptly receive my earlier reply. And happily
>> also in Agent, apparently by using my recently added filter.
>>
>> I'm posting THIS reply from my Agent email app. But this time without
>> sending myself a CC or BCC, which I may have done previously.
>>
>> If I switch off 'Conversation view (shown in my screenshot), I do NOT
>> see my reply. Can you reproduce?
>>
>> Albeit on very brief usage, one advantage of Gmail seems to be this: if
>> a subject title is changed, as it was in this thread, Gmail recognises
>> that. Agent does not. It has no thread called
>> '[OpenSCAD] problems that folk have with emails'. Instead, the posts
>> remain in '[OpenSCAD] New and a question', hard to find.
>>
>> Terry
>>
>> ====================
>>
>>
>> On Sat, 10 Jul 2021 08:42:01 +0100, you wrote:
>>
>> >Note that I haven't sorted anything. It just works with the gmail web
>> >client. There is no difference between sending an email to an individual
>> >and getting a reply or sending it to the discussion group and getting a
>> >reply. My own sent emails get shown interspersed with the replies. It has
>> >been many years since I used a stand alone email client, Thunderbird,
>> but I
>> >think it did the same. An email client that doesn't show your own posts
>> in
>> >between replies would be very confusing I think. Why would a discussion
>> >group be any different to a normal conversation?
>> >
>> >On Sat, 10 Jul 2021 at 03:53, MichaelAtOz <oz.at.michael@gmail.com>
>> wrote:
>> >
>> >> > Perhaps a thread, say 'Email issues'
>> >>
>> >>
>> >>
>> >> Each problem usually has its own set of issues.
>> >>
>> >>
>> >>
>> >> Old threads deserve to get older, die and fade away.
>> >>
>> >>
>> >>
>> >> It is NOT a good idea to resurrect an old thread UNLESS it is still
>> >>
>> >> *directly* relevant and you have new relevant information.
>> >>
>> >>
>> >>
>> >> Just because an old thread seems similar, DON'T use it,
>> >>
>> >> it will bring along all the old baggage.
>> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>> >> > -----Original Message-----
>> >>
>> >> > From: Terry [mailto:terrypingm@gmail.com]
>> >>
>> >> > Sent: Sat, 10 Jul 2021 00:44
>> >>
>> >> > To: OpenSCAD general discussion
>> >>
>> >> > Subject: [OpenSCAD] Re: problems that folk have with emails
>> >>
>> >> >
>> >>
>> >> > Thanks Michael, I'll persevere as it stands, following up your and
>> >>
>> >> > others' suggestions. I'll probably handle it using the filters in my
>> >>
>> >> > offline email app, Agent, after BCC'ing myself on posts to the list.
>> But
>> >>
>> >> > other gmail users such as nop head and Gareth have clearly sorted
>> it, so
>> >>
>> >> > I'll get there eventually...
>> >>
>> >> >
>> >>
>> >> > Sorry about the 'corruption', I'll desist! Although not to the
>> extent of
>> >>
>> >> > NOW switching to another thread (e.g to reply to your reply) as
>> >>
>> >> > info@hjcreations seems to suggest?
>> >>
>> >> >
>> >>
>> >> > Perhaps a thread, say 'Email issues', could be used for any future
>> >>
>> >> > discussion on such topics?
>> >>
>> >> >
>> >>
>> >> > Terry
>> >>
>> >> >
>> >>
>> >> > ====================
>> >>
>> >> >
>> >>
>> >> > On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
>> >>
>> >> >
>> >>
>> >> > >> I think it would be more nice to just got a link to the related
>> >>
>> >> > >> discussion. There is no option to do that for individual messages.
>> >>
>> >> > >
>> >>
>> >> > >If you are happy with daily-ish delivery, you can get a Digest
>> email.
>> >>
>> >> > >Either a plain text all on one (no attachments/photos).
>> >>
>> >> > >Or where each MIME message as an attachment (with internal
>> attachments,
>> >> images etc), but
>> >>
>> >> > not
>> >>
>> >> > >threaded. That doesn't solve your space problem, but is only one
>> email
>> >> to delete.
>> >>
>> >> > >
>> >>
>> >> > >Neither has links, so you would need to go to the Empathy archive
>> site
>> >> to look.
>> >>
>> >> > >
>> >>
>> >> > >[I didn't write it! Don't blame me.]
>> >>
>> >> > >
>> >>
>> >> > >I'll email you examples of the two, if you want that daily-ish, let
>> me
>> >> know which.
>> >>
>> >> > >
>> >>
>> >> > >> -----Original Message-----
>> >>
>> >> > >> From: info@hjcreations.nl [mailto:info@hjcreations.nl]
>> >>
>> >> > >> Sent: Fri, 9 Jul 2021 16:00
>> >>
>> >> > >> To: OpenSCAD general discussion
>> >>
>> >> > >> Subject: [OpenSCAD] Re: problems that folk have with emails
>> >>
>> >> > >>
>> >>
>> >> > >> Hi all,
>> >>
>> >> > >>
>> >>
>> >> > >> I think it would be more nice to just got a link to the related
>> >>
>> >> > >> discussion.
>> >>
>> >> > >> Now my (and yours of course) are full of replies and just using
>> space
>> >>
>> >> > >> specially when pictures are included.
>> >>
>> >> > >>
>> >>
>> >> > >> So I would be more then happy with 'only' link to discussion.
>> >>
>> >> > >>
>> >>
>> >> > >>
>> >>
>> >> > >>
>> >>
>> >> > >> Gareth Chen schreef op 2021-07-09 01:24:
>> >>
>> >> > >> > I can see my own emails in my Gmail inbox, though not reflected
>> to
>> >> my
>> >>
>> >> > >> > by the mailing list. They just show up as messages in a thread,
>> as
>> >> it
>> >>
>> >> > >> > would for a normal conversation. I think Terry is using a
>> standalone
>> >>
>> >> > >> > client to read his mail, and I'm guessing it doesn't recognize
>> his
>> >>
>> >> > >> > messages as part of the same thread.
>> >>
>> >> > >> > _______________________________________________
>> >>
>> >> > >> > OpenSCAD mailing list
>> >>
>> >> > >> > To unsubscribe send an email to
>> discuss-leave@lists.openscad.org
>> >>
>> >> > >> _______________________________________________
>> >>
>> >> > >> OpenSCAD mailing list
>> >>
>> >> > >> To unsubscribe send an email to discuss-leave@lists.openscad.org
>> >>
>> >> > _______________________________________________
>> >>
>> >> > OpenSCAD mailing list
>> >>
>> >> > To unsubscribe send an email to discuss-leave@lists.openscad.org
>> >>
>> >>
>> >> <
>> http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
>> Virus-free.
>> >> www.avg.com
>> >> <
>> http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient
>> >
>> >> <#m_-4447582474516396158_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>> >> _______________________________________________
>> >> OpenSCAD mailing list
>> >> To unsubscribe send an email to discuss-leave@lists.openscad.org
>> >>
>>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>
TP
Terry Pinnell
Sat, Jul 10, 2021 5:28 PM
If I turn off conversation mode then I don't see my own emails in my inbox
but I do see them in All Mail and in my Sent items.
On Sat, 10 Jul 2021 at 16:32, Terry Pinnell terrypingm@gmail.com wrote:
Pleased to say that I did promptly receive my earlier reply. And happily
also in Agent, apparently by using my recently added filter.
I'm posting THIS reply from my Agent email app. But this time without
sending myself a CC or BCC, which I may have done previously.
If I switch off 'Conversation view (shown in my screenshot), I do NOT
see my reply. Can you reproduce?
Albeit on very brief usage, one advantage of Gmail seems to be this: if
a subject title is changed, as it was in this thread, Gmail recognises
that. Agent does not. It has no thread called
'[OpenSCAD] problems that folk have with emails'. Instead, the posts
remain in '[OpenSCAD] New and a question', hard to find.
Terry
====================
On Sat, 10 Jul 2021 08:42:01 +0100, you wrote:
Note that I haven't sorted anything. It just works with the gmail web
client. There is no difference between sending an email to an individual
and getting a reply or sending it to the discussion group and getting a
reply. My own sent emails get shown interspersed with the replies. It
been many years since I used a stand alone email client, Thunderbird,
think it did the same. An email client that doesn't show your own posts
between replies would be very confusing I think. Why would a discussion
group be any different to a normal conversation?
On Sat, 10 Jul 2021 at 03:53, MichaelAtOz oz.at.michael@gmail.com
Perhaps a thread, say 'Email issues'
Each problem usually has its own set of issues.
Old threads deserve to get older, die and fade away.
It is NOT a good idea to resurrect an old thread UNLESS it is still
directly relevant and you have new relevant information.
Just because an old thread seems similar, DON'T use it,
it will bring along all the old baggage.
-----Original Message-----
Sent: Sat, 10 Jul 2021 00:44
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
Thanks Michael, I'll persevere as it stands, following up your and
others' suggestions. I'll probably handle it using the filters in my
offline email app, Agent, after BCC'ing myself on posts to the
other gmail users such as nop head and Gareth have clearly sorted
I'll get there eventually...
Sorry about the 'corruption', I'll desist! Although not to the
NOW switching to another thread (e.g to reply to your reply) as
info@hjcreations seems to suggest?
Perhaps a thread, say 'Email issues', could be used for any future
discussion on such topics?
On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
I think it would be more nice to just got a link to the related
discussion. There is no option to do that for individual
If you are happy with daily-ish delivery, you can get a Digest
Either a plain text all on one (no attachments/photos).
Or where each MIME message as an attachment (with internal
threaded. That doesn't solve your space problem, but is only one
Neither has links, so you would need to go to the Empathy archive
[I didn't write it! Don't blame me.]
I'll email you examples of the two, if you want that daily-ish,
-----Original Message-----
Sent: Fri, 9 Jul 2021 16:00
To: OpenSCAD general discussion
Subject: [OpenSCAD] Re: problems that folk have with emails
I think it would be more nice to just got a link to the related
Now my (and yours of course) are full of replies and just using
specially when pictures are included.
So I would be more then happy with 'only' link to discussion.
Gareth Chen schreef op 2021-07-09 01:24:
I can see my own emails in my Gmail inbox, though not
by the mailing list. They just show up as messages in a
would for a normal conversation. I think Terry is using a
client to read his mail, and I'm guessing it doesn't recognize
messages as part of the same thread.
To unsubscribe send an email to
Thanks, same here.
On Sat, 10 Jul 2021 at 17:26, nop head <nop.head@gmail.com> wrote:
> If I turn off conversation mode then I don't see my own emails in my inbox
> but I do see them in All Mail and in my Sent items.
>
> On Sat, 10 Jul 2021 at 16:32, Terry Pinnell <terrypingm@gmail.com> wrote:
>
>> Forgot the screenshot:
>>
>> On Sat, 10 Jul 2021 at 16:26, Terry <terrypingm@gmail.com> wrote:
>>
>>> Pleased to say that I did promptly receive my earlier reply. And happily
>>> also in Agent, apparently by using my recently added filter.
>>>
>>> I'm posting THIS reply from my Agent email app. But this time without
>>> sending myself a CC or BCC, which I may have done previously.
>>>
>>> If I switch off 'Conversation view (shown in my screenshot), I do NOT
>>> see my reply. Can you reproduce?
>>>
>>> Albeit on very brief usage, one advantage of Gmail seems to be this: if
>>> a subject title is changed, as it was in this thread, Gmail recognises
>>> that. Agent does not. It has no thread called
>>> '[OpenSCAD] problems that folk have with emails'. Instead, the posts
>>> remain in '[OpenSCAD] New and a question', hard to find.
>>>
>>> Terry
>>>
>>> ====================
>>>
>>>
>>> On Sat, 10 Jul 2021 08:42:01 +0100, you wrote:
>>>
>>> >Note that I haven't sorted anything. It just works with the gmail web
>>> >client. There is no difference between sending an email to an individual
>>> >and getting a reply or sending it to the discussion group and getting a
>>> >reply. My own sent emails get shown interspersed with the replies. It
>>> has
>>> >been many years since I used a stand alone email client, Thunderbird,
>>> but I
>>> >think it did the same. An email client that doesn't show your own posts
>>> in
>>> >between replies would be very confusing I think. Why would a discussion
>>> >group be any different to a normal conversation?
>>> >
>>> >On Sat, 10 Jul 2021 at 03:53, MichaelAtOz <oz.at.michael@gmail.com>
>>> wrote:
>>> >
>>> >> > Perhaps a thread, say 'Email issues'
>>> >>
>>> >>
>>> >>
>>> >> Each problem usually has its own set of issues.
>>> >>
>>> >>
>>> >>
>>> >> Old threads deserve to get older, die and fade away.
>>> >>
>>> >>
>>> >>
>>> >> It is NOT a good idea to resurrect an old thread UNLESS it is still
>>> >>
>>> >> *directly* relevant and you have new relevant information.
>>> >>
>>> >>
>>> >>
>>> >> Just because an old thread seems similar, DON'T use it,
>>> >>
>>> >> it will bring along all the old baggage.
>>> >>
>>> >>
>>> >>
>>> >>
>>> >>
>>> >>
>>> >>
>>> >> > -----Original Message-----
>>> >>
>>> >> > From: Terry [mailto:terrypingm@gmail.com]
>>> >>
>>> >> > Sent: Sat, 10 Jul 2021 00:44
>>> >>
>>> >> > To: OpenSCAD general discussion
>>> >>
>>> >> > Subject: [OpenSCAD] Re: problems that folk have with emails
>>> >>
>>> >> >
>>> >>
>>> >> > Thanks Michael, I'll persevere as it stands, following up your and
>>> >>
>>> >> > others' suggestions. I'll probably handle it using the filters in my
>>> >>
>>> >> > offline email app, Agent, after BCC'ing myself on posts to the
>>> list. But
>>> >>
>>> >> > other gmail users such as nop head and Gareth have clearly sorted
>>> it, so
>>> >>
>>> >> > I'll get there eventually...
>>> >>
>>> >> >
>>> >>
>>> >> > Sorry about the 'corruption', I'll desist! Although not to the
>>> extent of
>>> >>
>>> >> > NOW switching to another thread (e.g to reply to your reply) as
>>> >>
>>> >> > info@hjcreations seems to suggest?
>>> >>
>>> >> >
>>> >>
>>> >> > Perhaps a thread, say 'Email issues', could be used for any future
>>> >>
>>> >> > discussion on such topics?
>>> >>
>>> >> >
>>> >>
>>> >> > Terry
>>> >>
>>> >> >
>>> >>
>>> >> > ====================
>>> >>
>>> >> >
>>> >>
>>> >> > On Fri, 9 Jul 2021 16:20:02 +1000, you wrote:
>>> >>
>>> >> >
>>> >>
>>> >> > >> I think it would be more nice to just got a link to the related
>>> >>
>>> >> > >> discussion. There is no option to do that for individual
>>> messages.
>>> >>
>>> >> > >
>>> >>
>>> >> > >If you are happy with daily-ish delivery, you can get a Digest
>>> email.
>>> >>
>>> >> > >Either a plain text all on one (no attachments/photos).
>>> >>
>>> >> > >Or where each MIME message as an attachment (with internal
>>> attachments,
>>> >> images etc), but
>>> >>
>>> >> > not
>>> >>
>>> >> > >threaded. That doesn't solve your space problem, but is only one
>>> email
>>> >> to delete.
>>> >>
>>> >> > >
>>> >>
>>> >> > >Neither has links, so you would need to go to the Empathy archive
>>> site
>>> >> to look.
>>> >>
>>> >> > >
>>> >>
>>> >> > >[I didn't write it! Don't blame me.]
>>> >>
>>> >> > >
>>> >>
>>> >> > >I'll email you examples of the two, if you want that daily-ish,
>>> let me
>>> >> know which.
>>> >>
>>> >> > >
>>> >>
>>> >> > >> -----Original Message-----
>>> >>
>>> >> > >> From: info@hjcreations.nl [mailto:info@hjcreations.nl]
>>> >>
>>> >> > >> Sent: Fri, 9 Jul 2021 16:00
>>> >>
>>> >> > >> To: OpenSCAD general discussion
>>> >>
>>> >> > >> Subject: [OpenSCAD] Re: problems that folk have with emails
>>> >>
>>> >> > >>
>>> >>
>>> >> > >> Hi all,
>>> >>
>>> >> > >>
>>> >>
>>> >> > >> I think it would be more nice to just got a link to the related
>>> >>
>>> >> > >> discussion.
>>> >>
>>> >> > >> Now my (and yours of course) are full of replies and just using
>>> space
>>> >>
>>> >> > >> specially when pictures are included.
>>> >>
>>> >> > >>
>>> >>
>>> >> > >> So I would be more then happy with 'only' link to discussion.
>>> >>
>>> >> > >>
>>> >>
>>> >> > >>
>>> >>
>>> >> > >>
>>> >>
>>> >> > >> Gareth Chen schreef op 2021-07-09 01:24:
>>> >>
>>> >> > >> > I can see my own emails in my Gmail inbox, though not
>>> reflected to
>>> >> my
>>> >>
>>> >> > >> > by the mailing list. They just show up as messages in a
>>> thread, as
>>> >> it
>>> >>
>>> >> > >> > would for a normal conversation. I think Terry is using a
>>> standalone
>>> >>
>>> >> > >> > client to read his mail, and I'm guessing it doesn't recognize
>>> his
>>> >>
>>> >> > >> > messages as part of the same thread.
>>> >>
>>> >> > >> > _______________________________________________
>>> >>
>>> >> > >> > OpenSCAD mailing list
>>> >>
>>> >> > >> > To unsubscribe send an email to
>>> discuss-leave@lists.openscad.org
>>> >>
>>> >> > >> _______________________________________________
>>> >>
>>> >> > >> OpenSCAD mailing list
>>> >>
>>> >> > >> To unsubscribe send an email to discuss-leave@lists.openscad.org
>>> >>
>>> >> > _______________________________________________
>>> >>
>>> >> > OpenSCAD mailing list
>>> >>
>>> >> > To unsubscribe send an email to discuss-leave@lists.openscad.org
>>> >>
>>> >>
>>> >> <
>>> http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient>
>>> Virus-free.
>>> >> www.avg.com
>>> >> <
>>> http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient
>>> >
>>> >> <#m_-4447582474516396158_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>>> >> _______________________________________________
>>> >> OpenSCAD mailing list
>>> >> To unsubscribe send an email to discuss-leave@lists.openscad.org
>>> >>
>>>
>> _______________________________________________
>> OpenSCAD mailing list
>> To unsubscribe send an email to discuss-leave@lists.openscad.org
>>
> _______________________________________________
> OpenSCAD mailing list
> To unsubscribe send an email to discuss-leave@lists.openscad.org
>