Re: [Evolution] Setting the sender account for a mail composer window started from the command line

2020-03-06 Thread Pete Biggs
On Thu, 2020-03-05 at 16:27 +0100, Andre Klapper wrote:
> I'm about to send out a good bunch of emails, and I need to find a way
> to somehow semi-automate that.
> 

I know this is an Evo list, but whenever I've done something like this
I talk to sendmail (or whatever) directly. I have a script such as:

   #!/bin/csh
   foreach i (`cat $1`)
   echo $i
   echo "To: "$i | cat - content > tmpxx
   /usr/sbin/sendmail -f "gunge@x.x" -t < tmpxx
   rm -f tmpxx
   sleep 1
   end

Which takes a bunch of addresses in a file and sends an email to each
one individually. The file "content" is the email minus the "To: "
header, but including all the necessary ones like From:, Date:,
Subject: - you should also probably have a couple of others as well.
Critically, sendmail adds the unique message-id itself.

This was the last "content" file I used (suitably sanitized):

   From: "A Person" 
   Date: Sat, 24 Feb 2018 23:27:37 +
   Subject: Hello
   User-Agent: Heirloom mailx 12.5 7/5/10
   MIME-Version: 1.0
   Content-Type: text/plain; charset=utf-8
   Content-Transfer-Encoding: 8bit

   Hello everyone,

The script needs to run as a user that can change the sender in
sendmail (usually root), and I put the sleep in to stop mailers
thinking I'm spamming.

P.



___
evolution-list mailing list
evolution-list@gnome.org
To change your list options or unsubscribe, visit ...
https://mail.gnome.org/mailman/listinfo/evolution-list


Re: [Evolution] Setting the sender account for a mail composer window started from the command line

2020-03-06 Thread Patrick O'Callaghan
On Fri, 2020-03-06 at 09:52 +, Pete Biggs wrote:
> On Thu, 2020-03-05 at 16:27 +0100, Andre Klapper wrote:
> > I'm about to send out a good bunch of emails, and I need to find a way
> > to somehow semi-automate that.
> > 
> 
> I know this is an Evo list, but whenever I've done something like this
> I talk to sendmail (or whatever) directly. I have a script such as:
[...]

I agree. Evo really isn't designed to be a batch service. Use the right
tool for the job.

"A hammer is useful because it's not a screwdriver".

poc

___
evolution-list mailing list
evolution-list@gnome.org
To change your list options or unsubscribe, visit ...
https://mail.gnome.org/mailman/listinfo/evolution-list


Re: [Evolution] Folders Unavailable During Searches

2020-03-06 Thread Greg Oliver via evolution-list
On Fri, Mar 6, 2020 at 12:19 AM Milan Crha via evolution-list <
evolution-list@gnome.org> wrote:

> On Thu, 2020-03-05 at 21:58 -0600, Greg Oliver via evolution-list
> wrote:
> > when performing a search with these versions, I can no longer moves
> > messages to folders that are search results.  The entire folder pane
> > is grayed out.
>
> Hi,
> check out the search panel at the top, it says:
>
>Show: [ All Messages ] Search: [ your text ] in [ Current Folder ]
>
> While the first two ('Show' and 'Search') are not that important (for
> this), the 'in' part is. I guess you've there something else than the
> "Current Folder", which disables the folder tree. It behaves like that
> to indicate that what you see is not the folder selected in the folder
> tree. It works like that for a long time. You probably switched it to
> "Current Folder and Subfolders", which is a new option there.
>

You are absolutely right - just the other day I needed to search my entire
account and changed that for a search and did not put it back.  Thanks for
the quick reply!



> Bye,
> Milan
>
> ___
> evolution-list mailing list
> evolution-list@gnome.org
> To change your list options or unsubscribe, visit ...
> https://mail.gnome.org/mailman/listinfo/evolution-list
>
___
evolution-list mailing list
evolution-list@gnome.org
To change your list options or unsubscribe, visit ...
https://mail.gnome.org/mailman/listinfo/evolution-list


Re: [Evolution] Importing email signatures from one computer to another

