Re: Evolution email (problem?) (IMAP, Gmail, email compacting)

2023-04-30 Thread Tixy
On Sun, 2023-04-30 at 18:24 -0400, Default User wrote: > It does occur to me that Evolution may use the maildir format rather > than the mbox format.  I just ASSumed that it used mbox, since in Menu > > File, there is an option to save messages in mbox format.  If > Evolution uses the maildir forma

Re: how to reverse an IPv4, with awk

2023-04-30 Thread Geert Stappers
On Mon, May 01, 2023 at 02:24:18AM +0200, cor...@free.fr wrote: > Hello list, > > I wrote this script for reversing an IP: > > #!/bin/bash > > IP=$1 > > if [ -z $IP ];then > echo "$0 IP" > exit 1 > fi > > REVERSE=$(echo $IP|awk -F\. '{print $4.$3.$2.$1}') > echo $REVERSE > > > it won't w

Re: repeat of previous question that has gone unanswered several times.

2023-04-30 Thread David Wright
On Sun 30 Apr 2023 at 19:05:21 (-0400), gene heskett wrote: > > I have a mixed home network, some buster, some bullseye, all up to > date a/o yesterday. > > I have 2 printers shared on this bullseye main box, available as 5 or > 6 printers, each configured in cups to do a specific job. Good > pri

Re: Evolution email (problem?) (IMAP, Gmail, email compacting)

2023-04-30 Thread Max Nikulin
On 01/05/2023 05:36, Stefan Monnier wrote: According to this: https://support.mozilla.org/en-US/kb/compacting-folders This basically explains that compacting is an operation that should fundamentally be transparent to the user, and that Thunderbird makes the user aware of it for ... no good rea

Re: how to reverse an IPv4

2023-04-30 Thread David Wright
On Mon 01 May 2023 at 02:24:18 (+0200), cor...@free.fr wrote: > I wrote this script for reversing an IP: $ IP='12.34.56.78' $ sed -E 's/([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/\4.\3.\2.\1/' <<<"$IP" 78.56.34.12 $ or REVERSE="$(↑↑↑that stuff↑↑↑)" Cheers, David.

Re: No fool like an old fool (debian installation probs)