2020-03-06 Thread Paulo Cesar G. Costa
Milan,
Thanks a lot! It worked like a charm.I imported the associated files from the  
~/.config/evolution/sources/ folder and was able to use the signatures in the 
other computer.
All the best,Paulo
On Mon, 2020-03-02 at 09:45 +0100, Milan Crha via evolution-list wrote:
> On Sat, 2020-02-29 at 17:07 -0500, Paulo Cesar G. Costa wrote:
> > My guess is that there has to be an index or something similar thatlinks 
> > the signatures in this folder to the ones you see inevolution's Signature 
> > tabs under Composer Preferences(edit>Preferences)
> 
>   Hi,that's correct, there are files in 
> ~/.config/evolution/sources/referencing those in 
> ~/.config/evolution/signatures/. Copy also therelated .source files and 
> you'll see the signatures too. This may ormay not need a restart of the 
> background processes to take effect (likeusing 'evolution --force-shutdown').
> > is there another way of importing signatures?
> 
> I'm not aware of any GUI or command line tool working with signaturesonly. 
> The Backup/Restore Evolution Data saves a lot more data than justsignatures.  
>  Bye,Milan
> ___evolution-list mailing 
> listevolution-l...@gnome.org
> To change your list options or unsubscribe, visit 
> ...https://mail.gnome.org/mailman/listinfo/evolution-list
___
evolution-list mailing list
evolution-list@gnome.org
To change your list options or unsubscribe, visit ...
https://mail.gnome.org/mailman/listinfo/evolution-list


[Evolution] Is it possible to move local to an different hd?

2020-03-06 Thread mario chiari
Hi

I am running of space on my Linux machine, or better my setting is: 
 
-- The usual Linux filesystem Mounted on / (/dev/sda2), where Used 142.63 GiB
(95%) / Unused 7.37 GiB (5%)
-- a secondary hd, Mounted on /data (/dev/sdb1), where Used 299.66 GiB (32%) /
Unused 631.85 (68%)

My /root/.local/share/evolution/mail/local/ is about 30GiB. Is there a way to
move it under /data, and still have Evolution working fine and fast? 

Thanks, Regards
mario



___
evolution-list mailing list
evolution-list@gnome.org
To change your list options or unsubscribe, visit ...
https://mail.gnome.org/mailman/listinfo/evolution-list


Re: [Evolution] Is it possible to move local to an different hd?

2020-03-06 Thread Andre Klapper
On Fri, 2020-03-06 at 16:29 +0100, mario chiari wrote:
> I am running of space on my Linux machine, or better my setting is:
>
> -- The usual Linux filesystem Mounted on / (/dev/sda2),   where Used 
> 142.63 GiB
> (95%) / Unused 7.37 GiB (5%)
> -- a secondary hd, Mounted on /data (/dev/sdb1), where Used 299.66 GiB (32%) /
> Unused 631.85 (68%)
>
> My /root/.local/share/evolution/mail/local/ is about 30GiB.

"root" is wrong.
Do not do that.
Use a normal user account instead.

> Is there a way to
> move it under /data, and still have Evolution working fine and fast?

You could try to create a symlink and see what might break (or not).
Backups can save your day.

Cheers,
andre
--
Andre Klapper  |  ak...@gmx.net
https://blogs.gnome.org/aklapper/


___
evolution-list mailing list
evolution-list@gnome.org
To change your list options or unsubscribe, visit ...
https://mail.gnome.org/mailman/listinfo/evolution-list


Re: [Evolution] Is it possible to move local to an different hd?

2020-03-06 Thread Pete Biggs
On Fri, 2020-03-06 at 16:29 +0100, mario chiari wrote:
> Hi
> 
> I am running of space on my Linux machine, or better my setting is: 
>  
> -- The usual Linux filesystem Mounted on / (/dev/sda2),   where Used 
> 142.63 GiB
> (95%) / Unused 7.37 GiB (5%)
> -- a secondary hd, Mounted on /data (/dev/sdb1), where Used 299.66 GiB (32%) /
> Unused 631.85 (68%)
> 
> My /root/.local/share/evolution/mail/local/ is about 30GiB. Is there a way to
> move it under /data, and still have Evolution working fine and fast? 
> 

You will get a lot of people saying this:

Do not login and run your desktop as root.  Just don't.  Move to a real
user and then su/sudo to root.  

And no, you should not move the /root folder to anywhere else. It
should be on the / partition.

Oh, and remember DO NOT login as root.

P.


___
evolution-list mailing list
evolution-list@gnome.org
To change your list options or unsubscribe, visit ...
https://mail.gnome.org/mailman/listinfo/evolution-list


Re: [Evolution] Is it possible to move local to an different hd?

2020-03-06 Thread Japhering, Anonymous via evolution-list
On Fri, 2020-03-06 at 16:42 +0100, Andre Klapper wrote:
> On Fri, 2020-03-06 at 16:29 +0100, mario chiari wrote:
> > I am running of space on my Linux machine, or better my setting is:
> > -- The usual Linux filesystem Mounted on / (/dev/sda2), where
> > Used 142.63 GiB(95%) / Unused 7.37 GiB (5%)-- a secondary hd,
> > Mounted on /data (/dev/sdb1), where Used 299.66 GiB (32%) /Unused
> > 631.85 (68%)
> > My /root/.local/share/evolution/mail/local/ is about 30GiB.
> 
> "root" is wrong.Do not do that.Use a normal user account instead.

While that is true, quite a few of the distro installers put  home in
the root vg unless you do a custominstall.   And the rest if you are
not paying attention will  start out with a  root vg and a home vg, but
the act of making changes causes the home vg to disappear.
Yes,  I've been bitten many a times thinking I've got  separate vgs set
up for root and home only tofind out after everything is installed that
I only have a root vg.
> > Is there a way tomove it under /data, and still have Evolution
> > working fine and fast?
> 
> You could try to create a symlink and see what might break (or
> not).Backups can save your day.
> Cheers,andre--Andre Klapper  |  ak...@gmx.net
> https://blogs.gnome.org/aklapper/
> 
> 
> ___evolution-list mailing
> listevolution-l...@gnome.org
> To change your list options or unsubscribe, visit ...
> https://mail.gnome.org/mailman/listinfo/evolution-list
___
evolution-list mailing list
evolution-list@gnome.org
To change your list options or unsubscribe, visit ...
https://mail.gnome.org/mailman/listinfo/evolution-list


Re: [Evolution] Is it possible to move local to an different hd?

2020-03-06 Thread Pete Biggs
On Fri, 2020-03-06 at 09:58 -0600, Japhering, Anonymous via evolution-
list wrote:
> On Fri, 2020-03-06 at 16:42 +0100, Andre Klapper wrote:
> > On Fri, 2020-03-06 at 16:29 +0100, mario chiari wrote:
> > > I am running of space on my Linux machine, or better my setting is:
> > > 
> > > -- The usual Linux filesystem Mounted on / (/dev/sda2),   where Used 
> > > 142.63 GiB
> > > (95%) / Unused 7.37 GiB (5%)
> > > -- a secondary hd, Mounted on /data (/dev/sdb1), where Used 299.66 GiB 
> > > (32%) /
> > > Unused 631.85 (68%)
> > > 
> > > My /root/.local/share/evolution/mail/local/ is about 30GiB.
> > 
> > "root" is wrong.
> > Do not do that.
> > Use a normal user account instead.
> 
> While that is true, quite a few of the distro installers put home in the root 
> vg unless you do a custom
> install.

Yes, sure, but the OP is talking about /root not a /home in the root
VG.  They are logging in as root, which is not a good thing.

P.


___
evolution-list mailing list
evolution-list@gnome.org
To change your list options or unsubscribe, visit ...
https://mail.gnome.org/mailman/listinfo/evolution-list


Re: [Evolution] Items in the trash reappear in the archive folder

2020-03-06 Thread theapple...@differentmail.com
> > You might like to turn it ["Show Deleted Messages"] on.  The action
> > of "delete" is classically
> > implemented as "mark as deleted" and then purge the marked messages
> > later in IMAP; a "move" message action was originally implemented as
> > "copy and delete", and that "delete" action left a "mark as deleted"
> > message in the original folder. This can all lead to a bit of
> > confusion
> > if you don't know what's going on.
> > 
> > This was all an IMAP server function, not Evolution.
> > 
> > Recent versions of IMAP servers often now implement a proper "move"
> > function which Evo will use if it's there; that doesn't leave a
> > deleted
> > message in the originating folder.
> > 
> > Turning on "Show Deleted Messages" will allow you to see if there are
> > any un-purged deleted messages still present that may be causing
> > confusion.

Thanks a lot again, Pete, for your help answers. This is a helpful
explanation. I turned on "Show Deleted Messages" but fortunately no
emails were just "marked as deleted" in the IMAP folders (just in the
local folders which is a different story). But I will keep it that way
to monitor any ill behaviour.


> > > > I suspect it's an issue of trying to use features for something
> > > > they
> > > > weren't intended for.  If you need to "Archive" things, then use
> > > > the
> > > > built in archiving mechanism - it can be done manually with a key
> > > > combination or an icon on the top bar, or it can be setup to be
> > > > automatic.

Thanks again for reminding me of the archive function. And I learnt
that now it just "moves" the email to a specific folder which can be an
IMAP folder which will be synced again.
https://askubuntu.com/questions/57144/where-is-gmail-archive-option-in-evolution
 
And I found out how to change the shortcut, key combination to archive
it as ctrl-alt-a was a bit clumsy to be used often. For the records and
other interested people. Just edit ~/.config/evolution/accels, delete
the ; in front of a edited line and I used following to archive with
simple key "a":
(gtk_accel_path "/mail/mail-archive" "a") 

Thanks again for your help! It was worth to email and to learn new
things!
Have a great weekend, D. :)

___
evolution-list mailing list
evolution-list@gnome.org
To change your list options or unsubscribe, visit ...
https://mail.gnome.org/mailman/listinfo/evolution-list