2023-04-30 Thread David Wright
On Mon 01 May 2023 at 03:11:56 (+0200), DdB wrote: > For example, when i allow the use of the swap partition, it gets > reformatted and another PARTUUID is assigned to it, leading to failures > booting other systems from that disk. The easy way to avoid that problem is to use LABEL rather than (P

No fool like an old fool (debian installation probs)

2023-04-30 Thread DdB
Hello list, after receiving so much good advice, i finally made up my mind and began playing through the installation (debian bullseye, current stable) in my simulation-VM in order to learn about the pitfalls to avoid. After more than a dozen tries, i am running out of fuel, because i am continuou

Re: how to reverse an IPv4

2023-04-30 Thread Lee
On 4/30/23, cor...@free.fr wrote: > Hello list, > > I wrote this script for reversing an IP: > > #!/bin/bash > > IP=$1 > > if [ -z $IP ];then >echo "$0 IP" >exit 1 > fi > > REVERSE=$(echo $IP|awk -F\. '{print $4.$3.$2.$1}') > echo $REVERSE > > > it won't work as the output below. > > $ bin

Re: how to reverse an IPv4

2023-04-30 Thread Jeremy Ardley
On 1/5/23 08:24, cor...@free.fr wrote: Hello list, I wrote this script for reversing an IP: #!/bin/bash IP=$1 if [ -z $IP ];then   echo "$0 IP"   exit 1 fi REVERSE=$(echo $IP|awk -F\. '{print $4.$3.$2.$1}') echo $REVERSE it won't work as the output below. $ bin/rbl.sh 61.144.56.32 32561

how to reverse an IPv4

2023-04-30 Thread coreyh
Hello list, I wrote this script for reversing an IP: #!/bin/bash IP=$1 if [ -z $IP ];then echo "$0 IP" exit 1 fi REVERSE=$(echo $IP|awk -F\. '{print $4.$3.$2.$1}') echo $REVERSE it won't work as the output below. $ bin/rbl.sh 61.144.56.32 325614461 The "." was lost. If I changed the

Re: repeat of previous question that has gone unanswered several times.

2023-04-30 Thread Lee
On 4/30/23, gene heskett wrote: > Greetings all; > > I have a mixed home network, some buster, some bullseye, all up to date > a/o yesterday. > > I have 2 printers shared on this bullseye main box, available as 5 or 6 > printers, each configured in cups to do a specific job. Good printers, > both

Re: Evolution email (problem?) (IMAP, Gmail, email compacting)

2023-04-30 Thread Default User
On Sun, 2023-04-30 at 20:47 +0200, to...@tuxteam.de wrote: > On Sun, Apr 30, 2023 at 06:26:53PM +0100, Tixy wrote: > > On Sun, 2023-04-30 at 11:19 -0400, Default User wrote: > > > (BTW, if anyone does have information about compacting folders in > > > Evolution, I would love to hear about it!) > >

repeat of previous question that has gone unanswered several times.

2023-04-30 Thread gene heskett
Greetings all; I have a mixed home network, some buster, some bullseye, all up to date a/o yesterday. I have 2 printers shared on this bullseye main box, available as 5 or 6 printers, each configured in cups to do a specific job. Good printers, both running on brother's own linux drivers for

Re: Segfaults after upgrade to Debian 11.7 on virtualized systems with AMD Ryzen CPU

2023-04-30 Thread NetValue Operations Centre
I've tried downgrading libc (and related packages) to 2.31-13+deb11u5, but no success - still getting segmentation faults. Booting back to the 5.10.0-21 kernel seems the only solution at the moment. Regards, -- Alan Jackson

Re: Segfaults after upgrade to Debian 11.7 on virtualized systems with AMD Ryzen CPU

2023-04-30 Thread NetValue Operations Centre
Yes, seeing similar issue here, Deb 11 guest on AMD-based libvirt hypervisor, with vCPU configured as "EPYC-Rome". The point at which segfaults occur seems slightly non-deterministic, rebooting the server into the same kernel crashes at different points. Sometimes the console dumps to initramf

Re: Evolution email (problem?) (IMAP, Gmail, email compacting)

2023-04-30 Thread Stefan Monnier
> According to this: > https://support.mozilla.org/en-US/kb/compacting-folders This basically explains that compacting is an operation that should fundamentally be transparent to the user, and that Thunderbird makes the user aware of it for ... no good reason. Thunderbird will compact things for

Re: Evolution email (problem?) (IMAP, Gmail, email compacting)

2023-04-30 Thread Default User
On Sun, 2023-04-30 at 18:26 +0100, Tixy wrote: > On Sun, 2023-04-30 at 11:19 -0400, Default User wrote: > > (BTW, if anyone does have information about compacting folders in > > Evolution, I would love to hear about it!) > > What is 'compacting', what is it meant to do? Sounds like > 'compressing'

Re: Thunderbird and font size used to display plain text e-mails?

2023-04-30 Thread Default User
On Sun, 2023-04-30 at 14:26 -0600, D. R. Evans wrote: > I have looked everywhere I can think of, and have been unable to find > an > answer -- among the ridiculous number of ways that fonts appear to be > controlled in Thunderbird -- that works for this issue :-( > > I recently changed to a large

Thunderbird and font size used to display plain text e-mails?

2023-04-30 Thread D. R. Evans
I have looked everywhere I can think of, and have been unable to find an answer -- among the ridiculous number of ways that fonts appear to be controlled in Thunderbird -- that works for this issue :-( I recently changed to a larger monitor, and, after lots of twiddling, have more-or-less got

Re: Evolution email (problem?) (IMAP, Gmail, email compacting)

2023-04-30 Thread tomas
On Sun, Apr 30, 2023 at 06:26:53PM +0100, Tixy wrote: > On Sun, 2023-04-30 at 11:19 -0400, Default User wrote: > > (BTW, if anyone does have information about compacting folders in > > Evolution, I would love to hear about it!) > > What is 'compacting', what is it meant to do? [...] > If it just

Re: Segfaults after upgrade to Debian 11.7 on virtualized systems with AMD Ryzen CPU

2023-04-30 Thread Sven Joachim
On 2023-04-30 14:56 +0200, Andreas Haumer wrote: > I have several virtualized systems around here. > > Yesterday I upgraded some of our Bullseye VMs to 11.7 and found, > that now all systems running on a host with an AMD Ryzen 5950X CPU now > crash with segfaults at various commands. > > I have ot

Re: Segfaults after upgrade to Debian 11.7 on virtualized systems with AMD Ryzen CPU

2023-04-30 Thread Andreas Haumer
Hi! A follow-up, because after reading my previous mail again I think I should clarify one thing... Am 30.04.23 um 14:56 schrieb Andreas Haumer: > Hi! > > I have several virtualized systems around here. > > Yesterday I upgraded some of our Bullseye VMs to 11.7 and found, > that now all systems

Re: Evolution email (problem?) (IMAP, Gmail, email compacting)

2023-04-30 Thread Tixy
On Sun, 2023-04-30 at 11:19 -0400, Default User wrote: > (BTW, if anyone does have information about compacting folders in > Evolution, I would love to hear about it!) What is 'compacting', what is it meant to do? Sounds like 'compressing' to me, don't know if protocols like IMAP has a way to ask

Re: Evolution email (problem?) (IMAP, Gmail, email compacting)

2023-04-30 Thread Default User
On Sat, 2023-04-29 at 00:01 +0700, Max Nikulin wrote: > For those who missed start of the thread: it is dedicated to IMAP > access > to Gmail and Evolution behavior. > > On 27/04/2023 23:15, Default User wrote: > > It stays in both folders, with > > only the one in "All Mail" having a line throug

Segfaults after upgrade to Debian 11.7 on virtualized systems with AMD Ryzen CPU

2023-04-30 Thread Andreas Haumer
Hi! I have several virtualized systems around here. Yesterday I upgraded some of our Bullseye VMs to 11.7 and found, that now all systems running on a host with an AMD Ryzen 5950X CPU now crash with segfaults at various commands. I have other VMs running on a server with an AMD EPYC CPU. Those V

AW: EPSON ET M 1120 new printer: If You can read this, you are using the wrong driver

2023-04-30 Thread Schwibinger Michael
Good morning Thank You. What does it mean the EPSON printer is stupid? How do I queri? Regards Sophie Von: Brian Gesendet: Samstag, 15. April 2023 11:57 An: debian-user@lists.debian.org Betreff: Re: EPSON ET M 1120 new printer: If You can read this, you are